aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-11-10 12:07:24 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-11-10 12:07:24 +0000
commit30825fa52c29734e81ca834884814286dc59d346 (patch)
tree0a9d9077d4df87033bb4279195852b974b33babb /util-linux
parent91c104721612f9b7f00f33de3218c78fd728b782 (diff)
downloadbusybox-w32-30825fa52c29734e81ca834884814286dc59d346.tar.gz
busybox-w32-30825fa52c29734e81ca834884814286dc59d346.tar.bz2
busybox-w32-30825fa52c29734e81ca834884814286dc59d346.zip
Cleanup some config problems. Add a sane default config that basically
matches the default old Config.h git-svn-id: svn://busybox.net/trunk/busybox@3648 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/config.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/util-linux/config.in b/util-linux/config.in
index 267383085..6058944a2 100644
--- a/util-linux/config.in
+++ b/util-linux/config.in
@@ -28,10 +28,13 @@ bool 'more' CONFIG_MORE
28if [ "$CONFIG_MORE" = "y" ]; then 28if [ "$CONFIG_MORE" = "y" ]; then
29 bool ' Use termios to manipulate the screen' CONFIG_FEATURE_USE_TERMIOS 29 bool ' Use termios to manipulate the screen' CONFIG_FEATURE_USE_TERMIOS
30fi 30fi
31if [ "$CONFIG_LS" = "y" -o "$CONFIG_MORE" = "y"]; then 31if [ "$CONFIG_LS" = "y" -o "$CONFIG_MORE" = "y" ]; then
32 comment ' Common options for ls and more' 32 comment ' Common options for ls and more'
33 bool ' Calculate terminal & column widths' CONFIG_FEATURE_AUTOWIDTH 33 bool ' Calculate terminal & column widths' CONFIG_FEATURE_AUTOWIDTH
34fi 34fi
35bool 'pivot_root' CONFIG_PIVOT_ROOT
36bool 'rdate' CONFIG_RDATE
37bool 'swaponoff' CONFIG_SWAPONOFF
35bool 'mount' CONFIG_MOUNT 38bool 'mount' CONFIG_MOUNT
36if [ "$CONFIG_MOUNT" = "y" ]; then 39if [ "$CONFIG_MOUNT" = "y" ]; then
37 bool ' Support mounting nfs file systems' CONFIG_NFSMOUNT 40 bool ' Support mounting nfs file systems' CONFIG_NFSMOUNT
@@ -46,9 +49,6 @@ if [ "$CONFIG_MOUNT" = "y" -o "$CONFIG_UMOUNT" = "y" ]; then
46 bool ' Support for loop devices' CONFIG_FEATURE_MOUNT_LOOP 49 bool ' Support for loop devices' CONFIG_FEATURE_MOUNT_LOOP
47 bool ' Support for a real /etc/mtab (instead of /proc/mounts)' CONFIG_FEATURE_MTAB_SUPPORT 50 bool ' Support for a real /etc/mtab (instead of /proc/mounts)' CONFIG_FEATURE_MTAB_SUPPORT
48fi 51fi
49bool 'pivot_root' CONFIG_PIVOT_ROOT
50bool 'rdate' CONFIG_RDATE
51bool 'swaponoff' CONFIG_SWAPONOFF
52 52
53endmenu 53endmenu
54 54