mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-24 02:25:28 +00:00
Support super old emulators
This commit is contained in:
parent
f6126dd20e
commit
8794141b7f
@ -29,7 +29,14 @@ mount_sbin() {
|
|||||||
if [ ! -f /system/build.prop ]; then
|
if [ ! -f /system/build.prop ]; then
|
||||||
# Running on PC
|
# Running on PC
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
adb push native/out/x86/busybox scripts/emulator.sh native/out/x86/magiskinit native/out/x86_64/magisk /data/local/tmp
|
tmp="/data/local/tmp"
|
||||||
|
adb push native/out/x86/busybox native/out/x86/magiskinit scripts/emulator.sh $tmp
|
||||||
|
emu_arch=$(adb shell "chmod 777 $tmp/busybox; $tmp/busybox uname -m")
|
||||||
|
if [ "$emu_arch" = "x86_64" ]; then
|
||||||
|
adb push native/out/x86_64/magisk /data/local/tmp
|
||||||
|
else
|
||||||
|
adb push native/out/x86/magisk /data/local/tmp
|
||||||
|
fi
|
||||||
adb shell sh /data/local/tmp/emulator.sh
|
adb shell sh /data/local/tmp/emulator.sh
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user