From 2bd55cf79fa99f1bc92516a334380b747ae26339 Mon Sep 17 00:00:00 2001 From: Aaron Murray Date: Mon, 14 Feb 2022 15:28:52 -0600 Subject: [PATCH] improve rpi version check --- install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install b/install index b099349..52b89a5 100755 --- a/install +++ b/install @@ -13,7 +13,7 @@ # https://github.com/armbian/config/blob/master/debian-software # https://forum.openmediavault.org/index.php/Thread/25062-Install-OMV5-on-Debian-10-Buster/ # -# version: 1.6.10 +# version: 1.6.11 # if [[ $(id -u) -ne 0 ]]; then @@ -185,7 +185,7 @@ fi if grep -rq raspberrypi.org /etc/apt/*; then rpivers="$(awk '$1 == "Revision" { print $3 }' /proc/cpuinfo)" echo "RPi revision code :: ${rpivers}" - if [[ "${rpivers:0:1}" =~ [0-9] ]]; then + if [[ "${rpivers:0:1}" =~ [09] ]]; then echo "This RPi1 is not supported (not true armhf). Exiting..." exit 7 fi