aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-18 22:01:24 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-18 22:01:24 +0200
commit4eed2c6c5092ed95b8ee6d994106c54a9fc6ed3e (patch)
tree133b5d5ad9f27d12a913057540d1e877c4bb1436 /coreutils
parent483405a9b0df6ea14344b1144959be1debef925e (diff)
downloadbusybox-w32-4eed2c6c5092ed95b8ee6d994106c54a9fc6ed3e.tar.gz
busybox-w32-4eed2c6c5092ed95b8ee6d994106c54a9fc6ed3e.tar.bz2
busybox-w32-4eed2c6c5092ed95b8ee6d994106c54a9fc6ed3e.zip
Update menuconfig items with approximate applet sizes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/basename.c2
-rw-r--r--coreutils/cat.c2
-rw-r--r--coreutils/chgrp.c2
-rw-r--r--coreutils/chmod.c2
-rw-r--r--coreutils/chown.c2
-rw-r--r--coreutils/chroot.c2
-rw-r--r--coreutils/cksum.c2
-rw-r--r--coreutils/comm.c2
-rw-r--r--coreutils/cp.c2
-rw-r--r--coreutils/cut.c2
-rw-r--r--coreutils/date.c2
-rw-r--r--coreutils/dd.c2
-rw-r--r--coreutils/df.c2
-rw-r--r--coreutils/dirname.c2
-rw-r--r--coreutils/dos2unix.c4
-rw-r--r--coreutils/env.c2
-rw-r--r--coreutils/expand.c4
-rw-r--r--coreutils/expr.c2
-rw-r--r--coreutils/factor.c2
-rw-r--r--coreutils/false.c2
-rw-r--r--coreutils/fold.c2
-rw-r--r--coreutils/fsync.c2
-rw-r--r--coreutils/head.c2
-rw-r--r--coreutils/hostid.c2
-rw-r--r--coreutils/id.c4
-rw-r--r--coreutils/install.c2
-rw-r--r--coreutils/link.c2
-rw-r--r--coreutils/ln.c2
-rw-r--r--coreutils/logname.c2
-rw-r--r--coreutils/ls.c2
-rw-r--r--coreutils/md5_sha1_sum.c10
-rw-r--r--coreutils/mkdir.c2
-rw-r--r--coreutils/mkfifo.c2
-rw-r--r--coreutils/mknod.c2
-rw-r--r--coreutils/mktemp.c2
-rw-r--r--coreutils/mv.c2
-rw-r--r--coreutils/nice.c2
-rw-r--r--coreutils/nl.c2
-rw-r--r--coreutils/nohup.c2
-rw-r--r--coreutils/nproc.c2
-rw-r--r--coreutils/od.c2
-rw-r--r--coreutils/paste.c2
-rw-r--r--coreutils/printenv.c2
-rw-r--r--coreutils/printf.c2
-rw-r--r--coreutils/pwd.c2
-rw-r--r--coreutils/readlink.c2
-rw-r--r--coreutils/realpath.c2
-rw-r--r--coreutils/rm.c2
-rw-r--r--coreutils/rmdir.c2
-rw-r--r--coreutils/seq.c2
-rw-r--r--coreutils/shred.c2
-rw-r--r--coreutils/shuf.c2
-rw-r--r--coreutils/sleep.c2
-rw-r--r--coreutils/sort.c2
-rw-r--r--coreutils/split.c2
-rw-r--r--coreutils/stat.c2
-rw-r--r--coreutils/stty.c2
-rw-r--r--coreutils/sum.c2
-rw-r--r--coreutils/sync.c2
-rw-r--r--coreutils/tac.c2
-rw-r--r--coreutils/tail.c2
-rw-r--r--coreutils/tee.c2
-rw-r--r--coreutils/test.c2
-rw-r--r--coreutils/timeout.c2
-rw-r--r--coreutils/touch.c2
-rw-r--r--coreutils/tr.c2
-rw-r--r--coreutils/true.c2
-rw-r--r--coreutils/truncate.c2
-rw-r--r--coreutils/tty.c2
-rw-r--r--coreutils/uname.c2
-rw-r--r--coreutils/uniq.c2
-rw-r--r--coreutils/unlink.c2
-rw-r--r--coreutils/usleep.c2
-rw-r--r--coreutils/uudecode.c4
-rw-r--r--coreutils/uuencode.c2
-rw-r--r--coreutils/wc.c2
-rw-r--r--coreutils/who.c6
-rw-r--r--coreutils/whoami.c2
-rw-r--r--coreutils/yes.c2
79 files changed, 89 insertions, 89 deletions
diff --git a/coreutils/basename.c b/coreutils/basename.c
index ace0148c0..6d8215895 100644
--- a/coreutils/basename.c
+++ b/coreutils/basename.c
@@ -15,7 +15,7 @@
15 * 3) Save some space by using strcmp(). Calling strncmp() here was silly. 15 * 3) Save some space by using strcmp(). Calling strncmp() here was silly.
16 */ 16 */
17//config:config BASENAME 17//config:config BASENAME
18//config: bool "basename" 18//config: bool "basename (371 bytes)"
19//config: default y 19//config: default y
20//config: help 20//config: help
21//config: basename is used to strip the directory and suffix from filenames, 21//config: basename is used to strip the directory and suffix from filenames,
diff --git a/coreutils/cat.c b/coreutils/cat.c
index a9ba68d6b..41bef8f1d 100644
--- a/coreutils/cat.c
+++ b/coreutils/cat.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2, see file LICENSE in this source tree. 7 * Licensed under GPLv2, see file LICENSE in this source tree.
8 */ 8 */
9//config:config CAT 9//config:config CAT
10//config: bool "cat" 10//config: bool "cat (5.6 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: cat is used to concatenate files and print them to the standard 13//config: cat is used to concatenate files and print them to the standard
diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c
index 8dca63cf7..834346b4d 100644
--- a/coreutils/chgrp.c
+++ b/coreutils/chgrp.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config CHGRP 9//config:config CHGRP
10//config: bool "chgrp" 10//config: bool "chgrp (7.2 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: chgrp is used to change the group ownership of files. 13//config: chgrp is used to change the group ownership of files.
diff --git a/coreutils/chmod.c b/coreutils/chmod.c
index 80913f542..ec075f7c9 100644
--- a/coreutils/chmod.c
+++ b/coreutils/chmod.c
@@ -10,7 +10,7 @@
10 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 10 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
11 */ 11 */
12//config:config CHMOD 12//config:config CHMOD
13//config: bool "chmod" 13//config: bool "chmod (5.1 kb)"
14//config: default y 14//config: default y
15//config: help 15//config: help
16//config: chmod is used to change the access permission of files. 16//config: chmod is used to change the access permission of files.
diff --git a/coreutils/chown.c b/coreutils/chown.c
index 12cd0eacc..5c04bc39a 100644
--- a/coreutils/chown.c
+++ b/coreutils/chown.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config CHOWN 9//config:config CHOWN
10//config: bool "chown" 10//config: bool "chown (7.2 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: chown is used to change the user and/or group ownership 13//config: chown is used to change the user and/or group ownership
diff --git a/coreutils/chroot.c b/coreutils/chroot.c
index 5c067c1bd..6fa3a3f27 100644
--- a/coreutils/chroot.c
+++ b/coreutils/chroot.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config CHROOT 9//config:config CHROOT
10//config: bool "chroot" 10//config: bool "chroot (3.7 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: chroot is used to change the root directory and run a command. 13//config: chroot is used to change the root directory and run a command.
diff --git a/coreutils/cksum.c b/coreutils/cksum.c
index 9034fc19a..dce17d94b 100644
--- a/coreutils/cksum.c
+++ b/coreutils/cksum.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config CKSUM 9//config:config CKSUM
10//config: bool "cksum" 10//config: bool "cksum (4.2 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: cksum is used to calculate the CRC32 checksum of a file. 13//config: cksum is used to calculate the CRC32 checksum of a file.
diff --git a/coreutils/comm.c b/coreutils/comm.c
index b6a127809..8f9dcde29 100644
--- a/coreutils/comm.c
+++ b/coreutils/comm.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config COMM 9//config:config COMM
10//config: bool "comm" 10//config: bool "comm (3.9 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: comm is used to compare two files line by line and return 13//config: comm is used to compare two files line by line and return
diff --git a/coreutils/cp.c b/coreutils/cp.c
index 1e5f36d10..726859c5f 100644
--- a/coreutils/cp.c
+++ b/coreutils/cp.c
@@ -12,7 +12,7 @@
12 * Size reduction. 12 * Size reduction.
13 */ 13 */
14//config:config CP 14//config:config CP
15//config: bool "cp" 15//config: bool "cp (9.7 kb)"
16//config: default y 16//config: default y
17//config: help 17//config: help
18//config: cp is used to copy files and directories. 18//config: cp is used to copy files and directories.
diff --git a/coreutils/cut.c b/coreutils/cut.c
index a33a825f8..2338702f3 100644
--- a/coreutils/cut.c
+++ b/coreutils/cut.c
@@ -9,7 +9,7 @@
9 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 9 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
10 */ 10 */
11//config:config CUT 11//config:config CUT
12//config: bool "cut" 12//config: bool "cut (5.3 kb)"
13//config: default y 13//config: default y
14//config: help 14//config: help
15//config: cut is used to print selected parts of lines from 15//config: cut is used to print selected parts of lines from
diff --git a/coreutils/date.c b/coreutils/date.c
index 9d4a7dfea..c658d000b 100644
--- a/coreutils/date.c
+++ b/coreutils/date.c
@@ -19,7 +19,7 @@
19 much as possible, missed out a lot of bounds checking */ 19 much as possible, missed out a lot of bounds checking */
20 20
21//config:config DATE 21//config:config DATE
22//config: bool "date" 22//config: bool "date (7.1 kb)"
23//config: default y 23//config: default y
24//config: help 24//config: help
25//config: date is used to set the system date or display the 25//config: date is used to set the system date or display the
diff --git a/coreutils/dd.c b/coreutils/dd.c
index 630852205..0150aff96 100644
--- a/coreutils/dd.c
+++ b/coreutils/dd.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config DD 9//config:config DD
10//config: bool "dd" 10//config: bool "dd (7.1 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: dd copies a file (from standard input to standard output, 13//config: dd copies a file (from standard input to standard output,
diff --git a/coreutils/df.c b/coreutils/df.c
index cf367161a..900c57ea2 100644
--- a/coreutils/df.c
+++ b/coreutils/df.c
@@ -18,7 +18,7 @@
18 * Implement -P and -B; better coreutils compat; cleanup 18 * Implement -P and -B; better coreutils compat; cleanup
19 */ 19 */
20//config:config DF 20//config:config DF
21//config: bool "df" 21//config: bool "df (7.5 kb)"
22//config: default y 22//config: default y
23//config: help 23//config: help
24//config: df reports the amount of disk space used and available 24//config: df reports the amount of disk space used and available
diff --git a/coreutils/dirname.c b/coreutils/dirname.c
index 659381886..7fa31365f 100644
--- a/coreutils/dirname.c
+++ b/coreutils/dirname.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config DIRNAME 9//config:config DIRNAME
10//config: bool "dirname" 10//config: bool "dirname (289 bytes)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: dirname is used to strip a non-directory suffix from 13//config: dirname is used to strip a non-directory suffix from
diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c
index 9d81ccca6..e595bf558 100644
--- a/coreutils/dos2unix.c
+++ b/coreutils/dos2unix.c
@@ -12,14 +12,14 @@
12 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 12 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
13 */ 13 */
14//config:config DOS2UNIX 14//config:config DOS2UNIX
15//config: bool "dos2unix" 15//config: bool "dos2unix (5.1 kb)"
16//config: default y 16//config: default y
17//config: help 17//config: help
18//config: dos2unix is used to convert a text file from DOS format to 18//config: dos2unix is used to convert a text file from DOS format to
19//config: UNIX format, and vice versa. 19//config: UNIX format, and vice versa.
20//config: 20//config:
21//config:config UNIX2DOS 21//config:config UNIX2DOS
22//config: bool "unix2dos" 22//config: bool "unix2dos (5.1 kb)"
23//config: default y 23//config: default y
24//config: help 24//config: help
25//config: unix2dos is used to convert a text file from UNIX format to 25//config: unix2dos is used to convert a text file from UNIX format to
diff --git a/coreutils/env.c b/coreutils/env.c
index 2bd5f41d0..7037a44c2 100644
--- a/coreutils/env.c
+++ b/coreutils/env.c
@@ -24,7 +24,7 @@
24 * - use xfunc_error_retval 24 * - use xfunc_error_retval
25 */ 25 */
26//config:config ENV 26//config:config ENV
27//config: bool "env" 27//config: bool "env (3.8 kb)"
28//config: default y 28//config: default y
29//config: help 29//config: help
30//config: env is used to set an environment variable and run 30//config: env is used to set an environment variable and run
diff --git a/coreutils/expand.c b/coreutils/expand.c
index 9ce86ebff..dff0ce558 100644
--- a/coreutils/expand.c
+++ b/coreutils/expand.c
@@ -21,7 +21,7 @@
21 * Caveat: this versions of expand and unexpand don't accept tab lists. 21 * Caveat: this versions of expand and unexpand don't accept tab lists.
22 */ 22 */
23//config:config EXPAND 23//config:config EXPAND
24//config: bool "expand" 24//config: bool "expand (5.8 kb)"
25//config: default y 25//config: default y
26//config: help 26//config: help
27//config: By default, convert all tabs to spaces. 27//config: By default, convert all tabs to spaces.
@@ -32,7 +32,7 @@
32//config: depends on EXPAND && LONG_OPTS 32//config: depends on EXPAND && LONG_OPTS
33//config: 33//config:
34//config:config UNEXPAND 34//config:config UNEXPAND
35//config: bool "unexpand" 35//config: bool "unexpand (6 kb)"
36//config: default y 36//config: default y
37//config: help 37//config: help
38//config: By default, convert only leading sequences of blanks to tabs. 38//config: By default, convert only leading sequences of blanks to tabs.
diff --git a/coreutils/expr.c b/coreutils/expr.c
index 5d2fbf2f7..ecb7534b2 100644
--- a/coreutils/expr.c
+++ b/coreutils/expr.c
@@ -23,7 +23,7 @@
23 * provided they all associate ((x op x) op x). 23 * provided they all associate ((x op x) op x).
24 */ 24 */
25//config:config EXPR 25//config:config EXPR
26//config: bool "expr" 26//config: bool "expr (6.1 kb)"
27//config: default y 27//config: default y
28//config: help 28//config: help
29//config: expr is used to calculate numbers and print the result 29//config: expr is used to calculate numbers and print the result
diff --git a/coreutils/factor.c b/coreutils/factor.c
index 205cdc053..4ccc3fee4 100644
--- a/coreutils/factor.c
+++ b/coreutils/factor.c
@@ -4,7 +4,7 @@
4 * Licensed under GPLv2, see file LICENSE in this source tree. 4 * Licensed under GPLv2, see file LICENSE in this source tree.
5 */ 5 */
6//config:config FACTOR 6//config:config FACTOR
7//config: bool "factor" 7//config: bool "factor (2.6 kb)"
8//config: default y 8//config: default y
9//config: help 9//config: help
10//config: factor factorizes integers 10//config: factor factorizes integers
diff --git a/coreutils/false.c b/coreutils/false.c
index b8f17c6a6..171ad813b 100644
--- a/coreutils/false.c
+++ b/coreutils/false.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config FALSE 9//config:config FALSE
10//config: bool "false" 10//config: bool "false (tiny)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: false returns an exit code of FALSE (1). 13//config: false returns an exit code of FALSE (1).
diff --git a/coreutils/fold.c b/coreutils/fold.c
index 01f9bce74..35905f3df 100644
--- a/coreutils/fold.c
+++ b/coreutils/fold.c
@@ -10,7 +10,7 @@
10 Licensed under GPLv2 or later, see file LICENSE in this source tree. 10 Licensed under GPLv2 or later, see file LICENSE in this source tree.
11*/ 11*/
12//config:config FOLD 12//config:config FOLD
13//config: bool "fold" 13//config: bool "fold (4.6 kb)"
14//config: default y 14//config: default y
15//config: help 15//config: help
16//config: Wrap text to fit a specific width. 16//config: Wrap text to fit a specific width.
diff --git a/coreutils/fsync.c b/coreutils/fsync.c
index 596a2bcaf..8524047a5 100644
--- a/coreutils/fsync.c
+++ b/coreutils/fsync.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config FSYNC 9//config:config FSYNC
10//config: bool "fsync" 10//config: bool "fsync (3.7 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: fsync is used to flush file-related cached blocks to disk. 13//config: fsync is used to flush file-related cached blocks to disk.
diff --git a/coreutils/head.c b/coreutils/head.c
index d49113e7f..b4b16abea 100644
--- a/coreutils/head.c
+++ b/coreutils/head.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config HEAD 9//config:config HEAD
10//config: bool "head" 10//config: bool "head (3.7 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: head is used to print the first specified number of lines 13//config: head is used to print the first specified number of lines
diff --git a/coreutils/hostid.c b/coreutils/hostid.c
index 5b47de1bc..790384c95 100644
--- a/coreutils/hostid.c
+++ b/coreutils/hostid.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config HOSTID 9//config:config HOSTID
10//config: bool "hostid" 10//config: bool "hostid (247 bytes)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: hostid prints the numeric identifier (in hexadecimal) for 13//config: hostid prints the numeric identifier (in hexadecimal) for
diff --git a/coreutils/id.c b/coreutils/id.c
index ab7ac1e55..93ca0acf6 100644
--- a/coreutils/id.c
+++ b/coreutils/id.c
@@ -13,13 +13,13 @@
13 * Added -G option Tito Ragusa (C) 2008 for SUSv3. 13 * Added -G option Tito Ragusa (C) 2008 for SUSv3.
14 */ 14 */
15//config:config ID 15//config:config ID
16//config: bool "id" 16//config: bool "id (6.7 kb)"
17//config: default y 17//config: default y
18//config: help 18//config: help
19//config: id displays the current user and group ID names. 19//config: id displays the current user and group ID names.
20//config: 20//config:
21//config:config GROUPS 21//config:config GROUPS
22//config: bool "groups" 22//config: bool "groups (6.5 kb)"
23//config: default y 23//config: default y
24//config: help 24//config: help
25//config: Print the group names associated with current user id. 25//config: Print the group names associated with current user id.
diff --git a/coreutils/install.c b/coreutils/install.c
index 2a642bdb6..4c44f0d4d 100644
--- a/coreutils/install.c
+++ b/coreutils/install.c
@@ -6,7 +6,7 @@
6 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 6 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
7 */ 7 */
8//config:config INSTALL 8//config:config INSTALL
9//config: bool "install" 9//config: bool "install (12 kb)"
10//config: default y 10//config: default y
11//config: help 11//config: help
12//config: Copy files and set attributes. 12//config: Copy files and set attributes.
diff --git a/coreutils/link.c b/coreutils/link.c
index ac3ef85d9..c6417fef8 100644
--- a/coreutils/link.c
+++ b/coreutils/link.c
@@ -6,7 +6,7 @@
6 * Licensed under GPLv2, see file LICENSE in this source tree. 6 * Licensed under GPLv2, see file LICENSE in this source tree.
7 */ 7 */
8//config:config LINK 8//config:config LINK
9//config: bool "link" 9//config: bool "link (3.1 kb)"
10//config: default y 10//config: default y
11//config: help 11//config: help
12//config: link creates hard links between files. 12//config: link creates hard links between files.
diff --git a/coreutils/ln.c b/coreutils/ln.c
index 0e2abace4..0bd323b2a 100644
--- a/coreutils/ln.c
+++ b/coreutils/ln.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config LN 9//config:config LN
10//config: bool "ln" 10//config: bool "ln (4.5 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: ln is used to create hard or soft links between files. 13//config: ln is used to create hard or soft links between files.
diff --git a/coreutils/logname.c b/coreutils/logname.c
index a9b1c956d..bf3748338 100644
--- a/coreutils/logname.c
+++ b/coreutils/logname.c
@@ -16,7 +16,7 @@
16 * a diagnostic message and an error return. 16 * a diagnostic message and an error return.
17 */ 17 */
18//config:config LOGNAME 18//config:config LOGNAME
19//config: bool "logname" 19//config: bool "logname (894 bytes)"
20//config: default y 20//config: default y
21//config: help 21//config: help
22//config: logname is used to print the current user's login name. 22//config: logname is used to print the current user's login name.
diff --git a/coreutils/ls.c b/coreutils/ls.c
index 6780057da..cf5228745 100644
--- a/coreutils/ls.c
+++ b/coreutils/ls.c
@@ -28,7 +28,7 @@
28 * ls sorts listing now, and supports almost all options. 28 * ls sorts listing now, and supports almost all options.
29 */ 29 */
30//config:config LS 30//config:config LS
31//config: bool "ls" 31//config: bool "ls (14 kb)"
32//config: default y 32//config: default y
33//config: help 33//config: help
34//config: ls is used to list the contents of directories. 34//config: ls is used to list the contents of directories.
diff --git a/coreutils/md5_sha1_sum.c b/coreutils/md5_sha1_sum.c
index 50111bd26..6d08d2e40 100644
--- a/coreutils/md5_sha1_sum.c
+++ b/coreutils/md5_sha1_sum.c
@@ -6,31 +6,31 @@
6 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 6 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
7 */ 7 */
8//config:config MD5SUM 8//config:config MD5SUM
9//config: bool "md5sum" 9//config: bool "md5sum (6.8 kb)"
10//config: default y 10//config: default y
11//config: help 11//config: help
12//config: md5sum is used to print or check MD5 checksums. 12//config: md5sum is used to print or check MD5 checksums.
13//config: 13//config:
14//config:config SHA1SUM 14//config:config SHA1SUM
15//config: bool "sha1sum" 15//config: bool "sha1sum (6 kb)"
16//config: default y 16//config: default y
17//config: help 17//config: help
18//config: Compute and check SHA1 message digest 18//config: Compute and check SHA1 message digest
19//config: 19//config:
20//config:config SHA256SUM 20//config:config SHA256SUM
21//config: bool "sha256sum" 21//config: bool "sha256sum (7.1 kb)"
22//config: default y 22//config: default y
23//config: help 23//config: help
24//config: Compute and check SHA256 message digest 24//config: Compute and check SHA256 message digest
25//config: 25//config:
26//config:config SHA512SUM 26//config:config SHA512SUM
27//config: bool "sha512sum" 27//config: bool "sha512sum (7.6 kb)"
28//config: default y 28//config: default y
29//config: help 29//config: help
30//config: Compute and check SHA512 message digest 30//config: Compute and check SHA512 message digest
31//config: 31//config:
32//config:config SHA3SUM 32//config:config SHA3SUM
33//config: bool "sha3sum" 33//config: bool "sha3sum (6.3 kb)"
34//config: default y 34//config: default y
35//config: help 35//config: help
36//config: Compute and check SHA3 message digest 36//config: Compute and check SHA3 message digest
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c
index fcc34f1ad..d0b74bfde 100644
--- a/coreutils/mkdir.c
+++ b/coreutils/mkdir.c
@@ -14,7 +14,7 @@
14/* Nov 28, 2006 Yoshinori Sato <ysato@users.sourceforge.jp>: Add SELinux Support. 14/* Nov 28, 2006 Yoshinori Sato <ysato@users.sourceforge.jp>: Add SELinux Support.
15 */ 15 */
16//config:config MKDIR 16//config:config MKDIR
17//config: bool "mkdir" 17//config: bool "mkdir (4.4 kb)"
18//config: default y 18//config: default y
19//config: help 19//config: help
20//config: mkdir is used to create directories with the specified names. 20//config: mkdir is used to create directories with the specified names.
diff --git a/coreutils/mkfifo.c b/coreutils/mkfifo.c
index 66509a9c0..8a2f20553 100644
--- a/coreutils/mkfifo.c
+++ b/coreutils/mkfifo.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config MKFIFO 9//config:config MKFIFO
10//config: bool "mkfifo" 10//config: bool "mkfifo (3.7 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: mkfifo is used to create FIFOs (named pipes). 13//config: mkfifo is used to create FIFOs (named pipes).
diff --git a/coreutils/mknod.c b/coreutils/mknod.c
index 466ef5c06..321415e17 100644
--- a/coreutils/mknod.c
+++ b/coreutils/mknod.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config MKNOD 9//config:config MKNOD
10//config: bool "mknod" 10//config: bool "mknod (4 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: mknod is used to create FIFOs or block/character special 13//config: mknod is used to create FIFOs or block/character special
diff --git a/coreutils/mktemp.c b/coreutils/mktemp.c
index 65353697a..3e35befeb 100644
--- a/coreutils/mktemp.c
+++ b/coreutils/mktemp.c
@@ -31,7 +31,7 @@
31 * -p; else /tmp [deprecated] 31 * -p; else /tmp [deprecated]
32 */ 32 */
33//config:config MKTEMP 33//config:config MKTEMP
34//config: bool "mktemp" 34//config: bool "mktemp (4 kb)"
35//config: default y 35//config: default y
36//config: help 36//config: help
37//config: mktemp is used to create unique temporary files 37//config: mktemp is used to create unique temporary files
diff --git a/coreutils/mv.c b/coreutils/mv.c
index df2ef0a52..d620c43ab 100644
--- a/coreutils/mv.c
+++ b/coreutils/mv.c
@@ -12,7 +12,7 @@
12 * Size reduction and improved error checking. 12 * Size reduction and improved error checking.
13 */ 13 */
14//config:config MV 14//config:config MV
15//config: bool "mv" 15//config: bool "mv (9.8 kb)"
16//config: default y 16//config: default y
17//config: help 17//config: help
18//config: mv is used to move or rename files or directories. 18//config: mv is used to move or rename files or directories.
diff --git a/coreutils/nice.c b/coreutils/nice.c
index 3676ee663..e30242ffa 100644
--- a/coreutils/nice.c
+++ b/coreutils/nice.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config NICE 9//config:config NICE
10//config: bool "nice" 10//config: bool "nice (1.8 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: nice runs a program with modified scheduling priority. 13//config: nice runs a program with modified scheduling priority.
diff --git a/coreutils/nl.c b/coreutils/nl.c
index dc468a90b..9f303fe6c 100644
--- a/coreutils/nl.c
+++ b/coreutils/nl.c
@@ -5,7 +5,7 @@
5 * Licensed under GPLv2, see file LICENSE in this source tree. 5 * Licensed under GPLv2, see file LICENSE in this source tree.
6 */ 6 */
7//config:config NL 7//config:config NL
8//config: bool "nl" 8//config: bool "nl (4.3 kb)"
9//config: default y 9//config: default y
10//config: help 10//config: help
11//config: nl is used to number lines of files. 11//config: nl is used to number lines of files.
diff --git a/coreutils/nohup.c b/coreutils/nohup.c
index d8489686d..4366cdc8d 100644
--- a/coreutils/nohup.c
+++ b/coreutils/nohup.c
@@ -10,7 +10,7 @@
10 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 10 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
11 */ 11 */
12//config:config NOHUP 12//config:config NOHUP
13//config: bool "nohup" 13//config: bool "nohup (2 kb)"
14//config: default y 14//config: default y
15//config: help 15//config: help
16//config: run a command immune to hangups, with output to a non-tty. 16//config: run a command immune to hangups, with output to a non-tty.
diff --git a/coreutils/nproc.c b/coreutils/nproc.c
index d7c6a4ba1..7144f73e8 100644
--- a/coreutils/nproc.c
+++ b/coreutils/nproc.c
@@ -4,7 +4,7 @@
4 * Licensed under GPLv2, see LICENSE in this source tree 4 * Licensed under GPLv2, see LICENSE in this source tree
5 */ 5 */
6//config:config NPROC 6//config:config NPROC
7//config: bool "nproc" 7//config: bool "nproc (248 bytes)"
8//config: default y 8//config: default y
9//config: help 9//config: help
10//config: Print number of CPUs 10//config: Print number of CPUs
diff --git a/coreutils/od.c b/coreutils/od.c
index 4b05ee77c..edcd12a54 100644
--- a/coreutils/od.c
+++ b/coreutils/od.c
@@ -11,7 +11,7 @@
11 * Original copyright notice is retained at the end of this file. 11 * Original copyright notice is retained at the end of this file.
12 */ 12 */
13//config:config OD 13//config:config OD
14//config: bool "od" 14//config: bool "od (11 kb)"
15//config: default y 15//config: default y
16//config: help 16//config: help
17//config: od is used to dump binary files in octal and other formats. 17//config: od is used to dump binary files in octal and other formats.
diff --git a/coreutils/paste.c b/coreutils/paste.c
index 3920859d6..e4e9c7565 100644
--- a/coreutils/paste.c
+++ b/coreutils/paste.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config PASTE 9//config:config PASTE
10//config: bool "paste" 10//config: bool "paste (4.5 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: paste is used to paste lines of different files together 13//config: paste is used to paste lines of different files together
diff --git a/coreutils/printenv.c b/coreutils/printenv.c
index fbd64945d..767a27525 100644
--- a/coreutils/printenv.c
+++ b/coreutils/printenv.c
@@ -8,7 +8,7 @@
8 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
9 */ 9 */
10//config:config PRINTENV 10//config:config PRINTENV
11//config: bool "printenv" 11//config: bool "printenv (1 kb)"
12//config: default y 12//config: default y
13//config: help 13//config: help
14//config: printenv is used to print all or part of environment. 14//config: printenv is used to print all or part of environment.
diff --git a/coreutils/printf.c b/coreutils/printf.c
index 65bb5a935..acaf076ff 100644
--- a/coreutils/printf.c
+++ b/coreutils/printf.c
@@ -39,7 +39,7 @@
39/* 19990508 Busy Boxed! Dave Cinege */ 39/* 19990508 Busy Boxed! Dave Cinege */
40 40
41//config:config PRINTF 41//config:config PRINTF
42//config: bool "printf" 42//config: bool "printf (3.3 kb)"
43//config: default y 43//config: default y
44//config: help 44//config: help
45//config: printf is used to format and print specified strings. 45//config: printf is used to format and print specified strings.
diff --git a/coreutils/pwd.c b/coreutils/pwd.c
index 05dee497b..e0a195d37 100644
--- a/coreutils/pwd.c
+++ b/coreutils/pwd.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config PWD 9//config:config PWD
10//config: bool "pwd" 10//config: bool "pwd (3.4 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: pwd is used to print the current directory. 13//config: pwd is used to print the current directory.
diff --git a/coreutils/readlink.c b/coreutils/readlink.c
index 1b223b3c5..e593bb9a4 100644
--- a/coreutils/readlink.c
+++ b/coreutils/readlink.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config READLINK 9//config:config READLINK
10//config: bool "readlink" 10//config: bool "readlink (3.6 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: This program reads a symbolic link and returns the name 13//config: This program reads a symbolic link and returns the name
diff --git a/coreutils/realpath.c b/coreutils/realpath.c
index 0c2d544e4..a2661c461 100644
--- a/coreutils/realpath.c
+++ b/coreutils/realpath.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config REALPATH 9//config:config REALPATH
10//config: bool "realpath" 10//config: bool "realpath (1.1 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: Return the canonicalized absolute pathname. 13//config: Return the canonicalized absolute pathname.
diff --git a/coreutils/rm.c b/coreutils/rm.c
index cec34cb9d..70530a458 100644
--- a/coreutils/rm.c
+++ b/coreutils/rm.c
@@ -11,7 +11,7 @@
11 * Size reduction. 11 * Size reduction.
12 */ 12 */
13//config:config RM 13//config:config RM
14//config: bool "rm" 14//config: bool "rm (4.9 kb)"
15//config: default y 15//config: default y
16//config: help 16//config: help
17//config: rm is used to remove files or directories. 17//config: rm is used to remove files or directories.
diff --git a/coreutils/rmdir.c b/coreutils/rmdir.c
index 8979941ce..2486ea67e 100644
--- a/coreutils/rmdir.c
+++ b/coreutils/rmdir.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config RMDIR 9//config:config RMDIR
10//config: bool "rmdir" 10//config: bool "rmdir (3.4 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: rmdir is used to remove empty directories. 13//config: rmdir is used to remove empty directories.
diff --git a/coreutils/seq.c b/coreutils/seq.c
index ed4946b05..c66bed94a 100644
--- a/coreutils/seq.c
+++ b/coreutils/seq.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2, see file LICENSE in this source tree. 7 * Licensed under GPLv2, see file LICENSE in this source tree.
8 */ 8 */
9//config:config SEQ 9//config:config SEQ
10//config: bool "seq" 10//config: bool "seq (3.6 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: print a sequence of numbers 13//config: print a sequence of numbers
diff --git a/coreutils/shred.c b/coreutils/shred.c
index b3c009539..93319e24d 100644
--- a/coreutils/shred.c
+++ b/coreutils/shred.c
@@ -5,7 +5,7 @@
5 * Licensed under GPLv2, see file LICENSE in this source tree. 5 * Licensed under GPLv2, see file LICENSE in this source tree.
6 */ 6 */
7//config:config SHRED 7//config:config SHRED
8//config: bool "shred" 8//config: bool "shred (5 kb)"
9//config: default y 9//config: default y
10//config: help 10//config: help
11//config: Overwrite a file to hide its contents, and optionally delete it 11//config: Overwrite a file to hide its contents, and optionally delete it
diff --git a/coreutils/shuf.c b/coreutils/shuf.c
index 217f15c97..b1a9d1254 100644
--- a/coreutils/shuf.c
+++ b/coreutils/shuf.c
@@ -8,7 +8,7 @@
8 */ 8 */
9 9
10//config:config SHUF 10//config:config SHUF
11//config: bool "shuf" 11//config: bool "shuf (5.4 kb)"
12//config: default y 12//config: default y
13//config: help 13//config: help
14//config: Generate random permutations 14//config: Generate random permutations
diff --git a/coreutils/sleep.c b/coreutils/sleep.c
index ad2d6b526..6b3aa1ffa 100644
--- a/coreutils/sleep.c
+++ b/coreutils/sleep.c
@@ -13,7 +13,7 @@
13 * time suffixes for seconds, minutes, hours, and days. 13 * time suffixes for seconds, minutes, hours, and days.
14 */ 14 */
15//config:config SLEEP 15//config:config SLEEP
16//config: bool "sleep" 16//config: bool "sleep (1.7 kb)"
17//config: default y 17//config: default y
18//config: help 18//config: help
19//config: sleep is used to pause for a specified number of seconds. 19//config: sleep is used to pause for a specified number of seconds.
diff --git a/coreutils/sort.c b/coreutils/sort.c
index 1ccce93c5..a8803819d 100644
--- a/coreutils/sort.c
+++ b/coreutils/sort.c
@@ -12,7 +12,7 @@
12 * http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html 12 * http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
13 */ 13 */
14//config:config SORT 14//config:config SORT
15//config: bool "sort" 15//config: bool "sort (7.4 kb)"
16//config: default y 16//config: default y
17//config: help 17//config: help
18//config: sort is used to sort lines of text in specified files. 18//config: sort is used to sort lines of text in specified files.
diff --git a/coreutils/split.c b/coreutils/split.c
index 7af359d0e..dc6f62109 100644
--- a/coreutils/split.c
+++ b/coreutils/split.c
@@ -6,7 +6,7 @@
6 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 6 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
7 */ 7 */
8//config:config SPLIT 8//config:config SPLIT
9//config: bool "split" 9//config: bool "split (5.4 kb)"
10//config: default y 10//config: default y
11//config: help 11//config: help
12//config: Split a file into pieces. 12//config: Split a file into pieces.
diff --git a/coreutils/stat.c b/coreutils/stat.c
index b918ec62e..e2f9a223d 100644
--- a/coreutils/stat.c
+++ b/coreutils/stat.c
@@ -13,7 +13,7 @@
13 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 13 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
14 */ 14 */
15//config:config STAT 15//config:config STAT
16//config: bool "stat" 16//config: bool "stat (10 kb)"
17//config: default y 17//config: default y
18//config: help 18//config: help
19//config: display file or filesystem status. 19//config: display file or filesystem status.
diff --git a/coreutils/stty.c b/coreutils/stty.c
index e818d579c..3a4b32ce0 100644
--- a/coreutils/stty.c
+++ b/coreutils/stty.c
@@ -20,7 +20,7 @@
20 Special for busybox ported by Vladimir Oleynik <dzo@simtreas.ru> 2001 20 Special for busybox ported by Vladimir Oleynik <dzo@simtreas.ru> 2001
21*/ 21*/
22//config:config STTY 22//config:config STTY
23//config: bool "stty" 23//config: bool "stty (8.6 kb)"
24//config: default y 24//config: default y
25//config: help 25//config: help
26//config: stty is used to change and print terminal line settings. 26//config: stty is used to change and print terminal line settings.
diff --git a/coreutils/sum.c b/coreutils/sum.c
index c55293dc9..ef2f94e45 100644
--- a/coreutils/sum.c
+++ b/coreutils/sum.c
@@ -13,7 +13,7 @@
13 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 13 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
14 */ 14 */
15//config:config SUM 15//config:config SUM
16//config: bool "sum" 16//config: bool "sum (4.3 kb)"
17//config: default y 17//config: default y
18//config: help 18//config: help
19//config: checksum and count the blocks in a file 19//config: checksum and count the blocks in a file
diff --git a/coreutils/sync.c b/coreutils/sync.c
index 5e189f6f4..5557103b3 100644
--- a/coreutils/sync.c
+++ b/coreutils/sync.c
@@ -8,7 +8,7 @@
8 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
9 */ 9 */
10//config:config SYNC 10//config:config SYNC
11//config: bool "sync" 11//config: bool "sync (769 bytes)"
12//config: default y 12//config: default y
13//config: help 13//config: help
14//config: sync is used to flush filesystem buffers. 14//config: sync is used to flush filesystem buffers.
diff --git a/coreutils/tac.c b/coreutils/tac.c
index ca5617c83..1f5b34a84 100644
--- a/coreutils/tac.c
+++ b/coreutils/tac.c
@@ -13,7 +13,7 @@
13 * http://www.uclibc.org/lists/busybox/2003-July/008813.html 13 * http://www.uclibc.org/lists/busybox/2003-July/008813.html
14 */ 14 */
15//config:config TAC 15//config:config TAC
16//config: bool "tac" 16//config: bool "tac (4.1 kb)"
17//config: default y 17//config: default y
18//config: help 18//config: help
19//config: tac is used to concatenate and print files in reverse. 19//config: tac is used to concatenate and print files in reverse.
diff --git a/coreutils/tail.c b/coreutils/tail.c
index e7a24a7a8..a834e241e 100644
--- a/coreutils/tail.c
+++ b/coreutils/tail.c
@@ -19,7 +19,7 @@
19 * 7) lseek attempted when count==0 even if arg was +0 (from top) 19 * 7) lseek attempted when count==0 even if arg was +0 (from top)
20 */ 20 */
21//config:config TAIL 21//config:config TAIL
22//config: bool "tail" 22//config: bool "tail (7.1 kb)"
23//config: default y 23//config: default y
24//config: help 24//config: help
25//config: tail is used to print the last specified number of lines 25//config: tail is used to print the last specified number of lines
diff --git a/coreutils/tee.c b/coreutils/tee.c
index 602d06737..f7676ce9e 100644
--- a/coreutils/tee.c
+++ b/coreutils/tee.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config TEE 9//config:config TEE
10//config: bool "tee" 10//config: bool "tee (4.3 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: tee is used to read from standard input and write 13//config: tee is used to read from standard input and write
diff --git a/coreutils/test.c b/coreutils/test.c
index edcf2a2d8..5cca5d1f2 100644
--- a/coreutils/test.c
+++ b/coreutils/test.c
@@ -20,7 +20,7 @@
20 * "This program is in the Public Domain." 20 * "This program is in the Public Domain."
21 */ 21 */
22//config:config TEST 22//config:config TEST
23//config: bool "test" 23//config: bool "test (3.6 kb)"
24//config: default y 24//config: default y
25//config: help 25//config: help
26//config: test is used to check file types and compare values, 26//config: test is used to check file types and compare values,
diff --git a/coreutils/timeout.c b/coreutils/timeout.c
index f29dc8a9c..5981c7bcb 100644
--- a/coreutils/timeout.c
+++ b/coreutils/timeout.c
@@ -28,7 +28,7 @@
28 * rewrite 14-11-2008 vda 28 * rewrite 14-11-2008 vda
29 */ 29 */
30//config:config TIMEOUT 30//config:config TIMEOUT
31//config: bool "timeout" 31//config: bool "timeout (5.5 kb)"
32//config: default y 32//config: default y
33//config: help 33//config: help
34//config: Runs a program and watches it. If it does not terminate in 34//config: Runs a program and watches it. If it does not terminate in
diff --git a/coreutils/touch.c b/coreutils/touch.c
index 92d5a718a..7b7b9f8a1 100644
--- a/coreutils/touch.c
+++ b/coreutils/touch.c
@@ -13,7 +13,7 @@
13 * Also, exiting on a failure was a bug. All args should be processed. 13 * Also, exiting on a failure was a bug. All args should be processed.
14 */ 14 */
15//config:config TOUCH 15//config:config TOUCH
16//config: bool "touch" 16//config: bool "touch (5.8 kb)"
17//config: default y 17//config: default y
18//config: help 18//config: help
19//config: touch is used to create or change the access and/or 19//config: touch is used to create or change the access and/or
diff --git a/coreutils/tr.c b/coreutils/tr.c
index f552096f3..4281a2c69 100644
--- a/coreutils/tr.c
+++ b/coreutils/tr.c
@@ -19,7 +19,7 @@
19 * TODO: graph, print 19 * TODO: graph, print
20 */ 20 */
21//config:config TR 21//config:config TR
22//config: bool "tr" 22//config: bool "tr (5.5 kb)"
23//config: default y 23//config: default y
24//config: help 24//config: help
25//config: tr is used to squeeze, and/or delete characters from standard 25//config: tr is used to squeeze, and/or delete characters from standard
diff --git a/coreutils/true.c b/coreutils/true.c
index 6a9493f9d..29386b021 100644
--- a/coreutils/true.c
+++ b/coreutils/true.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config TRUE 9//config:config TRUE
10//config: bool "true" 10//config: bool "true (tiny)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: true returns an exit code of TRUE (0). 13//config: true returns an exit code of TRUE (0).
diff --git a/coreutils/truncate.c b/coreutils/truncate.c
index 253fe0015..eefe2b4fc 100644
--- a/coreutils/truncate.c
+++ b/coreutils/truncate.c
@@ -6,7 +6,7 @@
6 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 6 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
7 */ 7 */
8//config:config TRUNCATE 8//config:config TRUNCATE
9//config: bool "truncate" 9//config: bool "truncate (4.7 kb)"
10//config: default y 10//config: default y
11//config: help 11//config: help
12//config: truncate truncates files to a given size. If a file does 12//config: truncate truncates files to a given size. If a file does
diff --git a/coreutils/tty.c b/coreutils/tty.c
index 359e5bc93..9a5f1ef52 100644
--- a/coreutils/tty.c
+++ b/coreutils/tty.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config TTY 9//config:config TTY
10//config: bool "tty" 10//config: bool "tty (3.3 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: tty is used to print the name of the current terminal to 13//config: tty is used to print the name of the current terminal to
diff --git a/coreutils/uname.c b/coreutils/uname.c
index 1f19c933d..18c6d8efd 100644
--- a/coreutils/uname.c
+++ b/coreutils/uname.c
@@ -43,7 +43,7 @@
43 * Fix handling of -a to not print "unknown", add -o and -i support. 43 * Fix handling of -a to not print "unknown", add -o and -i support.
44 */ 44 */
45//config:config UNAME 45//config:config UNAME
46//config: bool "uname" 46//config: bool "uname (3.7 kb)"
47//config: default y 47//config: default y
48//config: help 48//config: help
49//config: uname is used to print system information. 49//config: uname is used to print system information.
diff --git a/coreutils/uniq.c b/coreutils/uniq.c
index 2b62ad3ae..3f9c56e74 100644
--- a/coreutils/uniq.c
+++ b/coreutils/uniq.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config UNIQ 9//config:config UNIQ
10//config: bool "uniq" 10//config: bool "uniq (4.8 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: uniq is used to remove duplicate lines from a sorted file. 13//config: uniq is used to remove duplicate lines from a sorted file.
diff --git a/coreutils/unlink.c b/coreutils/unlink.c
index 2879638d3..fcc86da97 100644
--- a/coreutils/unlink.c
+++ b/coreutils/unlink.c
@@ -6,7 +6,7 @@
6 * Licensed under GPLv2, see LICENSE in this source tree 6 * Licensed under GPLv2, see LICENSE in this source tree
7 */ 7 */
8//config:config UNLINK 8//config:config UNLINK
9//config: bool "unlink" 9//config: bool "unlink (3.5 kb)"
10//config: default y 10//config: default y
11//config: help 11//config: help
12//config: unlink deletes a file by calling unlink() 12//config: unlink deletes a file by calling unlink()
diff --git a/coreutils/usleep.c b/coreutils/usleep.c
index 7bc30c2a2..1675b2fc9 100644
--- a/coreutils/usleep.c
+++ b/coreutils/usleep.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config USLEEP 9//config:config USLEEP
10//config: bool "usleep" 10//config: bool "usleep (1.1 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: usleep is used to pause for a specified number of microseconds. 13//config: usleep is used to pause for a specified number of microseconds.
diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c
index 2fe771f69..418d0238f 100644
--- a/coreutils/uudecode.c
+++ b/coreutils/uudecode.c
@@ -11,7 +11,7 @@
11 * "end" line 11 * "end" line
12 */ 12 */
13//config:config UUDECODE 13//config:config UUDECODE
14//config: bool "uudecode" 14//config: bool "uudecode (5.9 kb)"
15//config: default y 15//config: default y
16//config: help 16//config: help
17//config: uudecode is used to decode a uuencoded file. 17//config: uudecode is used to decode a uuencoded file.
@@ -176,7 +176,7 @@ int uudecode_main(int argc UNUSED_PARAM, char **argv)
176//kbuild:lib-$(CONFIG_BASE64) += uudecode.o 176//kbuild:lib-$(CONFIG_BASE64) += uudecode.o
177 177
178//config:config BASE64 178//config:config BASE64
179//config: bool "base64" 179//config: bool "base64 (5 kb)"
180//config: default y 180//config: default y
181//config: help 181//config: help
182//config: Base64 encode and decode 182//config: Base64 encode and decode
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c
index 917cdaea5..cd167aeda 100644
--- a/coreutils/uuencode.c
+++ b/coreutils/uuencode.c
@@ -8,7 +8,7 @@
8 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
9 */ 9 */
10//config:config UUENCODE 10//config:config UUENCODE
11//config: bool "uuencode" 11//config: bool "uuencode (4.6 kb)"
12//config: default y 12//config: default y
13//config: help 13//config: help
14//config: uuencode is used to uuencode a file. 14//config: uuencode is used to uuencode a file.
diff --git a/coreutils/wc.c b/coreutils/wc.c
index 4c53049b0..716119d6c 100644
--- a/coreutils/wc.c
+++ b/coreutils/wc.c
@@ -33,7 +33,7 @@
33 * for which 'wc -c' should output '0'. 33 * for which 'wc -c' should output '0'.
34 */ 34 */
35//config:config WC 35//config:config WC
36//config: bool "wc" 36//config: bool "wc (4.4 kb)"
37//config: default y 37//config: default y
38//config: help 38//config: help
39//config: wc is used to print the number of bytes, words, and lines, 39//config: wc is used to print the number of bytes, words, and lines,
diff --git a/coreutils/who.c b/coreutils/who.c
index 4adead77e..73167904f 100644
--- a/coreutils/who.c
+++ b/coreutils/who.c
@@ -17,7 +17,7 @@
17 *---------------------------------------------------------------------- 17 *----------------------------------------------------------------------
18 */ 18 */
19//config:config WHO 19//config:config WHO
20//config: bool "who" 20//config: bool "who (3.7 kb)"
21//config: default y 21//config: default y
22//config: depends on FEATURE_UTMP 22//config: depends on FEATURE_UTMP
23//config: help 23//config: help
@@ -25,14 +25,14 @@
25//config: 25//config:
26// procps-ng has this variation of "who": 26// procps-ng has this variation of "who":
27//config:config W 27//config:config W
28//config: bool "w" 28//config: bool "w (3.7 kb)"
29//config: default y 29//config: default y
30//config: depends on FEATURE_UTMP 30//config: depends on FEATURE_UTMP
31//config: help 31//config: help
32//config: w is used to show who is logged on. 32//config: w is used to show who is logged on.
33//config: 33//config:
34//config:config USERS 34//config:config USERS
35//config: bool "users" 35//config: bool "users (3.2 kb)"
36//config: default y 36//config: default y
37//config: depends on FEATURE_UTMP 37//config: depends on FEATURE_UTMP
38//config: help 38//config: help
diff --git a/coreutils/whoami.c b/coreutils/whoami.c
index 635712829..02a51084a 100644
--- a/coreutils/whoami.c
+++ b/coreutils/whoami.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9//config:config WHOAMI 9//config:config WHOAMI
10//config: bool "whoami" 10//config: bool "whoami (2.9 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: whoami is used to print the username of the current 13//config: whoami is used to print the username of the current
diff --git a/coreutils/yes.c b/coreutils/yes.c
index 81d875589..e8edc0c0d 100644
--- a/coreutils/yes.c
+++ b/coreutils/yes.c
@@ -11,7 +11,7 @@
11 * Size reductions and removed redundant applet name prefix from error messages. 11 * Size reductions and removed redundant applet name prefix from error messages.
12 */ 12 */
13//config:config YES 13//config:config YES
14//config: bool "yes" 14//config: bool "yes (956 bytes)"
15//config: default y 15//config: default y
16//config: help 16//config: help
17//config: yes is used to repeatedly output a specific string, or 17//config: yes is used to repeatedly output a specific string, or