In today’s post, we’ll talk about how to unlock the bootloader on the RedMagic 10 Pro (and 10S Pro). Unlike many other Android devices, this phone doesn’t support the standard fastboot flashing unlock command. As Per the Initial report from chines dev, ENG ABL (engineering bootloader) can be used for unlock. it does not require any emmcid auth like red magic 10 pro and astra tablet.
So, Is Unlocking Possible?
If you’re trying to do it yourself, it’s not possible unless you have access to the correct engineering abl and edl boot file. you can wait for zte toolbox update as per old pattern they may also add redmagic 10 air soon.
If you’re in rush and need instant service, there’s still an option. With the help of a few experienced developers, it can be done remotely. by Contacting us
Steps:
Make sure you have boot file and eng abl…
- Setup python edl
- Install qualcomm 9008 usb driver
- Enable usb debugging & oem unlock from developers option
- Connect the device in edl mod
- Send below command
Read Stock abl
python edl r abl_a abl_a_backup.bin --memory=ufs --lun=4 --loader=firehose.elf python edl r abl_a abl_b_backup.bin --memory=ufs --lun=4 --loader=firehose.elf
Write eng
python edl w abl_a abl.bin --memory=ufs --lun=4 --loader=firehose.elf python edl w abl_b abl.bin --memory=ufs --lun=4 --loader=firehose.elf python edl reset
- Now reboot device to fastboot mod
- Send generic unlock command
fastboot flashing unlock
- On device confirm bootloader unlock
Root:
- Same like flash pull init_boot.img from device
python edl r init_boot_a init_boot.img --memory=ufs --lun=4 --loader=firehose.elf python edl reset
- Then patch Init_boot in Magisk and write in fastboot
fastboot flash init_boot init_boot.img
if you want to restore stock abl
python edl w abl_a abl_a_backup.bin --memory=ufs --lun=4 --loader=firehose.elf python edl w abl_b abl_b_backup.bin --memory=ufs --lun=4 --loader=firehose.elf python edl reset