Making complete Fastboot ROMs & Factory OTAs - by self for warranty/recovery... - Xiaomi Black Shark 2 Guides, News, & Discussion

Avoid and pass by a fool and a madman

Wow, great post and great work bro, this post is very informative indeed. I hope that you can finish you tool soon, I can help testing it if you need testers.

wga0 said:
Universal Image Extractor:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
It seems that I succeeded in making the Universal Image Extractor. With the latest update engine, it works on any ota for any brand, any version, including the incremental also. But still, lots of work remained....
Complete Fastboot ROMs:
Now, you can build the complete Fastboot ROMs with some more info in your phone, even if your phone's manufacture never release it. To make it complete, you need to include the other roms which is not inside the ota(update.zip), and some more info such as partition type&align, because android has dynamic partitions and it can be changed between the different versions. If your roms were deleted and the partition info gone, you need it definitely.
Unfortunately, this(backup other roms not contained in the ota) requires root or rooted recovery. If you done root, backup all of your roms except userdata, all of the partition info, and keep it safe. If possible, make the fastboot rom yourself with those files/info. In black shark 2/pro cases, fortunately, the partition info is not changed upto now...
First, these code should come first to recover the partition info. It does re-partitioning and align including the two slots.
Code:
%fastboot_cmd% flash partition:0 gpt_both0.bin
%fastboot_cmd% flash partition:1 gpt_both1.bin
%fastboot_cmd% flash partition:2 gpt_both2.bin
....(all partitions)
In BS2/pro cases, it has align.bin info. It also should be flashed here to align the partition position
Second, the bootloader needed to be changed as the fastboot roms uses, and reboot into bootloader again. In cases that the bootloader has changed, extreme caution is required. If compatibility is not guaranteed, never try this (Fastboot ROMs). When doing this, flash only one bootloader to check the boot compatiblity, and after reboot successfully, flash the other slot.
Code:
%fastboot_cmd% flash abl_a abl.img
%fastboot_cmd% reboot-bootloader
timeout /t ....
In BS2/pro Android 10 cases, it's changed completely, you should never try this (Fastboot ROMs)
Third, re-setting and flash all the roms (including which is not inside the ota) are required to be fully recovered
Code:
%fastboot_cmd% oem simconfig set SS
%fastboot_cmd% flash avb_custom_key pkmd.bin
%fastboot_cmd% erase ddr
%fastboot_cmd% erase userdata
%fastboot_cmd% erase ....(all security key related)
%fastboot_cmd% flash roms...
More than Fastboot ROMs & Factory OTAs:
And now with the tool, it seems that I found a way to build a flashable update.zip, same as the factory OTA or Fastboot ROMs. It seems like it has both pros. It doesn't require rooting, unlocking bootloader, etc... Even if your phone's manufacturer never release the factory OTA, even if your phone never boot(bricked), you still could build and flash(update/rollback/recover) it without rooting & unlocking...
Here's the idea. (I found this inside the update_engine & OTA packaging sources)
With the universal image extractor, you can build any images and that images are stock(factory) images signed by the manufacturer. So, if I add(import) that ota packaging sources into the tool, I can build the factory OTA itself anytime with the tool. But unfortunately, although that factory OTA contains all signed, stock images & info, zip file itself isn't signed by the manufacturer and rejected by the system. (can't be flashed using 1027 code). Then... what if I can use it in bootloader or recovery? Stock recovery of BS has only one function, factory reset. Then fastboot?
It seems that I found a way to build an update.zip, same as the Factory OTA but can be used in bootloader, and a way to update(not flash) it in bootloader, bypassing the signature check of update.zip itself. So ideally, it doesn't require anything root or unlock, and can be updated and boot successfully through the locked bootloader because all of the images inside the zip are signed by manufacturer. Further, you don't need to push it into phone anymore. After entering bootloader, one command is enough. It's easier and powerful than both Fastboot and Factory OTA images. (not as powerful as complete Fastboot ROMs that contains all the roms which is not in OTAs...)
A bad things is..... this is just an possibility(idea) found inside the source codes currently.... and requires a lots of works in windows, like the universal image extractor.
Click to expand...
Click to collapse
Thank you for your thread. I'm going to study this!

Related

Root, How do adb fastboot commands work? need help

Hello, I am student at my university studying Computer Science. I work in tech support at my school. This is the first time I have modified the android os. The community on xda has been really helpful and knowledgeable. I have created an account to see if anyone else has done the same thing I have. Anyway read below for my post.
I am trying to change the recovery on my phone to twrp. Let me start out by saying I rooted my phone before on build number 130 (KIW-L24,Android 5.1,EMUI 3.1,C567B130,United States, Channel-Others). I used the instructions here and it worked http://forum.xda-developers.com/honor-5x/development/root-kiw-l24-usa-kiwi-t3305190.
I then decided to update through the huawei updater to build number 151 (KIW-L24, Android 5.1, EMUI 3.1, C567B151, United States, Channel-Others). It eventually got to a black EMUI menu with installing 0%. So I powered it off even though it warned against it. So my phone was bricked so I followed instructions at http://forum.xda-developers.com/honor-5x/help/bricked-honor-5x-t3328308 and my phone worked again.
Okay so now I want to root my phone so I follow the instructions for rooting. Problem is that I can not replace the EMUI recovery with twrp recovery. I am guessing that it may be because 151 is a security update.
I use these commands on adb with the twrp_kiwi.img in my adb folder(named .android by default)
adb reboot bootloader
fastboot flash recovery twrp_kiwi.img
fastboot reboot
adb reboot recovery
So I wanted to see if I could put the old firmware back so I followed the instructions for bricked device. But the fastboot commands don't seem to do anything with the .img files.
fastboot flash boot boot.img
fastboot flash recovery recovery.img
fastboot flash system system.img
fastboot flash cust cust.img
fastboot reboot
Yea so I am lost as to why fastboot commands arent working as it says finished and any advice would be appreciated.
Also is it possible to format the phone similar to a pc and use adb to flash the firmware back on.
I want to eventually backup my phone and put cyanogenmod on it.
... I am guessing that it may be because 151 is a security update
Click to expand...
Click to collapse
If your bootloader is unlocked, you should be able to flash what you want.
Have you tried reinstalling the Android device drivers on your PC?
JT-on said:
If your bootloader is unlocked, you should be able to flash what you want.
Have you tried reinstalling the Android device drivers on your PC?
Click to expand...
Click to collapse
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Arobase40 said:
Is this really for a private use unless you are trying to ask us to do your university exercises for you ? LOL
And as you felt need to mention "I am student at my university studying Computer Science. I work in tech support at my school.", you should know first University mission is to teach you to search and exercise by yourself, to do things step by step and to guess by yourself what was wrong. ^^
Just one tip and advice : read up your own post carefully and you should find out what you've done wrong...
Click to expand...
Click to collapse
That was just background information unrelated to my post. I am currently trying to see if I can put the old firmware back to see if it fixes the problem.
honor5x_student said:
That was just background information unrelated to my post. I am currently trying to see if I can put the old firmware back to see if it fixes the problem.
Click to expand...
Click to collapse
TWRP works just fine on B151
plug in usb / Shut down the phone
boot to the bootloader (power + vol down)
open command prompt on PC
fastboot flash recovery twrp_kiwi.img
hold volume up + volume down + power till you see TWRP (about 14 seconds)
In TWRP choose reboot / recovery
Say yes to Root
recovery will reload / flash your rom
If you want to return to Stock use this >> https://www.androidfilehost.com/?fid=24459283995315154
instructions are in the zip

will you solve this?

Ok, I'll explain the problem(s)
My mate 10 pro (BLA-L09) can boot in recovery (TWRP 3.2.1-0) and fastboot:
When I flash other recovery with the .img by recovery (like for example the stock recovery) give me error;
When I flash other recovery with the .img by fastboot (like for example the stock recovery) give me error;
When I flash ROM by .zip/UPDATE.APP give me error;
In fastboot mode I read "Phone Locked FRP unlock"
the phone has no ROM in it, wehn I boot it automatically put me to recovery;
So, My bootloader is locked and I can't unlock it beacause I can't boot the phone.
I just want to reinstall the stock ROM, have you any ideas?
thanks to all
flash recovery from fastboot
Shandroid_94 said:
Ok, I'll explain the problem(s)
My mate 10 pro (BLA-L09) can boot in recovery (TWRP 3.2.1-0) and fastboot:
When I flash other recovery with the .img by recovery (like for example the stock recovery) give me error;
When I flash other recovery with the .img by fastboot (like for example the stock recovery) give me error;
When I flash ROM by .zip/UPDATE.APP give me error;
In fastboot mode I read "Phone Locked FRP unlock"
the phone has no ROM in it, wehn I boot it automatically put me to recovery;
So, My bootloader is locked and I can't unlock it beacause I can't boot the phone.
I just want to reinstall the stock ROM, have you any ideas?
thanks to all
Click to expand...
Click to collapse
If the FRP is unlocked, just unlock your bootloader again with your unlock code from huawei.
Or pay 4 euros and use dc unlocker.
I can't unlock bootloader 'cause dc unlocker can give me the code only when the smartphone is booted, and it hasn't a ROM mounted in..
Could you specify the error?
EngrVan said:
Could you specify the error?
Click to expand...
Click to collapse
which one?
Shandroid_94 said:
When I flash other recovery with the .img by recovery (like for example the stock recovery) give me error;
When I flash other recovery with the .img by fastboot (like for example the stock recovery) give me error;
Click to expand...
Click to collapse
These.
EngrVan said:
These.
Click to expand...
Click to collapse
1st pic, tried to flash recovery.img by fastboot;
2nd pic, tried to flash system.img by fastboot;
3rd pic, tried to flash stock ROM by TWRP 3.2.1-0 (Yeah, it CAN'T works, but whatever I flash it's the same results)
4th pic, dc-unclocker that can't pick up code for unlocking bootloader
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Should have used dc-unlocker to read the bootloader code first, then unlock manually.
Now you have two options; wait for the unlock code page to get back up or use FunkyHuawei to restore your phone.
Since you don't have your bootloader unlocked you can't flash images as the partitions are protected. This causes the "Command not allowed" errors.
How did you erase/delete/remove the ROM in the first place? Anything you did before the incident?
Try to boot to erecovery... (vol + on boot w/o usb cable plugged in) Load the rescue system image over wifi. Hope it works!
I said just unlock bootloader because obviously you must alredy have the code if you have TWRP installed, that means that at some point you had it unlocked and you should have a code.
Anyway, huawei unlock page is up, so you should be able to get the code again in case you lost it. Dcunlocker gives your the data needed like imei, product id (not sure about this one) and SN in the box.
I think dc unlocker can unbrick your device (you need like 15 credits) it uses a back door to flash and unbrick. then you can get the unlock code to unlock.
Another thng you can try is flashing the BLA-Recovery no check from hwota8 directrly from TWRP (flash image) transfer it to your device through mtp or adb push.

[FW] 7.1.1 & 6.0.1 Service Tech Firmwares - Debrick - Upgrade - Downgrade

FOR THE ASUS 3 ZOOM ZE553KL
I Found These Working Asus Service Technicians Full Stock Firmwares. They Include Files That Are Not In Asus' Website FW.
Includes The Last 7.11 Nougat Before Oreo Was Released
Info I Found About Tech Fw:
note that this firmware is different from the usual firmware by asus. It is used for servicing the phone, it restores all partition from factory except for imei, s/no, mac address etc. Google account lock is active in this firmware.
The firmware is used by asus flash tool to restore your phone partitions. If by any chance, the restore is not successful using the tool, just unzip the file and flash manually (flashall_aft.cmd)
you need this firmware if your partitions are totally corrupted (example if you cannot go into fastboot mode). Most of the time, bricked phones can be restored by flashing asus stock recovery (recovery.img), then stock asus firmware. If that doesn't solve the bricking, then you will need the raw/service firmware.
Click to expand...
Click to collapse
These Are Untouched Full Stock FW
You Can Just Flash The Normal Files Recovery.img, Boot.img And System.img To Change Android Versions Or To Unbrick
Recovery.img, Boot.img And System.img And The Emmc_appsboot_8953.mbn File (Could Be The Bootloader)were The Only Changes Throughout The Fw's, All The Other Files/partitions Are The Same Such As The Radios Etc
The Bootloader Lock Status Doesnt Get Changed Afaik
You Can Still Update Using Asus' Builtin Update
They Are In Zip Format, Unzip Them To Their Own Folder
HOWTO FLASH
PREREQUISITES:
Make A Nandroid Backup
If Bootable Remove/Signout Of Google Account
(Might Work With Locked Bootloader, IDK)
Ze553kl(Zenfone3 Zoom) Phone With Unlocked Bootloader(used unlocker apk from asus website when phone was in running state)
Unlocking Bootloader App Available From Asus - was for upto nougat 7.11
Usb Asus Drivers
Usb Debugging Enabled On Phone, Maybe Not But Wont Hurt To Try
Computer Running Windows
Usb Data Cable For Phone
ON PHONE
If Bootable Enable Usb Debugging, Uncheck Verify Apps Via Usb, Remove Google Account
Backup Internal Sdcard - Most Def As It Will Get Wiped
Make Nandroid Backup
Remove Sdcard, Just In Case
Put Phone Into Fast Boot Mode- Unplugged, Phone Powered Off - Vol Up + Power Button Pressed, Hold Both Until Screen Comes On.
Plug Usb In Cable To Phone From Pc.
METHODS:
After Unzipping Them To Their Own Folder
1. From Within The Extracted Folder Double Click "Flashall_aft.cmd" Will Auto Open Command Prompt And Start Flashing All The Files Via Its Included Fastboot, Or....
2. Manually Open Command Prompt Within The Unzipped Folder And Type "Flashall_aft.cmd", Or....
3. Use Your Local Copy Of Adb/Fastboot And Manually Flash These Files And Commands:
Code:
fastboot flash recovery recovery.img
fastboot flash boot boot.img
fastboot flash system system.img
fastboot format userdata
fastboot reboot
------------------------------------------------------------------------
IF STILL BRICKED OR ODD BEHAVIOR BUT CAN BOOT TO BOOTLOADER/FASTBOOT THEN DO THESE COMMANDS WHEN IN FASTBOOT MODE
Code:
fastboot erase system
fastboot erase recovery
fastboot erase boot
fastboot erase userdata
fastboot -w
fastboot erase splash
fastboot erase cache
THEN RE-BOOT BACK INTO BOOTLOADER AND CHOOSE ONE OF THE THREE METHODS
- -------------------------------------------------------------------------------------
Disclaimer Im Not Responsible For Yours Or Anyone Elses Devices, Do At Your Own Risk
DOWNLOADS
FIRMWARES I FOUND UPLOADED TO ANDROIDFILEHOST:
CHECK THE MD5 AFTER DOWNLOADING.
ZE553KL-WW_71.60.139.30_7.1.1_NOUGAT_2018/03.zip - The Last Nougat Before Release Of Oreo
Just Want To Flash The Base Files, Goto This Thread By Me
ZE553KL-WW-20.32.67.25_7.1.1_NOUGAT_2017/07.zip
ZE553KL-WW_11.40.86.71_ 6.0.1_MM_2017/04.zip - Not Tested By Me
ZE553KL-WW_10.40.47.107_6.0.1_MM_2017/02.zip - Afaik The Initial Fw Shipped W/the Phone
ADB_FASTBOOT_1.4.1.ZIP
SCREENSHOTS
ZE553KL-WW_71.60.139.30_7.1.1_NOUGAT_2018/03
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
..
ZE553KL-WW_10.40.47.107_6.0.1_MM_2017/02
..
..
..
Hi all, which twrp for ze553kl mm?
Ciao
Bassofondale said:
Hi all, which twrp for ze553kl mm?
Ciao
Click to expand...
Click to collapse
try the latest from here, currently twrp-3.2.3-0-Z01H-20181014.img
https://mega.nz/#F!p90wgAaY!l1JbJilmAUEKTKWu43pT9w
Thank you!

upgrade to Android 10 OTA with unlocked bootloader

Hi guys,
i hope you can help me a little. This phone drives me crazy.
The goal: Android 10 OTA with TWRP
What i did so far:
bought the downgrade firmware to v1.200 with techmesto
bootloader unlocked
flashed TWRP 3.3.1.0 via fastboot flash boot *.img
WIFI can not be activated on v1.200 firmware
( Update on 2020.11.22: Wifi only works if the montly timestamp of the rom security patch level is the same of the TWRP time stamp)
thats why OTA update via APP is not possible
because of that, i tryed to adb sideload via TWRP the OTA firmware v1.390 FULL OTA from telegram "Nokia OTA Repository" ( i know 390 is android9. It should be just the first step)
I did this on A
reboot
firmware is still v1.200 (WTF?)
got the information via telegram to change the slot, done via TWRP, switched to B
reboot
phone is booting to default recovery and saying "...00WW_1_390" ... "can't load android system. your data may be corrupt"
flashed TWRP 3.3.1.0 via fastboot flash boot *.img on B (i guess)
my phone is now booting to TWRP only
boot to TWRP and restored full backup of v1.200
Result: my phone is now booting to TWRP only, no matter i activate A or B in TWRP. What can i do?
Is it possible to flash the Nokia OTA Repositorys via TWRP?
Best,
Hi, you should not flash TWRP on the device except for if you want to flash a custom ROM. Due to the way TWRP for this model is developed, your WiFi will not work if you flash the TWRP image to you boot slot. Basically the same if you flash any modified boot image.
Also, since the boot image is what is responsible for getting your device to boot to the system, flashing a TWRP to boot slot can also result in the device not booting at all and instead getting stuck with TWRP only.
What I recommend:
Load TWRP, flash any full OTA (Android 9 or 10)
Do a full wipe (factory reset equivalent - essentially erase userdata) and then change the slot (if current is B, change to A). And finally reboot.
Good if the device boots up.
If not, please use NFT to flash any full OTA update you'll find in the Telegram channel (Android 10 preffered). That should get your device to boot normally
The culprit for your non-working WiFi is not the 1200 firmware, but the fact that you flashed the TWRP image to your boot slot I hope that helps
singhnsk said:
...What I recommend:
Load TWRP, flash any full OTA (Android 9 or 10)
Do a full wipe (factory reset equivalent - essentially erase userdata) and then change the slot (if current is B, change to A). And finally reboot. ...
Click to expand...
Click to collapse
This worked very well. ( before and after i did a normal wipe in twrp). After installing v1390, I did the factory reset not in twrp but , after a reboot, in the default recovery. And the phone now boots again to android.
Thank you very much.
So to sumarize: After flashing an OTA with TWRP or adb sideload it is very important to "... then change the slot (if current is B, change to A)"
Android v1.390 wants to install an update 1510MB in size , directly at the first start assistant. There is no option to proceed without that direct update.
Is it possible to loose my unlocked bootloader with this update?
Aha.. Yeah, if you reset the device while OEM Unlocking is not enabled in the Settings (which disables device protection features) and a Google account was added, then the phone will trigger FRP lock which will force you to connect to a WiFi network before you can get into the phone. And such WiFi will then force you to update the phone before you can start to use it.
You can update though. It is okay. It won't affect an already unlocked bootloader. The bootloader will remain unlocked ?
thanks, yeah, nearly all done on my phone now.
But .... the default recovery doesn't work. After selecting "recovery mode" in fastboot mode i get a dead android. Can i fix this some how ?
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
UPDATE: i found the solution to enter the recovery mode after seeing the dead andorid no command screen:
"You have to press and hold the power button. Now press and release the volume up button but continue to hold power button"
After that i could enter the recovery mode.

HELP! [Infinix HOT 10i X659B] Phone stuck at booting after trying to install a patched-boot from Magisk.

Ok i need some emergency help please: what i did:
Downloaded stock rom (exact version number of my Infinix Note 10i X659B) X659B-H696AvAw-R-OP-210330V152
Grabbed boot.img, placed on phone folder,
installed magisk apk, patched with magisk apk and put that patched-img to the folder in my PC.
Got minimal adb tools, used adb reboot bootloader to put phone on fastboot (saw fastboot screen on phone) did:
fastboot flash boot_a patch-boot.img
fastboot flash boot_b patch-boot.img
(renamed the file to patch-boot.img for convenience)
Now phone is stuck booting
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
i only see the "Infinix" start up screen, then a message: Orange State: Your device has been unlocked and can't be trusted
Your device will boot in 5 seconds
to be fair that message appeared when i unlocked the bootloader, and beside the data wipe, the phone worked just fine
So where i think i screwed up is by installing it on boot_b too, (guide i followed said that i should also patch boot_b if my phone have a/b system (which it does, also magisk app also told me)
So what i can do? I cant seem to be able to put my phone down on fastboot again to try to patch either the stock image or reflash the whole phone. Or i just bricked my brand new phone? :'(
With Android having an A/B image partition layout the user-runable Android is that in slot A. Slot B is only used to temporarily store OTAs: When update process successfully ends then at phone's reboot whole slot B gets copied into slot A and finally device gets booted into updated slot A. My POV: It's always an idiocy to flash a patched boot.img to slot B.
To get rid off of all modifications you applied so far you're recommended to re-flash phone's Stock ROM.
jwoegerbauer said:
with Android having an A/B image partition layout the working Android is that in slot A. Slot B is only used to temporarily store OTAs: When update process successfully ends then at phone's reboot whole slot B gets copied into slot A and finally device gets rebooted ( into updated slot A ). My POV: It's always an idiocy to flash a patched boot.img to slot B.
To get rid off of all modifications you applied so far you're recommended to re-flash phone's Stock ROM.
Click to expand...
Click to collapse
How you can recommend i reflash the whole rom? I cant seem to find how to get the phone into another state. Volumen Up + Power does nothing, phone keeps trying to reboot.
Volume Down + Power does nothing either
Volume UP+Down+Power keeps the screen off, but i can hear windows connecting/disconnecting every 10 seconds or so. so how i connect it to, lets say, SP Flash Tools (considering is a MTK device)?
Well tried to do it with SP Flash Tools, but after trying to "Format All+Download" with all the checkboxes subsystems selected, i get a "auth file needed" error
Didn't find any of that in the firmware i downloaded :c
You need mtk bypass tool for that
mgdark said:
Well tried to do it with SP Flash Tools, but after trying to "Format All+Download" with all the checkboxes subsystems selected, i get a "auth file needed" error
Didn't find any of that in the firmware i downloaded :c
Click to expand...
Click to collapse

Categories

Resources