diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-03-28 12:55:53 +0000 |
---|---|---|
committer | Raphaƫl Hertzog <hertzog@debian.org> | 2020-04-23 15:46:06 +0200 |
commit | 9a91ca9fde8eb2b15a3294fe95f99990d8cf9227 (patch) | |
tree | 13c818fa581058313e57b41f370f3c721b96283e /scripts/build/config | |
parent | c1dd191a53a4247c106b5917058d91e39e892bc8 (diff) | |
download | vyos-live-build-9a91ca9fde8eb2b15a3294fe95f99990d8cf9227.tar.gz vyos-live-build-9a91ca9fde8eb2b15a3294fe95f99990d8cf9227.zip |
config: obsolete old --tasksel option
note that the bit of code removed from source_debian relies upon a
variable LB_TASKS which itself is an old leftover artefact from before
v4.0.
Gbp-Dch: Short
Diffstat (limited to 'scripts/build/config')
-rwxr-xr-x | scripts/build/config | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/scripts/build/config b/scripts/build/config index 5690d7ad7..674026212 100755 --- a/scripts/build/config +++ b/scripts/build/config @@ -118,7 +118,6 @@ USAGE="${PROGRAM} [--apt apt|apt-get|aptitude]\n\ \t [--swap-file-path PATH]\n\ \t [--swap-file-size MB]\n\ \t [--system live|normal]\n\ -\t [--tasksel apt|aptitude|tasksel]\n\ \t [--uefi-secure-boot auto|enable|disable]\n\ \t [--updates true|false]\n\ \t [--validate]\n\ @@ -817,7 +816,7 @@ Local_arguments () ;; --tasksel) - LB_TASKSEL="${2}" + Echo_warning "--tasksel is an obsolete option" shift 2 ;; @@ -1031,9 +1030,6 @@ LB_MODE="${LB_MODE}" # \$LB_SYSTEM: set system type LB_SYSTEM="${LB_SYSTEM}" -# \$LB_TASKSEL: set tasksel program -LB_TASKSEL="${LB_TASKSEL}" - # live-build options # \$_BREAKPOINTS: enable breakpoints |