[RECOVERY] TWRP 2.8.7.0 for Asus Zenfone 5 & 6 - Zenfone 5 General

TWRP 2.8.7.0 For Asus Zenfone 5 & 6
build from cm12 source and omni android_bootable_recovery tree
Special Credit to TEAMWIN recovery ​
For Any Question About This Topic please post here -> Q & A TWRP 2.8.6.0 For Asus Zenfone 5 & 6
Do At YoUr OwN RISK​Note: you must unlock bootloader in order to boot in recovery thanks bro TheSSJ , Izonk and elol
{
"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"
}
Better Custom Recovery that we can use daily
Responsive touch thanks to quanganh2627 for the cm patch
Initial build if you found some bugs please report here
NOTE: if you lost your installed application you need to factory reset or wipe data/cache do at your own risk i warn you
Tips and tricks
Use the stock lollipop or kitkat update-binary for building flashable zip or use busybox for mounting
To take a screenshot hold volume down and power
To make adb on system it need to be mount, goto mount->check system partition
MTP is working you can mount usb storage plug usb in pc and goto recovery mount->usb storage
WHATS NEW
BUILD 3 Update TWRP 2.8.7.0 from omni Source
For Asus Zenfone 5
* This build is for LOLLIPOP version i don't try on KITKAT because we
testing to build cm 12.1 from lollipop files (still not enough for flashing cm error update-binary but in normal rom it work perfect)
* Add Superuser or Root for unrooted devices is now working
* flash boot.img OK
* flash fastboot.img OK
* Disable Signature Check for Flashing Files
* Adb is now build from source thanks to CM patch for Intel
* Flashing Files is now working tutorial below post #2
Download Auto installer for TWRP 2.8.7.0 https://www.mediafire.com/folder/otsu4v64sk4i8/TWRP_Auto_Installer
For Advance User Download The Attachment bellow TWRP2870-zenfone5.zip extract and flash in droidboot via fastboot
Lost Droidboot
If you came to lollipop and after using auto installer and your Droiboot change to Kitkat version Flash The droiboot.img to Droidboot via Fastboot command download Droid-FlasherL.zip below and flash it manually in droidboot
Splash Screen Become White on Kitkat Version? flash the splash.bin on droidboot follow the command below and download the slash.zip extract to get the splash.bin
Code:
fastboot flash splashscreen splash.bin
For Asus Zenfone 6
Unlock Bootloader for asus Zenfone 6 here dnx_fwr_ctp_a600cg.bin ifwi_ctp_a600cg.bin from shakalaca
Now Working on Asus Zenfone 6 Thanks To elol for testing and inform that now TWRP is working on Zenfone 6
Download TWRP-2.8.6.0-Zenfone6.img.tar below and extract the twrp and flash in your droidboot Note in Asus Zenfone Must unlock your Bootloader and Flash The TWRP
DOWNLOAD
BAT Auto Installer TWRP+material+WW_3.23.40.52.rar Thanks to Izonk Deathsilence for auto installer
Recovery image only BUILD2-TWRP-2.8.6.0-Zenfone5.img
* Attach bellow extract the BUILD2-TWRP-2.8.6.0-Zenfone5.img.tar and flash in droidboot. Bootloader must unlock
To root your device Download BETA-SuperSU-v2.49.zip
Stock recovery lollipop 3.23.40.52 WW
Material TWRP theme from here
Source
* https://github.com/knone1/android_device_asus_a500cg
* https://github.com/knone1/android_bootable_recovery-twrp
Thanks to
@TWRP Team
@shakalaca
@quanganh2627
@TheSSJ for the boardconfig thanks bro!
@social-design-concepts
@z31s1g for TWRP Material Theme
@Izonk Deathsilence for creating Auto installer for this TWRP
@elol for testing and inform that now Asus Zenfone 6 have a proper TWRP

Tutorial​
Sample updater-script command for asus zenfone 5 and 6
Download the demo below
Tutorial-Files
- Include the update-binary
- Busybox
- for creating flashable rom or files
Example updater-script
Code:
ui_print("-----> Mount system... ");
run_program("/sbin/busybox", "mount", "/system");
ui_print("-----> Extracting Files... ");
package_extract_dir("system", "/system");
ui_print("-----> Unmount System ");
run_program("/sbin/busybox", "unmount", "/system");
ui_print("-----> Complete Done... ");
Flash Splash.bin
Code:
package_extract_file("splash.bin", "/tmp/splash.bin");
ui_print("Updating Splash image...");
flash_splash("/tmp/splash.bin");
Flash Boot.img
Code:
package_extract_file("boot.img", "/tmp/boot.img");
flash_osip("/tmp/boot.img", "boot");
delete("/tmp/boot.img");
Flash Recovery.img
Code:
package_extract_file("recovery.img", "/tmp/recovery.img");
flash_osip("/tmp/recovery.img", "recovery");
delete("/tmp/recovery.img");
Flash Fastboot.img
Code:
package_extract_file("fastboot.img", "/tmp/fastboot.img");
flash_osip("/tmp/fastboot.img", "fastboot");
delete("/tmp/fastboot.img");
Flash Ifwi
Code:
package_extract_file("ifwi.zip", "/tmp/ifwi.zip");
ui_print("Updating IFWI image...");
flash_ifwi("/tmp/ifwi.zip");

How to mount system .
I want flash system.img
Gửi từ ASUS_Z00AD của tôi bằng cách sử dụng Tapatalk

29y6145 said:
How to mount system .
I want flash system.img
Gửi từ ASUS_Z00AD của tôi bằng cách sử dụng Tapatalk
Click to expand...
Click to collapse
its not ready to flash system.img yet,
you can flash a .zip file for now
to mount on system go to mount-> check the system partition

Glad you made it working
I assume the bootloader needs to be unlocked in order to flash this? You might want to add this piece of information before someone flashes it with a locked BL

TheSSJ said:
Glad you made it working
I assume the bootloader needs to be unlocked in order to flash this? You might want to add this piece of information before someone flashes it with a locked BL
Click to expand...
Click to collapse
thanks bro updating post now i forgot to add unlock bootloader

BUILD 2 BUILD2-TWRP-2.8.6.0-Zenfone5.img MARK as STABLE
* Fix touch Glitch
* Add OTG-USB
* Rework Ramdisk
* Improve Build Config
* Fix Layout 720x1280
update

Hye,just let me know if this will working with Asus zenfone 6?

elol said:
Hye,just let me know if this will working with Asus zenfone 6?
Click to expand...
Click to collapse
i think it will work in asus zenfone a600cg a500cg a501cg a502cg
* but you need to unlock your bootloader

knoneNull said:
i think it will work in asus zenfone a600cg a500cg a501cg a502cg
* but you need to unlock your bootloader
Click to expand...
Click to collapse
Recovery can boot on my Asus zenfone 6 but the touch screen not working..

elol said:
Recovery can boot on my Asus zenfone 6 but the touch screen not working..
Click to expand...
Click to collapse
if touch not work its the touch driver not match with the zenfone i try to change can you gibe me a boot.img of zenfone 6? from latest lollipop

knoneNull said:
if touch not work its the touch driver not match with the zenfone i try to change can you gibe me a boot.img of zenfone 6? from latest lollipop
Click to expand...
Click to collapse
Thanks for working for that..but I only have boot.IMG jellybean version..

knoneNull said:
if touch not work its the touch driver not match with the zenfone i try to change can you gibe me a boot.img of zenfone 6? from latest lollipop
Click to expand...
Click to collapse
This is the boot.IMG of jellybean version..I hope sir will help me do this first because I want to flash the lower of Asus t00g firmware to try fix my problem with mobile network,WiFi and bluethooth..thanks

Here is boot.IMG of lollipop Asus zenfone 6 t00g

elol said:
Here is boot.IMG of lollipop Asus zenfone 6 t00g
Click to expand...
Click to collapse
thanks can you test this in your zenfone 6 i dont know i this will boot it hard to build without this devices

knoneNull said:
thanks can you test this in your zenfone 6 i dont know i this will boot it hard to build without this devices
Click to expand...
Click to collapse
Thanks my man..I will try this later

knoneNull said:
thanks can you test this in your zenfone 6 i dont know i this will boot it hard to build without this devices
Click to expand...
Click to collapse
I thinks you need to change this thread..

elol said:
I thinks you need to change this thread..
Click to expand...
Click to collapse
did you test bro?

knoneNull said:
did you test bro?
Click to expand...
Click to collapse
Yup..and its working..thanks for that..now Asus zen6 have custom recovery build by you..thanks brother...

elol said:
Yup..and its working..thanks for that..now Asus zen6 have custom recovery build by you..thanks brother...
Click to expand...
Click to collapse
thanks any bugs bro if any you find? like random reboot or touch problem thanks for test

Related

Lollipop ROM 5.0 for ASUS fonepad7 ME175CG

LOLLIPOP ROM OFFICIAL ASUS no custom ROM
yea is really original android L or 5.0 for ME 175 CG single sim and dual sim WW - no unlock bootloader!
Essential to install:
[TOOL]Minimal ADB and Fastboot [11-6-14]
DRIVER ASUS
R O M
Download OLD WW_user_V6.3.6
NEW 6.3.7 Download WW_user_V6.3.7
how to flash?
-Install Driver
-Open console cmd and move on the position of Extract Minimal ADB & Fastboot
-Move the rom file .raw on the directory Minimal Adb & Fastboot
-Enter in fastboot mode (tablet) HOW to ---> enable USB DEBBUG on the tablet and
in cmd type "adb reboot bootloader"
after for flash rom
in cmd type --->"fastboot flash all ME175CG_all_WW_user_V6.3.6.raw"
wait 5 minut flash and read FLASH COMPLETE! on the tablet
Factory reset is not necessary and no lost data if you have base rom 5.5.4
but for great job and no bug I advice to perform a factory reset after update
after reboot tablet first boot is mooooost slow 5/10min
Thanks RolanDroid
This is screen recording of a Rom: https://docs.google.com/file/d/0BxXE...p=docslist_api
Thanks Titokhan
-ROM It's applicable only for WW SKU - both single & dual SIM models. I've tested it personally on WW dual SIM.
-Root can easily be achieved by the temp CWM by @social-design-concepts; see here for more info. I've rooted it successfully via T2 method .
byezzzz and HAPPY lollipo day all >>> sorry my bad English BRO <<<
Wow! I think I' wait for root, though.... Great news, anyhow
Thank you for the information!
I think we desperately need shahr773 experience on root now..
grean said:
Hi all !!!!
I have other good news for ME175CG
I PRESENT
LOLLIPOP ROM OFFICIAL ASUS no custom ROM
yea is really original android L or 5.0 for ME 175 CG single sim!
http://www.mediafire.com/download/y8...ser_V6.3.6.raw
how to flash?
go in fastboot mode (enable USB DEBBUG on the tablet and in cmd adb reboot bootloader)
after
in cmd : fastboot flash all ME175CG_all_WW_user_V6.3.6.raw
wait 5 minut flash and read FLASH COMPLETE! on the tablet
factory reset is not necessary and no lost data if you heve 5.5.4
but for great job and no bug I advice to perform a factory reset after update
after reboot tablet first boot is mooooost slow 10min
byezzzz and HAPPY lollipo day all
Click to expand...
Click to collapse
This is link for download fixed: http://www.mediafire.com/?y8cazoe4yjt9611
This is screen recording: https://docs.google.com/file/d/0BxXEObkHUHUCeFFnaEhGYU9jZEU/edit?usp=docslist_api
ROOT FOR ASUS FONEPAD 7 WW_6.3.6
Instructions:
1 .Download Intel USB Driver
2.Go to "DROIDBOOT" (turn off tablet,press power+vol up)
3.open "OPEN.cmd" and enter this:
Code:
fastboot flash update Root_WW_6.3.6.zip
Download : ROOT FOR WW-6.3.6
RolanDroid said:
ROOT FOR ASUS FONEPAD 7 WW_6.3.6
Instructions:
1 .Download Intel USB Driver
2.Go to "DROIDBOOT" (turn off tablet,press power+vol up)
3.open "OPEN.cmd" and enter this:
Code:
fastboot flash update Root_WW_6.3.6
Download : ROOT FOR WW-6.3.6
Click to expand...
Click to collapse
there is also a recovery for this Fonepad 7 k00z?
LittlePsycho84 said:
there is also a recovery for this Fonepad 7 k00z?
Click to expand...
Click to collapse
nope, only for fastboot
RolanDroid said:
ROOT FOR ASUS FONEPAD 7 WW_6.3.6
Instructions:
1 .Download Intel USB Driver
2.Go to "DROIDBOOT" (turn off tablet,press power+vol up)
3.open "OPEN.cmd" and enter this:
Code:
fastboot flash update Root_WW_6.3.6.zip
Download : ROOT FOR WW-6.3.6
Click to expand...
Click to collapse
I now have rooted your instructions to the root zip flashed 2 x but it will
{
"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"
}

			
				
Idk, flash root by chainfire
RolanDroid said:
Idk, flash root by chainfire
Click to expand...
Click to collapse
Idk ???
LittlePsycho84 said:
Idk ???
Click to expand...
Click to collapse
Idk= I don't know
RolanDroid said:
ROOT FOR ASUS FONEPAD 7 WW_6.3.6
Instructions:
1 .Download Intel USB Driver
2.Go to "DROIDBOOT" (turn off tablet,press power+vol up)
3.open "OPEN.cmd" and enter this:
Code:
fastboot flash update Root_WW_6.3.6.zip
Download : ROOT FOR WW-6.3.6
Click to expand...
Click to collapse
For me root isn't working. Please help
And for me too, this root not working.
PLS, Help.
HELP
My device is asus fonepad 7 k00z me175cg ,dual sim model .Rooted and Kitkat version is 4.4.2 and build no 5.5.1-20141114.Can I install this lollipop version on my device. Or do i need to unlock bootloader or something else?
You can install lollipop rom without unlocking bootloader. It's official rom
maheruf said:
You can install lollipop rom without unlocking bootloader. It's official rom
Click to expand...
Click to collapse
Yes
Where is the root file? Pls re-upload
maheruf said:
Where is the root file? Pls re-upload
Click to expand...
Click to collapse
Nope, not working
RolanDroid said:
Idk, flash root by chainfire
Click to expand...
Click to collapse
Does root by chainfire work on this? Have you tried it?
is this valid to spanish 175 single sim version? I have no root, 4.4.2 oficial rom. Thanks.

[MOD] ► TWRP ► [v. 3.0.2-0] ► MultiROM ► [v. 33] ► UNOFFICIAL

[MOD] ► TWRP ► [v. 3.0.2-0] ► MultiROM ► [v. 33] ► UNOFFICIAL
{
"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"
}
IntroductionMultiROM is one-of-a-kind multi-boot mod for Nexus 7. It can boot any Android ROM as well as other systems like Ubuntu Touch, Plasma Active, Bohdi Linux or WebOS port.Besides booting from device's internal memory, MultiROM can boot from USB drive connected to the device via OTG cable. The main part of MultiROM is a boot manager, which appears every time your device starts and lets you choose ROM to boot. You can see how it looks on the left image below and in gallery. ROMs are installed and managed via modified TWRP recovery. You can use standard ZIP files to install secondary Android ROMs, daily prebuilt image files to install Ubuntu Touch and MultiROM even has its own installer system, which can be used to ship other Linux-based systems.
Features:
Multiboot any number of Android ROMs
Restore nandroid backup as secondary ROM
Use for example Ubuntu Touch or Desktop alongside with Android, without the need of device formatting
Boot from USB drive attached via OTG cable
You can also watch a video which shows it in action.​
Warning!
It _is_ dangerous. This whole thing is basically one giant hack - none of these systems are made with multibooting in mind. It is messing with boot sector and data partition. It is no longer messing with data partition or boot sector, but it is possible that something goes wrong and you will have to flash factory images again. Make backups. Always.​
Installation
1. Via MultiROM Manager app
This is the easiest way to install everything MultiROM needs. Install the app and select MultiROM and recovery on the Install/Update card. If the Status card says Kernel: doesn't have kexec-hardboot patch! in red letters, you have to install also patched kernel - either select one on the Install/Update card or get some 3rd-party kernel here on XDA. You are chosing kernel for your primary ROM, not any of your (future) secondary ROMs, so select the version accordingly.
Press "Install" on the Install/Update card to start the installation.
2. Manual installation
Firstly, there are videos on youtube. If you want, just search for "MultiROM installation" on youtube and watch those, big thanks to all who made them. There is also an awesome article on Linux Journal.
Note 1: There have been reports that (not only) MultiROM does not work properly with older bootloaders. Update it to version 4.13 or newer in case you have problems.
MultiROM has 3 parts you need to install:
MultiROM - download the ZIP file from second post and flash it in recovery.
Modified recovery - download the IMG file from second post and use fastboot or Flashify app to flash it.
Patched kernel - You can use either one of the stock ones in second post or third-party kernels which include the patch, you can see list in the second post. Download the ZIP file and flash it in recovery.
You current rom will not be erased by the installation.
Download links are in the second post.​
Adding ROMs
1. Android
Go to recovery, select Advanced -> MultiROM -> Add ROM. Select the ROM's zip file and confirm. As for the space, clean installation of stock 4.2 after first boot (with dalvik cache generated and connected to google account) takes 676mb of space.
2. Ubuntu Touch
Use the MultiROM Manager app to install Ubuntu Touch.
Ubuntu Touch is in development - MultiROM will have to be updated to keep up with future changes in Ubuntu, so there's a good chance this method stops working after a while and I'll have to fix it.
3. Ubuntu Desktop
Download Ubuntu 13.04 image from here. Put the image in the memory of N7 or to USB flash drive and go to recovery. Select Advanced -> MultiROM -> Add ROM and choose "Ubuntu" as ROM type. Then select the Ubuntu's image and confirm. Clean installation of Ubuntu is 1.5gb big, and takes a while (10 minutes?) to install.
The first boot takes a bit longer, and 13.04 stays a while (30-60s) in console ("Enter login:") before the GUI shows up, so just wait a while.
Ubuntu ROM must not have spaces in name!​
Using USB drive
During installation, recovery lets you select install location. Plug in the USB drive, wait a while and press "refresh" so that it shows partitions on the USB drive. You just select the location (extX, NTFS and FAT32 partitions are supported) and proceed with the installation.
If you wanna use other than default FAT32 partition, just format it in PC. If you don't know how/don't know where to find out how, you probably should not try installing MultiROM.
If you are installing to NTFS or FAT32 partition, recovery asks you to set image size for all the partitions - this cannot be easilly changed afterward, so choose carefully. FAT32 is limited to maximum of 4095MB per image - it is limitation of the filesystem, I can do nothing about that.
Installation to USB drives takes a bit longer, because the flash drive is (usually) slower and it needs to create the images, so installation of Ubuntu to 4Gb image on my pretty fast USB drive takes about 20 minutes.
Enumerating USB drive can take a while in MultiROM menu, so when you press the "USB" button in MultiROM, wait a while (max. 30-45s) until it searches the USB drive. It does it by itself, no need to press something, just wait.​
Updating/changing ROMs
1. Primary ROM (Internal)
Flash ROM's ZIP file as usual, do factory reset if needed (it won't erase secondary ROMs)
Go to Advanced -> MultiROM in recovery and do Inject curr. boot sector.
2. Secondary Android ROMs
If you want to change the ROM, delete it and add new one. To update ROM, follow these steps:
Go to Advanced -> MultiROM -> List ROMs and select the ROM you want to update.
Select "Flash ZIP" and flash ROM's ZIP file.
In some cases, you might need to flash patched kernel - get coresponding patched kernel version from second post and flash it to the secondary ROM sama way you flashed ROM's ZIP file.
Explanation of recovery menus
Main menu
- Add ROM - add ROM to boot
- List ROMs - list installed ROMs and manage them
- Inject boot.img file - When you download for example kernel, which is distrubuted as whole boot.img (eg. franco kernel), you have to use this option on it, otherwise you would lose MultiROM.
- Inject curr. boot sector - Use this option if MultiROM does not show up on boot, for example after kernel installation.
- Settings - well, settings.
Manage ROM
- Rename, delete - I believe these are obvious
- Flash ZIP (only Android ROMs) - flash ZIP to the ROM, for example gapps
- Add/replace boot.img - replaces boot.img used by this ROM, this is more like developer option.
- Re-patch init - this is available only for ubuntu. Use it when ubuntu cannot find root partition, ie. after apt-get upgrade which changed the init script.​
Thanks
@Tasssadar
@xyyx
@faust93​
Donate me
PayPal​
Download
http://xyyx-dev.ru/nitrogen-os/addons/geehrc/twrp-multirom-geehrc-3.0.2.zip
http://xyyx-dev.ru/nitrogen-os/addons/geehrc/multirom-20160415-v33-UNOFFICIAL-geehrc.zip​
Source code
MultiROM - https://github.com/Tasssadar/multirom (branch master)
Modified TWRP - https://github.com/nitrogen-devs/Team-Win-Recovery-Project (branch master)
Device tree - https://github.com/nitrogen-devs/android_device_lge_geehrc
Stock kernel w/ kexec-hardboot patch - https://github.com/Tasssadar/kernel_...kexec-hardboot
CM kernel w/ kexec-hardboot patch - https://github.com/Tasssadar/android...l_asus_grouper​
XDA:DevDB Information
TWRP MultiROM, ROM for the LG Optimus G
Contributors
Mr.MEX
Source Code: https://github.com/nitrogen-devs
ROM OS Version: 6.0.x Marshmallow
Version Information
Status: Testing
Current Beta Version: 15.04.2016
Beta Release Date: 2016-04-15
Created 2016-04-15
Last Updated 2016-04-15
G+ post
Good I like it.i can not wait for unbuntu.thnaks
Sent from my X98 Air 3G(Smile) using XDA Premium HD app
Im on Sling rom with UL bootloader of couse. So if i want multi fom i will have to do:
1- Download both file zip above and other rom (Nitrogen eg).
2- Flast 2 zip throught recovery. So i have twrp now.
3- Reboot to recovery.
4- Add rom -> Choose Nitrogen zip.
5- I have multirom now.
Right? I want to try it but im not sure. Wait for ur answer. Thks adv.
tiennhu89 said:
Im on Sling rom with UL bootloader of couse. So if i want multi fom i will have to do:
1- Download both file zip above and other rom (Nitrogen eg).
2- Flast 2 zip throught recovery. So i have twrp now.
3- Reboot to recovery.
4- Add rom -> Choose Nitrogen zip.
5- I have multirom now.
Right? I want to try it but im not sure. Wait for ur answer. Thks adv.
Click to expand...
Click to collapse
https://github.com/nitrogen-devs/multirom/tree/mm6.0/geehrc
Download:
multirom-uninstaller.zip
multirom-geehrc.zip
twrp-multirom-geehrc.zip
1. Install twrp
2. Install multirom
3. Reboot to recovery
4. Multiboot > add rom
Mr.MEX said:
https://github.com/nitrogen-devs/multirom/tree/mm6.0/geehrc
Download:
multirom-uninstaller.zip
multirom-geehrc.zip
twrp-multirom-geehrc.zip
1. Install twrp
2. Install multirom
3. Reboot to recovery
4. Multiboot > add rom
Click to expand...
Click to collapse
so that mean i can use Sling rom as primary rom?
Mr.MEX said:
https://github.com/nitrogen-devs/multirom/tree/mm6.0/geehrc
Download:
multirom-uninstaller.zip
multirom-geehrc.zip
twrp-multirom-geehrc.zip
1. Install twrp
2. Install multirom
3. Reboot to recovery
4. Multiboot > add rom
Click to expand...
Click to collapse
I can't multiboot with stock rom 4.4.2.
miui f180 or sling rom, pls!
Don't working for 4.4
TWRP 3.0.2-0 MultiROM + MultiROM v33 for geeb:
http://xyyx-dev.ru/nitrogen-os/addons/geeb/
Mr.MEX said:
TWRP 3.0.2-0 MultiROM + MultiROM v33 for geeb:
http://xyyx-dev.ru/nitrogen-os/addons/geeb/
Click to expand...
Click to collapse
Twrp don't show multirom menu in advance
Gửi từ Optimus G của tôi bằng cách sử dụng Tapatalk
zeronatdo said:
Twrp don't show multirom menu in advance
Gửi từ Optimus G của tôi bằng cách sử dụng Tapatalk
Click to expand...
Click to collapse
Please screen
zeronatdo said:
Twrp don't show multirom menu in advance
Gửi từ Optimus G của tôi bằng cách sử dụng Tapatalk
Click to expand...
Click to collapse
1. Install recovery
2. Reboot to recovery
3. Flash multirom unofficial
Mr.MEX said:
1. Install recovery
2. Reboot to recovery
3. Flash multirom unofficial
Click to expand...
Click to collapse
don't work, twrp don't show multirom setting in advanced tab
I have installed multirom: one for nitrogen and one for stock kitkat from gee rom port G3. I boot nitrogen os, it's ok but I boot second rom (kitkat) i had error. I attach multirom_log.txt for you to help me.
Thank for your help.
stevenNguyen said:
I have installed multirom: one for nitrogen and one for stock kitkat from gee rom port G3. I boot nitrogen os, it's ok but I boot second rom (kitkat) i had error. I attach multirom_log.txt for you to help me.
Thank for your help.
Click to expand...
Click to collapse
Not working for KK roms
Mr.MEX said:
Not working for KK roms
Click to expand...
Click to collapse
Noted. Thanks so much.
zeronatdo said:
don't work, twrp don't show multirom setting in advanced tab
Click to expand...
Click to collapse
Please delete TWRP theme.
Way:
/sdcard/TWRP/theme/ui.zip
Mr.MEX said:
Please delete TWRP theme.
Way:
/sdcard/TWRP/theme/ui.zip
Click to expand...
Click to collapse
It work,thank u sir
Gửi từ Optimus G của tôi bằng cách sử dụng Tapatalk
what is going to do first if may LG E975 is stock rom.... whats the first step isa the best should
i'll do??
I want to install Ubuntu Touch. What should I do if I see that?

[RECOVERY][aio_row][UNOFFICIAL] TWRP 3.0.2-8

{
"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"
}
TeamWin's TWRP Touch Recovery For Lenovo A7000-a
SCREENSHOT ON ATTACHMENT
TWRP is an open source, community project. TWRP development is done by roughly 4 people at this point. TWRP also have a large support community with many people who are willing to answer questions and help people with their devices either through our IRC channel or on forums like xda-developers.
This TWRP was originally formed to work on Lenovo K3 Note. After Denis work on K3 Note, I wanted to make it that would work on Lenovo A7000-a to. Today TWRP is the leading custom recovery for Android phones.
A custom recovery is used for installing custom software on your device. This custom software can include smaller modifications like rooting your device or even replacing the firmware of the device with a completely custom “ROM” like OmniROM
You can find the source code for TWRP at https://github.com/omnirom/android_bootable_recovery/​
Flashing Instructions :
To install recovery images use Flashify / Rashr / TWRP Manager from Play Store or flash in your current recovery:
1. Go to install, find and select the Images... button.
2. Browse to the image that you downloaded and select it.
3. Choose recovery and swipe to flash.
Download :
TWRP : Mod Edit: Link Removed
Remember to do backup of your current recovery before installing.​
XDA:DevDB Information
TWRP 3.0.2-8, TWRP for the Lenovo A7000
Contributors
HDHR, sandeep.sethi, Denis_PDA
Version Information
Status: Stable
Created 2016-10-29
Last Updated 2017-02-19
Mod Edit: Thread Closed
Changelog
TWRP 3.0.2-8 :
~Upgraded to TWRP 3.0.2-8 (Base, Security Patch,ETC.)
~Minor fixes
~Added ability to set system.img
=>TWRP -> Install -> Install image -> system.img -> System Image -> Swipe to confirm Flash.
~Optimized OTG FS support FAT32, exFAT, NTFS
~Flashable installation supported
TWRP 3.0.2-6 :
~Updated to TWRP 3.0.2-6 (Security Patch,Base,ETC.)
~Fixed code name error
~Backup and Restore Improvement
~Lot of Improvement
TWRP 3.0.2-5 :
~Initial release
Detailed Changelogs Here :
https://github.com/omnirom/android_bootable_recovery/commits/android-6.0
Reserved
How is it possible ? Flashing a recovery from another recovery ? Doesn't the recovery partition get overwritten?
[Thanks though for the new version]
tanish2k09 said:
How is it possible ? Flashing a recovery from another recovery ? Doesn't the recovery partition get overwritten?
[Thanks though for the new version]
Click to expand...
Click to collapse
Its will overwrite the old one with the new one... You can update via TWRP to
1. Boot to TWRP
2. Select install files
3. Select install image
4. Then select recovery image
5. Select install on recovery
6. Finish and go to reboot option and select reboot to recovery
6. Tadaaa your new Recovery installed
Themes support?
tanish2k09 said:
Themes support?
Click to expand...
Click to collapse
Support :fingers-crossed:
Thanks!
Ceco85 said:
Thanks!
Click to expand...
Click to collapse
Your welcome
What about compatibility of old backup created in 3.0.2-1
CyberDeat said:
What about compatibility of old backup created in 3.0.2-1
Click to expand...
Click to collapse
It I'll not detect backup from old TWRP,you need to backup files on new TWRP and just move your old backup to new folder one
You ported it or built it from source?
tanish2k09 said:
You ported it or built it from source?
Click to expand...
Click to collapse
Build from source on k3 note ported to a7000 :3
How to install on a non-rooted MM A7000-a?
jocph said:
How to install on a non-rooted MM A7000-a?
Click to expand...
Click to collapse
Use SP Flash tools
Thanks for replying. Can you give the steps? Doesn't spflashtool need a scatterfile? Sorry but I'm not very familiar with spflashtool.
Thnx HDHR for the recovery :good:
---------- Post added at 03:37 PM ---------- Previous post was at 03:21 PM ----------
jocph said:
Thanks for replying. Can you give the steps? Doesn't spflashtool need a scatterfile? Sorry but I'm not very familiar with spflashtool.
Click to expand...
Click to collapse
In sp flash tool...for flashing Recovery
1-Install lenovo driver
2-open sp flash tool by administration
3-load scatter file,
4-select recovery only (also select recovery u have downloaded)
5-check in option that dal dal option is tick
6- click on download
7-switch off ur phone...take out battery for 5 sec..reinsert battery and connect ur phone with pc then
It will automatically flash the recovery after u see a download ok popup window disconnect ur phone and u have successfully flash TWRP recovery
Where can I find the scatterfile for this TWRP image? The download only gives the img file. My MM A7000-a is not rooted and does not have custom recovery yet.
i flashed a theme on my old twrp.....the theme got caried on to this one......
i am unable to remove it....plez help.....
there is no folder of twrp in my sd card....
jocph said:
Where can I find the scatterfile for this TWRP image? The download only gives the img file. My MM A7000-a is not rooted and does not have custom recovery yet.
Click to expand...
Click to collapse
https://drive.google.com/file/d/0B5os0Tgr4idrbTA1WkxhUHB6TzA/view
Scatter file...there is also a old TWRP dont use it....

Twrp ui mod for Zenfone 2 series ;)

Follow this page for new customized recovery. In this recovery UI is customized along with splash screen.
courtsy: z31s1g
This custom twrp recovery is for Z00LD. Custom recoveries for other zenfone 2 phones r also uploded but is under scrutiny.
I would lyk to suggest you to boot the img files teporarily by using this command via computer using fastboot. If it works tell me. I will be waiting for your updates.
1. download the img file.
2. Rename it to twrpmod
3.open cmd or shell or terminal and go to the download directory where you downloaded the img file.
4.then run this command.. fastboot boot twrpmod.img
Code:
C:\>fastboot boot twrpmod.img
downloading 'boot.img'...
OKAY [ 0.964s]
booting...
OKAY [ 0.038s]
finished. total time: 1.002s
Download any of the image files and just flash the img file via twrp or fastboot.
Keep Me Posted If you Want More.
And If you lyk it give me thanks.
Link for
1. Z00LD
2. Z00ED
AROMA File Manager is not part of the theme or twrp recovery.
The theme just contains a "shortcut" for directly starting AROMA FM, rather than going through the "install > flash zip" procedure.
Download one of these flashable zips (try which version is working on your device).
Flash the zip in recovery.
This will copy the Aroma FM package to \TWRP\theme\aromafm.
In Materialised settings, tick the option to use Aroma FM.
From the main menu, the theme will now start Aroma FM instead of the TWRP file manager.
{
"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"
}
Thanks to
luca020400 & z31s1g
Testing :
1. Z008
2. Z00A
3. Z00RD
4. Z00T
Guys Please test those recoveries. I will be waiting for your feed back.
https://drive.google.com/open?id=0B2BGto29cXq1bDZaUERqaUZOY2s
This is the link for Z00LD..
Nice mod there is something similar but you need to flash a zip file instead of img file that could brick your phone.
I think this is just the original recovery but you edited some files inside the img file. Remember that this version of TWRP won't work on other phones that the one is made for and may brick your phone. If your TWRP is made for Z00L may not work on Z00T and vice versa.
Here is the link: https://forum.xda-developers.com/android/themes/theme-twrp-materialised-dark-light-play-t2915584
EDIT: Correct me if I'm wrong
vraciu' said:
Nice mod there is something similar but you need to flash a zip file instead of img file that could brick your phone.
I think this is just the original recovery but you edited some files inside the img file. Remember that this version of TWRP won't work on other phones that the one is made for and may brick your phone. If your TWRP is made for Z00L may not work on Z00T and vice versa.
Here is the link: https://forum.xda-developers.com/android/themes/theme-twrp-materialised-dark-light-play-t2915584
EDIT: Correct me if I'm wrong
Click to expand...
Click to collapse
yes you r right. I have just replaced the default twrp theme. And I am not sure if it would work with Z00T or not. I built it for Z00LD.
Devc100 said:
yes you r right. I have just replaced the default twrp theme. And I am not sure if it would work with Z00T or not. I built it for Z00LD.
Click to expand...
Click to collapse
Then your TWRP will work only on Z00LD and could mess up things if you flash it on other models. So take care
vraciu' said:
Then your TWRP will work only on Z00LD and could mess up things if you flash it on other models. So take care
Click to expand...
Click to collapse
sure. y dont you tell me if it works with your phone by temporary booting it?? I would lyk to get ur answer.
Devc100 said:
sure. y dont you tell me if it works with your phone by temporary booting it?? I would lyk to get ur answer.
Click to expand...
Click to collapse
I have an Z00ED and is not working.. You can get the others phones recovery and theme them:
Z00T: https://dl.twrp.me/Z00T/
Z00E: https://www.androidfilehost.com/?w=files&flid=145562
Z00RD: https://www.androidfilehost.com/?w=files&flid=145567
vraciu' said:
I have an Z00ED and is not working.. You can get the others phones recovery and theme them:
Z00T: https://dl.twrp.me/Z00T/
Z00E: https://www.androidfilehost.com/?w=files&flid=145562
Z00RD: https://www.androidfilehost.com/?w=files&flid=145567
Click to expand...
Click to collapse
hi..now check the recovery for your phone
Devc100 said:
Follow this page for new customized recovery. In this recovery UI is customized along with splash screen.
courtsy: z31s1g
This custom twrp recovery is for Z00LD. Custom recoveries for other zenfone 2 phones r also uploded but is under scrutiny.
I would lyk to suggest you to boot the img files teporarily by using this command via computer using fastboot. If it works tell me. I will be waiting for your updates.
1. download the img file.
2. Rename it to twrpmod
3.open cmd or shell or terminal and go to the download directory where you downloaded the img file.
4.then run this command.. fastboot boot twrpmod.img
Code:
C:\>fastboot boot twrpmod.img
downloading 'boot.img'...
OKAY [ 0.964s]
booting...
OKAY [ 0.038s]
finished. total time: 1.002s
Download any of the image files and just flash the img file via twrp or fastboot.
Keep Me Posted If you Want More.
And If you lyk it give me thanks.
Link for
1. Z00LD
2. Z00ED
AROMA File Manager is not part of the theme or twrp recovery.
The theme just contains a "shortcut" for directly starting AROMA FM, rather than going through the "install > flash zip" procedure.
Download one of these flashable zips (try which version is working on your device).
Flash the zip in recovery.
This will copy the Aroma FM package to \TWRP\theme\aromafm.
In Materialised settings, tick the option to use Aroma FM.
From the main menu, the theme will now start Aroma FM instead of the TWRP file manager.
View attachment 4009823View attachment 4009824View attachment 4009825View attachment 4009826View attachment 4009827View attachment 4009828View attachment 4009829View attachment 4009830View attachment 4009831
Testing:
1. Z008
2. Z00A
3. Z00RD
4. Z00T
Guys Please test those recoveries. I will be waiting for your feed back.
Click to expand...
Click to collapse
come on guys. If you guys booted those custom twrp ui mod recoveries, plz let me know if it is working or not. I need feed back.
can this be flashed via twrp?
coconutinuts said:
can this be flashed via twrp?
Click to expand...
Click to collapse
yes.
but if you r not using Z00L I recommend you to flash it temporarily via cmd or terminal in fastboot mode.
using this command
Code:
fastboot boot twrp_ui_mod.img
This is really not fair. None is providing a feedback.. ?
Devc100 said:
This is really not fair. None is providing a feedback.. ?
Click to expand...
Click to collapse
look nice,bro! in my device Z00ED ??
Thanks ? and nothing issues
Sent from my Zenfone 2 Laser using XDA Labs
Adhe_88 said:
look nice,bro! in my device Z00ED ??
Thanks ? and nothing issues
Click to expand...
Click to collapse
You welcome buddy.. ?
Devc100 said:
You welcome buddy.. ?
Click to expand...
Click to collapse
sorry delays for feedback, ?
good job brother!
Sent from my Zenfone 2 Laser using XDA Labs
Hello guys. I need feedback for the remaining testing devices. Please co-operate.
vraciu' said:
Nice mod there is something similar but you need to flash a zip file instead of img file that could brick your phone.
I think this is just the original recovery but you edited some files inside the img file. Remember that this version of TWRP won't work on other phones that the one is made for and may brick your phone. If your TWRP is made for Z00L may not work on Z00T and vice versa.
Here is the link: https://forum.xda-developers.com/android/themes/theme-twrp-materialised-dark-light-play-t2915584
EDIT: Correct me if I'm wrong
Click to expand...
Click to collapse
Hi... Have u flashed the twrp fr ur phone. If so, plz provide a feedback.
Devc100 said:
come on guys. If you guys booted those custom twrp ui mod recoveries, plz let me know if it is working or not. I need feed back.
Click to expand...
Click to collapse
Guys this is really disappointing. If you are seeing this post, then leave a comment...and if you like it please let me know along with feedback and hit thanks.
I am really disappointed seeing that no one has to say nothing about this twrp ui mod
thanks full working on my device Z00ED
---------- Post added at 05:20 PM ---------- Previous post was at 05:20 PM ----------

PitchBlack recovery for Zenfone 5 2018

{
"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"
}
Code:
/*
*Disclaimer
*
* Your warranty is now void.
*
* We're not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at us for messing up your device, we will laugh at you.
*/
Introduction
Pitch Black Recovery is a fork of TWRP with many improvements to make your experience better. It's more flexible & easy to use.
Based on TWRP version: 3.2.3
PitchBlack version: 2.9.0
For device: X00Q/ZE620KL
Maintainer/Authors build: https://forum.xda-developers.com/member.php?u=9533478
PitchBlack Source Code: https://github.com/PitchBlackRecoveryProject
Device tree: https://github.com/Imajkej/recovery_asus_X00Q
Kernel: https://github.com/Imajkej/kernel_asus_zenfone_X00QD
PitchBlack Team: @rezaadi0105, @firewolfxda, @manjot.gni, @androiabledroid, Arbaz Khan
Features
Supports Treble and non-Treble ROMs
Up-to-date Oreo kernel, built from sources (Pie is on the way)
Full dark theme with changeable accents
Reorganized menus
MIUI OTA support
Disable DM Verity
Use AromaFM as default file manager
Various tools are include
Universal flash-able file for all variant of a device
Many bug fixes & optimization & much more
Click to expand...
Click to collapse
Installation Instructions
From previous version or other recovery
Download the PitchBlack zip to your device
Reboot to your current custom recovery
Flash the PitchBlack zip
The device will automatically reboot into PitchBlack Recovery after installation
Enjoy
From PC(Windows & Linux)
Download PBRP PC Installer zip from bellow
Download PitchBlack Recovery flashable zip from bellow
Extract the PBRP PC installer zip & copy the flashable zip to the installer folder
Goto fastboot mode in your device
Windows users open pbinstaller.bat file
Linux users execute pbinstaller.sh in a terminal
Follow the introductions on the installer from there
Enjoy
(LInux users will need unzip, adb & fastboot installed on their system)
Changelog
Code:
v2.9.0
- Update kernel
- Update DM Verity Logic
- Update magisk
- Update unroot magisk
- Some bug fixed
Downloads
Flashable zip
https://androidfilehost.com/?fid=6006931924117926089
PC Installer
https://sourceforge.net/projects/pi...ller/PB_Installer_20181014_ALPHA.zip/download[/INDENT]
XDA:DevDB Information
PitchBlack Recovery, Tool/Utility for the Asus Zenfone 5Z
Contributors
imajkej
Version Information
Status: Beta
Created 2019-07-29
Last Updated 2019-07-28
I want to flash your TWRP.
But always error.(error 1).
If I flash by another TWRP it will cash.
Please fix it.
I just want to disable dm-verity.
Please help me.
I don't want to format my data partition.
Have anything can I try.
Device:ZE620KL
Android: Android 9.0(1907.105)
EdwardWu6688 said:
I want to flash your TWRP.
But always error.(error 1).
If I flash by another TWRP it will cash.
Please fix it.
I just want to disable dm-verity.
Please help me.
I don't want to format my data partition.
Have anything can I try.
Device:ZE620KL
Android: Android 9.0(1907.105)
Click to expand...
Click to collapse
Ok, if you downloaded the zip file, find recovery.img and unpack it. Than just use fastboot as you would flash recovery for the first time but before that to be sure that everything works use "fastboot erase recovery" and than "fastboot flash recovery recovery.img"
Hope it helps.
imajkej said:
Ok, if you downloaded the zip file, find recovery.img and unpack it. Than just use fastboot as you would flash recovery for the first time but before that to be sure that everything works use "fastboot erase recovery" and than "fastboot flash recovery recovery.img"
Hope it helps.
Click to expand...
Click to collapse
Ok.
I will do that tomorrow.
And if it work or not,I will report it to you.
Is there any customs rom for our ZE620KL?
vembazaxxx said:
Is there any customs rom for our ZE620KL?
Click to expand...
Click to collapse
No.Just GSI images and fix hotfix packages.
EdwardWu6688 said:
No.Just GSI images and fix hotfix packages.
Click to expand...
Click to collapse
I have a booting lineage os zip but I have to fix some missing packages in vendor partition which is taking a long time. When there will be the q source available I am definitely going to put work into porting it for this phone. My work is available on GitHub under the same nickname.
imajkej said:
I have a booting lineage os zip but I have to fix some missing packages in vendor partition which is taking a long time. When there will be the q source available I am definitely going to put work into porting it for this phone. My work is available on GitHub under the same nickname.
Click to expand...
Click to collapse
Thanks~
I wish I can see the project soon.
By the way.
Last time I try your TWRP.
Use your tips,it can't work on my device.
(Android Pie)
Do you have any debugging TWRP can give me try?
And Your TWRP have to contain Chinese(traditional) language package?
Thanks your help.
EdwardWu6688 said:
Thanks~
I wish I can see the project soon.
By the way.
Last time I try your TWRP.
Use your tips,it can't work on my device.
(Android Pie)
Do you have any debugging TWRP can give me try?
And Your TWRP have to contain Chinese(traditional) language package?
Thanks your help.
Click to expand...
Click to collapse
what is the problem you are encountering? could you guide me somehow what is the problem? is it not booting at all or somethingg different?
imajkej said:
what is the problem you are encountering? could you guide me somehow what is the problem? is it not booting at all or somethingg different?
Click to expand...
Click to collapse
It can booting in.
I just can see the first logo,and it will cash.
And reboot soon.
EdwardWu6688 said:
It can booting in.
I just can see the first logo,and it will cash.
And reboot soon.
Click to expand...
Click to collapse
I dont understand. Could You describe it more precisely? does twrp made by shakalaca work?
imajkej said:
I dont understand. Could You describe it more precisely? does twrp made by shakalaca work?
Click to expand...
Click to collapse
Yes. Shakalaca's TWRP is work.
I'm come from Taiwan too.
Shakalaca is my friend.
I had meet he before.
Now I using(It can work) twrp-3.3.1-0-X00Q-20190801-security-patch-2019-07-01-AndroidP.img
Made by him.
---------- Post added at 04:11 AM ---------- Previous post was at 04:10 AM ----------
Sorry. My English is not great.
EdwardWu6688 said:
Yes. Shakalaca's TWRP is work.
I'm come from Taiwan too.
Shakalaca is my friend.
I had meet he before.
Now I using(It can work) twrp-3.3.1-0-X00Q-20190801-security-patch-2019-07-01-AndroidP.img
Made by him.
---------- Post added at 04:11 AM ---------- Previous post was at 04:10 AM ----------
Sorry. My English is not great.
Click to expand...
Click to collapse
ok, I do not know how to help You if you won't describe it more precisely. On my phone it works fine, and I have reinstalled it quite a few times.
imajkej said:
ok, I do not know how to help You if you won't describe it more precisely. On my phone it works fine, and I have reinstalled it quite a few times.
Click to expand...
Click to collapse
What's your system version?
EdwardWu6688 said:
What's your system version?
Click to expand...
Click to collapse
pie, latest stock version, had been working on previous, had been working with custom gsi's, had been working with my own kernel and without.
imajkej said:
pie, latest stock version, had been working on previous, had been working with custom gsi's, had been working with my own kernel and without.
Click to expand...
Click to collapse
I use the pie(1907.105).
I will try again on weekends.
Will it work on Zenfone 5Q - ZC600KL?
Thanks for your amazing work, I'm watching with a lot of attention your device tree building. If you want me to help, I would be glad to be with you!
ashye said:
Will it work on Zenfone 5Q - ZC600KL?
Click to expand...
Click to collapse
Nope, there are not such things as cross compatible recoveries.
Since I flashed the recovery I'm in bootloop and I can't do anything anymore.
recovery and bootloader work but I can't install stock firmware
should I flash the original recovery, but where can I find it?
I have the firmware UL-ASUS_X00QD-ASUS-15.0619.1810.73-1.1.26-user
taken from the asus website can I take it here? if so how?
thanks.
Risolto!!!!!
I installed this rom from twrp and it has done !!!
Stock firmware with removed device check: https://androidfilehost.com/?fid=1395089523397941607
Now I have discovered that the wifi and the fingerprint do not work. Is there a method to install a stock with twrp?

Categories

Resources