All scripts use api's new arch-detection now

pull/904/head
Botspot 4 years ago
parent 291fb177e8
commit fe44f16e75

@ -23,7 +23,9 @@ sudo rm -f /etc/apt/sources.list.d/box86.list || error "Failed to remove repo!"
echo "removing box86 repo key..."
sudo apt-key remove "5DBC E818 72C0 609D 3C47 61AA EB3C E9A3 37EC DFA4" || error "Failed to remove key!"
if [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 64)" ]; then
#to set $arch variable
source "${DIRECTORY}/api" || error "failed to source ${DIRECTORY}/api"
if [ "$arch" == 64 ]; then
sudo dpkg --remove-architecture armhf || warning "armhf architecture should be removed by now, but it isn't!"
check-armhf
@ -31,7 +33,7 @@ if [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 64)" ]; then
warning "You probably have some other programs using it, remove it by running 'sudo dpkg --remove-architecture armhf'."
fi
elif [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 32)" ]; then
elif [ "$arch" == 32 ]; then
#32-bit
true #do nothing
else

@ -7,11 +7,13 @@ function error {
exit 1
}
if [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 64)" ];then
#to set $arch variable
source "${DIRECTORY}/api" || error "failed to source ${DIRECTORY}/api"
if [ "$arch" == 64 ];then
#COMMANDS TO UNINSTALL 64BIT
"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1
elif [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 32)" ];then
elif [ "$arch" == 32 ];then
#COMMANDS TO UNINSTALL 32BIT
sudo apt purge remarkable -y || error "Failed to purge remarkable package!"
sudo apt autoremove -y

@ -7,13 +7,11 @@ function error {
exit 1
}
source "${DIRECTORY}/api" || error "failed to source ${DIRECTORY}/api"
if [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 64)" ];then
#arch=64
if [ "$arch" == 64 ];then
sudo apt purge sublime-text
elif [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 32)" ];then
#arch=32
elif [ "$arch" == 32 ];then
rm -f ~/.local/share/applications/sublime-text.desktop
rm -rf ~/"Sublime Text 2"
else

@ -20,15 +20,6 @@ mkdir -p "${DIRECTORY}/data/status" "${DIRECTORY}/data/update-status" "${DIRECTO
#remove week-old logfiles
find "$DIRECTORY/logs" -type f -mtime +7 -exec rm -f {} \; &>/dev/null &
#determine if host system is 64 bit arm64 or 32 bit armhf
if [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 64)" ];then
arch=64
elif [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 32)" ];then
arch=32
else
error "Failed to detect OS CPU architecture! Something is very wrong."
fi
#Ensure running arm processor
if uname -m | grep -q 'x86' ;then
error "Pi-Apps is not not supported on x86 processors."

@ -10,14 +10,7 @@ function error {
exit 1
}
#determine if host system is 64 bit arm64 or 32 bit armhf
if [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 64)" ];then
arch=64
elif [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 32)" ];then
arch=32
else
error "Failed to detect OS CPU architecture! Something is very wrong."
fi
source "${DIRECTORY}/api" || error "failed to source ${DIRECTORY}/api"
#yad or xlunch format
format="$1"

Loading…
Cancel
Save