summaryrefslogtreecommitdiffstats
path: root/rules/procps.in
blob: baf6514b524f6e76dc540912e8852a968c8fc6a4 (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
62
63
64
65
66
67
68
69
70
71
72
## SECTION=shell_and_console

menuconfig PROCPS
	tristate
	prompt "procps                        "
	select GCCLIBS_GCC_S
	select NCURSES		if PROCPS_TOP
	select NCURSES		if PROCPS_SLABTOP
	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 || ALLYES
	help
	  The  top  program provides a dynamic real-time view of a running
	  system.
	  Note: This command enlarges your system by the ncurses library.

comment "busybox' top is selected!"
	depends on BUSYBOX_TOP

config PROCPS_SLABTOP
	bool
	prompt "slabtop"
	help
	  display kernel slab cache information in real time
	  Note: This command enlarges your system by the ncurses library.

config PROCPS_SYSCTL
	bool
	prompt "sysctl"
	depends on !BUSYBOX_BB_SYSCTL || ALLYES
	help
	  configure kernel parameters at runtime

comment "busybox' sysctl is selected!"
	depends on BUSYBOX_BB_SYSCTL

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

comment "busybox' ps is selected!"
	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"
	depends on !BUSYBOX_PGREP || ALLYES
	help
	  look up processes based on name and other attributes

comment "busybox' pgrep is selected!"
	depends on BUSYBOX_PGREP

endif