diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-26 00:11:54 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-26 00:11:54 +0000 |
commit | dbb8f8d123b63a496df794ce60f638401d2e5a6a (patch) | |
tree | 31eda047f51c15c0a1843ff43fbc03615cc3e95c | |
parent | d35c21587a4139031c077fd122252217a4713681 (diff) | |
download | busybox-w32-dbb8f8d123b63a496df794ce60f638401d2e5a6a.tar.gz busybox-w32-dbb8f8d123b63a496df794ce60f638401d2e5a6a.tar.bz2 busybox-w32-dbb8f8d123b63a496df794ce60f638401d2e5a6a.zip |
Update some comments to clarify things.
-rw-r--r-- | Config.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -208,7 +208,7 @@ | |||
208 | #define BB_FEATURE_REMOTE_LOG | 208 | #define BB_FEATURE_REMOTE_LOG |
209 | // | 209 | // |
210 | //Simple tail implementation (2.34k vs 3k for the full one). | 210 | //Simple tail implementation (2.34k vs 3k for the full one). |
211 | //Both provide 'tail -f' support (only one file at a time.) | 211 | //Both provide 'tail -f', but this cuts out -c, -q, -s, and -v. |
212 | #define BB_FEATURE_SIMPLE_TAIL | 212 | #define BB_FEATURE_SIMPLE_TAIL |
213 | // | 213 | // |
214 | // Enable support for loop devices in mount | 214 | // Enable support for loop devices in mount |
@@ -238,12 +238,14 @@ | |||
238 | //// Enable reverse sort | 238 | //// Enable reverse sort |
239 | #define BB_FEATURE_SORT_REVERSE | 239 | #define BB_FEATURE_SORT_REVERSE |
240 | // | 240 | // |
241 | // Enable command line editing in the shell | 241 | // Enable command line editing in the shell. |
242 | // Only relevant if BB_SH is enabled. | ||
242 | #define BB_FEATURE_SH_COMMAND_EDITING | 243 | #define BB_FEATURE_SH_COMMAND_EDITING |
243 | // | 244 | // |
244 | //Allow the shell to invoke all the compiled in BusyBox applets as if they | 245 | //Allow the shell to invoke all the compiled in BusyBox applets as if they |
245 | //were shell builtins. Nice for staticly linking an emergency rescue shell, | 246 | //were shell builtins. Nice for staticly linking an emergency rescue shell, |
246 | //among other things. | 247 | //among other things. |
248 | // Only relevant if BB_SH is enabled. | ||
247 | #define BB_FEATURE_SH_STANDALONE_SHELL | 249 | #define BB_FEATURE_SH_STANDALONE_SHELL |
248 | // | 250 | // |
249 | //When this is enabled, busybox shell applets can be called using full path | 251 | //When this is enabled, busybox shell applets can be called using full path |
@@ -252,10 +254,12 @@ | |||
252 | //will use BusyBox cat even if /bin/cat exists on the filesystem and is _not_ | 254 | //will use BusyBox cat even if /bin/cat exists on the filesystem and is _not_ |
253 | //busybox. Some systems want this, others do not. Choose wisely. :-) This | 255 | //busybox. Some systems want this, others do not. Choose wisely. :-) This |
254 | //only has meaning when BB_FEATURE_SH_STANDALONE_SHELL is enabled. | 256 | //only has meaning when BB_FEATURE_SH_STANDALONE_SHELL is enabled. |
257 | // Only relevant if BB_SH is enabled. | ||
255 | //BB_FEATURE_SH_APPLETS_ALWAYS_WIN | 258 | //BB_FEATURE_SH_APPLETS_ALWAYS_WIN |
256 | // | 259 | // |
257 | // Enable tab completion in the shell (not yet | 260 | // Enable tab completion in the shell (not yet |
258 | // working very well -- so don't turn this on) | 261 | // working very well -- so don't turn this on) |
262 | // Only relevant if BB_SH is enabled. | ||
259 | //#define BB_FEATURE_SH_TAB_COMPLETION | 263 | //#define BB_FEATURE_SH_TAB_COMPLETION |
260 | // | 264 | // |
261 | //Turn on extra fbset options | 265 | //Turn on extra fbset options |