斐讯 N1 刷机记录

Prerequisites

降级

打开终端,输入 hdwwiz 打开添加硬件向导。

安装我手动从列表选择的硬件 > 显示所有设备 -> Amlogic, Inc. -> android_winusb

  1. adb 启用 root 权限
$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
  1. 刷入降级固件
# 刷入降级 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 reboot

进入线刷模式

  1. adb 启用 root 权限
$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
  1. 将 USB 公对公线一端插入 N1 盒子靠近 HDMI 的 USB 口,一端插入电脑,然后运行如下命令:

    ./adb shell reboot update
    
  2. 打开 Aml_Burn_Tool

参考:斐讯 T1 和 N1 降级恢复线刷功能 | 恩山无线论坛

教程:N1 刷电视盒子以及 openwrt 软路由 成功率高 推荐旁路由模式 | BiliBili

From:https://www.cnblogs.com/Undefined443/p/18384766
博客园
100+评论
captcha