diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-28 03:20:17 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-28 03:20:17 +0100 |
commit | b097a84d62dcfcf201a695b54bcfafae70cac8a6 (patch) | |
tree | c3b559a0fd4c430a92c7e1df3d6a776c894de3f0 | |
parent | 10bde14292b3f0abbbf56aaaec16f391f12c0e64 (diff) | |
download | busybox-w32-b097a84d62dcfcf201a695b54bcfafae70cac8a6.tar.gz busybox-w32-b097a84d62dcfcf201a695b54bcfafae70cac8a6.tar.bz2 busybox-w32-b097a84d62dcfcf201a695b54bcfafae70cac8a6.zip |
config: update size information
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
262 files changed, 321 insertions, 313 deletions
diff --git a/archival/bbunzip.c b/archival/bbunzip.c index a2ce0a13c..93f30d324 100644 --- a/archival/bbunzip.c +++ b/archival/bbunzip.c | |||
@@ -299,7 +299,7 @@ int uncompress_main(int argc UNUSED_PARAM, char **argv) | |||
299 | //usage: "Decompress to stdout" | 299 | //usage: "Decompress to stdout" |
300 | 300 | ||
301 | //config:config GUNZIP | 301 | //config:config GUNZIP |
302 | //config: bool "gunzip (12 kb)" | 302 | //config: bool "gunzip (11 kb)" |
303 | //config: default y | 303 | //config: default y |
304 | //config: select FEATURE_GZIP_DECOMPRESS | 304 | //config: select FEATURE_GZIP_DECOMPRESS |
305 | //config: help | 305 | //config: help |
@@ -308,7 +308,7 @@ int uncompress_main(int argc UNUSED_PARAM, char **argv) | |||
308 | //config: an archive, without decompressing it. | 308 | //config: an archive, without decompressing it. |
309 | //config: | 309 | //config: |
310 | //config:config ZCAT | 310 | //config:config ZCAT |
311 | //config: bool "zcat (25 kb)" | 311 | //config: bool "zcat (24 kb)" |
312 | //config: default y | 312 | //config: default y |
313 | //config: select FEATURE_GZIP_DECOMPRESS | 313 | //config: select FEATURE_GZIP_DECOMPRESS |
314 | //config: help | 314 | //config: help |
@@ -413,7 +413,7 @@ int gunzip_main(int argc UNUSED_PARAM, char **argv) | |||
413 | //usage: "Decompress to stdout" | 413 | //usage: "Decompress to stdout" |
414 | 414 | ||
415 | //config:config BUNZIP2 | 415 | //config:config BUNZIP2 |
416 | //config: bool "bunzip2 (8.8 kb)" | 416 | //config: bool "bunzip2 (8.7 kb)" |
417 | //config: default y | 417 | //config: default y |
418 | //config: select FEATURE_BZIP2_DECOMPRESS | 418 | //config: select FEATURE_BZIP2_DECOMPRESS |
419 | //config: help | 419 | //config: help |
@@ -427,7 +427,7 @@ int gunzip_main(int argc UNUSED_PARAM, char **argv) | |||
427 | //config: should probably say N here. | 427 | //config: should probably say N here. |
428 | //config: | 428 | //config: |
429 | //config:config BZCAT | 429 | //config:config BZCAT |
430 | //config: bool "bzcat (8.8 kb)" | 430 | //config: bool "bzcat (8.7 kb)" |
431 | //config: default y | 431 | //config: default y |
432 | //config: select FEATURE_BZIP2_DECOMPRESS | 432 | //config: select FEATURE_BZIP2_DECOMPRESS |
433 | //config: help | 433 | //config: help |
@@ -481,7 +481,7 @@ int bunzip2_main(int argc UNUSED_PARAM, char **argv) | |||
481 | //usage: "Decompress to stdout" | 481 | //usage: "Decompress to stdout" |
482 | 482 | ||
483 | //config:config UNLZMA | 483 | //config:config UNLZMA |
484 | //config: bool "unlzma (8.6 kb)" | 484 | //config: bool "unlzma (7.5 kb)" |
485 | //config: default y | 485 | //config: default y |
486 | //config: help | 486 | //config: help |
487 | //config: unlzma is a compression utility using the Lempel-Ziv-Markov chain | 487 | //config: unlzma is a compression utility using the Lempel-Ziv-Markov chain |
@@ -490,7 +490,7 @@ int bunzip2_main(int argc UNUSED_PARAM, char **argv) | |||
490 | //config: compressors. | 490 | //config: compressors. |
491 | //config: | 491 | //config: |
492 | //config:config LZCAT | 492 | //config:config LZCAT |
493 | //config: bool "lzcat (8.5 kb)" | 493 | //config: bool "lzcat (7.5 kb)" |
494 | //config: default y | 494 | //config: default y |
495 | //config: help | 495 | //config: help |
496 | //config: Alias to "unlzma -c". | 496 | //config: Alias to "unlzma -c". |
diff --git a/archival/bzip2.c b/archival/bzip2.c index 357891ca3..38cc0219a 100644 --- a/archival/bzip2.c +++ b/archival/bzip2.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * about bzip2 library code. | 7 | * about bzip2 library code. |
8 | */ | 8 | */ |
9 | //config:config BZIP2 | 9 | //config:config BZIP2 |
10 | //config: bool "bzip2 (18 kb)" | 10 | //config: bool "bzip2 (16 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: bzip2 is a compression utility using the Burrows-Wheeler block | 13 | //config: bzip2 is a compression utility using the Burrows-Wheeler block |
diff --git a/archival/cpio.c b/archival/cpio.c index 9cacf9de6..0f37ffbb9 100644 --- a/archival/cpio.c +++ b/archival/cpio.c | |||
@@ -11,7 +11,7 @@ | |||
11 | * Only supports new ASCII and CRC formats | 11 | * Only supports new ASCII and CRC formats |
12 | */ | 12 | */ |
13 | //config:config CPIO | 13 | //config:config CPIO |
14 | //config: bool "cpio (14 kb)" | 14 | //config: bool "cpio (15 kb)" |
15 | //config: default y | 15 | //config: default y |
16 | //config: help | 16 | //config: help |
17 | //config: cpio is an archival utility program used to create, modify, and | 17 | //config: cpio is an archival utility program used to create, modify, and |
diff --git a/archival/dpkg.c b/archival/dpkg.c index 58bc4dba3..ddb5daf09 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c | |||
@@ -26,7 +26,7 @@ | |||
26 | * - (unknown, please let me know when you find any) | 26 | * - (unknown, please let me know when you find any) |
27 | */ | 27 | */ |
28 | //config:config DPKG | 28 | //config:config DPKG |
29 | //config: bool "dpkg (44 kb)" | 29 | //config: bool "dpkg (43 kb)" |
30 | //config: default y | 30 | //config: default y |
31 | //config: select FEATURE_SEAMLESS_GZ | 31 | //config: select FEATURE_SEAMLESS_GZ |
32 | //config: help | 32 | //config: help |
diff --git a/archival/gzip.c b/archival/gzip.c index 74d5d685f..12c1df242 100644 --- a/archival/gzip.c +++ b/archival/gzip.c | |||
@@ -22,7 +22,7 @@ gzip: bogus: No such file or directory | |||
22 | aa: 85.1% -- replaced with aa.gz | 22 | aa: 85.1% -- replaced with aa.gz |
23 | */ | 23 | */ |
24 | //config:config GZIP | 24 | //config:config GZIP |
25 | //config: bool "gzip (19 kb)" | 25 | //config: bool "gzip (17 kb)" |
26 | //config: default y | 26 | //config: default y |
27 | //config: help | 27 | //config: help |
28 | //config: gzip is used to compress files. | 28 | //config: gzip is used to compress files. |
diff --git a/archival/lzop.c b/archival/lzop.c index 8f604254c..585632c4e 100644 --- a/archival/lzop.c +++ b/archival/lzop.c | |||
@@ -25,7 +25,7 @@ | |||
25 | "Minimalized" for busybox by Alain Knaff | 25 | "Minimalized" for busybox by Alain Knaff |
26 | */ | 26 | */ |
27 | //config:config LZOP | 27 | //config:config LZOP |
28 | //config: bool "lzop (13 kb)" | 28 | //config: bool "lzop (12 kb)" |
29 | //config: default y | 29 | //config: default y |
30 | //config: help | 30 | //config: help |
31 | //config: Lzop compression/decompresion. | 31 | //config: Lzop compression/decompresion. |
diff --git a/archival/rpm.c b/archival/rpm.c index 790eeb59d..95b2531e8 100644 --- a/archival/rpm.c +++ b/archival/rpm.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 RPM | 9 | //config:config RPM |
10 | //config: bool "rpm (33 kb)" | 10 | //config: bool "rpm (32 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: Mini RPM applet - queries and extracts RPM packages. | 13 | //config: Mini RPM applet - queries and extracts RPM packages. |
@@ -499,7 +499,7 @@ int rpm_main(int argc, char **argv) | |||
499 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 499 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
500 | */ | 500 | */ |
501 | //config:config RPM2CPIO | 501 | //config:config RPM2CPIO |
502 | //config: bool "rpm2cpio (20 kb)" | 502 | //config: bool "rpm2cpio (21 kb)" |
503 | //config: default y | 503 | //config: default y |
504 | //config: help | 504 | //config: help |
505 | //config: Converts a RPM file into a CPIO archive. | 505 | //config: Converts a RPM file into a CPIO archive. |
diff --git a/archival/tar.c b/archival/tar.c index 6950c271d..3ef89fb0a 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -23,7 +23,7 @@ | |||
23 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 23 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
24 | */ | 24 | */ |
25 | //config:config TAR | 25 | //config:config TAR |
26 | //config: bool "tar (40 kb)" | 26 | //config: bool "tar (39 kb)" |
27 | //config: default y | 27 | //config: default y |
28 | //config: help | 28 | //config: help |
29 | //config: tar is an archiving program. It's commonly used with gzip to | 29 | //config: tar is an archiving program. It's commonly used with gzip to |
diff --git a/archival/unzip.c b/archival/unzip.c index c406d53c4..466794031 100644 --- a/archival/unzip.c +++ b/archival/unzip.c | |||
@@ -17,7 +17,7 @@ | |||
17 | * Zip64 + other methods | 17 | * Zip64 + other methods |
18 | */ | 18 | */ |
19 | //config:config UNZIP | 19 | //config:config UNZIP |
20 | //config: bool "unzip (24 kb)" | 20 | //config: bool "unzip (26 kb)" |
21 | //config: default y | 21 | //config: default y |
22 | //config: help | 22 | //config: help |
23 | //config: unzip will list or extract files from a ZIP archive, | 23 | //config: unzip will list or extract files from a ZIP archive, |
diff --git a/console-tools/dumpkmap.c b/console-tools/dumpkmap.c index f1c9287b5..fd4fd5623 100644 --- a/console-tools/dumpkmap.c +++ b/console-tools/dumpkmap.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 DUMPKMAP | 9 | //config:config DUMPKMAP |
10 | //config: bool "dumpkmap (1.3 kb)" | 10 | //config: bool "dumpkmap (1.6 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/console-tools/fgconsole.c b/console-tools/fgconsole.c index a353becd5..554a32403 100644 --- a/console-tools/fgconsole.c +++ b/console-tools/fgconsole.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 FGCONSOLE | 9 | //config:config FGCONSOLE |
10 | //config: bool "fgconsole (1.6 kb)" | 10 | //config: bool "fgconsole (1.5 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/console-tools/kbd_mode.c b/console-tools/kbd_mode.c index f16449dcd..cee37ab50 100644 --- a/console-tools/kbd_mode.c +++ b/console-tools/kbd_mode.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 KBD_MODE | 11 | //config:config KBD_MODE |
12 | //config: bool "kbd_mode (4 kb)" | 12 | //config: bool "kbd_mode (4.1 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: select PLATFORM_LINUX | 14 | //config: select PLATFORM_LINUX |
15 | //config: help | 15 | //config: help |
diff --git a/console-tools/loadfont.c b/console-tools/loadfont.c index 81d0c3db4..b5d4e8f43 100644 --- a/console-tools/loadfont.c +++ b/console-tools/loadfont.c | |||
@@ -10,14 +10,14 @@ | |||
10 | * Licensed under GPLv2, see file LICENSE in this source tree. | 10 | * Licensed under GPLv2, see file LICENSE in this source tree. |
11 | */ | 11 | */ |
12 | //config:config LOADFONT | 12 | //config:config LOADFONT |
13 | //config: bool "loadfont (5.4 kb)" | 13 | //config: bool "loadfont (5.2 kb)" |
14 | //config: default y | 14 | //config: default y |
15 | //config: select PLATFORM_LINUX | 15 | //config: select PLATFORM_LINUX |
16 | //config: help | 16 | //config: help |
17 | //config: This program loads a console font from standard input. | 17 | //config: This program loads a console font from standard input. |
18 | //config: | 18 | //config: |
19 | //config:config SETFONT | 19 | //config:config SETFONT |
20 | //config: bool "setfont (26 kb)" | 20 | //config: bool "setfont (24 kb)" |
21 | //config: default y | 21 | //config: default y |
22 | //config: select PLATFORM_LINUX | 22 | //config: select PLATFORM_LINUX |
23 | //config: help | 23 | //config: help |
diff --git a/console-tools/loadkmap.c b/console-tools/loadkmap.c index 404aba1fb..d4981ad21 100644 --- a/console-tools/loadkmap.c +++ b/console-tools/loadkmap.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 LOADKMAP | 9 | //config:config LOADKMAP |
10 | //config: bool "loadkmap (1.5 kb)" | 10 | //config: bool "loadkmap (1.8 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/console-tools/openvt.c b/console-tools/openvt.c index 423122fe9..b01229a56 100644 --- a/console-tools/openvt.c +++ b/console-tools/openvt.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 OPENVT | 10 | //config:config OPENVT |
11 | //config: bool "openvt (7 kb)" | 11 | //config: bool "openvt (7.2 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
diff --git a/console-tools/reset.c b/console-tools/reset.c index 614806ba7..113bb5c76 100644 --- a/console-tools/reset.c +++ b/console-tools/reset.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 RESET | 10 | //config:config RESET |
11 | //config: bool "reset (275 bytes)" | 11 | //config: bool "reset (345 bytes)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: This program is used to reset the terminal screen, if it | 14 | //config: This program is used to reset the terminal screen, if it |
diff --git a/console-tools/resize.c b/console-tools/resize.c index 8aa487c41..59d468d48 100644 --- a/console-tools/resize.c +++ b/console-tools/resize.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 RESIZE | 9 | //config:config RESIZE |
10 | //config: bool "resize (756 bytes)" | 10 | //config: bool "resize (903 bytes)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: This program is used to (re)set the width and height of your current | 13 | //config: This program is used to (re)set the width and height of your current |
diff --git a/console-tools/setconsole.c b/console-tools/setconsole.c index 7f0f9c711..0bc587241 100644 --- a/console-tools/setconsole.c +++ b/console-tools/setconsole.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 SETCONSOLE | 10 | //config:config SETCONSOLE |
11 | //config: bool "setconsole (3.7 kb)" | 11 | //config: bool "setconsole (3.6 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
diff --git a/console-tools/setkeycodes.c b/console-tools/setkeycodes.c index 1363ac9d1..259946dbb 100644 --- a/console-tools/setkeycodes.c +++ b/console-tools/setkeycodes.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 SETKEYCODES | 11 | //config:config SETKEYCODES |
12 | //config: bool "setkeycodes (1.7 kb)" | 12 | //config: bool "setkeycodes (2.1 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: select PLATFORM_LINUX | 14 | //config: select PLATFORM_LINUX |
15 | //config: help | 15 | //config: help |
diff --git a/coreutils/basename.c b/coreutils/basename.c index 812a5e63e..0dd2c43c7 100644 --- a/coreutils/basename.c +++ b/coreutils/basename.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * 3) Save some space by using strcmp(). Calling strncmp() here was silly. | 14 | * 3) Save some space by using strcmp(). Calling strncmp() here was silly. |
15 | */ | 15 | */ |
16 | //config:config BASENAME | 16 | //config:config BASENAME |
17 | //config: bool "basename (371 bytes)" | 17 | //config: bool "basename (438 bytes)" |
18 | //config: default y | 18 | //config: default y |
19 | //config: help | 19 | //config: help |
20 | //config: basename is used to strip the directory and suffix from filenames, | 20 | //config: basename is used to strip the directory and suffix from filenames, |
diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c index 27a0edf0d..ae216aa3f 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 (7.2 kb)" | 10 | //config: bool "chgrp (7.6 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 88989bf67..27e9b6b86 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 (5.1 kb)" | 13 | //config: bool "chmod (5.5 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 6429fd030..a1c5c0224 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 (7.2 kb)" | 10 | //config: bool "chown (7.6 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/cksum.c b/coreutils/cksum.c index e46e249f2..633322bc7 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 (4.2 kb)" | 10 | //config: bool "cksum (4.1 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 4bee77677..c59fccdd1 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 (3.9 kb)" | 10 | //config: bool "comm (4.2 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 b26c0e954..59e3d2f80 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 (9.7 kb)" | 15 | //config: bool "cp (10 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 cdd90ab44..e952dc17b 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 (5.3 kb)" | 12 | //config: bool "cut (5.8 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 87dc3bbd0..9cbc7302f 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 (7.1 kb)" | 22 | //config: bool "date (7 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 39ce5019f..4b31e9a7b 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 (7.1 kb)" | 10 | //config: bool "dd (7.5 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 50dccac52..f6d66e4b6 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 (7.5 kb)" | 21 | //config: bool "df (6.8 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 511267b78..5aad121b5 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 (289 bytes)" | 10 | //config: bool "dirname (329 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 9f098e41e..4039ed38c 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 (5.1 kb)" | 15 | //config: bool "dos2unix (5.2 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 (5.1 kb)" | 22 | //config: bool "unix2dos (5.2 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 0aebead1b..878068f09 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 (3.8 kb)" | 27 | //config: bool "env (4 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 91084b80b..f7e4619f9 100644 --- a/coreutils/expand.c +++ b/coreutils/expand.c | |||
@@ -21,13 +21,13 @@ | |||
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 (5.8 kb)" | 24 | //config: bool "expand (5.1 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. |
28 | //config: | 28 | //config: |
29 | //config:config UNEXPAND | 29 | //config:config UNEXPAND |
30 | //config: bool "unexpand (6 kb)" | 30 | //config: bool "unexpand (5.3 kb)" |
31 | //config: default y | 31 | //config: default y |
32 | //config: help | 32 | //config: help |
33 | //config: By default, convert only leading sequences of blanks to tabs. | 33 | //config: By default, convert only leading sequences of blanks to tabs. |
diff --git a/coreutils/expr.c b/coreutils/expr.c index e54afbb62..1bdfba004 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 (6.1 kb)" | 26 | //config: bool "expr (6.6 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 467e23a4d..1f24784fd 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 (2.6 kb)" | 7 | //config: bool "factor (2.7 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/fsync.c b/coreutils/fsync.c index 5e77e2c16..c7cba9f61 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 (3.7 kb)" | 10 | //config: bool "fsync (3.6 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 fc3a48d5b..1219dfe8b 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 (3.7 kb)" | 10 | //config: bool "head (3.8 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 d21e6d6ac..038809452 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 (247 bytes)" | 10 | //config: bool "hostid (286 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 5a7fb9aaf..00c0cd8ab 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 (6.7 kb)" | 16 | //config: bool "id (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 (6.5 kb)" | 22 | //config: bool "groups (6.7 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/link.c b/coreutils/link.c index d8d583b7b..23e0cfdd0 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 (3.1 kb)" | 9 | //config: bool "link (3.2 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 2dda5dae9..3fe2f3f64 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 (4.5 kb)" | 10 | //config: bool "ln (4.9 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 e614ca7cf..31ce61f0c 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 (894 bytes)" | 19 | //config: bool "logname (1.1 kb)" |
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/md5_sha1_sum.c b/coreutils/md5_sha1_sum.c index 871145143..538df251b 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 (6.8 kb)" | 9 | //config: bool "md5sum (6.5 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: help | 11 | //config: help |
12 | //config: Compute and check MD5 message digest | 12 | //config: Compute and check MD5 message digest |
13 | //config: | 13 | //config: |
14 | //config:config SHA1SUM | 14 | //config:config SHA1SUM |
15 | //config: bool "sha1sum (6 kb)" | 15 | //config: bool "sha1sum (5.9 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 (7.1 kb)" | 21 | //config: bool "sha256sum (7 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 (7.6 kb)" | 27 | //config: bool "sha512sum (7.4 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 (6.3 kb)" | 33 | //config: bool "sha3sum (6.1 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 986353dc6..0ee1d1f72 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 (4.4 kb)" | 17 | //config: bool "mkdir (4.5 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 0f614017e..e9d420ed8 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 (3.7 kb)" | 10 | //config: bool "mkfifo (3.8 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 d57167f7d..eee0ac71d 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 (4 kb)" | 10 | //config: bool "mknod (4.5 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 c041fedf7..5393320a5 100644 --- a/coreutils/mktemp.c +++ b/coreutils/mktemp.c | |||
@@ -29,7 +29,7 @@ | |||
29 | * -p; else /tmp [deprecated] | 29 | * -p; else /tmp [deprecated] |
30 | */ | 30 | */ |
31 | //config:config MKTEMP | 31 | //config:config MKTEMP |
32 | //config: bool "mktemp (4 kb)" | 32 | //config: bool "mktemp (4.2 kb)" |
33 | //config: default y | 33 | //config: default y |
34 | //config: help | 34 | //config: help |
35 | //config: mktemp is used to create unique temporary files | 35 | //config: mktemp is used to create unique temporary files |
diff --git a/coreutils/mv.c b/coreutils/mv.c index 6e11197a1..b9f8f6982 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 (9.8 kb)" | 15 | //config: bool "mv (10 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 da1696c42..28591ac61 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 (1.8 kb)" | 10 | //config: bool "nice (2.1 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 2fdc9d85e..aea019c56 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 (4.3 kb)" | 8 | //config: bool "nl (4.6 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/nproc.c b/coreutils/nproc.c index 0ea8d1001..31e452bc4 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 (248 bytes)" | 7 | //config: bool "nproc (3.7 kb)" |
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/paste.c b/coreutils/paste.c index 52f67f951..3d81a5f1a 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 (4.5 kb)" | 10 | //config: bool "paste (4.9 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 b0468b3f7..5e195deaa 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 (1 kb)" | 11 | //config: bool "printenv (1.3 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 67d3b2eda..5cf518699 100644 --- a/coreutils/printf.c +++ b/coreutils/printf.c | |||
@@ -38,7 +38,7 @@ | |||
38 | /* 19990508 Busy Boxed! Dave Cinege */ | 38 | /* 19990508 Busy Boxed! Dave Cinege */ |
39 | 39 | ||
40 | //config:config PRINTF | 40 | //config:config PRINTF |
41 | //config: bool "printf (3.3 kb)" | 41 | //config: bool "printf (3.8 kb)" |
42 | //config: default y | 42 | //config: default y |
43 | //config: help | 43 | //config: help |
44 | //config: printf is used to format and print specified strings. | 44 | //config: printf is used to format and print specified strings. |
diff --git a/coreutils/pwd.c b/coreutils/pwd.c index 345d85100..4c42284f4 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 (3.4 kb)" | 10 | //config: bool "pwd (3.7 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 49361cea0..09d69df2b 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 (3.6 kb)" | 10 | //config: bool "readlink (4 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 43923681c..f5f868744 100644 --- a/coreutils/realpath.c +++ b/coreutils/realpath.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 REALPATH | 10 | //config:config REALPATH |
11 | //config: bool "realpath (1.1 kb)" | 11 | //config: bool "realpath (1.6 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: Return the canonicalized absolute pathname. | 14 | //config: Return the canonicalized absolute pathname. |
diff --git a/coreutils/rm.c b/coreutils/rm.c index b68a82dc4..fd94bb5c4 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 (4.9 kb)" | 14 | //config: bool "rm (5.4 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 955740494..5092a5dfc 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 (3.4 kb)" | 10 | //config: bool "rmdir (3.5 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 c26ff06b9..beb339d1e 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 (3.6 kb)" | 10 | //config: bool "seq (3.8 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 3ceb58d19..8f3d9c5c9 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 (5 kb)" | 8 | //config: bool "shred (4.9 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/sleep.c b/coreutils/sleep.c index 126665839..5c9cda9f0 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 (1.7 kb)" | 16 | //config: bool "sleep (2 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 05e5c9071..f04c6067b 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 (7.4 kb)" | 15 | //config: bool "sort (7.7 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 4e1db190c..c1e4ceab2 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 (5.4 kb)" | 9 | //config: bool "split (5 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 3d527ae63..122029bda 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 (10 kb)" | 16 | //config: bool "stat (11 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 424d909cf..6251f2aef 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * Special for busybox ported by Vladimir Oleynik <dzo@simtreas.ru> 2001 | 21 | * Special for busybox ported by Vladimir Oleynik <dzo@simtreas.ru> 2001 |
22 | */ | 22 | */ |
23 | //config:config STTY | 23 | //config:config STTY |
24 | //config: bool "stty (8.6 kb)" | 24 | //config: bool "stty (8.9 kb)" |
25 | //config: default y | 25 | //config: default y |
26 | //config: help | 26 | //config: help |
27 | //config: stty is used to change and print terminal line settings. | 27 | //config: stty is used to change and print terminal line settings. |
diff --git a/coreutils/sum.c b/coreutils/sum.c index 487e93f4a..16ec44540 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 (4.3 kb)" | 16 | //config: bool "sum (4 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 9be47ab64..b93476aee 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 (769 bytes)" | 11 | //config: bool "sync (3.8 kb)" |
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 6d3ea9c19..25e85f6f3 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 (4.1 kb)" | 16 | //config: bool "tac (3.9 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 7335ba11e..14ed85d16 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 (7.1 kb)" | 22 | //config: bool "tail (6.8 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 f0ec791bb..fe5694331 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 (4.3 kb)" | 10 | //config: bool "tee (4.2 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 ddb66ddce..8d7dac025 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 (3.6 kb)" | 23 | //config: bool "test (4.1 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 e42aba85c..8b7bc2eaa 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 (5.5 kb)" | 31 | //config: bool "timeout (6 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 857761578..b30811157 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 (5.8 kb)" | 16 | //config: bool "touch (5.9 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 10284e1c9..ae35a9ee3 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 (5.5 kb)" | 22 | //config: bool "tr (5.1 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/truncate.c b/coreutils/truncate.c index f693570aa..233d0f2d1 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 (4.7 kb)" | 9 | //config: bool "truncate (4.2 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 18ad7c566..ff6f2bb3b 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 (3.3 kb)" | 10 | //config: bool "tty (3.6 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 765809658..2a1602b4c 100644 --- a/coreutils/uname.c +++ b/coreutils/uname.c | |||
@@ -44,7 +44,7 @@ | |||
44 | * Fix handling of -a to not print "unknown", add -o and -i support. | 44 | * Fix handling of -a to not print "unknown", add -o and -i support. |
45 | */ | 45 | */ |
46 | //config:config UNAME | 46 | //config:config UNAME |
47 | //config: bool "uname (3.7 kb)" | 47 | //config: bool "uname (3.9 kb)" |
48 | //config: default y | 48 | //config: default y |
49 | //config: help | 49 | //config: help |
50 | //config: uname is used to print system information. | 50 | //config: uname is used to print system information. |
@@ -59,7 +59,7 @@ | |||
59 | //config: | 59 | //config: |
60 | //can't use "ARCH" for this applet, all hell breaks loose in build system :) | 60 | //can't use "ARCH" for this applet, all hell breaks loose in build system :) |
61 | //config:config BB_ARCH | 61 | //config:config BB_ARCH |
62 | //config: bool "arch (1.6 kb)" | 62 | //config: bool "arch (1.1 kb)" |
63 | //config: default y | 63 | //config: default y |
64 | //config: help | 64 | //config: help |
65 | //config: Same as uname -m. | 65 | //config: Same as uname -m. |
diff --git a/coreutils/uniq.c b/coreutils/uniq.c index f71557b67..317f45531 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 (4.8 kb)" | 10 | //config: bool "uniq (4.9 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 61b108a84..24be81da6 100644 --- a/coreutils/unlink.c +++ b/coreutils/unlink.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * Licensed under GPLv2, see LICENSE in this source tree | 7 | * Licensed under GPLv2, see LICENSE in this source tree |
8 | */ | 8 | */ |
9 | //config:config UNLINK | 9 | //config:config UNLINK |
10 | //config: bool "unlink (3.5 kb)" | 10 | //config: bool "unlink (3.2 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: unlink deletes a file by calling unlink() | 13 | //config: unlink deletes a file by calling unlink() |
diff --git a/coreutils/usleep.c b/coreutils/usleep.c index 684ab781b..51a015c44 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 (1.1 kb)" | 10 | //config: bool "usleep (1.3 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 5ef05ee4d..5f69e62b3 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 (5.9 kb)" | 14 | //config: bool "uudecode (5.8 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. |
@@ -175,7 +175,7 @@ int uudecode_main(int argc UNUSED_PARAM, char **argv) | |||
175 | //kbuild:lib-$(CONFIG_BASE64) += uudecode.o | 175 | //kbuild:lib-$(CONFIG_BASE64) += uudecode.o |
176 | 176 | ||
177 | //config:config BASE64 | 177 | //config:config BASE64 |
178 | //config: bool "base64 (5 kb)" | 178 | //config: bool "base64 (4.9 kb)" |
179 | //config: default y | 179 | //config: default y |
180 | //config: help | 180 | //config: help |
181 | //config: Base64 encode and decode | 181 | //config: Base64 encode and decode |
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c index aa53b14a6..2807ef82a 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 (4.6 kb)" | 11 | //config: bool "uuencode (4.4 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 c74b7a65f..99eb9dc87 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 (4.4 kb)" | 36 | //config: bool "wc (4.5 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 80226c3d6..be9c3ccca 100644 --- a/coreutils/who.c +++ b/coreutils/who.c | |||
@@ -15,7 +15,7 @@ | |||
15 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 15 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
16 | */ | 16 | */ |
17 | //config:config WHO | 17 | //config:config WHO |
18 | //config: bool "who (3.7 kb)" | 18 | //config: bool "who (3.9 kb)" |
19 | //config: default y | 19 | //config: default y |
20 | //config: depends on FEATURE_UTMP | 20 | //config: depends on FEATURE_UTMP |
21 | //config: help | 21 | //config: help |
@@ -23,14 +23,14 @@ | |||
23 | //config: | 23 | //config: |
24 | // procps-ng has this variation of "who": | 24 | // procps-ng has this variation of "who": |
25 | //config:config W | 25 | //config:config W |
26 | //config: bool "w (3.7 kb)" | 26 | //config: bool "w (3.8 kb)" |
27 | //config: default y | 27 | //config: default y |
28 | //config: depends on FEATURE_UTMP | 28 | //config: depends on FEATURE_UTMP |
29 | //config: help | 29 | //config: help |
30 | //config: Print users currently logged on. | 30 | //config: Print users currently logged on. |
31 | //config: | 31 | //config: |
32 | //config:config USERS | 32 | //config:config USERS |
33 | //config: bool "users (3.2 kb)" | 33 | //config: bool "users (3.4 kb)" |
34 | //config: default y | 34 | //config: default y |
35 | //config: depends on FEATURE_UTMP | 35 | //config: depends on FEATURE_UTMP |
36 | //config: help | 36 | //config: help |
diff --git a/coreutils/whoami.c b/coreutils/whoami.c index 9dab15817..49b5dd368 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 (2.9 kb)" | 10 | //config: bool "whoami (3.2 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 c244bfe10..9a435a761 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 (956 bytes)" | 14 | //config: bool "yes (1.2 kb)" |
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 |
diff --git a/debianutils/pipe_progress.c b/debianutils/pipe_progress.c index e6b7601fa..ab7e2528f 100644 --- a/debianutils/pipe_progress.c +++ b/debianutils/pipe_progress.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 PIPE_PROGRESS | 9 | //config:config PIPE_PROGRESS |
10 | //config: bool "pipe_progress (225 bytes)" | 10 | //config: bool "pipe_progress (275 bytes)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: Display a dot to indicate pipe activity. | 13 | //config: Display a dot to indicate pipe activity. |
diff --git a/debianutils/run_parts.c b/debianutils/run_parts.c index e4d61df35..c80cc863f 100644 --- a/debianutils/run_parts.c +++ b/debianutils/run_parts.c | |||
@@ -23,7 +23,7 @@ | |||
23 | * broken compatibility because the BusyBox policy doesn't allow them. | 23 | * broken compatibility because the BusyBox policy doesn't allow them. |
24 | */ | 24 | */ |
25 | //config:config RUN_PARTS | 25 | //config:config RUN_PARTS |
26 | //config: bool "run-parts (5.6 kb)" | 26 | //config: bool "run-parts (6.1 kb)" |
27 | //config: default y | 27 | //config: default y |
28 | //config: help | 28 | //config: help |
29 | //config: run-parts is a utility designed to run all the scripts in a directory. | 29 | //config: run-parts is a utility designed to run all the scripts in a directory. |
diff --git a/debianutils/which.c b/debianutils/which.c index 02f77a216..98876521f 100644 --- a/debianutils/which.c +++ b/debianutils/which.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 WHICH | 8 | //config:config WHICH |
9 | //config: bool "which (3.7 kb)" | 9 | //config: bool "which (3.8 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: help | 11 | //config: help |
12 | //config: which is used to find programs in your PATH and | 12 | //config: which is used to find programs in your PATH and |
diff --git a/e2fsprogs/chattr.c b/e2fsprogs/chattr.c index 76a5253b6..c93e209b5 100644 --- a/e2fsprogs/chattr.c +++ b/e2fsprogs/chattr.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * Public License | 10 | * Public License |
11 | */ | 11 | */ |
12 | //config:config CHATTR | 12 | //config:config CHATTR |
13 | //config: bool "chattr (3.2 kb)" | 13 | //config: bool "chattr (3.8 kb)" |
14 | //config: default y | 14 | //config: default y |
15 | //config: help | 15 | //config: help |
16 | //config: chattr changes the file attributes on a second extended file system. | 16 | //config: chattr changes the file attributes on a second extended file system. |
diff --git a/e2fsprogs/fsck.c b/e2fsprogs/fsck.c index f5aa3dbe4..8a14b3bdc 100644 --- a/e2fsprogs/fsck.c +++ b/e2fsprogs/fsck.c | |||
@@ -34,7 +34,7 @@ | |||
34 | * It doesn't guess filesystem types from on-disk format. | 34 | * It doesn't guess filesystem types from on-disk format. |
35 | */ | 35 | */ |
36 | //config:config FSCK | 36 | //config:config FSCK |
37 | //config: bool "fsck (6.7 kb)" | 37 | //config: bool "fsck (7.4 kb)" |
38 | //config: default y | 38 | //config: default y |
39 | //config: help | 39 | //config: help |
40 | //config: fsck is used to check and optionally repair one or more filesystems. | 40 | //config: fsck is used to check and optionally repair one or more filesystems. |
diff --git a/e2fsprogs/lsattr.c b/e2fsprogs/lsattr.c index 56c1187c1..be1488b79 100644 --- a/e2fsprogs/lsattr.c +++ b/e2fsprogs/lsattr.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * Public License | 10 | * Public License |
11 | */ | 11 | */ |
12 | //config:config LSATTR | 12 | //config:config LSATTR |
13 | //config: bool "lsattr (5 kb)" | 13 | //config: bool "lsattr (5.5 kb)" |
14 | //config: default y | 14 | //config: default y |
15 | //config: select PLATFORM_LINUX | 15 | //config: select PLATFORM_LINUX |
16 | //config: help | 16 | //config: help |
diff --git a/editors/awk.c b/editors/awk.c index af103e3cc..b6d8cf203 100644 --- a/editors/awk.c +++ b/editors/awk.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 AWK | 9 | //config:config AWK |
10 | //config: bool "awk (22 kb)" | 10 | //config: bool "awk (23 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: Awk is used as a pattern scanning and processing language. | 13 | //config: Awk is used as a pattern scanning and processing language. |
diff --git a/editors/cmp.c b/editors/cmp.c index 2a410fdec..6e27a841a 100644 --- a/editors/cmp.c +++ b/editors/cmp.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 CMP | 9 | //config:config CMP |
10 | //config: bool "cmp (5.4 kb)" | 10 | //config: bool "cmp (4.9 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: cmp is used to compare two files and returns the result | 13 | //config: cmp is used to compare two files and returns the result |
diff --git a/editors/ed.c b/editors/ed.c index 05797692c..1a36add39 100644 --- a/editors/ed.c +++ b/editors/ed.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * The "ed" built-in command (much simplified) | 7 | * The "ed" built-in command (much simplified) |
8 | */ | 8 | */ |
9 | //config:config ED | 9 | //config:config ED |
10 | //config: bool "ed (25 kb)" | 10 | //config: bool "ed (21 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: The original 1970's Unix text editor, from the days of teletypes. | 13 | //config: The original 1970's Unix text editor, from the days of teletypes. |
diff --git a/editors/patch.c b/editors/patch.c index eca6bc5f6..0ce0210fd 100644 --- a/editors/patch.c +++ b/editors/patch.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * [file] which file to patch | 21 | * [file] which file to patch |
22 | */ | 22 | */ |
23 | //config:config PATCH | 23 | //config:config PATCH |
24 | //config: bool "patch (9.1 kb)" | 24 | //config: bool "patch (9.4 kb)" |
25 | //config: default y | 25 | //config: default y |
26 | //config: help | 26 | //config: help |
27 | //config: Apply a unified diff formatted patch. | 27 | //config: Apply a unified diff formatted patch. |
diff --git a/editors/patch_toybox.c b/editors/patch_toybox.c index 2c958d287..3ffbf9084 100644 --- a/editors/patch_toybox.c +++ b/editors/patch_toybox.c | |||
@@ -26,7 +26,7 @@ | |||
26 | USE_PATCH(NEWTOY(patch, USE_TOYBOX_DEBUG("x")"up#i:R", TOYFLAG_USR|TOYFLAG_BIN)) | 26 | USE_PATCH(NEWTOY(patch, USE_TOYBOX_DEBUG("x")"up#i:R", TOYFLAG_USR|TOYFLAG_BIN)) |
27 | 27 | ||
28 | config PATCH | 28 | config PATCH |
29 | bool "patch (9.1 kb)" | 29 | bool "patch (9.4 kb)" |
30 | default y | 30 | default y |
31 | help | 31 | help |
32 | usage: patch [-i file] [-p depth] [-Ru] | 32 | usage: patch [-i file] [-p depth] [-Ru] |
diff --git a/editors/vi.c b/editors/vi.c index 271529404..32144abaa 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -19,7 +19,7 @@ | |||
19 | * An "ex" line oriented mode- maybe using "cmdedit" | 19 | * An "ex" line oriented mode- maybe using "cmdedit" |
20 | */ | 20 | */ |
21 | //config:config VI | 21 | //config:config VI |
22 | //config: bool "vi (22 kb)" | 22 | //config: bool "vi (23 kb)" |
23 | //config: default y | 23 | //config: default y |
24 | //config: help | 24 | //config: help |
25 | //config: 'vi' is a text editor. More specifically, it is the One True | 25 | //config: 'vi' is a text editor. More specifically, it is the One True |
diff --git a/findutils/grep.c b/findutils/grep.c index 3e8ea9239..a4033a40b 100644 --- a/findutils/grep.c +++ b/findutils/grep.c | |||
@@ -18,19 +18,19 @@ | |||
18 | * (C) 2006 Jac Goudsmit added -o option | 18 | * (C) 2006 Jac Goudsmit added -o option |
19 | */ | 19 | */ |
20 | //config:config GREP | 20 | //config:config GREP |
21 | //config: bool "grep (8.5 kb)" | 21 | //config: bool "grep (8.6 kb)" |
22 | //config: default y | 22 | //config: default y |
23 | //config: help | 23 | //config: help |
24 | //config: grep is used to search files for a specified pattern. | 24 | //config: grep is used to search files for a specified pattern. |
25 | //config: | 25 | //config: |
26 | //config:config EGREP | 26 | //config:config EGREP |
27 | //config: bool "egrep (7.6 kb)" | 27 | //config: bool "egrep (7.8 kb)" |
28 | //config: default y | 28 | //config: default y |
29 | //config: help | 29 | //config: help |
30 | //config: Alias to "grep -E". | 30 | //config: Alias to "grep -E". |
31 | //config: | 31 | //config: |
32 | //config:config FGREP | 32 | //config:config FGREP |
33 | //config: bool "fgrep (7.6 kb)" | 33 | //config: bool "fgrep (7.8 kb)" |
34 | //config: default y | 34 | //config: default y |
35 | //config: help | 35 | //config: help |
36 | //config: Alias to "grep -F". | 36 | //config: Alias to "grep -F". |
diff --git a/findutils/xargs.c b/findutils/xargs.c index 0dedb6356..35a06f723 100644 --- a/findutils/xargs.c +++ b/findutils/xargs.c | |||
@@ -15,7 +15,7 @@ | |||
15 | * http://www.opengroup.org/onlinepubs/007904975/utilities/xargs.html | 15 | * http://www.opengroup.org/onlinepubs/007904975/utilities/xargs.html |
16 | */ | 16 | */ |
17 | //config:config XARGS | 17 | //config:config XARGS |
18 | //config: bool "xargs (6.7 kb)" | 18 | //config: bool "xargs (7.2 kb)" |
19 | //config: default y | 19 | //config: default y |
20 | //config: help | 20 | //config: help |
21 | //config: xargs is used to execute a specified command for | 21 | //config: xargs is used to execute a specified command for |
diff --git a/init/halt.c b/init/halt.c index e6dcb1c67..785c38130 100644 --- a/init/halt.c +++ b/init/halt.c | |||
@@ -7,19 +7,19 @@ | |||
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 HALT | 9 | //config:config HALT |
10 | //config: bool "halt (3.7 kb)" | 10 | //config: bool "halt (4 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: Stop all processes and halt the system. | 13 | //config: Stop all processes and halt the system. |
14 | //config: | 14 | //config: |
15 | //config:config POWEROFF | 15 | //config:config POWEROFF |
16 | //config: bool "poweroff (3.7 kb)" | 16 | //config: bool "poweroff (4 kb)" |
17 | //config: default y | 17 | //config: default y |
18 | //config: help | 18 | //config: help |
19 | //config: Stop all processes and power off the system. | 19 | //config: Stop all processes and power off the system. |
20 | //config: | 20 | //config: |
21 | //config:config REBOOT | 21 | //config:config REBOOT |
22 | //config: bool "reboot (3.7 kb)" | 22 | //config: bool "reboot (4 kb)" |
23 | //config: default y | 23 | //config: default y |
24 | //config: help | 24 | //config: help |
25 | //config: Stop all processes and reboot the system. | 25 | //config: Stop all processes and reboot the system. |
diff --git a/init/init.c b/init/init.c index fde35f6b6..87086b48b 100644 --- a/init/init.c +++ b/init/init.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 INIT | 11 | //config:config INIT |
12 | //config: bool "init (9.3 kb)" | 12 | //config: bool "init (10 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: select FEATURE_SYSLOG | 14 | //config: select FEATURE_SYSLOG |
15 | //config: help | 15 | //config: help |
diff --git a/klibc-utils/nuke.c b/klibc-utils/nuke.c index 60a5f7145..d7c16f5cf 100644 --- a/klibc-utils/nuke.c +++ b/klibc-utils/nuke.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 NUKE | 6 | //config:config NUKE |
7 | //config: bool "nuke (2.4 kb)" | 7 | //config: bool "nuke (2.9 kb)" |
8 | //config: default y | 8 | //config: default y |
9 | //config: help | 9 | //config: help |
10 | //config: Alias to "rm -rf". | 10 | //config: Alias to "rm -rf". |
diff --git a/klibc-utils/resume.c b/klibc-utils/resume.c index 3424f076b..2bf50f9b8 100644 --- a/klibc-utils/resume.c +++ b/klibc-utils/resume.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 RESUME | 6 | //config:config RESUME |
7 | //config: bool "resume (3.3 kb)" | 7 | //config: bool "resume (3.2 kb)" |
8 | //config: default y | 8 | //config: default y |
9 | //config: help | 9 | //config: help |
10 | //config: Resume from saved "suspend-to-disk" image | 10 | //config: Resume from saved "suspend-to-disk" image |
diff --git a/klibc-utils/run-init.c b/klibc-utils/run-init.c index 61c16fd0b..77fc0e60c 100644 --- a/klibc-utils/run-init.c +++ b/klibc-utils/run-init.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 RUN_INIT | 8 | //config:config RUN_INIT |
9 | //config: bool "run-init (7.5 kb)" | 9 | //config: bool "run-init (7.7 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: select PLATFORM_LINUX | 11 | //config: select PLATFORM_LINUX |
12 | //config: help | 12 | //config: help |
diff --git a/loginutils/add-remove-shell.c b/loginutils/add-remove-shell.c index 6d03de254..b09555aae 100644 --- a/loginutils/add-remove-shell.c +++ b/loginutils/add-remove-shell.c | |||
@@ -8,13 +8,13 @@ | |||
8 | * for details. | 8 | * for details. |
9 | */ | 9 | */ |
10 | //config:config ADD_SHELL | 10 | //config:config ADD_SHELL |
11 | //config: bool "add-shell (2.8 kb)" | 11 | //config: bool "add-shell (3.1 kb)" |
12 | //config: default y if DESKTOP | 12 | //config: default y if DESKTOP |
13 | //config: help | 13 | //config: help |
14 | //config: Add shells to /etc/shells. | 14 | //config: Add shells to /etc/shells. |
15 | //config: | 15 | //config: |
16 | //config:config REMOVE_SHELL | 16 | //config:config REMOVE_SHELL |
17 | //config: bool "remove-shell (2.7 kb)" | 17 | //config: bool "remove-shell (3 kb)" |
18 | //config: default y if DESKTOP | 18 | //config: default y if DESKTOP |
19 | //config: help | 19 | //config: help |
20 | //config: Remove shells from /etc/shells. | 20 | //config: Remove shells from /etc/shells. |
diff --git a/loginutils/addgroup.c b/loginutils/addgroup.c index 6839eafbd..baa961ff3 100644 --- a/loginutils/addgroup.c +++ b/loginutils/addgroup.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 ADDGROUP | 11 | //config:config ADDGROUP |
12 | //config: bool "addgroup (8.2 kb)" | 12 | //config: bool "addgroup (8.6 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: select LONG_OPTS | 14 | //config: select LONG_OPTS |
15 | //config: help | 15 | //config: help |
diff --git a/loginutils/deluser.c b/loginutils/deluser.c index 5ee22d4f1..d7e9327ba 100644 --- a/loginutils/deluser.c +++ b/loginutils/deluser.c | |||
@@ -9,13 +9,13 @@ | |||
9 | * Licensed under GPLv2, see file LICENSE in this source tree. | 9 | * Licensed under GPLv2, see file LICENSE in this source tree. |
10 | */ | 10 | */ |
11 | //config:config DELUSER | 11 | //config:config DELUSER |
12 | //config: bool "deluser (8.4 kb)" | 12 | //config: bool "deluser (9.1 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: help | 14 | //config: help |
15 | //config: Utility for deleting a user account. | 15 | //config: Utility for deleting a user account. |
16 | //config: | 16 | //config: |
17 | //config:config DELGROUP | 17 | //config:config DELGROUP |
18 | //config: bool "delgroup (5.6 kb)" | 18 | //config: bool "delgroup (6.4 kb)" |
19 | //config: default y | 19 | //config: default y |
20 | //config: help | 20 | //config: help |
21 | //config: Utility for deleting a group account. | 21 | //config: Utility for deleting a group account. |
diff --git a/mailutils/makemime.c b/mailutils/makemime.c index 7539d5134..53a1820f1 100644 --- a/mailutils/makemime.c +++ b/mailutils/makemime.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 MAKEMIME | 9 | //config:config MAKEMIME |
10 | //config: bool "makemime (5.9 kb)" | 10 | //config: bool "makemime (5.4 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: Create MIME-formatted messages. | 13 | //config: Create MIME-formatted messages. |
diff --git a/miscutils/adjtimex.c b/miscutils/adjtimex.c index c1718e909..8ca90d58a 100644 --- a/miscutils/adjtimex.c +++ b/miscutils/adjtimex.c | |||
@@ -11,7 +11,7 @@ | |||
11 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 11 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
12 | */ | 12 | */ |
13 | //config:config ADJTIMEX | 13 | //config:config ADJTIMEX |
14 | //config: bool "adjtimex (4.5 kb)" | 14 | //config: bool "adjtimex (4.7 kb)" |
15 | //config: default y | 15 | //config: default y |
16 | //config: select PLATFORM_LINUX | 16 | //config: select PLATFORM_LINUX |
17 | //config: help | 17 | //config: help |
diff --git a/miscutils/bc.c b/miscutils/bc.c index 537612d5e..7179811fe 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c | |||
@@ -5,7 +5,7 @@ | |||
5 | * Original code copyright (c) 2018 Gavin D. Howard and contributors. | 5 | * Original code copyright (c) 2018 Gavin D. Howard and contributors. |
6 | */ | 6 | */ |
7 | //config:config BC | 7 | //config:config BC |
8 | //config: bool "bc (45 kb; 49 kb when combined with dc)" | 8 | //config: bool "bc (45 kb)" |
9 | //config: default y | 9 | //config: default y |
10 | //config: help | 10 | //config: help |
11 | //config: bc is a command-line, arbitrary-precision calculator with a | 11 | //config: bc is a command-line, arbitrary-precision calculator with a |
@@ -41,7 +41,7 @@ | |||
41 | //config: j(n, x) Bessel function of integer order n of x | 41 | //config: j(n, x) Bessel function of integer order n of x |
42 | //config: | 42 | //config: |
43 | //config:config DC | 43 | //config:config DC |
44 | //config: bool "dc (38 kb; 49 kb when combined with bc)" | 44 | //config: bool "dc (36 kb)" |
45 | //config: default y | 45 | //config: default y |
46 | //config: help | 46 | //config: help |
47 | //config: dc is a reverse-polish notation command-line calculator which | 47 | //config: dc is a reverse-polish notation command-line calculator which |
diff --git a/miscutils/beep.c b/miscutils/beep.c index 0c8a8225e..92faa1cd5 100644 --- a/miscutils/beep.c +++ b/miscutils/beep.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 BEEP | 9 | //config:config BEEP |
10 | //config: bool "beep (3 kb)" | 10 | //config: bool "beep (2.4 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/miscutils/chat.c b/miscutils/chat.c index 2dfe52c4f..5183d1369 100644 --- a/miscutils/chat.c +++ b/miscutils/chat.c | |||
@@ -8,7 +8,7 @@ | |||
8 | * Licensed under GPLv2, see file LICENSE in this source tree. | 8 | * Licensed under GPLv2, see file LICENSE in this source tree. |
9 | */ | 9 | */ |
10 | //config:config CHAT | 10 | //config:config CHAT |
11 | //config: bool "chat (6.6 kb)" | 11 | //config: bool "chat (6.3 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: Simple chat utility. | 14 | //config: Simple chat utility. |
diff --git a/miscutils/crond.c b/miscutils/crond.c index f6580a9d4..2e36c406b 100644 --- a/miscutils/crond.c +++ b/miscutils/crond.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 CROND | 11 | //config:config CROND |
12 | //config: bool "crond (13 kb)" | 12 | //config: bool "crond (14 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: select FEATURE_SYSLOG | 14 | //config: select FEATURE_SYSLOG |
15 | //config: help | 15 | //config: help |
diff --git a/miscutils/crontab.c b/miscutils/crontab.c index 4787fa08f..96dc4741a 100644 --- a/miscutils/crontab.c +++ b/miscutils/crontab.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 CRONTAB | 12 | //config:config CRONTAB |
13 | //config: bool "crontab (9.7 kb)" | 13 | //config: bool "crontab (10 kb)" |
14 | //config: default y | 14 | //config: default y |
15 | //config: help | 15 | //config: help |
16 | //config: Crontab manipulates the crontab for a particular user. Only | 16 | //config: Crontab manipulates the crontab for a particular user. Only |
diff --git a/miscutils/fbsplash.c b/miscutils/fbsplash.c index bc3c61055..bba22d6d1 100644 --- a/miscutils/fbsplash.c +++ b/miscutils/fbsplash.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * "exit" (or just close fifo) - well you guessed it. | 21 | * "exit" (or just close fifo) - well you guessed it. |
22 | */ | 22 | */ |
23 | //config:config FBSPLASH | 23 | //config:config FBSPLASH |
24 | //config: bool "fbsplash (27 kb)" | 24 | //config: bool "fbsplash (26 kb)" |
25 | //config: default y | 25 | //config: default y |
26 | //config: select PLATFORM_LINUX | 26 | //config: select PLATFORM_LINUX |
27 | //config: help | 27 | //config: help |
diff --git a/miscutils/flash_eraseall.c b/miscutils/flash_eraseall.c index 8e93060ca..a3dabdadb 100644 --- a/miscutils/flash_eraseall.c +++ b/miscutils/flash_eraseall.c | |||
@@ -11,7 +11,7 @@ | |||
11 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 11 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
12 | */ | 12 | */ |
13 | //config:config FLASH_ERASEALL | 13 | //config:config FLASH_ERASEALL |
14 | //config: bool "flash_eraseall (5.5 kb)" | 14 | //config: bool "flash_eraseall (5.9 kb)" |
15 | //config: default n # doesn't build on Ubuntu 8.04 | 15 | //config: default n # doesn't build on Ubuntu 8.04 |
16 | //config: help | 16 | //config: help |
17 | //config: The flash_eraseall binary from mtd-utils as of git head c4c6a59eb. | 17 | //config: The flash_eraseall binary from mtd-utils as of git head c4c6a59eb. |
diff --git a/miscutils/flashcp.c b/miscutils/flashcp.c index 858cee194..1ca9d158d 100644 --- a/miscutils/flashcp.c +++ b/miscutils/flashcp.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 FLASHCP | 9 | //config:config FLASHCP |
10 | //config: bool "flashcp (5.4 kb)" | 10 | //config: bool "flashcp (5.3 kb)" |
11 | //config: default n # doesn't build on Ubuntu 8.04 | 11 | //config: default n # doesn't build on Ubuntu 8.04 |
12 | //config: help | 12 | //config: help |
13 | //config: The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7. | 13 | //config: The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7. |
diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c index 0bbe6ca10..342e240fa 100644 --- a/miscutils/hdparm.c +++ b/miscutils/hdparm.c | |||
@@ -12,7 +12,7 @@ | |||
12 | * - by Mark Lord (C) 1994-2002 -- freely distributable | 12 | * - by Mark Lord (C) 1994-2002 -- freely distributable |
13 | */ | 13 | */ |
14 | //config:config HDPARM | 14 | //config:config HDPARM |
15 | //config: bool "hdparm (23 kb)" | 15 | //config: bool "hdparm (25 kb)" |
16 | //config: default y | 16 | //config: default y |
17 | //config: select PLATFORM_LINUX | 17 | //config: select PLATFORM_LINUX |
18 | //config: help | 18 | //config: help |
diff --git a/miscutils/hexedit.c b/miscutils/hexedit.c index 298eb8149..5c2f4a555 100644 --- a/miscutils/hexedit.c +++ b/miscutils/hexedit.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 HEXEDIT | 6 | //config:config HEXEDIT |
7 | //config: bool "hexedit (20 kb)" | 7 | //config: bool "hexedit (21 kb)" |
8 | //config: default y | 8 | //config: default y |
9 | //config: help | 9 | //config: help |
10 | //config: Edit file in hexadecimal. | 10 | //config: Edit file in hexadecimal. |
diff --git a/miscutils/i2c_tools.c b/miscutils/i2c_tools.c index 6a2134063..610fed5d6 100644 --- a/miscutils/i2c_tools.c +++ b/miscutils/i2c_tools.c | |||
@@ -9,28 +9,28 @@ | |||
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 I2CGET | 11 | //config:config I2CGET |
12 | //config: bool "i2cget (5.6 kb)" | 12 | //config: bool "i2cget (5.5 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: select PLATFORM_LINUX | 14 | //config: select PLATFORM_LINUX |
15 | //config: help | 15 | //config: help |
16 | //config: Read from I2C/SMBus chip registers. | 16 | //config: Read from I2C/SMBus chip registers. |
17 | //config: | 17 | //config: |
18 | //config:config I2CSET | 18 | //config:config I2CSET |
19 | //config: bool "i2cset (6.9 kb)" | 19 | //config: bool "i2cset (6.7 kb)" |
20 | //config: default y | 20 | //config: default y |
21 | //config: select PLATFORM_LINUX | 21 | //config: select PLATFORM_LINUX |
22 | //config: help | 22 | //config: help |
23 | //config: Set I2C registers. | 23 | //config: Set I2C registers. |
24 | //config: | 24 | //config: |
25 | //config:config I2CDUMP | 25 | //config:config I2CDUMP |
26 | //config: bool "i2cdump (7.2 kb)" | 26 | //config: bool "i2cdump (7.1 kb)" |
27 | //config: default y | 27 | //config: default y |
28 | //config: select PLATFORM_LINUX | 28 | //config: select PLATFORM_LINUX |
29 | //config: help | 29 | //config: help |
30 | //config: Examine I2C registers. | 30 | //config: Examine I2C registers. |
31 | //config: | 31 | //config: |
32 | //config:config I2CDETECT | 32 | //config:config I2CDETECT |
33 | //config: bool "i2cdetect (7.2 kb)" | 33 | //config: bool "i2cdetect (7.1 kb)" |
34 | //config: default y | 34 | //config: default y |
35 | //config: select PLATFORM_LINUX | 35 | //config: select PLATFORM_LINUX |
36 | //config: help | 36 | //config: help |
diff --git a/miscutils/inotifyd.c b/miscutils/inotifyd.c index 0060797ed..ec0321941 100644 --- a/miscutils/inotifyd.c +++ b/miscutils/inotifyd.c | |||
@@ -27,7 +27,7 @@ | |||
27 | * See below for mask names explanation. | 27 | * See below for mask names explanation. |
28 | */ | 28 | */ |
29 | //config:config INOTIFYD | 29 | //config:config INOTIFYD |
30 | //config: bool "inotifyd (3.5 kb)" | 30 | //config: bool "inotifyd (3.6 kb)" |
31 | //config: default n # doesn't build on Knoppix 5 | 31 | //config: default n # doesn't build on Knoppix 5 |
32 | //config: help | 32 | //config: help |
33 | //config: Simple inotify daemon. Reports filesystem changes. Requires | 33 | //config: Simple inotify daemon. Reports filesystem changes. Requires |
diff --git a/miscutils/less.c b/miscutils/less.c index 938d9842f..223c2558d 100644 --- a/miscutils/less.c +++ b/miscutils/less.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * redirected input has been read from stdin | 20 | * redirected input has been read from stdin |
21 | */ | 21 | */ |
22 | //config:config LESS | 22 | //config:config LESS |
23 | //config: bool "less (15 kb)" | 23 | //config: bool "less (16 kb)" |
24 | //config: default y | 24 | //config: default y |
25 | //config: help | 25 | //config: help |
26 | //config: 'less' is a pager, meaning that it displays text files. It possesses | 26 | //config: 'less' is a pager, meaning that it displays text files. It possesses |
diff --git a/miscutils/lsscsi.c b/miscutils/lsscsi.c index 0aaa01ded..f737d33d9 100644 --- a/miscutils/lsscsi.c +++ b/miscutils/lsscsi.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 LSSCSI | 9 | //config:config LSSCSI |
10 | //config: bool "lsscsi (2.4 kb)" | 10 | //config: bool "lsscsi (2.5 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: #select PLATFORM_LINUX | 12 | //config: #select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c index 80975c652..93c550042 100644 --- a/miscutils/makedevs.c +++ b/miscutils/makedevs.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * known bugs: can't deal with alpha ranges | 7 | * known bugs: can't deal with alpha ranges |
8 | */ | 8 | */ |
9 | //config:config MAKEDEVS | 9 | //config:config MAKEDEVS |
10 | //config: bool "makedevs (9.3 kb)" | 10 | //config: bool "makedevs (9.2 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: 'makedevs' is a utility used to create a batch of devices with | 13 | //config: 'makedevs' is a utility used to create a batch of devices with |
diff --git a/miscutils/man.c b/miscutils/man.c index ba6bb4c01..01155c8f0 100644 --- a/miscutils/man.c +++ b/miscutils/man.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * Licensed under GPLv2, see file LICENSE in this source tree. | 3 | * Licensed under GPLv2, see file LICENSE in this source tree. |
4 | */ | 4 | */ |
5 | //config:config MAN | 5 | //config:config MAN |
6 | //config: bool "man (27 kb)" | 6 | //config: bool "man (26 kb)" |
7 | //config: default y | 7 | //config: default y |
8 | //config: help | 8 | //config: help |
9 | //config: Format and display manual pages. | 9 | //config: Format and display manual pages. |
diff --git a/miscutils/microcom.c b/miscutils/microcom.c index fa090057e..399d4cf7f 100644 --- a/miscutils/microcom.c +++ b/miscutils/microcom.c | |||
@@ -8,7 +8,7 @@ | |||
8 | * Licensed under GPLv2, see file LICENSE in this source tree. | 8 | * Licensed under GPLv2, see file LICENSE in this source tree. |
9 | */ | 9 | */ |
10 | //config:config MICROCOM | 10 | //config:config MICROCOM |
11 | //config: bool "microcom (5.6 kb)" | 11 | //config: bool "microcom (5.7 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: The poor man's minicom utility for chatting with serial port devices. | 14 | //config: The poor man's minicom utility for chatting with serial port devices. |
diff --git a/miscutils/mt.c b/miscutils/mt.c index fad656e95..9f1aecfca 100644 --- a/miscutils/mt.c +++ b/miscutils/mt.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 3 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
4 | */ | 4 | */ |
5 | //config:config MT | 5 | //config:config MT |
6 | //config: bool "mt (2.6 kb)" | 6 | //config: bool "mt (2.5 kb)" |
7 | //config: default y | 7 | //config: default y |
8 | //config: help | 8 | //config: help |
9 | //config: mt is used to control tape devices. You can use the mt utility | 9 | //config: mt is used to control tape devices. You can use the mt utility |
diff --git a/miscutils/nandwrite.c b/miscutils/nandwrite.c index 29c800612..09bcaaf63 100644 --- a/miscutils/nandwrite.c +++ b/miscutils/nandwrite.c | |||
@@ -8,14 +8,14 @@ | |||
8 | * TODO: add support for large (>4GB) MTD devices | 8 | * TODO: add support for large (>4GB) MTD devices |
9 | */ | 9 | */ |
10 | //config:config NANDWRITE | 10 | //config:config NANDWRITE |
11 | //config: bool "nandwrite (5.9 kb)" | 11 | //config: bool "nandwrite (4.8 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
15 | //config: Write to the specified MTD device, with bad blocks awareness | 15 | //config: Write to the specified MTD device, with bad blocks awareness |
16 | //config: | 16 | //config: |
17 | //config:config NANDDUMP | 17 | //config:config NANDDUMP |
18 | //config: bool "nanddump (6.3 kb)" | 18 | //config: bool "nanddump (5.2 kb)" |
19 | //config: default y | 19 | //config: default y |
20 | //config: select PLATFORM_LINUX | 20 | //config: select PLATFORM_LINUX |
21 | //config: help | 21 | //config: help |
diff --git a/miscutils/partprobe.c b/miscutils/partprobe.c index d1ae27348..0abed6ff1 100644 --- a/miscutils/partprobe.c +++ b/miscutils/partprobe.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 PARTPROBE | 7 | //config:config PARTPROBE |
8 | //config: bool "partprobe (3.6 kb)" | 8 | //config: bool "partprobe (3.5 kb)" |
9 | //config: default y | 9 | //config: default y |
10 | //config: select PLATFORM_LINUX | 10 | //config: select PLATFORM_LINUX |
11 | //config: help | 11 | //config: help |
diff --git a/miscutils/raidautorun.c b/miscutils/raidautorun.c index d315c2734..39816ab1f 100644 --- a/miscutils/raidautorun.c +++ b/miscutils/raidautorun.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 RAIDAUTORUN | 9 | //config:config RAIDAUTORUN |
10 | //config: bool "raidautorun (1.4 kb)" | 10 | //config: bool "raidautorun (1.3 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/miscutils/readahead.c b/miscutils/readahead.c index 972302a18..cc0ba5ba3 100644 --- a/miscutils/readahead.c +++ b/miscutils/readahead.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 READAHEAD | 12 | //config:config READAHEAD |
13 | //config: bool "readahead (2 kb)" | 13 | //config: bool "readahead (1.5 kb)" |
14 | //config: default y | 14 | //config: default y |
15 | //config: depends on LFS | 15 | //config: depends on LFS |
16 | //config: select PLATFORM_LINUX | 16 | //config: select PLATFORM_LINUX |
diff --git a/miscutils/rfkill.c b/miscutils/rfkill.c index ae38c182d..766bad8c7 100644 --- a/miscutils/rfkill.c +++ b/miscutils/rfkill.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 RFKILL | 9 | //config:config RFKILL |
10 | //config: bool "rfkill (5.3 kb)" | 10 | //config: bool "rfkill (4.4 kb)" |
11 | //config: default n # doesn't build on Ubuntu 9.04 | 11 | //config: default n # doesn't build on Ubuntu 9.04 |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/miscutils/runlevel.c b/miscutils/runlevel.c index 0b2098564..885b403db 100644 --- a/miscutils/runlevel.c +++ b/miscutils/runlevel.c | |||
@@ -12,7 +12,7 @@ | |||
12 | * initially busyboxified by Bernhard Reutner-Fischer | 12 | * initially busyboxified by Bernhard Reutner-Fischer |
13 | */ | 13 | */ |
14 | //config:config RUNLEVEL | 14 | //config:config RUNLEVEL |
15 | //config: bool "runlevel (518 bytes)" | 15 | //config: bool "runlevel (559 bytes)" |
16 | //config: default y | 16 | //config: default y |
17 | //config: depends on FEATURE_UTMP | 17 | //config: depends on FEATURE_UTMP |
18 | //config: help | 18 | //config: help |
diff --git a/miscutils/setfattr.c b/miscutils/setfattr.c index 12eebc56e..9792c2660 100644 --- a/miscutils/setfattr.c +++ b/miscutils/setfattr.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 SETFATTR | 8 | //config:config SETFATTR |
9 | //config: bool "setfattr (3.6 kb)" | 9 | //config: bool "setfattr (3.7 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: help | 11 | //config: help |
12 | //config: Set/delete extended attributes on files | 12 | //config: Set/delete extended attributes on files |
diff --git a/miscutils/setserial.c b/miscutils/setserial.c index fd88ed106..71b274568 100644 --- a/miscutils/setserial.c +++ b/miscutils/setserial.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 SETSERIAL | 10 | //config:config SETSERIAL |
11 | //config: bool "setserial (6.6 kb)" | 11 | //config: bool "setserial (6.9 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
diff --git a/miscutils/strings.c b/miscutils/strings.c index ccb05f6d4..51412f401 100644 --- a/miscutils/strings.c +++ b/miscutils/strings.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 STRINGS | 9 | //config:config STRINGS |
10 | //config: bool "strings (4.3 kb)" | 10 | //config: bool "strings (4.6 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: strings prints the printable character sequences for each file | 13 | //config: strings prints the printable character sequences for each file |
diff --git a/miscutils/time.c b/miscutils/time.c index 7d6a7a29f..064888ab8 100644 --- a/miscutils/time.c +++ b/miscutils/time.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * Heavily modified for busybox by Erik Andersen <andersen@codepoet.org> | 10 | * Heavily modified for busybox by Erik Andersen <andersen@codepoet.org> |
11 | */ | 11 | */ |
12 | //config:config TIME | 12 | //config:config TIME |
13 | //config: bool "time (7 kb)" | 13 | //config: bool "time (6.8 kb)" |
14 | //config: default y | 14 | //config: default y |
15 | //config: help | 15 | //config: help |
16 | //config: The time command runs the specified program with the given arguments. | 16 | //config: The time command runs the specified program with the given arguments. |
diff --git a/miscutils/ttysize.c b/miscutils/ttysize.c index 2c2d4ec33..d635b29ce 100644 --- a/miscutils/ttysize.c +++ b/miscutils/ttysize.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * Licensed under GPLv2, see file LICENSE in this source tree. | 10 | * Licensed under GPLv2, see file LICENSE in this source tree. |
11 | */ | 11 | */ |
12 | //config:config TTYSIZE | 12 | //config:config TTYSIZE |
13 | //config: bool "ttysize (372 bytes)" | 13 | //config: bool "ttysize (432 bytes)" |
14 | //config: default y | 14 | //config: default y |
15 | //config: help | 15 | //config: help |
16 | //config: A replacement for "stty size". Unlike stty, can report only width, | 16 | //config: A replacement for "stty size". Unlike stty, can report only width, |
diff --git a/miscutils/ubi_tools.c b/miscutils/ubi_tools.c index a947abab5..dc7af25a4 100644 --- a/miscutils/ubi_tools.c +++ b/miscutils/ubi_tools.c | |||
@@ -4,42 +4,42 @@ | |||
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 UBIATTACH | 6 | //config:config UBIATTACH |
7 | //config: bool "ubiattach (4.7 kb)" | 7 | //config: bool "ubiattach (4.2 kb)" |
8 | //config: default y | 8 | //config: default y |
9 | //config: select PLATFORM_LINUX | 9 | //config: select PLATFORM_LINUX |
10 | //config: help | 10 | //config: help |
11 | //config: Attach MTD device to an UBI device. | 11 | //config: Attach MTD device to an UBI device. |
12 | //config: | 12 | //config: |
13 | //config:config UBIDETACH | 13 | //config:config UBIDETACH |
14 | //config: bool "ubidetach (4.6 kb)" | 14 | //config: bool "ubidetach (4.1 kb)" |
15 | //config: default y | 15 | //config: default y |
16 | //config: select PLATFORM_LINUX | 16 | //config: select PLATFORM_LINUX |
17 | //config: help | 17 | //config: help |
18 | //config: Detach MTD device from an UBI device. | 18 | //config: Detach MTD device from an UBI device. |
19 | //config: | 19 | //config: |
20 | //config:config UBIMKVOL | 20 | //config:config UBIMKVOL |
21 | //config: bool "ubimkvol (5.8 kb)" | 21 | //config: bool "ubimkvol (5.3 kb)" |
22 | //config: default y | 22 | //config: default y |
23 | //config: select PLATFORM_LINUX | 23 | //config: select PLATFORM_LINUX |
24 | //config: help | 24 | //config: help |
25 | //config: Create a UBI volume. | 25 | //config: Create a UBI volume. |
26 | //config: | 26 | //config: |
27 | //config:config UBIRMVOL | 27 | //config:config UBIRMVOL |
28 | //config: bool "ubirmvol (5.2 kb)" | 28 | //config: bool "ubirmvol (4.9 kb)" |
29 | //config: default y | 29 | //config: default y |
30 | //config: select PLATFORM_LINUX | 30 | //config: select PLATFORM_LINUX |
31 | //config: help | 31 | //config: help |
32 | //config: Delete a UBI volume. | 32 | //config: Delete a UBI volume. |
33 | //config: | 33 | //config: |
34 | //config:config UBIRSVOL | 34 | //config:config UBIRSVOL |
35 | //config: bool "ubirsvol (4.6 kb)" | 35 | //config: bool "ubirsvol (4.2 kb)" |
36 | //config: default y | 36 | //config: default y |
37 | //config: select PLATFORM_LINUX | 37 | //config: select PLATFORM_LINUX |
38 | //config: help | 38 | //config: help |
39 | //config: Resize a UBI volume. | 39 | //config: Resize a UBI volume. |
40 | //config: | 40 | //config: |
41 | //config:config UBIUPDATEVOL | 41 | //config:config UBIUPDATEVOL |
42 | //config: bool "ubiupdatevol (5.6 kb)" | 42 | //config: bool "ubiupdatevol (5.2 kb)" |
43 | //config: default y | 43 | //config: default y |
44 | //config: select PLATFORM_LINUX | 44 | //config: select PLATFORM_LINUX |
45 | //config: help | 45 | //config: help |
diff --git a/miscutils/ubirename.c b/miscutils/ubirename.c index ecc8fe137..21bd10111 100644 --- a/miscutils/ubirename.c +++ b/miscutils/ubirename.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 UBIRENAME | 9 | //config:config UBIRENAME |
10 | //config: bool "ubirename (2.2 kb)" | 10 | //config: bool "ubirename (2.4 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/miscutils/volname.c b/miscutils/volname.c index 6e6bbaa44..027d01272 100644 --- a/miscutils/volname.c +++ b/miscutils/volname.c | |||
@@ -28,7 +28,7 @@ | |||
28 | * Matthew Stoltenberg <d3matt@gmail.com> | 28 | * Matthew Stoltenberg <d3matt@gmail.com> |
29 | */ | 29 | */ |
30 | //config:config VOLNAME | 30 | //config:config VOLNAME |
31 | //config: bool "volname (1.7 kb)" | 31 | //config: bool "volname (1.6 kb)" |
32 | //config: default y | 32 | //config: default y |
33 | //config: help | 33 | //config: help |
34 | //config: Prints a CD-ROM volume name. | 34 | //config: Prints a CD-ROM volume name. |
diff --git a/miscutils/watchdog.c b/miscutils/watchdog.c index 392d05646..1e9ecc5e8 100644 --- a/miscutils/watchdog.c +++ b/miscutils/watchdog.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 WATCHDOG | 11 | //config:config WATCHDOG |
12 | //config: bool "watchdog (5.1 kb)" | 12 | //config: bool "watchdog (5.3 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: select PLATFORM_LINUX | 14 | //config: select PLATFORM_LINUX |
15 | //config: help | 15 | //config: help |
diff --git a/modutils/depmod.c b/modutils/depmod.c index 004c67a11..b5244fc60 100644 --- a/modutils/depmod.c +++ b/modutils/depmod.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 DEPMOD | 10 | //config:config DEPMOD |
11 | //config: bool "depmod (26 kb)" | 11 | //config: bool "depmod (27 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
diff --git a/modutils/lsmod.c b/modutils/lsmod.c index 84860cd79..694205fda 100644 --- a/modutils/lsmod.c +++ b/modutils/lsmod.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 LSMOD | 10 | //config:config LSMOD |
11 | //config: bool "lsmod (4.3 kb)" | 11 | //config: bool "lsmod (1.9 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
diff --git a/modutils/modinfo.c b/modutils/modinfo.c index 3f91622a9..1e63f745f 100644 --- a/modutils/modinfo.c +++ b/modutils/modinfo.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 MODINFO | 8 | //config:config MODINFO |
9 | //config: bool "modinfo (25 kb)" | 9 | //config: bool "modinfo (24 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: select PLATFORM_LINUX | 11 | //config: select PLATFORM_LINUX |
12 | //config: help | 12 | //config: help |
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index 291e4cb90..0a372a049 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.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 MODPROBE | 10 | //config:config MODPROBE |
11 | //config: bool "modprobe (29 kb)" | 11 | //config: bool "modprobe (28 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
diff --git a/modutils/rmmod.c b/modutils/rmmod.c index df50e58af..a3548879c 100644 --- a/modutils/rmmod.c +++ b/modutils/rmmod.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 RMMOD | 10 | //config:config RMMOD |
11 | //config: bool "rmmod (3.6 kb)" | 11 | //config: bool "rmmod (3.3 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
diff --git a/networking/arp.c b/networking/arp.c index 177ab1571..71bfe3cbf 100644 --- a/networking/arp.c +++ b/networking/arp.c | |||
@@ -13,7 +13,7 @@ | |||
13 | * modified for getopt32 by Arne Bernin <arne [at] alamut.de> | 13 | * modified for getopt32 by Arne Bernin <arne [at] alamut.de> |
14 | */ | 14 | */ |
15 | //config:config ARP | 15 | //config:config ARP |
16 | //config: bool "arp (11 kb)" | 16 | //config: bool "arp (10 kb)" |
17 | //config: default y | 17 | //config: default y |
18 | //config: select PLATFORM_LINUX | 18 | //config: select PLATFORM_LINUX |
19 | //config: help | 19 | //config: help |
diff --git a/networking/arping.c b/networking/arping.c index 788fded3c..901578b68 100644 --- a/networking/arping.c +++ b/networking/arping.c | |||
@@ -6,7 +6,7 @@ | |||
6 | * Busybox port: Nick Fedchik <nick@fedchik.org.ua> | 6 | * Busybox port: Nick Fedchik <nick@fedchik.org.ua> |
7 | */ | 7 | */ |
8 | //config:config ARPING | 8 | //config:config ARPING |
9 | //config: bool "arping (9.3 kb)" | 9 | //config: bool "arping (9 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: select PLATFORM_LINUX | 11 | //config: select PLATFORM_LINUX |
12 | //config: help | 12 | //config: help |
diff --git a/networking/ether-wake.c b/networking/ether-wake.c index 6677f07d5..acaac16f8 100644 --- a/networking/ether-wake.c +++ b/networking/ether-wake.c | |||
@@ -64,7 +64,7 @@ | |||
64 | * filter. That configuration consumes more power. | 64 | * filter. That configuration consumes more power. |
65 | */ | 65 | */ |
66 | //config:config ETHER_WAKE | 66 | //config:config ETHER_WAKE |
67 | //config: bool "ether-wake (6.6 kb)" | 67 | //config: bool "ether-wake (4.9 kb)" |
68 | //config: default y | 68 | //config: default y |
69 | //config: select PLATFORM_LINUX | 69 | //config: select PLATFORM_LINUX |
70 | //config: help | 70 | //config: help |
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c index 2f2921366..cb6910fb0 100644 --- a/networking/ftpgetput.c +++ b/networking/ftpgetput.c | |||
@@ -13,13 +13,13 @@ | |||
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 FTPGET | 15 | //config:config FTPGET |
16 | //config: bool "ftpget (8 kb)" | 16 | //config: bool "ftpget (7.8 kb)" |
17 | //config: default y | 17 | //config: default y |
18 | //config: help | 18 | //config: help |
19 | //config: Retrieve a remote file via FTP. | 19 | //config: Retrieve a remote file via FTP. |
20 | //config: | 20 | //config: |
21 | //config:config FTPPUT | 21 | //config:config FTPPUT |
22 | //config: bool "ftpput (7.7 kb)" | 22 | //config: bool "ftpput (7.5 kb)" |
23 | //config: default y | 23 | //config: default y |
24 | //config: help | 24 | //config: help |
25 | //config: Store a remote file via FTP. | 25 | //config: Store a remote file via FTP. |
diff --git a/networking/hostname.c b/networking/hostname.c index 8e3238d99..248d8b65a 100644 --- a/networking/hostname.c +++ b/networking/hostname.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 HOSTNAME | 12 | //config:config HOSTNAME |
13 | //config: bool "hostname (5.6 kb)" | 13 | //config: bool "hostname (5.5 kb)" |
14 | //config: default y | 14 | //config: default y |
15 | //config: help | 15 | //config: help |
16 | //config: Show or set the system's host name. | 16 | //config: Show or set the system's host name. |
diff --git a/networking/ifplugd.c b/networking/ifplugd.c index 9a67d24d8..026ff1cc8 100644 --- a/networking/ifplugd.c +++ b/networking/ifplugd.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 IFPLUGD | 9 | //config:config IFPLUGD |
10 | //config: bool "ifplugd (9.9 kb)" | 10 | //config: bool "ifplugd (10 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/networking/ifupdown.c b/networking/ifupdown.c index 80fce87a6..8a6efc976 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c | |||
@@ -17,7 +17,7 @@ | |||
17 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 17 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
18 | */ | 18 | */ |
19 | //config:config IFUP | 19 | //config:config IFUP |
20 | //config: bool "ifup (17 kb)" | 20 | //config: bool "ifup (14 kb)" |
21 | //config: default y | 21 | //config: default y |
22 | //config: help | 22 | //config: help |
23 | //config: Activate the specified interfaces. This applet makes use | 23 | //config: Activate the specified interfaces. This applet makes use |
@@ -33,7 +33,7 @@ | |||
33 | //config: via busybox or via standalone utilities. | 33 | //config: via busybox or via standalone utilities. |
34 | //config: | 34 | //config: |
35 | //config:config IFDOWN | 35 | //config:config IFDOWN |
36 | //config: bool "ifdown (15 kb)" | 36 | //config: bool "ifdown (13 kb)" |
37 | //config: default y | 37 | //config: default y |
38 | //config: help | 38 | //config: help |
39 | //config: Deactivate the specified interfaces. | 39 | //config: Deactivate the specified interfaces. |
diff --git a/networking/ip.c b/networking/ip.c index 97d618cd9..034ee4fc8 100644 --- a/networking/ip.c +++ b/networking/ip.c | |||
@@ -9,7 +9,7 @@ | |||
9 | * Bernhard Reutner-Fischer rewrote to use index_in_substr_array | 9 | * Bernhard Reutner-Fischer rewrote to use index_in_substr_array |
10 | */ | 10 | */ |
11 | //config:config IP | 11 | //config:config IP |
12 | //config: bool "ip (34 kb)" | 12 | //config: bool "ip (35 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: select PLATFORM_LINUX | 14 | //config: select PLATFORM_LINUX |
15 | //config: help | 15 | //config: help |
@@ -28,7 +28,7 @@ | |||
28 | //config: Short form of "ip addr" | 28 | //config: Short form of "ip addr" |
29 | //config: | 29 | //config: |
30 | //config:config IPLINK | 30 | //config:config IPLINK |
31 | //config: bool "iplink (16 kb)" | 31 | //config: bool "iplink (17 kb)" |
32 | //config: default y | 32 | //config: default y |
33 | //config: select FEATURE_IP_LINK | 33 | //config: select FEATURE_IP_LINK |
34 | //config: select PLATFORM_LINUX | 34 | //config: select PLATFORM_LINUX |
diff --git a/networking/ipcalc.c b/networking/ipcalc.c index cdae8eea8..67f768836 100644 --- a/networking/ipcalc.c +++ b/networking/ipcalc.c | |||
@@ -12,7 +12,7 @@ | |||
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 IPCALC | 14 | //config:config IPCALC |
15 | //config: bool "ipcalc (4.3 kb)" | 15 | //config: bool "ipcalc (4.4 kb)" |
16 | //config: default y | 16 | //config: default y |
17 | //config: help | 17 | //config: help |
18 | //config: ipcalc takes an IP address and netmask and calculates the | 18 | //config: ipcalc takes an IP address and netmask and calculates the |
diff --git a/networking/isrv_identd.c b/networking/isrv_identd.c index 0c33dde4f..f564d604a 100644 --- a/networking/isrv_identd.c +++ b/networking/isrv_identd.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 FAKEIDENTD | 9 | //config:config FAKEIDENTD |
10 | //config: bool "fakeidentd (8.9 kb)" | 10 | //config: bool "fakeidentd (8.7 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select FEATURE_SYSLOG | 12 | //config: select FEATURE_SYSLOG |
13 | //config: help | 13 | //config: help |
diff --git a/networking/nbd-client.c b/networking/nbd-client.c index 1ce974db1..0dc8d0c43 100644 --- a/networking/nbd-client.c +++ b/networking/nbd-client.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 NBDCLIENT | 6 | //config:config NBDCLIENT |
7 | //config: bool "nbd-client (4.6 kb)" | 7 | //config: bool "nbd-client (6 kb)" |
8 | //config: default y | 8 | //config: default y |
9 | //config: help | 9 | //config: help |
10 | //config: Network block device client | 10 | //config: Network block device client |
diff --git a/networking/nslookup.c b/networking/nslookup.c index e153eb585..cd3c00003 100644 --- a/networking/nslookup.c +++ b/networking/nslookup.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | 2 | ||
3 | //config:config NSLOOKUP | 3 | //config:config NSLOOKUP |
4 | //config: bool "nslookup (4.5 kb)" | 4 | //config: bool "nslookup (9.7 kb)" |
5 | //config: default y | 5 | //config: default y |
6 | //config: help | 6 | //config: help |
7 | //config: nslookup is a tool to query Internet name servers. | 7 | //config: nslookup is a tool to query Internet name servers. |
diff --git a/networking/ntpd.c b/networking/ntpd.c index 041cac762..855815ece 100644 --- a/networking/ntpd.c +++ b/networking/ntpd.c | |||
@@ -41,7 +41,7 @@ | |||
41 | *********************************************************************** | 41 | *********************************************************************** |
42 | */ | 42 | */ |
43 | //config:config NTPD | 43 | //config:config NTPD |
44 | //config: bool "ntpd (17 kb)" | 44 | //config: bool "ntpd (22 kb)" |
45 | //config: default y | 45 | //config: default y |
46 | //config: select PLATFORM_LINUX | 46 | //config: select PLATFORM_LINUX |
47 | //config: help | 47 | //config: help |
diff --git a/networking/ping.c b/networking/ping.c index 570184fee..b534c74c7 100644 --- a/networking/ping.c +++ b/networking/ping.c | |||
@@ -25,7 +25,7 @@ | |||
25 | * The code was modified by Bart Visscher <magick@linux-fan.com> | 25 | * The code was modified by Bart Visscher <magick@linux-fan.com> |
26 | */ | 26 | */ |
27 | //config:config PING | 27 | //config:config PING |
28 | //config: bool "ping (9.5 kb)" | 28 | //config: bool "ping (10 kb)" |
29 | //config: default y | 29 | //config: default y |
30 | //config: select PLATFORM_LINUX | 30 | //config: select PLATFORM_LINUX |
31 | //config: help | 31 | //config: help |
@@ -33,7 +33,7 @@ | |||
33 | //config: elicit an ICMP ECHO_RESPONSE from a host or gateway. | 33 | //config: elicit an ICMP ECHO_RESPONSE from a host or gateway. |
34 | //config: | 34 | //config: |
35 | //config:config PING6 | 35 | //config:config PING6 |
36 | //config: bool "ping6 (10 kb)" | 36 | //config: bool "ping6 (11 kb)" |
37 | //config: default y | 37 | //config: default y |
38 | //config: depends on FEATURE_IPV6 | 38 | //config: depends on FEATURE_IPV6 |
39 | //config: help | 39 | //config: help |
diff --git a/networking/pscan.c b/networking/pscan.c index 95b0a937d..2715ef2df 100644 --- a/networking/pscan.c +++ b/networking/pscan.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 PSCAN | 8 | //config:config PSCAN |
9 | //config: bool "pscan (6.6 kb)" | 9 | //config: bool "pscan (6 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: help | 11 | //config: help |
12 | //config: Simple network port scanner. | 12 | //config: Simple network port scanner. |
diff --git a/networking/route.c b/networking/route.c index 8387ce1bb..ac1d94c28 100644 --- a/networking/route.c +++ b/networking/route.c | |||
@@ -25,7 +25,7 @@ | |||
25 | * remove ridiculous amounts of bloat. | 25 | * remove ridiculous amounts of bloat. |
26 | */ | 26 | */ |
27 | //config:config ROUTE | 27 | //config:config ROUTE |
28 | //config: bool "route (8.9 kb)" | 28 | //config: bool "route (8.7 kb)" |
29 | //config: default y | 29 | //config: default y |
30 | //config: select PLATFORM_LINUX | 30 | //config: select PLATFORM_LINUX |
31 | //config: help | 31 | //config: help |
diff --git a/networking/slattach.c b/networking/slattach.c index e0a388926..c6feca248 100644 --- a/networking/slattach.c +++ b/networking/slattach.c | |||
@@ -13,7 +13,7 @@ | |||
13 | * - The -F options allows disabling of RTS/CTS flow control. | 13 | * - The -F options allows disabling of RTS/CTS flow control. |
14 | */ | 14 | */ |
15 | //config:config SLATTACH | 15 | //config:config SLATTACH |
16 | //config: bool "slattach (6.1 kb)" | 16 | //config: bool "slattach (6.2 kb)" |
17 | //config: default y | 17 | //config: default y |
18 | //config: select PLATFORM_LINUX | 18 | //config: select PLATFORM_LINUX |
19 | //config: help | 19 | //config: help |
diff --git a/networking/ssl_client.c b/networking/ssl_client.c index 875352d18..397aad297 100644 --- a/networking/ssl_client.c +++ b/networking/ssl_client.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 SSL_CLIENT | 6 | //config:config SSL_CLIENT |
7 | //config: bool "ssl_client (23 kb)" | 7 | //config: bool "ssl_client (25 kb)" |
8 | //config: default y | 8 | //config: default y |
9 | //config: select TLS | 9 | //config: select TLS |
10 | //config: help | 10 | //config: help |
diff --git a/networking/tc.c b/networking/tc.c index 4fa3e47bf..3e9808328 100644 --- a/networking/tc.c +++ b/networking/tc.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * Bernhard Reutner-Fischer adjusted for busybox | 7 | * Bernhard Reutner-Fischer adjusted for busybox |
8 | */ | 8 | */ |
9 | //config:config TC | 9 | //config:config TC |
10 | //config: bool "tc (3.1 kb)" | 10 | //config: bool "tc (8.3 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: Show / manipulate traffic control settings | 13 | //config: Show / manipulate traffic control settings |
diff --git a/networking/tcpudp.c b/networking/tcpudp.c index c914221ae..a0af64981 100644 --- a/networking/tcpudp.c +++ b/networking/tcpudp.c | |||
@@ -29,7 +29,7 @@ | |||
29 | * - don't know how to retrieve ORIGDST for udp. | 29 | * - don't know how to retrieve ORIGDST for udp. |
30 | */ | 30 | */ |
31 | //config:config TCPSVD | 31 | //config:config TCPSVD |
32 | //config: bool "tcpsvd (13 kb)" | 32 | //config: bool "tcpsvd (14 kb)" |
33 | //config: default y | 33 | //config: default y |
34 | //config: help | 34 | //config: help |
35 | //config: tcpsvd listens on a TCP port and runs a program for each new | 35 | //config: tcpsvd listens on a TCP port and runs a program for each new |
diff --git a/networking/telnet.c b/networking/telnet.c index 1e6be85bd..7f65ff3e6 100644 --- a/networking/telnet.c +++ b/networking/telnet.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * by Fernando Silveira <swrh@gmx.net> | 20 | * by Fernando Silveira <swrh@gmx.net> |
21 | */ | 21 | */ |
22 | //config:config TELNET | 22 | //config:config TELNET |
23 | //config: bool "telnet (8.7 kb)" | 23 | //config: bool "telnet (8.8 kb)" |
24 | //config: default y | 24 | //config: default y |
25 | //config: help | 25 | //config: help |
26 | //config: Telnet is an interface to the TELNET protocol, but is also commonly | 26 | //config: Telnet is an interface to the TELNET protocol, but is also commonly |
diff --git a/networking/tftp.c b/networking/tftp.c index 4cd39186a..1828688d4 100644 --- a/networking/tftp.c +++ b/networking/tftp.c | |||
@@ -19,7 +19,7 @@ | |||
19 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 19 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
20 | */ | 20 | */ |
21 | //config:config TFTP | 21 | //config:config TFTP |
22 | //config: bool "tftp (12 kb)" | 22 | //config: bool "tftp (11 kb)" |
23 | //config: default y | 23 | //config: default y |
24 | //config: help | 24 | //config: help |
25 | //config: Trivial File Transfer Protocol client. TFTP is usually used | 25 | //config: Trivial File Transfer Protocol client. TFTP is usually used |
diff --git a/networking/traceroute.c b/networking/traceroute.c index a027b928a..bdf451186 100644 --- a/networking/traceroute.c +++ b/networking/traceroute.c | |||
@@ -217,7 +217,7 @@ | |||
217 | //config: Utility to trace the route of IP packets. | 217 | //config: Utility to trace the route of IP packets. |
218 | //config: | 218 | //config: |
219 | //config:config TRACEROUTE6 | 219 | //config:config TRACEROUTE6 |
220 | //config: bool "traceroute6 (12 kb)" | 220 | //config: bool "traceroute6 (13 kb)" |
221 | //config: default y | 221 | //config: default y |
222 | //config: depends on FEATURE_IPV6 | 222 | //config: depends on FEATURE_IPV6 |
223 | //config: help | 223 | //config: help |
diff --git a/networking/tunctl.c b/networking/tunctl.c index f2dc645a1..a0e3926e9 100644 --- a/networking/tunctl.c +++ b/networking/tunctl.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * Licensed under GPLv2, see file LICENSE in this source tree. | 10 | * Licensed under GPLv2, see file LICENSE in this source tree. |
11 | */ | 11 | */ |
12 | //config:config TUNCTL | 12 | //config:config TUNCTL |
13 | //config: bool "tunctl (6.4 kb)" | 13 | //config: bool "tunctl (6.2 kb)" |
14 | //config: default y | 14 | //config: default y |
15 | //config: select PLATFORM_LINUX | 15 | //config: select PLATFORM_LINUX |
16 | //config: help | 16 | //config: help |
diff --git a/networking/udhcp/d6_dhcpc.c b/networking/udhcp/d6_dhcpc.c index 3c6129249..38c91cbb4 100644 --- a/networking/udhcp/d6_dhcpc.c +++ b/networking/udhcp/d6_dhcpc.c | |||
@@ -9,7 +9,7 @@ | |||
9 | * Licensed under GPLv2, see file LICENSE in this source tree. | 9 | * Licensed under GPLv2, see file LICENSE in this source tree. |
10 | */ | 10 | */ |
11 | //config:config UDHCPC6 | 11 | //config:config UDHCPC6 |
12 | //config: bool "udhcpc6" | 12 | //config: bool "udhcpc6 (21 kb)" |
13 | //config: default n # not yet ready | 13 | //config: default n # not yet ready |
14 | //config: depends on FEATURE_IPV6 | 14 | //config: depends on FEATURE_IPV6 |
15 | //config: help | 15 | //config: help |
diff --git a/networking/vconfig.c b/networking/vconfig.c index 8548c8c3b..3cc5f2460 100644 --- a/networking/vconfig.c +++ b/networking/vconfig.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 VCONFIG | 9 | //config:config VCONFIG |
10 | //config: bool "vconfig (2.5 kb)" | 10 | //config: bool "vconfig (2.3 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/networking/wget.c b/networking/wget.c index 58a51d9ff..30683dfc0 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -9,7 +9,7 @@ | |||
9 | * Kuhn's copyrights are licensed GPLv2-or-later. File as a whole remains GPLv2. | 9 | * Kuhn's copyrights are licensed GPLv2-or-later. File as a whole remains GPLv2. |
10 | */ | 10 | */ |
11 | //config:config WGET | 11 | //config:config WGET |
12 | //config: bool "wget (35 kb)" | 12 | //config: bool "wget (38 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: help | 14 | //config: help |
15 | //config: wget is a utility for non-interactive download of files from HTTP | 15 | //config: wget is a utility for non-interactive download of files from HTTP |
diff --git a/networking/whois.c b/networking/whois.c index f3da32b4e..55e1de964 100644 --- a/networking/whois.c +++ b/networking/whois.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * Add proxy support | 10 | * Add proxy support |
11 | */ | 11 | */ |
12 | //config:config WHOIS | 12 | //config:config WHOIS |
13 | //config: bool "whois (6.6 kb)" | 13 | //config: bool "whois (6.3 kb)" |
14 | //config: default y | 14 | //config: default y |
15 | //config: help | 15 | //config: help |
16 | //config: whois is a client for the whois directory service | 16 | //config: whois is a client for the whois directory service |
diff --git a/networking/zcip.c b/networking/zcip.c index 94e49adcb..434762f12 100644 --- a/networking/zcip.c +++ b/networking/zcip.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * certainly be used. Its naming is built over multicast DNS. | 14 | * certainly be used. Its naming is built over multicast DNS. |
15 | */ | 15 | */ |
16 | //config:config ZCIP | 16 | //config:config ZCIP |
17 | //config: bool "zcip (7.8 kb)" | 17 | //config: bool "zcip (8.4 kb)" |
18 | //config: default y | 18 | //config: default y |
19 | //config: select PLATFORM_LINUX | 19 | //config: select PLATFORM_LINUX |
20 | //config: select FEATURE_SYSLOG | 20 | //config: select FEATURE_SYSLOG |
diff --git a/printutils/lpd.c b/printutils/lpd.c index 662d3a224..ce5944026 100644 --- a/printutils/lpd.c +++ b/printutils/lpd.c | |||
@@ -70,7 +70,7 @@ | |||
70 | * mv -f ./"$DATAFILE" save/ | 70 | * mv -f ./"$DATAFILE" save/ |
71 | */ | 71 | */ |
72 | //config:config LPD | 72 | //config:config LPD |
73 | //config: bool "lpd (5.3 kb)" | 73 | //config: bool "lpd (5.5 kb)" |
74 | //config: default y | 74 | //config: default y |
75 | //config: help | 75 | //config: help |
76 | //config: lpd is a print spooling daemon. | 76 | //config: lpd is a print spooling daemon. |
diff --git a/printutils/lpr.c b/printutils/lpr.c index 808ecb5dc..7acb6c357 100644 --- a/printutils/lpr.c +++ b/printutils/lpr.c | |||
@@ -12,13 +12,13 @@ | |||
12 | * See RFC 1179 for protocol description. | 12 | * See RFC 1179 for protocol description. |
13 | */ | 13 | */ |
14 | //config:config LPR | 14 | //config:config LPR |
15 | //config: bool "lpr (10 kb)" | 15 | //config: bool "lpr (9.9 kb)" |
16 | //config: default y | 16 | //config: default y |
17 | //config: help | 17 | //config: help |
18 | //config: lpr sends files (or standard input) to a print spooling daemon. | 18 | //config: lpr sends files (or standard input) to a print spooling daemon. |
19 | //config: | 19 | //config: |
20 | //config:config LPQ | 20 | //config:config LPQ |
21 | //config: bool "lpq (10 kb)" | 21 | //config: bool "lpq (9.9 kb)" |
22 | //config: default y | 22 | //config: default y |
23 | //config: help | 23 | //config: help |
24 | //config: lpq is a print spool queue examination and manipulation program. | 24 | //config: lpq is a print spool queue examination and manipulation program. |
diff --git a/procps/free.c b/procps/free.c index ee0cd981a..3acfc4072 100644 --- a/procps/free.c +++ b/procps/free.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 FREE | 9 | //config:config FREE |
10 | //config: bool "free (2.4 kb)" | 10 | //config: bool "free (3.1 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX #sysinfo() | 12 | //config: select PLATFORM_LINUX #sysinfo() |
13 | //config: help | 13 | //config: help |
diff --git a/procps/iostat.c b/procps/iostat.c index 8fb4594da..1c6fb87ba 100644 --- a/procps/iostat.c +++ b/procps/iostat.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 IOSTAT | 9 | //config:config IOSTAT |
10 | //config: bool "iostat (7.4 kb)" | 10 | //config: bool "iostat (7.6 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: Report CPU and I/O statistics | 13 | //config: Report CPU and I/O statistics |
diff --git a/procps/kill.c b/procps/kill.c index c95afb8b3..a30a79dd8 100644 --- a/procps/kill.c +++ b/procps/kill.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 KILL | 10 | //config:config KILL |
11 | //config: bool "kill (2.6 kb)" | 11 | //config: bool "kill (3.1 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: The command kill sends the specified signal to the specified | 14 | //config: The command kill sends the specified signal to the specified |
diff --git a/procps/lsof.c b/procps/lsof.c index 4917cf899..21ac85ed3 100644 --- a/procps/lsof.c +++ b/procps/lsof.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 LSOF | 9 | //config:config LSOF |
10 | //config: bool "lsof (3.6 kb)" | 10 | //config: bool "lsof (3.4 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: Show open files in the format of: | 13 | //config: Show open files in the format of: |
diff --git a/procps/mpstat.c b/procps/mpstat.c index ed678f456..4ea1b5d97 100644 --- a/procps/mpstat.c +++ b/procps/mpstat.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 MPSTAT | 9 | //config:config MPSTAT |
10 | //config: bool "mpstat (10 kb)" | 10 | //config: bool "mpstat (9.8 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: Per-processor statistics | 13 | //config: Per-processor statistics |
diff --git a/procps/nmeter.c b/procps/nmeter.c index 166c8ab18..a01d19a6a 100644 --- a/procps/nmeter.c +++ b/procps/nmeter.c | |||
@@ -6,7 +6,7 @@ | |||
6 | * Contact me: vda.linux@googlemail.com | 6 | * Contact me: vda.linux@googlemail.com |
7 | */ | 7 | */ |
8 | //config:config NMETER | 8 | //config:config NMETER |
9 | //config: bool "nmeter (10 kb)" | 9 | //config: bool "nmeter (11 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: help | 11 | //config: help |
12 | //config: Prints selected system stats continuously, one line per update. | 12 | //config: Prints selected system stats continuously, one line per update. |
diff --git a/procps/pgrep.c b/procps/pgrep.c index a16a6e959..495e0ef9d 100644 --- a/procps/pgrep.c +++ b/procps/pgrep.c | |||
@@ -7,13 +7,13 @@ | |||
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 PGREP | 9 | //config:config PGREP |
10 | //config: bool "pgrep (6.8 kb)" | 10 | //config: bool "pgrep (6.5 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: Look for processes by name. | 13 | //config: Look for processes by name. |
14 | //config: | 14 | //config: |
15 | //config:config PKILL | 15 | //config:config PKILL |
16 | //config: bool "pkill (7.6 kb)" | 16 | //config: bool "pkill (7.5 kb)" |
17 | //config: default y | 17 | //config: default y |
18 | //config: help | 18 | //config: help |
19 | //config: Send signals to processes by name. | 19 | //config: Send signals to processes by name. |
diff --git a/procps/pidof.c b/procps/pidof.c index 98d7949f8..5595e3421 100644 --- a/procps/pidof.c +++ b/procps/pidof.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 PIDOF | 9 | //config:config PIDOF |
10 | //config: bool "pidof (6.6 kb)" | 10 | //config: bool "pidof (6.3 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: Pidof finds the process id's (pids) of the named programs. It prints | 13 | //config: Pidof finds the process id's (pids) of the named programs. It prints |
diff --git a/procps/powertop.c b/procps/powertop.c index 004b4ce19..e70f5433b 100644 --- a/procps/powertop.c +++ b/procps/powertop.c | |||
@@ -9,7 +9,7 @@ | |||
9 | * Licensed under GPLv2, see file LICENSE in this source tree. | 9 | * Licensed under GPLv2, see file LICENSE in this source tree. |
10 | */ | 10 | */ |
11 | //config:config POWERTOP | 11 | //config:config POWERTOP |
12 | //config: bool "powertop (9.1 kb)" | 12 | //config: bool "powertop (9.6 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: help | 14 | //config: help |
15 | //config: Analyze power consumption on Intel-based laptops | 15 | //config: Analyze power consumption on Intel-based laptops |
diff --git a/procps/pstree.c b/procps/pstree.c index 4fda1c21c..1d124d2d2 100644 --- a/procps/pstree.c +++ b/procps/pstree.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * Licensed under GPLv2, see file LICENSE in this source tree. | 10 | * Licensed under GPLv2, see file LICENSE in this source tree. |
11 | */ | 11 | */ |
12 | //config:config PSTREE | 12 | //config:config PSTREE |
13 | //config: bool "pstree (9.4 kb)" | 13 | //config: bool "pstree (9.3 kb)" |
14 | //config: default y | 14 | //config: default y |
15 | //config: help | 15 | //config: help |
16 | //config: Display a tree of processes. | 16 | //config: Display a tree of processes. |
diff --git a/procps/pwdx.c b/procps/pwdx.c index 6009e2aa3..24ba25d90 100644 --- a/procps/pwdx.c +++ b/procps/pwdx.c | |||
@@ -8,7 +8,7 @@ | |||
8 | * Licensed under GPLv2, see file LICENSE in this source tree. | 8 | * Licensed under GPLv2, see file LICENSE in this source tree. |
9 | */ | 9 | */ |
10 | //config:config PWDX | 10 | //config:config PWDX |
11 | //config: bool "pwdx (3.5 kb)" | 11 | //config: bool "pwdx (3.7 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: Report current working directory of a process | 14 | //config: Report current working directory of a process |
diff --git a/procps/sysctl.c b/procps/sysctl.c index 827e09cce..5fa7646d1 100644 --- a/procps/sysctl.c +++ b/procps/sysctl.c | |||
@@ -11,7 +11,7 @@ | |||
11 | * v1.01.1 - busybox applet aware by <solar@gentoo.org> | 11 | * v1.01.1 - busybox applet aware by <solar@gentoo.org> |
12 | */ | 12 | */ |
13 | //config:config BB_SYSCTL | 13 | //config:config BB_SYSCTL |
14 | //config: bool "sysctl (6.9 kb)" | 14 | //config: bool "sysctl (7.4 kb)" |
15 | //config: default y | 15 | //config: default y |
16 | //config: help | 16 | //config: help |
17 | //config: Configure kernel parameters at runtime. | 17 | //config: Configure kernel parameters at runtime. |
diff --git a/procps/top.c b/procps/top.c index f016f5501..3db077060 100644 --- a/procps/top.c +++ b/procps/top.c | |||
@@ -50,7 +50,7 @@ | |||
50 | * chroot . ./top -bn1 >top1.out | 50 | * chroot . ./top -bn1 >top1.out |
51 | */ | 51 | */ |
52 | //config:config TOP | 52 | //config:config TOP |
53 | //config: bool "top (17 kb)" | 53 | //config: bool "top (18 kb)" |
54 | //config: default y | 54 | //config: default y |
55 | //config: help | 55 | //config: help |
56 | //config: The top program provides a dynamic real-time view of a running | 56 | //config: The top program provides a dynamic real-time view of a running |
diff --git a/procps/uptime.c b/procps/uptime.c index 3262f41b4..31581271f 100644 --- a/procps/uptime.c +++ b/procps/uptime.c | |||
@@ -12,7 +12,7 @@ | |||
12 | * Added FEATURE_UPTIME_UTMP_SUPPORT flag. | 12 | * Added FEATURE_UPTIME_UTMP_SUPPORT flag. |
13 | */ | 13 | */ |
14 | //config:config UPTIME | 14 | //config:config UPTIME |
15 | //config: bool "uptime (632 bytes)" | 15 | //config: bool "uptime (3.7 kb)" |
16 | //config: default y | 16 | //config: default y |
17 | //config: select PLATFORM_LINUX #sysinfo() | 17 | //config: select PLATFORM_LINUX #sysinfo() |
18 | //config: help | 18 | //config: help |
diff --git a/procps/watch.c b/procps/watch.c index 420e6d3d1..dbe427aad 100644 --- a/procps/watch.c +++ b/procps/watch.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 WATCH | 10 | //config:config WATCH |
11 | //config: bool "watch (4.1 kb)" | 11 | //config: bool "watch (4.4 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: watch is used to execute a program periodically, showing | 14 | //config: watch is used to execute a program periodically, showing |
diff --git a/runit/chpst.c b/runit/chpst.c index c2641ce8a..5e77245f6 100644 --- a/runit/chpst.c +++ b/runit/chpst.c | |||
@@ -28,20 +28,20 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
28 | /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */ | 28 | /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */ |
29 | 29 | ||
30 | //config:config CHPST | 30 | //config:config CHPST |
31 | //config: bool "chpst (8.7 kb)" | 31 | //config: bool "chpst (9 kb)" |
32 | //config: default y | 32 | //config: default y |
33 | //config: help | 33 | //config: help |
34 | //config: chpst changes the process state according to the given options, and | 34 | //config: chpst changes the process state according to the given options, and |
35 | //config: execs specified program. | 35 | //config: execs specified program. |
36 | //config: | 36 | //config: |
37 | //config:config SETUIDGID | 37 | //config:config SETUIDGID |
38 | //config: bool "setuidgid (4.2 kb)" | 38 | //config: bool "setuidgid (4 kb)" |
39 | //config: default y | 39 | //config: default y |
40 | //config: help | 40 | //config: help |
41 | //config: Sets soft resource limits as specified by options | 41 | //config: Sets soft resource limits as specified by options |
42 | //config: | 42 | //config: |
43 | //config:config ENVUIDGID | 43 | //config:config ENVUIDGID |
44 | //config: bool "envuidgid (3.6 kb)" | 44 | //config: bool "envuidgid (3.9 kb)" |
45 | //config: default y | 45 | //config: default y |
46 | //config: help | 46 | //config: help |
47 | //config: Sets $UID to account's uid and $GID to account's gid | 47 | //config: Sets $UID to account's uid and $GID to account's gid |
@@ -54,7 +54,7 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
54 | //config: in the given directory | 54 | //config: in the given directory |
55 | //config: | 55 | //config: |
56 | //config:config SOFTLIMIT | 56 | //config:config SOFTLIMIT |
57 | //config: bool "softlimit (4.3 kb)" | 57 | //config: bool "softlimit (4.5 kb)" |
58 | //config: default y | 58 | //config: default y |
59 | //config: help | 59 | //config: help |
60 | //config: Sets soft resource limits as specified by options | 60 | //config: Sets soft resource limits as specified by options |
diff --git a/runit/runsv.c b/runit/runsv.c index a67280b4b..ccc762d78 100644 --- a/runit/runsv.c +++ b/runit/runsv.c | |||
@@ -28,7 +28,7 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
28 | /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */ | 28 | /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */ |
29 | 29 | ||
30 | //config:config RUNSV | 30 | //config:config RUNSV |
31 | //config: bool "runsv (7.2 kb)" | 31 | //config: bool "runsv (7.8 kb)" |
32 | //config: default y | 32 | //config: default y |
33 | //config: help | 33 | //config: help |
34 | //config: runsv starts and monitors a service and optionally an appendant log | 34 | //config: runsv starts and monitors a service and optionally an appendant log |
diff --git a/runit/runsvdir.c b/runit/runsvdir.c index 11ab40abf..55dd47e0d 100644 --- a/runit/runsvdir.c +++ b/runit/runsvdir.c | |||
@@ -28,7 +28,7 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
28 | /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */ | 28 | /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */ |
29 | 29 | ||
30 | //config:config RUNSVDIR | 30 | //config:config RUNSVDIR |
31 | //config: bool "runsvdir (6 kb)" | 31 | //config: bool "runsvdir (6.3 kb)" |
32 | //config: default y | 32 | //config: default y |
33 | //config: help | 33 | //config: help |
34 | //config: runsvdir starts a runsv process for each subdirectory, or symlink to | 34 | //config: runsvdir starts a runsv process for each subdirectory, or symlink to |
diff --git a/runit/sv.c b/runit/sv.c index 8054daedf..5c249ff95 100644 --- a/runit/sv.c +++ b/runit/sv.c | |||
@@ -154,7 +154,7 @@ Exit Codes | |||
154 | /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */ | 154 | /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */ |
155 | 155 | ||
156 | //config:config SV | 156 | //config:config SV |
157 | //config: bool "sv (7.8 kb)" | 157 | //config: bool "sv (8.5 kb)" |
158 | //config: default y | 158 | //config: default y |
159 | //config: help | 159 | //config: help |
160 | //config: sv reports the current status and controls the state of services | 160 | //config: sv reports the current status and controls the state of services |
@@ -169,14 +169,14 @@ Exit Codes | |||
169 | //config: Defaults to "/var/service" | 169 | //config: Defaults to "/var/service" |
170 | //config: | 170 | //config: |
171 | //config:config SVC | 171 | //config:config SVC |
172 | //config: bool "svc (7.8 kb)" | 172 | //config: bool "svc (8.4 kb)" |
173 | //config: default y | 173 | //config: default y |
174 | //config: help | 174 | //config: help |
175 | //config: svc controls the state of services monitored by the runsv supervisor. | 175 | //config: svc controls the state of services monitored by the runsv supervisor. |
176 | //config: It is compatible with daemontools command with the same name. | 176 | //config: It is compatible with daemontools command with the same name. |
177 | //config: | 177 | //config: |
178 | //config:config SVOK | 178 | //config:config SVOK |
179 | //config: bool "svok" | 179 | //config: bool "svok (1.5 kb)" |
180 | //config: default y | 180 | //config: default y |
181 | //config: help | 181 | //config: help |
182 | //config: svok checks whether runsv supervisor is running. | 182 | //config: svok checks whether runsv supervisor is running. |
diff --git a/runit/svlogd.c b/runit/svlogd.c index b0690d794..c9e5346d1 100644 --- a/runit/svlogd.c +++ b/runit/svlogd.c | |||
@@ -124,7 +124,7 @@ log message, you can use a pattern like this instead | |||
124 | -*: *: pid * | 124 | -*: *: pid * |
125 | */ | 125 | */ |
126 | //config:config SVLOGD | 126 | //config:config SVLOGD |
127 | //config: bool "svlogd (15 kb)" | 127 | //config: bool "svlogd (16 kb)" |
128 | //config: default y | 128 | //config: default y |
129 | //config: help | 129 | //config: help |
130 | //config: svlogd continuously reads log data from its standard input, optionally | 130 | //config: svlogd continuously reads log data from its standard input, optionally |
diff --git a/shell/ash.c b/shell/ash.c index a01c8fa8b..a284b084d 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -16,7 +16,7 @@ | |||
16 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 16 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
17 | */ | 17 | */ |
18 | //config:config ASH | 18 | //config:config ASH |
19 | //config: bool "ash (77 kb)" | 19 | //config: bool "ash (78 kb)" |
20 | //config: default y | 20 | //config: default y |
21 | //config: depends on !NOMMU | 21 | //config: depends on !NOMMU |
22 | //config: help | 22 | //config: help |
diff --git a/shell/cttyhack.c b/shell/cttyhack.c index ec1b6c429..b9ee59bd0 100644 --- a/shell/cttyhack.c +++ b/shell/cttyhack.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 CTTYHACK | 7 | //config:config CTTYHACK |
8 | //config: bool "cttyhack (2.5 kb)" | 8 | //config: bool "cttyhack (2.4 kb)" |
9 | //config: default y | 9 | //config: default y |
10 | //config: help | 10 | //config: help |
11 | //config: One common problem reported on the mailing list is the "can't | 11 | //config: One common problem reported on the mailing list is the "can't |
diff --git a/shell/hush.c b/shell/hush.c index d80c717e7..920a85299 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -93,7 +93,7 @@ | |||
93 | * add =~ regex match operator: STR =~ REGEX | 93 | * add =~ regex match operator: STR =~ REGEX |
94 | */ | 94 | */ |
95 | //config:config HUSH | 95 | //config:config HUSH |
96 | //config: bool "hush (64 kb)" | 96 | //config: bool "hush (68 kb)" |
97 | //config: default y | 97 | //config: default y |
98 | //config: help | 98 | //config: help |
99 | //config: hush is a small shell. It handles the normal flow control | 99 | //config: hush is a small shell. It handles the normal flow control |
diff --git a/size_single_applets.sh b/size_single_applets.sh index ee16d4de7..f7f327b43 100755 --- a/size_single_applets.sh +++ b/size_single_applets.sh | |||
@@ -1,4 +1,12 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | # Which config to use when updating the sizes in "official" | ||
3 | # source tree? I am using x86 glibc toolchain of some typical distro, | ||
4 | # not-static build, 32-bit defconfig build: | ||
5 | # # CONFIG_STATIC is not set | ||
6 | # CONFIG_CROSS_COMPILER_PREFIX="" | ||
7 | # CONFIG_EXTRA_CFLAGS="-m32" | ||
8 | # CONFIG_EXTRA_LDFLAGS="-m32" | ||
9 | |||
2 | # The list of all applet config symbols | 10 | # The list of all applet config symbols |
3 | test -f include/applets.h || { echo "No include/applets.h file"; exit 1; } | 11 | test -f include/applets.h || { echo "No include/applets.h file"; exit 1; } |
4 | apps="` | 12 | apps="` |
diff --git a/sysklogd/klogd.c b/sysklogd/klogd.c index 25ddf3172..76eccf1da 100644 --- a/sysklogd/klogd.c +++ b/sysklogd/klogd.c | |||
@@ -17,7 +17,7 @@ | |||
17 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 17 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
18 | */ | 18 | */ |
19 | //config:config KLOGD | 19 | //config:config KLOGD |
20 | //config: bool "klogd (5.5 kb)" | 20 | //config: bool "klogd (5.7 kb)" |
21 | //config: default y | 21 | //config: default y |
22 | //config: help | 22 | //config: help |
23 | //config: klogd is a utility which intercepts and logs all | 23 | //config: klogd is a utility which intercepts and logs all |
diff --git a/sysklogd/logger.c b/sysklogd/logger.c index 1e0384c09..4d692d6fc 100644 --- a/sysklogd/logger.c +++ b/sysklogd/logger.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 LOGGER | 9 | //config:config LOGGER |
10 | //config: bool "logger (6.4 kb)" | 10 | //config: bool "logger (6.3 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select FEATURE_SYSLOG | 12 | //config: select FEATURE_SYSLOG |
13 | //config: help | 13 | //config: help |
diff --git a/sysklogd/logread.c b/sysklogd/logread.c index da552e087..ea41fc0c8 100644 --- a/sysklogd/logread.c +++ b/sysklogd/logread.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 LOGREAD | 11 | //config:config LOGREAD |
12 | //config: bool "logread (6 kb)" | 12 | //config: bool "logread (4.8 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //WRONG: it should be compilable without SYSLOG=y: | 14 | //WRONG: it should be compilable without SYSLOG=y: |
15 | //WRONG: depends on FEATURE_IPC_SYSLOG | 15 | //WRONG: depends on FEATURE_IPC_SYSLOG |
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index 5630d97fc..f12359476 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.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 SYSLOGD | 15 | //config:config SYSLOGD |
16 | //config: bool "syslogd (12 kb)" | 16 | //config: bool "syslogd (13 kb)" |
17 | //config: default y | 17 | //config: default y |
18 | //config: help | 18 | //config: help |
19 | //config: The syslogd utility is used to record logs of all the | 19 | //config: The syslogd utility is used to record logs of all the |
diff --git a/util-linux/acpid.c b/util-linux/acpid.c index 4f491fa14..7274b6866 100644 --- a/util-linux/acpid.c +++ b/util-linux/acpid.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 ACPID | 9 | //config:config ACPID |
10 | //config: bool "acpid (8.7 kb)" | 10 | //config: bool "acpid (9 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/util-linux/blkdiscard.c b/util-linux/blkdiscard.c index e4902e5b5..a77c7d057 100644 --- a/util-linux/blkdiscard.c +++ b/util-linux/blkdiscard.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 BLKDISCARD | 8 | //config:config BLKDISCARD |
9 | //config: bool "blkdiscard (5.3 kb)" | 9 | //config: bool "blkdiscard (4.3 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: select PLATFORM_LINUX | 11 | //config: select PLATFORM_LINUX |
12 | //config: help | 12 | //config: help |
diff --git a/util-linux/blkid.c b/util-linux/blkid.c index a56b69661..008ae5d9e 100644 --- a/util-linux/blkid.c +++ b/util-linux/blkid.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 BLKID | 9 | //config:config BLKID |
10 | //config: bool "blkid (11 kb)" | 10 | //config: bool "blkid (12 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: select VOLUMEID | 13 | //config: select VOLUMEID |
diff --git a/util-linux/blockdev.c b/util-linux/blockdev.c index e53ade995..5d8e465b4 100644 --- a/util-linux/blockdev.c +++ b/util-linux/blockdev.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 BLOCKDEV | 8 | //config:config BLOCKDEV |
9 | //config: bool "blockdev (2.4 kb)" | 9 | //config: bool "blockdev (2.3 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: help | 11 | //config: help |
12 | //config: Performs some ioctls with block devices. | 12 | //config: Performs some ioctls with block devices. |
diff --git a/util-linux/cal.c b/util-linux/cal.c index a4a20d5f0..006bc817b 100644 --- a/util-linux/cal.c +++ b/util-linux/cal.c | |||
@@ -11,7 +11,7 @@ | |||
11 | * Major size reduction... over 50% (>1.5k) on i386. | 11 | * Major size reduction... over 50% (>1.5k) on i386. |
12 | */ | 12 | */ |
13 | //config:config CAL | 13 | //config:config CAL |
14 | //config: bool "cal (6.5 kb)" | 14 | //config: bool "cal (5.8 kb)" |
15 | //config: default y | 15 | //config: default y |
16 | //config: help | 16 | //config: help |
17 | //config: cal is used to display a monthly calendar. | 17 | //config: cal is used to display a monthly calendar. |
diff --git a/util-linux/chrt.c b/util-linux/chrt.c index 45459d940..28e65457c 100644 --- a/util-linux/chrt.c +++ b/util-linux/chrt.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 CHRT | 8 | //config:config CHRT |
9 | //config: bool "chrt (4.4 kb)" | 9 | //config: bool "chrt (4.7 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: help | 11 | //config: help |
12 | //config: Manipulate real-time attributes of a process. | 12 | //config: Manipulate real-time attributes of a process. |
diff --git a/util-linux/dmesg.c b/util-linux/dmesg.c index 6da9d9f4e..b797c7b2a 100644 --- a/util-linux/dmesg.c +++ b/util-linux/dmesg.c | |||
@@ -9,7 +9,7 @@ | |||
9 | * Licensed under GPLv2, see file LICENSE in this source tree. | 9 | * Licensed under GPLv2, see file LICENSE in this source tree. |
10 | */ | 10 | */ |
11 | //config:config DMESG | 11 | //config:config DMESG |
12 | //config: bool "dmesg (3.5 kb)" | 12 | //config: bool "dmesg (3.7 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: select PLATFORM_LINUX | 14 | //config: select PLATFORM_LINUX |
15 | //config: help | 15 | //config: help |
diff --git a/util-linux/eject.c b/util-linux/eject.c index 6c30facd2..749e2c986 100644 --- a/util-linux/eject.c +++ b/util-linux/eject.c | |||
@@ -13,7 +13,7 @@ | |||
13 | * Most of the dirty work blatantly ripped off from cat.c =) | 13 | * Most of the dirty work blatantly ripped off from cat.c =) |
14 | */ | 14 | */ |
15 | //config:config EJECT | 15 | //config:config EJECT |
16 | //config: bool "eject (4.1 kb)" | 16 | //config: bool "eject (4 kb)" |
17 | //config: default y | 17 | //config: default y |
18 | //config: select PLATFORM_LINUX | 18 | //config: select PLATFORM_LINUX |
19 | //config: help | 19 | //config: help |
diff --git a/util-linux/fallocate.c b/util-linux/fallocate.c index 8542586dc..3935e7c9b 100644 --- a/util-linux/fallocate.c +++ b/util-linux/fallocate.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 FALLOCATE | 7 | //config:config FALLOCATE |
8 | //config: bool "fallocate (5 kb)" | 8 | //config: bool "fallocate (4.1 kb)" |
9 | //config: default y | 9 | //config: default y |
10 | //config: help | 10 | //config: help |
11 | //config: Preallocate space for files. | 11 | //config: Preallocate space for files. |
diff --git a/util-linux/fbset.c b/util-linux/fbset.c index 11cb20cb2..699a19372 100644 --- a/util-linux/fbset.c +++ b/util-linux/fbset.c | |||
@@ -12,7 +12,7 @@ | |||
12 | * Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) | 12 | * Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) |
13 | */ | 13 | */ |
14 | //config:config FBSET | 14 | //config:config FBSET |
15 | //config: bool "fbset (5.8 kb)" | 15 | //config: bool "fbset (5.9 kb)" |
16 | //config: default y | 16 | //config: default y |
17 | //config: select PLATFORM_LINUX | 17 | //config: select PLATFORM_LINUX |
18 | //config: help | 18 | //config: help |
diff --git a/util-linux/fdformat.c b/util-linux/fdformat.c index c72da8b89..ff3bc4870 100644 --- a/util-linux/fdformat.c +++ b/util-linux/fdformat.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 FDFORMAT | 8 | //config:config FDFORMAT |
9 | //config: bool "fdformat (4.5 kb)" | 9 | //config: bool "fdformat (4.4 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: select PLATFORM_LINUX | 11 | //config: select PLATFORM_LINUX |
12 | //config: help | 12 | //config: help |
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 288b9235f..58e93bb92 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.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 FDISK | 10 | //config:config FDISK |
11 | //config: bool "fdisk (41 kb)" | 11 | //config: bool "fdisk (37 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
diff --git a/util-linux/findfs.c b/util-linux/findfs.c index 1102eeff5..7ca9dc96b 100644 --- a/util-linux/findfs.c +++ b/util-linux/findfs.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 FINDFS | 10 | //config:config FINDFS |
11 | //config: bool "findfs (11 kb)" | 11 | //config: bool "findfs (12 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: select VOLUMEID | 14 | //config: select VOLUMEID |
diff --git a/util-linux/flock.c b/util-linux/flock.c index dd0bfd430..130627e93 100644 --- a/util-linux/flock.c +++ b/util-linux/flock.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * This is free software, licensed under the GNU General Public License v2. | 4 | * This is free software, licensed under the GNU General Public License v2. |
5 | */ | 5 | */ |
6 | //config:config FLOCK | 6 | //config:config FLOCK |
7 | //config: bool "flock (6.1 kb)" | 7 | //config: bool "flock (6.3 kb)" |
8 | //config: default y | 8 | //config: default y |
9 | //config: help | 9 | //config: help |
10 | //config: Manage locks from shell scripts | 10 | //config: Manage locks from shell scripts |
diff --git a/util-linux/freeramdisk.c b/util-linux/freeramdisk.c index 6752e49d8..d27113d97 100644 --- a/util-linux/freeramdisk.c +++ b/util-linux/freeramdisk.c | |||
@@ -9,7 +9,7 @@ | |||
9 | * Licensed under GPLv2, see file LICENSE in this source tree. | 9 | * Licensed under GPLv2, see file LICENSE in this source tree. |
10 | */ | 10 | */ |
11 | //config:config FDFLUSH | 11 | //config:config FDFLUSH |
12 | //config: bool "fdflush (1.4 kb)" | 12 | //config: bool "fdflush (1.3 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: select PLATFORM_LINUX | 14 | //config: select PLATFORM_LINUX |
15 | //config: help | 15 | //config: help |
@@ -22,7 +22,7 @@ | |||
22 | //config: leave this disabled. | 22 | //config: leave this disabled. |
23 | //config: | 23 | //config: |
24 | //config:config FREERAMDISK | 24 | //config:config FREERAMDISK |
25 | //config: bool "freeramdisk (1.4 kb)" | 25 | //config: bool "freeramdisk (1.3 kb)" |
26 | //config: default y | 26 | //config: default y |
27 | //config: select PLATFORM_LINUX | 27 | //config: select PLATFORM_LINUX |
28 | //config: help | 28 | //config: help |
diff --git a/util-linux/fsfreeze.c b/util-linux/fsfreeze.c index c485810aa..fb0b3c4bd 100644 --- a/util-linux/fsfreeze.c +++ b/util-linux/fsfreeze.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 FSFREEZE | 7 | //config:config FSFREEZE |
8 | //config: bool "fsfreeze (3.6 kb)" | 8 | //config: bool "fsfreeze (3.5 kb)" |
9 | //config: default y | 9 | //config: default y |
10 | //config: select PLATFORM_LINUX | 10 | //config: select PLATFORM_LINUX |
11 | //config: select LONG_OPTS | 11 | //config: select LONG_OPTS |
diff --git a/util-linux/fstrim.c b/util-linux/fstrim.c index 558a94a9e..48948e839 100644 --- a/util-linux/fstrim.c +++ b/util-linux/fstrim.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 FSTRIM | 10 | //config:config FSTRIM |
11 | //config: bool "fstrim (5.5 kb)" | 11 | //config: bool "fstrim (4.4 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
diff --git a/util-linux/getopt.c b/util-linux/getopt.c index 4431a7e74..1666d3d30 100644 --- a/util-linux/getopt.c +++ b/util-linux/getopt.c | |||
@@ -29,7 +29,7 @@ | |||
29 | * Replaced our_malloc with xmalloc and our_realloc with xrealloc | 29 | * Replaced our_malloc with xmalloc and our_realloc with xrealloc |
30 | */ | 30 | */ |
31 | //config:config GETOPT | 31 | //config:config GETOPT |
32 | //config: bool "getopt (5.6 kb)" | 32 | //config: bool "getopt (5.8 kb)" |
33 | //config: default y | 33 | //config: default y |
34 | //config: help | 34 | //config: help |
35 | //config: The getopt utility is used to break up (parse) options in command | 35 | //config: The getopt utility is used to break up (parse) options in command |
diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c index 719feaf4e..065b83980 100644 --- a/util-linux/hexdump.c +++ b/util-linux/hexdump.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 HEXDUMP | 11 | //config:config HEXDUMP |
12 | //config: bool "hexdump (8.8 kb)" | 12 | //config: bool "hexdump (8.6 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: help | 14 | //config: help |
15 | //config: The hexdump utility is used to display binary data in a readable | 15 | //config: The hexdump utility is used to display binary data in a readable |
@@ -26,7 +26,7 @@ | |||
26 | //config: aimed to be portable. | 26 | //config: aimed to be portable. |
27 | //config: | 27 | //config: |
28 | //config:config HD | 28 | //config:config HD |
29 | //config: bool "hd (8 kb)" | 29 | //config: bool "hd (7.8 kb)" |
30 | //config: default y | 30 | //config: default y |
31 | //config: help | 31 | //config: help |
32 | //config: hd is an alias to hexdump -C. | 32 | //config: hd is an alias to hexdump -C. |
diff --git a/util-linux/ionice.c b/util-linux/ionice.c index 5b9664d25..daf64d537 100644 --- a/util-linux/ionice.c +++ b/util-linux/ionice.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 IONICE | 9 | //config:config IONICE |
10 | //config: bool "ionice (3.6 kb)" | 10 | //config: bool "ionice (3.8 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/util-linux/ipcrm.c b/util-linux/ipcrm.c index a93ceee11..3d3ad0b56 100644 --- a/util-linux/ipcrm.c +++ b/util-linux/ipcrm.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 IPCRM | 10 | //config:config IPCRM |
11 | //config: bool "ipcrm (2.9 kb)" | 11 | //config: bool "ipcrm (3.2 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: The ipcrm utility allows the removal of System V interprocess | 14 | //config: The ipcrm utility allows the removal of System V interprocess |
diff --git a/util-linux/last.c b/util-linux/last.c index f5ee8e5f4..689aa7a34 100644 --- a/util-linux/last.c +++ b/util-linux/last.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 LAST | 9 | //config:config LAST |
10 | //config: bool "last (6.2 kb)" | 10 | //config: bool "last (6.1 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: depends on FEATURE_WTMP | 12 | //config: depends on FEATURE_WTMP |
13 | //config: help | 13 | //config: help |
diff --git a/util-linux/losetup.c b/util-linux/losetup.c index 6b171d710..bf480e9bf 100644 --- a/util-linux/losetup.c +++ b/util-linux/losetup.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 LOSETUP | 9 | //config:config LOSETUP |
10 | //config: bool "losetup (5.4 kb)" | 10 | //config: bool "losetup (5.5 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/util-linux/lspci.c b/util-linux/lspci.c index 0000fbfda..a6b4e850f 100644 --- a/util-linux/lspci.c +++ b/util-linux/lspci.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 LSPCI | 9 | //config:config LSPCI |
10 | //config: bool "lspci (5.7 kb)" | 10 | //config: bool "lspci (6.3 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: #select PLATFORM_LINUX | 12 | //config: #select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/util-linux/lsusb.c b/util-linux/lsusb.c index 33639413a..e27aa7f31 100644 --- a/util-linux/lsusb.c +++ b/util-linux/lsusb.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 LSUSB | 9 | //config:config LSUSB |
10 | //config: bool "lsusb (3.5 kb)" | 10 | //config: bool "lsusb (4.2 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: #select PLATFORM_LINUX | 12 | //config: #select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/util-linux/mdev.c b/util-linux/mdev.c index 5ad09e09a..63b55536a 100644 --- a/util-linux/mdev.c +++ b/util-linux/mdev.c | |||
@@ -8,7 +8,7 @@ | |||
8 | * Licensed under GPLv2, see file LICENSE in this source tree. | 8 | * Licensed under GPLv2, see file LICENSE in this source tree. |
9 | */ | 9 | */ |
10 | //config:config MDEV | 10 | //config:config MDEV |
11 | //config: bool "mdev (16 kb)" | 11 | //config: bool "mdev (17 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
diff --git a/util-linux/mesg.c b/util-linux/mesg.c index 35c4ec13d..c7b696853 100644 --- a/util-linux/mesg.c +++ b/util-linux/mesg.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 MESG | 9 | //config:config MESG |
10 | //config: bool "mesg (1.2 kb)" | 10 | //config: bool "mesg (1.4 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: Mesg controls access to your terminal by others. It is typically | 13 | //config: Mesg controls access to your terminal by others. It is typically |
diff --git a/util-linux/mkfs_ext2.c b/util-linux/mkfs_ext2.c index bda168f1e..845ba0a24 100644 --- a/util-linux/mkfs_ext2.c +++ b/util-linux/mkfs_ext2.c | |||
@@ -8,14 +8,14 @@ | |||
8 | * Licensed under GPLv2, see file LICENSE in this source tree. | 8 | * Licensed under GPLv2, see file LICENSE in this source tree. |
9 | */ | 9 | */ |
10 | //config:config MKE2FS | 10 | //config:config MKE2FS |
11 | //config: bool "mke2fs (9.7 kb)" | 11 | //config: bool "mke2fs (10 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
15 | //config: Utility to create EXT2 filesystems. | 15 | //config: Utility to create EXT2 filesystems. |
16 | //config: | 16 | //config: |
17 | //config:config MKFS_EXT2 | 17 | //config:config MKFS_EXT2 |
18 | //config: bool "mkfs.ext2 (9.8 kb)" | 18 | //config: bool "mkfs.ext2 (10 kb)" |
19 | //config: default y | 19 | //config: default y |
20 | //config: select PLATFORM_LINUX | 20 | //config: select PLATFORM_LINUX |
21 | //config: help | 21 | //config: help |
diff --git a/util-linux/mkfs_vfat.c b/util-linux/mkfs_vfat.c index 6a6dc652f..b760fb2aa 100644 --- a/util-linux/mkfs_vfat.c +++ b/util-linux/mkfs_vfat.c | |||
@@ -8,14 +8,14 @@ | |||
8 | * Licensed under GPLv2, see file LICENSE in this source tree. | 8 | * Licensed under GPLv2, see file LICENSE in this source tree. |
9 | */ | 9 | */ |
10 | //config:config MKDOSFS | 10 | //config:config MKDOSFS |
11 | //config: bool "mkdosfs (6.8 kb)" | 11 | //config: bool "mkdosfs (7.2 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
15 | //config: Utility to create FAT32 filesystems. | 15 | //config: Utility to create FAT32 filesystems. |
16 | //config: | 16 | //config: |
17 | //config:config MKFS_VFAT | 17 | //config:config MKFS_VFAT |
18 | //config: bool "mkfs.vfat (6.8 kb)" | 18 | //config: bool "mkfs.vfat (7.2 kb)" |
19 | //config: default y | 19 | //config: default y |
20 | //config: select PLATFORM_LINUX | 20 | //config: select PLATFORM_LINUX |
21 | //config: help | 21 | //config: help |
diff --git a/util-linux/mkswap.c b/util-linux/mkswap.c index 2eb16bd84..38413606d 100644 --- a/util-linux/mkswap.c +++ b/util-linux/mkswap.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 MKSWAP | 9 | //config:config MKSWAP |
10 | //config: bool "mkswap (5.8 kb)" | 10 | //config: bool "mkswap (6.3 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: The mkswap utility is used to configure a file or disk partition as | 13 | //config: The mkswap utility is used to configure a file or disk partition as |
diff --git a/util-linux/more.c b/util-linux/more.c index 926cf5f26..eea69da06 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 14 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
15 | */ | 15 | */ |
16 | //config:config MORE | 16 | //config:config MORE |
17 | //config: bool "more (6.7 kb)" | 17 | //config: bool "more (7 kb)" |
18 | //config: default y | 18 | //config: default y |
19 | //config: help | 19 | //config: help |
20 | //config: more is a simple utility which allows you to read text one screen | 20 | //config: more is a simple utility which allows you to read text one screen |
diff --git a/util-linux/mount.c b/util-linux/mount.c index fa2e7b114..526b4130c 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -18,7 +18,7 @@ | |||
18 | // | 18 | // |
19 | 19 | ||
20 | //config:config MOUNT | 20 | //config:config MOUNT |
21 | //config: bool "mount (30 kb)" | 21 | //config: bool "mount (23 kb)" |
22 | //config: default y | 22 | //config: default y |
23 | //config: select PLATFORM_LINUX | 23 | //config: select PLATFORM_LINUX |
24 | //config: help | 24 | //config: help |
diff --git a/util-linux/mountpoint.c b/util-linux/mountpoint.c index 6b21a5fb3..a44cf6013 100644 --- a/util-linux/mountpoint.c +++ b/util-linux/mountpoint.c | |||
@@ -9,7 +9,7 @@ | |||
9 | * Based on sysvinit's mountpoint | 9 | * Based on sysvinit's mountpoint |
10 | */ | 10 | */ |
11 | //config:config MOUNTPOINT | 11 | //config:config MOUNTPOINT |
12 | //config: bool "mountpoint (4.5 kb)" | 12 | //config: bool "mountpoint (4.9 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: help | 14 | //config: help |
15 | //config: mountpoint checks if the directory is a mountpoint. | 15 | //config: mountpoint checks if the directory is a mountpoint. |
diff --git a/util-linux/nsenter.c b/util-linux/nsenter.c index ae8103a52..4eeaa9f3e 100644 --- a/util-linux/nsenter.c +++ b/util-linux/nsenter.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 NSENTER | 9 | //config:config NSENTER |
10 | //config: bool "nsenter (8.6 kb)" | 10 | //config: bool "nsenter (6.5 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/util-linux/pivot_root.c b/util-linux/pivot_root.c index d6a26b912..41f29da32 100644 --- a/util-linux/pivot_root.c +++ b/util-linux/pivot_root.c | |||
@@ -9,7 +9,7 @@ | |||
9 | * Licensed under GPLv2, see file LICENSE in this source tree. | 9 | * Licensed under GPLv2, see file LICENSE in this source tree. |
10 | */ | 10 | */ |
11 | //config:config PIVOT_ROOT | 11 | //config:config PIVOT_ROOT |
12 | //config: bool "pivot_root (898 bytes)" | 12 | //config: bool "pivot_root (1.1 kb)" |
13 | //config: default y | 13 | //config: default y |
14 | //config: select PLATFORM_LINUX | 14 | //config: select PLATFORM_LINUX |
15 | //config: help | 15 | //config: help |
diff --git a/util-linux/rdate.c b/util-linux/rdate.c index 5ec795208..70f829e7f 100644 --- a/util-linux/rdate.c +++ b/util-linux/rdate.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 RDATE | 10 | //config:config RDATE |
11 | //config: bool "rdate (6 kb)" | 11 | //config: bool "rdate (5.6 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: The rdate utility allows you to synchronize the date and time of your | 14 | //config: The rdate utility allows you to synchronize the date and time of your |
diff --git a/util-linux/rdev.c b/util-linux/rdev.c index 97279ce61..d6b515ebc 100644 --- a/util-linux/rdev.c +++ b/util-linux/rdev.c | |||
@@ -8,7 +8,7 @@ | |||
8 | * Licensed under GPLv2, see file LICENSE in this source tree. | 8 | * Licensed under GPLv2, see file LICENSE in this source tree. |
9 | */ | 9 | */ |
10 | //config:config RDEV | 10 | //config:config RDEV |
11 | //config: bool "rdev (1.4 kb)" | 11 | //config: bool "rdev (1.8 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: Print the device node associated with the filesystem mounted at '/'. | 14 | //config: Print the device node associated with the filesystem mounted at '/'. |
diff --git a/util-linux/readprofile.c b/util-linux/readprofile.c index 219c0c18c..cab2c4319 100644 --- a/util-linux/readprofile.c +++ b/util-linux/readprofile.c | |||
@@ -32,7 +32,7 @@ | |||
32 | * Paul Mundt <lethal@linux-sh.org>. | 32 | * Paul Mundt <lethal@linux-sh.org>. |
33 | */ | 33 | */ |
34 | //config:config READPROFILE | 34 | //config:config READPROFILE |
35 | //config: bool "readprofile (7.2 kb)" | 35 | //config: bool "readprofile (7.1 kb)" |
36 | //config: default y | 36 | //config: default y |
37 | //config: #select PLATFORM_LINUX | 37 | //config: #select PLATFORM_LINUX |
38 | //config: help | 38 | //config: help |
diff --git a/util-linux/renice.c b/util-linux/renice.c index ee0fb3c8e..a318ffce0 100644 --- a/util-linux/renice.c +++ b/util-linux/renice.c | |||
@@ -18,7 +18,7 @@ | |||
18 | * following IDs (if any). Multiple switches are allowed. | 18 | * following IDs (if any). Multiple switches are allowed. |
19 | */ | 19 | */ |
20 | //config:config RENICE | 20 | //config:config RENICE |
21 | //config: bool "renice (3.8 kb)" | 21 | //config: bool "renice (4.2 kb)" |
22 | //config: default y | 22 | //config: default y |
23 | //config: help | 23 | //config: help |
24 | //config: Renice alters the scheduling priority of one or more running | 24 | //config: Renice alters the scheduling priority of one or more running |
diff --git a/util-linux/rev.c b/util-linux/rev.c index 2bef9b9be..ede4fbc9c 100644 --- a/util-linux/rev.c +++ b/util-linux/rev.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 REV | 8 | //config:config REV |
9 | //config: bool "rev (4.5 kb)" | 9 | //config: bool "rev (4.4 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: help | 11 | //config: help |
12 | //config: Reverse lines of a file or files. | 12 | //config: Reverse lines of a file or files. |
diff --git a/util-linux/rtcwake.c b/util-linux/rtcwake.c index 8ffa4f3a6..29c440b82 100644 --- a/util-linux/rtcwake.c +++ b/util-linux/rtcwake.c | |||
@@ -23,7 +23,7 @@ | |||
23 | * That flag should not be needed on systems with adjtime support. | 23 | * That flag should not be needed on systems with adjtime support. |
24 | */ | 24 | */ |
25 | //config:config RTCWAKE | 25 | //config:config RTCWAKE |
26 | //config: bool "rtcwake (6.4 kb)" | 26 | //config: bool "rtcwake (6.8 kb)" |
27 | //config: default y | 27 | //config: default y |
28 | //config: select PLATFORM_LINUX | 28 | //config: select PLATFORM_LINUX |
29 | //config: help | 29 | //config: help |
diff --git a/util-linux/script.c b/util-linux/script.c index aac77c3ba..4eac5e94f 100644 --- a/util-linux/script.c +++ b/util-linux/script.c | |||
@@ -11,7 +11,7 @@ | |||
11 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 11 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
12 | */ | 12 | */ |
13 | //config:config SCRIPT | 13 | //config:config SCRIPT |
14 | //config: bool "script (8 kb)" | 14 | //config: bool "script (8.6 kb)" |
15 | //config: default y | 15 | //config: default y |
16 | //config: help | 16 | //config: help |
17 | //config: The script makes typescript of terminal session. | 17 | //config: The script makes typescript of terminal session. |
diff --git a/util-linux/scriptreplay.c b/util-linux/scriptreplay.c index e3083ab93..3c032eec5 100644 --- a/util-linux/scriptreplay.c +++ b/util-linux/scriptreplay.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 SCRIPTREPLAY | 9 | //config:config SCRIPTREPLAY |
10 | //config: bool "scriptreplay (2.6 kb)" | 10 | //config: bool "scriptreplay (2.4 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: help | 12 | //config: help |
13 | //config: This program replays a typescript, using timing information | 13 | //config: This program replays a typescript, using timing information |
diff --git a/util-linux/setarch.c b/util-linux/setarch.c index 520865318..57051a683 100644 --- a/util-linux/setarch.c +++ b/util-linux/setarch.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 SETARCH | 9 | //config:config SETARCH |
10 | //config: bool "setarch (3.4 kb)" | 10 | //config: bool "setarch (3.6 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
@@ -17,14 +17,14 @@ | |||
17 | //config: (like amd64/x86, ppc64/ppc, sparc64/sparc, etc...). | 17 | //config: (like amd64/x86, ppc64/ppc, sparc64/sparc, etc...). |
18 | //config: | 18 | //config: |
19 | //config:config LINUX32 | 19 | //config:config LINUX32 |
20 | //config: bool "linux32 (3.2 kb)" | 20 | //config: bool "linux32 (3.3 kb)" |
21 | //config: default y | 21 | //config: default y |
22 | //config: select PLATFORM_LINUX | 22 | //config: select PLATFORM_LINUX |
23 | //config: help | 23 | //config: help |
24 | //config: Alias to "setarch linux32". | 24 | //config: Alias to "setarch linux32". |
25 | //config: | 25 | //config: |
26 | //config:config LINUX64 | 26 | //config:config LINUX64 |
27 | //config: bool "linux64 (3.2 kb)" | 27 | //config: bool "linux64 (3.3 kb)" |
28 | //config: default y | 28 | //config: default y |
29 | //config: select PLATFORM_LINUX | 29 | //config: select PLATFORM_LINUX |
30 | //config: help | 30 | //config: help |
diff --git a/util-linux/setpriv.c b/util-linux/setpriv.c index af079fae8..b69b8cbb6 100644 --- a/util-linux/setpriv.c +++ b/util-linux/setpriv.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 SETPRIV | 9 | //config:config SETPRIV |
10 | //config: bool "setpriv (3.4 kb)" | 10 | //config: bool "setpriv (6.6 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: select LONG_OPTS | 13 | //config: select LONG_OPTS |
diff --git a/util-linux/setsid.c b/util-linux/setsid.c index 8385a9115..cdad8c1d3 100644 --- a/util-linux/setsid.c +++ b/util-linux/setsid.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * - busyboxed | 14 | * - busyboxed |
15 | */ | 15 | */ |
16 | //config:config SETSID | 16 | //config:config SETSID |
17 | //config: bool "setsid (3.9 kb)" | 17 | //config: bool "setsid (3.6 kb)" |
18 | //config: default y | 18 | //config: default y |
19 | //config: help | 19 | //config: help |
20 | //config: setsid runs a program in a new session | 20 | //config: setsid runs a program in a new session |
diff --git a/util-linux/swaponoff.c b/util-linux/swaponoff.c index f432ce180..567869cc7 100644 --- a/util-linux/swaponoff.c +++ b/util-linux/swaponoff.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 SWAPON | 9 | //config:config SWAPON |
10 | //config: bool "swapon (4.9 kb)" | 10 | //config: bool "swapon (15 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
@@ -34,7 +34,7 @@ | |||
34 | //config: Enable support for setting swap device priority in swapon. | 34 | //config: Enable support for setting swap device priority in swapon. |
35 | //config: | 35 | //config: |
36 | //config:config SWAPOFF | 36 | //config:config SWAPOFF |
37 | //config: bool "swapoff (4.3 kb)" | 37 | //config: bool "swapoff (14 kb)" |
38 | //config: default y | 38 | //config: default y |
39 | //config: select PLATFORM_LINUX | 39 | //config: select PLATFORM_LINUX |
40 | //config: | 40 | //config: |
diff --git a/util-linux/switch_root.c b/util-linux/switch_root.c index 947dd0cdc..ae9d412d1 100644 --- a/util-linux/switch_root.c +++ b/util-linux/switch_root.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 SWITCH_ROOT | 9 | //config:config SWITCH_ROOT |
10 | //config: bool "switch_root (5.2 kb)" | 10 | //config: bool "switch_root (5.5 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: select PLATFORM_LINUX | 12 | //config: select PLATFORM_LINUX |
13 | //config: help | 13 | //config: help |
diff --git a/util-linux/taskset.c b/util-linux/taskset.c index 67df1cb73..ed8878ad4 100644 --- a/util-linux/taskset.c +++ b/util-linux/taskset.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 TASKSET | 8 | //config:config TASKSET |
9 | //config: bool "taskset (4.1 kb)" | 9 | //config: bool "taskset (4.2 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: help | 11 | //config: help |
12 | //config: Retrieve or set a processes's CPU affinity. | 12 | //config: Retrieve or set a processes's CPU affinity. |
diff --git a/util-linux/uevent.c b/util-linux/uevent.c index 7ff866cec..761743f45 100644 --- a/util-linux/uevent.c +++ b/util-linux/uevent.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 UEVENT | 6 | //config:config UEVENT |
7 | //config: bool "uevent (3.2 kb)" | 7 | //config: bool "uevent (3.1 kb)" |
8 | //config: default y | 8 | //config: default y |
9 | //config: select PLATFORM_LINUX | 9 | //config: select PLATFORM_LINUX |
10 | //config: help | 10 | //config: help |
diff --git a/util-linux/umount.c b/util-linux/umount.c index e2329f8b3..077b635c8 100644 --- a/util-linux/umount.c +++ b/util-linux/umount.c | |||
@@ -8,7 +8,7 @@ | |||
8 | * Licensed under GPLv2, see file LICENSE in this source tree. | 8 | * Licensed under GPLv2, see file LICENSE in this source tree. |
9 | */ | 9 | */ |
10 | //config:config UMOUNT | 10 | //config:config UMOUNT |
11 | //config: bool "umount (4.5 kb)" | 11 | //config: bool "umount (5.1 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
14 | //config: help | 14 | //config: help |
diff --git a/util-linux/unshare.c b/util-linux/unshare.c index fffee28a0..61fc71197 100644 --- a/util-linux/unshare.c +++ b/util-linux/unshare.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 UNSHARE | 9 | //config:config UNSHARE |
10 | //config: bool "unshare (9.2 kb)" | 10 | //config: bool "unshare (7.2 kb)" |
11 | //config: default y | 11 | //config: default y |
12 | //config: depends on !NOMMU | 12 | //config: depends on !NOMMU |
13 | //config: select PLATFORM_LINUX | 13 | //config: select PLATFORM_LINUX |
diff --git a/util-linux/wall.c b/util-linux/wall.c index 939736592..23fb87517 100644 --- a/util-linux/wall.c +++ b/util-linux/wall.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 WALL | 8 | //config:config WALL |
9 | //config: bool "wall (2.5 kb)" | 9 | //config: bool "wall (2.6 kb)" |
10 | //config: default y | 10 | //config: default y |
11 | //config: depends on FEATURE_UTMP | 11 | //config: depends on FEATURE_UTMP |
12 | //config: help | 12 | //config: help |