Update 魔百盒系列.md

This commit is contained in:
dlgt7
2025-09-06 23:26:33 +08:00
committed by GitHub
parent 4e2f21a5c3
commit cce064ca2d
+13
View File
@@ -72,20 +72,33 @@ saveenv
## 6️⃣ 国科微 & 无 TTL 机型:免拆 ADB 装桌面
前提:能开 ADB(数字验证码可用计算器解)。
保存为 mbh_micro.sh → 执行:
adb shell sh /sdcard/mbh_micro.sh
脚本内容:
#!/system/bin/sh
mount -o remount,rw /system
mount -o remount,rw /data
cp /mnt/usb/sda1/dbzm.apk /data/app/
cp /mnt/usb/sda1/dbsc.apk /data/app/
chmod 644 /data/app/dbzm.apk
chmod 644 /data/app/dbsc.apk
pm install -r /data/app/dbzm.apk
pm install -r /data/app/dbsc.apk
am start com.dangbei.tvlauncher
---