From cce064ca2d82f6962b2ea607ed350dcbba4ffd0c Mon Sep 17 00:00:00 2001 From: dlgt7 <102397160+dlgt7@users.noreply.github.com> Date: Sat, 6 Sep 2025 23:26:33 +0800 Subject: [PATCH] =?UTF-8?q?Update=20=E9=AD=94=E7=99=BE=E7=9B=92=E7=B3=BB?= =?UTF-8?q?=E5=88=97.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 魔百盒系列.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/魔百盒系列.md b/魔百盒系列.md index 7096bde..f2af63f 100644 --- a/魔百盒系列.md +++ b/魔百盒系列.md @@ -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 ---