Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see scripts/kbuild/config-language.txt. |
| 4 | # |
| 5 | |
| 6 | menu "Coreutils" |
| 7 | |
| 8 | config CONFIG_BASENAME |
| 9 | bool "basename" |
| 10 | default n |
| 11 | help |
Eric Andersen | 4762a48 | 2003-04-04 14:35:36 +0000 | [diff] [blame] | 12 | basename is used to strip the directory and suffix from filenames, |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 13 | leaving just the filename itself. Enable this option if you wish |
Eric Andersen | 4762a48 | 2003-04-04 14:35:36 +0000 | [diff] [blame] | 14 | to enable the 'basename' utility. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 15 | |
| 16 | config CONFIG_CAL |
| 17 | bool "cal" |
| 18 | default n |
| 19 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 20 | cal is used to display a monthly calender. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 21 | |
| 22 | config CONFIG_CAT |
| 23 | bool "cat" |
| 24 | default n |
| 25 | help |
Eric Andersen | 982da3e | 2003-04-04 15:20:53 +0000 | [diff] [blame] | 26 | cat is used to concatenate files and print them to the standard |
| 27 | output. Enable this option if you wish to enable the 'cat' utility. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 28 | |
| 29 | config CONFIG_CHGRP |
| 30 | bool "chgrp" |
| 31 | default n |
| 32 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 33 | chgrp is used to change the group ownership of files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 34 | |
| 35 | config CONFIG_CHMOD |
| 36 | bool "chmod" |
| 37 | default n |
| 38 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 39 | chmod is used to change the access permission of files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 40 | |
| 41 | config CONFIG_CHOWN |
| 42 | bool "chown" |
| 43 | default n |
| 44 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 45 | chown is used to change the user and/or group ownership |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 46 | of files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 47 | |
| 48 | config CONFIG_CHROOT |
| 49 | bool "chroot" |
| 50 | default n |
| 51 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 52 | chroot is used to change the root directory and run a command. |
| 53 | The default command is `/bin/sh'. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 54 | |
| 55 | config CONFIG_CMP |
| 56 | bool "cmp" |
| 57 | default n |
| 58 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 59 | cmp is used to compare two files and returns the result |
| 60 | to standard output. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 61 | |
Rob Landley | 2acfd7b | 2005-05-11 23:12:49 +0000 | [diff] [blame] | 62 | config CONFIG_COMM |
| 63 | bool "comm" |
| 64 | default n |
| 65 | help |
| 66 | comm is used to compare two files line by line and return |
| 67 | a three-column output. |
| 68 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 69 | config CONFIG_CP |
| 70 | bool "cp" |
| 71 | default n |
| 72 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 73 | cp is used to copy files and directories. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 74 | |
| 75 | config CONFIG_CUT |
| 76 | bool "cut" |
| 77 | default n |
| 78 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 79 | cut is used to print selected parts of lines from |
| 80 | each file to stdout. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 81 | |
| 82 | if CONFIG_WATCH |
| 83 | config CONFIG_DATE |
| 84 | default y |
| 85 | comment "date (forced enabled for use with watch)" |
| 86 | endif |
| 87 | |
| 88 | if !CONFIG_WATCH |
| 89 | config CONFIG_DATE |
| 90 | bool "date" |
| 91 | default n |
| 92 | help |
Eric Andersen | e5920a2 | 2003-07-03 10:00:15 +0000 | [diff] [blame] | 93 | date is used to set the system date or display the |
| 94 | current time in the given format. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 95 | endif |
| 96 | |
| 97 | config CONFIG_FEATURE_DATE_ISOFMT |
| 98 | bool " Enable ISO date format output (-I)" |
| 99 | default y |
| 100 | depends on CONFIG_DATE |
| 101 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 102 | Enable option (-I) to output an ISO-8601 compliant |
| 103 | date/time string. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 104 | |
| 105 | config CONFIG_DD |
| 106 | bool "dd" |
| 107 | default n |
| 108 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 109 | dd copies a file (from standard input to standard output, |
| 110 | by default) using specific input and output blocksizes, |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 111 | while optionally performing conversions on it. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 112 | |
| 113 | config CONFIG_DF |
| 114 | bool "df" |
| 115 | default n |
| 116 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 117 | df reports the amount of disk space used and available |
| 118 | on filesystems. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 119 | |
| 120 | config CONFIG_DIRNAME |
| 121 | bool "dirname" |
| 122 | default n |
| 123 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 124 | dirname is used to strip a non-directory suffix from |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 125 | a file name. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 126 | |
| 127 | config CONFIG_DOS2UNIX |
| 128 | bool "dos2unix/unix2dos" |
| 129 | default n |
| 130 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 131 | dos2unix is used to convert a text file from DOS format to |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 132 | UNIX format, and vice versa. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 133 | |
Eric Andersen | 7c51243 | 2003-06-26 21:53:51 +0000 | [diff] [blame] | 134 | config CONFIG_UNIX2DOS |
| 135 | bool |
| 136 | default y |
| 137 | depends on CONFIG_DOS2UNIX |
| 138 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 139 | config CONFIG_DU |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 140 | bool "du (default blocksize of 512 bytes)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 141 | default n |
| 142 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 143 | du is used to report the amount of disk space used |
| 144 | for specified files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 145 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 146 | config CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K |
| 147 | bool " Use a default blocksize of 1024 bytes (1K)" |
| 148 | default y |
| 149 | depends on CONFIG_DU |
| 150 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 151 | Use a blocksize of (1K) instead of the default 512b. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 152 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 153 | config CONFIG_ECHO |
Mike Frysinger | 7f8797c | 2005-09-24 23:15:28 +0000 | [diff] [blame] | 154 | bool "echo (basic SuSv3 version taking no options)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 155 | default n |
| 156 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 157 | echo is used to print a specified string to stdout. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 158 | |
Paul Fox | 0b62158 | 2005-08-09 19:38:05 +0000 | [diff] [blame] | 159 | # this entry also appears in shell/Config.in, next to the echo builtin |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 160 | config CONFIG_FEATURE_FANCY_ECHO |
| 161 | bool " Enable echo options (-n and -e)" |
| 162 | default y |
| 163 | depends on CONFIG_ECHO |
| 164 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 165 | This adds options (-n and -e) to echo. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 166 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 167 | config CONFIG_ENV |
| 168 | bool "env" |
| 169 | default n |
| 170 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 171 | env is used to set an environment variable and run |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 172 | a command; without options it displays the current |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 173 | environment. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 174 | |
| 175 | config CONFIG_EXPR |
| 176 | bool "expr" |
| 177 | default n |
| 178 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 179 | expr is used to calculate numbers and print the result |
| 180 | to standard output. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 181 | |
| 182 | if CONFIG_HUSH || CONFIG_LASH || CONFIG_MSH |
| 183 | config CONFIG_FALSE |
| 184 | default y |
| 185 | comment "false (forced enabled for use with shell)" |
| 186 | endif |
| 187 | |
| 188 | if !CONFIG_HUSH && !CONFIG_LASH && !CONFIG_MSH |
| 189 | config CONFIG_FALSE |
| 190 | bool "false" |
| 191 | default n |
| 192 | help |
Eric Andersen | e5920a2 | 2003-07-03 10:00:15 +0000 | [diff] [blame] | 193 | false returns an exit code of FALSE (1). |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 194 | endif |
| 195 | |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 196 | config CONFIG_FOLD |
| 197 | bool "fold" |
| 198 | default n |
| 199 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 200 | Wrap text to fit a specific width. |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 201 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 202 | config CONFIG_HEAD |
| 203 | bool "head" |
| 204 | default n |
| 205 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 206 | head is used to print the first specified number of lines |
| 207 | from files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 208 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 209 | config CONFIG_FEATURE_FANCY_HEAD |
| 210 | bool " Enable head options (-c, -q, and -v)" |
| 211 | default n |
| 212 | depends on CONFIG_HEAD |
| 213 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 214 | This enables the head options (-c, -q, and -v). |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 215 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 216 | config CONFIG_HOSTID |
| 217 | bool "hostid" |
| 218 | default n |
| 219 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 220 | hostid prints the numeric identifier (in hexadecimal) for |
| 221 | the current host. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 222 | |
| 223 | config CONFIG_ID |
| 224 | bool "id" |
| 225 | default n |
| 226 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 227 | id displays the current user and group ID names. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 228 | |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 229 | config CONFIG_INSTALL |
| 230 | bool "install" |
| 231 | default n |
| 232 | help |
| 233 | Copy files and set attributes. |
| 234 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 235 | config CONFIG_LENGTH |
| 236 | bool "length" |
| 237 | default n |
| 238 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 239 | length is used to print out the length of a specified string. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 240 | |
| 241 | config CONFIG_LN |
| 242 | bool "ln" |
| 243 | default n |
| 244 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 245 | ln is used to create hard or soft links between files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 246 | |
| 247 | config CONFIG_LOGNAME |
| 248 | bool "logname" |
| 249 | default n |
| 250 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 251 | logname is used to print the current user's login name. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 252 | |
| 253 | config CONFIG_LS |
| 254 | bool "ls" |
| 255 | default n |
| 256 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 257 | ls is used to list the contents of directories. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 258 | |
| 259 | config CONFIG_FEATURE_LS_FILETYPES |
| 260 | bool " Enable filetyping options (-p and -F)" |
| 261 | default y |
| 262 | depends on CONFIG_LS |
| 263 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 264 | Enable the ls options (-p and -F). |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 265 | |
| 266 | config CONFIG_FEATURE_LS_FOLLOWLINKS |
| 267 | bool " Enable symlinks dereferencing (-L)" |
| 268 | default y |
| 269 | depends on CONFIG_LS |
| 270 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 271 | Enable the ls option (-L). |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 272 | |
| 273 | config CONFIG_FEATURE_LS_RECURSIVE |
| 274 | bool " Enable recursion (-R)" |
| 275 | default y |
| 276 | depends on CONFIG_LS |
| 277 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 278 | Enable the ls option (-R). |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 279 | |
| 280 | config CONFIG_FEATURE_LS_SORTFILES |
| 281 | bool " Sort the file names" |
| 282 | default y |
| 283 | depends on CONFIG_LS |
| 284 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 285 | Allow ls to sort file names alphabetically. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 286 | |
| 287 | config CONFIG_FEATURE_LS_TIMESTAMPS |
| 288 | bool " Show file timestamps" |
| 289 | default y |
| 290 | depends on CONFIG_LS |
| 291 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 292 | Allow ls to display timestamps for files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 293 | |
| 294 | config CONFIG_FEATURE_LS_USERNAME |
| 295 | bool " Show username/groupnames" |
| 296 | default y |
| 297 | depends on CONFIG_LS |
| 298 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 299 | Allow ls to display username/groupname for files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 300 | |
| 301 | config CONFIG_FEATURE_LS_COLOR |
Paul Fox | 156dc41 | 2005-08-01 19:33:30 +0000 | [diff] [blame] | 302 | bool " Allow use of color to identify file types" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 303 | default y |
| 304 | depends on CONFIG_LS |
| 305 | help |
Paul Fox | 156dc41 | 2005-08-01 19:33:30 +0000 | [diff] [blame] | 306 | This enables the --color option to ls. |
| 307 | |
| 308 | if CONFIG_FEATURE_LS_COLOR |
| 309 | config CONFIG_FEATURE_LS_COLOR_IS_DEFAULT |
| 310 | bool " Produce colored ls output by default" |
| 311 | default n |
| 312 | help |
| 313 | Saying yes here will turn coloring on by default, |
| 314 | even if no "--color" option is given to the ls command. |
| 315 | This is not recommended, since the colors are not |
| 316 | configurable, and the output may not be legible on |
| 317 | many output screens. |
| 318 | endif |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 319 | |
| 320 | config CONFIG_MD5SUM |
| 321 | bool "md5sum" |
| 322 | default n |
| 323 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 324 | md5sum is used to print or check MD5 checksums. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 325 | |
| 326 | config CONFIG_MKDIR |
| 327 | bool "mkdir" |
| 328 | default n |
| 329 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 330 | mkdir is used to create directories with the specified names. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 331 | |
| 332 | config CONFIG_MKFIFO |
| 333 | bool "mkfifo" |
| 334 | default n |
| 335 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 336 | mkfifo is used to create FIFOs (named pipes). |
| 337 | The `mknod' program can also create FIFOs. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 338 | |
| 339 | config CONFIG_MKNOD |
| 340 | bool "mknod" |
| 341 | default n |
| 342 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 343 | mknod is used to create FIFOs or block/character special |
| 344 | files with the specified names. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 345 | |
| 346 | config CONFIG_MV |
| 347 | bool "mv" |
| 348 | default n |
| 349 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 350 | mv is used to move or rename files or directories. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 351 | |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 352 | config CONFIG_NICE |
| 353 | bool "nice" |
| 354 | default n |
| 355 | help |
| 356 | nice runs a program with modified scheduling priority. |
| 357 | |
Bernhard Reutner-Fischer | 9d7010c | 2005-09-21 18:25:05 +0000 | [diff] [blame] | 358 | config CONFIG_NOHUP |
| 359 | bool "nohup" |
| 360 | default n |
| 361 | help |
| 362 | run a command immune to hangups, with output to a non-tty. |
| 363 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 364 | config CONFIG_OD |
| 365 | bool "od" |
| 366 | default n |
| 367 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 368 | od is used to dump binary files in octal and other formats. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 369 | |
Mike Frysinger | 7f8797c | 2005-09-24 23:15:28 +0000 | [diff] [blame] | 370 | config CONFIG_PRINTENV |
| 371 | bool "printenv" |
| 372 | default n |
| 373 | help |
| 374 | printenv is used to print all or part of environment. |
| 375 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 376 | config CONFIG_PRINTF |
| 377 | bool "printf" |
| 378 | default n |
| 379 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 380 | printf is used to format and print specified strings. |
| 381 | It's similar to `echo' except it has more options. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 382 | |
| 383 | config CONFIG_PWD |
| 384 | bool "pwd" |
| 385 | default n |
| 386 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 387 | pwd is used to print the current directory. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 388 | |
| 389 | config CONFIG_REALPATH |
| 390 | bool "realpath" |
| 391 | default n |
| 392 | help |
| 393 | Return the canonicalized absolute pathname. |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 394 | This isn't provided by GNU shellutils, but where else does it belong. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 395 | |
| 396 | config CONFIG_RM |
| 397 | bool "rm" |
| 398 | default n |
| 399 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 400 | rm is used to remove files or directories. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 401 | |
| 402 | config CONFIG_RMDIR |
| 403 | bool "rmdir" |
| 404 | default n |
| 405 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 406 | rmdir is used to remove empty directories. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 407 | |
Glenn L McGrath | 82364bb | 2004-01-27 09:22:20 +0000 | [diff] [blame] | 408 | config CONFIG_SEQ |
| 409 | bool "seq" |
| 410 | default n |
| 411 | help |
| 412 | print a sequence of numbers |
| 413 | |
Glenn L McGrath | ae0f1e7 | 2003-02-17 08:23:22 +0000 | [diff] [blame] | 414 | config CONFIG_SHA1SUM |
| 415 | bool "sha1sum" |
| 416 | default n |
| 417 | help |
| 418 | Compute and check SHA1 message digest |
| 419 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 420 | config CONFIG_SLEEP |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 421 | bool "sleep (single integer arg with no suffix)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 422 | default n |
| 423 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 424 | sleep is used to pause for a specified number of seconds, |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 425 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 426 | config CONFIG_FEATURE_FANCY_SLEEP |
| 427 | bool " Enable multiple integer args and optional time suffixes" |
| 428 | default n |
| 429 | depends on CONFIG_SLEEP |
| 430 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 431 | Allow sleep to pause for specified minutes, hours, and days. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 432 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 433 | config CONFIG_SORT |
| 434 | bool "sort" |
| 435 | default n |
| 436 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 437 | sort is used to sort lines of text in specified files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 438 | |
Rob Landley | 45ad0e8 | 2005-10-08 17:48:25 +0000 | [diff] [blame] | 439 | config CONFIG_FEATURE_SORT_BIG |
Rob Landley | c0dedd0 | 2005-01-24 07:00:02 +0000 | [diff] [blame] | 440 | bool " full SuSv3 compliant sort (Support -ktcsbdfiozgM)" |
| 441 | default y |
| 442 | depends on CONFIG_SORT |
| 443 | help |
| 444 | Without this, sort only supports -r, -u, and an integer version |
| 445 | of -n. Selecting this adds sort keys, floating point support, and |
| 446 | more. This adds a little over 3k to a nonstatic build on x86. |
| 447 | |
| 448 | The SuSv3 sort standard is available at: |
| 449 | http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html |
| 450 | |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 451 | config CONFIG_STAT |
| 452 | bool "stat" |
| 453 | default n |
| 454 | help |
| 455 | display file or filesystem status. |
| 456 | |
| 457 | config CONFIG_FEATURE_STAT_FORMAT |
| 458 | bool " Enable custom formats (-c)" |
| 459 | default n |
| 460 | depends on CONFIG_STAT |
| 461 | help |
| 462 | Without this, stat will not support the '-c format' option where |
| 463 | users can pass a custom format string for output. This adds about |
| 464 | 7k to a nonstatic build on amd64. |
| 465 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 466 | config CONFIG_STTY |
| 467 | bool "stty" |
| 468 | default n |
| 469 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 470 | stty is used to change and print terminal line settings. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 471 | |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 472 | config CONFIG_SUM |
| 473 | bool "sum" |
| 474 | default n |
| 475 | help |
| 476 | checksum and count the blocks in a file |
| 477 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 478 | config CONFIG_SYNC |
| 479 | bool "sync" |
| 480 | default n |
| 481 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 482 | sync is used to flush filesystem buffers. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 483 | |
| 484 | config CONFIG_TAIL |
| 485 | bool "tail" |
| 486 | default n |
| 487 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 488 | tail is used to print the last specified number of lines |
| 489 | from files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 490 | |
| 491 | config CONFIG_FEATURE_FANCY_TAIL |
Glenn L McGrath | 4ef5a84 | 2003-10-31 00:35:59 +0000 | [diff] [blame] | 492 | bool " Enable extra tail options (-q, -s, and -v)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 493 | default y |
| 494 | depends on CONFIG_TAIL |
| 495 | help |
Glenn L McGrath | 4ef5a84 | 2003-10-31 00:35:59 +0000 | [diff] [blame] | 496 | The options (-q, -s, and -v) are provided by GNU tail, but |
| 497 | are not specific in the SUSv3 standard. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 498 | |
| 499 | config CONFIG_TEE |
| 500 | bool "tee" |
| 501 | default n |
| 502 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 503 | tee is used to read from standard input and write |
| 504 | to standard output and files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 505 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 506 | config CONFIG_FEATURE_TEE_USE_BLOCK_IO |
| 507 | bool " Enable block i/o (larger/faster) instead of byte i/o." |
| 508 | default n |
| 509 | depends on CONFIG_TEE |
| 510 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 511 | Enable this option for a faster tee, at expense of size. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 512 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 513 | if CONFIG_ASH || CONFIG_HUSH || CONFIG_LASH || CONFIG_MSH |
| 514 | config CONFIG_TEST |
| 515 | default y |
| 516 | comment "test (forced enabled for use with shell)" |
| 517 | endif |
| 518 | |
| 519 | if !CONFIG_ASH && !CONFIG_HUSH && !CONFIG_LASH && !CONFIG_MSH |
| 520 | config CONFIG_TEST |
| 521 | bool "test" |
| 522 | default n |
| 523 | help |
Eric Andersen | e5920a2 | 2003-07-03 10:00:15 +0000 | [diff] [blame] | 524 | test is used to check file types and compare values, |
| 525 | returning an appropriate exit code. The shells (ash |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 526 | and bash) have test builtin. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 527 | endif |
| 528 | |
Glenn L McGrath | 73db8be | 2004-08-11 02:45:47 +0000 | [diff] [blame] | 529 | config CONFIG_FEATURE_TEST_64 |
| 530 | bool " Extend test to 64 bit" |
| 531 | default n |
| 532 | depends on CONFIG_TEST |
| 533 | help |
| 534 | Enable 64-bit support in test. |
| 535 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 536 | config CONFIG_TOUCH |
| 537 | bool "touch" |
| 538 | default n |
| 539 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 540 | touch is used to create or change the access and/or |
| 541 | modification timestamp of specified files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 542 | |
| 543 | config CONFIG_TR |
| 544 | bool "tr" |
| 545 | default n |
| 546 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 547 | tr is used to squeeze, and/or delete characters from standard |
| 548 | input, writing to standard output. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 549 | |
Rob Landley | 45ad0e8 | 2005-10-08 17:48:25 +0000 | [diff] [blame] | 550 | config CONFIG_FEATURE_TR_CLASSES |
| 551 | bool " Enable character classes (such as [:upper:])" |
| 552 | default n |
| 553 | depends on CONFIG_TR |
| 554 | help |
| 555 | Enable character classes, enabling commands such as: |
| 556 | tr [:upper:] [:lower:] to convert input into lowercase. |
| 557 | |
| 558 | config CONFIG_FEATURE_TR_EQUIV |
| 559 | bool " Enable equivalence classes" |
| 560 | default n |
| 561 | depends on CONFIG_TR |
| 562 | help |
| 563 | Enable equivalence classes, which essentially add the enclosed |
| 564 | character to the current set. For instance, tr [=a=] xyz would |
| 565 | replace all instances of 'a' with 'xyz'. This option is mainly |
| 566 | useful for cases when no other way of expressing a character |
| 567 | is possible. |
| 568 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 569 | if CONFIG_HUSH || CONFIG_LASH || CONFIG_MSH |
| 570 | config CONFIG_TRUE |
| 571 | default y |
| 572 | comment "true (forced enabled for use with shell)" |
| 573 | endif |
| 574 | |
| 575 | if !CONFIG_HUSH && !CONFIG_LASH && !CONFIG_MSH |
| 576 | config CONFIG_TRUE |
| 577 | bool "true" |
| 578 | default n |
| 579 | help |
Eric Andersen | e5920a2 | 2003-07-03 10:00:15 +0000 | [diff] [blame] | 580 | true returns an exit code of TRUE (0). |
| 581 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 582 | endif |
| 583 | |
| 584 | config CONFIG_TTY |
| 585 | bool "tty" |
| 586 | default n |
| 587 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 588 | tty is used to print the name of the current terminal to |
| 589 | standard output. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 590 | |
| 591 | config CONFIG_UNAME |
| 592 | bool "uname" |
| 593 | default n |
| 594 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 595 | uname is used to print system information. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 596 | |
| 597 | config CONFIG_UNIQ |
| 598 | bool "uniq" |
| 599 | default n |
| 600 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 601 | uniq is used to remove duplicate lines from a sorted file. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 602 | |
| 603 | config CONFIG_USLEEP |
| 604 | bool "usleep" |
| 605 | default n |
| 606 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 607 | usleep is used to pause for a specified number of microseconds. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 608 | |
| 609 | config CONFIG_UUDECODE |
| 610 | bool "uudecode" |
| 611 | default n |
| 612 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 613 | uudecode is used to decode a uuencoded file. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 614 | |
| 615 | config CONFIG_UUENCODE |
| 616 | bool "uuencode" |
| 617 | default n |
| 618 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 619 | uuencode is used to uuencode a file. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 620 | |
| 621 | config CONFIG_WATCH |
| 622 | bool "watch" |
| 623 | default n |
| 624 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 625 | watch is used to execute a program periodically, showing |
| 626 | output to the screen. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 627 | |
| 628 | config CONFIG_WC |
| 629 | bool "wc" |
| 630 | default n |
| 631 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 632 | wc is used to print the number of bytes, words, and lines, |
| 633 | in specified files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 634 | |
| 635 | config CONFIG_WHO |
| 636 | bool "who" |
| 637 | default n |
Mike Frysinger | 8deb686 | 2005-07-01 01:04:32 +0000 | [diff] [blame] | 638 | select CONFIG_FEATURE_UTMP |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 639 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 640 | who is used to show who is logged on. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 641 | |
| 642 | config CONFIG_WHOAMI |
| 643 | bool "whoami" |
| 644 | default n |
| 645 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 646 | whoami is used to print the username of the current |
| 647 | user id (same as id -un). |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 648 | |
| 649 | config CONFIG_YES |
| 650 | bool "yes" |
| 651 | default n |
| 652 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 653 | yes is used to repeatedly output a specific string, or |
| 654 | the default string `y'. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 655 | |
| 656 | comment "Common options for cp and mv" |
| 657 | depends on CONFIG_CP || CONFIG_MV |
| 658 | |
| 659 | config CONFIG_FEATURE_PRESERVE_HARDLINKS |
| 660 | bool " Preserve hard links" |
| 661 | default n |
| 662 | depends on CONFIG_CP || CONFIG_MV |
| 663 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 664 | Allow cp and mv to preserve hard links. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 665 | |
| 666 | comment "Common options for ls and more" |
Eric Andersen | 727f529 | 2003-07-26 09:33:16 +0000 | [diff] [blame] | 667 | depends on CONFIG_LS || CONFIG_MORE |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 668 | |
| 669 | config CONFIG_FEATURE_AUTOWIDTH |
| 670 | bool " Calculate terminal & column widths" |
Eric Andersen | 727f529 | 2003-07-26 09:33:16 +0000 | [diff] [blame] | 671 | default y |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 672 | depends on CONFIG_LS || CONFIG_MORE |
| 673 | help |
Eric Andersen | 727f529 | 2003-07-26 09:33:16 +0000 | [diff] [blame] | 674 | This option allows utilities such as 'ls' and 'more' to determine the |
| 675 | width of the screen, which can allow them to display additional text |
| 676 | or avoid wrapping text onto the next line. If you leave this |
| 677 | disabled, your utilities will be especially primitive and will be |
| 678 | unable to determine the current screen width. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 679 | |
| 680 | comment "Common options for df, du, ls" |
| 681 | depends on CONFIG_DF || CONFIG_DU || CONFIG_LS |
| 682 | |
| 683 | config CONFIG_FEATURE_HUMAN_READABLE |
| 684 | bool " Support for human readable output (example 13k, 23M, 235G)" |
| 685 | default n |
| 686 | depends on CONFIG_DF || CONFIG_DU || CONFIG_LS |
| 687 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 688 | Allow df, du, and ls to have human readable output. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 689 | |
Glenn L McGrath | d2a897a | 2003-11-10 04:33:55 +0000 | [diff] [blame] | 690 | comment "Common options for md5sum, sha1sum" |
| 691 | depends on CONFIG_MD5SUM || CONFIG_SHA1SUM |
| 692 | |
| 693 | config CONFIG_FEATURE_MD5_SHA1_SUM_CHECK |
Glenn L McGrath | 5c0d84a | 2003-12-08 20:11:55 +0000 | [diff] [blame] | 694 | bool " Enable -c, -s and -w options" |
Glenn L McGrath | d2a897a | 2003-11-10 04:33:55 +0000 | [diff] [blame] | 695 | default n |
| 696 | depends on CONFIG_MD5SUM || CONFIG_SHA1SUM |
| 697 | help |
Glenn L McGrath | 5c0d84a | 2003-12-08 20:11:55 +0000 | [diff] [blame] | 698 | Enabling the -c options allows files to be checked |
Glenn L McGrath | d2a897a | 2003-11-10 04:33:55 +0000 | [diff] [blame] | 699 | against pre-calculated hash values. |
| 700 | |
Glenn L McGrath | 5c0d84a | 2003-12-08 20:11:55 +0000 | [diff] [blame] | 701 | -s and -w are useful options when verifying checksums. |
| 702 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 703 | endmenu |