summaryrefslogtreecommitdiffstats
path: root/rules/procps.in
blob: 45d5849ab99fa978ea2841b73c441682696d2316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
## SECTION=shell_and_console
menuconfig PROCPS
	tristate
	prompt "procps                        "
	select NCURSES
	help
	  The procps package contains a set of system utilities that provide
	   system information.

if PROCPS

config PROCPS_TOP
	bool
	prompt "top"
	depends on !BUSYBOX_TOP
	help
	  FIXME: This item needs to be documented

comment "top is disabled by busybox top"
	depends on BUSYBOX_TOP

config PROCPS_SLABTOP
	bool
	prompt "slabtop"
	help
	  display kernel slab cache information in real time

config PROCPS_SYSCTL
	bool
	prompt "sysctl"
	depends on !BUSYBOX_SYSCTL
	help
	  configure kernel parameters at runtime

comment "sysctl is disabled by busybox sysctl"
	depends on BUSYBOX_SYSCTL

config PROCPS_PS
	bool
	prompt "ps"
	depends on !BUSYBOX_PS
	help
	  ps stands for process status. With this command you
	  analyse current states of all processes running on
	  the system

comment "ps is disabled by busybox ps"
	depends on BUSYBOX_PS

config PROCPS_W
	bool
	prompt "w"
	help
	  Show who is logged on and what they are doing.

config PROCPS_PGREP
	bool
	prompt "pgrep"
	help
	  look up processes based on name and other attributes
endif