Closed rickstals closed 2 years ago
Pretty sure I tested on a 3b. What is the output of: cat /proc/cpuinfo awk '$1 == "Revision" { print $3 }' /proc/cpuinfo
pi@raspberrypi:~ $ cat /proc/cpuinfo processor : 0 BogoMIPS : 38.40 Features : fp asimd evtstrm crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4
processor : 1 BogoMIPS : 38.40 Features : fp asimd evtstrm crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4
processor : 2 BogoMIPS : 38.40 Features : fp asimd evtstrm crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4
processor : 3 BogoMIPS : 38.40 Features : fp asimd evtstrm crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4
Hardware : BCM2835 Revision : 2a22082 Serial : 00000000b991ddb7 Model : Raspberry Pi 3 Model B Rev 1.2
pi@raspberrypi:~ $ awk '$1 == "Revision" { print $3 }' /proc/cpuinfo 2a22082
Everything found had RPis older than an RPi2 using a number for the first number of the revision. I only look for it to start with 0 or 9 now. That should fix your issue.
Thanks for the quick response and adjustment. Worked perfectly.
I tried installing OMV 6 on a Raspberry Pi Model 3B. But it returns: "This RPi1 is not supported (not true armhf)." I run a fresh install of Raspberry Pi OS Lite 64bit. And the installation has worked +/- 1 month ago. Now i see the change 3bfbaa3 of the installScript and i think it has something to do with my issue. Thanks for the help.