[ROOT][TWRP] Root Huawei Y6 Elite (Australia Vodafone) LYO-L02 - Android General

This guide is to root the Australian Vodafone Huawei Y6 Elite (LYO-L02). This phone has recently become very popular in the land down under because there was several promotions happening that makes it a bargain. Being able to root it (and leading to potential custom ROM for it) makes it even better.
WARNING: The guide involves unlocking the device's bootloader. By doing so the phone will be factory formatted. Therefore, please backup your data before proceeding. Also, your warranty is now voided.
A short version of the guide for Android veterans are as followed:
1. Make sure adb and fastboot are available on your operating system
2. Download huawei-y6-elite-root-twrp.zip archive and extract it
3. Enable developer options and enable OEM unlock
4. Unlock bootloader from HUAWEI website: https://emui.huawei.com/en/plugin/unlock/index
5. Flash TWRP recovery for the device (huawei-y6-elite-twrp-3.0.2.img)
6. (Optional) Backup the stock firmware
7. Use TWRP to install SuperSU-v2.78.zip
More detailed instructions are as followed:
1. Make sure adb and fastboot are available on your operating system.
You can refer to the following article: http://lifehacker.com/the-easiest-way-to-install-androids-adb-and-fastboot-to-1586992378 .
To make sure you have adb and fastboot, open your operating system terminal (we will use this a lot in this guide) and type in
Code:
adb version
fastboot --version
And you should be greeted with (version numbers might be different)
Code:
$ > adb version
Android Debug Bridge version 1.0.32
Revision eac51f2bb6a8-android
$ > fastboot --version
fastboot version eac51f2bb6a8-android
2. Open device's Settings -> About Phone -> Tab on Build number several times until you are prompted with "You are now a developer".
Go back to Settings -> Developer options -> Toggle on:
- Developer options
- Enable OEM unlock
- USB debugging
3. Plug your device to your computer, in your terminal / command prompt, type in
Code:
adb devices
On the device, if asked, please trust the computer.
Doing adb devices again to confirm that your device is active and the computer has recognised it. You should see something like
Code:
List of devices attached
AKT012345678912 device
(If you see there are more than one devices attached, please unplug them and leave just the Huawei Y6 Elite plugged in. This can prevent accidentally triggering commands on other devices.)
4. Unlocking the bootloader
Go to: https://emui.huawei.com/en/plugin/unlock/index . Register an account if you haven't got one, then login, go to Downloads -> Unlock devices (this might take a while to load, or simply just use the URL again after logging in to go straight to the unlock page.
In the unlocking page, select:
- Before EMUI5.0
- Smartphone
- Product Model:
- Serial number: Get yours in Settings -> About phone -> Status -> Serial number
- Product IMEI: Open your dialer -> type in *#06#
- Product ID: Open your dialer -> type in *#*#1357946#*#*
Type in verification code and hit "Commit", the unlocking password will then be shown to you (mine looks like EF**************26)
5. Reboot into bootloader. There are two ways you can do this:
Either plug the device into the computer and type
Code:
adb reboot bootloader
Or power off the phone, hold volume down and power
If you successfully get to the bootloader, a small text at the bottom saying "=> FASTBOOT mode..." is shown to you.
6. Plug the device to your computer, type
Code:
fastboot devices
You should see
Code:
AKT012345678912 fastboot
7. (WARNING: Your device will be wiped, backup your data) Unlock bootloader by typing the following command (replace your password with the actual unlock password from step 4
Code:
fastboot oem unlock password
8. After unlocking, the device will reboot, and you will be greeted with the factory default settings.
Enable developer mode and OEM Unlock again (see step 2)
9. Reboot to bootloader (see step 5-6)
10. At this stage, you should see a red text saying "FRP Unlock" at the bottom
11. Flash the custom TWRP recovery by using
Code:
fastboot flash recovery huawei-y6-elite-twrp-3.0.2.img
(point huawei-y6-elite-twrp-3.0.2.img to where you extract the img file)
12. After flashing the recovery, switch off the device (remove the battery), then boot to recovery using the Volume Up and Power button
13. You will be greeted with TWRP welcome. Do NOT select the Read-only option.
14. (Optional) It is recommended that you backup your stock firmware, so that you can restore back to stock later on if you need to. To do so, from TWRP click on "Backup", select "Boot", "Recovery", "System", "System Image" and "Data" then Swipe to Backup. If you don't have enough storage, you can change to backup the firmware to external SD Card by selecting "Select Storage".
15. Rooting: plug the device to your computer, then execute the following command:
Code:
adb push SuperSU-v2.78.zip /sdcard/
This will copy the SuperSU-v2.78.zip to your internal user storage. From TWRP, select "Install" -> navigate to /sdcard -> select the zip file, select "Reboot after installation is complete", Swipe to confirm Flash
16. After the zip file is installed, your device will be Rooted.

nkahoang said:
This guide is to root the Australian Vodafone Huawei Y6 Elite (LYO-L02). This phone has recently become very popular in the land down under because there was several promotions happening that makes it a bargain. Being able to root it (and leading to potential custom ROM for it) makes it even better.
WARNING: The guide involves unlocking the device's bootloader. By doing so the phone will be factory formatted. Therefore, please backup your data before proceeding. Also, your warranty is now voided.
A short version of the guide for Android veterans are as followed:
1. Make sure adb and fastboot are available on your operating system
2. Download huawei-y6-elite-root-twrp.zip archive and extract it
3. Enable developer options and enable OEM unlock
4. Unlock bootloader from HUAWEI website: https://emui.huawei.com/en/plugin/unlock/index
5. Flash TWRP recovery for the device (huawei-y6-elite-twrp-3.0.2.img)
6. (Optional) Backup the stock firmware
7. Use TWRP to install SuperSU-v2.78.zip
More detailed instructions are as followed:
1. Make sure adb and fastboot are available on your operating system.
You can refer to the following article: http://lifehacker.com/the-easiest-way-to-install-androids-adb-and-fastboot-to-1586992378 .
To make sure you have adb and fastboot, open your operating system terminal (we will use this a lot in this guide) and type in
Code:
adb version
fastboot --version
And you should be greeted with (version numbers might be different)
Code:
$ > adb version
Android Debug Bridge version 1.0.32
Revision eac51f2bb6a8-android
$ > fastboot --version
fastboot version eac51f2bb6a8-android
2. Open device's Settings -> About Phone -> Tab on Build number several times until you are prompted with "You are now a developer".
Go back to Settings -> Developer options -> Toggle on:
- Developer options
- Enable OEM unlock
- USB debugging
3. Plug your device to your computer, in your terminal / command prompt, type in
Code:
adb devices
On the device, if asked, please trust the computer.
Doing adb devices again to confirm that your device is active and the computer has recognised it. You should see something like
Code:
List of devices attached
AKT012345678912 device
(If you see there are more than one devices attached, please unplug them and leave just the Huawei Y6 Elite plugged in. This can prevent accidentally triggering commands on other devices.)
4. Unlocking the bootloader
Go to: https://emui.huawei.com/en/plugin/unlock/index . Register an account if you haven't got one, then login, go to Downloads -> Unlock devices (this might take a while to load, or simply just use the URL again after logging in to go straight to the unlock page.
In the unlocking page, select:
- Before EMUI5.0
- Smartphone
- Product Model:
- Serial number: Get yours in Settings -> About phone -> Status -> Serial number
- Product IMEI: Open your dialer -> type in *#06#
- Product ID: Open your dialer -> type in *#*#1357946#*#*
Type in verification code and hit "Commit", the unlocking password will then be shown to you (mine looks like EF**************26)
5. Reboot into bootloader. There are two ways you can do this:
Either plug the device into the computer and type
Code:
adb reboot bootloader
Or power off the phone, hold volume down and power
If you successfully get to the bootloader, a small text at the bottom saying "=> FASTBOOT mode..." is shown to you.
6. Plug the device to your computer, type
Code:
fastboot devices
You should see
Code:
AKT012345678912 fastboot
7. (WARNING: Your device will be wiped, backup your data) Unlock bootloader by typing the following command (replace your password with the actual unlock password from step 4
Code:
fastboot oem unlock password
8. After unlocking, the device will reboot, and you will be greeted with the factory default settings.
Enable developer mode and OEM Unlock again (see step 2)
9. Reboot to bootloader (see step 5-6)
10. At this stage, you should see a red text saying "FRP Unlock" at the bottom
11. Flash the custom TWRP recovery by using
Code:
fastboot flash recovery huawei-y6-elite-twrp-3.0.2.img
(point huawei-y6-elite-twrp-3.0.2.img to where you extract the img file)
12. After flashing the recovery, switch off the device (remove the battery), then boot to recovery using the Volume Up and Power button
13. You will be greeted with TWRP welcome. Do NOT select the Read-only option.
14. (Optional) It is recommended that you backup your stock firmware, so that you can restore back to stock later on if you need to. To do so, from TWRP click on "Backup", select "Boot", "Recovery", "System", "System Image" and "Data" then Swipe to Backup. If you don't have enough storage, you can change to backup the firmware to external SD Card by selecting "Select Storage".
15. Rooting: plug the device to your computer, then execute the following command:
Code:
adb push SuperSU-v2.78.zip /sdcard/
This will copy the SuperSU-v2.78.zip to your internal user storage. From TWRP, select "Install" -> navigate to /sdcard -> select the zip file, select "Reboot after installation is complete", Swipe to confirm Flash
16. After the zip file is installed, your device will be Rooted.
Click to expand...
Click to collapse
Hi, can I please get the device tree you used to make this. Thanks!

Before flashing TWRP, can anyone share stock recovery for y6 elite (LYO-L02) please ? It is not available online.
Code:
[email protected]:/ # ls -al /dev/block/platform/mtk-msdc.0/by-name/
ROOTM -> /dev/block/mmcblk0p11
boot -> /dev/block/mmcblk0p7
cache -> /dev/block/mmcblk0p24
cust -> /dev/block/mmcblk0p23
expdb -> /dev/block/mmcblk0p10
flashinfo -> /dev/block/mmcblk0p26
frp -> /dev/block/mmcblk0p19
keystore -> /dev/block/mmcblk0p15
lk -> /dev/block/mmcblk0p5
logo -> /dev/block/mmcblk0p9
metadata -> /dev/block/mmcblk0p21
nvdata -> /dev/block/mmcblk0p20
nvram -> /dev/block/mmcblk0p2
oeminfo -> /dev/block/mmcblk0p18
oemkeystore -> /dev/block/mmcblk0p13
para -> /dev/block/mmcblk0p6
proinfo -> /dev/block/mmcblk0p1
protect1 -> /dev/block/mmcblk0p3
protect2 -> /dev/block/mmcblk0p4
recovery -> /dev/block/mmcblk0p8
seccfg -> /dev/block/mmcblk0p12
secro -> /dev/block/mmcblk0p14
system -> /dev/block/mmcblk0p22
tee1 -> /dev/block/mmcblk0p16
tee2 -> /dev/block/mmcblk0p17
userdata -> /dev/block/mmcblk0p25
To dump recovery, it should be as simple as,
Code:
dd if=/dev/block/mmcblk0p8 of=/sdcard/recovery.img
Additional partition info,
Code:
No. Start End Size F/S Name
1 524kB 3670kB 3146kB proinfo
2 3670kB 8913kB 5243kB nvram
3 8913kB 19.4MB 10.5MB ext4 protect1
4 19.4MB 29.9MB 10.5MB ext4 protect2
5 29.9MB 30.4MB 524kB lk
6 30.4MB 30.9MB 524kB para
7 30.9MB 47.7MB 16.8MB boot
8 47.7MB 64.5MB 16.8MB recovery
9 64.5MB 72.9MB 8389kB logo
10 72.9MB 83.4MB 10.5MB expdb
11 83.4MB 83.9MB 524kB ROOTM
12 83.9MB 84.4MB 524kB seccfg
13 84.4MB 86.5MB 2097kB oemkeystore
14 86.5MB 92.8MB 6291kB secro
15 92.8MB 101MB 8389kB keystore
16 101MB 106MB 5243kB tee1
17 106MB 112MB 5243kB tee2
18 112MB 179MB 67.1MB oeminfo
19 179MB 180MB 1049kB frp
20 180MB 213MB 33.6MB ext4 nvdata
21 213MB 252MB 38.3MB metadata
22 252MB 2721MB 2469MB ext4 system
23 2721MB 3146MB 425MB ext4 cust
24 3146MB 3305MB 159MB ext4 cache
25 3305MB 7801MB 4496MB ext4 userdata
26 7801MB 7818MB 16.8MB flashinfo

Digian said:
Before flashing TWRP, can anyone share stock recovery for y6 elite (LYO-L02) please ? It is not available online.
Click to expand...
Click to collapse
I have a Y6 elite that hasn't been updated yet. Care to walk me through the dumping procedure?

There is a catch to creating a backup of the stock recovery, you need to be root to read the raw recovery partition.
Once you have root, either enable developer mode in the android settings menu and connect via USB with the adb-tools and run the DD command above to create a backup copy. Or alternatively, use an app like Flashify to take a backup locally.
There's a few ways to get root without installing TWRP, you could try: KingRoot, FramaRoot, CFRoot, or Kingo Root. It may be trial and error to find which one works on this phone.
Before rooting, I suggest unlocking the bootloader using the guide above in case you run into any issues, obviously stop at Step #10 before installing TWRP if you want to take the stock recovery backup.
If anyone knows an alternate way to grab a backup of the stock recovery, or better ways to get root ... let us know.

Digian said:
There's a few ways to get root without installing TWRP, you could try: KingRoot, FramaRoot, CFRoot, or Kingo Root. It may be trial and error to find which one works on this phone.
Click to expand...
Click to collapse
Finally got around to playing with this. Unlocked the bootloader, tried a few of them but no success
Kingroot makes it to 66% and goes no further
framaroot says the device is not compatible with any exploits
Kingoroot makes it 90% and then comes back with there is a problem parsing the package
Kingoroot PC makes it to 31% then fails
CFroot, I don't know which link to use
Suggestions on where to go from here would be appreciated

outlander43 said:
Kingoroot makes it 90% and then comes back with there is a problem parsing the package
Suggestions on where to go from here would be appreciated
Click to expand...
Click to collapse
One idea was to try moving the KingoRoot .apk to a temp folder with full permissions, such as "/data/local/tmp" in case there is a conflict. Chmod 777.
Secondly, did you try these ? http://www.technicalnotes.org/fix-parse-error-in-android-there-is-a-problem-parsing-the-package/

Digian said:
One idea was to try moving the KingoRoot .apk to a temp folder with full permissions, such as "/data/local/tmp" in case there is a conflict. Chmod 777.
Secondly, did you try these ? http://www.technicalnotes.org/fix-parse-error-in-android-there-is-a-problem-parsing-the-package/
Click to expand...
Click to collapse
So .apk is the installation package. To be clear, it installed just fine. But running it, it only reaches 90% completion, then the screen changes and the parsing error comes up. Whatever the case, I copied the install .apk to local storage/android/data/tmp and installed it from there. Same result. I also tried the previous version 4.2.3 with no change in result.

Gave up trying the one click root apps, and installed TWRP. Very easy! One thing, if your having problems on step 3, disable and re-enable the usb debugging. Before I did that adb was showing UNAUTHORISED

plz help
when i do the command 'fastboot flash recovery huawei-y6-elite-twrp-3.0.2.img ' it comes up with an error saying fastboot flash recovery huawei-y6-elite-twrp-3.0.2.img erroe: cannot load 'huawei-y6-elite-twrp-3.0.2.img'
can some one please help me out

goodjonte said:
when i do the command 'fastboot flash recovery huawei-y6-elite-twrp-3.0.2.img ' it comes up with an error saying fastboot flash recovery huawei-y6-elite-twrp-3.0.2.img erroe: cannot load 'huawei-y6-elite-twrp-3.0.2.img'
can some one please help me out
Click to expand...
Click to collapse
so i mess ed around with it and what i did was i put in ' fastboot flash recovery ' and then draged the file in and then did it and now its working and ive rooted my device
Thanks

Phone sent for repair

Please Help
Whenever i try to flash the custom recovery a This happens in adb C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot flash recovery huawei-y6-elite-twrp-3.0.2.img
target reported max download size of 134217728 bytes
sending 'recovery' (11044 KB)...
OKAY [ 1.068s]
writing 'recovery'...
FAILED (remote: failed to get download permission because status is locked!)
finished. total time: 1.092s

not able to root huawei LYO-L02
HI everyone,
Ok im new to this so bare with me. Im trying to root my Huawei y6 Elite. I have followed the instructions(from in here) to the letter and everything went according to plan but when i go to check using root checker i get this error
Root access is not properly installed on this device
HUAWEI LYO-L02
Android version 5.1
Stage 1: Super user App : installed
Stage 2: Superuser Binary files Installed
Stage 3: Root User Account Error:
Error: stderr: null, stdout, null, exit_value: 1
So as you can see i really need some help; I hope there is someone out there that can help me it would be most appreciated
Moonlighter

I have this device an used this method at the start of the thread months ago when it was first posted an had no problems so the method works fine thanks.
You can alternatively root the phone with
Magisk - A Root & Universal Systemless Interface by topjohnwu.which I'm my opinion is the best root out there today for android 5 up so big thanks to him an his hard work.if you read the thread there it mentions it can be installed without custom recover like Twrp so this can be a way to get a stock recover image for the device as you now have root an still using stock recover.use flashfy to make a backup of stock image.go through the step at the start of thread on how to unlock the boot loader first.then try the way mentioned in the post
Which can be found at
https://www.google.co.nz/url?sa=t&s...DxAB&usg=AOvVaw0qTxicf0kOFDLDL-79NyS6&ampcf=1
This is the latest thread up at the moment.
But alternatively I just installed via Twrp as I found a stock recover for this device.note the latest version of magisk v15.3
Work fine but system less exposed module (sdk22)v.89 will cause boot loop.so in order to make it work use magisk v14.0zip at the bottom of the thread at the link above.An use system less exposed sdk22 v87.3 zip first as for some reason if you try install the latest version which is v89.1 it will cause boot loop also so flash sdk22 v87.3 which can be found here at https://www.google.co.nz/url?sa=t&s...FjAAegQIDxAB&usg=AOvVaw2A5-BuyM3GaodiV1QsBLb8
Now that you have both magisk an exposed (system less) working. open magisk manager now go to download an update to the latest exposed module an this will bring exposed up to v89.0 an not cause boot loop.note don't update magisk to latest version stay on magisk v14.0 but if you don't use exposed just install the latest version of magisk.

Here is a stock recover image for this device (Huawei y6 elite) that works an tested it originally comes from the Huawei A5/Y6ii hope this help you all out
Sorry I removed link as it was broken so I uploaded the file in next post
Thanks

Here is a stock recover image for this device (Huawei y6 elite) that works an tested it originally comes from the Huawei A5/Y6ii hope this help you all out
Flash via Twrp or flashfy
Good luck

goodjonte said:
when i do the command 'fastboot flash recovery huawei-y6-elite-twrp-3.0.2.img ' it comes up with an error saying fastboot flash recovery huawei-y6-elite-twrp-3.0.2.img erroe: cannot load 'huawei-y6-elite-twrp-3.0.2.img'
can some one please help me out
Click to expand...
Click to collapse
! Do the command so only type in'fastboot flash recover' then drop an drag the file Huawei-y6-elite-twrp-3.0.2.img in to the command.an you should be right.

Related

[RECOVERY][TOUCH]TWRP 2.7.0.0 Touch Recovery [UPDATE TO #define's thread]

Since, @#define doesn't has the device anymore and I was working on updates of TWRP Recovery, so after some talks with him, I am making a new thread where I will maintain TWRP Releases.
OFFICIAL TWRP HTC EXPLORER PAGE
Latest Release - v 2.7.0.0 by @thewisenerd
What's new in 2.7.0.0:
Faster graphics rendering by disabling alpha blending on fully opaque objects thanks to Tassadar
Allow sideloading from /tmp on encrypted devices
Check for a crypto footer before asking for a password to prevent user confusion
Additional checks for validity to auto generated backup names
Text wrap in the console output
Proper caps lock support in the keyboard
Mouse support via USB OTG for devices with a broken digitizer
Improve scanning of storage locations for OpenRecoveryScript
Haptic feedback for buttons, keyboard, and vibration at the end of longer running actions
Fixed ext4 wiping when no selinux contexts are defined for that partition (e.g. sd-ext)
Update SuperSU to 1.93 and improve installation process
Added selinux contexts restoration to fix permissions
Load RTC offset on Qualcomm devices to fix the date/time in recovery
USB Mass Storage fixes Add SELinux support checking
Add Disk Usage class to better handle excluded folders (e.g. Google Music cache)
Add 4.4 AOSP decrypt support
Add some toolbox utilities to TWRP (namely to support SELinux functions not supported in busybox)
Various SELinux fixes and bug fixes
Removed Superuser prebuilt binary and Superuser.apk (By me not in Official TWRP) to trim the recovery size.(Thanks for the idea @galaxyfreak )
Older Changelogs
For the new people, here are the instructions..
----> For Windows :
1) Download the recovery zip and the tools given above..
2) Extract the zips someplace safe (for eg, C:/TWRP)..
3) Open the command prompt, and navigate to the folder in which you extracted the files..
4) Boot your phone into Fastboot mode, and connect it to the computer.. It should show "Fastboot USB"
5) In the command prompt, type :
Code:
fastboot flash recovery recovery.img && fastboot reboot
6) Enjoy your new recovery!! :good:
----> For Linux :
1) ADB and Fastboot for linux are also attached above..
2) Download and extract all the stuff in a safe location (for eg, ~/TWRP)
3) Open terminal, and navigate to the goodies folder..
4) Put your phone in fastboot mode, and connect to USB, and it should show "Fastboot USB"..
5) Now in terminal, type :
Code:
$ ./fastboot flash recovery recovery.img && fastboot reboot
6) Enjoy your new touch recovery!! :good:
Credits -
@#define
@galaxyfreak
@thewisenerd
thank you for updating this man
Nice Work mann!!
Thnks!! for update!!
a bug is it reboots when wiping partitions sometimes
theBstep said:
a bug is it reboots when wiping partitions sometimes
Click to expand...
Click to collapse
Yes I know. Restarting device/recovery fixes it!
v_superuser said:
Yes I know. Restarting device/recovery fixes it!
Click to expand...
Click to collapse
just letting you know cus so far no one's been posting around about this cus it's just a minor bug but if you can fix it for further builds that will be good
Bug founded
When restore/wipe than recovery restart not rebooting recovery.second time working?
If it's already noticed,solve in next version?
logcat:
Recovery restarts when try to fix permissions
Was anyone able to get fastboot working?
I remember it working in my home builds, but I don't recollect it working in this recovery though.
Is this "bug" only for me?
Edit: NVM, borked USB
edit: spoke too soon. Yes. adb *is* broken. works at times, doesn't work, at times.
edit: let's put this post to good use:
Download: http://www.mediafire.com/download/sx78aa9eu21c54q/twrp_21may2014.img
Don't give the crap that you're even interested in changelog. You just need something that works. You'd not even know if this is just the same file, with a different name.
For those who really are, go over to https://github.com/omnirom/android_bootable_recovery/commits/android-4.4, and check the commits from Mar 28, 2014.
Nand recovery partition burned
For those who are encountering NAND Recovery Partition burned.
booting on recovery,
TWRP logo shows
then go black screen
then TWRP logo shows again
then stucked at TWRP Logo.
SOLUTION:
BOOT into BOOTLOADER.
FLASH Latest PhilZ Touch Recovery (here: http://forum.xda-developers.com/showpost.php?p=41061154&postcount=3)
Download flash_erase.txt *rename and remove .txt* it's a binary file.(here: http://forum.xda-developers.com/attachment.php?attachmentid=1655489&d=1358514526)
Flash any rom that has working ADB.
Push flash_erase on /system/xbin then set and fix permissions.
Code:
adb push flash_erase system/xbin/
adb shell
su
cd system/xbin/
chomd 755 flash_erase
Reboot
Then perform a NAND Recovery on /recovery partition. (Needs USB debugging enabled and Root access on Apps and ADB)
Code:
adb shell
su
cd /system/xbin
./flash_erase -N /dev/mtd/mtd1 0 0
FLASH TWRP Recovery.
NOTE: IF YOU GOT WHOLE YOUR MTD PARTITION BURNED. flash_erase mtd0 to mtd6.
Agaphetos said:
For those who are encountering NAND Recovery Partition burned.
booting on recovery,
TWRP logo shows
then go black screen
then TWRP logo shows again
then stucked at TWRP Logo.
SOLUTION:
BOOT into BOOTLOADER.
FLASH Latest PhilZ Touch Recovery (http://forum.xda-developers.com/showpost.php?p=41061154&postcount=3)
Then perform a NAND Recovery on /recovery partition (http://forum.xda-developers.com/attachment.php?attachmentid=1655489&d=1358514526)
Code:
flash_erase -N /dev/mtd/mtd1 0 0
FLASH TWRP Recovery.
Click to expand...
Click to collapse
I would suggest you do that not from the recovery.
You can also do the same procedure with any ROM booted and ADB or Terminal Emulator
thewisenerd said:
I would suggest you do that not from the recovery.
You can also do the same procedure with any ROM booted and ADB or Terminal Emulator
Click to expand...
Click to collapse
yeah. i just cut the instructions. haha. they must flash ROM first then put flash_erase on /system/xbin.
then perform flash_erase -N /dev/mtd/mtd1 0 0.
it's only for those who got whole MTD partition got burned.
they can't boot into both /system and /recovery.
Edit: I updated my post already.
Agaphetos said:
yeah. i just cut the instructions. haha. they must flash ROM first then put flash_erase on /system/xbin.
then perform flash_erase -N /dev/mtd/mtd1 0 0.
it's only for those who got whole MTD partition got burned.
they can't boot into both /system and /recovery.
Edit: I updated my post already.
Click to expand...
Click to collapse
I have burnt my nand several times and i couldnt get into TWRP recovery at all ( stuck at the logo ). The solution I found was to downgrade to CWM 5 and then format boot/system/data. Then flash back TWRP 2.7 and superwipe for nand recovery - thanks to thewisenerd works like a charm.
boko_to said:
I have burnt my nand several times and i couldnt get into TWRP recovery at all ( stuck at the logo ). The solution I found was to downgrade to CWM 5 and then format boot/system/data. Then flash back TWRP 2.7 and superwipe for nand recovery - thanks to thewisenerd works like a charm.
Click to expand...
Click to collapse
i suggest you to still flash_erase your /recovery partition.
flashing another recovery on your /recovery partition doesn't recover bad blocks.
Agaphetos said:
i suggest you to still flash_erase your /recovery partition.
flashing another recovery on your /recovery partition doesn't recover bad blocks.
Click to expand...
Click to collapse
Yes right, - I was just giving a workaround if someone can't get into recovery - and what worked for me - after re-flashing TWRP i never had any problems with the recovery partition again.
Do you need to have your device to S-OFF?
fgaurano said:
Do you need to have your device to S-OFF?
Click to expand...
Click to collapse
Pico has no s-off so no developer expects it
Sent from my Xperia S using XDA Free mobile app
I have my Fastboot USB connected, and after typing the command, it justs " < waiting for device> " I tried removing USB a lot of times already and fastbooting USB.
fgaurano said:
I have my Fastboot USB connected, and after typing the command, it justs " < waiting for device> " I tried removing USB a lot of times already and fastbooting USB.
Click to expand...
Click to collapse
That also happened to me. If youre using windows 8.1, maybe thats the problem. The only way was flashing through terminal emulator.
I have the recovery partition burned, but the instrutions to fix are not clear enough for noobs like me.
EDIT: Based on the @Agaphetos instrutions and from this thread http://forum.xda-developers.com/showthread.php?t=2389445
Note: This method WON'T work on Windows 8/8.1. It will work fine on windows 7.
Backup your apps and stuff before doing anything
1. Download and Install HTC Sync Manager http://www.htc.com/pt/software/htc-sync-manager/
2. Download and Install ADB fastboot drivers http://forum.xda-developers.com/showthread.php?t=2588979 (I dont know if this is really necessary)
3. Get the adb and fastboot drivers, you can use the ones from this recovery, just remove the "recovery.img" that comes with http://forum.xda-developers.com/attachment.php?attachmentid=913094&d=1329843100
4. Download this PhilZ Touch Recovery http://forum.xda-developers.com/showthread.php?t=2265055 and rename it as: recovery.img
5 Place the "recovery.img" that you have renamed to the "A310E Recovery" folder
6. Remove the Battery and SIM card (in case you dont have a mobile network plan) If the rom youre using has the "Reboot to Bootloader" option in "Power Menu" you can use that instead.
7. Place the battery, and press "Volume Down" and "Power Button" at the same time till you boot into "Bootloader".
8. Connect your phone to the PC and choose "Fastboot", it will show "Fastboot USB" in red, then go to the "A310E Recovery" folder and run the "recovery.bat". You have flashed the PhilZ Touch Recovery.
9. Press "Power Button" to exit "Fastboot". In "Bootloader" menu choose "Recovery" to enter in PhilZ Touch Recovery.
10. In there make a "Wipe Data/Factory Reset", "Wipe cache", go to Advanced: "Wipe dalvik cache". Go to "Mounts and Storage" and format everything except "/sdcard". (Maybe you dont need to wipe everything Ive mentioned:silly
11. Scroll down and choose "Mount USB storage".
12. Download a CM rom, Ive used this one http://forum.xda-developers.com/showthread.php?t=2535682, and place the .zip rom in root of sdcard. Im sure other CM roms will also work.
13. Download this AROMA Filemanager http://forum.xda-developers.com/showthread.php?t=1646108 and place it in root of sdcard.
14. Download (Save this file as) flash_erase.txt http://forum.xda-developers.com/attachment.php?attachmentid=1655489&d=1358514526 and remove the ".txt" file extension and place it also in root of sdcard.
15. Flash the CM rom. Once flashed the rom go to "Mounts and Storage". Mount everything till you see all "unmount", go back.
16. Flash the "aromafm.zip". It will open AROMA filemanager. Scroll down and enter in "sdcard" and copy the "flash_erase" file, go back. Look for a "system" folder, scroll it down till you find one saying "xbin", enter there and paste the "flash_erase" file.
17. Look for the "flash_erase", and then long press it till you see a menu, choose "Set permissions". The first 3 lines should be all green already, Exit AROMA Filemanager. and reboot system.
18. Once youve booted into the CM rom, go to "Settings" -> "About Phone", In there scroll down to "Build Number" and press it several times to enable "Developer Options".
19. Go back and enter "Developer Options", make sure "Android debugging" is enabled. Connect your phone to the PC. Now go to "Terminal Emulator" and enter the following commands.
Code:
su
cd /system/xbin
./flash_erase -N /dev/mtd/mtd1 0 0
It will show up a message with something about 100% I cant remember:silly:
20. Boot into "Recovery" again, make a Wipe and Format everything, like you did in step .10.
21. In "Power Off" menu of the Recovery, choose "Reboot to Bootloader"
22. Plug in the phone in "Fastboot USB" and repeat the step .4, .5 and .8 but for the TWRP Recovery instead.
23. You should now be able to boot into the TWRP recovery, make sure you Wipe Everything again in "Wipe" -> "Advanced Wipe", except "sdcard". If the recovery reboots while wiping, reboot recovery and try again.
DONE!

[Guide] Yutopia [SAMBAR]: * Unlock * Install Custom Recovery * Root * EFS Backup *

Disclaimer: By attempting any of the processes listed in this thread you accept full responsibility for your actions. I will not be held responsible if your device stops working, catches fire, or turns into a hipster and claims to have been modified before it was cool.
Warning: Rooting does not void Yutopia’s warranty, though damaging your hardware (i.e., burning up your CPU/Motherboard by overclocking, hardbricking the device) will. You proceed at your own risk! I accept no responsibility for what you do with your phone. Follow the directions closely, and the odds are you will succeed without any trouble. If you are not sure what you are doing, do some more research before you try.
Lets begin
Index:
A. Drivers Installation
B. Unlock Bootloader
C. Install & Boot into Custom Recovery (TWRP) on Yutopia
D. Make A Nandroid Backup With TWRP Recovery
E. Root Your Stock Rom
F. Backup EFS and Other Partitions
A. Drivers Installation:
In order to Unlock, Root or Install Custom Recovery, you need to have the right set of Drivers to help your computer recognize your device. I used Windows 7 for this and it worked fine so should work for other windows as well.
Download and install Yutopia Drivers
https://drive.google.com/file/d/0B0pr-ZA5b-1pWFAwMmI4dWRGM3M/view?usp=sharing
Go through the setup, and when done, restart your PC. Connect your device to your windows and is shall recognize it
B. Unlock Bootloader:
Backup important files stored on your device before proceeding with the steps below, as unlocking the Bootloader will completely wipe/delete all files on the device.
After the installation of drivers follow the below to proceed with Unlocking the Bootloader of your Yutopia:
1. Enable USB Debugging, Uncheck Update Cyanogen Recovery & Activate OEM Unlock:
* Go to Settings > About phone, and then tap ‘Build number’ 7 times or until you get the message ‘You’re now a developer!’.
* Go back to Settings, choose ‘Developer options’. Find the ‘USB debugging’ option and use this toggle button to enable it. Accept warning by tapping on OK button.
In the ‘Developer options’. Find the ‘OEM Unlocking’ option and use its toggle button to enable it. It asks for your PIN/Screen unlock code, type it. Then accept the warning by tapping on OK button.
Also Uncheck Update Cyanogen recovery in developer options.
2. Boot your Yutopia into Bootloader/Fastboot mode. (Make sure you have backed up all important data as you’ll lose everything on phone in the steps below.)
3. Connect your Yutopia — in Bootloader mode — to PC. Let the driver install.
4. Open a command window on your PC. For this:
5. Open any folder on PC. Now, left click on empty white space inside the folder.
6. Hold shift key, right click on empty white space to get a pop-up and Choose Open command window here option from that. You will see a command window open up, with location directed to unlock folder.
7. Power off your phone then boot into fastboot mode (power + volume up).
8. Connect your phone to your windows via usb cable.
9. Confirm whether fastboot is working. With Yutopia connected to PC, run the following command in command window.
Code:
fastboot -i 0x2A96 devices
10. If device is connected you will get following kind of output:
86fsdy85 fastboot
11. If you dont get similar output it means that the drivers are not correctly installed or the device wasnt connected properly.
12. If the output is similar to above then run the following command:
Code:
fastboot -i 0x2A96 oem unlock
13. Now reboot from fastboot mode and thats it
Code:
fastboot -i 0x2A96 reboot
To confirm unlock status, reboot into bootloader/fastboot mode and you shall see the text unlocked now.
Code:
fastboot -i 0x2A96 device-info
C. Install & Boot into Custom Recovery (TWRP) on Yutopia
1. Download Modified TWRP:
https://drive.google.com/file/d/0B0pr-ZA5b-1pd2Z2YVR1cVZaeVE/view?usp=sharing
2. Enable USB debugging & Uncheck update Cyanogen Recovery from developer options once again.
3. Boot your Yutopia into bootloader mode.
4. Connect your Yutopia — in bootloader mode — to PC. Let the driver install.
Open a command window on your PC in the folder where you have the recovery.img file.
You will see a command window open up, with location directed to folder where you have the recovery.img file.
Let’s confirm whether fastboot is working. With Yutopia connected to PC, run the following command in command window. You should get a serial no. with fastboot written after it. If not, you need to reinstall the fastboot drivers from above.
Code:
fastboot -i 0x2A96 devices
(if the drivers are installed and device connected you would get the device serial number)
Flash TWRP recovery on your Yutopia by running the following command.
Code:
fastboot -i 0x2A96 flash recovery recovery.img
After that run this command:
Code:
fastboot -i 0x2A96 boot recovery.img
This will boot your device directly to TWRP
Or you can manually boot in recovery by unplugging the usb cable and then pressin POWER + VOL down until the device boots. When the YU logo shows up, relese the POWER and keep holding down VOL DOWN until TWRP boots up:
First boot into TWRP directly after flash is very important, Don't boot the OS on the phone as it may overwrite the recovery.
D. Make A Nandroid Backup With TWRP Recovery
Nandroid backup is a very important thing to have before installing any custom software on your device. It's basically a backup of your stock system that you can fall back on if anything goes wrong or if you just want your stock ROM back. You can also use the backup tool to create a backup of your favourite ROM set up exactly the way you like it. The backup you create can be easily restored using the restore tool in TWRP recovery.
All you need to do is enter TWRP recovery, select the backup option from the TWRP home screen, check the system/data/boot boxes, and swipe to backup. The process will take a few minutes.
Please make this backup before you root, so that you possess unrooted system backup at all times which would come handy at the time of OTA updates.
E. Root Your Stock Rom
Download: The latest SuperSU on your device.
https://download.chainfire.eu/896/SuperSU/BETA-SuperSU-v2.66-20160103015024.zip
Reboot to recovery
Tap on Install > Browse and Select SuperSU > Swipe to Confirm the Flash
Once Done > Wipe Dalvik & Cache > Reboot System To Restart
To Confirm the root status use a root checker app from play.
F. Backup EFS and Other Partitions
1. Download Partitions Backup And Restore App from Here
2. Open the app and grant it root access.
3. Click on the Settings icon above and select preference to .img
4. Select the partitions marked in yellow and backup them by clicking on the download like button at the bottom right.
5. Go to the storage and search for the Partitions Backup folder there you will three .img files (modem,modemst1,modemst2) . Save them to your cloud and as many places as you want as they are very important files.
This way you can back up all other partitions too. (I recommend backing up all those that are not found in a factory image.
Now you possess an Unlocked YU - Yutopia with a Custom Recovery and Root Privileges
Cheers,
Funk Wizard :good:
Reserved for updates !!
Do you have make video tutorial?
I am using windows 10, 64 bit. Thease drivers are not working for me.
Sent from my HM 1SW using XDA Forums Pro.
Nevermind.
Modified TWRP link is dead
Hello,
The modified twrp link is dead. Please share a new link.
Alternate Link for Yutopia Drivers
Hi,
Can you please share an updated link for the yutopia drivers? This link seems to be broken.
Thanks a lot!

ZenFone 3 Max 5.5 ZC553KL. Tutorial unlock bootloader, install TWRP and ROOT

Hi Everyone
I will show you how to unlock bootloader, install TWRP and ROOT on
ASUS Zenfone 3 Max 5.5 ZC553KL (X00D).
Before you remember to backup data carefully.
All needed files will be in this folder:
Please edit all the link to be form of google shorterner
goo. gl/xCAUAB
1. We downloaded two driver compression files on:
Adb: goo. gl/SBVPVG
Intel Android Driver: goo. gl/oYN7mG
2.Download this file:
goo. gl/5yA6yp
3. After you download all the necessary files, you unzip them all and start installing.
Run file adb-setup-1.4.2.exe to setup adb
Adb is now installed Intel Android Driver next next time as usual.
That is the driver. Now copy the two files (frp.BIN and twrp-3.1.1-0-X00D-20171020-5.img) into the C: \ adb folder.
4. Brother downloaded this file supersu and then copy to phone memory card.
goo. gl/jLmknM
5. Now start using adb to flashboot
After copying, we go to PowerShell (Admin) if using windows 10
You guys use win7 and 8 then run cmd with admin rights.
After open brother type the following commands in turn order:
cd C: \ adbadb reboot bootloader
The command to enter the bootloader, wait for the machine and then reset then type.
fastboot flash config frp.bin
Waitt for the copy to complete the command to reset.
fastboot reboot-bootloader
After resetting, type the following command:
fastboot oem unlock-go
Once done, type in the following command:
fastboot reboot
After the reboot finishes the power off.
Then press the volume key + before pressing the power button, wait for the screen, then release the power button to keep the volume + key to bootloader.
Please enter the order fastboot flash recovery
twrp-3.1.1-0-X00D-20171020-5.img
Wait for the file to finish typing the command below to enter the TWRP
fastboot oem reboot-recovery
After entering the TWRP, the brothers swipe the left "Swipe modified system".
Next select Install -> Select Storage under -> Micro SDCard -> OK
Youu will see the file SuperSU-V2.82.zip you just copied to the memory card.
Click on this file -> Swipe to Right Swipe to confirm Flash Finished, now sit back to finish running and reset the machine.
So is root finished.
Wishing you success.
LOL? You made this method yourself? I saw this in somewhere on this forum.
https://forum.xda-developers.com/zenfone-3/how-to/zenfone-3-max-zc553kl-bootloader-unlock-t3691837
After installing twrp recovery. Will my phone resets its phone data?
hello, i try to unlock bootloader and in adb when i type: fastboot flash config frp.bin it say error: cannot load 'frp.bin' : no such file or directory but 'frp.bin is in the same folder of adb i don't understand why it do this error i'm in fastboot mode i tryed de reboot my pc but it do the same error can you help me please thanks a lot!!
Does this method work on zenfone 3 max zc553kl with android 7.1.1? Thank you
is this tut is working for 7.1.1 version?
Revert to stock
How i can remove TWRP e revert to stock recovery ?
ZC553KL
hello its been a while is it available for Android 8.1?
Hello, I could not download the files. Could you please submit a new link? Thank you very much in advance.

Alcatel PulseMix - Magisk Install Guide

This is a guide for a permanent full root with Magisk for the Alcatel PulseMix 5085C (Cricket). This guide assumes you somewhat know what your doing and are able to get yourself adb, fastboot, drivers, etc. Linux recommend but not required.
For an easy temporary root use MediaTek Easy Root - https://github.com/JunioJsv/mediatek-easy-root/releases
Enable Developer Options
Settings -> About phone -> Tap "Build number" 7 times
Enable OEM Unlocking
Settings -> Developer options -> OEM unlocking (enable)
Enable USB Debugging
Settings -> Developer options -> USB debugging (enable)
Whenever an ADB window pops up on your phone, allow it.
Open a terminal or prompt that has access to adb and fastboot.
Reboot to Fastboot
Code:
adb reboot bootloader
Unlock the Bootloader
Warning: This will factory reset your phone!
Code:
fastboot oem unlock
Press Vol+ when prompted
It will take some time for this first boot.
Enable Developer Options and USB Debugging again
Get a Root Shell
https://forum.xda-developers.com/android/development/amazing-temp-root-mediatek-armv8-t3922213
You need the arm64 version of mtk-su, copy it to the folder your terminal is open in.
Code:
adb push mtk-su /data/local/tmp/
adb shell
cd /data/local/tmp
chmod 755 mtk-su
./mtk-su
Dump your boot.img
TYPE CAREFULLY!
Code:
dd if=/dev/block/mmcblk0p25 of=/sdcard/mmcblk0p25.bin
Install Magisk Manager
https://forum.xda-developers.com/apps/magisk/official-magisk-v7-universal-systemless-t3473445
Patch boot.img with Magisk Manager
Magisk Manager -> INSTALL (top button) -> INSTALL -> Select and Patch a File
Select mmcblk0p25.bin in the file picker
Copy magisk_patched.img from the Download folder on your phone to the folder your terminal is open in.
Reboot to Fastboot
Code:
reboot bootloader
Boot with Magisk enabled boot.img
Code:
fastboot boot magisk_patched.img
Open Magisk Manager, and if it says installed, everything worked. The final step is to actually install Magisk
Magisk Manager -> INSTALL (top button) -> INSTALL -> Direct Install (Recommended)
This device seems to be effected by a known Magisk bug that prevents modules from being installed. Looking at the log, we see:
Code:
E Magisk : execve /sbin/.magisk/busybox/busybox failed with 26: Text file busy
To fix this, download busybox-arm64 from here https://github.com/Magisk-Modules-Repo/busybox-ndk
Place it in /sbin/.magisk/busybox/, rename it to "unzip", and set it's permissions to executable. Lastly, install the busybox module and reboot.
I also have a mostly working TWRP
https://drive.google.com/open?id=12U-H9wD9zFUfraIy5h2LrYnlJaj_bnqu
It's made by swapping files between the stock recovery and one from another device. We have the MT6738 SoC, only in two phones afaict and no development progress has been made. Seems like the stock rom is built as MT6755, so I picked a recovery from a phone with that SoC.
Backing up all partitions works. I tested it by flashing custom zips and my entire system partition. Backing up system as an image does not work, as well as wiping dalvik cache.
Universal DM-Verity/ForceEncrypt Disabler works great on this device. Just need to wipe data after flashing if you don't want it encrypted.
https://forum.xda-developers.com/android/software/universal-dm-verity-forceencrypt-t3817389
Seems like Alcatel did not post source for this device, but it looks like they might have for a similar device the REVVL, which has the same SoC. Edit: It does, and there is indeed kernel source for this device.
--------------------------------------------------
SP Flash Tool does not work with this device. I ordered another motherboard for hardware testing. I'm hoping I can locate emmc clk so it can be pulled low(effectively disabling the emmc to prevent preloader from loading) and force the phone into bootrom mode. It then should allow us to recover from bricks similar to preloader's download mode.
To recover from a brick currently, preloader and lk must be intact. Preloader has special commands that allow you to select from various boot modes as detailed here
http://www.lieberbiber.de/2015/07/04...and-preloader/
The Fire 7 version of the amonet chain has a working example of this
https://github.com/chaosmaster/amonet
Edit "FACTFACT" to "FASTBOOT" in boot-fastboot.sh and execute it in a Linux shell. You can enter download mode by powering off the device, insert the USB cable, and then hold power for several seconds.
For other potential devs, this device is part of the Helio P10 family
https://forum.xda-developers.com/android/general/mediatek-helio-p10-development-porting-t3664416
Custom roms are very rare for this platform, but I was able to find one
https://forum.xda-developers.com/elephone-p9000
I imagine Mediatek has dropped support so we will probably be stuck on nougat for the foreseeable future.
Here is a full TWRP backup of my device, excluding data
https://drive.google.com/file/d/1SmO2Zxi9KCqTPU4Q5-SEtg_HoqukWSdJ/view?usp=sharing
A-Team Digital Solutions
Exclusive Release
Alcatel PulseMix: 5085C
-Package Contents-
-Magisk Root
-TWRP 3.4.0-0 Custom Recovery
-Boot Nag Fix(Device Has Been Unlocked & Can't Be Trusted)
-CricketRom v0.01(Custom Stock)
-Instructions-
-Enable USB Debugging & OEM Unlock in Developer Options
-Unlock Bootloader(Not Covered Here)
-Run Flasher.bat from Windows
-Follow On-Screen Prompts
-Boot TWRP
-Format Data
-Factory Reset
-Reboot
-Downloads-
-5085C-Root_Recovery_Rom_Package
https://drive.google.com/file/d/148vSfofT4LO3HHspAo2g9cnCUO8VNmPI/view?usp=sharing
-Alcatel Stock Rom Flasher/Unbricker
https://drive.google.com/file/d/1A3mbOB61hY8ykuSasdvY7ibCUJXcearC/view?usp=sharing
-OpenGapps
https://opengapps.org/

Infinix zero 5g 2023 TURBO X6815C (bootloader unlock/root/system-r/w) Ant-Man and the Wasp: Quantumania Edition

root infinix XOS 12 (Android 12)
Infinix Zero 5G Ant-Man and the Wasp: Quantumania Edition
Easy unlock
1. Enable developer options and turn on/allow OEM unlocking and enable USB debugging
2. Reboot to fastoot
Code:
Code:
adb reboot bootloader
3. Unlock bootloader via fastboot (you will be prompted to accept yes with volume up on phone.
Code:
fastboot flashing unlock
4. Setup and install MTK client Linux (fallow guide)
[GUIDE] [MTK] How to use MTKClient and set it up!
So most of you probably don't know what mtkclient is. It is basically an exploit which is used to boot any (mtk) phone into BROM mode (basically EDL for mtk) I am writing this guide especially for the RM6785 community. This tool is very useful...
forum.xda-developers.com
4. backup all partitions with MTKClient/MTKTool GUI (launch the mtk_GUI with su/root)
in mtk_GUI
Go to,
Read Partition(s) Tab and tick all boxes to be read/backup the partitions except data partition (internal storage)
Now you should have a backup of your files/.bin
5. copy boot_a.bin to your phone internal for magisk patching manually on phone
(Time of writing latest)
https://github.com/topjohnwu/Magisk/releases/download/v25.2/Magisk-v25.2.apk
6. Rename (magisk renames the default .bin)
patched_boot_a.img to patched_boot_a.bin
7. Copy patched boot_a back to your computer/home folder.
8. flashing.
From fresh started Android reboot to fastboot.
Code:
adb reboot bootloader
DO THE NEXT 2 STEPS AT THE SAME TIME IN FASTBOOT.
(Fastboot commands)
Code: terminal
Code:
fastboot flash boot_a /path/to/patched_boot_a.bin
Code2: (disable verity/secure boot) use vbmeta_a.bin that you backed up from you're phone.
Code:
fastboot --disable-verity --disable-verification flash vbmeta_a /path/to/vbmeta_a.bin
AFTER flashing above you should now have root
############## system r/w#############
If you want system R/W writable (full root) fallow next steps.
1. go to system r/w website and get this version tested here.
Official SYSTEM-RW v1.41 by lebigmac for Samsung Galaxy S23 Ultra and other devices
lebigmac's software
lebigmac
www.systemrw.com
Link to file above
11.21 MB file on MEGA
mega.nz
This must be run on the phone!
Step 1
Decompress (7zip) SYSTEM-RW_v1.41.zip to this directory on device. sysrw_1.41
Code:
/data/local/tmp
Step 2 in Android terminal type
Code:
Code:
su
cd /data/local/tmp/sysrw_1.41
chmod +x sysrw
./sysrw
This will build the new patched r/w super.bin in /data/local/tmp/sysrw_1.41/IMG
Use file explorer (fx-file explorer) to copy patched_super.bin to phones internal/storage and then copy to computer to flash with fastboot.
Step 3
Code:
On computer/PC with adb and fastboot flash super. (Should be around 8gb file)
Code:
Code:
sudo adb reboot bootloader
sudo fastboot flash super /path/to/patched_super.bin
sudo fastboot reboot
########################
Enjoy system r/w[/code]
Lposed
CPU Demensity 1080, can play most emulators (dolphin/athersx2) at 30-60 FPS,a really powerful gaming phone
Phone
Infinix Zero 5G Ant-Man and the Wasp Quantumania Edition
Any help please
Can elaborate this please. Im stuck at this step
Mtk-client has a user interface see photo
Step4 in mtk_GUI
Go to,
Read Partition(s) Tab and tick all boxes to be read/backup the partitions except data partition (internal storage)
Now you should have a backup of your files/.bin
Still can not change SELinux to permissive or install.... some madgisk modules..?? Assuming because the boot is reed only, wish system r/w worked on boot to as it contains the kennel..
Hi what version is your device? Is it v810? I was wondering if your device can boot into BROM mode.
Build number:
X6815C-H777A-S-GL-221010V451
Should work on
X6815
X6815B
And to get into BROM mode (to my understanding) on any mediatek CPU/phone simply power the device off with no USB connected...
Launch mtk_GUI with root, and it will ask to hold volume up or down while connecting the USB from a powered off state (try different button combinations)
Mtk _GUI is touchy!... with how it connects it usually takes me 2-3 attempts of rebooting and powering off my phone to get it connect/recognize in brom mode
(Might be worth noting)
If your Linux sysctl.conf has these security JIT settings
net.core.bpf_jit_harden=2
kernel.unprivileged_bpf_disabled=1
kernel.kexec_load_disabled=1
Or more...
mtk client will not recognize your devices... Simply move sysctrl.conf temporarily and reboot your Linux machine and try again
notreal456789 said:
Build number:
X6815C-H777A-S-GL-221010V451
Should work on
X6815
X6815B
And to get into BROM mode (to my understanding) on any mediatek CPU/phone simply power the device off with no USB connected...
Launch mtk_GUI with root, and it will ask to hold volume up or down while connecting the USB from a powered off state (try different button combinations)
Mtk _GUI is touchy!... with how it connects it usually takes me 2-3 attempts of rebooting and powering off my phone to get it connect/recognize in brom mode
(Might be worth noting)
If your Linux sysctl.conf has these security JIT settings
net.core.bpf_jit_harden=2
kernel.unprivileged_bpf_disabled=1
kernel.kexec_load_disabled=1
Or more...
mtk client will not recognize your devices... Simply move sysctrl.conf temporarily and reboot your Linux machine and try again
Click to expand...
Click to collapse
Damn sadly im on v810 now and it doesn't enter into BROM mode anymore or maybe am i doing something wrong but idk. I hope infinix will enable it again
Hnojohn said:
Damn sadly im on v810 now and it doesn't enter into BROM mode anymore or maybe am i doing something wrong but idk. I hope infinix will enable it again
Click to expand...
Click to collapse
This is why I don't update things, also it could be the setup Maby I'll post a Linux.iso with mtk client setup correctly
I still use Android apps from 2008 that still work on Android 12 fine

Categories

Resources