aboutsummaryrefslogtreecommitdiff
path: root/util-linux/config.in
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/config.in')
-rw-r--r--util-linux/config.in33
1 files changed, 30 insertions, 3 deletions
diff --git a/util-linux/config.in b/util-linux/config.in
index 50a874d6c..067ced60d 100644
--- a/util-linux/config.in
+++ b/util-linux/config.in
@@ -9,20 +9,47 @@ comment 'Linux System Utilities'
9 9
10bool 'dmesg' CONFIG_DMESG 10bool 'dmesg' CONFIG_DMESG
11bool 'fbset' CONFIG_FBSET 11bool 'fbset' CONFIG_FBSET
12if [ "$CONFIG_FBSET" = "y" ]; then
13 bool ' Turn on extra fbset options' CONFIG_FEATURE_FBSET_FANCY
14 bool ' Turn on fbset readmode support' CONFIG_FEATURE_FBSET_READMODE
15fi
12bool 'fdflush' CONFIG_FDFLUSH 16bool 'fdflush' CONFIG_FDFLUSH
13bool 'freeramdisk' CONFIG_FREERAMDISK 17bool 'freeramdisk' CONFIG_FREERAMDISK
14bool 'fsck_minix' CONFIG_FSCK_MINIX 18bool 'fsck_minix' CONFIG_FSCK_MINIX
19bool 'mkfs_minix' CONFIG_MKFS_MINIX
20if [ "$CONFIG_FSCK_MINIX" = "y" -o "$CONFIG_MKFS_MINIX" = "y" ]; then
21 comment ' Minix filesystem support'
22 bool ' Support Minix fs v2 (fsck_minix/mkfs_minix)' CONFIG_FEATURE_MINIX2
23fi
15bool 'getopt' CONFIG_GETOPT 24bool 'getopt' CONFIG_GETOPT
16bool 'hexdump' CONFIG_HEXDUMP 25bool 'hexdump' CONFIG_HEXDUMP
17bool 'mkfs_minix' CONFIG_MKFS_MINIX
18bool 'mkswap' CONFIG_MKSWAP 26bool 'mkswap' CONFIG_MKSWAP
19bool 'more' CONFIG_MORE 27bool 'more' CONFIG_MORE
28if [ "$CONFIG_MORE" = "y" ]; then
29 bool ' Use termios to manipulate the screen' CONFIG_FEATURE_USE_TERMIOS
30fi
31if [ "$CONFIG_LS" = "y" -o "$CONFIG_MORE" = "y"]; then
32 comment ' Common options for ls and more'
33 bool ' Calculate terminal & column widths' CONFIG_FEATURE_AUTOWIDTH
34fi
20bool 'mount' CONFIG_MOUNT 35bool 'mount' CONFIG_MOUNT
21bool 'nfsmount' CONFIG_NFSMOUNT 36if [ "$CONFIG_MOUNT" = "y" ]; then
37 bool ' Support mounting nfs file systems' CONFIG_NFSMOUNT
38 bool ' Use devmtab instead of /proc (needs a patched kernel)' CONFIG_FEATURE_USE_DEVPS_PATCH
39fi
40fi
41bool 'umount' CONFIG_UMOUNT
42if [ "$CONFIG_UMOUNT" = "y" ]; then
43 bool ' Support forced filesystem unmounting' CONFIG_FEATURE_MOUNT_FORCE
44fi
45if [ "$CONFIG_MOUNT" = "y" -o "$CONFIG_UMOUNT" = "y" ]; then
46 comment 'Common options for mount/umount'
47 bool ' Support for loop devices' CONFIG_FEATURE_MOUNT_LOOP
48 bool ' Support for a real /etc/mtab (instead of /proc/mounts)' CONFIG_FEATURE_MTAB_SUPPORT
49fi
22bool 'pivot_root' CONFIG_PIVOT_ROOT 50bool 'pivot_root' CONFIG_PIVOT_ROOT
23bool 'rdate' CONFIG_RDATE 51bool 'rdate' CONFIG_RDATE
24bool 'swaponoff' CONFIG_SWAPONOFF 52bool 'swaponoff' CONFIG_SWAPONOFF
25bool 'umount' CONFIG_UMOUNT
26 53
27endmenu 54endmenu
28 55