diff options
author | Roland Clobus <rclobus@rclobus.nl> | 2019-05-29 14:32:27 +0200 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2019-06-03 10:48:58 +0000 |
commit | 3607219f69ec02febd7e0f9b77e2e6f34944c064 (patch) | |
tree | f4693089d87a014ff2711e23cdca9fbe7a0e5151 /scripts/build/config | |
parent | 0e03c34edba774bf459aab20d7a334faca2236ba (diff) | |
download | vyos-live-build-3607219f69ec02febd7e0f9b77e2e6f34944c064.tar.gz vyos-live-build-3607219f69ec02febd7e0f9b77e2e6f34944c064.zip |
Do not store _QUIET in the configuration file, otherwise the overrides
in the command line get ignored. Adds a documentation line for the other
command line options as well.
Diffstat (limited to 'scripts/build/config')
-rwxr-xr-x | scripts/build/config | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/build/config b/scripts/build/config index 4fb6680b5..a4faa190e 100755 --- a/scripts/build/config +++ b/scripts/build/config @@ -996,26 +996,32 @@ LB_TASKSEL="${LB_TASKSEL}" # live-build options # \$_BREAKPOINTS: enable breakpoints +# If set here, overrides the command line option # (Default: ${_BREAKPOINTS}) #_BREAKPOINTS="${_BREAKPOINTS}" # \$_DEBUG: enable debug +# If set here, overrides the command line option # (Default: ${_DEBUG}) #_DEBUG="${_DEBUG}" # \$_COLOR: enable color +# If set here, overrides the command line option # (Default: ${_COLOR}) #_COLOR="${_COLOR}" # \$_FORCE: enable force +# If set here, overrides the command line option # (Default: ${_FORCE}) #_FORCE="${_FORCE}" # \$_QUIET: enable quiet +# If set here, overrides the command line option # (Default: ${_QUIET}) -_QUIET="${_QUIET}" +#_QUIET="${_QUIET}" # \$_VERBOSE: enable verbose +# If set here, overrides the command line option # (Default: ${_VERBOSE}) #_VERBOSE="${_VERBOSE}" |