mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 16:34:04 +02:00
efd2193508
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2760 3c298f89-4303-0410-b956-a3cf2f4a3e73
88 lines
1.9 KiB
Plaintext
88 lines
1.9 KiB
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see scripts/kbuild/config-language.txt.
|
|
#
|
|
|
|
menu "Process Utilities"
|
|
|
|
config BUSYBOX_CONFIG_FREE
|
|
bool "free"
|
|
default y
|
|
help
|
|
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 BUSYBOX_CONFIG_KILL
|
|
bool "kill"
|
|
default y
|
|
help
|
|
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 BUSYBOX_CONFIG_KILLALL
|
|
bool "killall"
|
|
default y
|
|
depends on BUSYBOX_CONFIG_KILL
|
|
help
|
|
killall sends a signal to all processes running any of the
|
|
specified commands. If no signal name is specified, SIGTERM is
|
|
sent.
|
|
|
|
config BUSYBOX_CONFIG_KILLALL5
|
|
bool "killall5"
|
|
default y
|
|
depends on BUSYBOX_CONFIG_KILL
|
|
|
|
config BUSYBOX_CONFIG_PIDOF
|
|
bool "pidof"
|
|
default y
|
|
help
|
|
Pidof finds the process id's (pids) of the named programs. It prints
|
|
those id's on the standard output.
|
|
|
|
config BUSYBOX_CONFIG_PS
|
|
bool "ps"
|
|
default y
|
|
help
|
|
ps gives a snapshot of the current processes.
|
|
|
|
config BUSYBOX_CONFIG_RENICE
|
|
bool "renice"
|
|
default n
|
|
help
|
|
Renice alters the scheduling priority of one or more running
|
|
processes.
|
|
|
|
config BUSYBOX_CONFIG_TOP
|
|
bool "top"
|
|
default y
|
|
help
|
|
The top program provides a dynamic real-time view of a running
|
|
system.
|
|
|
|
config BUSYBOX_FEATURE_CPU_USAGE_PERCENTAGE
|
|
bool
|
|
default y
|
|
depends on BUSYBOX_CONFIG_TOP
|
|
help
|
|
Make top display CPU usage.
|
|
|
|
config BUSYBOX_CONFIG_UPTIME
|
|
bool "uptime"
|
|
default y
|
|
help
|
|
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.
|
|
|
|
config BUSYBOX_CONFIG_BB_SYSCTL
|
|
bool "sysctl"
|
|
default y
|
|
help
|
|
sysctl - configure kernel parameters at runtime
|
|
|
|
endmenu
|
|
|