A missing securetty file is not an error.
[oweals/busybox.git] / 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 mainmenu_option next_comment
7 comment 'Process Utilities'
8
9 bool 'free'         CONFIG_FREE
10 bool 'kill'         CONFIG_KILL
11 bool 'killall'      CONFIG_KILLALL
12 if [ "$CONFIG_KILLALL" = "y" -a "$CONFIG_KILL" = "n" ] ; then
13     define_bool CONFIG_KILL     y
14 fi
15 bool 'pidof'        CONFIG_PIDOF
16 bool 'ps'           CONFIG_PS
17 if [ "$CONFIG_PS" = "y" ] ; then
18     bool '  Use devps instead of /proc (needs a patched kernel)'        CONFIG_FEATURE_USE_DEVPS_PATCH
19 fi
20 bool 'renice'       CONFIG_RENICE
21 bool 'top'          CONFIG_TOP
22 if [ "$CONFIG_TOP" = "y" ] ; then
23     bool '  Support show CPU usage percentage (add 2k bytes)'        FEATURE_CPU_USAGE_PERCENTAGE
24 fi
25 bool 'uptime'       CONFIG_UPTIME
26 endmenu
27