diff options
| author | Rob Landley <rob@landley.net> | 2006-04-13 23:22:16 +0000 |
|---|---|---|
| committer | Rob Landley <rob@landley.net> | 2006-04-13 23:22:16 +0000 |
| commit | 2ec922eed5093084837be628efc07c635ad30357 (patch) | |
| tree | 191d18163e85eb614e33a38bd93da35b7c3f3366 /shell | |
| parent | 6b4377f3337d7d3e21e63aa1341d33fd51c2f97c (diff) | |
| download | busybox-w32-2ec922eed5093084837be628efc07c635ad30357.tar.gz busybox-w32-2ec922eed5093084837be628efc07c635ad30357.tar.bz2 busybox-w32-2ec922eed5093084837be628efc07c635ad30357.zip | |
Patch from Robert P Day: let menuconfig indent stuff for us, we don't have
to do it in Config.in.
Diffstat (limited to 'shell')
| -rw-r--r-- | shell/Config.in | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/shell/Config.in b/shell/Config.in index fd73b156e..dde8fd1dd 100644 --- a/shell/Config.in +++ b/shell/Config.in | |||
| @@ -48,14 +48,14 @@ comment "Ash Shell Options" | |||
| 48 | depends on CONFIG_ASH | 48 | depends on CONFIG_ASH |
| 49 | 49 | ||
| 50 | config CONFIG_ASH_JOB_CONTROL | 50 | config CONFIG_ASH_JOB_CONTROL |
| 51 | bool " Enable Job control" | 51 | bool "Enable Job control" |
| 52 | default y | 52 | default y |
| 53 | depends on CONFIG_ASH | 53 | depends on CONFIG_ASH |
| 54 | help | 54 | help |
| 55 | Enable job control in the ash shell. | 55 | Enable job control in the ash shell. |
| 56 | 56 | ||
| 57 | config CONFIG_ASH_READ_NCHARS | 57 | config CONFIG_ASH_READ_NCHARS |
| 58 | bool " Enable 'read -n N' and 'read -s' support" | 58 | bool "Enable 'read -n N' and 'read -s' support" |
| 59 | default n | 59 | default n |
| 60 | depends on CONFIG_ASH | 60 | depends on CONFIG_ASH |
| 61 | help | 61 | help |
| @@ -63,7 +63,7 @@ config CONFIG_ASH_READ_NCHARS | |||
| 63 | 'read -s' will read without echoing the user's input. | 63 | 'read -s' will read without echoing the user's input. |
| 64 | 64 | ||
| 65 | config CONFIG_ASH_READ_TIMEOUT | 65 | config CONFIG_ASH_READ_TIMEOUT |
| 66 | bool " Enable 'read -t S' support." | 66 | bool "Enable 'read -t S' support." |
| 67 | default n | 67 | default n |
| 68 | depends on CONFIG_ASH | 68 | depends on CONFIG_ASH |
| 69 | help | 69 | help |
| @@ -72,21 +72,21 @@ config CONFIG_ASH_READ_TIMEOUT | |||
| 72 | as a decimal fraction, e.g. 'read -t 2.5 foo'. | 72 | as a decimal fraction, e.g. 'read -t 2.5 foo'. |
| 73 | 73 | ||
| 74 | config CONFIG_ASH_ALIAS | 74 | config CONFIG_ASH_ALIAS |
| 75 | bool " Enable alias support" | 75 | bool "Enable alias support" |
| 76 | default y | 76 | default y |
| 77 | depends on CONFIG_ASH | 77 | depends on CONFIG_ASH |
| 78 | help | 78 | help |
| 79 | Enable alias support in the ash shell. | 79 | Enable alias support in the ash shell. |
| 80 | 80 | ||
| 81 | config CONFIG_ASH_MATH_SUPPORT | 81 | config CONFIG_ASH_MATH_SUPPORT |
| 82 | bool " Enable Posix math support" | 82 | bool "Enable Posix math support" |
| 83 | default y | 83 | default y |
| 84 | depends on CONFIG_ASH | 84 | depends on CONFIG_ASH |
| 85 | help | 85 | help |
| 86 | Enable math support in the ash shell. | 86 | Enable math support in the ash shell. |
| 87 | 87 | ||
| 88 | config CONFIG_ASH_MATH_SUPPORT_64 | 88 | config CONFIG_ASH_MATH_SUPPORT_64 |
| 89 | bool " Extend Posix math support to 64 bit" | 89 | bool "Extend Posix math support to 64 bit" |
| 90 | default n | 90 | default n |
| 91 | depends on CONFIG_ASH_MATH_SUPPORT | 91 | depends on CONFIG_ASH_MATH_SUPPORT |
| 92 | help | 92 | help |
| @@ -95,14 +95,14 @@ config CONFIG_ASH_MATH_SUPPORT_64 | |||
| 95 | large numbers. | 95 | large numbers. |
| 96 | 96 | ||
| 97 | config CONFIG_ASH_GETOPTS | 97 | config CONFIG_ASH_GETOPTS |
| 98 | bool " Enable getopts builtin to parse positional parameters" | 98 | bool "Enable getopts builtin to parse positional parameters" |
| 99 | default n | 99 | default n |
| 100 | depends on CONFIG_ASH | 100 | depends on CONFIG_ASH |
| 101 | help | 101 | help |
| 102 | Enable getopts builtin in the ash shell. | 102 | Enable getopts builtin in the ash shell. |
| 103 | 103 | ||
| 104 | config CONFIG_ASH_CMDCMD | 104 | config CONFIG_ASH_CMDCMD |
| 105 | bool " Enable cmdcmd to override shell builtins" | 105 | bool "Enable cmdcmd to override shell builtins" |
| 106 | default n | 106 | default n |
| 107 | depends on CONFIG_ASH | 107 | depends on CONFIG_ASH |
| 108 | help | 108 | help |
| @@ -111,7 +111,7 @@ config CONFIG_ASH_CMDCMD | |||
| 111 | even when there is an ash builtin command with the same name. | 111 | even when there is an ash builtin command with the same name. |
| 112 | 112 | ||
| 113 | config CONFIG_ASH_BUILTIN_ECHO | 113 | config CONFIG_ASH_BUILTIN_ECHO |
| 114 | bool " Enable builtin version of 'echo'" | 114 | bool "Enable builtin version of 'echo'" |
| 115 | default n | 115 | default n |
| 116 | depends on CONFIG_ASH | 116 | depends on CONFIG_ASH |
| 117 | help | 117 | help |
| @@ -119,28 +119,28 @@ config CONFIG_ASH_BUILTIN_ECHO | |||
| 119 | 119 | ||
| 120 | # this entry also appears in coreutils/Config.in, next to the echo applet | 120 | # this entry also appears in coreutils/Config.in, next to the echo applet |
| 121 | config CONFIG_FEATURE_FANCY_ECHO | 121 | config CONFIG_FEATURE_FANCY_ECHO |
| 122 | bool " Enable echo options (-n and -e)" | 122 | bool "Enable echo options (-n and -e)" |
| 123 | default y | 123 | default y |
| 124 | depends on CONFIG_ASH_BUILTIN_ECHO | 124 | depends on CONFIG_ASH_BUILTIN_ECHO |
| 125 | help | 125 | help |
| 126 | This adds options (-n and -e) to echo. | 126 | This adds options (-n and -e) to echo. |
| 127 | 127 | ||
| 128 | config CONFIG_ASH_MAIL | 128 | config CONFIG_ASH_MAIL |
| 129 | bool " Check for new mail on interactive shells" | 129 | bool "Check for new mail on interactive shells" |
| 130 | default y | 130 | default y |
| 131 | depends on CONFIG_ASH | 131 | depends on CONFIG_ASH |
| 132 | help | 132 | help |
| 133 | Enable "check for new mail" in the ash shell. | 133 | Enable "check for new mail" in the ash shell. |
| 134 | 134 | ||
| 135 | config CONFIG_ASH_OPTIMIZE_FOR_SIZE | 135 | config CONFIG_ASH_OPTIMIZE_FOR_SIZE |
| 136 | bool " Optimize for size instead of speed" | 136 | bool "Optimize for size instead of speed" |
| 137 | default y | 137 | default y |
| 138 | depends on CONFIG_ASH | 138 | depends on CONFIG_ASH |
| 139 | help | 139 | help |
| 140 | Compile ash for reduced size at the price of speed. | 140 | Compile ash for reduced size at the price of speed. |
| 141 | 141 | ||
| 142 | config CONFIG_ASH_RANDOM_SUPPORT | 142 | config CONFIG_ASH_RANDOM_SUPPORT |
| 143 | bool " Enable pseudorandom generator and variable $RANDOM" | 143 | bool "Enable pseudorandom generator and variable $RANDOM" |
| 144 | default n | 144 | default n |
| 145 | depends on CONFIG_ASH | 145 | depends on CONFIG_ASH |
| 146 | help | 146 | help |
| @@ -151,7 +151,7 @@ config CONFIG_ASH_RANDOM_SUPPORT | |||
| 151 | variable will no longer have special treatment. | 151 | variable will no longer have special treatment. |
| 152 | 152 | ||
| 153 | config CONFIG_ASH_EXPAND_PRMT | 153 | config CONFIG_ASH_EXPAND_PRMT |
| 154 | bool " Expand prompt string" | 154 | bool "Expand prompt string" |
| 155 | default n | 155 | default n |
| 156 | depends on CONFIG_ASH | 156 | depends on CONFIG_ASH |
| 157 | help | 157 | help |
