Rooting/Unlocking the EE Rook (ZTE Blade A410) -- Help needed plz
Rooting/Unlocking the EE Rook (ZTE Blade A410) -- Help needed plz
(30-01-2016, 07:54 PM)scott Thanks for any help you can give me to untangle this spaghetti.
(30-01-2016, 09:32 PM)hovatek(30-01-2016, 07:54 PM)scott Thanks for any help you can give me to untangle this spaghetti.
This issue is not as complicated as you might think it is.
I'll answer your questions first before telling you the best line of action.
1. That method of unlocking bootloader is very unlikely to work. We have several devices with the same challenge and are working on it
2. You'll get the same result
3.
1. Yellow box means the phone is rooted. Blue means its not rooted. It's only natural you get a blue box since yours isn't rooted
2. This is more informational than an error message, relax
3. The phone is not rooted, SU (root) will be inaccessible and MTK droid tools of little use to you
What to do.
If you really want to backup your phone then an SP flash tool readback is your best bet and you'll need the scatter file for your exact model
If you wish to root then you'll need a custom recovery ported for your exact model. We could help with that if you can get the scatter file, boot.img and recovery.img from the factory firmware for your phone model
In essense, it all boils down to you being able to download the official firmware for your model or at least it's scatter file. If you're able to do this then you have a really good shot at backing up and rooting
. For the moment, I'm just asking if between the screen-shot of the block info and the log.txt file I have enough info to create the scatter file (once you kindly give me an example or point me to a description of the required format).
(31-01-2016, 10:28 AM)scott Would you know if I'm correct to think that the partition called "para" in my partition list is the same as the partition called "param" in that xda-developers thread?
thanks
(31-01-2016, 04:57 PM)hovatek Good news is, you have what you need to manually create a scatter file.
You'll use MT6735M_Android_scatter.txt
1. Open this scatter file using notepad++
2. Delete BIRDTOOLMINVER[3.9] at the top then save it
3. I'll use recovery.img as an example
Blocksmap says
Scatter: 000003B000
Size: 0000016C00
The scatter file says
- partition_index: SYS9
partition_name: recovery
file_name: recovery.img
is_download: true
type: NORMAL_ROM
linear_start_addr: 0x2d80000
physical_start_addr: 0x2d80000
partition_size: 0x1000000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: UPDATE
reserve: 0x00
The Mod
Replace all 0s in front of the first non-zero character with 0x
Scatter: 000003B000 = 0x3B00000
Size: 0000016C00 = 0x16C0000
You then edit
* linear start address = physical start address = Scatter
* Partition size = Size
The new values for recovery will be
- partition_index: SYS9
partition_name: recovery
file_name: recovery.img
is_download: true
type: NORMAL_ROM
linear_start_addr: 0x3B00000
physical_start_addr: 0x3B00000
partition_size: 0x16C0000
region: EMMC_USER
storage: HW_STORAGE_EMMC
boundary_check: true
is_reserved: false
operation_type: UPDATE
reserve: 0x0
Do the same for other items on your blocks map.
You can then do a readback using https://www.hovatek.com/forum/thread-526.html
. (03-02-2016, 05:38 AM)scott If i got that right, please just ignore my post of a few minutes ago about the error i was getting from SP_Flash_Tool. IN fact, just for the benefit of the next guy, i'll answer that post myself. (and then sleep for a few hours).
thanks again!