2005-02-10 01:59:22 +01:00
|
|
|
config BR2_TARGET_ROOTFS_EXT2
|
2005-09-09 02:12:13 +02:00
|
|
|
bool "ext2 root filesystem"
|
2004-10-09 06:34:21 +02:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
Build an ext2 root filesystem
|
|
|
|
|
2005-01-23 11:53:06 +01:00
|
|
|
config BR2_TARGET_ROOTFS_EXT2_BLOCKS
|
2005-02-09 17:05:07 +01:00
|
|
|
int "size in blocks (leave at 0 for auto calculation)"
|
2005-01-23 11:53:06 +01:00
|
|
|
depends on BR2_TARGET_ROOTFS_EXT2
|
2007-10-05 14:55:40 +02:00
|
|
|
default 0
|
2005-02-16 20:48:43 +01:00
|
|
|
|
2005-01-23 11:53:06 +01:00
|
|
|
config BR2_TARGET_ROOTFS_EXT2_INODES
|
|
|
|
int "inodes (leave at 0 for auto calculation)"
|
|
|
|
depends on BR2_TARGET_ROOTFS_EXT2
|
2007-10-05 14:55:40 +02:00
|
|
|
default 0
|
2005-02-16 20:48:43 +01:00
|
|
|
|
2005-01-23 11:53:06 +01:00
|
|
|
config BR2_TARGET_ROOTFS_EXT2_RESBLKS
|
2007-03-20 17:52:44 +01:00
|
|
|
int "reserved blocks percentage"
|
2005-01-23 11:53:06 +01:00
|
|
|
depends on BR2_TARGET_ROOTFS_EXT2
|
|
|
|
default 0
|
2005-02-16 20:48:43 +01:00
|
|
|
|
2005-01-23 11:53:06 +01:00
|
|
|
config BR2_TARGET_ROOTFS_EXT2_SQUASH
|
|
|
|
bool "Make all files be owned by root"
|
2007-10-05 14:55:40 +02:00
|
|
|
depends on BR2_TARGET_ROOTFS_EXT2
|
2005-01-23 11:53:06 +01:00
|
|
|
default y
|
|
|
|
|
2006-12-14 16:47:50 +01:00
|
|
|
choice
|
2007-10-05 14:55:40 +02:00
|
|
|
prompt "Compression method"
|
|
|
|
default BR2_TARGET_ROOTFS_EXT2_NONE
|
|
|
|
depends on BR2_TARGET_ROOTFS_EXT2
|
|
|
|
help
|
|
|
|
Select compressor for ext2 filesystem of the root filesystem
|
2006-12-14 16:47:50 +01:00
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_EXT2_NONE
|
2007-10-05 14:55:40 +02:00
|
|
|
bool "no compression"
|
|
|
|
help
|
|
|
|
Do not compress the ext2 filesystem.
|
2006-12-14 16:47:50 +01:00
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_EXT2_GZIP
|
2007-10-05 14:55:40 +02:00
|
|
|
bool "gzip"
|
|
|
|
help
|
|
|
|
Do compress the ext2 filesystem with gzip.
|
2006-12-14 16:47:50 +01:00
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_EXT2_BZIP2
|
2007-10-05 14:55:40 +02:00
|
|
|
bool "bzip2"
|
|
|
|
help
|
|
|
|
Do compress the ext2 filesystem with bzip2.
|
2005-01-23 11:53:06 +01:00
|
|
|
|
2006-11-04 20:15:56 +01:00
|
|
|
config BR2_TARGET_ROOTFS_EXT2_LZMA
|
2007-10-05 14:55:40 +02:00
|
|
|
bool "lzma"
|
|
|
|
help
|
|
|
|
Do compress the ext2 filesystem with lzma.
|
2006-11-04 20:15:56 +01:00
|
|
|
|
2006-12-14 16:47:50 +01:00
|
|
|
endchoice
|
2006-11-04 20:15:56 +01:00
|
|
|
|