aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-12-28 17:45:35 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-12-28 17:52:43 +0100
commitb86b39bfda8fa050f406ae00119bf0557bb909c2 (patch)
tree861163f18bca85e8bcaf731cf6d9f0d91e13798d
parentcdadad58a1555b50fe8478291a0cd9ff23e2aadb (diff)
downloadbusybox-w32-b86b39bfda8fa050f406ae00119bf0557bb909c2.tar.gz
busybox-w32-b86b39bfda8fa050f406ae00119bf0557bb909c2.tar.bz2
busybox-w32-b86b39bfda8fa050f406ae00119bf0557bb909c2.zip
config: more tweaks
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--archival/dpkg_deb.c2
-rw-r--r--coreutils/du.c6
-rw-r--r--coreutils/echo.c4
-rw-r--r--init/bootchartd.c2
-rw-r--r--miscutils/runlevel.c2
-rw-r--r--networking/tftp.c3
6 files changed, 7 insertions, 12 deletions
diff --git a/archival/dpkg_deb.c b/archival/dpkg_deb.c
index dc4738d28..892cb3b8f 100644
--- a/archival/dpkg_deb.c
+++ b/archival/dpkg_deb.c
@@ -5,7 +5,7 @@
5 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 5 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
6 */ 6 */
7//config:config DPKG_DEB 7//config:config DPKG_DEB
8//config: bool "dpkg_deb" 8//config: bool "dpkg_deb (30 kb)"
9//config: default y 9//config: default y
10//config: select FEATURE_SEAMLESS_GZ 10//config: select FEATURE_SEAMLESS_GZ
11//config: help 11//config: help
diff --git a/coreutils/du.c b/coreutils/du.c
index d5ce46cf2..6d737fbfb 100644
--- a/coreutils/du.c
+++ b/coreutils/du.c
@@ -19,18 +19,16 @@
19 * 4) Fixed busybox bug #1284 involving long overflow with human_readable. 19 * 4) Fixed busybox bug #1284 involving long overflow with human_readable.
20 */ 20 */
21//config:config DU 21//config:config DU
22//config: bool "du (default blocksize of 512 bytes)" 22//config: bool "du (6.3 kb)"
23//config: default y 23//config: default y
24//config: help 24//config: help
25//config: du is used to report the amount of disk space used 25//config: du is used to report the amount of disk space used
26//config: for specified files. 26//config: for specified files.
27//config: 27//config:
28//config:config FEATURE_DU_DEFAULT_BLOCKSIZE_1K 28//config:config FEATURE_DU_DEFAULT_BLOCKSIZE_1K
29//config: bool "Use a default blocksize of 1024 bytes (1K)" 29//config: bool "Use default blocksize of 1024 bytes (else it's 512 bytes)"
30//config: default y 30//config: default y
31//config: depends on DU 31//config: depends on DU
32//config: help
33//config: Use a blocksize of (1K) instead of the default 512b.
34 32
35//applet:IF_DU(APPLET(du, BB_DIR_USR_BIN, BB_SUID_DROP)) 33//applet:IF_DU(APPLET(du, BB_DIR_USR_BIN, BB_SUID_DROP))
36 34
diff --git a/coreutils/echo.c b/coreutils/echo.c
index e45b90940..5dc5be072 100644
--- a/coreutils/echo.c
+++ b/coreutils/echo.c
@@ -19,10 +19,10 @@
19 * The previous version did not allow 4-digit octals. 19 * The previous version did not allow 4-digit octals.
20 */ 20 */
21//config:config ECHO 21//config:config ECHO
22//config: bool "echo (basic SuSv3 version taking no options)" 22//config: bool "echo (1.8 kb)"
23//config: default y 23//config: default y
24//config: help 24//config: help
25//config: echo is used to print a specified string to stdout. 25//config: echo prints a specified string to stdout.
26//config: 26//config:
27//config:# this entry also appears in shell/Config.in, next to the echo builtin 27//config:# this entry also appears in shell/Config.in, next to the echo builtin
28//config:config FEATURE_FANCY_ECHO 28//config:config FEATURE_FANCY_ECHO
diff --git a/init/bootchartd.c b/init/bootchartd.c
index 373cde2d8..4377d90e3 100644
--- a/init/bootchartd.c
+++ b/init/bootchartd.c
@@ -23,7 +23,7 @@
23//config: help 23//config: help
24//config: Create extended header file compatible with "big" bootchartd. 24//config: Create extended header file compatible with "big" bootchartd.
25//config: "Big" bootchartd is a shell script and it dumps some 25//config: "Big" bootchartd is a shell script and it dumps some
26//config: "convenient" info int the header, such as: 26//config: "convenient" info into the header, such as:
27//config: title = Boot chart for `hostname` (`date`) 27//config: title = Boot chart for `hostname` (`date`)
28//config: system.uname = `uname -srvm` 28//config: system.uname = `uname -srvm`
29//config: system.release = `cat /etc/DISTRO-release` 29//config: system.release = `cat /etc/DISTRO-release`
diff --git a/miscutils/runlevel.c b/miscutils/runlevel.c
index 885b403db..2f1581ead 100644
--- a/miscutils/runlevel.c
+++ b/miscutils/runlevel.c
@@ -16,7 +16,7 @@
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
19//config: find the current and previous system runlevel. 19//config: Find the current and previous system runlevel.
20//config: 20//config:
21//config: This applet uses utmp but does not rely on busybox supporing 21//config: This applet uses utmp but does not rely on busybox supporing
22//config: utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc. 22//config: utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc.
diff --git a/networking/tftp.c b/networking/tftp.c
index 1828688d4..d20d4ca4b 100644
--- a/networking/tftp.c
+++ b/networking/tftp.c
@@ -41,9 +41,6 @@
41//config: In other words: it should be run from inetd in nowait mode, 41//config: In other words: it should be run from inetd in nowait mode,
42//config: or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR" 42//config: or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR"
43//config: 43//config:
44//config:comment "Common options for tftp/tftpd"
45//config: depends on TFTP || TFTPD
46//config:
47//config:config FEATURE_TFTP_GET 44//config:config FEATURE_TFTP_GET
48//config: bool "Enable 'tftp get' and/or tftpd upload code" 45//config: bool "Enable 'tftp get' and/or tftpd upload code"
49//config: default y 46//config: default y