www.usr.com/support/gpl/USR9107_release.1.4.tar.gz
[bcm963xx.git] / userapps / opensource / busybox / procps / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 menu "Process Utilities"
7
8 config CONFIG_FREE
9         bool "free"
10         default n
11         help
12           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.
15
16 config CONFIG_KILL
17         bool "kill"
18         default n
19         help
20           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.
23
24 config CONFIG_KILLALL
25         bool "killall"
26         default n
27         depends on CONFIG_KILL
28         help
29           killall sends a signal to all processes running any of the
30           specified commands.  If no signal name is specified, SIGTERM is
31           sent.
32
33 config CONFIG_PIDOF
34         bool "pidof"
35         default n
36         help
37           Pidof finds the process id's (pids) of the named programs. It prints
38           those id's on the standard output.
39
40 config CONFIG_PS
41         bool "ps"
42         default n
43         help
44           ps gives a snapshot of the current processes.
45
46 config CONFIG_RENICE
47         bool "renice"
48         default n
49         help
50           Renice alters the scheduling priority of one or more running
51           processes.
52
53 config CONFIG_TOP
54         bool "top"
55         default n
56         help
57           The top program provides a dynamic real-time view of a running
58           system.
59
60 config FEATURE_CPU_USAGE_PERCENTAGE
61         bool "  Support showing CPU usage percentage (add 2k bytes)"
62         default y
63         depends on CONFIG_TOP
64         help
65           Make top display CPU usage.
66
67 config CONFIG_UPTIME
68         bool "uptime"
69         default n
70         help
71           uptime gives a one line display of the current time, how long
72           the system has been running, how many users are currently logged
73           on, and the system load averages for the past 1, 5, and 15 minutes.
74
75 config CONFIG_SYSCTL
76         bool "sysctl"
77         default n
78         help
79           sysctl - configure kernel parameters at runtime
80
81 endmenu
82