Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/debianutils/Config.src

    r2725 r3621  
    88INSERT
    99
    10 config MKTEMP
    11     bool "mktemp"
    12     default y
    13     help
    14       mktemp is used to create unique temporary files
    15 
    16 config PIPE_PROGRESS
    17     bool "pipe_progress"
    18     default y
    19     help
    20       Display a dot to indicate pipe activity.
    21 
    22 config RUN_PARTS
    23     bool "run-parts"
    24     default y
    25     help
    26       run-parts is a utility designed to run all the scripts in a directory.
    27 
    28       It is useful to set up a directory like cron.daily, where you need to
    29       execute all the scripts in that directory.
    30 
    31       In this implementation of run-parts some features (such as report
    32       mode) are not implemented.
    33 
    34       Unless you know that run-parts is used in some of your scripts
    35       you can safely say N here.
    36 
    37 config FEATURE_RUN_PARTS_LONG_OPTIONS
    38     bool "Enable long options"
    39     default y
    40     depends on RUN_PARTS && LONG_OPTS
    41     help
    42       Support long options for the run-parts applet.
    43 
    44 config FEATURE_RUN_PARTS_FANCY
    45     bool "Support additional arguments"
    46     default y
    47     depends on RUN_PARTS
    48     help
    49       Support additional options:
    50       -l --list print the names of the all matching files (not
    51                 limited to executables), but don't actually run them.
    52 
    53 config START_STOP_DAEMON
    54     bool "start-stop-daemon"
    55     default y
    56     help
    57       start-stop-daemon is used to control the creation and
    58       termination of system-level processes, usually the ones
    59       started during the startup of the system.
    60 
    61 config FEATURE_START_STOP_DAEMON_FANCY
    62     bool "Support additional arguments"
    63     default y
    64     depends on START_STOP_DAEMON
    65     help
    66       Support additional arguments.
    67       -o|--oknodo ignored since we exit with 0 anyway
    68       -v|--verbose
    69       -N|--nicelevel N
    70 
    71 config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
    72     bool "Enable long options"
    73     default y
    74     depends on START_STOP_DAEMON && LONG_OPTS
    75     help
    76       Support long options for the start-stop-daemon applet.
    77 
    78 config WHICH
    79     bool "which"
    80     default y
    81     help
    82       which is used to find programs in your PATH and
    83       print out their pathnames.
    84 
    8510endmenu
Note: See TracChangeset for help on using the changeset viewer.