immortalwrt/package/utils/busybox/config/procps/Config.in

274 lines
8.7 KiB
Plaintext
Raw Normal View History

2017-09-06 19:19:45 +08:00
# DO NOT EDIT. This file is generated from Config.src
#
# For a description of the syntax of this configuration file,
2019-11-16 08:36:43 +08:00
# see docs/Kconfig-language.txt.
2017-09-06 19:19:45 +08:00
#
menu "Process Utilities"
config BUSYBOX_CONFIG_FREE
2019-11-16 08:36:43 +08:00
bool "free (3.1 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_FREE
select BUSYBOX_CONFIG_PLATFORM_LINUX #sysinfo()
help
2019-11-16 08:36:43 +08:00
free displays the total amount of free and used physical and swap
memory in the system, as well as the buffers used by the kernel.
The shared memory column should be ignored; it is obsolete.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FUSER
2019-11-16 08:36:43 +08:00
bool "fuser (7 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_FUSER
help
2019-11-16 08:36:43 +08:00
fuser lists all PIDs (Process IDs) that currently have a given
file open. fuser can also list all PIDs that have a given network
(TCP or UDP) port open.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_IOSTAT
2019-11-16 08:36:43 +08:00
bool "iostat (7.6 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_IOSTAT
help
2019-11-16 08:36:43 +08:00
Report CPU and I/O statistics
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_KILL
2019-11-16 08:36:43 +08:00
bool "kill (3.1 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_KILL
help
2019-11-16 08:36:43 +08:00
The command kill sends the specified signal to the specified
process or process group. If no signal is specified, the TERM
signal is sent.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_KILLALL
2019-11-16 08:36:43 +08:00
bool "killall (5.6 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_KILLALL
help
2019-11-16 08:36:43 +08:00
killall sends a signal to all processes running any of the
specified commands. If no signal name is specified, SIGTERM is
sent.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_KILLALL5
2019-11-16 08:36:43 +08:00
bool "killall5 (5.3 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_KILLALL5
help
2019-11-16 08:36:43 +08:00
The SystemV killall command. killall5 sends a signal
to all processes except kernel threads and the processes
in its own session, so it won't kill the shell that is running
the script it was called from.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_LSOF
2019-11-16 08:36:43 +08:00
bool "lsof (3.4 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_LSOF
help
2019-11-16 08:36:43 +08:00
Show open files in the format of:
PID <TAB> /path/to/executable <TAB> /path/to/opened/file
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_MPSTAT
2019-11-16 08:36:43 +08:00
bool "mpstat (9.8 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_MPSTAT
help
2019-11-16 08:36:43 +08:00
Per-processor statistics
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_NMETER
2019-11-16 08:36:43 +08:00
bool "nmeter (11 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_NMETER
help
2019-11-16 08:36:43 +08:00
Prints selected system stats continuously, one line per update.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_PGREP
2019-11-16 08:36:43 +08:00
bool "pgrep (6.5 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_PGREP
help
2019-11-16 08:36:43 +08:00
Look for processes by name.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_PKILL
2019-11-16 08:36:43 +08:00
bool "pkill (7.5 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_PKILL
help
2019-11-16 08:36:43 +08:00
Send signals to processes by name.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_PIDOF
2019-11-16 08:36:43 +08:00
bool "pidof (6.3 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_PIDOF
help
2019-11-16 08:36:43 +08:00
Pidof finds the process id's (pids) of the named programs. It prints
those id's on the standard output.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE
bool "Enable single shot (-s)"
default BUSYBOX_DEFAULT_FEATURE_PIDOF_SINGLE
depends on BUSYBOX_CONFIG_PIDOF
help
2019-11-16 08:36:43 +08:00
Support '-s' for returning only the first pid found.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT
bool "Enable omitting pids (-o PID)"
default BUSYBOX_DEFAULT_FEATURE_PIDOF_OMIT
depends on BUSYBOX_CONFIG_PIDOF
help
2019-11-16 08:36:43 +08:00
Support '-o PID' for omitting the given pid(s) in output.
The special pid %PPID can be used to name the parent process
of the pidof, in other words the calling shell or shell script.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_PMAP
2019-11-16 08:36:43 +08:00
bool "pmap (6 kb)"
default BUSYBOX_DEFAULT_PMAP
help
Display processes' memory mappings.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_POWERTOP
2019-11-16 08:36:43 +08:00
bool "powertop (9.6 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_POWERTOP
help
2019-11-16 08:36:43 +08:00
Analyze power consumption on Intel-based laptops
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_POWERTOP_INTERACTIVE
bool "Accept keyboard commands"
default BUSYBOX_DEFAULT_FEATURE_POWERTOP_INTERACTIVE
depends on BUSYBOX_CONFIG_POWERTOP
help
2019-11-16 08:36:43 +08:00
Without this, powertop will only refresh display every 10 seconds.
No keyboard commands will work, only ^C to terminate.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_PS
2019-11-16 08:36:43 +08:00
bool "ps (11 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_PS
help
2019-11-16 08:36:43 +08:00
ps gives a snapshot of the current processes.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_PS_WIDE
2019-11-16 08:36:43 +08:00
bool "Enable wide output (-w)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_FEATURE_PS_WIDE
2019-11-16 08:36:43 +08:00
depends on (BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_MINIPS) && !BUSYBOX_CONFIG_DESKTOP
2017-09-06 19:19:45 +08:00
help
2019-11-16 08:36:43 +08:00
Support argument 'w' for wide output.
If given once, 132 chars are printed, and if given more
than once, the length is unlimited.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_PS_LONG
2019-11-16 08:36:43 +08:00
bool "Enable long output (-l)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_FEATURE_PS_LONG
2019-11-16 08:36:43 +08:00
depends on (BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_MINIPS) && !BUSYBOX_CONFIG_DESKTOP
2017-09-06 19:19:45 +08:00
help
2019-11-16 08:36:43 +08:00
Support argument 'l' for long output.
Adds fields PPID, RSS, START, TIME & TTY
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_PS_TIME
2019-11-16 08:36:43 +08:00
bool "Enable -o time and -o etime specifiers"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_FEATURE_PS_TIME
2019-11-16 08:36:43 +08:00
depends on (BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_MINIPS) && BUSYBOX_CONFIG_DESKTOP
2017-09-06 19:19:45 +08:00
select BUSYBOX_CONFIG_PLATFORM_LINUX
config BUSYBOX_CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS
bool "Support Linux prior to 2.4.0 and non-ELF systems"
default BUSYBOX_DEFAULT_FEATURE_PS_UNUSUAL_SYSTEMS
depends on BUSYBOX_CONFIG_FEATURE_PS_TIME
help
2019-11-16 08:36:43 +08:00
Include support for measuring HZ on old kernels and non-ELF systems
(if you are on Linux 2.4.0+ and use ELF, you don't need this)
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS
2019-11-16 08:36:43 +08:00
bool "Enable -o rgroup, -o ruser, -o nice specifiers"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_FEATURE_PS_ADDITIONAL_COLUMNS
2019-11-16 08:36:43 +08:00
depends on (BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_MINIPS) && BUSYBOX_CONFIG_DESKTOP
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_PSTREE
2019-11-16 08:36:43 +08:00
bool "pstree (9.3 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_PSTREE
help
2019-11-16 08:36:43 +08:00
Display a tree of processes.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_PWDX
2019-11-16 08:36:43 +08:00
bool "pwdx (3.7 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_PWDX
help
2019-11-16 08:36:43 +08:00
Report current working directory of a process
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_SMEMCAP
2019-11-16 08:36:43 +08:00
bool "smemcap (2.5 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_SMEMCAP
help
2019-11-16 08:36:43 +08:00
smemcap is a tool for capturing process data for smem,
a memory usage statistic tool.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_BB_SYSCTL
2019-11-16 08:36:43 +08:00
bool "sysctl (7.4 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_BB_SYSCTL
help
2019-11-16 08:36:43 +08:00
Configure kernel parameters at runtime.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_TOP
2019-11-16 08:36:43 +08:00
bool "top (18 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_TOP
help
2019-11-16 08:36:43 +08:00
The top program provides a dynamic real-time view of a running
system.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_TOP_INTERACTIVE
bool "Accept keyboard commands"
default BUSYBOX_DEFAULT_FEATURE_TOP_INTERACTIVE
depends on BUSYBOX_CONFIG_TOP
help
2019-11-16 08:36:43 +08:00
Without this, top will only refresh display every 5 seconds.
No keyboard commands will work, only ^C to terminate.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
bool "Show CPU per-process usage percentage"
default BUSYBOX_DEFAULT_FEATURE_TOP_CPU_USAGE_PERCENTAGE
depends on BUSYBOX_CONFIG_TOP
help
2019-11-16 08:36:43 +08:00
Make top display CPU usage for each process.
This adds about 2k.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
bool "Show CPU global usage percentage"
default BUSYBOX_DEFAULT_FEATURE_TOP_CPU_GLOBAL_PERCENTS
depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
help
2019-11-16 08:36:43 +08:00
Makes top display "CPU: NN% usr NN% sys..." line.
This adds about 0.5k.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU
bool "SMP CPU usage display ('c' key)"
default BUSYBOX_DEFAULT_FEATURE_TOP_SMP_CPU
depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
help
2019-11-16 08:36:43 +08:00
Allow 'c' key to switch between individual/cumulative CPU stats
This adds about 0.5k.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS
bool "Show 1/10th of a percent in CPU/mem statistics"
default BUSYBOX_DEFAULT_FEATURE_TOP_DECIMALS
depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
help
2019-11-16 08:36:43 +08:00
Show 1/10th of a percent in CPU/mem statistics.
This adds about 0.3k.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_TOP_SMP_PROCESS
bool "Show CPU process runs on ('j' field)"
default BUSYBOX_DEFAULT_FEATURE_TOP_SMP_PROCESS
depends on BUSYBOX_CONFIG_TOP
help
2019-11-16 08:36:43 +08:00
Show CPU where process was last found running on.
This is the 'j' field.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_TOPMEM
bool "Topmem command ('s' key)"
default BUSYBOX_DEFAULT_FEATURE_TOPMEM
depends on BUSYBOX_CONFIG_TOP
help
2019-11-16 08:36:43 +08:00
Enable 's' in top (gives lots of memory info).
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_UPTIME
2019-11-16 08:36:43 +08:00
bool "uptime (3.7 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_UPTIME
select BUSYBOX_CONFIG_PLATFORM_LINUX #sysinfo()
help
2019-11-16 08:36:43 +08:00
uptime gives a one line display of the current time, how long
the system has been running, how many users are currently logged
on, and the system load averages for the past 1, 5, and 15 minutes.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_UPTIME_UTMP_SUPPORT
bool "Show the number of users"
default BUSYBOX_DEFAULT_FEATURE_UPTIME_UTMP_SUPPORT
depends on BUSYBOX_CONFIG_UPTIME && BUSYBOX_CONFIG_FEATURE_UTMP
help
2019-11-16 08:36:43 +08:00
Display the number of users currently logged on.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_WATCH
2019-11-16 08:36:43 +08:00
bool "watch (4.4 kb)"
2017-09-06 19:19:45 +08:00
default BUSYBOX_DEFAULT_WATCH
help
2019-11-16 08:36:43 +08:00
watch is used to execute a program periodically, showing
output to the screen.
2017-09-06 19:19:45 +08:00
config BUSYBOX_CONFIG_FEATURE_SHOW_THREADS
bool "Support thread display in ps/pstree/top"
default BUSYBOX_DEFAULT_FEATURE_SHOW_THREADS
depends on BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_TOP || BUSYBOX_CONFIG_PSTREE
help
2019-11-16 08:36:43 +08:00
Enables the ps -T option, showing of threads in pstree,
and 'h' command in top.
2017-09-06 19:19:45 +08:00
endmenu