OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 # DO NOT EDIT. This file is generated from Config.src
2 #
3 # For a description of the syntax of this configuration file,
3 office 4 # see scripts/kbuild/config-language.txt.
1 office 5 #
6  
7 menu "Debian Utilities"
8  
9 config BUSYBOX_CONFIG_PIPE_PROGRESS
3 office 10 bool "pipe_progress"
1 office 11 default BUSYBOX_DEFAULT_PIPE_PROGRESS
12 help
3 office 13 Display a dot to indicate pipe activity.
1 office 14 config BUSYBOX_CONFIG_RUN_PARTS
3 office 15 bool "run-parts"
1 office 16 default BUSYBOX_DEFAULT_RUN_PARTS
17 help
3 office 18 run-parts is a utility designed to run all the scripts in a directory.
1 office 19  
3 office 20 It is useful to set up a directory like cron.daily, where you need to
21 execute all the scripts in that directory.
1 office 22  
3 office 23 In this implementation of run-parts some features (such as report
24 mode) are not implemented.
1 office 25  
3 office 26 Unless you know that run-parts is used in some of your scripts
27 you can safely say N here.
1 office 28  
29 config BUSYBOX_CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS
30 bool "Enable long options"
31 default BUSYBOX_DEFAULT_FEATURE_RUN_PARTS_LONG_OPTIONS
32 depends on BUSYBOX_CONFIG_RUN_PARTS && BUSYBOX_CONFIG_LONG_OPTS
33  
34 config BUSYBOX_CONFIG_FEATURE_RUN_PARTS_FANCY
35 bool "Support additional arguments"
36 default BUSYBOX_DEFAULT_FEATURE_RUN_PARTS_FANCY
37 depends on BUSYBOX_CONFIG_RUN_PARTS
38 help
3 office 39 Support additional options:
40 -l --list print the names of the all matching files (not
41 limited to executables), but don't actually run them.
1 office 42 config BUSYBOX_CONFIG_START_STOP_DAEMON
3 office 43 bool "start-stop-daemon"
1 office 44 default BUSYBOX_DEFAULT_START_STOP_DAEMON
45 help
3 office 46 start-stop-daemon is used to control the creation and
47 termination of system-level processes, usually the ones
48 started during the startup of the system.
1 office 49  
50 config BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS
51 bool "Enable long options"
52 default BUSYBOX_DEFAULT_FEATURE_START_STOP_DAEMON_LONG_OPTIONS
53 depends on BUSYBOX_CONFIG_START_STOP_DAEMON && BUSYBOX_CONFIG_LONG_OPTS
54  
55 config BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_FANCY
56 bool "Support additional arguments"
57 default BUSYBOX_DEFAULT_FEATURE_START_STOP_DAEMON_FANCY
58 depends on BUSYBOX_CONFIG_START_STOP_DAEMON
59 help
3 office 60 -o|--oknodo ignored since we exit with 0 anyway
61 -v|--verbose
62 -N|--nicelevel N
1 office 63 config BUSYBOX_CONFIG_WHICH
3 office 64 bool "which"
1 office 65 default BUSYBOX_DEFAULT_WHICH
66 help
3 office 67 which is used to find programs in your PATH and
68 print out their pathnames.
1 office 69  
70 endmenu