0x01 BL解锁
windows平台需要装fastboot驱动
https://developer.android.com/studio/run/win-usb
下载驱动后,然后在设备管理界面,更新驱动,手动选择下载的驱动包位置
#进入fastboot
adb reboot bootloader
#查看进入fastboot下是否检测到设备
fastboot devices
#解锁
fastboot flashing unlock
0x02 安装mgisk
boot.img
在手机设置—关于手机—版本号查看自己手机系统的版本号,并记住该版本号。
https://developers.google.com/android/images
在上方链接中找到对应版本号的的包并下载。
将下载文件解压缩后,找到后缀为.zip的文件再解压缩,找到boot.img,并传输到手机上。
Magisk
https://github.com/topjohnwu/Magisk/releases
下载apk文件,并安装在手机上
patch boot.img
打开magisk,安装-选择并修补一个文件,找到刚才传输的boot.img并选中,修补完成后,会在Download目录下生成一个magisk_patchedxxxxx.img的文件
将该文件传输到电脑上,并和fastboot.exe在同一目录下,再输入
adb reboot bootloader
# 刷入
fastboot flash boot magisk_patchedxxxx.img
# 重启
fastboot reboot
至此pixel4已获得root权限
0x03 刷机
https://developers.google.com/android/images
- 找好想刷的安卓版本并下载
- 解压
- 手机进入fastboot模式
- 再运行解压后文件中的bat或sh脚本即可