setup_busybox() 64bit arm detection

merge-requests/35/head
Christopher Roy Bratusek 3 years ago
parent a05fdf8e71
commit 3d2aa1143a

@ -882,7 +882,7 @@ nanodroid_finalize () {
setup_busybox () {
case $(uname -m) in
arm* ) local bb_arch=arm ;;
arm* | aarch* ) local bb_arch=arm ;;
x86* ) local bb_arch=x86 ;;
* ) error "arch \"$(uname -m)\" is not supported"
esac

@ -333,7 +333,7 @@ detect_odex () {
setup_busybox () {
case $(uname -m) in
arm* ) local bb_arch=arm ;;
arm* | aarch* ) local bb_arch=arm ;;
x86* ) local bb_arch=x86 ;;
* ) error "arch \"$(uname -m)\" is not supported"
esac

@ -314,7 +314,7 @@ grep_cmdline() {
setup_busybox () {
case $(uname -m) in
arm* ) local bb_arch=arm ;;
arm* | aarch* ) local bb_arch=arm ;;
x86* ) local bb_arch=x86 ;;
* ) error "arch \"$(uname -m)\" is not supported"
esac

@ -66,7 +66,7 @@ setup_busybox () {
unzip -oq "${ZIP}" busybox.x86 -d "/dev/tmp"
case $(uname -m) in
arm* ) local bb_arch=arm ;;
arm* | aarch* ) local bb_arch=arm ;;
x86* ) local bb_arch=x86 ;;
* ) error "arch \"$(uname -m)\" is not supported"
esac

Loading…
Cancel
Save