Prerequisites
- 公对公 USB 线
- Windows 操纵系统
- AMLogic USB Burning Tool
打开终端,输入 hdwwiz
打开添加硬件向导。
安装我手动从列表选择的硬件
> 显示所有设备 -> Amlogic, Inc. -> android_winusb
- 打开 adb
$Env:N1_IP = "192.168.1.10" # 替换为 N1 盒子的 IP
# 启用 root 权限
./adb kill-server
./adb connect $Env:N1_IP # 连接 N1 盒子
./adb devices -l | findstr "p230" # 检查是否连接成功
./adb shell setprop service.phiadb.root 1
./adb shell setprop service.adb.root 1
# remount
./adb kill-server
./adb connect $Env:N1_IP # 连接 N1 盒子
./adb devices -l | findstr "p230" # 检查是否连接成功
./adb remount
# 刷入降级 boot 映像
./adb push boot.img /sdcard/boot.img
./adb shell dd if=/sdcard/boot.img of=/dev/block/boot
./adb shell rm -f /sdcard/boot.img
./adb shell reboot update
标签:shell,img,IP,boot,刷机,adb,N1,斐讯
From: https://www.cnblogs.com/Undefined443/p/18384766