diff options
Diffstat (limited to 'coreutils/Config.in')
-rw-r--r-- | coreutils/Config.in | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/coreutils/Config.in b/coreutils/Config.in index ead632a31..9b0873aaf 100644 --- a/coreutils/Config.in +++ b/coreutils/Config.in | |||
@@ -8,6 +8,7 @@ menu "Coreutils" | |||
8 | config BASENAME | 8 | config BASENAME |
9 | bool "basename" | 9 | bool "basename" |
10 | default n | 10 | default n |
11 | depends on PLATFORM_POSIX | ||
11 | help | 12 | help |
12 | basename is used to strip the directory and suffix from filenames, | 13 | basename is used to strip the directory and suffix from filenames, |
13 | leaving just the filename itself. Enable this option if you wish | 14 | leaving just the filename itself. Enable this option if you wish |
@@ -16,12 +17,14 @@ config BASENAME | |||
16 | config CAL | 17 | config CAL |
17 | bool "cal" | 18 | bool "cal" |
18 | default n | 19 | default n |
20 | depends on PLATFORM_POSIX | ||
19 | help | 21 | help |
20 | cal is used to display a monthly calender. | 22 | cal is used to display a monthly calender. |
21 | 23 | ||
22 | config CAT | 24 | config CAT |
23 | bool "cat" | 25 | bool "cat" |
24 | default n | 26 | default n |
27 | depends on PLATFORM_POSIX | ||
25 | help | 28 | help |
26 | cat is used to concatenate files and print them to the standard | 29 | 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. | 30 | output. Enable this option if you wish to enable the 'cat' utility. |
@@ -29,6 +32,7 @@ config CAT | |||
29 | config CATV | 32 | config CATV |
30 | bool "catv" | 33 | bool "catv" |
31 | default n | 34 | default n |
35 | depends on PLATFORM_POSIX | ||
32 | help | 36 | help |
33 | Display nonprinting characters as escape sequences (like some | 37 | Display nonprinting characters as escape sequences (like some |
34 | implementations' cat -v option). | 38 | implementations' cat -v option). |
@@ -36,18 +40,21 @@ config CATV | |||
36 | config CHGRP | 40 | config CHGRP |
37 | bool "chgrp" | 41 | bool "chgrp" |
38 | default n | 42 | default n |
43 | depends on PLATFORM_POSIX | ||
39 | help | 44 | help |
40 | chgrp is used to change the group ownership of files. | 45 | chgrp is used to change the group ownership of files. |
41 | 46 | ||
42 | config CHMOD | 47 | config CHMOD |
43 | bool "chmod" | 48 | bool "chmod" |
44 | default n | 49 | default n |
50 | depends on PLATFORM_POSIX | ||
45 | help | 51 | help |
46 | chmod is used to change the access permission of files. | 52 | chmod is used to change the access permission of files. |
47 | 53 | ||
48 | config CHOWN | 54 | config CHOWN |
49 | bool "chown" | 55 | bool "chown" |
50 | default n | 56 | default n |
57 | depends on PLATFORM_POSIX | ||
51 | help | 58 | help |
52 | chown is used to change the user and/or group ownership | 59 | chown is used to change the user and/or group ownership |
53 | of files. | 60 | of files. |
@@ -62,6 +69,7 @@ config FEATURE_CHOWN_LONG_OPTIONS | |||
62 | config CHROOT | 69 | config CHROOT |
63 | bool "chroot" | 70 | bool "chroot" |
64 | default n | 71 | default n |
72 | depends on PLATFORM_POSIX | ||
65 | help | 73 | help |
66 | chroot is used to change the root directory and run a command. | 74 | chroot is used to change the root directory and run a command. |
67 | The default command is `/bin/sh'. | 75 | The default command is `/bin/sh'. |
@@ -69,12 +77,14 @@ config CHROOT | |||
69 | config CKSUM | 77 | config CKSUM |
70 | bool "cksum" | 78 | bool "cksum" |
71 | default n | 79 | default n |
80 | depends on PLATFORM_POSIX | ||
72 | help | 81 | help |
73 | cksum is used to calculate the CRC32 checksum of a file. | 82 | cksum is used to calculate the CRC32 checksum of a file. |
74 | 83 | ||
75 | config COMM | 84 | config COMM |
76 | bool "comm" | 85 | bool "comm" |
77 | default n | 86 | default n |
87 | depends on PLATFORM_POSIX | ||
78 | help | 88 | help |
79 | comm is used to compare two files line by line and return | 89 | comm is used to compare two files line by line and return |
80 | a three-column output. | 90 | a three-column output. |
@@ -82,6 +92,7 @@ config COMM | |||
82 | config CP | 92 | config CP |
83 | bool "cp" | 93 | bool "cp" |
84 | default n | 94 | default n |
95 | depends on PLATFORM_POSIX | ||
85 | help | 96 | help |
86 | cp is used to copy files and directories. | 97 | cp is used to copy files and directories. |
87 | 98 | ||
@@ -96,6 +107,7 @@ config FEATURE_CP_LONG_OPTIONS | |||
96 | config CUT | 107 | config CUT |
97 | bool "cut" | 108 | bool "cut" |
98 | default n | 109 | default n |
110 | depends on PLATFORM_POSIX | ||
99 | help | 111 | help |
100 | cut is used to print selected parts of lines from | 112 | cut is used to print selected parts of lines from |
101 | each file to stdout. | 113 | each file to stdout. |
@@ -103,6 +115,7 @@ config CUT | |||
103 | config DATE | 115 | config DATE |
104 | bool "date" | 116 | bool "date" |
105 | default n | 117 | default n |
118 | depends on PLATFORM_POSIX | ||
106 | help | 119 | help |
107 | date is used to set the system date or display the | 120 | date is used to set the system date or display the |
108 | current time in the given format. | 121 | current time in the given format. |
@@ -134,6 +147,7 @@ config FEATURE_DATE_COMPAT | |||
134 | config DD | 147 | config DD |
135 | bool "dd" | 148 | bool "dd" |
136 | default n | 149 | default n |
150 | depends on PLATFORM_POSIX | ||
137 | help | 151 | help |
138 | dd copies a file (from standard input to standard output, | 152 | dd copies a file (from standard input to standard output, |
139 | by default) using specific input and output blocksizes, | 153 | by default) using specific input and output blocksizes, |
@@ -172,6 +186,7 @@ config FEATURE_DD_IBS_OBS | |||
172 | config DF | 186 | config DF |
173 | bool "df" | 187 | bool "df" |
174 | default n | 188 | default n |
189 | depends on PLATFORM_POSIX | ||
175 | help | 190 | help |
176 | df reports the amount of disk space used and available | 191 | df reports the amount of disk space used and available |
177 | on filesystems. | 192 | on filesystems. |
@@ -190,6 +205,7 @@ config FEATURE_DF_FANCY | |||
190 | config DIRNAME | 205 | config DIRNAME |
191 | bool "dirname" | 206 | bool "dirname" |
192 | default n | 207 | default n |
208 | depends on PLATFORM_POSIX | ||
193 | help | 209 | help |
194 | dirname is used to strip a non-directory suffix from | 210 | dirname is used to strip a non-directory suffix from |
195 | a file name. | 211 | a file name. |
@@ -197,6 +213,7 @@ config DIRNAME | |||
197 | config DOS2UNIX | 213 | config DOS2UNIX |
198 | bool "dos2unix/unix2dos" | 214 | bool "dos2unix/unix2dos" |
199 | default n | 215 | default n |
216 | depends on PLATFORM_POSIX | ||
200 | help | 217 | help |
201 | dos2unix is used to convert a text file from DOS format to | 218 | dos2unix is used to convert a text file from DOS format to |
202 | UNIX format, and vice versa. | 219 | UNIX format, and vice versa. |
@@ -212,6 +229,7 @@ config UNIX2DOS | |||
212 | config DU | 229 | config DU |
213 | bool "du (default blocksize of 512 bytes)" | 230 | bool "du (default blocksize of 512 bytes)" |
214 | default n | 231 | default n |
232 | depends on PLATFORM_POSIX | ||
215 | help | 233 | help |
216 | du is used to report the amount of disk space used | 234 | du is used to report the amount of disk space used |
217 | for specified files. | 235 | for specified files. |
@@ -226,6 +244,7 @@ config FEATURE_DU_DEFAULT_BLOCKSIZE_1K | |||
226 | config ECHO | 244 | config ECHO |
227 | bool "echo (basic SuSv3 version taking no options)" | 245 | bool "echo (basic SuSv3 version taking no options)" |
228 | default n | 246 | default n |
247 | depends on PLATFORM_POSIX | ||
229 | help | 248 | help |
230 | echo is used to print a specified string to stdout. | 249 | echo is used to print a specified string to stdout. |
231 | 250 | ||
@@ -240,6 +259,7 @@ config FEATURE_FANCY_ECHO | |||
240 | config ENV | 259 | config ENV |
241 | bool "env" | 260 | bool "env" |
242 | default n | 261 | default n |
262 | depends on PLATFORM_POSIX | ||
243 | help | 263 | help |
244 | env is used to set an environment variable and run | 264 | env is used to set an environment variable and run |
245 | a command; without options it displays the current | 265 | a command; without options it displays the current |
@@ -255,6 +275,7 @@ config FEATURE_ENV_LONG_OPTIONS | |||
255 | config EXPAND | 275 | config EXPAND |
256 | bool "expand" | 276 | bool "expand" |
257 | default n | 277 | default n |
278 | depends on PLATFORM_POSIX | ||
258 | help | 279 | help |
259 | By default, convert all tabs to spaces. | 280 | By default, convert all tabs to spaces. |
260 | 281 | ||
@@ -268,6 +289,7 @@ config FEATURE_EXPAND_LONG_OPTIONS | |||
268 | config EXPR | 289 | config EXPR |
269 | bool "expr" | 290 | bool "expr" |
270 | default n | 291 | default n |
292 | depends on PLATFORM_POSIX | ||
271 | help | 293 | help |
272 | expr is used to calculate numbers and print the result | 294 | expr is used to calculate numbers and print the result |
273 | to standard output. | 295 | to standard output. |
@@ -284,24 +306,28 @@ config EXPR_MATH_SUPPORT_64 | |||
284 | config FALSE | 306 | config FALSE |
285 | bool "false" | 307 | bool "false" |
286 | default n | 308 | default n |
309 | depends on PLATFORM_POSIX | ||
287 | help | 310 | help |
288 | false returns an exit code of FALSE (1). | 311 | false returns an exit code of FALSE (1). |
289 | 312 | ||
290 | config FOLD | 313 | config FOLD |
291 | bool "fold" | 314 | bool "fold" |
292 | default n | 315 | default n |
316 | depends on PLATFORM_POSIX | ||
293 | help | 317 | help |
294 | Wrap text to fit a specific width. | 318 | Wrap text to fit a specific width. |
295 | 319 | ||
296 | config FSYNC | 320 | config FSYNC |
297 | bool "fsync" | 321 | bool "fsync" |
298 | default n | 322 | default n |
323 | depends on PLATFORM_POSIX | ||
299 | help | 324 | help |
300 | fsync is used to flush file-related cached blocks to disk. | 325 | fsync is used to flush file-related cached blocks to disk. |
301 | 326 | ||
302 | config HEAD | 327 | config HEAD |
303 | bool "head" | 328 | bool "head" |
304 | default n | 329 | default n |
330 | depends on PLATFORM_POSIX | ||
305 | help | 331 | help |
306 | head is used to print the first specified number of lines | 332 | head is used to print the first specified number of lines |
307 | from files. | 333 | from files. |
@@ -316,6 +342,7 @@ config FEATURE_FANCY_HEAD | |||
316 | config HOSTID | 342 | config HOSTID |
317 | bool "hostid" | 343 | bool "hostid" |
318 | default n | 344 | default n |
345 | depends on PLATFORM_POSIX | ||
319 | help | 346 | help |
320 | hostid prints the numeric identifier (in hexadecimal) for | 347 | hostid prints the numeric identifier (in hexadecimal) for |
321 | the current host. | 348 | the current host. |
@@ -323,12 +350,14 @@ config HOSTID | |||
323 | config ID | 350 | config ID |
324 | bool "id" | 351 | bool "id" |
325 | default n | 352 | default n |
353 | depends on PLATFORM_POSIX | ||
326 | help | 354 | help |
327 | id displays the current user and group ID names. | 355 | id displays the current user and group ID names. |
328 | 356 | ||
329 | config INSTALL | 357 | config INSTALL |
330 | bool "install" | 358 | bool "install" |
331 | default n | 359 | default n |
360 | depends on PLATFORM_POSIX | ||
332 | help | 361 | help |
333 | Copy files and set attributes. | 362 | Copy files and set attributes. |
334 | 363 | ||
@@ -342,24 +371,28 @@ config FEATURE_INSTALL_LONG_OPTIONS | |||
342 | config LENGTH | 371 | config LENGTH |
343 | bool "length" | 372 | bool "length" |
344 | default n | 373 | default n |
374 | depends on PLATFORM_POSIX | ||
345 | help | 375 | help |
346 | length is used to print out the length of a specified string. | 376 | length is used to print out the length of a specified string. |
347 | 377 | ||
348 | config LN | 378 | config LN |
349 | bool "ln" | 379 | bool "ln" |
350 | default n | 380 | default n |
381 | depends on PLATFORM_POSIX | ||
351 | help | 382 | help |
352 | ln is used to create hard or soft links between files. | 383 | ln is used to create hard or soft links between files. |
353 | 384 | ||
354 | config LOGNAME | 385 | config LOGNAME |
355 | bool "logname" | 386 | bool "logname" |
356 | default n | 387 | default n |
388 | depends on PLATFORM_POSIX | ||
357 | help | 389 | help |
358 | logname is used to print the current user's login name. | 390 | logname is used to print the current user's login name. |
359 | 391 | ||
360 | config LS | 392 | config LS |
361 | bool "ls" | 393 | bool "ls" |
362 | default n | 394 | default n |
395 | depends on PLATFORM_POSIX | ||
363 | help | 396 | help |
364 | ls is used to list the contents of directories. | 397 | ls is used to list the contents of directories. |
365 | 398 | ||
@@ -426,12 +459,14 @@ config FEATURE_LS_COLOR_IS_DEFAULT | |||
426 | config MD5SUM | 459 | config MD5SUM |
427 | bool "md5sum" | 460 | bool "md5sum" |
428 | default n | 461 | default n |
462 | depends on PLATFORM_POSIX | ||
429 | help | 463 | help |
430 | md5sum is used to print or check MD5 checksums. | 464 | md5sum is used to print or check MD5 checksums. |
431 | 465 | ||
432 | config MKDIR | 466 | config MKDIR |
433 | bool "mkdir" | 467 | bool "mkdir" |
434 | default n | 468 | default n |
469 | depends on PLATFORM_POSIX | ||
435 | help | 470 | help |
436 | mkdir is used to create directories with the specified names. | 471 | mkdir is used to create directories with the specified names. |
437 | 472 | ||
@@ -445,6 +480,7 @@ config FEATURE_MKDIR_LONG_OPTIONS | |||
445 | config MKFIFO | 480 | config MKFIFO |
446 | bool "mkfifo" | 481 | bool "mkfifo" |
447 | default n | 482 | default n |
483 | depends on PLATFORM_POSIX | ||
448 | help | 484 | help |
449 | mkfifo is used to create FIFOs (named pipes). | 485 | mkfifo is used to create FIFOs (named pipes). |
450 | The `mknod' program can also create FIFOs. | 486 | The `mknod' program can also create FIFOs. |
@@ -452,6 +488,7 @@ config MKFIFO | |||
452 | config MKNOD | 488 | config MKNOD |
453 | bool "mknod" | 489 | bool "mknod" |
454 | default n | 490 | default n |
491 | depends on PLATFORM_POSIX | ||
455 | help | 492 | help |
456 | mknod is used to create FIFOs or block/character special | 493 | mknod is used to create FIFOs or block/character special |
457 | files with the specified names. | 494 | files with the specified names. |
@@ -459,6 +496,7 @@ config MKNOD | |||
459 | config MV | 496 | config MV |
460 | bool "mv" | 497 | bool "mv" |
461 | default n | 498 | default n |
499 | depends on PLATFORM_POSIX | ||
462 | help | 500 | help |
463 | mv is used to move or rename files or directories. | 501 | mv is used to move or rename files or directories. |
464 | 502 | ||
@@ -472,30 +510,35 @@ config FEATURE_MV_LONG_OPTIONS | |||
472 | config NICE | 510 | config NICE |
473 | bool "nice" | 511 | bool "nice" |
474 | default n | 512 | default n |
513 | depends on PLATFORM_POSIX | ||
475 | help | 514 | help |
476 | nice runs a program with modified scheduling priority. | 515 | nice runs a program with modified scheduling priority. |
477 | 516 | ||
478 | config NOHUP | 517 | config NOHUP |
479 | bool "nohup" | 518 | bool "nohup" |
480 | default n | 519 | default n |
520 | depends on PLATFORM_POSIX | ||
481 | help | 521 | help |
482 | run a command immune to hangups, with output to a non-tty. | 522 | run a command immune to hangups, with output to a non-tty. |
483 | 523 | ||
484 | config OD | 524 | config OD |
485 | bool "od" | 525 | bool "od" |
486 | default n | 526 | default n |
527 | depends on PLATFORM_POSIX | ||
487 | help | 528 | help |
488 | od is used to dump binary files in octal and other formats. | 529 | od is used to dump binary files in octal and other formats. |
489 | 530 | ||
490 | config PRINTENV | 531 | config PRINTENV |
491 | bool "printenv" | 532 | bool "printenv" |
492 | default n | 533 | default n |
534 | depends on PLATFORM_POSIX | ||
493 | help | 535 | help |
494 | printenv is used to print all or part of environment. | 536 | printenv is used to print all or part of environment. |
495 | 537 | ||
496 | config PRINTF | 538 | config PRINTF |
497 | bool "printf" | 539 | bool "printf" |
498 | default n | 540 | default n |
541 | depends on PLATFORM_POSIX | ||
499 | help | 542 | help |
500 | printf is used to format and print specified strings. | 543 | printf is used to format and print specified strings. |
501 | It's similar to `echo' except it has more options. | 544 | It's similar to `echo' except it has more options. |
@@ -503,12 +546,14 @@ config PRINTF | |||
503 | config PWD | 546 | config PWD |
504 | bool "pwd" | 547 | bool "pwd" |
505 | default n | 548 | default n |
549 | depends on PLATFORM_POSIX | ||
506 | help | 550 | help |
507 | pwd is used to print the current directory. | 551 | pwd is used to print the current directory. |
508 | 552 | ||
509 | config READLINK | 553 | config READLINK |
510 | bool "readlink" | 554 | bool "readlink" |
511 | default n | 555 | default n |
556 | depends on PLATFORM_POSIX | ||
512 | help | 557 | help |
513 | This program reads a symbolic link and returns the name | 558 | This program reads a symbolic link and returns the name |
514 | of the file it points to | 559 | of the file it points to |
@@ -523,6 +568,7 @@ config FEATURE_READLINK_FOLLOW | |||
523 | config REALPATH | 568 | config REALPATH |
524 | bool "realpath" | 569 | bool "realpath" |
525 | default n | 570 | default n |
571 | depends on PLATFORM_POSIX | ||
526 | help | 572 | help |
527 | Return the canonicalized absolute pathname. | 573 | Return the canonicalized absolute pathname. |
528 | This isn't provided by GNU shellutils, but where else does it belong. | 574 | This isn't provided by GNU shellutils, but where else does it belong. |
@@ -530,12 +576,14 @@ config REALPATH | |||
530 | config RM | 576 | config RM |
531 | bool "rm" | 577 | bool "rm" |
532 | default n | 578 | default n |
579 | depends on PLATFORM_POSIX | ||
533 | help | 580 | help |
534 | rm is used to remove files or directories. | 581 | rm is used to remove files or directories. |
535 | 582 | ||
536 | config RMDIR | 583 | config RMDIR |
537 | bool "rmdir" | 584 | bool "rmdir" |
538 | default n | 585 | default n |
586 | depends on PLATFORM_POSIX | ||
539 | help | 587 | help |
540 | rmdir is used to remove empty directories. | 588 | rmdir is used to remove empty directories. |
541 | 589 | ||
@@ -550,30 +598,35 @@ config FEATURE_RMDIR_LONG_OPTIONS | |||
550 | config SEQ | 598 | config SEQ |
551 | bool "seq" | 599 | bool "seq" |
552 | default n | 600 | default n |
601 | depends on PLATFORM_POSIX | ||
553 | help | 602 | help |
554 | print a sequence of numbers | 603 | print a sequence of numbers |
555 | 604 | ||
556 | config SHA1SUM | 605 | config SHA1SUM |
557 | bool "sha1sum" | 606 | bool "sha1sum" |
558 | default n | 607 | default n |
608 | depends on PLATFORM_POSIX | ||
559 | help | 609 | help |
560 | Compute and check SHA1 message digest | 610 | Compute and check SHA1 message digest |
561 | 611 | ||
562 | config SHA256SUM | 612 | config SHA256SUM |
563 | bool "sha256sum" | 613 | bool "sha256sum" |
564 | default n | 614 | default n |
615 | depends on PLATFORM_POSIX | ||
565 | help | 616 | help |
566 | Compute and check SHA256 message digest | 617 | Compute and check SHA256 message digest |
567 | 618 | ||
568 | config SHA512SUM | 619 | config SHA512SUM |
569 | bool "sha512sum" | 620 | bool "sha512sum" |
570 | default n | 621 | default n |
622 | depends on PLATFORM_POSIX | ||
571 | help | 623 | help |
572 | Compute and check SHA512 message digest | 624 | Compute and check SHA512 message digest |
573 | 625 | ||
574 | config SLEEP | 626 | config SLEEP |
575 | bool "sleep" | 627 | bool "sleep" |
576 | default n | 628 | default n |
629 | depends on PLATFORM_POSIX | ||
577 | help | 630 | help |
578 | sleep is used to pause for a specified number of seconds. | 631 | sleep is used to pause for a specified number of seconds. |
579 | It comes in 3 versions: | 632 | It comes in 3 versions: |
@@ -602,6 +655,7 @@ config FEATURE_FLOAT_SLEEP | |||
602 | config SORT | 655 | config SORT |
603 | bool "sort" | 656 | bool "sort" |
604 | default n | 657 | default n |
658 | depends on PLATFORM_POSIX | ||
605 | help | 659 | help |
606 | sort is used to sort lines of text in specified files. | 660 | sort is used to sort lines of text in specified files. |
607 | 661 | ||
@@ -620,6 +674,7 @@ config FEATURE_SORT_BIG | |||
620 | config SPLIT | 674 | config SPLIT |
621 | bool "split" | 675 | bool "split" |
622 | default n | 676 | default n |
677 | depends on PLATFORM_POSIX | ||
623 | help | 678 | help |
624 | split a file into pieces. | 679 | split a file into pieces. |
625 | 680 | ||
@@ -635,6 +690,7 @@ config FEATURE_SPLIT_FANCY | |||
635 | config STAT | 690 | config STAT |
636 | bool "stat" | 691 | bool "stat" |
637 | default n | 692 | default n |
693 | depends on PLATFORM_POSIX | ||
638 | help | 694 | help |
639 | display file or filesystem status. | 695 | display file or filesystem status. |
640 | 696 | ||
@@ -650,30 +706,35 @@ config FEATURE_STAT_FORMAT | |||
650 | config STTY | 706 | config STTY |
651 | bool "stty" | 707 | bool "stty" |
652 | default n | 708 | default n |
709 | depends on PLATFORM_POSIX | ||
653 | help | 710 | help |
654 | stty is used to change and print terminal line settings. | 711 | stty is used to change and print terminal line settings. |
655 | 712 | ||
656 | config SUM | 713 | config SUM |
657 | bool "sum" | 714 | bool "sum" |
658 | default n | 715 | default n |
716 | depends on PLATFORM_POSIX | ||
659 | help | 717 | help |
660 | checksum and count the blocks in a file | 718 | checksum and count the blocks in a file |
661 | 719 | ||
662 | config SYNC | 720 | config SYNC |
663 | bool "sync" | 721 | bool "sync" |
664 | default n | 722 | default n |
723 | depends on PLATFORM_POSIX | ||
665 | help | 724 | help |
666 | sync is used to flush filesystem buffers. | 725 | sync is used to flush filesystem buffers. |
667 | 726 | ||
668 | config TAC | 727 | config TAC |
669 | bool "tac" | 728 | bool "tac" |
670 | default n | 729 | default n |
730 | depends on PLATFORM_POSIX | ||
671 | help | 731 | help |
672 | tac is used to concatenate and print files in reverse. | 732 | tac is used to concatenate and print files in reverse. |
673 | 733 | ||
674 | config TAIL | 734 | config TAIL |
675 | bool "tail" | 735 | bool "tail" |
676 | default n | 736 | default n |
737 | depends on PLATFORM_POSIX | ||
677 | help | 738 | help |
678 | tail is used to print the last specified number of lines | 739 | tail is used to print the last specified number of lines |
679 | from files. | 740 | from files. |
@@ -693,6 +754,7 @@ config FEATURE_FANCY_TAIL | |||
693 | config TEE | 754 | config TEE |
694 | bool "tee" | 755 | bool "tee" |
695 | default n | 756 | default n |
757 | depends on PLATFORM_POSIX | ||
696 | help | 758 | help |
697 | tee is used to read from standard input and write | 759 | tee is used to read from standard input and write |
698 | to standard output and files. | 760 | to standard output and files. |
@@ -707,6 +769,7 @@ config FEATURE_TEE_USE_BLOCK_IO | |||
707 | config TEST | 769 | config TEST |
708 | bool "test" | 770 | bool "test" |
709 | default n | 771 | default n |
772 | depends on PLATFORM_POSIX | ||
710 | help | 773 | help |
711 | test is used to check file types and compare values, | 774 | test is used to check file types and compare values, |
712 | returning an appropriate exit code. The bash shell | 775 | returning an appropriate exit code. The bash shell |
@@ -722,6 +785,7 @@ config FEATURE_TEST_64 | |||
722 | config TOUCH | 785 | config TOUCH |
723 | bool "touch" | 786 | bool "touch" |
724 | default n | 787 | default n |
788 | depends on PLATFORM_POSIX | ||
725 | help | 789 | help |
726 | touch is used to create or change the access and/or | 790 | touch is used to create or change the access and/or |
727 | modification timestamp of specified files. | 791 | modification timestamp of specified files. |
@@ -729,6 +793,7 @@ config TOUCH | |||
729 | config TR | 793 | config TR |
730 | bool "tr" | 794 | bool "tr" |
731 | default n | 795 | default n |
796 | depends on PLATFORM_POSIX | ||
732 | help | 797 | help |
733 | tr is used to squeeze, and/or delete characters from standard | 798 | tr is used to squeeze, and/or delete characters from standard |
734 | input, writing to standard output. | 799 | input, writing to standard output. |
@@ -755,12 +820,14 @@ config FEATURE_TR_EQUIV | |||
755 | config TRUE | 820 | config TRUE |
756 | bool "true" | 821 | bool "true" |
757 | default n | 822 | default n |
823 | depends on PLATFORM_POSIX | ||
758 | help | 824 | help |
759 | true returns an exit code of TRUE (0). | 825 | true returns an exit code of TRUE (0). |
760 | 826 | ||
761 | config TTY | 827 | config TTY |
762 | bool "tty" | 828 | bool "tty" |
763 | default n | 829 | default n |
830 | depends on PLATFORM_POSIX | ||
764 | help | 831 | help |
765 | tty is used to print the name of the current terminal to | 832 | tty is used to print the name of the current terminal to |
766 | standard output. | 833 | standard output. |
@@ -768,12 +835,14 @@ config TTY | |||
768 | config UNAME | 835 | config UNAME |
769 | bool "uname" | 836 | bool "uname" |
770 | default n | 837 | default n |
838 | depends on PLATFORM_POSIX | ||
771 | help | 839 | help |
772 | uname is used to print system information. | 840 | uname is used to print system information. |
773 | 841 | ||
774 | config UNEXPAND | 842 | config UNEXPAND |
775 | bool "unexpand" | 843 | bool "unexpand" |
776 | default n | 844 | default n |
845 | depends on PLATFORM_POSIX | ||
777 | help | 846 | help |
778 | By default, convert only leading sequences of blanks to tabs. | 847 | By default, convert only leading sequences of blanks to tabs. |
779 | 848 | ||
@@ -787,30 +856,35 @@ config FEATURE_UNEXPAND_LONG_OPTIONS | |||
787 | config UNIQ | 856 | config UNIQ |
788 | bool "uniq" | 857 | bool "uniq" |
789 | default n | 858 | default n |
859 | depends on PLATFORM_POSIX | ||
790 | help | 860 | help |
791 | uniq is used to remove duplicate lines from a sorted file. | 861 | uniq is used to remove duplicate lines from a sorted file. |
792 | 862 | ||
793 | config USLEEP | 863 | config USLEEP |
794 | bool "usleep" | 864 | bool "usleep" |
795 | default n | 865 | default n |
866 | depends on PLATFORM_POSIX | ||
796 | help | 867 | help |
797 | usleep is used to pause for a specified number of microseconds. | 868 | usleep is used to pause for a specified number of microseconds. |
798 | 869 | ||
799 | config UUDECODE | 870 | config UUDECODE |
800 | bool "uudecode" | 871 | bool "uudecode" |
801 | default n | 872 | default n |
873 | depends on PLATFORM_POSIX | ||
802 | help | 874 | help |
803 | uudecode is used to decode a uuencoded file. | 875 | uudecode is used to decode a uuencoded file. |
804 | 876 | ||
805 | config UUENCODE | 877 | config UUENCODE |
806 | bool "uuencode" | 878 | bool "uuencode" |
807 | default n | 879 | default n |
880 | depends on PLATFORM_POSIX | ||
808 | help | 881 | help |
809 | uuencode is used to uuencode a file. | 882 | uuencode is used to uuencode a file. |
810 | 883 | ||
811 | config WC | 884 | config WC |
812 | bool "wc" | 885 | bool "wc" |
813 | default n | 886 | default n |
887 | depends on PLATFORM_POSIX | ||
814 | help | 888 | help |
815 | wc is used to print the number of bytes, words, and lines, | 889 | wc is used to print the number of bytes, words, and lines, |
816 | in specified files. | 890 | in specified files. |
@@ -826,12 +900,14 @@ config WHO | |||
826 | bool "who" | 900 | bool "who" |
827 | default n | 901 | default n |
828 | depends on FEATURE_UTMP | 902 | depends on FEATURE_UTMP |
903 | depends on PLATFORM_POSIX | ||
829 | help | 904 | help |
830 | who is used to show who is logged on. | 905 | who is used to show who is logged on. |
831 | 906 | ||
832 | config WHOAMI | 907 | config WHOAMI |
833 | bool "whoami" | 908 | bool "whoami" |
834 | default n | 909 | default n |
910 | depends on PLATFORM_POSIX | ||
835 | help | 911 | help |
836 | whoami is used to print the username of the current | 912 | whoami is used to print the username of the current |
837 | user id (same as id -un). | 913 | user id (same as id -un). |
@@ -839,6 +915,7 @@ config WHOAMI | |||
839 | config YES | 915 | config YES |
840 | bool "yes" | 916 | bool "yes" |
841 | default n | 917 | default n |
918 | depends on PLATFORM_POSIX | ||
842 | help | 919 | help |
843 | yes is used to repeatedly output a specific string, or | 920 | yes is used to repeatedly output a specific string, or |
844 | the default string `y'. | 921 | the default string `y'. |