[Detailed][Guide]Everything on Recoveries! - HTC Pico (Explorer)

{
"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"
}
If you've dealt with recovery software on your computer any, you probably already have a good idea of how this works and what it's all about. Out of the box, your phone comes with stock recovery software. It varies depending on the manufacturer, but all stock recoveries are essentially the same. They allow you to manually flash official updates and allow you to clear the cache on your phone. What they can do is very limited and in reality, not all that helpful.
Thanks to the genius Android developers out there, we have custom recoveries that replace the limited, unhelpful ones. These third-party, or aftermarket, recoveries add all sorts of functionality to the recovery software on your phone.
Types of recoveries available for pico:
TWRP TeamWin Recovery
ClockWorkMod Recovery 6.0.2.8
Explanation for all the recovery terms:
Reboot System:
It will reboot the device normally,you will boot into current ROM.
Apply Update from SD card:
Usually this option is used when,you got a official signed update,than u can flash it using this option.The update file must be named as "update.zip".It should be placed under the root of ur SD card i.e not under any folder,direct paste
Wipe Data/Factory Reset:
Factory resets your device,this will wipe off the /data partition.The /system & /sdcard partition won't be affected.It is always recommended to wipe data when you are flashing a custom rom. After yor factory reset,you will see startup wizards,which helps you to get started.
Wipe Cache Partition:
Wipes the cache partiton on your device.Cache files are those files which are stored by applications to speed up your phone(to loads games a bit faster) & to perform somewhat faster.You can clear up the cache to make your internal memory look better.
Install Zip from SD card:
This option allows you to flash any zip from your SD card.After you select this option,you will find a few more options,they are
-->Apply update.zip
It works same like apply update from sd card.
-->Choose zip from SD card
You can select the .zip file whichever you wanna flash.
-->Toggle Signature Verification
Ah,I too certainly dont know,what exactly it does.Well,recommended to keep it disabled(default=disabled)
-->Toggle Scripts asserts
Better leave it,if you don't know about recovery's search editfy scripts(same as I do :silly
Backup & restore:
Ah,Again you gonna get 3 more sub-options
-->Backup
If you have something heard about "nandroid" ,than its nothing but a system backup,known as nandroid!This will backup every single file present in your internal & external partition of your memory card(ext partition).The backup folder is stored on your sd card,path /sdcard/clockworkmod/backups.Recommended you copy the folder on your PC through USB~
If you wanna take nandroid,I have made a video over it here
-->Restore
Selecting the option will restore your backup uped ROM,the same as u backed it up!You,need to factory rest once before restoring the backup.
It is helpful when you are stucked on bootloops or soft bricked!
-->Advance Restore:
This is kinda for experts.It ask you to restore only the partition you want to.Suppose,youhave flashed a kernel,which aint booting up your device now ,you can restore /boot partition from your back uped ROM. And,enjoy booting it instead of reflashing the whole damn ROM.
Mounts & Storage
This option enabled you to mount/unmount any partition on your device.You can every format the partion(P.S one by one).The last option "Mount USB storage" allow you to transfer files from SD card to PC or a vice-versa.
Advance:
The most used option ! Gives you a few sub-options.
-->Reboot Recovery:
The phone will just reboot into recovery mode.Ah,this option is helpful,when the recovery doesn't do certain tasks,example,while u mount the data partition,it may happen that u wont able to unmount it again,so just reboot recovery,may help you at times(my personal experience)
-->Wipe Dalvik Cache:
Wipes the Dalvik Cache from your device,one deleted,it gets re-created,when u reboot your device,so booting it will take a more longer time than that of usual!So,don't panic!
-->Wipe Battery Stats:
Formats the file called batterystats.bin.In sort of calibrated your battery!Mainly done when you flash a new ROM!
-->Report Error:
Reports the error to the recovery team.
-->Key Test:
It tells you the number that has been allocated to any key on your phone.This is mainly used when u want to remap your hardware buttons,or just to check wetherthe system is registering the press of the button.Press the back button to exit the test.
-->Partition your SD card:
Creates second partition into your sd card.while one used for storing up the mediafiles,second partition can be used for increasing the RAM & internal memory.During this process it will ask you,how much space you are willing to give or internal memory that is ext size & RAM that is SWAP,SWAP works only if ROM supports it.
Note:The process formats everything on the sd card !
-->Fix Permission
It will fix permission gone wrong in internal stroage.It will fix some FC's(Force Closes) on the system apps or the the apps you converted into system apps but forgot to change the permissions!
Power off:
It will power off your mobile.

reserved

How to take screenshots on recovery mode
Special thanks to @vineethraj49 for teaching me with the help of portal on xda :good:
We,Just cant run the .bat file provided by wishley103 because it gives up errors,thats why we need to run these commands one by one
Steps to take screenshot on recovery mode through ADB:
Download this file --->http://www.mediafire.com/?xr1h6gb1z3cr3c5
Extract it over desktop
P.S Don't change the folder name!
Open cmd,direct it to the desktop folder(hope u know that,if don't,post is over),than type these comands :
Code:
adb shell
mount /data
exit
adb push fb2png /data/local
adb shell
chmod 755 /data/local/fb2png
/data/local/fb2png /data/local/fbdump.png
exit
adb pull /data/local/fbdump.png
What output you should get after taking the screenshot
Code:
bpp : 16
size : 307200
width : 320
height : 480
ARGB offset : 0 0 5 11
ARGB length : 0 5 6 5
Framebuffer Pixel Format: 1
Saved to /data/local/fbdump.png
Open the folder "screenshot",There you will find a file named "fbdump.png"! Voila,that is your screenshot!
View it through your image viewer!
So,here is the result!

Credits
Credits:
For the guide how to take screenshot in recovery mode @vineethraj49
For awesome work on screenshot zip @Whiskey103
For every blogger,I learned to write this thread :laugh:
legen_dary & Nihar.G for porting latest version of recoveries for our device !
None other XDA & Google :silly:

Thanks Rishik !
An extremely detailed and comprehensive guide
:good: :good:

red-devil said:
Thanks Rishik !
An extremely detailed and comprehensive guide
:good: :good:
Click to expand...
Click to collapse
Thanks,hope the real strugglers find it helpful! :victory:

Nice...
You could also add instructions on partitioning SD card, using ADB, Fix Permissions and other stuff too...
P.S.: Thanks for the credits

vineethraj49 said:
You could also add instructions on partitioning SD card, using ADB, Fix Permissions and other stuff too...
P.S.: Thanks for the credits
Click to expand...
Click to collapse
Yeah all done! :angel:

WOW! you deserve to be RC

russelldias said:
WOW! you deserve to be RC
Click to expand...
Click to collapse
Oh yeah? I feel too :silly:
Thanks,means a lot!

Couple of suggestions:
*Quick comparison of TWRP to CWM
*Brief description of installation proceedure
(You are probably planning on adding these anyway, but I figured I post them just in case...)

SifJar said:
Couple of suggestions:
*Quick comparison of TWRP to CWM
*Brief description of installation proceedure
(You are probably planning on adding these anyway, but I figured I post them just in case...)
Click to expand...
Click to collapse
Thanks for the suggestions..they are always welcomed by me! :victory:
Soon,gonnna work on it!

Related

[GUIDE]Crack Pattern/Password lock of Android without root and with USB Debugging off

Hello Fellas, I took some time off my tight studying schedule for exams() to share this trick with you
Reset Android Pattern/Password/Pin lock (without even root and USB Debugging Disable)​
PHP:
I am not responsible for your device being dead, you flashing stock ROM, you using your device as a brick, or any harm to any information, personal or intellectual property, terrorism, vandalism, theft, or any other thing by use or misuse of this mod.
This guide is for educational purpose only
Introduction
It sucks when you forget your passwords
But Gmail account can save you. But what for those who don't have it?
There are some methods to reset them
Wiping data being most popular
But, why loosing precious data when there is a easier or easiest to do method
This is a new method found and tested by me on a rooted device but the resources it uses are available to be used without root too, so it may work on unrooted devices too.
This method uses Aroma File Manager by amarullz in Recovery Mode of the device to delete the password database related files. So, it should work on all devices!
So, first you need to download AROMA FILE MANAGER from this thread :-​
Aroma File Manager​
Credits:-​
amarullz for Amazing Aroma File Manager
m.sabra for information about which files are related to passwords and pattern
Instructions:-
​
1. Download Aroma File Manager.
2. Place it in the root of your sdcard(Preferred)
3. Reboot into recovery
4. For CWM:
Mount all partitions (including sd-ext if you have it)
And flash Aroma File Manager from sdcard
For stock recovery(Samsung e3):
In stock recovery, there is no option to mount partitions, so
Flash Aroma File Manager, Click on menu option and go to settings
Select Mount All Partitions
Now, exit from Aroma File Manager and reflash it.
Now, you will see each partition is mounted
5. Now, go to /data/system
Note : If you have sd-ext mod to increase internal storage, go to /sd-ext/system/
6. Now, If you have to remove pattern lock, long press and delete gesture.key
If you want to remove password, delete password.key
7. Exit the Aroma File Manager
8. Reboot
9. Enjoy
very useful for those whose devices are not rooted
good job
or you can just flash a scipt that deletes the gesture or etc instead of flashing the file manager and look for the parts to be removed
by the way thanks for the guide.
jsarunotres said:
or you can just flash a scipt that deletes the gesture or etc instead of flashing the file manager and look for the parts to be removed
by the way thanks for the guide.
Click to expand...
Click to collapse
Exactly, Thank You for suggestion
:good:
Actually, people cover these topics in a very hard guide of commands when it can be easily achieved
BUMP
so...
what if we havent recovery?!
any solution for xperia series?
jing000l said:
so...
what if we havent recovery?!
any solution for xperia series?
Click to expand...
Click to collapse
If you have USB debugging on and ADB installed, then connect your phone to PC
And type
Code:
adb shell rm /data/system/gesture.key
If you get error like Read Only File System
Type adb remount and hit Enter and try again
I have samsung galaxy gt s5360
forgot pattern lock n dont know gmail id .. i dont wanna loose data its very imp data
so i got some guide to install AROMA Filemanager from recovery mode
but still there is a problem i have stock recovery mode
n i cant find install zip from sd card
i have already downloaded aromafm-1.90.zip and copied to sdcard
its very imp for me to unlock it without loosing data..
plz do help me
waiting .. thanks
kdoweb1 said:
I have samsung galaxy gt s5360
forgot pattern lock n dont know gmail id .. i dont wanna loose data its very imp data
so i got some guide to install AROMA Filemanager from recovery mode
but still there is a problem i have stock recovery mode
n i cant find install zip from sd card
i have already downloaded aromafm-1.90.zip and copied to sdcard
its very imp for me to unlock it without loosing data..
plz do help me
waiting .. thanks
Click to expand...
Click to collapse
Then it's very easy for you. Download CWM and install it and then do it
And BTW, it's "Apply update from sdcard" in stock recovery
Thanks for this. Technically you should get the option to reset the password with your gmail account after a certain amount of failed attempts but of couse this is not always the case.
On another note I hope this makes Google get on the ball with security if bypassing it is this easy.
Grilling g_ding's awesome GB27 TBSG4 v2.1 with a side of Exit Only's Project Direct Inject
kdoweb1 said:
I have samsung galaxy gt s5360
forgot pattern lock n dont know gmail id .. i dont wanna loose data its very imp data
so i got some guide to install AROMA Filemanager from recovery mode
but still there is a problem i have stock recovery mode
n i cant find install zip from sd card
i have already downloaded aromafm-1.90.zip and copied to sdcard
its very imp for me to unlock it without loosing data..
plz do help me
waiting .. thanks
Click to expand...
Click to collapse
Hello dear i have better methood for 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"
}
Samsung Android Pattern Password Pin Reset [No Root] - [No Usb Debug] - [Free]
its Really Very powerfull tools,all thanks belong to The Great //dawood1208//
link=http://www.mediafire.com/download/xh0d5pcmscd6lu5/Samsung+Lock+Reset.rar
All Without User Data Loss..
iamareebjamal said:
And BTW, it's "Apply update from sdcard" in stock recovery
Click to expand...
Click to collapse
It doesnt work on my Galaxy S3 mini.
I have Stock ROM and i try to flash with "Apply update from external storage"
i choose the "aromafm-1.91.zip" file.
But then i get the error "E: Signature verification failed"
what can i do?
greets
Ralf
triralf said:
It doesnt work on my Galaxy S3 mini.
I have Stock ROM and i try to flash with "Apply update from external storage"
i choose the "aromafm-1.91.zip" file.
But then i get the error "E: Signature verification failed"
what can i do?
greets
Ralf
Click to expand...
Click to collapse
Disable the signature verification
iamareebjamal said:
Disable the signature verification
Click to expand...
Click to collapse
Hi!
I cant. I dont have access to my device.
therefore i am looking for a solution to delete the gesture.key and the password.key.
is there another way to disable the verification.
ralf
triralf said:
Hi!
I cant. I dont have access to my device.
therefore i am looking for a solution to delete the gesture.key and the password.key.
is there another way to disable the verification.
ralf
Click to expand...
Click to collapse
You don't need access to device for disabling signature verification
There's option of disabling it in CMW
iamareebjamal said:
You don't need access to device for disabling signature verification
There's option of disabling it in CMW
Click to expand...
Click to collapse
I have a non-rootet Stock-Rom and i dont have installed CWM.
the workound just works with an installed CWM?
ralf
triralf said:
I have a non-rootet Stock-Rom and i dont have installed CWM.
the workound just works with an installed CWM?
ralf
Click to expand...
Click to collapse
If it's giving error as signature verification failed, then yes
My HTC m8 eye got pattern locked (Non rooted, stock ROM)
- Tried "AromaFile manager" Way using sd card (to remove patter.key file), using stock recovery, but when i select "apply zip from sd card" it gives following error
Code:
E:Find no math PARTITION: for package path /sdcard/ptt.zip
E:unknown volume for path []
E:Can't mount
E:failed to open last_install: No such file or directory
Finding update package...
Opening update package...
E:failed to map file
Even tried a new SD card, Same error.
Anyone can please help?
I attempted this before there was this guide but it didn't work. It said no such file :/
freworld said:
My HTC m8 eye got pattern locked (Non rooted, stock ROM)
- Tried "AromaFile manager" Way using sd card (to remove patter.key file), using stock recovery, but when i select "apply zip from sd card" it gives following error
Code:
E:Find no math PARTITION: for package path /sdcard/ptt.zip
E:unknown volume for path []
E:Can't mount
E:failed to open last_install: No such file or directory
Finding update package...
Opening update package...
E:failed to map file
Even tried a new SD card, Same error.
Anyone can please help?
Click to expand...
Click to collapse
Seems like bad recovery. Try a different one.

How To: Dual Boot Nokia X2

{
"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"
}
Nokia X2, is the last member of the Android powered Nokia X series (from Microsoft). The phone is hugely improved from the 1st generation Nokia X devices and tries to fix a lot of usability issues present in them, but unfortunately the X2 was not going to gain as much attention as they got. Especially because the market is flooded by smartphones from other manufacturers, targeting the similar price point. But there where some developer from Xda Forum and 4pda Forum brought support to it.
The developer has contributed their efforts and brought new ROM’s ad recoveries for Nokia X2. The contributors are @vm03, @zombah, @FrozenTears, @symbuzzer, @SonnySimon, @kaotd99, @HD2killers, @MasterYus, @Mazikaaa, @esam122333 & @yasat nokiax2 .
Recently a few days before symbuzzer and SonnySimon brought MultiBootloader kernel for Nokia X2. With this the user can use multiple ROM’s simultaneously on Nokia X2. Just need to select the ROM which you want to boot. So to use multibootloader follow the following steps.
First thing you need to do is that, you need to repartion your Sd card. For instruction check Post 2.
Next you need to install Multibootloader and flash ROM. For instruction check Post 3.
SOURCE- MyTechAlbum
XDA:DevDB Information
Dual Boot On Nokia X2, ROM for the Nokia X2
Contributors
x2wolf
ROM OS Version: 4.4.x KitKat
Version Information
Status: Stable
Created 2015-10-31
Last Updated 2015-10-31
How To: Repartition SD card
Repartition Your SD card:
Need to create 4 partition of the SD card for system, data,custom and media files.
1st partition as FAT32: for your media files (music, photo,etc…)
2nd partition as ext4 (minimum size: 500MB): for /system-ext
3rd partition as ext4 (minimum size: 500MB): for /data-ext
4th partition as ext4 (minimum size: 400MB): for /custom-ext
Steps To Repartition SD Card
Code:
[SIZE="4"]Warning! DO AT YOUR OWN RISK!
Repartition will delete all the data on the SD card. So before making partitions take backup of your data. AND IF ANY THING GOES WRONG DURING THIS PROCESS I AM NOT RESPONSIBLE FOR IT.[/SIZE]
We will be using MiniTool Partition Wizard for this purpose.
Download the MiniTool Partition Wizard from here and install
Use the following key to register. 38X8FPX3AMY3V53SMXKXPXY33CFCKUUP
Now connect your SD Card to your computer, and open MiniTool Partition Wizard.
Now right click on the SD card and select “Delete”.
Now again right click on SD card and select “Create”.
Now create 4 partition of the type and size stated above.
Click on the “Apply” button in the upper left corner.
A warning message will appear, click on “Yes”.
Wait for the process to complete.
After the process is complete, a successful message will be shown.
Now you have partitioned your SD Card and now you can move on to the part of flashing files.
Check This video for more information. https://www.youtube.com/watch?v=qYpbVbpkdKI
SOURCE- DUAL BOOT NOKIA X2
Install MultiBootLoader and Flash Roms
This step is the most improtant step before flashing ROM’s. Now we are ready to flash the MultiBootloader. This MultiBootloader can only be used for CyanogenMod 11 rom on your Nokia X2. So before flashing this install CyanogenMod 11 on your Nokia X2.
Code:
[SIZE="4"]WARNING!
* Your warranty is now void. * * I am 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 me for messing up your device, I will laugh at you.
[/SIZE]
Install MultiBootloader:
Copy KERNEL .IMG files to internal memory card/TWRP folder (/sdcard/TWRP)
Download the Kernel images from here.
Download MultiBootloader from here. (Updated to v1.20)
Extract it and open “installer” and wait till it boots to recovery.
So now when you boot up to device, it will ask to which kernel you want to execute.
You have installed multibootloader on CyanogenMod11 so if you want to to boot to ROM, select “nand_cm11”.
You can also install Multibootloader with Multibootloader Tool. You can download Multibootloader Tool from here.
Check this video for the guide- https://youtu.be/_Oup46dbw4A.
Flash ROM with NativeSD Support
To install the ROM on SD Card you need to flash ROM which have Native SD support. So here’s the list and download link for all NAND ROM’s and NATIVE SD ROM’s.
Code:
WARNING!
I have not yet tested the sd-ext ROM’s which i have made because during the process of repartitioning the SD card, due to my mistake my Memory card got corrupted. So could not test them till I buy a new SD card. If Someone is ready to take the risk and test the ROM then it will be helpful for everyone.
To install the ROM on SD Card you need to flash ROM which have Native SD support. So here's the list and download link for all NAND ROM's and NATIVE SD ROM's.
Check the video for information on Installing Nand And NativeSD ROM’s - https://www.youtube.com/watch?v=F4ChpNsAdQY
NAND ROM's
CyanogenMod 11 - Download Link
NokDroid - Download Link
FiUI Rom - Download Link
Xperience Rom - Download Link
LollipopMOD Beta - Download Link
NativeSD ROM
sd-ext_CyanogenMod11 - Download Link
sd-ext_NokDroid - Download Link
sd-ext_FiUI Rom - Download Link
sd-ext_XperienceROM - Download Link
Check this video if you are Flashing Cyanogen 12.1 Rom On Nokia X2.- https://www.youtube.com/watch?v=9EX22IZYdUc
SOURCE- DUAL BOOT NOKIA X2- MyTechAlbum
@x2wolf thanks for this guide. But there are several wrong instructions.
On v1.20, kernels are stored on TWRP folder not kernels.
Also on 1.20 can defend itself, so users can flash any rom zip with it. It won't delete.
If user flashes a mandatory based rom, he/she should select "Has Boot Image" option on TWRP's Install zip menu.
There are 2 native SD rom for now. Users can flash native SD ROMs zip directly. But I changed kernels path on 1.20. So you should copy it's kernels from kernels folder to TWRP folder manually.
Finally I developed a Android application (apk) which installs multibootloader without PC, can check MultiBootloader updates, download all kernels to right folder. I will release it today, I hope.
symbuzzer said:
@x2wolf thanks for this guide. But there are several wrong instructions.
On v1.20, kernels are stored on TWRP folder not kernels.
Also on 1.20 can defend itself, so users can flash any rom zip with it. It won't delete.
If user flashes a mandatory based rom, he/she should select "Has Boot Image" option on TWRP's Install zip menu.
There are 2 native SD rom for now. Users can flash native SD ROMs zip directly. But I changed kernels path on 1.20. So you should copy it's kernels from kernels folder to TWRP folder manually.
Finally I developed a Android application (apk) which installs multibootloader without PC, can check MultiBootloader updates, download all kernels to right folder. I will release it today, I hope.
Click to expand...
Click to collapse
Thanks for the information bro..
I had written guide based on First version of Multibootloader.
And didnt knew about the changes in V1.20.
Will Upate the guide.. Thank you again.
Good job bro
Thanks .... i wait this form long time
@Mazikaaa @Abood98
@x2wolf
bro can help me plzz
when i enter sd card and turn on phone .......... stuck in log in Nokia
wt is wrong ??
Abood98 said:
@x2wolf
bro can help me plzz
when i enter sd card and turn on phone .......... stuck in log in Nokia
wt is wrong ??
Click to expand...
Click to collapse
Is your memory card working fine??
Is it detected by Computer.
Remove the memory card and try to boot.
Reparation your SD card Again. Hope this helps you..
You can check this video for repartioning the SD card...https://www.youtube.com/watch?v=qYpbVbpkdKI
Yes ,Is it detected by Computer.
I ll try with other sd card .... later
Thanks for reply
Abood98 said:
Yes ,Is it detected by Computer.
I ll try with other sd card .... later
Thanks for reply
Click to expand...
Click to collapse
OK Bro...Comment The Result..
Here are Few Video Tutorials Which will help everyone.
1- How To Install MultibootLoader Using Multibootloader Tool - https://youtu.be/_Oup46dbw4A
2- How To Reparation Your SD Card - https://youtu.be/qYpbVbpkdKI
3- How To Install NAND and NativeSD ROMs using Mutibootloader - https://youtu.be/F4ChpNsAdQY
4- How To Install CM12.1 Using MultiBootLoader - https://youtu.be/9EX22IZYdUc
link dead need i a new one
can someone give me a link?

[UPDATED] [Recovery] [Unofficial] TWRP 3.1.0-0 for LYF Water 8 (LS5015)

Code:
#include
/*
* Your warranty is now void.
* YOUR Data will be wiped, BACKUP it FIRST.
*
* I am not responsible for any kind of DAMAGE happen to YOUR Device/bricked devices, dead SD cards, etc.
* Please use it at YOUR own risk.
*/
Hey friends :highfive: if you are waiting for TWRP Recovery for Marshmallow version of LYF Water 8.
Now that's the time to do that :laugh:
Requirements
Working Water 8 with Marshmallow
Recovery & Boot imgs
A Working PC with ADB and Fastboot Working
Guide Without wiping DATA
Flashing Instructions
Download the Recovery & Boot images
Enable Development options in YOUR Water 8 & open CMD type adb reboot bootloader if you don't know how to setup ADB & Fastboot files, watch my video:
fastboot flash boot boot.img
fastboot reboot bootloader
fastboot flash recovery twrp_3.1.0-0-20170627-UNOFFICIAL-LS5015.img
fastboot boot twrp_3.1.0-0-20170627-UNOFFICIAL-LS5015.img
Go to Wipe Menu and Select Format Data & type yes
After completing this press back & press Reboot then Recovery
After Booting into Recovery again press on Wipe and Slide the Factory reset Settings
Finally Press Reboot System
Downloads
twrp_3.1.0-0-20170627-UNOFFICIAL-LS5015.img, [Google Drive]
boot.img, [Google Drive]
Screenshots
{
"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"
}
Credit
TeamWin
Ferrari-Dev-Team
Details
Kernel: 3.10.49
Variant: Stable
Rom: MM Stock
Thank you very much for the twrp.its working perfectly no issues also internal is mounting thank you.hope you will make custom Roms also:good:
Ashley david said:
Thank you very much for the twrp.its working perfectly no issues also internal is mounting thank you.hope you will make custom Roms also:good:
Click to expand...
Click to collapse
Thanks bro I will try after some time
Sir,Can you find a custom rom and TWRP recovery for lyf water 3(LS-5503)
Subh1232 said:
Sir,Can you find a custom rom and TWRP recovery for lyf water 3(LS-5503)
Click to expand...
Click to collapse
Provide me your details and binary files
Sir,i need custom recovery for lyf water 3(LS-5503)
Mohd.faraz.abc said:
Hey friends :highfive: if you are waiting for TWRP Recovery for Marshmallow version of LYF Water 8.
Now that's the time to do that :laugh:
Requirements
Working Water 8 with Marshmallow
Recovery & Boot imgs
A Working PC with ADB and Fastboot Working
Guide Without wiping DATA
Flashing Instructions
Download the Recovery & Boot images
Enable Development options in YOUR Water 8 & open CMD type adb reboot bootloader if you don't know how to setup ADB & Fastboot files, watch my video:
fastboot flash boot boot.img
fastboot reboot bootloader
fastboot flash recovery twrp_3.1.0-0-20170627-UNOFFICIAL-LS5015.img
fastboot boot twrp_3.1.0-0-20170627-UNOFFICIAL-LS5015.img
Go to Wipe Menu and Select Format Data & type yes
After completing this press back & press Reboot then Recovery
After Booting into Recovery again press on Wipe and Slide the Factory reset Settings
Finally Press Reboot System
Downloads
twrp_3.1.0-0-20170627-UNOFFICIAL-LS5015.img, [Google Drive]
boot.img, [Google Drive]
Screenshots
Credit
TeamWin
Ferrari-Dev-Team
Details
Kernel:3.10.49
Variant:Stable
Rom:MM Stock
Click to expand...
Click to collapse
Sir, i need custom recovery for lyf water 3(LS-5503)
Achyuth Kumar said:
Sir, i need custom recovery for lyf water 3(LS-5503)
Click to expand...
Click to collapse
Try this guide and build yourself.https://forum.xda-developers.com/an...g/guide-how-to-port-twrp-to-qualcomm-t3420013
Is dere any custom rom available for water 8?
drsparsh said:
Is dere any custom rom available for water 8?
Click to expand...
Click to collapse
Yes there are some test builds.https://t.me/joinchat/Dzl3Kg35CyQL9k6WWurPBw join our telegram group
Pls help me, I'm using Lyf water3 ls5503 & need custom recovery mode I've searched all requires including XDA full site more than a lot of uses..
Sir, I need ls-5503 twrp
I have a mobile lyf water 8 ls 5015 with Android 6.1 marshmellow vendor updated I want to take NAND backup before rooting through loading twrp recovery in fast boot mode (fastboot recovery twrp.img) .
I tried with 3 twrp recovery Images listed below one twrp 2.8.4 recovery image original from twrp website and other two from XDA. Links given below but all giving same error of mount "0mb" storage in backup menu as not able to select any the destination drive for saving NANDROID backup system.img boot.Img data.img to store.
twrp backup menu destination storage 0 mb error
https://imgur.com/5z5a5
1.Twrp recovery 2.8.4 image original twrp website image
https://twrp.me/lyf/lyfmobee01a.html
2. Twrp recovery image for lyf water 8 Android 5.1 lolipop from XDA
https://forum.xda-developers.com/t/twrp-recovery-ls-5015-for-lyf-water-8.3626841/
3. Twrp 3.1 recovery image modified for lyf water 8 Android 6.1 marshmallow from XDA
after searching googling found that it's been encrypted and have to decrypt .The solution are as below with links
1. Solution Twrp mount Zero mb error screen lock pin solutions in appuals link
https://appuals.com/how-to-fix-twrp-unable-to-mount-storage-internal-storage-0mb/
Above link says
The first thing to try is if somehow your internal storage became encrypted when using a legacy screen lock method. Go to your Android
device’s Settings > Security > Screen Lock, and change your screen
lock method to either Pass or Pin. Create a new one. Reboot into TWRP,
and it should ask for a password – enter the pass or pin you just
created. TWRP will attempt to decrypt your device’s internal storage,
and if it succeeds, you should not have further issues. However, if
this does not solve your issue of “unable to mount data, internal
storage 0mb”, continue with the rest of this guide. Reboot your device
into TWRP again. Navigate to Wipe > Advance Wipe > Data, and choose
Repair or Change File System. Press Repair File System to see if this
fixes the issue. If not, continue. Press Change File System, choose
Ext2, and swipe to confirm. Now switch back to Ext4 and swipe to
confirm. Go back to TWRP main menu, then the Mount menu, and check if
your partitions can be mounted now. If you are still unable to mount
your partitions, you need to repair Internal partition, which will
most likely wipe your internal storage.
Click to expand...
Click to collapse
As suggested The password pin I put in screen lock is never asked if I boot the two recovery image k. Fast boot mode (fastboot recovery trwrp.img so solution didn't worked
2. Solution for Twrp recovery mount 0mb fix solution to wipe repair the file syste ext2 the. Extra in XDA
https://forum.xda-developers.com/t/...rnal-storage-0mb-in-twrp-permanently.3830897/
As above link says solution steps
This will wipe/format your Data partion and your data will be reset.
INSTRUCTIONS :
1) Reboot your device into TWRP Recovery.
2) Go to Wipe menu.
3) Go to Advance Wipe.
4) Select Data and go to Repair or Change File System.
5) Click Repair File System. (If not fix, go to step number 6)
6) Go to Change File System.
7) Select Ext2 and swipe to confirm.
8) Now change back to Ext4 and swipe to confirm.
9) Now go back and check if your partions can be mount or not from
Mount menu.
10) If not fix, repair your Internal partition. (This may wipe your
Internal storage).
OR Unlock your bootloader again.
Click to expand...
Click to collapse
As per wipe option I tried to repair the file system of /data or. External HDD card it gave following errors . As in. Screenshot below
twrp recovery wipe menu repair file system errors screenshot
https://imgur.com/cVrcc
Any solution for solving the two Mounting problem decrypting or converting file system any solution any expert can help

[Flashable ZIP] [Increase Memory] Xperia E3 Internal Storage Repartition

Greetings this is my first post here, so here we go
We all know that This phone has a tiny userdata partition size from the 4Gb Internal Size, about weeks ago i started to make that partition larger by Repartitioning it. So, after read some way from Android One thread, finally i did it, by resized the 3 partitions (system, cache & data) and made the userdata bigger. And now, imade the recovery script to install them easily
MAKE SURE YOU HAVE BACKED UP YOUR INTERNAL STORAGE AS WELL​I WILL NOT BE RESPONSIBLE IF YOUR PHONE DIES​PROCEED AT YOUR OWN RISK​IF YOU MESS UP, USE FLASH TOOLS TO FLASH ROM AND FIX ALL PROBLEM​
I made them by 3 Different Size, cause some ROM have different size and use way different size of System partition, so choose one of them that fit with the rom that you are about to flash after it Some zip make some ROM cannot be flashed via fastboot mode (e..g Lineage OS can only installed via fastboot when u are using stock or the third preset)
1. 760Mb System // 100Mb cache // 2,7Gb+ Userdata (Fit for any CM11 based Rom, Pico-Gapps, and some System Customization)
{
"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"
}
Click to expand...
Click to collapse
2. 1,3Gb System // 50Mb cache // 2,2Gb+ Userdata (Fit for any CM11 based Rom, Gapps, and more System Customization) (Fit for Stock Rom too with more Internal Storage )
Click to expand...
Click to collapse
2. 1,6Gb System // 200Mb cache // 1,7Gb+ Userdata (Just in case you want to revert it back without using Flashtool, this preset zip is close to stock partition )
Click to expand...
Click to collapse
Instruction to Install:
- Download the parted_binary_arm.zip and one of the repartition zip in the Attachment based on your choice
- Backup your data and internal sdcard as well (cause everything inside it will be destroyed!)
- Install the parted_binary_arm.zip first, then
- Install the Repartition zip file
- Then it will automatically reboot to recovery
- If you see some red lines in the TWRP logs (which happens sometime) just reformat system, cache and data partition by using the wipe option in the TWRP. (you can format it to any desired format as well. For e.g f2fs, ext4 and make sure the rom you will going to install is support those filesystem)
- And then to make sure everything is fine, reboot your phone to recovery once more and try to mount these partitions and look at the size
- After that, just flash the new ROM that fit with your system partition size and boot your phone as well
- See the difference :fingers-crossed:
Contributors
big thanks to @vinay for tester and helped me for everything
thanks @out386 for the original parted guide via adb
thanks to @forumber2 for the original repartition script via TWRP :highfive:
Feel free to ask, or PM me if you having some trouble :highfive: i also available at telegram :highfive:
Hit thanks if this helped :good:
Thank u! But i am using Lineage OS, how to install via fastboot?
PjKay said:
Thank u! But i am using Lineage OS, how to install via fastboot?
Click to expand...
Click to collapse
I am not sure, but you can try the 2.2gb internal repartion and take backup the /system of your lineage rom via backup option of your twrp before installing the repartition (Make sure you change the backup location to your external sdcard). And then restore it after finish the repartition
is that just for D2202??
otakuyasser1 said:
is that just for D2202??
Click to expand...
Click to collapse
It is meant for any 22xx. (2203, 2243, 2202, 2212 and 2206) I made a modification on @elmaleek03 script. It has a new scheme that is good for me. It has 2.5GB on /data, 1GB on /system and 50MB on /cache (cache cannot be shrinked more )
Original script by @forumber2 and modifications by @elmaleek03 (on OP)
and another mod by @jpzex (attached file)
EDIT: Just found that LineageOS didn't flash with 1GB on /system only. Do not use it if you want to use Lineage. It may be okay if you use CM11
Running in 2203, perfect !! Thank you!!!
otakuyasser1 said:
is that just for D2202??
Click to expand...
Click to collapse
I am using d2202 an its worked on me. Tester did it successfully on their d2212 and d2203. I haven't tried it on 2243 etc. U should try that so we all can know it ?
jpzex said:
It is meant for any 22xx. (2203, 2243, 2202, 2212 and 2206) I made a modification on @elmaleek03 script. It has a new scheme that is good for me. It has 2.5GB on /data, 1GB on /system and 50MB on /cache (cache cannot be shrinked more )
Original script by @forumber2 and modifications by @elmaleek03 (on OP)
and another mod by @jpzex (attached file)
EDIT: Just found that LineageOS didn't flash with 1GB on /system only. Do not use it if you want to use Lineage. It may be okay if you use CM11
Click to expand...
Click to collapse
Cool! U are learned the script well thx for ur participation should i add ur 2.5gb preset to the op?
Yeah, the lineage os only can flashed with stock / original (unmodified) internal partition scheme unless thomas share the flashable zip of lineageos for our device so we won't need using fastboot again for install the lineage
birdsilver said:
Running in 2203, perfect !! Thank you!!!
Click to expand...
Click to collapse
Yess, urwell glad to hear that
elmaleek03 said:
Cool! U are learned the script well thx for ur participation should i add ur 2.5gb preset to the op?
Yeah, the lineage os only can flashed with stock / original (unmodified) internal partition scheme unless thomas share the flashable zip of lineageos for our device so we won't need using fastboot again for install the lineage
Click to expand...
Click to collapse
Why ? Becaus :https://forum.xda-developers.com/showpost.php?p=73479700&postcount=169
And pleas my name is @infus38 (Thomas )
elmaleek03 said:
Cool! U are learned the script well thx for ur participation should i add ur 2.5gb preset to the op?
Yeah, the lineage os only can flashed with stock / original (unmodified) internal partition scheme unless thomas share the flashable zip of lineageos for our device so we won't need using fastboot again for install the lineage
Click to expand...
Click to collapse
NOTICE: Only "/system" partition needs to have its original size, for now. "/cache" can be shrinked to give its space to "/data". Probably on later builds it may change. The team is working on it. The goal is to use a 1,4GB "/system" partition and the rest is for "/cache" with 50MB and "/data" with 2.0GB.
Can you explain the procedure very clear.. Because im confused after flashing the zip files...i dont know what.is next?..
.
After installing the zip file
Reflash the stock rom via falshtool or just reboot after flashing the zip file...
And how to do the mounting thing in TWRP
.
So confused
Can it work on 4.4.4 firmware of d2212
rs130301 said:
Can it work on 4.4.4 firmware of d2212
Click to expand...
Click to collapse
Definitely
Repartition revert script
Hello guys! I made a repartition revert script thanks to GGonDue , @elmaleek03 and @forumber2. It may revert partition sizes to factory defaults. It must be used according to the OP post by @elmaleek03, you download parted-binary-arm.zip and then use the attached zip later.
Remember, it wipes /data, /cache and /system. You WILL need to restore from a backup or install a ROM afterwards.
jpzex said:
Hello guys! I made a repartition revert script thanks to GGonDue , @elmaleek03 and @forumber2. It may revert partition sizes to factory defaults. It must be used according to the OP post by @elmaleek03, you download parted-binary-arm.zip and then use the attached zip later.
Remember, it wipes /data, /cache and /system. You WILL need to restore from a backup or install a ROM afterwards.
Click to expand...
Click to collapse
Thanks for the Updates,,
Which ROM is stable for now on Sony Xperia E3 D2203????
Admin, Can't you make the system to be 1GB and increase the userdata?
because am using 4.4 stock ROM, and my system is almost 1GB.
9jabasewap said:
Thanks for the Updates,,
Which ROM is stable for now on Sony Xperia E3 D2203????
Click to expand...
Click to collapse
CM11 by FreeXperia works almost everything.
All wireless connections work. (I don't know about NFC)
Camera works
If you can't find, I have a link to it. Good luck
9jabasewap said:
Admin, Can't you make the system to be 1GB and increase the userdata?
because am using 4.4 stock ROM, and my system is almost 1GB.
Click to expand...
Click to collapse
There is one experimental repartition I made to use on my phone on CM11 ROM, as it is not that big, lots of space can be given to /data. But you can only use /data and /cache as ext4, f2fs cannot partition /cache because it is too small for it. Flashable is atrached.
Scheme is:
936MB /system
48MB /cache
2887MB /data
jpzex said:
There is one experimental repartition I made to use on my phone on CM11 ROM, as it is not that big, lots of space can be given to /data. But you can only use /data and /cache as ext4, f2fs cannot partition /cache because it is too small for it. Flashable is atrached.
Scheme is:
936MB /system
48MB /cache
2887MB /data
Click to expand...
Click to collapse
Thanks, Can it work on stock ROM. because am current stock ROM system back it 1GB plus.

[RECOVERY][MOD] MultiROM v33 + TWRP v3.1.1 for Xiaomi Mi MIX (lithium)

{
"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"
}
MultiROM is one-of-a-kind multi-boot mod. It can boot any Android ROM as well as other systems like Ubuntu Touch, once they are ported to that device. 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 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
* 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 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
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: Your device must NOT be encrypted (hint: if you don't know what it is, then it is encrypted).
To decrypt your device:
Backup ALL your data if you need to recover later (TWRP backup to USB or copy to your PC)
In fastboot mode:
Code:
fastboot format userdata
In TWRP: Flash Magisk (recommended) or SuperSU to avoid auto-encryption in next boot.
MultiROM has 2 parts you need to install:
Modified recovery (TWRP). Flash it as usual TWRP (fastboot flash recovery, or any flasher app if you're rooted).
MultiROM. Install it as usual zip from modded TWRP once flashed.
Go into TWRP MultiRom settings and be sure that "Enable No-KEXEC Workaround" is enabled (enabled by default)
Your current rom will not be erased by the installation.​Adding ROMs
1. Android
Go to recovery, select MultiROM -> Add ROM. Select the ROM's zip file and confirm. As for the space, clean installation of stock 6.x after first boot takes 900+mb of space.​
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 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 MultiROM -> List ROMs and select the ROM you want to update.
Select "Flash ZIP" and flash ROM's ZIP file.
MIUI ROM as Secondary <--- Latest versions fix this, so you shouldn't need it anymore
Install MIUI as secondary via MultiROM settings in TWRP
Boot into your (rooted) primary
Edit fstab.qcom file in /storage/emulated/multirom/roms//boot/ and add /cache partition entries:
Code:
/dev/block/bootdevice/by-name/cache /cache f2fs nosuid,nodev,noatime,inline_xattr,flush_merge,data_flush wait,check,formattable
/dev/block/bootdevice/by-name/cache /cache ext4 nosuid,nodev,noatime,barrier=1 wait,check,formattable
Alternatively you can use attached file "fstab.qcom.txt" (rename to: fstab.qcom without .txt ). Be sure to set proper permissions (copy from original fstab.qcom, after renaming to fstab.qcom.bak, don't delete it...)
DON'T FORGET to flash Magisk / SuperSU after flashing to avoid re-encryption if you're flashing stock (not modded).
Known issues
You must wait a few seconds (3-5) before you get touch screen responsiveness in TWRP and MultiROM. (fixed by 2017.08.01 build) -- USUAL WHEN SWITCHING FROM MIUI
Some FCs on some secondary ROMs: Try using multiromfix.zip, thx to @Startrek852 (to disable sdcardfs support in that secondary) -- USE MAGISK 13.5+
Issues with TWRP to boot on 4GB/128GB model... (Working on troubleshooting...) -- PRELIMINARY FIX HERE
Reporting issues
As you surely understand, a simply "it does NOT work" is not enough... so please, report your issue describing scenario as much as you can, try following this (as much as possible information is welcome, it's very tiring for me asking what this, what that, etc...):
Issue description (what, how, when, etc...)
Device model : 4GB or 6GB RAM
Decrypted? /cache and /data FSs ? (We assume IS decrypted becaues you're using MultiROM, and EXT4 FS for /cache and /data if you don't know or manually formatted to F2FS)
TWRP version + MultiROM version
Primary ROM (name, better with version)
Firmware version
Secondary ROM (the one with the issue, name and better version)
Custom kernel ? (name and version if so) <--- In theory, we shouldn't support scenarios with custom kernels.... (they can touch system stuff that make things more complex)
Xposed ? <--- Sorry we DON'T support MultiROM if you use Xposed
Google Apps (name, better with version)
Magisk / SuperSU (version and if you use it in Primary and/or Secondary and version)
Logs <--- This would be amazing great and helpful !!!! (you can get them via adb shell, terminal or using any tool)
*Original post and example in this post, please: ​
Download
You can download all stuff from here, where you can find latest TWRP and MultiROM. If you need to uninstall MultiROM, you can use this uninstaller.
MultiROM Manager (apk) available here.​
Source code
MultiROM - https://github.com/MultiROM-dev/multirom
Modified TWRP - https://github.com/multirom-dev/Team-Win-Recovery-Project
MultiROM device tree - https://github.com/BitOBSessiOn/android_device_xiaomi_lithium​
Special thanks to:
@Tasssadar for creating this awesome utility
@nkk71 for the No-KEXEC workaround
@AdrianDC and all MultiROM guys involved in its development
@jcadduono for TWRP port
We will have to try soon... It's the perfect set up for flashaholics
Great news [emoji847][emoji847]
Envoyé de mon MIX en utilisant Tapatalk
I can't make it work
fil0s0f0 said:
I can't make it work
Click to expand...
Click to collapse
The MultiROM app from market is only for official devices (I haven't updated the Android app, imo it's not very useful), So you must follow OP steps.
If you have some issue, please, describe your problem and we will try to help.
Keep in mind that you must have unlocked bootloader, decrypted device, etc...
Device decrypted, bootloader unlocked, and well, there is no instructionbon op but, I figure out and I'll leave my feedback
fil0s0f0 said:
Device decrypted, bootloader unlocked, and well, there is no instructionbon op but, I figure out and I'll leave my feedback
Click to expand...
Click to collapse
Yes, there are, please, revise OP, and describe which steps have you followed to find out what's your issue. Thx
provided TWRP wont boot into it after flash. shows some scrambled image, shows animation with MultiRom image but wont enter recovery
also command: fastboot flash userdata
gives this output
Superb, I missed it in this great smarphone
acasmc said:
provided TWRP wont boot into it after flash. shows some scrambled image, shows animation with MultiRom image but wont enter recovery
also command: fastboot flash userdata
gives this output
Click to expand...
Click to collapse
Sorry:
fastboot format userdata
I correct OP.
The TWRP is tested... I will revise.
BitOBSessiOn said:
Sorry:
fastboot format userdata
I correct OP.
The TWRP is tested... I will revise.
Click to expand...
Click to collapse
could it be, that while I'm encrypted TWRP will not work? flashed it with Rashr and fia Fastboot method. didnt work either way.
acasmc said:
could it be, that while I'm encrypted TWRP will not work? flashed it with Rashr and fia Fastboot method. didnt work either way.
Click to expand...
Click to collapse
Too weird... I've just downloaded and flashed again with rashr and ok.
Which model do you own (128/256)? Primary rom...?
TWRP must work ok with encrypted /data (but you need decrypted for MultiROM).
I'm on latest Miui China Beta Developer ROM (7.7.20), model is 128Gb/4Gb
Mr.Raines TWRP is working fine for me.
acasmc said:
I'm on latest Miui China Beta Developer ROM (7.7.20), model is 128Gb/4Gb
Mr.Raines TWRP is working fine for me.
Click to expand...
Click to collapse
Can you try some of older versions in testing or backup folder in n AFH, please...?
Can you take a photo of error if it still occurs...?
there is only one TWRP in your folder. can you point me to another. I'll try no worries
acasmc said:
there is only one TWRP in your folder. can you point me to another. I'll try no worries
Click to expand...
Click to collapse
You can see /bak and /testing folders here:
https://www.androidfilehost.com/?w=files&flid=201564
Great mod, I was been using Dual boot patcher app to boot into multiple roms(currently 5 roms). Hopefully this mod makes the things easier than before lol. I may give it a go when i feel a fully clean start. Thanks for providing the mod[emoji106]
Konsstantine34 said:
Great mod, I was been using Dual boot patcher app to boot into multiple roms(currently 5 roms). Hopefully this mod makes the things easier than before lol. I may give it a go when i feel a fully clean start. Thanks for providing the mod[emoji106]
Click to expand...
Click to collapse
Usually I don't start to develop for a device before I can use MultiROM....
BitOBSessiOn said:
You can see /bak and /testing folders here:
https://www.androidfilehost.com/?w=files&flid=201564
Click to expand...
Click to collapse
tried other two that are on that link. still the same. sadly don't have another phone with me, to take a picture.
guess gonna have to wait for an update. :/
BitOBSessiOn said:
Note 1: Your device must NOT be encrypted (hint: if you don't know what it is, then it is encrypted).
Click to expand...
Click to collapse
About encrypting, Is it enough to flash the "no-verity-opt-encrypt-5.1".zip?, And if its not, Is there a guide of how to encrypt my device?

Categories

Resources