File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -48,14 +48,16 @@ check_busybox()
48
48
export device_architecture=$( do_shell " uname -m" )
49
49
export busybox_exists=$( do_shell " if [ -d /sbin/busybox ]; then echo true; else echo false; fi" )
50
50
51
- if [ $busybox_exists = " true" ]; then
51
+ if [ $busybox_exists = true ]; then
52
52
echo ' Using already installed busybox'
53
53
else
54
54
if [ $device_architecture = x86_64 ]; then
55
55
wget https://github.com/meefik/busybox/raw/master/app/src/main/assets/intel/static/bin/busybox
56
56
elif [ $device_architecture = armv7l ]; then
57
57
wget https://github.com/meefik/busybox/raw/master/app/src/main/assets/arm/static/bin/busybox
58
- elif [ $device_architecture = arm64 ]; then
58
+ elif [ $device_architecture = aarch64 ]; then
59
+ wget https://github.com/meefik/busybox/raw/master/app/src/main/assets/arm/static/bin/busybox
60
+ elif [ $device_architecture = armv8l ]; then
59
61
wget https://github.com/meefik/busybox/raw/master/app/src/main/assets/arm/static/bin/busybox
60
62
fi
61
63
You can’t perform that action at this time.
0 commit comments