mirror of
https://github.com/sheumann/hush.git
synced 2025-01-20 21:30:00 +00:00
Patch from Terje Kvernes adding quite a lot of missing documentation
This commit is contained in:
parent
6fd0e31e87
commit
9c3c38da55
@ -56,35 +56,40 @@ config CONFIG_FEATURE_VI_COLON
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_VI
|
depends on CONFIG_VI
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Enable a limited set of colon commands for vi. This does not
|
||||||
|
provide an "ex" mode.
|
||||||
|
|
||||||
config CONFIG_FEATURE_VI_YANKMARK
|
config CONFIG_FEATURE_VI_YANKMARK
|
||||||
bool " Enable yank/put commands and mark cmds"
|
bool " Enable yank/put commands and mark cmds"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_VI
|
depends on CONFIG_VI
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
This will enable you to use yank and put, as well as mark in
|
||||||
|
busybox vi.
|
||||||
|
|
||||||
config CONFIG_FEATURE_VI_SEARCH
|
config CONFIG_FEATURE_VI_SEARCH
|
||||||
bool " Enable search and replace cmds"
|
bool " Enable search and replace cmds"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_VI
|
depends on CONFIG_VI
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Select this if you wish to be able to do search and replace in
|
||||||
|
busybox vi.
|
||||||
|
|
||||||
config CONFIG_FEATURE_VI_USE_SIGNALS
|
config CONFIG_FEATURE_VI_USE_SIGNALS
|
||||||
bool " Catch signals"
|
bool " Catch signals"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_VI
|
depends on CONFIG_VI
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Selecting this option will make busybox vi signal aware. This will
|
||||||
|
make busybox vi support SIGWINCH to deal with Window Changes, catch
|
||||||
|
Ctrl-Z and Ctrl-C and alarms.
|
||||||
|
|
||||||
config CONFIG_FEATURE_VI_DOT_CMD
|
config CONFIG_FEATURE_VI_DOT_CMD
|
||||||
bool " Remember previous cmd and \".\" cmd"
|
bool " Remember previous cmd and \".\" cmd"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_VI
|
depends on CONFIG_VI
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Make busybox vi remember the last command and be able to repeat it.
|
||||||
|
|
||||||
config CONFIG_FEATURE_VI_READONLY
|
config CONFIG_FEATURE_VI_READONLY
|
||||||
bool " Enable -R option and \"view\" mode"
|
bool " Enable -R option and \"view\" mode"
|
||||||
@ -99,28 +104,29 @@ config CONFIG_FEATURE_VI_SETOPTS
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_VI
|
depends on CONFIG_VI
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Enable the editor to set some (ai, ic, showmatch) options.
|
||||||
|
|
||||||
config CONFIG_FEATURE_VI_SET
|
config CONFIG_FEATURE_VI_SET
|
||||||
bool " Support for :set"
|
bool " Support for :set"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_VI
|
depends on CONFIG_VI
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Support for ":set".
|
||||||
|
|
||||||
config CONFIG_FEATURE_VI_WIN_RESIZE
|
config CONFIG_FEATURE_VI_WIN_RESIZE
|
||||||
bool " Handle window resize"
|
bool " Handle window resize"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_VI
|
depends on CONFIG_VI
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Make busybox vi behave nicely with terminals that get resized.
|
||||||
|
|
||||||
config CONFIG_FEATURE_VI_OPTIMIZE_CURSOR
|
config CONFIG_FEATURE_VI_OPTIMIZE_CURSOR
|
||||||
bool " Optimize cursor movement"
|
bool " Optimize cursor movement"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_VI
|
depends on CONFIG_VI
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
This will make the cursor movement faster, but requires more memory
|
||||||
|
and it makes the applet a tiny bit larger.
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ config CONFIG_GETTY
|
|||||||
bool "getty"
|
bool "getty"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Getty lets you log in on a tty, it is normally invoked by init.
|
||||||
|
|
||||||
config CONFIG_LOGIN
|
config CONFIG_LOGIN
|
||||||
bool "login"
|
bool "login"
|
||||||
@ -99,7 +99,7 @@ config CONFIG_VLOCK
|
|||||||
bool "vlock"
|
bool "vlock"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Build the "vlock" applet, that allows you to lock (virtual) terminals.
|
||||||
|
|
||||||
comment "Common options for adduser, deluser, login, su"
|
comment "Common options for adduser, deluser, login, su"
|
||||||
depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU
|
depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU
|
||||||
@ -109,14 +109,28 @@ config CONFIG_FEATURE_SHADOWPASSWDS
|
|||||||
default n
|
default n
|
||||||
depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU
|
depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Build support for shadow password in /etc/shadow. This file is only
|
||||||
|
only readable by root and thus the encrypted passwords are no longer
|
||||||
|
publicly readable.
|
||||||
|
|
||||||
config CONFIG_USE_BB_SHADOW
|
config CONFIG_USE_BB_SHADOW
|
||||||
bool " Use busybox shadow password functions"
|
bool " Use busybox shadow password functions"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_USE_BB_PWD_GRP && CONFIG_FEATURE_SHADOWPASSWDS
|
depends on CONFIG_USE_BB_PWD_GRP && CONFIG_FEATURE_SHADOWPASSWDS
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
If you leave this disabled, busybox will use the system's shadow
|
||||||
|
password handling functions. And if you are using the GNU C library
|
||||||
|
(glibc), you will then need to install the /etc/nsswitch.conf
|
||||||
|
configuration file and the required /lib/libnss_* libraries in
|
||||||
|
order for the shadow password functions to work. This generally
|
||||||
|
makes your embedded system quite a bit larger.
|
||||||
|
|
||||||
|
Enabling this option will cause busybox to directly access the
|
||||||
|
system's /etc/shadow file when handling shadow passwords. This
|
||||||
|
makes your system smaller and I will get fewer emails asking about
|
||||||
|
how glibc NSS works). When this option is enabled, you will not be
|
||||||
|
able to use PAM to access shadow passwords from remote LDAP
|
||||||
|
password servers and whatnot.
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ config CONFIG_FEATURE_OLD_MODULE_INTERFACE
|
|||||||
default n
|
default n
|
||||||
depends on CONFIG_INSMOD
|
depends on CONFIG_INSMOD
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Provide insmod support for older (pre 2.1) Linux kernels.
|
||||||
|
|
||||||
if CONFIG_INSMOD && !CONFIG_FEATURE_OLD_MODULE_INTERFACE
|
if CONFIG_INSMOD && !CONFIG_FEATURE_OLD_MODULE_INTERFACE
|
||||||
config CONFIG_FEATURE_NEW_MODULE_INTERFACE
|
config CONFIG_FEATURE_NEW_MODULE_INTERFACE
|
||||||
@ -30,7 +30,7 @@ config CONFIG_FEATURE_NEW_MODULE_INTERFACE
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_INSMOD
|
depends on CONFIG_INSMOD
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Support module loading for newer (post 2.1) Linux kernels.
|
||||||
endif
|
endif
|
||||||
|
|
||||||
config CONFIG_FEATURE_INSMOD_VERSION_CHECKING
|
config CONFIG_FEATURE_INSMOD_VERSION_CHECKING
|
||||||
@ -38,7 +38,8 @@ config CONFIG_FEATURE_INSMOD_VERSION_CHECKING
|
|||||||
default n
|
default n
|
||||||
depends on CONFIG_INSMOD
|
depends on CONFIG_INSMOD
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Support checking of versions for modules. This is used to
|
||||||
|
ensure that the kernel and module are made for each other.
|
||||||
|
|
||||||
config CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
|
config CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
|
||||||
bool " Add module symbols to kernel symbol table"
|
bool " Add module symbols to kernel symbol table"
|
||||||
@ -90,7 +91,9 @@ config CONFIG_FEATURE_QUERY_MODULE_INTERFACE
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_LSMOD && CONFIG_FEATURE_NEW_MODULE_INTERFACE
|
depends on CONFIG_LSMOD && CONFIG_FEATURE_NEW_MODULE_INTERFACE
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
This will provide some extra information about each module when
|
||||||
|
running lsmod. The fields provided are address, size, flags and
|
||||||
|
usage count.
|
||||||
|
|
||||||
config CONFIG_MODPROBE
|
config CONFIG_MODPROBE
|
||||||
bool "modprobe"
|
bool "modprobe"
|
||||||
@ -110,7 +113,9 @@ config CONFIG_FEATURE_CHECK_TAINTED_MODULE
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_INSMOD || CONFIG_LSMOD
|
depends on CONFIG_INSMOD || CONFIG_LSMOD
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Support checking for tainted modules. These are usually binary
|
||||||
|
only modules that will make the linux-kernel list ignore your
|
||||||
|
support request.
|
||||||
|
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
@ -9,7 +9,8 @@ config CONFIG_FEATURE_IPV6
|
|||||||
bool "Enable IPv6 support"
|
bool "Enable IPv6 support"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Enable IPv6 support to busybox. This makes applets that talk IP
|
||||||
|
able to work with IPv6.
|
||||||
|
|
||||||
config CONFIG_ARPING
|
config CONFIG_ARPING
|
||||||
bool "arping"
|
bool "arping"
|
||||||
@ -143,7 +144,8 @@ config CONFIG_FEATURE_IFCONFIG_SLIP
|
|||||||
default n
|
default n
|
||||||
depends on CONFIG_IFCONFIG
|
depends on CONFIG_IFCONFIG
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Allow "keepalive" and "outfill" support for SLIP. If you're not
|
||||||
|
planning on using serial lines, leave this unchecked.
|
||||||
|
|
||||||
config CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
|
config CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
|
||||||
bool " Enable options \"mem_start\", \"io_addr\", and \"irq\""
|
bool " Enable options \"mem_start\", \"io_addr\", and \"irq\""
|
||||||
@ -167,7 +169,8 @@ config CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS
|
|||||||
default n
|
default n
|
||||||
depends on CONFIG_IFCONFIG
|
depends on CONFIG_IFCONFIG
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Setting this will make ifconfig attempt to find the broadcast
|
||||||
|
automatically if the value '+' is used.
|
||||||
|
|
||||||
config CONFIG_IFUPDOWN
|
config CONFIG_IFUPDOWN
|
||||||
bool "ifupdown"
|
bool "ifupdown"
|
||||||
@ -180,28 +183,29 @@ config CONFIG_FEATURE_IFUPDOWN_IP
|
|||||||
default n
|
default n
|
||||||
depends on CONFIG_IFUPDOWN && CONFIG_IP && CONFIG_FEATURE_IP_ADDRESS && CONFIG_FEATURE_IP_LINK && CONFIG_FEATURE_IP_ROUTE
|
depends on CONFIG_IFUPDOWN && CONFIG_IP && CONFIG_FEATURE_IP_ADDRESS && CONFIG_FEATURE_IP_LINK && CONFIG_FEATURE_IP_ROUTE
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Use "ip" in "ifupdown".
|
||||||
|
|
||||||
config CONFIG_FEATURE_IFUPDOWN_IPV4
|
config CONFIG_FEATURE_IFUPDOWN_IPV4
|
||||||
bool " Enable support for IPv4"
|
bool " Enable support for IPv4"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_IFUPDOWN
|
depends on CONFIG_IFUPDOWN
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
If you want busybox to talk IPv4, leave this on.
|
||||||
|
|
||||||
config CONFIG_FEATURE_IFUPDOWN_IPV6
|
config CONFIG_FEATURE_IFUPDOWN_IPV6
|
||||||
bool " Enable support for IPv6"
|
bool " Enable support for IPv6"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_IFUPDOWN
|
depends on CONFIG_IFUPDOWN
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
If you need support for IPv6, turn this option on.
|
||||||
|
|
||||||
config CONFIG_FEATURE_IFUPDOWN_IPX
|
config CONFIG_FEATURE_IFUPDOWN_IPX
|
||||||
bool " Enable support for IPX"
|
bool " Enable support for IPX"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_IFUPDOWN
|
depends on CONFIG_IFUPDOWN
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
If this option is selected you can use busybox to work with IPX
|
||||||
|
networks.
|
||||||
|
|
||||||
config CONFIG_FEATURE_IFUPDOWN_MAPPING
|
config CONFIG_FEATURE_IFUPDOWN_MAPPING
|
||||||
bool " Enable mapping support"
|
bool " Enable mapping support"
|
||||||
@ -257,7 +261,9 @@ config CONFIG_IP
|
|||||||
bool "ip"
|
bool "ip"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
The "ip" applet is a TCP/IP interface configuration and routing
|
||||||
|
utility. You generally don't need "ip" to use busybox with
|
||||||
|
TCP/IP.
|
||||||
|
|
||||||
if CONFIG_IP && CONFIG_IPADDR
|
if CONFIG_IP && CONFIG_IPADDR
|
||||||
config CONFIG_FEATURE_IP_ADDRESS
|
config CONFIG_FEATURE_IP_ADDRESS
|
||||||
@ -270,7 +276,7 @@ if ! (CONFIG_IP && CONFIG_IPADDR)
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_IP
|
depends on CONFIG_IP
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Address manipulation support for the "ip" applet.
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if CONFIG_IP && CONFIG_IPLINK
|
if CONFIG_IP && CONFIG_IPLINK
|
||||||
@ -284,7 +290,7 @@ if !(CONFIG_IP && CONFIG_IPLINK)
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_IP
|
depends on CONFIG_IP
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Configure network devices with "ip".
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if CONFIG_IP && CONFIG_IPROUTE
|
if CONFIG_IP && CONFIG_IPROUTE
|
||||||
@ -298,7 +304,7 @@ if !(CONFIG_IP && CONFIG_IPROUTE)
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_IP
|
depends on CONFIG_IP
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Add support for routing table management to "ip".
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if CONFIG_IP && CONFIG_IPTUNNEL
|
if CONFIG_IP && CONFIG_IPTUNNEL
|
||||||
@ -312,7 +318,7 @@ if !(CONFIG_IP && CONFIG_IPTUNNEL)
|
|||||||
default n
|
default n
|
||||||
depends on CONFIG_IP
|
depends on CONFIG_IP
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Add support for tunneling commands to "ip".
|
||||||
endif
|
endif
|
||||||
|
|
||||||
config CONFIG_IPCALC
|
config CONFIG_IPCALC
|
||||||
@ -327,31 +333,31 @@ config CONFIG_FEATURE_IPCALC_FANCY
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_IPCALC
|
depends on CONFIG_IPCALC
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Adds the fields hostname and silent to the output of "ipcalc".
|
||||||
|
|
||||||
config CONFIG_IPADDR
|
config CONFIG_IPADDR
|
||||||
bool "ipaddr"
|
bool "ipaddr"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Equivalent to selecting address support to "ip", above.
|
||||||
|
|
||||||
config CONFIG_IPLINK
|
config CONFIG_IPLINK
|
||||||
bool "iplink"
|
bool "iplink"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Equivalent to selecting link support to "ip", above.
|
||||||
|
|
||||||
config CONFIG_IPROUTE
|
config CONFIG_IPROUTE
|
||||||
bool "iproute"
|
bool "iproute"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Equivalent to selecting route support to "ip", above.
|
||||||
|
|
||||||
config CONFIG_IPTUNNEL
|
config CONFIG_IPTUNNEL
|
||||||
bool "iptunnel"
|
bool "iptunnel"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Equivalent to selecting tunnel support to "ip", above.
|
||||||
|
|
||||||
config CONFIG_NAMEIF
|
config CONFIG_NAMEIF
|
||||||
bool "nameif"
|
bool "nameif"
|
||||||
@ -384,7 +390,7 @@ config CONFIG_NSLOOKUP
|
|||||||
bool "nslookup"
|
bool "nslookup"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Nslookup is a tool to query Internet name servers.
|
||||||
|
|
||||||
config CONFIG_PING
|
config CONFIG_PING
|
||||||
bool "ping"
|
bool "ping"
|
||||||
@ -398,21 +404,23 @@ config CONFIG_FEATURE_FANCY_PING
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_PING
|
depends on CONFIG_PING
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Make the output from the ping applet include statistics, and at the
|
||||||
|
same time provide full support for ICMP packets.
|
||||||
|
|
||||||
config CONFIG_PING6
|
config CONFIG_PING6
|
||||||
bool "ping6"
|
bool "ping6"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_FEATURE_IPV6
|
depends on CONFIG_FEATURE_IPV6
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
This will give you a ping that can talk IPv6.
|
||||||
|
|
||||||
config CONFIG_FEATURE_FANCY_PING6
|
config CONFIG_FEATURE_FANCY_PING6
|
||||||
bool " Enable fancy ping6 output"
|
bool " Enable fancy ping6 output"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_PING6
|
depends on CONFIG_PING6
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Make the output from the ping6 applet include statistics, and at the
|
||||||
|
same time provide full support for ICMP packets.
|
||||||
|
|
||||||
config CONFIG_ROUTE
|
config CONFIG_ROUTE
|
||||||
bool "route"
|
bool "route"
|
||||||
@ -424,27 +432,34 @@ config CONFIG_TELNET
|
|||||||
bool "telnet"
|
bool "telnet"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Telnet is an interface to the TELNET protocol, but is also commonly
|
||||||
|
used to test other simple protocols.
|
||||||
|
|
||||||
config CONFIG_FEATURE_TELNET_TTYPE
|
config CONFIG_FEATURE_TELNET_TTYPE
|
||||||
bool " Pass TERM type to remote host"
|
bool " Pass TERM type to remote host"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_TELNET
|
depends on CONFIG_TELNET
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Setting this option will forward the TERM environment variable to the
|
||||||
|
remote host you are connecting to. This is useful to make sure that
|
||||||
|
things like ANSI colors and other control sequences behave.
|
||||||
|
|
||||||
config CONFIG_TELNETD
|
config CONFIG_TELNETD
|
||||||
bool "telnetd"
|
bool "telnetd"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
A daemon for the TELNET protocol, allowing you to log on to the host
|
||||||
|
running the daemon. Please keep in mind that the TELNET protocol
|
||||||
|
sends passwords in plain text. If you can't afford the space for
|
||||||
|
any SSH daemon and you trust your network, say 'y' here.
|
||||||
|
|
||||||
config CONFIG_FEATURE_TELNETD_INETD
|
config CONFIG_FEATURE_TELNETD_INETD
|
||||||
bool " Support call from inetd only"
|
bool " Support call from inetd only"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_TELNETD
|
depends on CONFIG_TELNETD
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Selecting this will make telnetd only callable from inetd, removing the
|
||||||
|
standalone support.
|
||||||
|
|
||||||
config CONFIG_TFTP
|
config CONFIG_TFTP
|
||||||
bool "tftp"
|
bool "tftp"
|
||||||
@ -482,7 +497,9 @@ config CONFIG_FEATURE_TFTP_DEBUG
|
|||||||
default n
|
default n
|
||||||
depends on CONFIG_TFTP
|
depends on CONFIG_TFTP
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Enable debug settings for tftp. This is useful if you're running
|
||||||
|
into problems with tftp as the protocol doesn't help you much when
|
||||||
|
you run into problems.
|
||||||
|
|
||||||
config CONFIG_TRACEROUTE
|
config CONFIG_TRACEROUTE
|
||||||
bool "traceroute"
|
bool "traceroute"
|
||||||
@ -495,7 +512,8 @@ config CONFIG_FEATURE_TRACEROUTE_VERBOSE
|
|||||||
default n
|
default n
|
||||||
depends on CONFIG_TRACEROUTE
|
depends on CONFIG_TRACEROUTE
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Add some verbosity to traceroute. This includes amongst other things
|
||||||
|
hostnames and ICMP response types.
|
||||||
|
|
||||||
config CONFIG_FEATURE_TRACEROUTE_SO_DEBUG
|
config CONFIG_FEATURE_TRACEROUTE_SO_DEBUG
|
||||||
bool " Enable SO_DEBUG option"
|
bool " Enable SO_DEBUG option"
|
||||||
|
@ -62,7 +62,7 @@ config FEATURE_CPU_USAGE_PERCENTAGE
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_TOP
|
depends on CONFIG_TOP
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Make top display CPU usage.
|
||||||
|
|
||||||
config CONFIG_UPTIME
|
config CONFIG_UPTIME
|
||||||
bool "uptime"
|
bool "uptime"
|
||||||
|
@ -201,14 +201,15 @@ config CONFIG_FEATURE_SH_FANCY_PROMPT
|
|||||||
default n
|
default n
|
||||||
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
|
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Setting this option allows for prompts to use things like \w and
|
||||||
|
\$ and also using escape codes.
|
||||||
|
|
||||||
config CONFIG_FEATURE_SH_EXTRA_QUIET
|
config CONFIG_FEATURE_SH_EXTRA_QUIET
|
||||||
bool "Hide message on interactive shell startup"
|
bool "Hide message on interactive shell startup"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
|
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Remove the busybox introduction when starting a shell.
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user