Last active
December 11, 2024 00:29
-
-
Save pojntfx/5d1fd4837cb4c0d481f6c6f6423cee51 to your computer and use it in GitHub Desktop.
Install Magisk on the OnePlus 8T (or any A/B slot device)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb reboot fastboot | |
sudo env "PATH=$PATH" fastboot getvar current-slot # Returned a in my case | |
sudo env "PATH=$PATH" fastboot reboot | |
adb root | |
adb shell dd if=/dev/block/bootdevice/by-name/boot_a of=/sdcard/Download/boot.img # or boot_b if it was returned above | |
# Open the Magisk app, click install, select the file from Downloads/boot.img, then click lets go and note the output file path | |
adb pull /sdcard/Download/magisk_patched-23000_kZmUG.img | |
adb reboot fastboot | |
sudo env "PATH=$PATH" fastboot set_active a # Or b if it was returned above | |
sudo env "PATH=$PATH" fastboot flash boot magisk_patched-23000_kZmUG.img | |
sudo env "PATH=$PATH" fastboot reboot | |
rm magisk_patched-23000_kZmUG.img |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment