From 0fdfb52d2941adf7035b3b95204163546a410a2c Mon Sep 17 00:00:00 2001 From: Simone Karin Lehmann Date: Mon, 25 Nov 2019 22:05:34 +0100 Subject: [PATCH] patch for Raspberry Pi 4 reporting as armv7l, whereas Plex only offers armv7hf_neon --- plexupdate.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plexupdate.sh b/plexupdate.sh index 80002be..266b945 100755 --- a/plexupdate.sh +++ b/plexupdate.sh @@ -53,6 +53,8 @@ AUTODELETE=no AUTOUPDATE=no AUTOSTART=no ARCH=$(uname -m) +# patch for Raspberry Pi 4 reporting as armv7l, whereas Plex only offers armv7hf_neon +cat /proc/cpuinfo | grep -q "Raspberry Pi 4" && ARCH=armv7hf_neon BUILD="linux-$ARCH" SHOWPROGRESS=no WGETOPTIONS="" # extra options for wget. Used for progress bar.