Patch from Thomas Cameron:
Hello all, This patch adds more "Help" text to the config system. Almost all applets now have a help entry. Also, I cleaned up the spacing of the existing text so that things are consistent. This patch is against this morning's CVS. Thomas Cameron CEI Systems, Inc.
This commit is contained in:
parent
1eceb127bd
commit
e5642119ee
@ -9,14 +9,16 @@ config CONFIG_AWK
|
|||||||
bool "awk"
|
bool "awk"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Awk is used as a pattern scanning and processing language. This is
|
||||||
|
the BusyBox implementation of that programming language.
|
||||||
|
|
||||||
config CONFIG_FEATURE_AWK_MATH
|
config CONFIG_FEATURE_AWK_MATH
|
||||||
bool " Enable math functions (requires libm)"
|
bool " Enable math functions (requires libm)"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_AWK
|
depends on CONFIG_AWK
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Enable math functions of the Awk programming language.
|
||||||
|
NOTE: This will require libm to be present for linking.
|
||||||
|
|
||||||
config CONFIG_PATCH
|
config CONFIG_PATCH
|
||||||
bool "patch"
|
bool "patch"
|
||||||
@ -89,7 +91,8 @@ config CONFIG_FEATURE_VI_READONLY
|
|||||||
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 read-only command line option, which allows the user to
|
||||||
|
open a file in read-only mode.
|
||||||
|
|
||||||
config CONFIG_FEATURE_VI_SETOPTS
|
config CONFIG_FEATURE_VI_SETOPTS
|
||||||
bool " Enable set-able options, ai ic showmatch"
|
bool " Enable set-able options, ai ic showmatch"
|
||||||
|
@ -86,8 +86,9 @@ config CONFIG_FEATURE_GREP_CONTEXT
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_GREP
|
depends on CONFIG_GREP
|
||||||
help
|
help
|
||||||
Enable match context in results. This will display a number
|
Print the specified number of leading (-B) and/or trailing (-A)
|
||||||
of lines preceding and/or trailing matches.
|
context surrounding our matching lines.
|
||||||
|
Print the specified number of context lines (-C).
|
||||||
|
|
||||||
config CONFIG_XARGS
|
config CONFIG_XARGS
|
||||||
bool "xargs"
|
bool "xargs"
|
||||||
|
@ -49,7 +49,7 @@ config CONFIG_HALT
|
|||||||
default y
|
default y
|
||||||
depends on CONFIG_INIT
|
depends on CONFIG_INIT
|
||||||
help
|
help
|
||||||
Stop all processes.
|
'halt' tells the kernel to stop all processes and halt the system.
|
||||||
|
|
||||||
config CONFIG_POWEROFF
|
config CONFIG_POWEROFF
|
||||||
bool "poweroff"
|
bool "poweroff"
|
||||||
|
@ -15,25 +15,25 @@ config CONFIG_ADDGROUP
|
|||||||
bool "addgroup"
|
bool "addgroup"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Utility for creating a new group account.
|
||||||
|
|
||||||
config CONFIG_DELGROUP
|
config CONFIG_DELGROUP
|
||||||
bool "delgroup"
|
bool "delgroup"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Utility for deleting a group account.
|
||||||
|
|
||||||
config CONFIG_ADDUSER
|
config CONFIG_ADDUSER
|
||||||
bool "adduser"
|
bool "adduser"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Utility for creating a new user account.
|
||||||
|
|
||||||
config CONFIG_DELUSER
|
config CONFIG_DELUSER
|
||||||
bool "deluser"
|
bool "deluser"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Utility for deleting a user account.
|
||||||
|
|
||||||
config CONFIG_GETTY
|
config CONFIG_GETTY
|
||||||
bool "getty"
|
bool "getty"
|
||||||
@ -45,32 +45,39 @@ config CONFIG_LOGIN
|
|||||||
bool "login"
|
bool "login"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Login is used when signing onto a system.
|
||||||
|
|
||||||
config CONFIG_FEATURE_SECURETTY
|
config CONFIG_FEATURE_SECURETTY
|
||||||
bool " Support for /etc/securetty"
|
bool " Support for /etc/securetty"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_LOGIN
|
depends on CONFIG_LOGIN
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
The file /etc/securetty is used by (some versions of) login(1). The
|
||||||
|
file contains the device names of tty lines (one per line, without
|
||||||
|
leading /dev/) on which root is allowed to login.
|
||||||
|
|
||||||
config CONFIG_PASSWD
|
config CONFIG_PASSWD
|
||||||
bool "passwd"
|
bool "passwd"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Passwd changes passwords for user and group accounts. A normal user
|
||||||
|
may only change the password for his/her own account, the super user
|
||||||
|
may change the password for any account. The administrator of a group
|
||||||
|
may change the password for the group.
|
||||||
|
|
||||||
config CONFIG_SU
|
config CONFIG_SU
|
||||||
bool "su"
|
bool "su"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
su is used to become another user during a login session. Invoked with-
|
||||||
|
out a username, su defaults to becoming the super user.
|
||||||
|
|
||||||
config CONFIG_SULOGIN
|
config CONFIG_SULOGIN
|
||||||
bool "sulogin"
|
bool "sulogin"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Sulogin is invoked when the system goes into single user
|
||||||
|
mode (this is done through an entry in inittab).
|
||||||
|
|
||||||
config CONFIG_VLOCK
|
config CONFIG_VLOCK
|
||||||
bool "vlock"
|
bool "vlock"
|
||||||
|
@ -9,25 +9,29 @@ config CONFIG_ADJTIMEX
|
|||||||
bool "adjtimex"
|
bool "adjtimex"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Adjtimex reads and optionally sets adjustment parameters for
|
||||||
|
the Linux clock adjustment algorithm.
|
||||||
|
|
||||||
config CONFIG_CROND
|
config CONFIG_CROND
|
||||||
bool "crond"
|
bool "crond"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Crond is a background daemon that parses individual crontab
|
||||||
|
files and executes commands on behalf of the users in question.
|
||||||
|
|
||||||
config CONFIG_CRONTAB
|
config CONFIG_CRONTAB
|
||||||
bool "crontab"
|
bool "crontab"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Crontab manipulates the crontab for a particular user. Only
|
||||||
|
the superuser may specify a different user and/or crontab directory.
|
||||||
|
|
||||||
config CONFIG_DC
|
config CONFIG_DC
|
||||||
bool "dc"
|
bool "dc"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Dc is a reverse-polish desk calculator which supports unlimited
|
||||||
|
precision arithmetic.
|
||||||
|
|
||||||
config CONFIG_DUTMP
|
config CONFIG_DUTMP
|
||||||
bool "dutmp"
|
bool "dutmp"
|
||||||
@ -45,19 +49,24 @@ config CONFIG_MT
|
|||||||
bool "mt"
|
bool "mt"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Mt is used to control tape devices. You can use the mt utility
|
||||||
|
to advance or rewind a tape past a specified number of archive
|
||||||
|
files on the tape.
|
||||||
|
|
||||||
config CONFIG_STRINGS
|
config CONFIG_STRINGS
|
||||||
bool "strings"
|
bool "strings"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Strings prints the printable character sequences for each file
|
||||||
|
specified.
|
||||||
|
|
||||||
config CONFIG_TIME
|
config CONFIG_TIME
|
||||||
bool "time"
|
bool "time"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
The time command runs the specified program with the given arguments.
|
||||||
|
When the command finishes, time writes a message to standard output
|
||||||
|
giving timing statistics about this program run.
|
||||||
|
|
||||||
config CONFIG_UPDATE
|
config CONFIG_UPDATE
|
||||||
bool "update"
|
bool "update"
|
||||||
|
@ -96,7 +96,8 @@ config CONFIG_MODPROBE
|
|||||||
bool "modprobe"
|
bool "modprobe"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Handle the loading of modules, and their dependancies on a high
|
||||||
|
level.
|
||||||
|
|
||||||
config CONFIG_RMMOD
|
config CONFIG_RMMOD
|
||||||
bool "rmmod"
|
bool "rmmod"
|
||||||
|
@ -33,7 +33,7 @@ config CONFIG_HOSTNAME
|
|||||||
bool "hostname"
|
bool "hostname"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Show or set the system's host name
|
||||||
|
|
||||||
config CONFIG_HTTPD
|
config CONFIG_HTTPD
|
||||||
bool "httpd"
|
bool "httpd"
|
||||||
@ -128,14 +128,15 @@ config CONFIG_IFCONFIG
|
|||||||
bool "ifconfig"
|
bool "ifconfig"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Ifconfig is used to configure the kernel-resident network interfaces.
|
||||||
|
|
||||||
config CONFIG_FEATURE_IFCONFIG_STATUS
|
config CONFIG_FEATURE_IFCONFIG_STATUS
|
||||||
bool " Enable status reporting output (+7k)"
|
bool " Enable status reporting output (+7k)"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_IFCONFIG
|
depends on CONFIG_IFCONFIG
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
If ifconfig is called with no arguments it will display the status
|
||||||
|
of the currently active interfaces.
|
||||||
|
|
||||||
config CONFIG_FEATURE_IFCONFIG_SLIP
|
config CONFIG_FEATURE_IFCONFIG_SLIP
|
||||||
bool " Enable slip-specific options \"keepalive\" and \"outfill\""
|
bool " Enable slip-specific options \"keepalive\" and \"outfill\""
|
||||||
@ -149,14 +150,17 @@ config CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
|
|||||||
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 the start address for shared memory, start address for I/O,
|
||||||
|
and/or the interrupt line used by the specified device.
|
||||||
|
|
||||||
config CONFIG_FEATURE_IFCONFIG_HW
|
config CONFIG_FEATURE_IFCONFIG_HW
|
||||||
bool " Enable option \"hw\" (ether only)"
|
bool " Enable option \"hw\" (ether only)"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_IFCONFIG
|
depends on CONFIG_IFCONFIG
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Set the hardware address of this interface, if the device driver
|
||||||
|
supports this operation. Currently, we only support the 'ether'
|
||||||
|
class.
|
||||||
|
|
||||||
config CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS
|
config CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS
|
||||||
bool " Set the broadcast automatically"
|
bool " Set the broadcast automatically"
|
||||||
@ -169,7 +173,7 @@ config CONFIG_IFUPDOWN
|
|||||||
bool "ifupdown"
|
bool "ifupdown"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Activate or deactivate the specified interface.
|
||||||
|
|
||||||
config CONFIG_FEATURE_IFUPDOWN_IP
|
config CONFIG_FEATURE_IFUPDOWN_IP
|
||||||
bool " Use ip applet"
|
bool " Use ip applet"
|
||||||
@ -315,7 +319,8 @@ config CONFIG_IPCALC
|
|||||||
bool "ipcalc"
|
bool "ipcalc"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
ipcalc takes an IP address and netmask and calculates the
|
||||||
|
resulting broadcast, network, and host range.
|
||||||
|
|
||||||
config CONFIG_FEATURE_IPCALC_FANCY
|
config CONFIG_FEATURE_IPCALC_FANCY
|
||||||
bool " Fancy IPCALC, more options, adds 300 bytes"
|
bool " Fancy IPCALC, more options, adds 300 bytes"
|
||||||
@ -366,13 +371,14 @@ config CONFIG_NC
|
|||||||
bool "nc"
|
bool "nc"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
A simple Unix utility which reads and writes data across network
|
||||||
|
connections.
|
||||||
|
|
||||||
config CONFIG_NETSTAT
|
config CONFIG_NETSTAT
|
||||||
bool "netstat"
|
bool "netstat"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Netstat prints information about the Linux networking subsystem.
|
||||||
|
|
||||||
config CONFIG_NSLOOKUP
|
config CONFIG_NSLOOKUP
|
||||||
bool "nslookup"
|
bool "nslookup"
|
||||||
@ -384,7 +390,8 @@ config CONFIG_PING
|
|||||||
bool "ping"
|
bool "ping"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
|
||||||
|
elicit an ICMP ECHO_RESPONSE from a host or gateway.
|
||||||
|
|
||||||
config CONFIG_FEATURE_FANCY_PING
|
config CONFIG_FEATURE_FANCY_PING
|
||||||
bool " Enable fancy ping output"
|
bool " Enable fancy ping output"
|
||||||
@ -411,7 +418,7 @@ config CONFIG_ROUTE
|
|||||||
bool "route"
|
bool "route"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Route displays or manipulates the kernel's IP routing tables.
|
||||||
|
|
||||||
config CONFIG_TELNET
|
config CONFIG_TELNET
|
||||||
bool "telnet"
|
bool "telnet"
|
||||||
@ -443,28 +450,32 @@ config CONFIG_TFTP
|
|||||||
bool "tftp"
|
bool "tftp"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
This enables the Tirvial File Transfer Protocol client program. TFTP
|
||||||
|
is usually used for simple, small transfers such as a root image
|
||||||
|
for a network-enabled bootloader.
|
||||||
|
|
||||||
config CONFIG_FEATURE_TFTP_GET
|
config CONFIG_FEATURE_TFTP_GET
|
||||||
bool " Enable \"get\" command"
|
bool " Enable \"get\" command"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_TFTP
|
depends on CONFIG_TFTP
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Add support for the GET command within the TFTP client. This allows
|
||||||
|
a client to retreive a file from a TFTP server.
|
||||||
|
|
||||||
config CONFIG_FEATURE_TFTP_PUT
|
config CONFIG_FEATURE_TFTP_PUT
|
||||||
bool " Enable \"put\" command"
|
bool " Enable \"put\" command"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_TFTP
|
depends on CONFIG_TFTP
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Add support for the PUT command within the TFTP client. This allows
|
||||||
|
a client to transfer a file to a TFTP server.
|
||||||
|
|
||||||
config CONFIG_FEATURE_TFTP_BLOCKSIZE
|
config CONFIG_FEATURE_TFTP_BLOCKSIZE
|
||||||
bool " Enable \"blocksize\" command"
|
bool " Enable \"blocksize\" command"
|
||||||
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.
|
Allow the client to specify the desired block size for transfers.
|
||||||
|
|
||||||
config CONFIG_FEATURE_TFTP_DEBUG
|
config CONFIG_FEATURE_TFTP_DEBUG
|
||||||
bool " Enable debug"
|
bool " Enable debug"
|
||||||
@ -477,7 +488,7 @@ config CONFIG_TRACEROUTE
|
|||||||
bool "traceroute"
|
bool "traceroute"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Utility to trace the route of IP packets
|
||||||
|
|
||||||
config CONFIG_FEATURE_TRACEROUTE_VERBOSE
|
config CONFIG_FEATURE_TRACEROUTE_VERBOSE
|
||||||
bool " Enable verbose output"
|
bool " Enable verbose output"
|
||||||
@ -503,21 +514,22 @@ config CONFIG_WGET
|
|||||||
bool "wget"
|
bool "wget"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Wget is a utility for non-interactive download of files from HTTP,
|
||||||
|
HTTPS, and FTP servers.
|
||||||
|
|
||||||
config CONFIG_FEATURE_WGET_STATUSBAR
|
config CONFIG_FEATURE_WGET_STATUSBAR
|
||||||
bool " Enable a nifty process meter (+2k)"
|
bool " Enable a nifty process meter (+2k)"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_WGET
|
depends on CONFIG_WGET
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Enable the transfer progress bar for wget transfers.
|
||||||
|
|
||||||
config CONFIG_FEATURE_WGET_AUTHENTICATION
|
config CONFIG_FEATURE_WGET_AUTHENTICATION
|
||||||
bool " Enable HTTP authentication"
|
bool " Enable HTTP authentication"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_WGET
|
depends on CONFIG_WGET
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Support authenticated HTTP transfers.
|
||||||
|
|
||||||
source networking/udhcp/Config.in
|
source networking/udhcp/Config.in
|
||||||
|
|
||||||
|
@ -9,34 +9,54 @@ config CONFIG_UDHCPD
|
|||||||
bool "udhcp Server (udhcpd)"
|
bool "udhcp Server (udhcpd)"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
uDHCPd is a DHCP server geared primarily toward embedded systems,
|
||||||
|
while striving to be fully functional and RFC compliant.
|
||||||
|
|
||||||
|
See http://udhcp.busybox.net for further details.
|
||||||
|
|
||||||
config CONFIG_UDHCPC
|
config CONFIG_UDHCPC
|
||||||
bool "udhcp Client (udhcpc)"
|
bool "udhcp Client (udhcpc)"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
uDHCPc is a DHCP client geared primarily toward embedded systems,
|
||||||
|
while striving to be fully functional and RFC compliant.
|
||||||
|
|
||||||
|
The udhcp client negotiates a lease with the DHCP server and
|
||||||
|
notifies a set of scripts when a leases is obtained or lost.
|
||||||
|
|
||||||
|
See http://udhcp.busybox.net for further details.
|
||||||
|
|
||||||
config CONFIG_DUMPLEASES
|
config CONFIG_DUMPLEASES
|
||||||
bool "Lease display utility (dumpleases)"
|
bool "Lease display utility (dumpleases)"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_UDHCPD
|
depends on CONFIG_UDHCPD
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
dumpleases displays the leases written out by the udhcpd server.
|
||||||
|
Lease times are stored in the file by time remaining in lease, or
|
||||||
|
by the absolute time that it expires in seconds from epoch.
|
||||||
|
|
||||||
|
See http://udhcp.busybox.net for further details.
|
||||||
|
|
||||||
config CONFIG_FEATURE_UDHCP_SYSLOG
|
config CONFIG_FEATURE_UDHCP_SYSLOG
|
||||||
bool " Log udhcp messages to syslog (instead of stdout)"
|
bool " Log udhcp messages to syslog (instead of stdout)"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_UDHCPD || CONFIG_UDHCPC
|
depends on CONFIG_UDHCPD || CONFIG_UDHCPC
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
If selected, udhcpd will log all its messages to syslog, otherwise,
|
||||||
|
it will attempt to log them to stdout.
|
||||||
|
|
||||||
|
See http://udhcp.busybox.net for further details.
|
||||||
|
|
||||||
config CONFIG_FEATURE_UDHCP_DEBUG
|
config CONFIG_FEATURE_UDHCP_DEBUG
|
||||||
bool " Compile udhcp with noisy debugging messages"
|
bool " Compile udhcp with noisy debugging messages"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_UDHCPD || CONFIG_UDHCPC
|
depends on CONFIG_UDHCPD || CONFIG_UDHCPC
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
If selected, udhcpd will output extra debugging output. If using
|
||||||
|
this option, compile uDHCP with "-g", and do not fork the daemon to
|
||||||
|
the background.
|
||||||
|
|
||||||
|
See http://udhcp.busybox.net for further details.
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
@ -9,44 +9,53 @@ config CONFIG_FREE
|
|||||||
bool "free"
|
bool "free"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
free displays the total amount of free and used physical and swap
|
||||||
|
memory in the system, as well as the buffers used by the kernel.
|
||||||
|
The shared memory column should be ignored; it is obsolete.
|
||||||
|
|
||||||
config CONFIG_KILL
|
config CONFIG_KILL
|
||||||
bool "kill"
|
bool "kill"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
The command kill sends the specified signal to the specified
|
||||||
|
process or process group. If no signal is specified, the TERM
|
||||||
|
signal is sent.
|
||||||
|
|
||||||
config CONFIG_KILLALL
|
config CONFIG_KILLALL
|
||||||
bool "killall"
|
bool "killall"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_KILL
|
depends on CONFIG_KILL
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
killall sends a signal to all processes running any of the
|
||||||
|
specified commands. If no signal name is specified, SIGTERM is
|
||||||
|
sent.
|
||||||
|
|
||||||
config CONFIG_PIDOF
|
config CONFIG_PIDOF
|
||||||
bool "pidof"
|
bool "pidof"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Pidof finds the process id's (pids) of the named programs. It prints
|
||||||
|
those id's on the standard output.
|
||||||
|
|
||||||
config CONFIG_PS
|
config CONFIG_PS
|
||||||
bool "ps"
|
bool "ps"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
ps gives a snapshot of the current processes.
|
||||||
|
|
||||||
config CONFIG_RENICE
|
config CONFIG_RENICE
|
||||||
bool "renice"
|
bool "renice"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
Renice alters the scheduling priority of one or more running
|
||||||
|
processes.
|
||||||
|
|
||||||
config CONFIG_TOP
|
config CONFIG_TOP
|
||||||
bool "top"
|
bool "top"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
The top program provides a dynamic real-time view of a running
|
||||||
|
system.
|
||||||
|
|
||||||
config FEATURE_CPU_USAGE_PERCENTAGE
|
config FEATURE_CPU_USAGE_PERCENTAGE
|
||||||
bool " Support show CPU usage percentage (add 2k bytes)"
|
bool " Support show CPU usage percentage (add 2k bytes)"
|
||||||
@ -59,7 +68,9 @@ config CONFIG_UPTIME
|
|||||||
bool "uptime"
|
bool "uptime"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Please submit a patch to add help text for this item.
|
uptime gives a one line display of the current time, how long
|
||||||
|
the system has been running, how many users are currently logged
|
||||||
|
on, and the system load averages for the past 1, 5, and 15 minutes.
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user