diff options
author | pgf <pgf@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-08-09 19:38:05 +0000 |
---|---|---|
committer | pgf <pgf@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-08-09 19:38:05 +0000 |
commit | 3832c8463134a14ed87f6a267327412a91ee45b9 (patch) | |
tree | d5f722c5d16a204996e46c84e8fe7923f8f40abf /shell/Config.in | |
parent | 9ed75acbe404efb10d292f5b1cd3fa9988846dea (diff) | |
download | busybox-w32-3832c8463134a14ed87f6a267327412a91ee45b9.tar.gz busybox-w32-3832c8463134a14ed87f6a267327412a91ee45b9.tar.bz2 busybox-w32-3832c8463134a14ed87f6a267327412a91ee45b9.zip |
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
git-svn-id: svn://busybox.net/trunk/busybox@11083 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/Config.in')
-rw-r--r-- | shell/Config.in | 15 |
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 | |||
103 | you to run the specified command with the specified arguments, | 103 | you to run the specified command with the specified arguments, |
104 | even when there is an ash builtin command with the same name. | 104 | even when there is an ash builtin command with the same name. |
105 | 105 | ||
106 | config CONFIG_ASH_BUILTIN_ECHO | ||
107 | bool " Enable builtin version of 'echo'" | ||
108 | default n | ||
109 | depends on CONFIG_ASH | ||
110 | help | ||
111 | Enable support for echo, built in to ash. | ||
112 | |||
113 | # this entry also appears in coreutils/Config.in, next to the echo applet | ||
114 | config CONFIG_FEATURE_FANCY_ECHO | ||
115 | bool " Enable echo options (-n and -e)" | ||
116 | default y | ||
117 | depends on CONFIG_ASH_BUILTIN_ECHO | ||
118 | help | ||
119 | This adds options (-n and -e) to echo. | ||
120 | |||
106 | config CONFIG_ASH_MAIL | 121 | config CONFIG_ASH_MAIL |
107 | bool " Check for new mail on interactive shells" | 122 | bool " Check for new mail on interactive shells" |
108 | default y | 123 | default y |