diff options
author | John Crispin <blogic@openwrt.org> | 2014-06-02 12:43:53 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-06-02 12:43:53 +0000 |
commit | b611a556d94b7d61087d2df4bd32509c3bc4ca9b (patch) | |
tree | 2f8235d674ec852d2a853074209d92d6ffd37d57 /config/Config-images.in | |
parent | cef164b23ebd2b093a9eb7fce8420a51ab28cb18 (diff) | |
download | upstream-b611a556d94b7d61087d2df4bd32509c3bc4ca9b.tar.gz upstream-b611a556d94b7d61087d2df4bd32509c3bc4ca9b.tar.bz2 upstream-b611a556d94b7d61087d2df4bd32509c3bc4ca9b.zip |
image: ext4: move ext4 specific options into submenu
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40923 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'config/Config-images.in')
-rw-r--r-- | config/Config-images.in | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/config/Config-images.in b/config/Config-images.in index 01f23b2e5d..49569006e9 100644 --- a/config/Config-images.in +++ b/config/Config-images.in @@ -66,11 +66,25 @@ menu "Target Images" comment "Root filesystem images" - config TARGET_ROOTFS_EXT4FS + menuconfig TARGET_ROOTFS_EXT4FS bool "ext4" default y if USES_EXT4 help - Ext4 file system with some free space for uml images + Build a ext4 root filesystem + + config TARGET_ROOTFS_MAXINODE + int "Maximum number of inodes in root filesystem" + depends on TARGET_ROOTFS_EXT4FS + default 6000 + help + Allows you to change the maximum number of inodes in the root filesystem + + config TARGET_ROOTFS_RESERVED_PCT + int "Percentage of reserved blocks in root filesystem" + depends on TARGET_ROOTFS_EXT4FS + default 0 + help + Allows you to change the percentage of reserved blocks in the root filesystem config TARGET_ROOTFS_ISO bool "iso" @@ -222,19 +236,6 @@ menu "Target Images" The root partition on the final device. If you don't know, you probably want the default (/dev/sda2). - config TARGET_ROOTFS_MAXINODE - int "Maximum number of inodes in root filesystem" - depends on TARGET_ROOTFS_EXT4FS - default 6000 - help - Allows you to change the maximum number of inodes in the root filesystem - - config TARGET_ROOTFS_RESERVED_PCT - int "Percentage of reserved blocks in root filesystem" - depends on TARGET_ROOTFS_EXT4FS - default 0 - help - Allows you to change the percentage of reserved blocks in the root filesystem menuconfig TARGET_ROOTFS_INCLUDE_KERNEL bool "Include kernel in root filesystem" |