diff options
author | Denys Vlasenko | 2016-12-22 14:36:49 +0100 |
---|---|---|
committer | Denys Vlasenko | 2016-12-22 14:36:49 +0100 |
commit | 326edc3e375d6d5be205d4b1592211bf15e33bcd (patch) | |
tree | 09de5f15a633a45709298979f0d216afe553b81c /shell | |
parent | 2166952ec393b9a8f890a12951c812c47fdfd457 (diff) | |
download | busybox-326edc3e375d6d5be205d4b1592211bf15e33bcd.zip busybox-326edc3e375d6d5be205d4b1592211bf15e33bcd.tar.gz |
Tweak some config defaults; fix MODPROBE_SMALL ordering in "make config"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/shell/ash.c b/shell/ash.c index 802626d..8933918 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -117,7 +117,7 @@ //config: //config:config ASH_INTERNAL_GLOB //config: bool "Use internal glob() implementation" -//config: default n +//config: default y # Y is bigger, but because of uclibc glob() bug, let Y be default for now //config: depends on ASH //config: help //config: Do not use glob() function from libc, use internal implementation. @@ -218,11 +218,10 @@ //config: //config:config ASH_MAIL //config: bool "Check for new mail on interactive shells" -//config: default n +//config: default y //config: depends on ASH //config: help //config: Enable "check for new mail" function in the ash shell. -//config: //applet:IF_ASH(APPLET(ash, BB_DIR_BIN, BB_SUID_DROP)) //applet:IF_FEATURE_SH_IS_ASH(APPLET_ODDNAME(sh, ash, BB_DIR_BIN, BB_SUID_DROP, sh)) |