|
|
|
@ -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
|
|
|
|
|