diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-11-10 12:07:24 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-11-10 12:07:24 +0000 |
commit | 282671bf76bd7e3644b730673ca748947913b911 (patch) | |
tree | 0a9d9077d4df87033bb4279195852b974b33babb /util-linux | |
parent | 30fcef430c59e5884f6765d16fc201c303b2e92c (diff) | |
download | busybox-282671bf76bd7e3644b730673ca748947913b911.tar.gz |
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.in | 8 |
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 if [ "$CONFIG_MORE" = "y" ]; then bool ' Use termios to manipulate the screen' CONFIG_FEATURE_USE_TERMIOS fi -if [ "$CONFIG_LS" = "y" -o "$CONFIG_MORE" = "y"]; then +if [ "$CONFIG_LS" = "y" -o "$CONFIG_MORE" = "y" ]; then comment ' Common options for ls and more' bool ' Calculate terminal & column widths' CONFIG_FEATURE_AUTOWIDTH fi +bool 'pivot_root' CONFIG_PIVOT_ROOT +bool 'rdate' CONFIG_RDATE +bool 'swaponoff' CONFIG_SWAPONOFF bool 'mount' CONFIG_MOUNT if [ "$CONFIG_MOUNT" = "y" ]; then bool ' Support mounting nfs file systems' CONFIG_NFSMOUNT @@ -46,9 +49,6 @@ if [ "$CONFIG_MOUNT" = "y" -o "$CONFIG_UMOUNT" = "y" ]; then bool ' Support for loop devices' CONFIG_FEATURE_MOUNT_LOOP bool ' Support for a real /etc/mtab (instead of /proc/mounts)' CONFIG_FEATURE_MTAB_SUPPORT fi -bool 'pivot_root' CONFIG_PIVOT_ROOT -bool 'rdate' CONFIG_RDATE -bool 'swaponoff' CONFIG_SWAPONOFF endmenu |