diff options
author | Daniel Baumann <daniel@debian.org> | 2009-01-15 14:49:20 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:40 +0100 |
commit | 03cfa3a0642426ad8044cc77768ab1b1190ededc (patch) | |
tree | db63edd64ede8b64df7b29a8fece61c8bcd82beb | |
parent | 473f5623b6fe4379aa2d845ee121dec06b9290be (diff) | |
download | vyos-live-build-03cfa3a0642426ad8044cc77768ab1b1190ededc.tar.gz vyos-live-build-03cfa3a0642426ad8044cc77768ab1b1190ededc.zip |
Unsupported bootloader/image type combinations are errors, not warning.
-rwxr-xr-x | functions/defaults.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 390d9e532..e7eb2f56a 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -806,7 +806,7 @@ Check_defaults () # grub or yaboot + usb-hdd case "${LH_BOOTLOADER}" in grub|yaboot) - Echo_warning "You have selected a combination of bootloader and image type that is currently not supported by live-helper. Please use either another bootloader or a different image type." + Echo_error "You have selected a combination of bootloader and image type that is currently not supported by live-helper. Please use either another bootloader or a different image type." exit 1 ;; esac |