pass HOST_ variables, not BUILD_
[buildroot.git] / target / ext2 / Config.in
blobe94fb401c373967678b721a6357745ebf83f182a
1 config BR2_TARGET_ROOTFS_EXT2
2         bool "ext2 root filesystem"
3         default y
4         select BR2_HOST_FAKEROOT
5         help
6           Build an ext2 root filesystem
8 config BR2_TARGET_ROOTFS_EXT2_BLOCKS
9         int "size in blocks (leave at 0 for auto calculation)"
10         depends on BR2_TARGET_ROOTFS_EXT2
11         default 0
13 config BR2_TARGET_ROOTFS_EXT2_INODES
14         int "inodes (leave at 0 for auto calculation)"
15         depends on BR2_TARGET_ROOTFS_EXT2
16         default 0
18 config BR2_TARGET_ROOTFS_EXT2_RESBLKS
19         int "reserved blocks percentage"
20         depends on BR2_TARGET_ROOTFS_EXT2
21         default 0
23 config BR2_TARGET_ROOTFS_EXT2_SQUASH
24         bool "Make all files be owned by root"
25         depends on  BR2_TARGET_ROOTFS_EXT2
26         default y
28 config BR2_TARGET_ROOTFS_EXT2_OUTPUT
29         string "Output File"
30         depends on BR2_TARGET_ROOTFS_EXT2
31         default "$(IMAGE).ext2"
33 choice
34         prompt "Compression method"
35         default BR2_TARGET_ROOTFS_EXT2_NONE
36         depends on BR2_TARGET_ROOTFS_EXT2
37         help
38           Select compressor for ext2 filesystem of the root filesystem
40 config BR2_TARGET_ROOTFS_EXT2_NONE
41         bool "no compression"
42         help
43           Do not compress the ext2 filesystem.
45 config BR2_TARGET_ROOTFS_EXT2_GZIP
46         bool "gzip"
47         help
48           Do compress the ext2 filesystem with gzip.
49           Note that you either have to have gzip installed on your host
50           or select to build a gzip for your host. See the packages submenu.
52 config BR2_TARGET_ROOTFS_EXT2_BZIP2
53         bool "bzip2"
54         help
55           Do compress the ext2 filesystem with bzip2.
56           Note that you either have to have bzip2 installed on your host
57           or select to build a bzip2 for your host. See the packages submenu.
59 config BR2_TARGET_ROOTFS_EXT2_LZMA
60         bool "lzma"
61         help
62           Do compress the ext2 filesystem with lzma.
63           Note that you either have to have lzma installed on your host
64           or select to build a lzma for your host. See the packages submenu.
66 endchoice
68 config BR2_TARGET_ROOTFS_EXT2_COPYTO
69         string "also copy the image to..."
70         depends on BR2_TARGET_ROOTFS_EXT2
71         default ""
72         help
73           Copies the resulting image to a secondary location
74           like a tftp server's root directory.