core-kerneltest: break on armv5tel

Armv5tel is not supported anymore.

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Arne Fitzenreiter
2021-07-02 08:04:18 +02:00
parent 1746b394f3
commit f823bbfb2e

View 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`