OpenMediaVault-Plugin-Developers / installScript

script that installs omv-extras and openmediavault if not installed already.
1.1k stars 207 forks source link

Raspberry Pi Model 3B -> "This RPi1 is not supported (not true armhf)." #82

Closed rickstals closed 2 years ago

rickstals commented 2 years ago

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.

ryecoaaron commented 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

rickstals commented 2 years ago

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

ryecoaaron commented 2 years ago

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.

ryecoaaron commented 2 years ago

https://github.com/OpenMediaVault-Plugin-Developers/installScript/commit/2bd55cf79fa99f1bc92516a334380b747ae26339

rickstals commented 2 years ago

Thanks for the quick response and adjustment. Worked perfectly.