blob: d17bbcde79d18d372792aad4f6e2423d3d84af59 [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Process Utilities"
7
8config CONFIG_FREE
9 bool "free"
10 default n
11 help
Eric Andersene5642112003-07-14 19:37:08 +000012 free displays the total amount of free and used physical and swap
13 memory in the system, as well as the buffers used by the kernel.
14 The shared memory column should be ignored; it is obsolete.
Eric Andersenc9f20d92002-12-05 08:41:41 +000015
Eric Andersen110ee232002-12-06 21:44:50 +000016config CONFIG_KILL
Eric Andersen110ee232002-12-06 21:44:50 +000017 bool "kill"
18 default n
Eric Andersen110ee232002-12-06 21:44:50 +000019 help
Eric Andersene5642112003-07-14 19:37:08 +000020 The command kill sends the specified signal to the specified
21 process or process group. If no signal is specified, the TERM
22 signal is sent.
Eric Andersenc9f20d92002-12-05 08:41:41 +000023
24config CONFIG_KILLALL
25 bool "killall"
26 default n
27 depends on CONFIG_KILL
28 help
Eric Andersene5642112003-07-14 19:37:08 +000029 killall sends a signal to all processes running any of the
30 specified commands. If no signal name is specified, SIGTERM is
31 sent.
Eric Andersenc9f20d92002-12-05 08:41:41 +000032
33config CONFIG_PIDOF
34 bool "pidof"
35 default n
36 help
Eric Andersene5642112003-07-14 19:37:08 +000037 Pidof finds the process id's (pids) of the named programs. It prints
38 those id's on the standard output.
Eric Andersenc9f20d92002-12-05 08:41:41 +000039
40config CONFIG_PS
41 bool "ps"
42 default n
43 help
Eric Andersene5642112003-07-14 19:37:08 +000044 ps gives a snapshot of the current processes.
Eric Andersenc9f20d92002-12-05 08:41:41 +000045
Bernhard Reutner-Fischer6d6a40c2005-10-04 14:31:18 +000046config CONFIG_FEATURE_PS_WIDE
47 bool " Enable argument for wide output (-w)"
48 default n
49 depends on CONFIG_PS
50 help
51 Support argument 'w' for wide output.
52 If given once, 132 chars are printed and given more than
53 one, the length is unlimited.
54
Eric Andersenc9f20d92002-12-05 08:41:41 +000055config CONFIG_RENICE
56 bool "renice"
57 default n
58 help
Eric Andersene5642112003-07-14 19:37:08 +000059 Renice alters the scheduling priority of one or more running
60 processes.
Eric Andersenc9f20d92002-12-05 08:41:41 +000061
Mike Frysingerd1c8ae52005-09-24 23:13:22 +000062config CONFIG_BB_SYSCTL
63 bool "sysctl"
64 default n
65 help
66 Configure kernel parameters at runtime.
67
Eric Andersenc9f20d92002-12-05 08:41:41 +000068config CONFIG_TOP
69 bool "top"
70 default n
71 help
Eric Andersene5642112003-07-14 19:37:08 +000072 The top program provides a dynamic real-time view of a running
73 system.
Eric Andersenc9f20d92002-12-05 08:41:41 +000074
"Vladimir N. Oleynik"f246dc72005-09-16 12:55:29 +000075config CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Eric Andersen88c916b2003-10-22 09:58:56 +000076 bool " Support showing CPU usage percentage (add 2k bytes)"
Eric Andersenc9f20d92002-12-05 08:41:41 +000077 default y
78 depends on CONFIG_TOP
79 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +000080 Make top display CPU usage.
Eric Andersenc9f20d92002-12-05 08:41:41 +000081
82config CONFIG_UPTIME
83 bool "uptime"
84 default n
85 help
Eric Andersene5642112003-07-14 19:37:08 +000086 uptime gives a one line display of the current time, how long
87 the system has been running, how many users are currently logged
88 on, and the system load averages for the past 1, 5, and 15 minutes.
Eric Andersenc9f20d92002-12-05 08:41:41 +000089
Eric Andersenc9f20d92002-12-05 08:41:41 +000090endmenu
91