diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-04-24 01:00:20 +0100 |
---|---|---|
committer | Raphaƫl Hertzog <hertzog@debian.org> | 2020-04-26 12:55:18 +0000 |
commit | 997a7f73f9c253a53562431b272859b8eadc5d28 (patch) | |
tree | e6e9a853738c323115c461463daf6c7e300f63d0 /functions | |
parent | 70c0aa4075e2c17114556bcef6f0c9948ff35b5b (diff) | |
download | vyos-live-build-997a7f73f9c253a53562431b272859b8eadc5d28.tar.gz vyos-live-build-997a7f73f9c253a53562431b272859b8eadc5d28.zip |
config: remove redundant validation check
this is already covered by the check above it
Gbp-Dch: Ignore
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/configuration.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/functions/configuration.sh b/functions/configuration.sh index ef34a990d..4adba4485 100755 --- a/functions/configuration.sh +++ b/functions/configuration.sh @@ -714,9 +714,4 @@ Validate_config_dependencies () exit 1 fi fi - - if [ "${LB_IMAGE_TYPE}" = "hdd" ] && [ "${LB_FIRST_BOOTLOADER}" = "grub-legacy" ]; then - Echo_error "You have selected a combination of bootloader and image type that is currently not supported by live-build. Please use either another bootloader or a different image type." - exit 1 - fi } |