source: src/router/busybox/procps/Config.in @ 8864

Last change on this file since 8864 was 8864, checked in by BrainSlayer, 5 years ago

replace busybox with new version

File size: 3.7 KB
Line 
1#
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 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
16config FUSER
17        bool "fuser"
18        default n
19        help
20          fuser lists all PIDs (Process IDs) that currently have a given
21          file open.  fuser can also list all PIDs that have a given network
22          (TCP or UDP) port open.
23
24config KILL
25        bool "kill"
26        default n
27        help
28          The command kill sends the specified signal to the specified
29          process or process group.  If no signal is specified, the TERM
30          signal is sent.
31
32config KILLALL
33        bool "killall"
34        default n
35        depends on KILL
36        help
37          killall sends a signal to all processes running any of the
38          specified commands.  If no signal name is specified, SIGTERM is
39          sent.
40
41config KILLALL5
42        bool "killall5"
43        default n
44        depends on KILL
45
46config NMETER
47        bool "nmeter"
48        default n
49        help
50          Prints selected system stats continuously, one line per update.
51
52config PGREP
53        bool "pgrep"
54        default n
55        help
56          Look for processes by name.
57
58config PIDOF
59        bool "pidof"
60        default n
61        help
62          Pidof finds the process id's (pids) of the named programs. It prints
63          those id's on the standard output.
64
65config FEATURE_PIDOF_SINGLE
66        bool "Enable argument for single shot (-s)"
67        default n
68        depends on PIDOF
69        help
70          Support argument '-s' for returning only the first pid found.
71
72config FEATURE_PIDOF_OMIT
73        bool "Enable argument for omitting pids (-o)"
74        default n
75        depends on PIDOF
76        help
77          Support argument '-o' for omitting the given pids in output.
78          The special pid %PPID can be used to name the parent process
79          of the pidof, in other words the calling shell or shell script.
80
81config PKILL
82        bool "pkill"
83        default n
84        help
85          Send signals to processes by name.
86
87config PS
88        bool "ps"
89        default n
90        help
91          ps gives a snapshot of the current processes.
92
93config FEATURE_PS_WIDE
94        bool "Enable argument for wide output (-w)"
95        default n
96        depends on PS
97        help
98          Support argument 'w' for wide output.
99          If given once, 132 chars are printed and given more than
100          one, the length is unlimited.
101
102config RENICE
103        bool "renice"
104        default n
105        help
106          Renice alters the scheduling priority of one or more running
107          processes.
108
109config BB_SYSCTL
110        bool "sysctl"
111        default n
112        help
113          Configure kernel parameters at runtime.
114
115config TOP
116        bool "top"
117        default n
118        help
119          The top program provides a dynamic real-time view of a running
120          system.
121
122config FEATURE_TOP_CPU_USAGE_PERCENTAGE
123        bool "Show CPU per-process usage percentage (adds 2k bytes)"
124        default y
125        depends on TOP
126        help
127          Make top display CPU usage for each process.
128
129config FEATURE_TOP_CPU_GLOBAL_PERCENTS
130        bool "Show CPU global usage percentage (adds 0.5k bytes)"
131        default y
132        depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
133        help
134          Makes top display "CPU: NN% usr NN% sys..." line.
135
136config FEATURE_TOP_DECIMALS
137        bool "Show 1/10th of a percent in CPU/mem statistics (adds 0.3k bytes)"
138        default n
139        depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
140        help
141          Show 1/10th of a percent in CPU/mem statistics.
142
143config FEATURE_TOPMEM
144        bool "topmem"
145        default n
146        depends on TOP
147        help
148          Enable 's' in top (gives lots of memory info)
149
150config UPTIME
151        bool "uptime"
152        default n
153        help
154          uptime gives a one line display of the current time, how long
155          the system has been running, how many users are currently logged
156          on, and the system load averages for the past 1, 5, and 15 minutes.
157
158config WATCH
159        bool "watch"
160        default n
161        #huh?? select DATE
162        help
163          watch is used to execute a program periodically, showing
164          output to the screen.
165
166
167endmenu
168
Note: See TracBrowser for help on using the repository browser.