[guide][kk & lp] create your own modified ,twrp flashable stock rom - Zenfone 5 General

Hello everyone, this is a tutorial on how to make your own modified ,TWRP flashable stock ROM..
Downloads :-
META-INF KITKAT :- https://drive.google.com/open?id=0ByrZGmLZemEpdnVrS1lrcGJKVlU
META-INF LOLLIPOP :- https://drive.google.com/open?id=0ByrZGmLZemEpNzg5ZHppRWhKUGM
STEPS:-
1. Make a folder somewhere,say 'ROM'
2. Extract the META-INF folder from the zip and place it inside the 'ROM' Folder.
3. Then place the stock boot.img ,system folder of the stock rom and ifwi.zip file (you can get these from the official ASUS rom's zip file) and place it in the 'ROM' folder.
It should look like this:-
{
"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"
}
4.Then add these 4 files to zip (Compress it to zip format) using any archive manager like 7z, winzip ,etc. like this:-
View attachment 3822782
(I used 7zip for this, see the picture)
5. Now you can copy this zip into ur sdcard and flash it via twrp recovery .
------------------------------------------------------------------------------------------------------------
IMP. NOTE:- This guide works for Stock based roms only. Cyanogenmod roms are untested
For those who are willing to try it out on ROMs other than stock rom (and are 5.0+) use the Lollipop META-INF.
Again, it is untested on other ROMs. Please report if it works.
-----------------------------------------------------------------------------------------------------------
Debloating the ROM (Only for lollipop):-
List of apps that can be safely removed from the system/app and system/priv-app :- https://drive.google.com/open?id=0ByrZGmLZemEpZnRQangyQ3NBLXc
-----------------------------------------------------------------------------------------------------------
CREDITS:-
@milano88 for providing META-INF folder.
Me for this guide.
-----------------------------------------------------------------------------------------------------------
IF YOU ARE FACING ANY ISSUES, PLEASE COMMENT DOWN BELOW.
SUGGESTIONS ARE WELCOME
-----------------------------------------------------------------------------------------------------------
P.S. If you are modifying anything under updater-script, don't ask me anything.If you don't know what are you doing and are not sure of it, please don't do it. I am not responsible for any damage.
ENJOY

###RESERVED

I already made it and everything work good. Did you know how to flash system.img on updater-script in this zip? flash_osip system.img or write_raw system.img didnt work.
Sent from my ASUS_T00F using XDA-Developers mobile app

paktepu said:
I already made it and everything work good. Did you know how to flash system.img on updater-script in this zip? flash_osip system.img or write_raw system.img didnt work.
Sent from my ASUS_T00F using XDA-Developers mobile app
Click to expand...
Click to collapse
What u hv made it? guide or updater-script?
And i dont know how to flash system.img via updater-script
This Meta-INF is by @milano88 , i just made a guide since many people were asking for how to make a rom ,in PM.

paktepu said:
I already made it and everything work good. Did you know how to flash system.img on updater-script in this zip? flash_osip system.img or write_raw system.img didnt work.
Sent from my ASUS_T00F using XDA-Developers mobile app
Click to expand...
Click to collapse
you wont flash system.img using updater sript?

for image files in updater script try
Code:
package_extract_file("system.img", "/tmp/system.img");
flash_osip("/tmp/system.img", "system");
delete("/tmp/system.img");
or
Code:
package_extract_file("system.img", "/tmp/system.img");
run_program("/sbin/busybox", "dd", "if=/tmp/system.img", "of=/dev/block/mmcblk0p9");
delete("/tmp/system.img");
NOTE: system image must be in ext4 format not fastboot image

@prathmesh pande
I have made any files incl boot, droidboot, recovery, fastboot, ifwi, ota-zip flash success via twrp but failed on system.img
Sent from my ASUS_T00F using XDA-Developers mobile app
---------- Post added at 13:27 ---------- Previous post was at 13:23 ----------
milano88 said:
for image files in updater script try
Code:
package_extract_file("system.img", "/tmp/system.img");
flash_osip("/tmp/system.img", "system");
delete("/tmp/system.img");
or
Code:
package_extract_file("system.img", "/tmp/system.img");
run_program("/sbin/busybox", "dd", "if=/tmp/system.img", "of=/dev/block/mmcblk0p9");
delete("/tmp/system.img");
NOTE: system image must be in ext4 format not fastboot image
Click to expand...
Click to collapse
thanks a lot that what i need. I will try this on my updater-script
Sent from my ASUS_T00F using XDA-Developers mobile app

kihope12 said:
you wont flash system.img using updater sript?
Click to expand...
Click to collapse
yes bro
Sent from my ASUS_T00F using XDA-Developers mobile app
---------- Post added at 22:58 ---------- Previous post was at 22:55 ----------
Report from my exp
both code in updater-script to flash system.img didnt work. Still error.
Finally can manage it, following asus method on their zip.
Sent from my ASUS_T00F using XDA-Developers mobile app

paktepu said:
yes bro
Sent from my ASUS_T00F using XDA-Developers mobile app
---------- Post added at 22:58 ---------- Previous post was at 22:55 ----------
Report from my exp
both code in updater-script to flash system.img didnt work. Still error.
Finally can manage it, following asus method on their zip.
Sent from my ASUS_T00F using XDA-Developers mobile app
Click to expand...
Click to collapse
Why you dont flash system.img using fastboot? comand: fastboot flash system system.img
or just unpack your system.img to system folder, and then use stock ifwi, boot.img and this meta folder

kihope12 said:
Why you dont flash system.img using fastboot? comand: fastboot flash system system.img
or just unpack your system.img to system folder, and then use stock ifwi, boot.img and this meta folder
Click to expand...
Click to collapse
Yes i know it work on fastboot. I need to put this zip on my microsd. Whenever i need this, we just simple flash it through twrp.
I know we can make a backup system from twrp. But this is for my last backup.
And yes i can manage it by extract my sys img.
Sent from my ASUS_T00F using XDA-Developers mobile app

paktepu said:
Yes i know it work on fastboot. I need to put this zip on my microsd. Whenever i need this, we just simple flash it through twrp.
I know we can make a backup system from twrp. But this is for my last backup.
And yes i can manage it by extract my sys img.
Sent from my ASUS_T00F using XDA-Developers mobile app
Click to expand...
Click to collapse
So, what is the problem?

@prathmesh pande , nice work with this tutorial, I'm a TecnoTailsPlays friend (he abandoned xda for some reasons I think), he told me about you and the clean stock rom you made, I don't know very good how everybody here are (well, some guys are a bit rude, but ok), I am here on xda for a long time (but I din't have an account, I created this one a little time ago), I am making ZenUI 3.0 in a custom rom (cm 13) to be like an update for the lollipop that we have, I built the cm 13 miself (so no dev will be mad), it will be the update 4.11.50.97, it will also be a static Cm 13 (no cm updates) what do you think?

EletronicTech said:
@prathmesh pande , nice work with this tutorial, I'm a TecnoTailsPlays friend (he abandoned xda for some reasons I think), he told me about you and the clean stock rom you made, I don't know very good how everybody here are (well, some guys are a bit rude, but ok), I am here on xda for a long time (but I din't have an account, I created this one a little time ago), I am making ZenUI 3.0 in a custom rom (cm 13) to be like an update for the lollipop that we have, I built the cm 13 miself (so no dev will be mad), it will be the update 4.11.50.97, it will also be a static Cm 13 (no cm updates) what do you think?
Click to expand...
Click to collapse
Strange to hear tails abandoned ..
Ur idea seems to be nice ,u must give a shot..
And as per the rude persons are concerned, let them bark via words, just ignore it... See the good

EletronicTech said:
@prathmesh pande , nice work with this tutorial, I'm a TecnoTailsPlays friend (he abandoned xda for some reasons I think), he told me about you and the clean stock rom you made, I don't know very good how everybody here are (well, some guys are a bit rude, but ok), I am here on xda for a long time (but I din't have an account, I created this one a little time ago), I am making ZenUI 3.0 in a custom rom (cm 13) to be like an update for the lollipop that we have, I built the cm 13 miself (so no dev will be mad), it will be the update 4.11.50.97, it will also be a static Cm 13 (no cm updates) what do you think?
Click to expand...
Click to collapse
Good Luck man

Im using zenfone6 .Null baseband/imei after flashing .87

Related

TWRP CMD Installer for P6 V1.1.3

{
"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"
}
NOTICE: Go here for my newer tool here http://forum.xda-developers.com/showthread.php?p=52973530
ABOUT​This is a very simple CMD UI to install the TWRP (Jellybean and Kitkat) for the P6, as well as to revert back to stock recovery. There is also option to unlock bootloader, but I'm not very sure that it works.
Hope this makes flashing TWRP/Stock recoveries easier!
This is my first time making something for xda. I would be excited to hear any feedback or suggestions.
FEATURES
TWRP Installing for Jellybean, Kitkat B506, and OMNI ROM.
Reverting to stock recovery for Jellybean and Kitkat B506.
Entering into recovery.
Unlocking device (untested)​
REQUIREMENTS
Unlocked Bootloader (You can use this tool or install B506)
KITKAT B506 Based ROM
OMNI Based ROM
JELLYBEAN Based ROM
DRIVERS FOR HUAWEI P6-U06 or P6-U00
DOWLOADS
TWRP Installer V1.1.3b
TWRP Installer V1.1.3a
TWRP Installer V1.1.2
TWRP Installer V1.1.0
TWRP Installer V1.0.1
TWRP Installer V1.0.0
INSTRUCTIONS​Here are the steps:
1. Download file here. http://goo.gl/6nONyf
2. Extract the rar to desktop.
3. Run "TWRP_Installer.exe". I don't believe you need admin settings.
4. And just follow instructions on the screen from there.
WHAT IF MY PHONE WON'T BOOT?​Do not worry! Just follow the instructions below!
However, you will have to enter into fastboot mode manually before you use the tool. This is how:
1. Plug in your phone to a computer.
2. Press down power and volume(-) for 10 seconds, and wait for your device to turn off. Do not let go.
3. After you see Huawei logo for 2 seconds, release the power button.
4. After 5 seconds, release the volume (-) button.
5. This will enter into fastboot mode, and then you can continue to use the tool. From there, you would either:
a) Install Stock Kitkat/Jellybean Recovery, b) TWRP Kitkat/Jellybean
6. Enter recovery mode. If you choose stock recovery, download an UPDATE.APP and install the OS likewise. If you choose TWRP, download a custom rom, and install the OS likewise.
CREDITS​ @surdu, @TeamWin, @tauio111 .
Here is the OP of TWRP. Make sure you thank surdu for his hard work.
http://forum.xda-developers.com/showthread.php?t=2709353
Here is the OP for bootloader unlock. Make sure to thank tauio111.
http://forum.xda-developers.com/showthread.php?p=50741449
Here is the old work that I had posted. This gave me the thought to make the CMD installer.
http://forum.xda-developers.com/showpost.php?p=49986799&postcount=10
And don't forget to thank me of course:laugh:
If you repost my work, make sure to give credits to me.
SCREENSHOTS
CHANGELOG​2014-Apr-07 - V 1.0.0
Initial Release
2014-Apr-09 - V 1.0.1
Added Support For Jellybean
Added Bootloader Unlock
Added Boot.img Restore
2014-Apr-12 - V 1.1.0
Removed issue for external dll dependency
Removed .bat file dependency to avoid accidental executing
Move recovery.img, boot.img, adb.exe, fastboot.exe into another folder, easier to find TWRP_Installer.
2014-Apr-14 - V 1.1.2
Updated to newest surdu's 2.7.0.0 TWRP
Included boot.img OMNI and B506 for TWRP internal storage support
Fixed a bug issue with option 5 and 6
2014-Apr-24 - V 1.1.3a
Fixed an issue with option 1
2014-May-5 - V 1.1.3b
Added support to Windows XP
XDA:DevDB Information
CMD TWRP Installer, Tool/Utility for the Huawei Ascend P6
Contributors
bokchoi2020, surdu, tauio111
Version Information
Status: No Longer Updated
Created 2014-07-04
Last Updated 2014-07-04
thx
Curcio said:
thx
Click to expand...
Click to collapse
No problem! If I have time, next update I may include choice to install Jellybean Twrp and Jellybean stock!
OK, Update released!
To 1.0.1! More details in the OP thread!
My Phone is Stuck!
Please help,
My phone is stuck after i accidentally installed the OMNI boot image from this tool on the stock Kitkat B506. The problem is that "TWRP_Installer_1.0.1.exe" was not working, asking for some missing .dll. Then i just double clicked on "omni_boot_kitkat.bat" and without waiting for my input or confirmation, it went ahead and did something. Now i am stuck on the android logo. I don't have TWRP also. Please help me to bring the system back to normal.
-Majrul
majrul said:
Please help,
My phone is stuck after i accidentally installed the OMNI boot image from this tool on the stock Kitkat B506. The problem is that "TWRP_Installer_1.0.1.exe" was not working, asking for some missing .dll. Then i just double clicked on "omni_boot_kitkat.bat" and without waiting for my input or confirmation, it went ahead and did something. Now i am stuck on the android logo. I don't have TWRP also. Please help me to bring the system back to normal.
-Majrul
Click to expand...
Click to collapse
Click the stock_boot_kitkat.bat to revert to stock boot.img.
Or just do
fastboot flash boot boot.img
I will look into the issue with the dll library being missing.
Sent from my P6-U06 using xda app-developers app
bokchoi2020 said:
Click the stock_boot_kitkat.bat to revert to stock boot.img.
Or just do
fastboot flash boot boot.img
I will look into the issue with the dll library being missing.
Sent from my P6-U06 using xda app-developers app
Click to expand...
Click to collapse
I am unable to, because i am getting this error everytime:
error: device unauthorized. Please check the confirmation dialog on your device.
And there is nothing on the screen except an android logo. I am unable to do anything!
majrul said:
I am unable to, because i am getting this error everytime:
error: device unauthorized. Please check the confirmation dialog on your device.
And there is nothing on the screen except an android logo. I am unable to do anything!
Click to expand...
Click to collapse
Shoot.... but how is that possible?
When you install the omni boot.img, it requires usb debugging enabled, with RSA fingerprint from the computer to be whitelisted.
It installed, so clearly you had the RSA fingerprint whitelisted...
But now when you try to install the stock boot.img now it blacklisted the RSA fingerprint...
Ok, you can give this a shot but I'm not sure if it will work.
1. Get an SD card, put the B506 update on it.
2. Reboot into recovery with power and (+)(-) buttons.
3. Then reinstall the B506 update.
The update should replace the boot.img.
If it still doesn't work, do a factory reset/ partition wipe from the recovery.
I'm sorry for the inconvenience that this may have caused you.
I will look deeply into this issue.
Can u explain more? I don't get it
Sent from my GT-S7562 using xda app-developers app
Thy Boss said:
Can u explain more? I don't get it
Sent from my GT-S7562 using xda app-developers app
Click to expand...
Click to collapse
Basically my exe didn't start on his computer because I didn't compile the program with a static library. I'm going to fix that.
Then he went ahead and tried running one of my scripts, which installed the OMNI kernel. But he was using B506 stock, which then made his device not boot due to different ramdisk config.
I then suggest that he reflash the stock boot.img which I included in another batch file, but then the OMNI kernel asks for permissions for USB debugging.
His phone doesn't boot in the Android UI so he can't access the confirmation box that allows debuging.
He doesn't have TWRP, so he can't flash recovery boot.img that way either.
So now the only solution is to reinstall the ROM via UPDATE.APP.
Sent from my P6-U06 using xda app-developers app
bokchoi2020 said:
Basically my exe didn't start on his computer because I didn't compile the program with a static library. I'm going to fix that.
Then he went ahead and tried running one of my scripts, which installed the OMNI kernel. But he was using B506 stock, which then made his device not boot due to different ramdisk config.
I then suggest that he reflash the stock boot.img which I included in another batch file, but then the OMNI kernel asks for permissions for USB debugging.
His phone doesn't boot in the Android UI so he can't access the confirmation box that allows debuging.
He doesn't have TWRP, so he can't flash recovery boot.img that way either.
So now the only solution is to reinstall the ROM via UPDATE.APP.
Sent from my P6-U06 using xda app-developers app
Click to expand...
Click to collapse
Followed the steps, got the phone working back again, but unfortunately lost all the phone memory data like call logs and sms. I will request you to please modify this program so that it doesn't installs anything without user confirmation.
I was sincerely looking for such a tool. I thank you for your effort, i am sure you will take care of the changes immediately.
majrul said:
Followed the steps, got the phone working back again, but unfortunately lost all the phone memory data like call logs and sms. I will request you to please modify this program so that it doesn't installs anything without user confirmation.
I was sincerely looking for such a tool. I thank you for your effort, i am sure you will take care of the changes immediately.
Click to expand...
Click to collapse
Yes, thanks for your understanding. For next release I will try to integrate the bat files into the exe so no more accidental installation by the end user will occur. Maybe have a confirmation before the install.
majrul said:
Followed the steps, got the phone working back again, but unfortunately lost all the phone memory data like call logs and sms. I will request you to please modify this program so that it doesn't installs anything without user confirmation.
I was sincerely looking for such a tool. I thank you for your effort, i am sure you will take care of the changes immediately.
Click to expand...
Click to collapse
Ok, Update will be soon.
Changes include .exe working without external dll support, and no more bat files.
bokchoi2020 said:
Ok, Update will be soon.
Changes include .exe working without external dll support, and no more bat files.
Click to expand...
Click to collapse
That's great. Really appreciate your efforts. I am waiting to downloading it again..
Ok, I just updated it to 1.10! If there are any issues, please tell me!
Changes include removing the .bat files and making the .exe non-dependant on external .dll libraries.
The images are put into a sources folder to make using the tool more easier for end user.
bokchoi2020 said:
Ok, I just updated it to 1.10! If there are any issues, please tell me!
Changes include removing the .bat files and making the .exe non-dependant on external .dll libraries.
The images are put into a sources folder to make using the tool more easier for end user.
Click to expand...
Click to collapse
Yes twrp.exe work good. Not any error this time.
bokchoi2020 said:
Ok, I just updated it to 1.10! If there are any issues, please tell me!
Changes include removing the .bat files and making the .exe non-dependant on external .dll libraries.
The images are put into a sources folder to make using the tool more easier for end user.
Click to expand...
Click to collapse
Wow. Works perfect! Thanks a lot once again for such a nice tool!
Super travail
Un grand merci pour ce bon boulot , sa marche nickel , continu comme sa : O: O: O
olhamike said:
Un grand merci pour ce bon boulot , sa marche nickel , continu comme sa : O: O: O
Click to expand...
Click to collapse
Pas de probleme!
Desole si mon francais n'est pas bon.
Sent from my P6-U06 using xda app-developers app
Works fine for me and solved my problems.
Absolutely an useful application, thanks alot bro

[TOOLS] Bump Lollipop Kernel offline

Hi all ,
I want to share script for bump kernel.I have tested with D80230a/30d is working.
the original script from LG G3 thread [GUIDE][ROOT][BUMP][TWRP] Imageprep: Auto-script to Add Bump+TWRP for Rooted LG G3.The original script for install TWRP+Bump kernel for LG G3 .I modified the script for bump only
In bump.zip contain
- boot_bump
- boot_original
- tmp
- bump.sh
Instruction
1. Extract boot.bin from kdz firmware
2. Unzip bump.zip to bump folder
{
"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"
}
3. Put boot.bin into boot_original
4. copy bump folder to /sdcard/bump
5. Install Terminal Emulator app from play store
6. Open Terminal Emulator then use a command
$ su
# cd /sdcard/bump
# chmod 750 bump.sh
# sh bump.sh
Click to expand...
Click to collapse
PS.
- $,# is a command prompt
- After $,# is a command
After script have done,You can see bump kernel at
/sdcard/bump/boot_bump/lollipop-bumped-boot.img
All credit
@topet2k12001
http://forum.xda-developers.com/lg-g3/general/guide-update-to-lollipop-root-bumpd-twrp-t3048845
@Skin1980
http://forum.xda-developers.com/lg-g3/orig-development/fix-sharpening-mod-script-1-0-beta-t2957648
Thank you
All credits for @Skin1980 http://forum.xda-developers.com/showthread.php?t=2957648 and his live bump script
6ril1 said:
All credits for Skin1980 http://forum.xda-developers.com/showthread.php?t=2957648 and his live bump script
Click to expand...
Click to collapse
OK! ,Thank you.
Nice!
Happy modding!
6ril1 said:
All credits for @Skin1980 http://forum.xda-developers.com/showthread.php?t=2957648 and his live bump script
Click to expand...
Click to collapse
somboons said:
OK! ,Thank you.
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Yup, @Skin1980 is the original creator of "live bump + Sharpening Mod". Used with his permission and duly credited in my thread as well.
Works great!!! Tested on boot.img extracted from 39a kdz. Bumped good.
When you gonna make this Windows based????
MicroMod777 said:
Works great!!! Tested on boot.img extracted from 39a kdz. Bumped good.
When you gonna make this Windows based????
Click to expand...
Click to collapse
Next step I'm making tool for this run on windows but need connecting phone.
MicroMod777 said:
Works great!!! Tested on boot.img extracted from 39a kdz. Bumped good.
When you gonna make this Windows based????
Click to expand...
Click to collapse
There is already a bump-tool for windows in G3 forum
http://forum.xda-developers.com/lg-g3/general/bump-window-version-t2956829
tropenfrucht said:
There is already a bump-tool for windows in G3 forum
http://forum.xda-developers.com/lg-g3/general/bump-window-version-t2956829
Click to expand...
Click to collapse
@MicroMod777
Have you tried ? I have ued but not work for me.
Just drag and drop the boot.img (or recovery.img) on the bump.exe in windows explorer.
Worked for me on win7-64bit.
somboons said:
@MicroMod777
Have you tried ? I have ued but not work for me.
Click to expand...
Click to collapse
Last time I tried it wouldn't boot, but yours did.
Hi, question to OP:
so with this patch, we can use LP bootloader? or still must use KK or JB?
i see in script that kernel is unpacked, then packed back.... question is why?
did you know that BIN and IMG is the same thing?
just rename *.bin to *.img
it's will be written the same to raw partition.
any way. well done. will be needed soon for my builds.
dorimanx said:
Hi, question to OP:
so with this patch, we can use LP bootloader? or still must use KK or JB?
i see in script that kernel is unpacked, then packed back.... question is why?
did you know that BIN and IMG is the same thing?
just rename *.bin to *.img
it's will be written the same to raw partition.
any way. well done. will be needed soon for my builds.
Click to expand...
Click to collapse
I'm waiting your work.I think you will work to make kernel for G4 too when it commig
this is not my work, bin,img is a same.I don't change main code of owner.
sorry for the noob question....
if we bump the lollipop kernel,can we use earlier custom roms directly in LP bootloader?
or it is needed to downgrade the bootloader?
Varun800 said:
sorry for the noob question....
if we bump the lollipop kernel,can we use earlier custom roms directly in LP bootloader?
or it is needed to downgrade the bootloader?
Click to expand...
Click to collapse
Need to have kk or jb bootloader.
LP bootloader will not boot any custom kernels or recovery.
Sent from my LG-D802
https://raw.githubusercontent.com/berryman13/Open_Bump/master/open_bump.py
Here's a fork I took right before it was taken down.
Not that it'll be of much use. Still cant boot LP bootloader, meh..
---------- Post added at 03:16 AM ---------- Previous post was at 02:44 AM ----------
dorimanx said:
Need to have kk or jb bootloader.
LP bootloader will not boot any custom kernels or recovery.
Sent from my LG-D802
Click to expand...
Click to collapse
Yeah. That's really lame, such a bummer.... I took a look at the code myself, and it seems to want to support lolli but doesn't work with lollipop bootloaders/recoveries/kernels. At least on my D800.
---------- Post added at 03:17 AM ---------- Previous post was at 03:16 AM ----------
dorimanx said:
Need to have kk or jb bootloader.
LP bootloader will not boot any custom kernels or recovery.
Sent from my LG-D802
Click to expand...
Click to collapse
Yeah. That's really lame, such a bummer.... I took a look at the code myself, and it seems to want to support lolli but doesn't work with lollipop bootloaders/recoveries/kernels. At least on my D800.
Can this be modified to bump a twrp recovery.img?
MicroMod777 said:
Can this be modified to bump a twrp recovery.img?
Click to expand...
Click to collapse
No need to be modified it also works for recovery images. Ofcourse for JB/KK BL
@berryman13 It won't be taken down, especially after all those discussions it probably won't make any difference if it would be taken down as it's already wide on the web.
https://github.com/CyboLabs/Open_Bump/
wulsic said:
No need to be modified it also works for recovery images. Ofcourse for JB/KK BL
@berryman13 It won't be taken down, especially after all those discussions it probably won't make any difference if it would be taken down as it's already wide on the web.
https://github.com/CyboLabs/Open_Bump/
Click to expand...
Click to collapse
I have something even better! You know how CyboGenik or something posted this originally on xda and there was a huge explosion? Everybody was so pissed. Then he removed a few keys from it and republished the entire branch,
I got a fork of it early though
like immediately; before it was rebased. Compare the code, there's additional keys. PMing you.
berryman13 said:
I have something even better! You know how CyboGenik or something posted this originally on xda and there was a huge explosion? Everybody was so pissed. Then he removed a few keys from it and republished the entire branch,
I got a fork of it early though
like immediately; before it was rebased. Compare the code, there's additional keys. PMing you.
Click to expand...
Click to collapse
Interesting. Do these additional keys help bump on LP? On our LG G Pad 8" v480 and v400 we are completely locked down on LP. We can even unlock our tablets which does nothing while on LP. I've bumped twrp.img and it still give security boot error. Maybe your additional keys can help!

[ROM] [6.0.1] AICP 11_Stable for Huawei Honor 3c (H30-U10)

AICP 11_ANDROID ICE COOL PROJECT For Honor 3c (h30-u10)​Kernel Source: Stock Honor 3c
{
"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"
}
Intro: Like RR Remix, AICP 11 is an awesome rom based on CM13_6.0.1 and packed with lots of customization options and super performance. AICP is known by everyone as Ice Cold Project that started on Desire HD and since then evolved into a mature ROM with the BEST community you can find!!!
Rom Features :
#All CM13 Features + A boat load of features
***Awesome AICP 11 Boot Animation
What's Working:
#Camera
#Video recording in stock/google camera is working with 1080p.
#Ril, Dual SIM, USSD, SMS, Audio in calls, no more fc in dialer.
#Wi-FI, Bluetooth, Mobile Data, Hotspot.
#Audio, Mic
#All sensors ( proximity, accelerometer, rotation)
#Notification LED.
#Storages (SD and internal) [Mounting in both Phone and PC]
# Gapps, Youtube 720P_with patch
Known Bugs:
#GPS partially works... [The GPS detects your location when you're at one place (not moving) very accurately but when you move it doesn't work properly]
#VPN isn't working.. [May work with some third party apps]
#Changing mobile data mode from 3g to 2g doesn't work.
My contributions to this rom:
#Porting this rom.
#Fixing Sensors.
#Fixing LED bug.
#Increased Overall sound...
***More modifications coming soon with future builds...
Credits:
Ferhung, Fire855, Hyperion70, Diparth Shah, Ajit Guraya, Minh Quoc and Karim Gahgah, Aniruddha Adhikary, Team Roger That, nofearnohappy, Varun Chitre, Ariafan, Vald.masti, Alex
Thank you guys for compiling this rom...
ROM LINKS​Latest AICP_11 Rom:https://drive.google.com/open?id=0B3jAP5B2Fcq1R2Fvdl9VMFlqT1U
Gapps: https://drive.google.com/open?id=0B3jAP5B2Fcq1cmZVbDNrNG9pdnM
Youtube Patch: https://drive.google.com/open?id=0B3jAP5B2Fcq1MVlHTXROeDNvZ2M
***If you apply youtube patch only higher reolution of a youtube video will play smoothly.You won't be able to switch to lower resolution.
If you are satisfied with 360p, don't flash youtube patch.
Links to my other ported ROM: #CM13 : http://forum.xda-developers.com/android/development/rom-6-0-1-cyanogenmod-1320-04-2016-t3363980/post66492336#post66492336
# RR Remix 5.6.8 : http://forum.xda-developers.com/android/development/rom-ota-resurrection-remixv5-6-8stable-t3374493/post66747505#post66747505
PLZ DON'T MIRROR THIS POST OR THE ROM WITHOUT GIVING PROPER CREDITS
Installation Instructions​*Take a nandroid backup if you want to restore your previous rom, incase anything goes wrong.
1. Wipe cache, Dalvik cache, System, Data
2. Flash rom
3. Flash gapps right after flashing rom (important)
4. turn device off..
5. Extract boot.img from this rom.zip and flash it using SPFT. (important)
6. Start your device.
7. If the touch is unresponsive and no sim is detected then goto recovery and flash codelover's kernel swapper and modemfix.
[ I think modem fix doesn't work in cm13...if it works, you are lucky but if it doesn't work then copy "catcher_filter_1_wg_n.bin" and "modem_1_wg_n.img" file from your stock rom's system/etc/firmware folder and paste and replace these two files in cm13's system/etc/firmware folder] (if you change these files in the cm13 rom zip file then you don't need to change permissions. but if you are doing it with root explorer then don't forget to change their permission to rw-r-r)
9. Reboot the phone and wait for the cm13 to bootup. The rom should boot within 10 mins.
Enjoy
Screenshots Attached Below:
Pavel GPS partially working means the GPS detects your location when you're at one place (not moving) very accurately but when you move it doesn't work properly.
Sent from my Honor 3C using XDA-Developers mobile app
boss.tekkers said:
Pavel GPS partially working means the GPS detects your location when you're at one place (not moving) very accurately but when you move it doesn't work properly.
Click to expand...
Click to collapse
I have this similar hunch... but I wasn't quite sure. Do you have something/somekind of evidence/proof to back your statement, perhaps a simple steps by using somekind of diagnostic app? I felt it too when using any kinds of apps that utilize GPS, but I couldn't be quite sure where it did come from.
boss.tekkers said:
Pavel GPS partially working means the GPS detects your location when you're at one place (not moving) very accurately but when you move it doesn't work properly.
Sent from my Honor 3C using XDA-Developers mobile app
Click to expand...
Click to collapse
Thanks for your feedback bro..i'll add it in the rom description.
Sent from my Honor 3c using Tapatalk
First of all a huge thanks for you..
you are rocking by porting the new and fixing the bugs ur hardwork will never fail. I going to flash the rom sry to ask how about the battery life bro
Sent from my mt6582 using Tapatalk
popz1 said:
First of all a huge thanks for you..
you are rocking by porting the new and fixing the bugs ur hardwork will never fail. I going to flash the rom sry to ask how about the battery life bro
Sent from my mt6582 using Tapatalk
Click to expand...
Click to collapse
Welcome bro
I didn't have the time to install all of my apps in this rom. I had to go to versity, so i restored back to my previous rom.
I think this rom is faster and smoother than rr remix.
Plz leave your feedback about battery life after using this rom.
Sent from my Honor 3c using Tapatalk
sure bro
Sent from my mt6582 using Tapatalk
Vibration and then restart
Im Flashed this rom but Vibration and then restart does not boot uphelp mi??
South_Azarbijan said:
Im Flashed this rom but Vibration and then restart does not boot uphelp mi??
Click to expand...
Click to collapse
Did you flash boot.img using SPFT tool?
---------- Post added at 02:49 PM ---------- Previous post was at 02:48 PM ----------
Nice work Pavel. Much appreciated. I am currently testing your other Android 6 ported ROM.
x3r0.13urn said:
I have this similar hunch... but I wasn't quite sure. Do you have something/somekind of evidence/proof to back your statement, perhaps a simple steps by using somekind of diagnostic app? I felt it too when using any kinds of apps that utilize GPS, but I couldn't be quite sure where it did come from.
Click to expand...
Click to collapse
There must be some app to test this. I'll see and let you guys know of any test results.
hakneo said:
Did you flash boot.img using SPFT tool?
---------- Post added at 02:49 PM ---------- Previous post was at 02:48 PM ----------
Nice work Pavel. Much appreciated. I am currently testing your other Android 6 ported ROM.
Click to expand...
Click to collapse
I carefully did all the installation steps but Vibration and then restart does not boot up
South_Azarbijan said:
I carefully did all the installation steps but Vibration and then restart does not boot up
Click to expand...
Click to collapse
If you have TWRP 2.8.6.0 you can easily flash boot.img. Did you try that method?
Sent from my H30-U10 using XDA-Developers mobile app
So how do we multi window in this rom?
Sent from my H30-U10 using XDA-Developers mobile app
goku1234567890 said:
If you have TWRP 2.8.6.0 you can easily flash boot.img. Did you try that method?
Sent from my H30-U10 using XDA-Developers mobile app
Click to expand...
Click to collapse
I every way carfully doing gave's but again Vibration and then restart does not boot up
South_Azarbijan said:
I every way carfully doing gave's but again Vibration and then restart does not boot up
Click to expand...
Click to collapse
Open rom zip file and extract boot.img to your memory card. Go to recovery and make sure your current rom is backed up. Then go to wipe and do factory reset. Then go to install and flash this rom. Then flash the gapps provided in the first page. Then go to the install option in recovery and click "images" option then find the boot.img file you extracted earlier in your card and then flash boot.img only. And then your rom should boot up and start working in 10 min or so.
Sent from my H30-U10 using XDA-Developers mobile app
thanks you very much
Pavel Sajjad Khan said:
Welcome bro
I didn't have the time to install all of my apps in this rom. I had to go to versity, so i restored back to my previous rom.
I think this rom is faster and smoother than rr remix.
Plz leave your feedback about battery life after using this rom.
Sent from my Honor 3c using Tapatalk
Click to expand...
Click to collapse
thanks you very much, I want to know which rom are you using now, I want to flash a more stable rom you have ported, thanks
Hey just a quick update about this. Really loving this rom i usually dont like ported roms to our phone due to all the bugs and by far i haven't seen any. Really really smooth, camera and video works well too haven't given mobile data a test don't use it but to my extend you can use it. And battery life is nice too comparable to miui v7. All in all really a nice rom. Can be used as a daily driver.
Sent from my H30-U10 using XDA-Developers mobile app
goku1234567890 said:
Hey just a quick update about this. Really loving this rom i usually dont like ported roms to our phone due to all the bugs and by far i haven't seen any. Really really smooth, camera and video works well too haven't given mobile data a test don't use it but to my extend you can use it. And battery life is nice too comparable to miui v7. All in all really a nice rom. Can be used as a daily driver.
Sent from my H30-U10 using XDA-Developers mobile app
Click to expand...
Click to collapse
Thanks for your reply,I have flashed your rom Cyanogenmod 13 link in http://forum.xda-developers.com/and...20-04-2016-t3363980/post66492336#post66492336
but when i reboot my cell phone, the boot animation stay in screen until the battery was completely consumed. Now, I am waiting for your reply, I need an stable rom based on cyanogenmod, please recommend one to me, thank you very much
Hi Pavel,
The data connection is not valid.
Goes offline than turn it on again, but nope. The data connection still cannot turned on. Restarting the phone for several times also still persist.
goku1234567890 said:
Open rom zip file and extract boot.img to your memory card. Go to recovery and make sure your current rom is backed up. Then go to wipe and do factory reset. Then go to install and flash this rom. Then flash the gapps provided in the first page. Then go to the install option in recovery and click "images" option then find the boot.img file you extracted earlier in your card and then flash boot.img only. And then your rom should boot up and start working in 10 min or so.
Sent from my H30-U10 using XDA-Developers mobile app
Click to expand...
Click to collapse
thanks you very much Finally Solved:good::good:

[6045][6.0.1][Stock-based] Project MATERIAL

Hello everyone!
I shall not complicate things! xD
I present to you
{
"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"
}
.
.
.
*What about the features?*
Phew!
*Now show them some screenshots.*
Oh yeah,screenshots,those things!
Instructions too?
*Yeah...*
PS. Not my problem if you get your head stuck in a toaster!
And then the download button,right?
*............*
Guys,there is no music player,so I warmly suggest you install Phonograph.
Also,my favorite launcher and also a suggestion,ASAP Launcher
I FORBID anyone to use the wallpaper or any other thing I had my hands in WITHOUT MY PERMISSION in their work.
​
XDA:DevDB Information
Project MATERIAL, ROM for the Alcatel Onetouch Idol 3
Contributors
The Marionette
ROM OS Version: 6.0.x Marshmallow
Version Information
Status: Beta
Created 2016-07-13
Last Updated 2016-07-13
Reserved
1. In order to root the device,you need to download the latest version of SuperSU BETA:
http://forum.xda-developers.com/apps/supersu/2014-09-02-supersu-v2-05-t2868133
or if that doesn't work,download the 2.74 version:
https://download.chainfire.eu/964/SuperSU/BETA-SuperSU-v2.74-2-20160519174328.zip
Then enter TWRP and write this in the terminal:
Code:
echo SYSTEMLESS=true >> /data/.supersu
After doing that,flash the SuperSU zip.
2. Aaaaaaaand,for those who want dual sim enabled,flash this right after flashing the rom!
DOWNLOAD
3. Also,if you want to make sure your LTE/dual sim truly works,flash the variant-specific modem zip by famewolf!
Grab yours HERE
4. Not to mention the optional flashable zips of removed Alcatel apps(their icons have been themed into Material Design icons,do not fret! )
DOWNLOAD
5. Those who lost WIFI have to wipe everything(except the storage,of course),flash THIS zip and then flash the rom!
6. Repeating myself,but anyhow,here is a link to the post by famewolf for those who want to switch between fastboot capability and MM!
HERE​
Looks great. Download link?
Plus, I agree - ASAP Launcher rocks.
Sent from my 6045X using Tapatalk
The Marionette said:
In order to root the device,you need to download the altest version of SuperSU BETA:
http://forum.xda-developers.com/apps/supersu/2014-09-02-supersu-v2-05-t2868133
Then enter TWRP and write this in the terminal:
Code:
echo=SYSTEMLESS=true >> /data/.supersu
After doing that,flash the SuperSU zip.
Aaaaaaaand,for those who want dual sim enabled,flash this right after flashing the rom!
https://www.androidfilehost.com/?fid=24591000424946905
Also,if you want to make sure your LTE/dual sim truly works,flash the variant-specific modem zip by famewolf!
Grab yours HERE​
Repeating myself,but anyhow,here is a link to the post by famewolf for those who want to switch between fastboot capability and MM!
Aaaaaand,to be able to switch between fastboot capabilities and MM,go HERE[/B]
Click to expand...
Click to collapse
Good Job!
EDIT:Analyzed your DualSim.zip
Looks Like that you messed up with uploading..
Why are you adding folders which don't need and in your updater script there's lines to delete system apps.
Yeah. Looks awesome. A rom refined.
GAPPS included ? Seems yes in the screens, but never know. Thanks you @The Marionette for providing us such great work.
Also, as I've lost a few the discussion thread & issue with MM dev : My phone is 6045Y, in Europe. May I get problem with LTE or data network with that rom ? Also, would I be able to restore as usual if something goes wrong ?
Sorry if that has already been discussed, but so many answers about this, I couldn't stay up to date, above all when you're not spending your life on forums.
frankee207 said:
Yeah. Looks awesome. A rom refined.
GAPPS included ? Seems yes in the screens, but never know. Thanks you @The Marionette for providing us such great work.
Also, as I've lost a few the discussion thread & issue with MM dev : My phone is 6045Y, in Europe. May I get problem with LTE or data network with that rom ? Also, would I be able to restore as usual if something goes wrong ?
Sorry if that has already been discussed, but so many answers about this, I couldn't stay up to date, above all when you're not spending your life on forums.
Click to expand...
Click to collapse
Yep,yep,gapps are inside the rom.
As for LTE,look at the second post,I added a link to famewolfs variant specific modem download folder. Just flash the one for your variant before flashing the rom!
You can always restore over TWRP or over Mobile Upgrade Q,no need to worry. U.U
The Marionette said:
Yep,yep,gapps are inside the rom.
As for LTE,look at the second post,I added a link to famewolfs variant specific modem download folder. Just flash the one for your variant before flashing the rom!
You can always restore over TWRP or over Mobile Upgrade Q,no need to worry. U.U
Click to expand...
Click to collapse
OK
Yeah, just saw the link. How stupid I am
flash Before ? Not after ?
frankee207 said:
OK
Yeah, just saw the link. How stupid I am
flash Before ? Not after ?
Click to expand...
Click to collapse
Emm,for my 6045K,I flashed the modem zip before flashing the rom.
Alek Dev said:
Good Job!
EDIT:Analyzed your DualSim.zip
Looks Like that you messed up with uploading..
Why are you adding folders which don't need and in your updater script there's lines to delete system apps.
Click to expand...
Click to collapse
I made a universal flashable zip,and then I just add/remove files. Those empty folders don't affect anything as long as I don't put an app in them. You don't need to worry.
The Marionette said:
I made a universal flashable zip,and then I just add/remove files. Those empty folders don't affect anything as long as I don't put an app in them. You don't need to worry.
Click to expand...
Click to collapse
i send you Pm but anyway you reply here But updater script delete System Apps look it....
delete("/system/build.prop");
delete_recursive("/system/app/Browser");
delete_recursive("/system/app/Compass");
delete_recursive("/system/app/HoloSpiralWallpaper");
delete_recursive("/system/app/Newsstand");
delete_recursive("/system/app/TctCalculator");
delete_recursive("/system/app/TctNote");
delete_recursive("/system/app/TctWeather");
delete_recursive("/system/priv-app/Calendar");
delete_recursive("/system/priv-app/Dialer");
delete_recursive("/system/priv-app/DownloadProvider");
delete_recursive("/system/priv-app/Gallery");
delete_recursive("/system/priv-app/GalleryNext");
delete_recursive("/system/priv-app/JrdFota");
delete_recursive("/system/priv-app/JrdTag");
delete_recursive("/system/priv-app/Launcher");
delete_recursive("/system/priv-app/Mms");
delete_recursive("/system/priv-app/Music");
delete_recursive("/system/priv-app/MusicFX");
delete_recursive("/system/priv-app/Settings");
delete_recursive("/system/priv-app/TctCamera");
delete_recursive("/system/priv-app/TctEmail");
delete_recursive("/system/priv-app/TctExchange");
delete_recursive("/system/priv-app/TctFileManager");
delete_recursive("/system/priv-app/TctFMRadio");
delete_recursive("/system/priv-app/TctSoundRecorder");
delete_recursive("/system/priv-app/TimeTool");
delete("/system/media/shutdownanimation.zip");
delete("/system/media/audio/switch_on_off/Jumping_off.ogg");
delete("/system/media/audio/switch_on_off/Jumping_on.ogg");
Alek Dev said:
But updater script delete System Apps look it....
Click to expand...
Click to collapse
Woops,the wrong zip was modified! xD
Doesn't matter when you flash the modem zips as long as it's AFTER You've run mobile Q, the panasonic eluga software or you've flashed a rom that clobbered your radio.
Fixed the DUAL SIM zip. xD
The Marionette said:
Fixed the DUAL SIM zip. xD
Click to expand...
Click to collapse
Good....Little Suggestion.....It will be good to remove the partitions from ZIp which we don't need it ...To don't replace their modems..
Editn dialer doesn't works Reversible option...I had the same issues on SPB ROM so i think the problem it's changing icons.....
Edit1anorama crashes....
Edit2:There's Music app on Build...
Edit 3:It's really faster... but Sometimes apps like Tapatalk.Fb are crashing
New build online,the quirks(broken music player was still there,something needed to be left out of the zip)
Test it out and report back.
https://www.androidfilehost.com/?fid=24591000424946929
Was just about to flash v1, but I'll try out v2 instead. Downloading it right now.
So, theres no root access.
jerpd3rp said:
So, theres no root access.
Click to expand...
Click to collapse
Did you not read post #2?
http://forum.xda-developers.com/showpost.php?p=67731851&postcount=2
Welp I booted up and everything seems to be working as it should. I'm going to root and use systemless xposed and see what happens.
Update: For some reason supersu didn't flash as systemless even after doing the command in terminal so I'm starting over, but the v2 rom itself booted up just fine.
Welp v2 no issues, rooted/xposed systemless using v85.7 since 86.1 wasn't recognized by the xposed installer even though it installed systemless with no issues twice. Gonna see how long the battery lasts and thank you @The Marionette

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 ----------

Categories

Resources