[GUIDE] [ROOT] [MAGISK] How to Root Mi A3 with MAGISK without TWRP - Xiaomi Mi A3 Guides, News, & Discussion

Hello!
There's a guide already on XDA that covers this matter but in a general way and for all devices. That guide was based on the general info you may find on the original installation guide by @topjohnwu. So, all credits go to him.
Anyway, since there ins't a TWRP Recovery for Mi A3 (yet) and since I believe that many of you don't know about this, Iv'e decided to share here the steps I've done in order to root Mi A3.
NOTE: Now that we already have a working TWRP available for Mi A3, to root it you can now simply follow THESE steps after unlocking the bootloader.​​The guide present on this thread, of course, works as well, so I'll leave it here for those of you who don't want to permanently install TWRP to your device.​
1 - Unlock the bootloader (if you haven't done it already...beware that this will erase all of your user data). To do so, you must:
Enable developer options
Enable the "OEM unlocking" option
Enable USB debugging
Have both adb and fastboot, from SDK Platform Tools available on your PC
Connect your phone to your PC using the USB cable and run the following commands:
Code:
adb devices
(just to make sure that your phone is, in fact, recognized by your PC and that you're able to run adb commands)​
Code:
adb reboot bootloader
(so your phone will reboot into fastboot mode)​
Code:
fastboot flashing unlock
(after rebooting, boot the phone again into fastboot mode)​
Code:
fastboot flashing unlock_critical
(for full unlock)​
2 - Download Mi A3 stock boot.img that you may find later on this post, that matches your current build.
Copy the boot.img to your phone internal (or external) memory
Leave a copy of it on your PC (on the same folder you have adb and fastboot...we never know if we don't need to use it again in the future...you know, to restore the stock boot.img, aka revert to stock...)
If, for your current build, there isn't a stock boot.img released yet, you may get one yourselves. How? READ THIS.​​​EU Build boot images:​
---Android 9---​​For all of you currently on 10.3.7.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 10.3.8.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 10.3.9.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 10.3.11.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 10.3.12.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 10.3.14.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 10.3.15.0 (EU) build, you may download stock boot.img HERE.​​---Android 10---​​For all of you currently on 11.0.1.0 (EU) build, you may download stock boot.img HERE. (thanks to @Sapper Morton)​​For all of you currently on 11.0.2.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 11.0.3.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 11.0.5.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 11.0.6.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 11.0.8.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 11.0.9.0 (EU) build, you may download stock boot.img HERE.​​---Android 11---​
For all of you currently on 12.0.2.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 12.0.3.0 (EU) build, you may download stock boot.img HERE. (thanks to @lucoz )​​For all of you currently on 12.0.5.0 (EU) build, you may download stock boot.img HERE.​​For all of you currently on 12.0.6.0 (EU) build, you may download stock boot.img HERE.​
Global Build boot images:​
---Android 9---​​For all of you currently on 10.3.8.0 (Global) build, you may download stock boot.img HERE. (thanks to @Sapper Morton)​​For all of you currently on 10.3.14.0 (Global) build, you may download stock boot.img HERE. (thanks to @Sapper Morton)​​---Android 10---​​For all of you currently on 11.0.7.0 (Global) build, you may download stock boot.img HERE. (thanks to @Sapper Morton)​​For all of you currently on 11.0.11.0 (Global) build, you may download stock boot.img HERE. (thanks to @Sapper Morton)​​For all of you currently on 11.0.14.0 (Global) build, you may download stock boot.img HERE. (thanks to @Sapper Morton)​​For all of you currently on 11.0.15.0 (Global) build, you may download stock boot.img HERE.​​For all of you currently on 11.0.22.0 (Global) build, you may download stock boot.img HERE.​​---Android 11---​​For all of you currently on 12.0.3.0 (Global) build, you may download stock boot.img HERE.​​For all of you currently on 12.0.4.0 (Global) build, you may download stock boot.img HERE.​​For all of you currently on 12.0.6.0 (Global) build, you may download stock boot.img HERE.​​For all of you currently on 12.0.7.0 (Global) build, you may download stock boot.img HERE.​​For all of you currently on 12.0.8.0 (Global) build, you may download stock boot.img HERE.​​For all of you currently on 12.0.9.0 (Global) build, you may download stock boot.img HERE.​​For all of you currently on 12.0.11.0 (Global) build, you may download stock boot.img HERE.​
3 - Download latest Magisk Manager from HERE and install it on your phone
4 - Open Magisk Manager App and press:
Install
Install (again)
Select and Patch a File
Browse to the path where you saved stock boot.img and select it
Magisk Manager will now patch the boot image and store it in [Internal Storage]/Download/magisk_patched.img
5 - Copy the patched boot image from your device to your PC
Store it on the same folder where you have adb and fastboot
If you can’t find it via MTP, you can pull the file with ADB
Code:
adb pull /sdcard/Download/magisk_patched.img
6 - Uninstall Magisk Manager App from your phone (I'm not sure if this is really needed but I've done it anyway...)
7 - Flash the patched boot image to your phone by running these commands (remember, you must have patched boot image on the same folder you have adb and fastboot and, of course, your device must be connected to your PC...)
Code:
adb reboot bootloader
Code:
fastboot erase boot
Code:
fastboot flash boot magisk_patched.img
Code:
fastboot continue
(THIS IS IMPORTANT! USE CONTINUE INSTEAD OF REBOOT! You have been warned!!!)
8 - After the phone boots up, hopefully with a normal boot (almost feels like nothing happened....), install/open Magisk Manager App again and watch Magisk doing it's magic!
9 - Enjoy!
All credits goes to topjohnwu and it's incredible work with Magisk.
I cannot be responsible if you turn your phone into a brick. Your phone, your choices, your responsibility!

Thanks!
Been waiting for someone to create a cannonical guide of how to root this phone.
Saw someone with magisk who had WiFi problems, WiFi works ok you?
Also one would assume it disables the OTA update feature, probably better write it.

sirzarmo said:
Saw someone with magisk who had WiFi problems, WiFi works ok you?
Click to expand...
Click to collapse
WiFi problems appears when you flash boot not from your ROM build. Use only the same boot.img to the build number of ROM.
sirzarmo said:
Also one would assume it disables the OTA update feature, probably better write it.
Click to expand...
Click to collapse
It is. But you can still update via Magisk if you don`t touch system partitions. Else - flash manualy.

Wow,
Thank's a lot!
As you said, I didn't know this way to root a device.

sirzarmo said:
Saw someone with magisk who had WiFi problems, WiFi works ok you?
Click to expand...
Click to collapse
That someone was me. But, I believe that happened because I've used boot.img from 10.3.4.0 branch on GitHub (instead of using boot.img from 10.3.5.0 branch) and, also, I've used "fastboot reboot" command instead of "fastboot continue". As soon as the 10.3.5.0 branch appeared online I've decided to test this method again and it worked, that's why I've decided to share this with all community.
sirzarmo said:
Also one would assume it disables the OTA update feature, probably better write it.
Click to expand...
Click to collapse
I don't think it will disable OTA feature. Probably, as soon as a new OTA comes out it will be installed on Slot A (because up until now there's only been one update and it was installed on slot B...so everyone should now be on firmware V10.3.5.0 running on Slot B). So, if I'm not mistaken, the "worst" thing that could happen is to lose root (since the update will be installed on Slot A and boot.img on that Slot is still the stock one).
Cheers!

Typhus_ said:
Cheers!
Click to expand...
Click to collapse
Why thank you dear, I'll root now if so.

Hello!
Well, in fact, this method breaks OTA. It downloads but it doesn't install.
My guess is we need to flash stock boot.img and then apply the OTA update and then patch the new boot.img again.
I've noticed a new boot.img on GitHub today, hopefully it will be the correct one.

Typhus_ said:
Hello!
Well, in fact, this method breaks OTA. It downloads but it doesn't install.
Click to expand...
Click to collapse
You can simply follow this guide, if you do not touch system partitions.
https://github.com/topjohnwu/Magisk/blob/master/docs/tutorials.md#devices-with-ab-partitions

Tried it already. It ain't possible because of 2 reasons:
1 - The supposly boot.img backup doesn't exist. Probably Magisk only does it if installed through TWRP and not by patching boot.img
2 - The OTA package fails to install. "A problem has occurred"...while trying to initiate the install.
Enviado do meu Mi A3 através do Tapatalk

When do you think twrp will be released for mi a3?

okay so I installed FDE magisk module now my phone is stuck at the bootscreen. Someone got a stock rom for me ?

You can change slot through fastboot. It will erase all user data (factory reset) but it's better than the phone not booting.
The other possible solution, I've sent you a PM (because external link).
fastboot --set-active=a (or b if you're now on a)
Enviado do meu Mi A3 através do Tapatalk

An offcial stock rom wouldve fixed my problem in no time. I changed the partition and got to a menu where I could chosse to factory reset but its been sitting on formatting data for like half hour...

drozo8o8 said:
An offcial stock rom wouldve fixed my problem in no time. I changed the partition and got to a menu where I could chosse to factory reset but its been sitting on formatting data for like half hour...
Click to expand...
Click to collapse
It should be quite fast...guess you're out of luck for the time being my friend.
By the way, you've used fastboot reboot or fastboot continue after changing slot?
It should be fastboot reboot
Enviado do meu Mi A3 através do Tapatalk

all i need is a proper flash all.bat since oyu gave me the OTA update link with a payload.bin which I extracted with payload_dumper

Typhus_ said:
Tried it already. It ain't possible because of 2 reasons:
1 - The supposly boot.img backup doesn't exist. Probably Magisk only does it if installed through TWRP and not by patching boot.img
Click to expand...
Click to collapse
Manualy patch boot.img in MM and you'll get backup.

This method is useful in Mi CC 9e. Thx

hello, install v10.3.5.0 over v10.3.7.0, now I don't have wifi and the sound does not work, instructions to fix it please ?, I am using the google translator to write here, thanks

You'll have to change slot and boot on that slot. You'll lose all your user data but the phone will boot ok and receive latest OTA. Either that or you have to wait for someone to dump you a stock 10.3.7.0 boot.img in order to fix those issues. On GitHub there isn't a boot.img for latest build yet.
Enviado do meu Mi A3 através do Tapatalk

Typhus_ said:
You'll have to change slot and boot on that slot. You'll lose all your user data but the phone will boot ok and receive latest OTA. Either that or you have to wait for someone to dump you a stock 10.3.7.0 boot.img in order to fix those issues. On GitHub there isn't a boot.img for latest build yet.
Enviado do meu Mi A3 através do Tapatalk
Click to expand...
Click to collapse
Fixed, THANKS YOU very much

Related

10.0.5 boot.img?

Hey all! I'm trying to root my OnePlus 7t but I'm on 10.0.5 stock and I can't find a patched boot.img, or even a stock one to patch in Magisk. I'm on the global variant. If someone could point me in the right direction, that would be grand. I have already read mostly all the posts...
I have the US version which I think is also the global version. Here's my patched boot.img for 10.0.5
https://drive.google.com/file/d/12tZN5D7dmovIeqsx8sTF-B0z2gxA6LG8/view?usp=sharing
Here's the stock boot for 10.0.5 as well if you screw something up.
https://drive.google.com/file/d/1nS0hqVCyntXHjbTzOH7H8-b29-IlAOIt/view?usp=sharing
Don't ask why the file sizes are so different. It just gets smaller for some reason after patching it in magisk.
I just booted with an older one and flashed the latest magisk
Need 10.0.5 boot.img stock & magisk patched for indian varient
Hey .... Can you help me with the 10.0.5 boot.img , stock & magisk patched for indian varient HD1901 of 7t
ChongoDroid said:
I just booted with an older one and flashed the latest magisk
Click to expand...
Click to collapse
I had tried booting with 10.0.3 while on 10.0.5 , Did not turn out well .
Has anyone on 10.0.5 tried booting w/ the above 10.0.5 patched img ?
Stock and Magisk patched boot.img files for HD1905 7T update version 10.0.5:
dropbox.com/s/887ibs0yorxgs2v/boot.img?dl=0
dropbox.com/s/sxrayyjn562susu/magisk_patched.img?dl=0
SkippRunning said:
Stock and Magisk patched boot.img files for HD1905 7T update version 10.0.5:
dropbox.com/s/887ibs0yorxgs2v/boot.img?dl=0
dropbox.com/s/sxrayyjn562susu/magisk_patched.img?dl=0
Click to expand...
Click to collapse
Do I only need to flash the patched img or both ?
And do they need to be flashed to both A and B slots ?
Thanks for sharing
hightech316 said:
Do I only need to flash the patched img or both ?
And do they need to be flashed to both A and B slots ?
Thanks for sharing
Click to expand...
Click to collapse
I would try fastboot boot before you use fastboot flash just to make sure that the device will boot successfully with the images. You should only need to fastboot boot magisk_patched.img, then open Magisk Manager and install Magisk by choosing the direct install option in the list. You only need the steps I mentioned to have root, and if you flash it to A and B at once you can get stuck in a bootloop. I had that happen at one point from flashing both partitions, and I dont recommend trying it.
SkippRunning said:
I would try fastboot boot before you use fastboot flash just to make sure that the device will boot successfully with the images.
Click to expand...
Click to collapse
Thanks , this can save a headache !
hightech316 said:
Thanks , this can save a headache !
Click to expand...
Click to collapse
Ya, I tried every relevant boot image I could find in the forums, and the device didnt work properly with any of them. The only one that allowed the device to boot successfully caused the wifi and sounds to not work. So I downloaded the full update from OnePlus and extracted it to a folder, then used payload dumper to extract all of the individual images out of the payload.bin file from OnePlus. I copied the boot.img into the phone storage and installed Magisk Manager, then patched the stock boot.img and copied it from the phone to my pc. Then I used fastboot boot magisk_patched.img to make sure the image I made would work. I booted the device and inside Magisk Manager I chose direct install in the list of options and everything went smoothly, and I didnt need to rely on finding images online that would hopefully work.
smokeythebear3 said:
I have the US version which I think is also the global version. Here's my patched boot.img for 10.0.5
https://drive.google.com/file/d/12tZN5D7dmovIeqsx8sTF-B0z2gxA6LG8/view?usp=sharing
Here's the stock boot for 10.0.5 as well if you screw something up.
https://drive.google.com/file/d/1nS0hqVCyntXHjbTzOH7H8-b29-IlAOIt/view?usp=sharing
Don't ask why the file sizes are so different. It just gets smaller for some reason after patching it in magisk.
Click to expand...
Click to collapse
Thanks a bunch for the share. That was the missing piece that I've been looking for. I have the HD1905 variant and I just used Magisk to patch the stock file you provided. After testing, I'm finally rooted. Thanks again.

Pre-rooted Boot Image OP7T European HD65BA 10.0.7

Hello,
I have seen few requests about providing pre-rooted boot image file for OP7T European version for firmware 10.0.6 so here you go.
Steps :
1) Reboot your phone in bootloader mode (fastboot mode).
2) Execute command fastboot boot magisk_patched.img
3) Reboot the device
4) Install Magisk Manager
5) Click on Install, then direct install and wait the end of the process
6) Reboot the device
Also attaching the stock boot file in case anything goes wrong.
P.S : I don't own European OP7T.
Link : https://www.androidfilehost.com/?w=files&flid=303273
*delete*
Can you do one for the 10.0.6 USA Version? I can't find one anywhere. Thanks so much. I can't even find a copy of the stock 10.0.6 US boot img
Worked well, got my phone rooted yesterday.
Lähetetty minun HD1903 laitteesta Tapatalkilla
click4dylan said:
Can you do one for the 10.0.6 USA Version? I can't find one anywhere. Thanks so much. I can't even find a copy of the stock 10.0.6 US boot img
Click to expand...
Click to collapse
USA version is HD65AA ? Can you send the product code and I will try
Yes, my build number is 10.0.6.HD65AA and model number is HD1905. Thank you so very much! Also, can you show me how you are getting the boot image for these new versions so I can do it myself in the future? Thanks again. SKU on the box says 5011100751
Hi!
Sorry for this question, flashing this boot image will wipe my device?
Thanks.
paulo_snower said:
Hi!
Sorry for this question, flashing this boot image will wipe my device?
Thanks.
Click to expand...
Click to collapse
NO! First time you unlock your bootloader thats wipe your device, not when flashing a boot.img
it's not working for me with Oxygen 10.0.6 HD65BA.
If i try to boot the magisk patched boot image the phone just reboot within fastboot mode, and if i try to normally boot i just can't update magisk.
-----
Update:
I found this surfing the net :
Unlike older OnePlus phones, the current bootloader of the OnePlus 7 Pro doesn’t allow ‘fastboot boot’ (also known as tethered booting) command. The situation is same as Essential PH-1 as well some other phones where you can’t temporarily boot a kernel or recovery.
nicoilboss said:
it's not working for me with Oxygen 10.0.6 HD65BA.
If i try to boot the magisk patched boot image the phone just reboot within fastboot mode, and if i try to normally boot i just can't update magisk.
-----
Update:
I found this surfing the net :
Unlike older OnePlus phones, the current bootloader of the OnePlus 7 Pro doesn’t allow ‘fastboot boot’ (also known as tethered booting) command. The situation is same as Essential PH-1 as well some other phones where you can’t temporarily boot a kernel or recovery.
Click to expand...
Click to collapse
click4dylan said:
Yes, my build number is 10.0.6.HD65AA and model number is HD1905. Thank you so very much! Also, can you show me how you are getting the boot image for these new versions so I can do it myself in the future? Thanks again. SKU on the box says 5011100751
Click to expand...
Click to collapse
zanderzone said:
USA version is HD65AA ? Can you send the product code and I will try
Click to expand...
Click to collapse
Sorry for being late. Please try this : https://forum.xda-developers.com/oneplus-7t/how-to/pre-rooted-boot-image-op7t-global-t4009305
Thanks, I found the instructions on how to do it already and took the Global boot image. I am just booting it with fastboot boot instead of flash. Just being cautious is all.
Same situation over there, trying either boot or flash the image, the phone reboots itself into bootloader. Stock 10.0.6.
Enviado desde mi HD1903 mediante Tapatalk
What is the difference between global and European? And can i still update ota after flashing this?
Hello !
Thanks for the guide !
I successfully installed Magisk, but once I install Riru core and EdXposed, my OP7T also gets stuck and boots only into fastboot. After wiping everything to factory reset, my phone is back to normal.
Is EdXposed working with this version of Magisk ?
(OpenPlus 7T HD65BA 10.0.6)
Thanks for help
Edit : problem solved with this method.
Excellent.
Many thanks @zanderzone
Can i still update ota in settings adter installing this version? Or will i loose root everytime?
karayemis said:
Can i still update ota in settings adter installing this version? Or will i loose root everytime?
Click to expand...
Click to collapse
Most likely you won't get any notifications if there are updates. You won't be able to use incremental updates.
But you can keep root flashing magisk right after the update before rebooting your phone.
could someone help me? I got the european version but if i try to boot the magisk_patched.img i just get stuck in fastboot mode and if i try to flash the patched image i get stuck in fastboot mode and i've to flash again the stock boot.
I also tried the global one but without any results.
Thanks
edit. I have the HD65BA 10.0.6 version
I was able to boot using your magisk_patched.img using "fastboot boot magisk_patched.img", but WIFI doesn't work now. I haven't inserted the SIM yet so I am unable to install magisk (it can't connect to download it). Is it only my case, or did it happen to anyone else? Any fixes?
Or is ir a temporary thing and after installing magisk it will work (WIFI)?
EDIT: with "fastboot boot Stock_boot.img" I get the same WIFI problem. Rebooting normally makes WIFI work again.
EDIT2: I tried it with the SIM on and the process was perfect. Thank you for that patched boot image and the tutorial!!!
Any chance @zanderzone that you could put a 10.0.7 version up?
I lost root with the recent update...
I found the detailed instructions too late.
Detailed instructions here: https://topjohnwu.github.io/Magisk/tutorials.html#ota-installation
Many thanks

Magisk patched boot.img for OOS 10.0.14 (EU & intl. | HD65BA & HD65AA)

Hi everyone,
so I intended to root my OnePlus 7T HD1903 updated to OOS 10.0.14 via Magisk. Unlocked the bootloader and followed this guide to gain root access. Except it doesn't mention the need to use a boot image that exactly matches the phones OS version. Thinking I should just use the latest boot_10.0.7HD65AA_magisk_patched_op7t.img, I flashed it using fastboot flash boot filename.img. And my phone does actually still boot up but the wifi can no longer be turned on, which also means that I can't install Magisk.
Could a kind soul please, please, please send me the correctly patched boot.img for HD1903 (=HD65BA) running OOS 10.0.14? Or is there any other way to fix my phones wifi?
Any help is greatly appreciated!
Afaik the latest oos version released for OnePlus 7T is 10.0.13 !
No, OOS version 10.0.14 is installed and you can't downgrade for some reason:
you can pull the boot.img from the update file of 10.0.14 by dropping the update on your pc and unpacking the payload.bin with the payload dumper, and then patching the boot.img with the magisk manager, then Flash or boot the patched boot.img on the oneplus
ChrisFeiveel84 said:
you can pull the boot.img from the update file of 10.0.14 by dropping the update on your pc and unpacking the payload.bin with the payload dumper, and then patching the boot.img with the magisk manager, then Flash or boot the patched boot.img on the oneplus
Click to expand...
Click to collapse
Yes, however I was unable to find a way to get the update file on my pc, as its size exceeds my mobile data per month, the wifi on my phone can't be activated and oxygen updater doesn't provide a direct download link, which I could open on my pc. That's the deadlock I am trying to get out of...
can someone post a link for downloading 10.0.14?
altojd said:
can someone post a link for downloading 10.0.14?
Click to expand...
Click to collapse
Full 10.0.14 OTA
[url]https://otafsg1.h2os.com/patch/amazone2/GLO/OnePlus7TOxygen/OnePlus7TOxygen_14.E.20_GLO_020_2010111808/OnePlus7TOxygen_14.E.20_OTA_020_all_2010111808_4ee9c10.zip[/URL]
satosti said:
Hi everyone,
so I intended to root my OnePlus 7T HD1903 updated to OOS 10.0.14 via Magisk. Unlocked the bootloader and followed this guide to gain root access. Except it doesn't mention the need to use a boot image that exactly matches the phones OS version. Thinking I should just use the latest boot_10.0.7HD65AA_magisk_patched_op7t.img, I flashed it using fastboot flash boot filename.img. And my phone does actually still boot up but the wifi can no longer be turned on, which also means that I can't install Magisk.
Could a kind soul please, please, please send me the correctly patched boot.img for HD1903 (=HD65BA) running OOS 10.0.14? Or is there any other way to fix my phones wifi?
Any help is greatly appreciated!
Click to expand...
Click to collapse
stock and patched 10.0.14 HD65AA EU boot.img
https://www.androidfilehost.com/?fid=10763459528675569975
Thank you very much tchleb! I was about to post, that I was able to download the 10.0.14.HD65BA zip-file via a friends phone (not even OnePlus!). The patch worked as intended and my phone is rooted with working wifi, yay!
Therefore I can add the working boot.img and magisk_patched.img for OOS 10.0.14.HD65BA (EU-version)
satosti said:
Thank you very much tchleb! I was about to post, that I was able to download the 10.0.14.HD65BA zip-file via a friends phone (not even OnePlus!). The patch worked as intended and my phone is rooted with working wifi, yay!
Therefore I can add the working boot.img and magisk_patched.img for OOS 10.0.14.HD65BA (EU-version)
Click to expand...
Click to collapse
I added already the uploaded the stock and patched boot.img 10.0.14 HD65BA at my post above
Anyone got the patched 10.0.14 for the HD65AA (US version)? I can't unpack the payload and make my own just now.
Never mind, I took the update without rebooting and installed Magisk directly before rebooting.
Worked like a charm.
Quantumrabbit said:
Anyone got the patched 10.0.14 for the HD65AA (US version)? I can't unpack the payload and make my own just now.
Click to expand...
Click to collapse
I'm not aware of a special US version, afaik the US just uses the international version, which is HD65AA. Here are the files:
OOS 10.0.14.HD65AA international firmware (OnePlus7TOxygen_14.O.20_OTA_020_all_2010111858_ae4ef99dc6eeb4.zip)
extracted boot.img
patched magisk_patch.img
Excellent works great Thank you very much
satosti said:
I'm not aware of a special US version, afaik the US just uses the international version, which is HD65AA. Here are the files:
OOS 10.0.14.HD65AA international firmware (OnePlus7TOxygen_14.O.20_OTA_020_all_2010111858_ae4ef99dc6eeb4.zip)
extracted boot.img
patched magisk_patch.img
Click to expand...
Click to collapse
:good::good::good::highfive::good::good::good:
Excellent works great Thank you very much​
satosti said:
I'm not aware of a special US version, afaik the US just uses the international version, which is HD65AA. Here are the files:
OOS 10.0.14.HD65AA international firmware (OnePlus7TOxygen_14.O.20_OTA_020_all_2010111858_ae4ef99dc6eeb4.zip)
extracted boot.img
patched magisk_patch.img
Click to expand...
Click to collapse
I was looking for an hour in internet and then realized that this very thread has the second page with your links. :highfive: :good: :angel:
You saved my evening with the patched img.
Hello guys, is it normal I can't fastboot the patched ?
On my pc, it just says waiting for any devices while adb devices command shows that my phone is connected
Oh f*** myself I was booting on 7t and not 7T pro my bad

I WHANT RECOVERY Boot.img FOR ROOT MY ONEPLUS NORD N100

I unlock bootloader and i whant to root with magisk my phone, i need boot.img for rocovery..I try anather boot.img from One plus nord, etc, i sucessfull flash this recovery's with command in windows but is no go in recovery, stay in bootloop..Can you guys halp me with the right recovery boot.img???Phone work's but i whant to root this think!! Thanks!!!
Sam here, I ended up in Qualcomm EDL mode, now need MSMDownload tool and image for it.
Hello,
I extracted the boot.img of the latest version I downloaded from OnePlus website, it's from OnePlus NORD N100 BE2013
96 MB file on MEGA
mega.nz
OnePlusN100Oxygen_14.E.08_OTA_008_all_2012151227_edf41bd540d840f2
This is absolutely stock image with no changes.
Here is the same boot.img but patched with magisk and tested, the device was rooted properly.
96 MB file on MEGA
mega.nz
When booting the magisk patched version wifi stops working. Doesn't matter if which version of the stock boor I use or if I use the patched from @motovnet. Any ideas?
Sharkhunter123 said:
When booting the magisk patched version wifi stops working. Doesn't matter if which version of the stock boor I use or if I use the patched from @motovnet. Any ideas?
Click to expand...
Click to collapse
I had that happening when installing a 10.5.6 boot.img on a OnePlus n100 with 10.5.2, download the full rom from OnePlus site, install that version on the phone and then extract the boot.img and install, if you want magisk works fine
Alse-72 said:
I had that happening when installing a 10.5.6 boot.img on a OnePlus n100 with 10.5.2, download the full rom from OnePlus site, install that version on the phone and then extract the boot.img and install, if you want magisk works fine
Click to expand...
Click to collapse
Ok do you have a 10.5.2 file? OnePlus only shows the latest on their site (unless they hide the old versions somewhere)
Sharkhunter123 said:
Ok do you have a 10.5.2 file? OnePlus only shows the latest on their site (unless they hide the old versions somewhere)
Click to expand...
Click to collapse
Go to system settings and update locally, then select the rom you downloaded from the OnePlus site, if wifi still doesn't work, search "payload dumper" and dump boot.img from that very rom you just downloaded and installed. That's how I fixed it for me
Alse-72 said:
Go to system settings and update locally, then select the rom you downloaded from the OnePlus site, if wifi still doesn't work, search "payload dumper" and dump boot.img from that very rom you just downloaded and installed. That's how I fixed it for me
Click to expand...
Click to collapse
That was my problem. I can't find a 10.5.2 rom file. The one thats on the oneplus site is 10.5.6. So any idea where I can find older roms
Sharkhunter123 said:
That was my problem. I can't find a 10.5.2 rom file. The one thats on the oneplus site is 10.5.6. So any idea where I can find older roms
Click to expand...
Click to collapse
Can't see why you would want an older one, I'm no going to repeat myself, if you do those steps you'll have a working wifi
motovnet said:
Here is the same boot.img but patched with magisk and tested, the device was rooted properly.
96 MB file on MEGA
mega.nz
Click to expand...
Click to collapse
Hey when using the boot image you provided do I still need the full stock firmware cause I can not find it anywhere
Download OnePlus Nord OxygenOS OTA Updates & Installation Guide (Latest: OxygenOS 12 F.11)
Download all OxygenOS OTA updates for OnePlus Nord (Global, India, and Europe variants). Learn how to manually install OxygenOS updates on OnePlus Nord using Local Upgrade.
www.thecustomdroid.com
I'm running to the same issue. I found this website, you can download other OTA updates. I'm going to try it, maybe it can help.
Maybe my post has what your looking for idk what firmware your on and ect but worth looking
Oneplus Nord N100 Root 10.5.4 BE81AA
Moved OP here https://forum.xda-developers.com/t/oneplus-nord-n100-root-10-5-4.4233467/
forum.xda-developers.com

Need TWRP for JOYUI 12.5 CN MR2

Currently on CN MR2 version of JOYUI 12.5. Using the old TWRP for Android 10 only shows black screen when booting up via "fastboot boot twrp.img" then reboots normally to the system preventing me to pull the stock boot for MR2, make backups via TWRP to proceed with rooting the device. Any help would be appreciated.
Here's the recovery.img I've extracted from Payload.bin for the latest CN MR2 update. Hopefully someone can patch a TWRP img for this. And feel free to ask if you guys need more img files from the latest update.
hi bro..
may you want to get ota link of update rom. use adb to get the link. the guide is also on this forum.. thank you..
Jhem OP5 said:
Here's the recovery.img I've extracted from Payload.bin for the latest CN MR2 update. Hopefully someone can patch a TWRP img for this. And feel free to ask if you guys need more img files from the latest update.
Click to expand...
Click to collapse
Tried to flash over mr0 to update but bootloop

Categories

Resources