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