From f823bbfb2e81e4a31eeea6d52412983aecc3b1af Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Fri, 2 Jul 2021 08:04:18 +0200 Subject: [PATCH] core-kerneltest: break on armv5tel Armv5tel is not supported anymore. Signed-off-by: Arne Fitzenreiter --- config/rootfiles/core/kerneltest/update.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/rootfiles/core/kerneltest/update.sh b/config/rootfiles/core/kerneltest/update.sh index 6baebb71e4..74a7e70bcd 100644 --- a/config/rootfiles/core/kerneltest/update.sh +++ b/config/rootfiles/core/kerneltest/update.sh @@ -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` -- 2.39.5