Back to Stock ROM from Service ROM - Honor 7x BND-AL10 - Honor 7X Questions & Answers

My Honor 7x BND-AL10 was stuck on eRecovery with Bootloader Locked.
I used this method to run OS i.e. Service ROM
https://forum.xda-developers.com/honor-7x/help/helpstuck-erecovery-bootloader-locked-t3826572
Now i am unable to get back to any Stock ROM.
I referred Same device with a friend it says BND-AL10 8.0.0.330(C675)
Please provide link of software and info to Flash Stock ROM in it.
Special Thanks to @mrmazak for solving Bootloader Locked Problem.
Solution By @mrmazak
Full Link https://forum.xda-developers.com/honor-7x/how-to/guide-honor-7x-flash-oreo-update-t3781649
Note: Please Validate your download in Firmware Finder while it's available for download, versions which are yet not available but are shown in Firmware Finder may include bugs or mayn't work at all.
Short Explained Solution Below
Continue from here if you are on service ROM and want to flash STOCK or read full guide with above link.
Process
A. Extract HWOTA package. Copy both HWOTA7 and HWOTA8 folders onto sdcard.
B. Add your Three (3) update files to HWOTA folder; 7 if on Nougat: 8 if on Oreo. (Maybe 2 or 3, which you need to download from Firmware Finder, In firmware finder when you click on files button after your firmware code, You can see 2 or 3 different zip, download all of them and place in HWOTA folder according to Android Version)
C. Connect phone and enable adb , Use Replace_Recovery.bat in HWOTA to flash TWRP recovery.(if have twrp skip to E) or Flash from Fastboot, because sometimes adb not working for some users.
D. Disconnect USB cable, use Vol-Up + Power to boot into TWRP.
E. From in TWRP install sdcard hwota7-8_update-auto.zip (This file was in HWOTA folder, outside HWOTA7 and HWOTA8), it will install no-check recovery then add cache commands to do update.
F. Watch twrp screen for the message to press volume button to continue.

parveenbhadoo said:
My Honor 7x BND-AL10 was stuck on eRecovery with Bootloader Locked.
I used this method to run OS i.e. Service ROM
https://forum.xda-developers.com/honor-7x/help/helpstuck-erecovery-bootloader-locked-t3826572
Now i am unable to get back to any Stock ROM.
I referred Same device with a friend it says BND-AL10 8.0.0.330(C675)
Please provide link of software and info to Flash Stock ROM in it.
Special Thanks to @mrmazak for solving Bootloader Locked Problem.
Click to expand...
Click to collapse
The information is already in the directions from the thread you have linked.
Need to download full ota for your device from firmware find or pro-teammt.ru and use either hurupdater or hwota to restore stock rom.
Here is link to my hwota guide.
https://forum.xda-developers.com/honor-7x/how-to/guide-honor-7x-flash-oreo-update-t3781649

Related

[Guide] Return to Stock and Re-lock Bootloader

You may find that you need to return to stock/locked bootloader for various reasons. You can find how to do this by digging throughout various threads on this forum. decided to simplify things and bring it together in a single thread. After restoring you will be able to do OTA updates as well.
FLASHING FACTORY 5.8.019S
STEP 1: Download the backup
-- Source Thread: https://forum.xda-developers.com/le-pro3/how-to/le-pro-3-lex727-twrp-backup-eui-5-8-019s-t3504761
-- FILE: https://drive.google.com/file/d/0B5xyvHc4wgEVWHFKMWZqLWEyTTg/view?usp=sharing
Note: There is a TWRP backup for 20s currently on this forum. I do not recommend using it. Many have had issues booting after restoring it (me included).
STEP 2: Setup TWRP Backup Directory
If you download it to your PC use adb to push it to your device. You should have an existing directory within /sdcard/TWRP/BACKUPS/ that holds your backups. I believe the directory is your device id.
If the directory does not exist, you need to get the info from your device.
Code:
Run adb devices
It will be the hash listed by your device. Make a directory in TWRP/BACKUPS/ with the device id. Mine is "6293eaef".
For example, any backups that I want to restore to my device from TWRP need to be located in a sub-directory within: /sdcard/TWRP/BACKUPS/6293eaef/
At that point you should have the directory you need to copy the backup into.
STEP 2: Copy the Backup (originally named TWRP.zip) to /sdcard/TWRP/BACKUPS/6293eaef/stock
Do the following if you downloaded it to your computer:
Code:
adb push TWRP.zip /sdcard/TWRP/BACKUPS/DEVICE_ID/stock/
adb shell
cd /sdcard/TWRP/BACKUPS/DEVICE_ID/stock/
unzip TWRP.zip
If you downloaded to your device, you just need to move the zip file to the TWRP backups directory and extract it.
STEP 3: Restore in TWRP
Boot into TWRP recovery (if not already there).
Code:
adb reboot recovery
OR
Code:
hold volume up and press power button
RESTORE the backup.
I selected everything. This will install default recovery and remove TWRP.
Do a FULL wipe AFTER flashing. Be sure to wipe the data partition to clear any encryption.
[OPTIONAL] RESTORE LOCKED BOOTLOADER X727
This should not be necessary for X720 devices because the bootloader comes unlocked. I would only suggest re-locking if you need to return your device for warranty support.
To lock the bootloader you need to flash emmc_appsboot.mbn and xbl.elf from an OTA
Step 1: Get 5.8.020s OTA
-- File: https://www.androidfilehost.com/?fid=457095661767124419
After downloading extract 5.8.020S_sta.zip.
Inside the firmware-update folder are 2 files: xbl.elf, and emmc_appsboot.mbn. You need to flash both of these files in the bootloader to relock it.
Step 2: Boot to fastboot
Code:
adb reboot bootloader
OR
Code:
From power off, hold volume down and then press the power button.
Step 3: Flash stock bootloader from OTA zip
Run the following commands while in the firmware-update folder you extracted from 5.8.020S_sta.zip
Code:
fastboot flash xbl xbl.elf
fastboot flash aboot emmc_appsboot.mbn
The bootloader is now locked again.
Run
Code:
fastboot reboot bootloader
and then
Code:
fastboot oem device-info
to verify.
NOTE: I found that after using this method to re-lock the bootloader I could no longer use the guide for persistent bootloader unlocking.
If you want to unlock the bootloader again later, you need to manually flash the emmc_appsboot.mbn from the file in this thread:
https://forum.xda-developers.com/le...7-model-persistent-bootloader-unlock-t3500388
FILE: https://www.androidfilehost.com/?fid=313042859668275431
I hope that some of you find this helpful. Please let me know if there is any additional information that I should add to this thread. I will update it as needed.
Cheers!
STEP 1
file in google drive not found
Sorry, the file you have requested does not exist.
Make sure that you have the correct URL and the file existed.
ajegile said:
STEP 1
file in google drive not found
Sorry, the file you have requested does not exist.
Make sure that you have the correct URL and the file existed.
Click to expand...
Click to collapse
Fixed! That's what I get for copy/pasting the text vs the actual URL.
Hi, sorry to bring up an old thread. I plan to restore my leeco (US version ) running lineage back to stock. Will this method still work?
neozengar said:
Hi, sorry to bring up an old thread. I plan to restore my leeco (US version ) running lineage back to stock. Will this method still work?
Click to expand...
Click to collapse
Yes, this method will still work. It should also work for restoring to newer versions of stock (if needed).
Thank you so much. I notice the boot loader file is for le1. Are they same as that for Le eco pro 3?
neozengar said:
Thank you so much. I notice the boot loader file is for le1. Are they same as that for Le eco pro 3?
Click to expand...
Click to collapse
Yes
Will this work with Lineage 14.1?
Cuvillier said:
Will this work with Lineage 14.1?
Click to expand...
Click to collapse
This will take you back to stock regardless of what ROM you are currently running.
Ok, do you will update the tutorial with new files ? As newer firmware is now 23s version.
Cuvillier said:
Ok, do you will update the tutorial with new files ? As newer firmware is now 23s version.
Click to expand...
Click to collapse
Ill try to get some time to find links for the newer firmwares and update for those. We just had a new little one join the family so I'm pretty busy and tires nowadays .
Regardless, you can always update once you get back to stock in this guide.
Ok thank you.
This will work on x720 too ?
new small ota update for x720 just came out
Cuvillier said:
This will work on x720 too ?
Click to expand...
Click to collapse
Yes
slgooding said:
Yes
Click to expand...
Click to collapse
bootloader in x720 is already unlocked from LeEco
Hello folks,
I am using T.A.R.S. 21S EUI 5.8 USA version and TWRP 3.1.0
How do I return to stock? stock recovery, locked bootloader, and stock ROM so that I can get OTA updates?
I already tried:
https://forum.xda-developers.com/le-...oader-t3539513
I am able to restore successfully, but I am not able to install any OTA update with this and device is stuck with 19S only. I tried both local update and OTA update. UE boots into EUI recovery and says "Installation failed". I tried both 20S and 21S updates.
I think latest is 23S now.
Thanks
Brar
What device?
Hello. I want to return to stock x720 ROM. I won't to flash US version, so I need CN backup? Or how to do?
I flashed custom Recovery (TWRP), Kernel (BlackScreen), OS (AICP) and Root (Magiskv12). Should I flash trough recovery lastest official OS version?
I had to send the phone back to LeEco for repair, so needed to go stock.
Glad I found this post, thanks OP.
I tried the steps, all seemed to work okay, but now I am stuck at the leeco boot logo.
I can get to bootloader:
C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot oem device-info
...
(bootloader) Device product name: [le_zl1_oversea]
(bootloader) Device tampered: false
(bootloader) Device unlocked: false
(bootloader) Device critical unlocked: true
(bootloader) Charger screen enabled: false
(bootloader) Serial console enabled: false
(bootloader) Serial hw output enabled: false
I can also get to stock recovery, wipe data and update with update.zip
I think the phone is missing OS or something.
Please help.

[HELP] Can't flash Stock 7.0Nougat via Stock Recovery...

I got a ZF3 Deluxe from Italy, is TIM branded, and stuck on MM 6.0, no updated released for this brand, so a friend of mine told me there is of course android 7 for ZF3Deluxe, so i wanted to manually upgrade system to 7.0 Nougat, i downloaded the Stock ROM from asus (2.15ghz cpu, i've checked of course) but when i try to flash it from the Stock Recovery i get this error (see the attachment) i also attach the software informations, (looking at the error i receive it may see the archive is corrupted, but i've tried to download it from Asus many and many times)
You have a carrier rom on your phone and the international version fails the upgrade check.
If you could get your bootloader unlocked that would be a way around it but you need to upgrade to a certain rom version to do that and the carrier hasn't supplied that rom...
You're essentially screwed until the carrier either releases the bootloader unlockable rom or upgrades the rom to nougat...
LeGrim said:
I got a ZF3 Deluxe from Italy, is TIM branded, and stuck on MM 6.0, no updated released for this brand, so a friend of mine told me there is of course android 7 for ZF3Deluxe, so i wanted to manually upgrade system to 7.0 Nougat, i downloaded the Stock ROM from asus (2.15ghz cpu, i've checked of course) but when i try to flash it from the Stock Recovery i get this error (see the attachment) i also attach the software informations, (looking at the error i receive it may see the archive is corrupted, but i've tried to download it from Asus many and many times)
Click to expand...
Click to collapse
You should try to flash stock recovery of WW in fastboot.
And then flash 6.0 WW rom by WW recovery.
Even though ,I didn't sure that if it will work(because I don't have Z016S),but you can try it.
samson1357924 said:
You should try to flash stock recovery of WW in fast boot.
And then flash 6.0 WW rom by WW recovery.
Even though ,I didn't sure that if it will work(because I don't have Z016S),but you can try it.
Click to expand...
Click to collapse
Ok thanks, i can give a try, but where i can download the WW stock recovery? There is no recovery.img inside the WW_user.zip ROM
LeGrim said:
Ok thanks, i can give a try, but where i can download the WW stock recovery? There is no recovery.img inside the WW_user.zip ROM
Click to expand...
Click to collapse
Here it comes~
ZenFone 3 Deluxe ZS570KL_WW stock recovery
Ok guys, i think i've found a way to debrand my Zenfon 3 Deluxe, im testint the procedure right now, i will post the whole procedure if i succeed
Install : ADB & Minimal Fastboot.
Install : pyton 3.6 https://www.python.org/downloads/
Download the latest WW-4.12.40.1698 (For 2.15GHz CPU or 2.40GHz CPU) from Asus WebSite.
Download "Dat to img by stupdroid.com" (search it with google).
Extract Dat to img by stupdroid.com in a Folder.
Open the Firmware ZIP and copy system.new.dat, system.transfer.list e file_contexts in the Dat2IMG's folder.
Execute system.new.dat 2 flashable img converter.exe and just press ENTER and wait till the end of procedure, you will receive 2 files : system.raw.img e system.new.img.
Copy system.new.img in your Fastboot's folder.
Put the Phone into Fastboot mode.
Open fastboot and put this command: " fastboot flash system system_new.img "
Wait the end of flash procedure and type : Fastboot Reboot.
Enter recovery wipe data and cache.
Done.
LeGrim said:
Install : ADB & Minimal Fastboot.
Install : pyton 3.6 https://www.python.org/downloads/
Download the latest WW-4.12.40.1698 (For 2.15GHz CPU or 2.40GHz CPU) from Asus WebSite.
Download "Dat to img by stupdroid.com" (search it with google).
Extract Dat to img by stupdroid.com in a Folder.
Open the Firmware ZIP and copy system.new.dat, system.transfer.list e file_contexts in the Dat2IMG's folder.
Execute system.new.dat 2 flashable img converter.exe and just press ENTER and wait till the end of procedure, you will receive 2 files : system.raw.img e system.new.img.
Copy system.new.img in your Fastboot's folder.
Put the Phone into Fastboot mode.
Open fastboot and put this command: " fastboot flash system system_new.img "
Wait the end of flash procedure and type : Fastboot Reboot.
Enter recovery wipe data and cache.
Done.
Click to expand...
Click to collapse
I forgot to say, after this procedure, just flash the stock WW recovery via Fastboot, then download from asus the lastest 7.0 firmware SKU WW, all perfect. tested by me.
Ok I already have system.new.img, I copied it to the root folder of the SD. Device restart in Fastboot mode (power + vol.up key). Exit screen with message Fastboot mode and does nothing.
Install in the computer the pyton 3.6, I suppose that it serves for the process of generating system.new.img.
I do not know how to do the first step "Install: ADB & Minimal Fastboot.".
Thank you and forgive my translator
If i want to unlock the bootloader for root and unbrand this phone what i have to do? I need unbranded nougat with root but the phone is TIM branded
Ryder. said:
If i want to unlock the bootloader for root and unbrand this phone what i have to do? I need unbranded nougat with root but the phone is TIM branded
Click to expand...
Click to collapse
What version is your phone right now??
Now only have official unluck
For 2.15GHz:8996(None-PRO) UnlockTool
For 2.4GHz:8996P(PRO) UnlockTool
If you are WW version right now,try these tools.
samson1357924 said:
What version is your phone right now??
Now only have official unluck
For 2.15GHz:8996(None-PRO) UnlockTool
For 2.4GHz:8996P(PRO) UnlockTool
If you are WW version right now,try these tools.
Click to expand...
Click to collapse
It's not WW. I'ts from italy and it's tim branded
Ryder. said:
If i want to unlock the bootloader for root and unbrand this phone what i have to do? I need unbranded nougat with root but the phone is TIM branded
Click to expand...
Click to collapse
Try this
or try flash ZenFone 3 Deluxe ZS570KL_WW stock recovery of 4.12.40.1698 and flash UL-Z016-WW-4.12.40.1698-user.zip in recovery (by micro sd or adb sideload)not sure if it work(need verification,I wish you to try first).
Please help me, my model is the Z016S
I can convert UL-Z016-WW-4.12.40.1698-user.zip img and flash with fastboot.
Reboot and it works, but I do not know how to get into recovery.
I have also installed the Z016-WW-4.11.40.1085_recovery.img. The TIM DISAPPEARED
Then I copied the UL-Z016-WW-5.14.44.1898-user.zip into the internal memory and it does not install well.
I have proven the same with UL-Z016-WW-5.14.44.1898-user.zip and it does not work me it stays in a non-comands and will not boot.
greetings and thanks
P.S. At least you do not see the TIM anywhere.
barbapapa said:
Please help me, my model is the Z016S
I can convert UL-Z016-WW-4.12.40.1698-user.zip img and flash with fastboot.
Reboot and it works, but I do not know how to get into recovery.
I have also installed the Z016-WW-4.11.40.1085_recovery.img. The TIM DISAPPEARED
Then I copied the UL-Z016-WW-5.14.44.1898-user.zip into the internal memory and it does not install well.
I have proven the same with UL-Z016-WW-5.14.44.1898-user.zip and it does not work me it stays in a non-comands and will not boot.
greetings and thanks
P.S. At least you do not see the TIM anywhere.
Click to expand...
Click to collapse
So,what is your system version right now?4.12.40.1698?
Why not flash the recovery of 4.12.40.1698?
samson1357924 said:
So,what is your system version right now?4.12.40.1698?
Why not flash the recovery of 4.12.40.1698?
Click to expand...
Click to collapse
This is my situation
samson1357924 said:
So,what is your system version right now?4.12.40.1698?
Why not flash the recovery of 4.12.40.1698?
Click to expand...
Click to collapse
I have done this and it installs,
fastboot flash recovery Z016-WW-4.12.40.1698_recovery.img
reboot, boot system, detect update file is installed, reboot and then gives error (3) unknown.
barbapapa said:
I have done this and it installs,
fastboot flash recovery Z016-WW-4.12.40.1698_recovery.img
reboot, boot system, detect update file is installed, reboot and then gives error (3) unknown.
Click to expand...
Click to collapse
Tow solution you can try
1.install the rom of 4.12.40.1698 again(some of tile,such as xbl,devcfg,devcfgbak..... may be still TIM versio.install it in recovery may turn it into WW version)
2.If fail, try flash these files in fastboot.(I will upload these files for you to flash,also you can draw by yourself)
Ok already worked, the solution is to unlock as you put in # 11.
Thank you
barbapapa said:
Ok already worked, the solution is to unlock as you put in # 11.
Thank you
Click to expand...
Click to collapse
Good!
Can you share what step did you do? Which might help another TIM user.

HwOTA7 and HwOTA8 for Huawei P10 Lite

HwOTA7 + HwOTA8 for Huawei P10 Lite​1. On the phone, make a backup of all data (since during the upgrade all data will be erased). This is an obligatory condition.
2. Unlock your bootloader: (There´s no way around it (unfortnuately), but after the procedure your device will be locked again, so don´t worry!). The device will make a factory reset, so once again, BACKUP your files!!!!!!!!!!
3. Enable ‘USB debugging’ and ‘OEM Unlock’ option from setting>developer option>. To enable Developer Options, go to About phone and tap the Build Number 7 times.
4. You must download three zip-archives with a full "Full OTA" firmware on which you want to flash (If you look through in the FF (FirmwareFinder), you see there are 4 archives for China and 3 for other locations. You must to download for the version what model and location you will have after the firmware);
5. Add the downloaded files to the folder "HWOTA\Update" and run the .cmd file, it will rename them automatically according to the template:
- update_data_full_public.zip to update_data_public.zip
- update_full_....zip to update_all_hw.zip
- update.zip don't rename
and will be repack firmware (only HwOTA8)!!!
6. After run the universal batch file update.bat in the "HWOTA" folder, which will provide an opportunity to choose the required work option (change firmware/rebranding (change location)). FOLLOWING INSTRUCTIONS ON THE SCREEN OF THE MONITOR - the entire process is accompanied by prompts.
At the end of the process, everything should work fine... Be prepared, the bootloader will be locked after changing the location or firmware as a FullOTA.
7. If suddenly it turned out "bootloop" - go into the stock Recovery and make wipe.
PS: To change the firmware using the SD card, you need to create a folder "HWOTA" on the SD card and copy three firmware archives with the changed names (see above). In the batch file select item 1 "SDCard HWOTA directory"
HwOTA_WARSAW.zip
Short video tutorial for upgrade of any version authorized or unauthorized in phone P10 Lite Thanks @Alexxxx1
HwOTA8 method for rollback from EMUI 8 to Emui 5 - Huawei P10 lite Thanks @Alexxxx1
If you like my work, you can thank TeamMT PayPal
PPS: Sorry for my English!!!
used this to update my phone, to oreo... but no twrp works now, recovery fails to boot! so... no way to get root xD
Locked Bootloader
GizmoTheGreen said:
used this to update my phone, to oreo... but no twrp works now, recovery fails to boot! so... no way to get root xD
Click to expand...
Click to collapse
If you read the instructions, the bootloader will be locked after the process is completed, therefore, you're gonna have to unlock it and reflash the custom recovery that you had before
---------- Post added at 10:43 PM ---------- Previous post was at 10:11 PM ----------
vovan1982 said:
HwOTA for Huawei P10 Lite​1. On the phone, make a backup of all data (since during the upgrade all data will be erased). This is an obligatory condition.
2. Unlock your bootloader: (There´s no way around it (unfortnuately), but after the procedure your device will be locked again, so don´t worry!). The device will make a factory reset, so once again, BACKUP your files!!!!!!!!!!
3. Enable ‘USB debugging’ and ‘OEM Unlock’ option from setting>developer option>. To enable Developer Options, go to About phone and tap the Build Number 7 times.
4. You must download three zip-archives with a full "Full OTA" firmware on which you want to flash (If you look through in the FF (FirmwareFinder), you see there are 4 archives for China and 3 for other locations. You must to download for the version what model and location you will have after the firmware);
5. Add the downloaded files to the folder "HWOTA\Update" and run the .cmd file, it will rename them automatically according to the template:
- update_data_full_public.zip to update_data_public.zip
- update_full_....zip to update_all_hw.zip
- update.zip don't rename
6. After run the universal batch file update.bat in the "HWOTA" folder, which will provide an opportunity to choose the required work option (change firmware/rebranding (change location)). FOLLOWING INSTRUCTIONS ON THE SCREEN OF THE MONITOR - the entire process is accompanied by prompts.
At the end of the process, everything should work fine... Be prepared, the bootloader will be locked after changing the location or firmware as a FullOTA.
7. If suddenly it turned out "bootloop" - go into the stock Recovery and make wipe.
PS: To change the firmware using the SD card, you need to create a folder "HWOTA" on the SD card and copy three firmware archives with the changed names (see above). In the batch file select item 1 "SDCard HWOTA directory"
HwOTA.zip
PPS: Sorry for my English!!!
Click to expand...
Click to collapse
Hello!
I need your help with the update.bat file
When I try to execute the file, it just shows a cmd screen for a couple of seconds and nothing happens
what am I possibly doing wrong?
Plus, theres no instrutions for pluggin the phone into the PC, what I being doing its plug in it on bootloader mode
I hope you can understand me, english is not my mother language.
And thank you in advance
EDIT: Forget it man, I make it work, I just copied the HWOTA directory to C: and it works
So far i just used the update firmware option and everything is working
GizmoTheGreen said:
used this to update my phone, to oreo... but no twrp works now, recovery fails to boot! so... no way to get root xD
Click to expand...
Click to collapse
Hi, of couse, on Oreo not TWRP. TWRP from Nougat does not work.
kristoff_andxp said:
If you read the instructions, the bootloader will be locked after the process is completed, therefore, you're gonna have to unlock it and reflash the custom recovery that you had before
---------- Post added at 10:43 PM ---------- Previous post was at 10:11 PM ----------
Hello!
I need your help with the update.bat file
When I try to execute the file, it just shows a cmd screen for a couple of seconds and nothing happens
what am I possibly doing wrong?
Plus, theres no instrutions for pluggin the phone into the PC, what I being doing its plug in it on bootloader mode
I hope you can understand me, english is not my mother language.
And thank you in advance
EDIT: Forget it man, I make it work, I just copied the HWOTA directory to C: and it works
So far i just used the update firmware option and everything is working
Click to expand...
Click to collapse
Yes, I can understand you. You did the right thing, way to HwOTA as short as possible.
vovan1982 said:
Hi, of couse, on Oreo not TWRP. TWRP from Nougat does not work.
Click to expand...
Click to collapse
so need to wait for twrp port... ok ^^
kristoff_andxp said:
If you read the instructions, the bootloader will be locked after the process is completed, therefore, you're gonna have to unlock it and reflash the custom recovery that you had before
Click to expand...
Click to collapse
1. it was not locked. and even if it was I can easily unlock it.
2. I flashed the recovery succesfully, it just gives an error when trying to enter it
so, need new twrp for oreo...
GizmoTheGreen said:
so need to wait for twrp port... ok ^^
1. it was not locked. and even if it was I can easily unlock it.
2. I flashed the recovery succesfully, it just gives an error when trying to enter it
so, need new twrp for oreo...
Click to expand...
Click to collapse
The greater question is: can be the bootloader locked after Oreo update ?
Eurofighter_ty said:
The greater question is: can be the bootloader locked after Oreo update ?
Click to expand...
Click to collapse
Don't know, I'm not going to try
My Bootloader is Unlocked after successful installation.
But why my PC says the prone is PRA-LX1 instead of WAS-LX1?
GizmoTheGreen said:
Don't know, I'm not going to try
Click to expand...
Click to collapse
Did u relocked bootloader?
Alexxxx1 said:
Did u relocked bootloader?
Click to expand...
Click to collapse
no. it did not relock bootloader automatically and I want it unlocked. also afraid of brick if I lock it with this rom.
GizmoTheGreen said:
no. it did not relock bootloader automatically and I want it unlocked. also afraid of brick if I lock it with this rom.
Click to expand...
Click to collapse
Yes, with this method bootloader stay unlock same as on p10 plus, but if you can enter in stock recovery no afraid of any brick if you relock bootloader.
Poslato sa VKY-L29 uz pomoć Tapatoka
for anyone wondering, I solved Magisk installation on oreo!
use .app extractor to get the RAMDISK image, patch it with magisk app on the phone. then use fastboot to install to ramdisk partition, like so
Code:
fastboot flash ramdisk patched_image.img
hope this helps
GizmoTheGreen said:
for anyone wondering, I solved Magisk installation on oreo!
use .app extractor to get the RAMDISK image, patch it with magisk app on the phone. then use fastboot to install to ramdisk partition, like so
Code:
fastboot flash ramdisk patched_image.img
hope this helps
Click to expand...
Click to collapse
Did you try it? Someone said he wasn't able to do it.
Jaizu said:
Did you try it? Someone said he wasn't able to do it.
Click to expand...
Click to collapse
yes I have magisk working
now that I think about it I tried earlier with the kernel image as well, there is no "boot" image.
maybe you need to do both kernel and ramdisk images seperately
either way, magisk working here, I already replaced the emojis
GizmoTheGreen said:
yes I have magisk working
now that I think about it I tried earlier with the kernel image as well, there is no "boot" image.
maybe you need to do both kernel and ramdisk images seperately
either way, magisk working here, I already replaced the emojis
Click to expand...
Click to collapse
So, what's the first impressions of Emui 8?
Sent from my WAS-LX1 using Tapatalk
GizmoTheGreen said:
yes I have magisk working
now that I think about it I tried earlier with the kernel image as well, there is no "boot" image.
maybe you need to do both kernel and ramdisk images seperately
either way, magisk working here, I already replaced the emojis
Click to expand...
Click to collapse
Mind sharing patched .img files? What device model are you using?
GizmoTheGreen said:
so need to wait for twrp port... ok ^^
1. it was not locked. and even if it was I can easily unlock it.
2. I flashed the recovery succesfully, it just gives an error when trying to enter it
so, need new twrp for oreo...
Click to expand...
Click to collapse
On P10 Lite with Oreo worked TWRP with P Smart Oreo.
vovan1982 said:
On P10 Lite with Oreo worked TWRP with P Smart Oreo.
Click to expand...
Click to collapse
Got a link?
vovan1982 said:
On P10 Lite with Oreo worked TWRP with P Smart Oreo.
Click to expand...
Click to collapse
If you mean that: http://www.mediafire.com/file/icpfjhw9eysjlao/FIGO321.img (TWRP-3.2.1-0 for Huawei P Smart)
I've not test yet if it's fully comatible, but you can enter into TWRP and seems to works.
Reboot into fastboot and enter the command:
fastboot flash recovery_ramdisk FIGO321.img
recovery_ramdisk partition in Android 8 is the Recovery

Convert Docomo dtab d-02h into Global version 802L

I do not own any of the original work. I just tried it, it worked and Reposted in XDA as there was no such guide here. I know it is an old device but there are still some legends and those people can take advantage of this guide.
It only takes time to do it properly, so you can download necessary files and so on.
Start TWRP
Connect to PC by USB debugging and execute adb reboot recovery command, or press and hold the volume button and power button at the same time (about 8 seconds) from the power off state to start.
Select Wipe ⇒ Format Data from the menu and select yes. . .
* If you do not delete the data once, the upgrade package distributed for Mediapad M2 to be introduced may cause an installation error.
File download
The DL and folder name of the required files are " M2 ". (Zip and harden)
Decompress after DL and move the files inside to "platform-tools".
BOOT.img
CUST.img
SYSTEM.img
RECOVERY.img
There are four files mentioned above.
Install M2-android5.1.X. . .
* If you do not do this, you will not be able to upgrade to a later version.
* Please keep your PC and tablet ADB after this.
adb devices
fastboot flash boot BOOT.img
fastboot flash cust CUST.img
fastboot flash system SYSTEM.img
Finally, make the recovery the original M2 one
fastboot flash recovery RECOVERY.img
fastboot reboot
After reboot, it will be changed to Huawei M2-android5.1.X including recovery.
Download "M2-802LC229B207CUSTC229D006" from " [ROM] [STOCK] [Android 6.0] [M2-802L] B207-Android 6.0 Marshmallow with EMUI 4.0 " of Android 6.0 Marshmallow with EMUI 4.0
XDA . Move the downloaded file to the platform-tools folder without decompressing it and execute the following command. * Please create a "dload" folder in the tablet in advance, otherwise an installation error will occur when the command is executed.
adb push update.zip /sdcard/dload
After transfer, open Settings ⇒ System Update and select “Update Locally” from the menu. After selecting update.zip, tap Install to start the update.
With the above, it is changed to Huawei M2-android6.0.X / EMUI 4.0.X. . . Remember to reboot after installation! ! !
Credits: https://www.yukari.ne.jp/shtml/?p=14588
https://utekno.com/konversi-huawei-dtab-d02h-ke-mediapad-m2-14905
hi,. i just want to clarify, i have this dtab d-02h docomo lock and i cant use it with my simcard.. will this tutorial work? after this i will be able to use diffrent simcard?
hi good day, my tablet sim network lock,. can i still proceed with this? do i need to unlock my bootloader first?? thank you!
hello, i have this dtab d02h, network locked from docomo japan.. current os is 5.1.1, can i skip the 1st step "flash via fastboot" and directly flash the update.zip using dload method.. local update through secret code using calculator... because there is no local update in settings..

Question How to root by patching boot.img, having issues with firmware

Im trying to root my device by patching boot.img , but the issue is when i download 12.5.3.0 firmware its only 130mb zip file and it dosent contain boot.img, is there a place where i can download entire 12.5.3.0 rom so i can get boot.img ?
Also another question , im doing this because apparently ill still get OTA updates afterwards , is that true ?
shodibre said:
Im trying to root my device by patching boot.img , but the issue is when i download 12.5.3.0 firmware its only 130mb zip file and it dosent contain boot.img, is there a place where i can download entire 12.5.3.0 rom so i can get boot.img ?
Also another question , im doing this because apparently ill still get OTA updates afterwards , is that true ?
Click to expand...
Click to collapse
Updates work different for every other phone but its possible
here is a guide: by topjohmwu of magisk
Patching Images​
If your device has boot ramdisk, you need a copy of the boot.img
If your device does NOT have boot ramdisk, you need a copy of the recovery.img.
You should be able to extract the file you need from official firmware packages or your custom ROM zip (if using one). If you are still having trouble, go to XDA-Developers and look for resources, guides, discussions, or ask for help in your device’s forum.
Copy the boot/recovery image to your device
Press the Install button in the Magisk card
If you are patching a recovery image, make sure “Recovery Mode” is checked in options.
In most cases it should already be automatically checked.
Choose “Select and Patch a File” in method, and select the stock boot/recovery image
The Magisk app will patch the image to [Internal Storage]/Download/magisk_patched_[random_strings].img.
Copy the patched image to your PC with ADB:
adb pull /sdcard/Download/magisk_patched_[random_strings].img
Flash the patched boot/recovery image to your device.
For most devices, reboot into fastboot mode and flash with command:
fastboot flash boot /path/to/magisk_patched.img or
fastboot flash recovery /path/to/magisk_patched.img if flashing a recovery image
Reboot and voila!
flairepathos.info said:
Updates work different for every other phone but its possible
here is a guide: by topjohmwu of magisk
Patching Images​
If your device has boot ramdisk, you need a copy of the boot.img
If your device does NOT have boot ramdisk, you need a copy of the recovery.img.
You should be able to extract the file you need from official firmware packages or your custom ROM zip (if using one). If you are still having trouble, go to XDA-Developers and look for resources, guides, discussions, or ask for help in your device’s forum.
Copy the boot/recovery image to your device
Press the Install button in the Magisk card
If you are patching a recovery image, make sure “Recovery Mode” is checked in options.
In most cases it should already be automatically checked.
Choose “Select and Patch a File” in method, and select the stock boot/recovery image
The Magisk app will patch the image to [Internal Storage]/Download/magisk_patched_[random_strings].img.
Copy the patched image to your PC with ADB:
adb pull /sdcard/Download/magisk_patched_[random_strings].img
Flash the patched boot/recovery image to your device.
For most devices, reboot into fastboot mode and flash with command:
fastboot flash boot /path/to/magisk_patched.img or
fastboot flash recovery /path/to/magisk_patched.img if flashing a recovery image
Reboot and voila!
Click to expand...
Click to collapse
I understand this , but im having issue with finding download link for my firmware , my phone is on 12.5.3.0 version EU , but i cant find complete firmware anywhere , only OTA 130mb download.
shodibre said:
I understand this , but im having issue with finding download link for my firmware , my phone is on 12.5.3.0 version EU , but i cant find complete firmware anywhere , only OTA 130mb download.
Click to expand...
Click to collapse
12.5.3.0 version EU can be a number of phones
say Samsung Q10 12.5.3.0 version EU, Xiaomi P250 12.5.3.0 version EU thats how i know what phone you're using
Xiaomi Poco F3 / Xiaomi Mi 11X / Redmi K40 are the devices in the thread
flairepathos.info said:
12.5.3.0 version EU can be a number of phones
say Samsung Q10 12.5.3.0 version EU, Xiaomi P250 12.5.3.0 version EU thats how i know what phone you're using
Xiaomi Poco F3 / Xiaomi Mi 11X / Redmi K40 are the devices in the thread
Click to expand...
Click to collapse
Xiaomi Firmware Updater
The ultimate script that provides firmware packages for Xiaomi devices.
xiaomifirmwareupdater.com
Thats the firmware , but its only OTA file , i cant find any FULL rom.
I found V12.5.3.0.rkhCNxm , which is chinese verison , i dont know if i can use boot.img from it ?
in the guide it says:
Copy the boot/recovery image to your device
dont brick your phone,
you can use recovery method
shodibre said:
Xiaomi Firmware Updater
The ultimate script that provides firmware packages for Xiaomi devices.
xiaomifirmwareupdater.com
Thats the firmware , but its only OTA file , i cant find any FULL rom.
I found V12.5.3.0.rkhCNxm , which is chinese verison , i dont know if i can use boot.img from it ?
Click to expand...
Click to collapse
I give up, all the best
flairepathos.info said:
in the guide it says:
Copy the boot/recovery image to your device
dont brick your phone,
you can use recovery method
I give up, all the best
Click to expand...
Click to collapse
Exactly , its just that boot/recovery image is not present in this OTA update file , i need 3gb FULL rom , but i cant find any download link for it
shodibre said:
Exactly , its just that boot/recovery image is not present in this OTA update file , i need 3gb FULL rom , but i cant find any download link for it
Click to expand...
Click to collapse
Dude... Choose what you need on the website
Xiaomi Firmware Updater
The ultimate script that provides firmware packages for Xiaomi devices.
xiaomifirmwareupdater.com
Hi,
I don't know English and have a hard time understanding, I hope this is what you are looking for https://www.getdroidtips.com/xiaomi-poco-f3-stock-firmware/
shodibre said:
Xiaomi Firmware Updater
The ultimate script that provides firmware packages for Xiaomi devices.
xiaomifirmwareupdater.com
Thats the firmware , but its only OTA file , i cant find any FULL rom.
I found V12.5.3.0.rkhCNxm , which is chinese verison , i dont know if i can use boot.img from it ?
Click to expand...
Click to collapse
The "fastboot" version should work, there should be a boot.img inside.
Redmi K40 ChinaStableFastbootV12.5.6.0.RKHCNXM11.05.2 GB2021-08-13Download
kurtschmeichel said:
The "fastboot" version should work, there should be a boot.img inside.
Redmi K40 ChinaStableFastbootV12.5.6.0.RKHCNXM11.05.2 GB2021-08-13Download
Click to expand...
Click to collapse
I just completed all the steps , flashed patched boot img ,but there is no root , when i compare unpatched boot img and patched one they are exactly the same size to the bit, am i doing something wrong ?
i managed to root it !
Thank you everyone
In my opinion if you leave written how you did it might help others with the same problem.

Categories

Resources