guysoft / FullPageOS

A raspberrypi distro to display a full page browser on boot
GNU General Public License v3.0
3.91k stars 243 forks source link

The hardware on this system lacks support for NEON SIMD extensions. We now require NEON or equivalent architecture extensions on ARM-based machines. #608

Open TheExpertNoob opened 1 day ago

TheExpertNoob commented 1 day ago

Not an issue per-se, but a fix I found for older hardware. Loaded up the latest Nightly (10-28-2024) on a Pi Zero W (2017) with the Raspberry Pi Imager and eventually got a pop-error mentioned in the title. Reverted back to an older version of chromium-browser with the commands mentioned below.

wget https://archive.raspberrypi.org/debian/pool/main/c/chromium-browser/chromium-codecs-ffmpeg-extra_104.0.5112.105-rpt2_armhf.deb

wget https://archive.raspberrypi.org/debian/pool/main/c/chromium-browser/chromium-browser_104.0.5112.105-rpt2_armhf.deb

sudo apt install ./chromium-codecs-ffmpeg-extra_104.0.5112.105-rpt2_armhf.deb

sudo apt install ./chromium-browser_104.0.5112.105-rpt2_armhf.deb

sudo reboot

Hopefully other people that come across this will find this helpful.