aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-11-10 12:07:24 +0000
committerEric Andersen <andersen@codepoet.org>2001-11-10 12:07:24 +0000
commit282671bf76bd7e3644b730673ca748947913b911 (patch)
tree0a9d9077d4df87033bb4279195852b974b33babb /util-linux
parent30fcef430c59e5884f6765d16fc201c303b2e92c (diff)
downloadbusybox-w32-282671bf76bd7e3644b730673ca748947913b911.tar.gz
busybox-w32-282671bf76bd7e3644b730673ca748947913b911.tar.bz2
busybox-w32-282671bf76bd7e3644b730673ca748947913b911.zip
Cleanup some config problems. Add a sane default config that basically
matches the default old Config.h
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