From abebe5642c61e5d7b2fc6e3e3b52a2fe54d85c17 Mon Sep 17 00:00:00 2001 From: Botspot Date: Fri, 27 Aug 2021 22:43:26 -0500 Subject: [PATCH] api: is_supported_system: check for i686 --- api | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api b/api index a63ede3..3554a12 100755 --- a/api +++ b/api @@ -393,7 +393,7 @@ apt_lock_wait() { #Wait until other apt processes are finished before proceeding } is_supported_system() { - if uname -m | grep -q 'x86' ;then + if uname -m | grep -q 'x86' || uname -m | grep -q 'i686' || uname -m | grep -q 'i386';then echo "Pi-Apps is not supported on x86 processors. Expect almost all apps to fail. Consider switching to this x86 port of Pi-Apps: https://github.com/MCRaspRBX/pi-apps-x86" return 1 elif [[ "$(cat /etc/os-release | grep VERSION_CODENAME | tr -d '"' | awk -F= '{print $2}')" == @(stretch|wheezy|jessie) ]];then