aboutsummaryrefslogtreecommitdiff
path: root/shell/Config.in
diff options
context:
space:
mode:
authorPaul Fox <pgf@brightstareng.com>2005-08-09 19:38:05 +0000
committerPaul Fox <pgf@brightstareng.com>2005-08-09 19:38:05 +0000
commit0b62158475ecbfce16fb857042ec7f402d7594ec (patch)
treed5f722c5d16a204996e46c84e8fe7923f8f40abf /shell/Config.in
parent3f11b1bf634536cb01d9913d1a3d10da5bf24541 (diff)
downloadbusybox-0b62158475ecbfce16fb857042ec7f402d7594ec.tar.gz
implemented a builtin echo command in ash. moved the guts of the
echo applet into libbb, and now call bb_echo() from both echo.c and ash.c
Diffstat (limited to 'shell/Config.in')
-rw-r--r--shell/Config.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/shell/Config.in b/shell/Config.in
index 0d39e5bae..813044e2c 100644
--- a/shell/Config.in
+++ b/shell/Config.in
@@ -103,6 +103,21 @@ config CONFIG_ASH_CMDCMD
you to run the specified command with the specified arguments,
even when there is an ash builtin command with the same name.
+config CONFIG_ASH_BUILTIN_ECHO
+ bool " Enable builtin version of 'echo'"
+ default n
+ depends on CONFIG_ASH
+ help
+ Enable support for echo, built in to ash.
+
+# this entry also appears in coreutils/Config.in, next to the echo applet
+config CONFIG_FEATURE_FANCY_ECHO
+ bool " Enable echo options (-n and -e)"
+ default y
+ depends on CONFIG_ASH_BUILTIN_ECHO
+ help
+ This adds options (-n and -e) to echo.
+
config CONFIG_ASH_MAIL
bool " Check for new mail on interactive shells"
default y