]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
core-kerneltest: break on armv5tel
authorArne Fitzenreiter <arne_f@ipfire.org>
Fri, 2 Jul 2021 06:04:18 +0000 (08:04 +0200)
committerArne Fitzenreiter <arne_f@ipfire.org>
Mon, 5 Jul 2021 05:42:40 +0000 (07:42 +0200)
Armv5tel is not supported anymore.

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
config/rootfiles/core/kerneltest/update.sh

index 6baebb71e428e100ede9cff53c0c86153413869a..74a7e70bcd511310eb853a69b9fa6ad4b58a1e1b 100644 (file)
@@ -62,6 +62,11 @@ esac
 if [ -e /boot/grub/grub.conf ]; then
        exit_with_error "ERROR unsupported GRUB1/pygrub found!" 1
 fi
+case $(uname -m) in
+       armv5tel)
+               exit_with_error "ERROR cannot update. armv5tel is EOL." 1
+               ;;
+esac
 
 # Check diskspace on root
 ROOTSPACE=`df / -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`