diff options
author | Daniel Baumann <daniel@debian.org> | 2010-02-17 14:57:12 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:04 +0100 |
commit | 67af4a1ce98acf4de7b71b7c0e11091b9826abeb (patch) | |
tree | cc46ffa39200c60120ef6eff7da468cef0d31fdd /functions | |
parent | 2cc07bd7cd85fe229e79f091e57f062bdd65d99a (diff) | |
download | vyos-live-build-67af4a1ce98acf4de7b71b7c0e11091b9826abeb.tar.gz vyos-live-build-67af4a1ce98acf4de7b71b7c0e11091b9826abeb.zip |
Updating error message on arm/armel regarding kernel flavour selection.
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/defaults.sh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 13399c327..79993f0e5 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -440,6 +440,12 @@ Set_defaults () if [ -z "${LH_LINUX_FLAVOURS}" ] then case "${LH_ARCHITECTURE}" in + arm|armel) + Echo_error "There is no default kernel flavour defined for your architecture." + Echo_error "Please configure it manually with 'lh config -k FLAVOUR'." + exit 1 + ;; + alpha) case "${LH_MODE}" in ubuntu) @@ -530,11 +536,6 @@ Set_defaults () LH_LINUX_FLAVOURS="sparc64" ;; - arm|armel|m68k) - Echo_error "You need to specify the linux kernel flavour manually on ${LH_ARCHITECTURE} (FIXME)." - exit 1 - ;; - *) Echo_error "Architecture ${LH_ARCHITECTURE} not yet supported (FIXME)" exit 1 |