config: deindent all help texts
Those two spaces after tab have no effect, and always a nuisance when editing. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
75d151e31d
commit
72089cf6b4
50
Config.in
50
Config.in
@ -228,7 +228,7 @@ config FEATURE_SUID_CONFIG
|
||||
|
||||
s: USER or GROUP is allowed to execute APPLET.
|
||||
APPLET will run under USER or GROUP
|
||||
(reagardless of who's running it).
|
||||
(regardless of who's running it).
|
||||
S: USER or GROUP is NOT allowed to execute APPLET.
|
||||
APPLET will run under USER or GROUP.
|
||||
This option is not very sensical.
|
||||
@ -238,16 +238,16 @@ config FEATURE_SUID_CONFIG
|
||||
|
||||
An example might help:
|
||||
|
||||
[SUID]
|
||||
su = ssx root.0 # applet su can be run by anyone and runs with
|
||||
# euid=0,egid=0
|
||||
su = ssx # exactly the same
|
||||
|
||||
mount = sx- root.disk # applet mount can be run by root and members
|
||||
# of group disk (but not anyone else)
|
||||
# and runs with euid=0 (egid is not changed)
|
||||
|
||||
cp = --- # disable applet cp for everyone
|
||||
|[SUID]
|
||||
|su = ssx root.0 # applet su can be run by anyone and runs with
|
||||
| # euid=0,egid=0
|
||||
|su = ssx # exactly the same
|
||||
|
|
||||
|mount = sx- root.disk # applet mount can be run by root and members
|
||||
| # of group disk (but not anyone else)
|
||||
| # and runs with euid=0 (egid is not changed)
|
||||
|
|
||||
|cp = --- # disable applet cp for everyone
|
||||
|
||||
The file has to be owned by user root, group root and has to be
|
||||
writeable only by root:
|
||||
@ -330,26 +330,26 @@ config FEATURE_SYSLOG
|
||||
bool #No description makes it a hidden option
|
||||
default n
|
||||
#help
|
||||
# This option is auto-selected when you select any applet which may
|
||||
# send its output to syslog. You do not need to select it manually.
|
||||
#This option is auto-selected when you select any applet which may
|
||||
#send its output to syslog. You do not need to select it manually.
|
||||
|
||||
config FEATURE_HAVE_RPC
|
||||
bool #No description makes it a hidden option
|
||||
default n
|
||||
#help
|
||||
# This is automatically selected if any of enabled applets need it.
|
||||
# You do not need to select it manually.
|
||||
#This is automatically selected if any of enabled applets need it.
|
||||
#You do not need to select it manually.
|
||||
|
||||
config PLATFORM_LINUX
|
||||
bool #No description makes it a hidden option
|
||||
default n
|
||||
#help
|
||||
# For the most part, busybox requires only POSIX compatibility
|
||||
# from the target system, but some applets and features use
|
||||
# Linux-specific interfaces.
|
||||
#For the most part, busybox requires only POSIX compatibility
|
||||
#from the target system, but some applets and features use
|
||||
#Linux-specific interfaces.
|
||||
#
|
||||
# This is automatically selected if any applet or feature requires
|
||||
# Linux-specific interfaces. You do not need to select it manually.
|
||||
#This is automatically selected if any applet or feature requires
|
||||
#Linux-specific interfaces. You do not need to select it manually.
|
||||
|
||||
comment 'Build Options'
|
||||
|
||||
@ -401,11 +401,11 @@ config BUILD_LIBBUSYBOX
|
||||
|
||||
This feature allows every applet to be built as a really tiny
|
||||
separate executable linked against the library:
|
||||
$ size 0_lib/l*
|
||||
text data bss dec hex filename
|
||||
939 212 28 1179 49b 0_lib/last
|
||||
939 212 28 1179 49b 0_lib/less
|
||||
919138 8328 1556 929022 e2cfe 0_lib/libbusybox.so.1.N.M
|
||||
|$ size 0_lib/l*
|
||||
| text data bss dec hex filename
|
||||
| 939 212 28 1179 49b 0_lib/last
|
||||
| 939 212 28 1179 49b 0_lib/less
|
||||
| 919138 8328 1556 929022 e2cfe 0_lib/libbusybox.so.1.N.M
|
||||
|
||||
This is useful on NOMMU systems which are not capable
|
||||
of sharing executables, but are capable of sharing code
|
||||
|
@ -31,7 +31,7 @@
|
||||
//config: depends on TAIL
|
||||
//config: help
|
||||
//config: These options are provided by GNU tail, but
|
||||
//config: are not specific in the SUSv3 standard:
|
||||
//config: are not specified in the SUSv3 standard:
|
||||
//config: -q Never output headers giving file names
|
||||
//config: -s SEC Wait SEC seconds between reads with -f
|
||||
//config: -v Always output headers giving file names
|
||||
|
@ -21,7 +21,7 @@
|
||||
//config: default y
|
||||
//config: depends on FEATURE_UTMP
|
||||
//config: help
|
||||
//config: who is used to show who is logged on.
|
||||
//config: Print users currently logged on.
|
||||
//config:
|
||||
// procps-ng has this variation of "who":
|
||||
//config:config W
|
||||
@ -29,7 +29,7 @@
|
||||
//config: default y
|
||||
//config: depends on FEATURE_UTMP
|
||||
//config: help
|
||||
//config: w is used to show who is logged on.
|
||||
//config: Print users currently logged on.
|
||||
//config:
|
||||
//config:config USERS
|
||||
//config: bool "users (3.2 kb)"
|
||||
|
@ -31,7 +31,7 @@
|
||||
//config: * command line option -e AWK_PROGRAM
|
||||
//config: * simultaneous use of -f and -e on the command line.
|
||||
//config: This enables the use of awk library files.
|
||||
//config: Ex: awk -f mylib.awk -e '{print myfunction($1);}' ...
|
||||
//config: Example: awk -f mylib.awk -e '{print myfunction($1);}' ...
|
||||
|
||||
//applet:IF_AWK(APPLET_NOEXEC(awk, awk, BB_DIR_USR_BIN, BB_SUID_DROP, awk))
|
||||
|
||||
|
@ -46,7 +46,7 @@ config MD5_SMALL
|
||||
Trade binary size versus speed for the md5sum algorithm.
|
||||
Approximate values running uClibc and hashing
|
||||
linux-2.4.4.tar.bz2 were:
|
||||
user times (sec) text size (386)
|
||||
value user times (sec) text size (386)
|
||||
0 (fastest) 1.1 6144
|
||||
1 1.4 5392
|
||||
2 3.0 5088
|
||||
|
@ -87,8 +87,7 @@
|
||||
//config: depends on DEVFSD
|
||||
//config: help
|
||||
//config: -fg Run the daemon in the foreground.
|
||||
//config: -np Exit after parsing the configuration file.
|
||||
//config: Do not poll for events.
|
||||
//config: -np Exit after parsing config. Do not poll for events.
|
||||
//config:
|
||||
//config:config DEVFSD_VERBOSE
|
||||
//config: bool "Increases logging (and size)"
|
||||
|
@ -26,7 +26,7 @@
|
||||
//config: select PLATFORM_LINUX
|
||||
//config: help
|
||||
//config: Shows splash image and progress bar on framebuffer device.
|
||||
//config: Can be used during boot phase of an embedded device. ~2kb.
|
||||
//config: Can be used during boot phase of an embedded device.
|
||||
//config: Usage:
|
||||
//config: - use kernel option 'vga=xxx' or otherwise enable fb device.
|
||||
//config: - put somewhere fbsplash.cfg file and an image in .ppm format.
|
||||
|
@ -158,6 +158,6 @@ config UDHCPC_SLACK_FOR_BUGGY_SERVERS
|
||||
Known buggy DHCP servers:
|
||||
3Com OfficeConnect Remote 812 ADSL Router:
|
||||
seems to confuse maximum allowed UDP packet size with
|
||||
maximum size of entire IP packet, and sends packets which are
|
||||
28 bytes too large.
|
||||
maximum size of entire IP packet, and sends packets
|
||||
which are 28 bytes too large.
|
||||
Seednet (ISP) VDSL: sends packets 2 bytes too large.
|
||||
|
Loading…
Reference in New Issue
Block a user