Possible Move to SD for all optimums L9!!! - LG Optimus L9 P760, P765, P768, P769

ROOT REQUIRED!!!
Hey fellow members (and others), I found something very interesting inside the build.prop for the P769 v21d (Wind). Hopefully, the reverse of what I did/changed will work for all L9's
Okay this is what i found inside the build.prop
ro.lge.capp_move_sdcard=true
I changed it to
ro.lge.capp_move_sdcard=false
and it changed (removed) the Move to Sd option. (after a reboot of course)
I found this by comparing the v20d & v21b build.prop s. This line is not in the V20d. Hopefully if y'all add this line to the build.prop it will enable the Move to Sd option.
I haven't had the chance to try it on the v20d.kdz yet. I will post my findings later.
If anyone tries it, make sure you have a backup of the build.prop and CWM recovery before trying.
{
"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"
}
Sent from my LG-P769 using xda app-developers app
Update,
Well lol, it's going take more than a simple tweak in the build.prop to enable Move to Sd Card. It's in the kernel for sure :dope:
Adding this only enables the option but it doesn't work. It's going to take some more digging to truly enable it. Lol, yeah and I might as well port a Rom while I'm at it (being sarcastic).
Update
I was right a tweak in the build.prop can enable (a working!) Move to Sd Card (on some roms). I rooted and flashed the MetroPCS (V10B) over the Wind (V21B) and added the "ro.lge.capp_move_sdcard=true" to the build.prop (rebooted) and apps are moving to the SDCARD!

If i got this straight, does that mean that will the SD will remain as the principal memory? Finally like a normal phone? -_-

No, not in the way you are thinking, this is what the v21b P769 normally looks like
Sent from my LG-P769 using xda app-developers app

Mine has had this option after the official update.
Sent from my LG-P768 using Tapatalk 4 Beta

Yeah I've been trying to enable it for all L9's but I've been unsuccessful.
Sent from my LG-P769 using xda app-developers app

kuma82 said:
Yeah I've been trying to enable it for all L9's but I've been unsuccessful.
Sent from my LG-P769 using xda app-developers app
Click to expand...
Click to collapse
The LGMS769 now has the best of both worlds (T-MOBILE & WIND) WIFI CALLING & MOVE TO SD CARD
I'm not sure if something got left behind while flashing over the WIND version. What made me to believe that V10B had this option (move to sd card), is because the Wind & MetroPCS both have to same Build number (JZO54K)
I will try a hard reset later and see if the option is still working

kuma82 said:
The LGMS769 now has the best of both worlds (T-MOBILE & WIND) WIFI CALLING & MOVE TO SD CARD
I'm not sure if something got left behind while flashing over the WIND version. What made me to believe that V10B had this option (move to sd card), is because the Wind & MetroPCS both have to same Build number (JZO54K)
I will try a hard reset later and see if the option is still working
Click to expand...
Click to collapse
Can u post the build prop from the metro 10b i cant seem to download the backup. Thank u.
---------- Post added at 10:19 PM ---------- Previous post was at 09:38 PM ----------
Without kuma82 this would not be possible.
http://forum.xda-developers.com/showthread.php?t=2372172. Try this on all l9`s. Confirmed working on lg p769 with v20f .

Please Help
kuma82 said:
ROOT REQUIRED!!!
Hey fellow members (and others), I found something very interesting inside the build.prop for the P769 v21d (Wind). Hopefully, the reverse of what I did/changed will work for all L9's
Okay this is what i found inside the build.prop
ro.lge.capp_move_sdcard=true
I changed it to
ro.lge.capp_move_sdcard=false
and it changed (removed) the Move to Sd option. (after a reboot of course)
I found this by comparing the v20d & v21b build.prop s. This line is not in the V20d. Hopefully if y'all add this line to the build.prop it will enable the Move to Sd option.
I haven't had the chance to try it on the v20d.kdz yet. I will post my findings later.
If anyone tries it, make sure you have a backup of the build.prop and CWM recovery before trying.
Update,
Well lol, it's going take more than a simple tweak in the build.prop to enable Move to Sd Card. It's in the kernel for sure :dope:
Adding this only enables the option but it doesn't work. It's going to take some more digging to truly enable it. Lol, yeah and I might as well port a Rom while I'm at it (being sarcastic).
Update, I was right a tweak in the build.prop can enable (a working!) Move to Sd Card (on some roms). I rooted and flashed the MetroPCS (V10B) over the Wind (V21B) and added the "ro.lge.capp_move_sdcard=true" to the build.prop (rebooted) and apps are moving to the SDCARD!
Click to expand...
Click to collapse
I apologize for my ignorance on this subject, but this seems to be the thread I have been searching XDA for. I have a US T-mobile LG P769 with android 4.1.2, root access, superSU, and busy box installed. All I want to do is to be able to move my apps from the internal to external memory. I found some “Build.prop” editing apps but honestly I have little knowledge of what it is or does other than its similarities to windows registry editor.
Can you possibly point me in the right direction of an app and a “how to” on how to accomplish my meager task. Any info would be appreciated.

I'm not sure of an app but swap script worked for me. Thanks to @kuma82 , I'm not exactly sure where it is. I have v20f. But once you've found it on these forums you set the script at boot using a scripter app...then I used android tuner to move apps to internal memory, which should be your external sd card now thanks to the script.
Sent from my LG-P769 using xda app-developers app
#!/system/bin/sh
su
busybox mount -o remount,rw /
busybox mount -t vfat -o umask=0000 /dev/block/vold/179:61 /mnt/sdcard
if busybox mount | busybox grep vold/179:61; then
busybox mount -o bind /data/media /storage/external_SD
busybox rm /storage/external_SD/external_sd
busybox chmod -R 777 /mnt/sdcard/external_sd
fi
This is the script I used. Also I linked the memory of external and internal but not sure if that had anything to do with using my external sd card memory.

ODeezy2EZ said:
I apologize for my ignorance on this subject, but this seems to be the thread I have been searching XDA for. I have a US T-mobile LG P769 with android 4.1.2, root access, superSU, and busy box installed. All I want to do is to be able to move my apps from the internal to external memory. I found some “Build.prop” editing apps but honestly I have little knowledge of what it is or does other than its similarities to windows registry editor.
Can you possibly point me in the right direction of an app and a “how to” on how to accomplish my meager task. Any info would be appreciated.
Click to expand...
Click to collapse
Just flash my themed rom. I have everything you are asking for. Look at my signature for the link.
Also check out my second post on that thread.
You can setup link2sd but you may run into problems in the long run.
Sent from my LGMS769 using XDA Premium 4 mobile app

Related

[APP] Link2SD perfect for XT720

original topic here
http://forum.xda-developers.com/showthread.php?t=919326
just in case you miss it
this app is great for our phones with limited storage space
{
"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"
}
way better to use than App2SD App and/or the App2SD script that most of us are using with the XT720
Thumbs up To get Link2SD working the XT720...
Thanks to Riley600
I've worked with the developer and found the issue. Motorola phones can't mount the ext2 partition and need to install the ext2.ko file (this file is installed when you install app2sd).
Unfortunately, right now the steps are manual to install this (otherwise the apk would largely increase in size). But once this is done (you need root access, obviously), Link2SD will work. I used Root Explorer to copy ext2.ko to the necessary directory - however, I'm sure it can be done using adb commands. I'm not confident enough with my adb skills to give instructions based on that - so if someone else knows better than I, please feel free to give your own instructions.
1) Download the ext2.ko file (zip attached)
2) Extract it to your SD card
3) Use Root Explorer to navigate where you extracted it to and copy the file
4) Navigate to /system/lib/modules/ and paste the ext2.ko file there
5) Reboot - Link2SD should now mount the ext2 partition and function correctly!
Currently, if you link a file to the SD card, it will not show up in the Market until it is unlinked. The developer is looking into a solution for this. Otherwise, it's a solid program - I've left my Home Launcher (ADW) on the phone's memory which seems to have reduced stuttering and slowdowns from when it was installed on the SD card with app2sd.
I'll try to answer any other questions about the installation of this program on the XT720 if you have any.
Thanks to Bulent for working with me to find a solution to the issue with Motorola phones! ​
Attachment on post # 8 http://forum.xda-developers.com/showpost.php?p=10866898&postcount=8
How does one removed an already installed version of App2SD (via the script) and retain all their programs? I searched it and some people seem to indicate that you have to reflash your phone...
AllGamer said:
original topic here
http://forum.xda-developers.com/showthread.php?t=919326
just in case you miss it
this app is great for our phones with limited storage space
way better to use than App2SD App and/or the App2SD script that most of us are using with the XT720
Click to expand...
Click to collapse
Any tips on getting this to work? I tried setting up my SD card with both the "Mini free" tool & gParted live CD & the app won't recognize my ext2 partition.
same here I tried his new version too
Sent from my Milestone XT720 using XDA App
I have the same issue as the others. It says it can't mount my partition but it's there and worked with app2sd. Any suggestions?
So, is it not working?
raidontaro said:
So, is it not working?
Click to expand...
Click to collapse
Doesn't seem like it. I provided the developer with some info about our phone so hopefully he can use that to get it working with the XT720.
To get Link2SD working the XT720...
I've worked with the developer and found the issue. Motorola phones can't mount the ext2 partition and need to install the ext2.ko file (this file is installed when you install app2sd).
Unfortunately, right now the steps are manual to install this (otherwise the apk would largely increase in size). But once this is done (you need root access, obviously), Link2SD will work. I used Root Explorer to copy ext2.ko to the necessary directory - however, I'm sure it can be done using adb commands. I'm not confident enough with my adb skills to give instructions based on that - so if someone else knows better than I, please feel free to give your own instructions.
1) Download the ext2.ko file (zip attached)
2) Extract it to your SD card
3) Use Root Explorer to navigate where you extracted it to and copy the file
4) Navigate to /system/lib/modules/ and paste the ext2.ko file there
5) Open an adb shell with super user (su) permissions and run the following command:
Code:
insmod /system/lib/modules/ext2.ko
6) Reboot - Link2SD should now mount the ext2 partition and function correctly!
It's a solid program - I've left my Home Launcher (ADW) on the phone's memory which seems to have reduced stuttering and slowdowns from when it was installed on the SD card with app2sd.
I'll try to answer any other questions about the installation of this program on the XT720 if you have any.
Thanks to Bulent for working with me to find a solution to the issue with Motorola phones!
I've made small change in the application and released 1.0.5. What I did for Motorola users is to add insmod line to install-recovery.sh script if /system/lib/modules/ext2.ko file exists.
In this way all you have to do manually is to copy ext2.ko file to modules directory and then install link2sd.
You can install latest version from the app thread.
Thanks to Riley for his contribution.
nice i'll try this when i get home in about 20 mins... ur the men... lol
I havent tried apps2sd, but this seems like an very creative app that i'll have to give a try
bakpinar said:
I've made small change in the application and released 1.0.5. What I did for Motorola users is to add insmod line to install-recovery.sh script if /system/lib/modules/ext2.ko file exists.
In this way all you have to do manually is to copy ext2.ko file to modules directory and then install link2sd.
That means first four steps in Riley's instruction are sufficient, after these you can install link2sd-1.0.5 and start using.
You can install latest version from the app thread.
Thanks to Riley for his contribution.
Click to expand...
Click to collapse
Instructions updated - thanks Bulent
I've no idea if it is due to the fact that my SD card is malfunctioning, but after following steps I still received the error when I open the app. So I ran the install-recovery.sh script through terminal apparently and got the below message
Any ideas?
# sh install-recovery.sh
insmod: init_module '/system/lib/modules/ext2.ko' failed (File exists)
mount: No such file or directory
#
Sent from my Milestone XT720 using XDA App
hardKNOXbz said:
I've no idea if it is due to the fact that my SD card is malfunctioning, but after following steps I still received the error when I open the app. So I ran the install-recovery.sh script through terminal apparently and got the below message
Any ideas?
# sh install-recovery.sh
insmod: init_module '/system/lib/modules/ext2.ko' failed (File exists)
mount: No such file or directory
#
Sent from my Milestone XT720 using XDA App
Click to expand...
Click to collapse
Did you set up a ext2 partition on your SD card? You need both a Fat32 partition and a ext2 partition. Instruction on how to set that up on your SD card are here:
http://forum.xda-developers.com/wiki/index.php?title=SD_card_partitioning
Once you do that and then follow my instructions with the ext2.ko I posted here, it should work (it did for me).
Riley600 said:
Did you set up a ext2 partition on your SD card? You need both a Fat32 partition and a ext2 partition. Instruction on how to set that up on your SD card are here:
http://forum.xda-developers.com/wiki/index.php?title=SD_card_partitioning
Once you do that and then follow my instructions with the ext2.ko I posted here, it should work (it did for me).
Click to expand...
Click to collapse
Yeah formatted the card as fat32 and gave 900mb for ext2 partition (both as primary ) with the recommended software. I'll try it with another SD. Thanks for ur help.
Sent from my Milestone XT720 using XDA App
Strange, not sure what the problem is then.
New xt720 user here, i havent done the app2sd and froyo jit yet but was planning of doing it til i found this thread. If installing link2sd requires you to unistall the app2sd how do I install the jit as instructed here http://forum.xda-developers.com/showpost.php?p=7909401&postcount=52
basically i want to install links2sd and jit, would it be a whole new process?sorry for my ignorance.
allahmar said:
New xt720 user here, i havent done the app2sd and froyo jit yet but was planning of doing it til i found this thread. If installing link2sd requires you to unistall the app2sd how do I install the jit as instructed here http://forum.xda-developers.com/showpost.php?p=7909401&postcount=52
basically i want to install links2sd and jit, would it be a whole new process?sorry for my ignorance.
Click to expand...
Click to collapse
You just need to select the menu item for JIT and not Apps2SD from the numerical list the script presents you.
Riley600 said:
Strange, not sure what the problem is then.
Click to expand...
Click to collapse
check this out... this is what i've found in the directory /dev/block/vold through adb
Code:
pwd
/dev/block/vold
# ls -l
ls -l
brw-rw---- root root 179, 1 2011-01-25 10:04 179:1
brw-rw---- root root 179, 0 2011-01-25 10:03 179:0
#
i guess my ext2 partition is 179:1, should i edit my install-recover.sh file for this?
Edit: didn't work, i guess my ext2 partition is not being recognized. i'll try to find a linux machine and see if i can partition with Gparted
Odd, did you put the ext2.ko file in the correct directory? I was running into similar problems until I had the file in the directory noted and then the command to install it.
Thanks
Works perfect I checked yesterday. Greetings from Guatemala. Sorry for the English but the Google translator xD.

Swapper [Root Users] Reduce Lag and Save Ram

So what is Swap?
A swap file allows an operating system to use hard disk space to simulate extra memory. When the system runs low on memory, it swaps a section of RAM that an idle program is using onto the hard disk to free up memory for other programs. Then when you go back to the swapped out program, it changes places with another program in RAM. This causes a large amount of hard disk reading and writing that slows down your computer considerably.
I can say Swap file is like Virtual Memory on your PC.
New Info:
For those who struggle with the Free on terminal Emulator, the swapper will still work. Here is the simple Instruction. Just make as 100-128mb Swap then put it to 50 swappines, reboot and done.
The Swapper can Work on Many Devices. I tested it on Neo V, Arc S and Samsung Galaxy SII
Just to make sure it supports this kind of Feature. Free to try it, its harmless.
Requirements:
-Any Rom- (Tested on Acronium 4 and I-Scream)
-Custom Kernel- (Tested on KGT and Xarc Kernel)
-300+ sdcard space-
-Terminal Emulator-
Source: Google Play
or Attached File
Start:
Download the Swapper2 and install.
Click Here
2. Go to terminal emulator type "Free" without the Quotation.
Make sure you see "0" on the Swap
{
"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. open swapper2 go to Setting, Swap size=32 MB, Swappiness=60. (You can Play on the numbers you want I just displayed a Default Swap Settings.)
Go Advanced preferences check "Recreate swap file" and "Reformat swap" then exit...
4. Open Swapper2 click ON it will show some Fail.
Just wait for few secs or mins and it will continue. If not, Click the ON again.
5. Go to terminal emulator type free and you will see that the "0" has been replaced.
Hit thanks if you think I helped.
Note:
This just give Everyone Idea that Swapfile is working without Partitioning your SD cards.
Reserved
Notes:
Risk Free..
Enable/Disable Swap
Safe SD Card
Free to experiment what Numbers is suitable on your Settings.
The swap file Works well when your system Ram went low that can help Handling Running Process and Multitasking.
---
Update.. 0.1
---
For those who cannot do the do the Swap due to Kernel Issue
Here is a new way without using the Swapper 2
SOLUTION: How to make simple ZRAM init.d script
1. Using Root Explorer, got to /sytem/etc/init.d/
2. press Menu then create new file
3. paste these in it
Code:
#!/system/bin/sh
sysctl -w vm.swappiness=60
echo '1' > /sys/block/zram0/reset
echo $((60*1024*1024)) > /sys/block/zram0/disksize
mkswap /dev/block/zram0
swapon /dev/block/zram0
Click to expand...
Click to collapse
4. close and save it as 99zram
5. set permission to 777 or "rwxrwxrwx" (tick all)
6. take note: 60*1024*1024 = 60MB zram disksize. if you want to set 30MB, change 60 to 30.
Thanks.
I will be Unavailable for a Moment. Im creating my own Custom Kernel
Does it risk ?
danisariandi said:
Does it risk ?
Click to expand...
Click to collapse
Nope, I didn't wipe any data..
You can Enable and Disable Swap anytime
Unfortunately, this doesn't work on the stock kernel as we don't have the ramzswap module. But as I mentioned here it looks like it could be compiled as a loadable module if someone was willing to do it. Any takers?
How to disable it ?
Sent from my LT15i using xda premium
danisariandi said:
How to disable it ?
Sent from my LT15i using xda premium
Click to expand...
Click to collapse
There is an option Run Startup. when checked/uncheked.
Or just uninstall the app. its disabled.
XTCrefugee said:
Unfortunately, this doesn't work on the stock kernel as we don't have the ramzswap module. But as I mentioned here it looks like it could be compiled as a loadable module if someone was willing to do it. Any takers?
Click to expand...
Click to collapse
Yes, I used Xarc kernel. Somehow It doesn't work with other kernel. They can use the zram instead.
I would love this but I'm on stock kernel. Can I use module from other thread or is anyone able to make loadable module?
How does your "Running services" look after swap? (edit: oh I can see in your signature... nice I want this on stock kernellll :S)
Will it work on ArcKnight ?
This causes a large amount of hard disk reading and writing that slows down your computer considerably.
Click to expand...
Click to collapse
Umm can you explain it more, since if it slows down... ?
I've learned that this may harm SD card, is it true ?
On stock 4.1.b I have access to swap in emulator. The file gets created permissions get set. Formating works. Everthing except the start command swapon works. Just thought I'd share what was happening on stock lt15i so we can hopefully get this running on stock to help us lck BL people lol.
Thx for the idea. Seems better than supercharge.
Sent from my LT15i using xda app-developers app
Patambiz said:
Yes, I used Xarc kernel. Somehow It doesn't work with other kernel. They can use the zram instead.
Click to expand...
Click to collapse
In the OP you say that it was tested on ICS stock...
I'm on ICS stock and I noticed a lag reduction and a lower working temperature when multitasking is taking place
A placebo effect??
I used another app and get this file.
Sent from my LT18i using Tapatalk 2
KradEdis said:
In the OP you say that it was tested on ICS stock...
I'm on ICS stock and I noticed a lag reduction and a lower working temperature when multitasking is taking place
A placebo effect??
I used another app and get this file.
Sent from my LT18i using Tapatalk 2
Click to expand...
Click to collapse
Great.. What app you use instead?
wth_is_life said:
Will it work on ArcKnight ?
Umm can you explain it more, since if it slows down... ?
I've learned that this may harm SD card, is it true ?
Click to expand...
Click to collapse
I haven't tested it on Arc Knight. No it will not harm your SD card. its just make file image. Im having this on my 16gb sd card and having no problem. SD class also matter for performance.
DID NOT WORK WITH ME
I TRIED MANY TIMES
AND THAT IS THE LOG
http://dl.xda-developers.com/attach...68/5024c455/1/2/5/2/6/7/3/20120810111901.jpeg
Patambiz said:
Great.. What app you use instead?
Click to expand...
Click to collapse
Although it creates the script, the fact that the stock kernel is swap locked doesn't allow that same script to run.
I got this report...
But I must say that it was quite odd seeing this cause during the time I had the app installed onbthe phone it lagged alot less and the usual high temperature reached when playing a game or browsing the internet didn't occur.
A true mistery...
Oh... I used Swapper for root.
Sent from my LT18i using Tapatalk 2
Ok for those who have Zram Enabled on their Kernel. I have updated the thread at 2nd post with the zram swap.
Thanks.
Patambiz said:
Ok for those who have Zram Enabled on their Kernel. I have updated the thread at 2nd post with the zram swap.
Thanks.
Click to expand...
Click to collapse
How can I know if I have Zram Enabled on my present kernel?
Sent from my LT18i using Tapatalk 2
Patambiz said:
Ok for those who have Zram Enabled on their Kernel. I have updated the thread at 2nd post with the zram swap.
Click to expand...
Click to collapse
The stock kernel doesn't have zram either. Nor of course is zram a 'real' swapfile, it's just a compressed area of ram.
Unless you want this thread to be full of posts just saying "swapon doesn't work" or "function not implemented", if I were you I'd change the text of your first post to say that this is only for devices with unlocked bootloaders using custom kernels.
XTCrefugee said:
The stock kernel doesn't have zram either. Nor of course is zram a 'real' swapfile, it's just a compressed area of ram.
Unless you want this thread to be full of posts just saying "swapon doesn't work" or "function not implemented", if I were you I'd change the text of your first post to say that this is only for devices with unlocked bootloaders using custom kernels.
Click to expand...
Click to collapse
Thank you for answering me.
Sent from my LT18i using Tapatalk 2

[recovery] twrp 2.8 OFFICIAL INTERNATIONAL

Team Win Recovery Project 2.8, or twrp2 for short, is a custom recovery built with ease of use and customization in mind. We started from the ground up by taking AOSP recovery and loading it with the standard recovery options, then added a lot of our own features. It’s a fully touch driven user interface – no more volume rocker or power buttons to mash. The GUI is also fully XML driven and completely theme-able. You can change just about every aspect of the look and feel.
{
"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 WORKS***
EVERYTHING and it's been made OFFICIAL
MAKE SURE YOU GET THE CORRECT VERSION'S I WILL NOT BE TO BLAME IF YOU FLASH THE WRONG ONE
READ THIS IF YOU FLASH THE RECOVERY AND THEN ASK ME QUESTIONS I WILL POINT YOU TO THIS THREAD OR EVEN IGNORE YOU
READ REGARDING ADB IN RECOVERY
TWRP IRC CHANNEL
DOWNLOAD
DOWNLOAD ---- MY BUILD
Thanks to
The TWRP GUYS
and football for his ruu's so i can get the img's i need
and milestoner for confirming it works
Mr anon
and all the following people
orb3000
morphly
hasoon2000
hasan_abeer
vogi
chrigel2000
AndroHero
ectodroid
[email protected]
Anon #1
Ixz
bboerny
Anon #2
Anon #3
sellers86
Wik
Anon #4
simonsimons34
caedanne
flipside101
morphly
bboerny
TWRP WEBSITE
**INSTRUCTIONS**
Download the file
then either use HASOON'S toolkit
or
Manual method
reboot into bootloader
fastboot flash recovery TWRPrecovery.img
SIDELOAD INSTRUCTIONS
MarylandCookie said:
I had the same issue and fixed it via adb sideload.
I have uploaded the latest binaries to my dev host account.
1. Download and extract these to a directory and copy the rom over into the same directory.
2. Boot up your phone into twrp recovery.
3. Select advanced and adbsideload (Your phone will be waiting for the file transfer.)
4. Open command prompt in the above directory you created with the binaries and rom.
5. Issue command "adb devices" (You should get the serial number with sideload next to it)
6. Finally issue command "adb sideload rom.zip" (rom.zip will be the name of your rom)
This will start sending your rom to the handset and will automatically install.
Hope the above helps
Link to Binaries:
ADB Binaries
Click to expand...
Click to collapse
Code:
CHANGELOG
19/11/12
Last unofficial build (all builds forward are official direct from TWRP)
AT&T added
data/media sorted
-----------------------------------
Build 1 16/11/12
1st build
LET ME KNOW OF ANY PROBLEMS
any feedback on this guys?
Wow. I didnt even see this. I couldve added it to my toolkit lol. ill wait til people say if it works and then ill add. Thanks Lloir!
if it work's i'll talk to dees_troy about making it official
So it's still untested? I would like to install it but I'm afraid it will brick my phone somehow..
Edit: Flashed it but I can't seem to browse through the sdcard, just the internal system (/sdcard vs /sdcard1) where the app/system etc. is located.
thecompany said:
So it's still untested? I would like to install it but I'm afraid it will brick my phone somehow..
Edit: Flashed it but I can't seem to browse through the sdcard, just the internal system (/sdcard vs /sdcard1) where the app/system etc. is located.
Click to expand...
Click to collapse
meh thanks dude, i'll look into this more when i get the HOX+
locking thread for now
Got a report that this is working fine, the sdcard is under /sdcard/media so it works perfect!
thanks milestoner for pointing this out!
Does this work with At&t HTC one X+?
Sent from my HTC One X+ using xda premium
samomamo said:
Does this work with At&t HTC one X+?
Sent from my HTC One X+ using xda premium
Click to expand...
Click to collapse
Now it does
Sent from my One V using Tapatalk 2
Just a few comments:
- can't mount SD Card in Recovery (or at least can't access to it)
- backup/nandroid is saved in (SDCard - DATA) / TWP
and not in (SDCard - DATA)/media, so can't access to the back-up
Steve0007 said:
Just a few comments:
- can't mount SD Card in Recovery (or at least can't access to it)
- backup/nandroid is saved in (SDCard - DATA) / TWP
and not in (SDCard - DATA)/media, so can't access to the back-up
Click to expand...
Click to collapse
cant access it from TWRP? or? i cant test sdcard mount as linux is being a *****, but it looks like it mounts fine, i have a nandroid and i can see it to restore......
*edit*
nevermind see what you mean, i'll sort it for the next build
I can confirm that mount points are borked at the moment. While in recovery the sdcard can be found in /sdcard/media. Backing up seem to work ok but backups are insanely huge (6.6GB for a compressed backup!). This is probably because everything including the whole sdcard is backed up. While TWRP itself finds the backups just fine, when android is running they are located in /data/TWRP. I haven't tried to restore a backup yet.
I'm a little bit worried about what will happen later if I try to restore one of my backups that are made with the current TWRP version. Will the fixed version recognize and correct the mixed up mount points of the current version? If not, I can forget about all of my current backups .
---------- Post added at 01:18 PM ---------- Previous post was at 01:10 PM ----------
Just two more minor details: Time and battery values displayed at the top of TWRP are wrong. The battery stays put at 66% and time is shifted by a couple of hours.
Thanks again for your work!
milestoner said:
I can confirm that mount points are borked at the moment. While in recovery the sdcard can be found in /sdcard/media. Backing up seem to work ok but backups are insanely huge (6.6GB for a compressed backup!). This is probably because everything including the whole sdcard is backed up. While TWRP itself finds the backups just fine, when android is running they are located in /data/TWRP. I haven't tried to restore a backup yet.
I'm a little bit worried about what will happen later if I try to restore one of my backups that are made with the current TWRP version. Will the fixed version recognize and correct the mixed up mount points of the current version? If not, I can forget about all of my current backups .
---------- Post added at 01:18 PM ---------- Previous post was at 01:10 PM ----------
Just two more minor details: Time and battery values displayed at the top of TWRP are wrong. The battery stays put at 66% and time is shifted by a couple of hours.
Thanks again for your work!
Click to expand...
Click to collapse
yea the battery thing is a pain, time you can set yourself...the fstab is fine, it's other settings i need to sort out, just working on the AT&T one and then i'll sort this one out
@LIoir
you wont belive it but HTC ONE X+ source code for Kernel is out (sorry for writing it here), so i can start to look into it !
I will try to push the source to github tonight, so you can also have a look into it and if you still wont to, we can work together on it
Op updated!
Lloir said:
Op updated!
Click to expand...
Click to collapse
ATT FTW!!!! Unfortunately the link is dead. Thank you for your wonderful efforts none the less
sparkplug619 said:
ATT FTW!!!! Unfortunately the link is dead. Thank you for your wonderful efforts none the less
Click to expand...
Click to collapse
woops was a typo
http://cyano-rob.tuennerhoff-edv.de/RECOVERY/TWRP/evitareu/recovery.img
there's the link also link is fixed in the OP
Lloir said:
woops was a typo
http://cyano-rob.tuennerhoff-edv.de/RECOVERY/TWRP/evitareu/recovery.img
there's the link also link is fixed in the OP
Click to expand...
Click to collapse
If this works, can an AT&T user make a nandroid and upload the boot.img and system?

[BOOT ANIMATION] DROID Ultra Boot Animation

DROID Ultra Boot Animation for DROID DNA
OPTIMIZED FOR DROID DNA
*Should work on any DNA ROM (see installation instructions below).
**ADDED: 2 DROID Ultra-inspired wallpapers also in the downloads section
THANKS:
--Nitroglycerine33, for the server space
--artur0588, for the Ultra system dump found HERE
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
{
"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"
}
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
This package includes:
- Boot Animation
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
INSTALLATION:
SENSE ROMs:
-use a file manager with root access (ES file explorer) to copy and paste into the system/resource/customize folder.
-rename to just vzw_bootup.zip (rename the original boot animation to bak_vzw_bootup.zip in case you want to go back)
-REBOOT and enjoy
AOSP ROMs:
-use a file manager with root access (ES file explorer) to copy and paste into the system/media folder (or data/local).
-rename to bootanimation.zip (rename the original boot animation to bak_bootanimation.zip in case you want to go back)
-REBOOT and enjoy
**IF YOU HAVE ISSUES GETTING THE ANIMATION TO WORK, MAKE SURE THE FILE'S PERMISSIONS ARE SET TO -rw -r -r **
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
AS ALWAYS...I AM NOT RESPONSIBLE FOR ANYTHING THAT HAPPENS TO YOUR PHONE AS A RESULT OF USING THIS CONTENT, JUST AS IT IS NO ONE ELSES FAULT FOR ANY DAMAGE I MIGHT DO TO MINE. IF YOU DO NOT KNOW THE RISKS INVOLVED, YA MIGHT JUST BE BETTER OFF STICKING WITH STOCK. It's not that complicated, just do a little research. Plenty of knowledge floating around...
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
DOWNLOADS
DROID Ultra Boot Animation for DROID DNA 14.47 MB
------------------------------------------------------------
DROID Ultra Data Wallpaper
DROID Ultra Carbon Wallpaper
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Don't be afraid to use the THANKS/LIKE button
will this work on.....
lol
sorry couldn't resist
ashclepdia said:
will this work on.....
lol
sorry couldn't resist
Click to expand...
Click to collapse
lol thanks for knockin that one out early
Sent from my HTC6435LVW using Tapatalk 4
Sick boot animation,for the last droid made by htc!
Sent from my HTC6435LVW using xda app-developers app
Thanks for this. Looking great on NOS 3.0.6. So much better than that 'HTC One' boot screen.
Sent from my HTC6435LVW using XDA Premium 4 mobile app
Good lookin out bro!
wish it had a sound too like the default droid dna boot animation
I have tried and tried and tried over and over again with installing this animation as well as others and I haven't had a single bit of luck. I am rooted and using Nos m7 ROM with Sense 5.0. I tried an easier way of doing it with an app on the market and was able to get a couple animations to work that way BUT they were to small and I deleted them and got rid of the app. I even went in with es file explorer and removed them. I have read and watched everything I can on how to do this and when I put the file where I'm suppose to and reboot I don't get the animation that I should. Some of the animations I flash fail and won't work at all. I can give anyone who helps me out a step by step account of exactly what I have done and do in order to get a new boot animation. I'm just at a loss because this should have worked by now.
Work Great on the Nos Rom 3.0.7 GSM
Thanks you
How did you get it to work? That's the Rom I'm running!
CoyotesFan4Evr said:
How did you get it to work? That's the Rom I'm running!
Click to expand...
Click to collapse
It must be the file name because you are on gsm...try renaming it to bootanimation.zip and put in system/customize/resource
Sent from my dlx using Tapatalk
I renamed it that already. I just can't put it in that directory. I don't know why but I can't get it in that directory. I've put it everywhere else that should have worked and I got nothing. Oh just remembered something. I get permission denied. Unless I need to rename it and then place it in that spot. I'll try that and go from there.
CoyotesFan4Evr said:
I renamed it that already. I just can't put it in that directory. I don't know why but I can't get it in that directory. I've put it everywhere else that should have worked and I got nothing. Oh just remembered something. I get permission denied. Unless I need to rename it and then place it in that spot. I'll try that and go from there.
Click to expand...
Click to collapse
that's because system isn't mounted as RW. Are you using ES file explorer?
- click on top left button (looks like a globe with a phone in front of it)
-scroll down to where it says Root Explorer. Make sure that is on.
- click on Root Explorer (not the toggle on the right, click to the left of it, on the word "Root".
- go to Mount RW
- make sure "/system" is checked as RW
Sent from my dlx using Tapatalk
OOOOO pretty, thanks bro.
I have done everything exactly as instructed and have read everything on the subject that I can find. I still can't get it work unless I use this app I found called boot animations. I have renamed the file I want to use and I have gone in and changed the directory to being RW. Nothing works. It keeps going back to either the stock one with the ROM I'm using, or one of the ones I had downloaded but deleted(I'm guessing I didn't find all of it so that's why it keeps going back to it). I'm stumped and frustrated at this point. I'm currently using the CM10 animation because I found that one on the app and it works full screen like it should. For now I'm throwing in the towel.
CoyotesFan4Evr said:
I have done everything exactly as instructed and have read everything on the subject that I can find. I still can't get it work unless I use this app I found called boot animations. I have renamed the file I want to use and I have gone in and changed the directory to being RW. Nothing works. It keeps going back to either the stock one with the ROM I'm using, or one of the ones I had downloaded but deleted(I'm guessing I didn't find all of it so that's why it keeps going back to it). I'm stumped and frustrated at this point. I'm currently using the CM10 animation because I found that one on the app and it works full screen like it should. For now I'm throwing in the towel.
Click to expand...
Click to collapse
The file permissions must be set to -rw -r -r
Check that, also. That's the last thing I can think of...
Sent from my dlx using Tapatalk
That was the very last thing I did before trying it again. I still can't get it work. Like I said...the towel has been thrown in.
Wait...I just restarted my phone and....for no real reason at all other than I got rid of some extra boot animations and then moved the ones I need into a file that was already named by the system as boot animations. It suddenly worked when my phone rebooted. I'm in total surprise and shock right now. Perhaps it was defaulting to the one I had downloaded because I had to many named bootanimation.zip and as it searched the system it just picked the first one it came to? My thing is why wouldn't it do that in the first place when I got rid of everything but the stock one that came with the ROM I'm running? Oh well....I must say the boot animation is pretty cool in motion right in front of me. Now I'm thinking I'll run that one for a bit and then see what else I can find.
CoyotesFan4Evr said:
That was the very last thing I did before trying it again. I still can't get it work. Like I said...the towel has been thrown in.
Click to expand...
Click to collapse
You set permissions for that file, or for /system?
2 different things, just making sure.
Sent from my dlx using Tapatalk
I did it for the system like what was posted earlier for me to try. But how do I do it for the other? At this point I just want to know for future reference.
CoyotesFan4Evr said:
I did it for the system like what was posted earlier for me to try. But how do I do it for the other? At this point I just want to know for future reference.
Click to expand...
Click to collapse
If you are using ES file explorer, long press on the file and go to properties. You will see permissions. Click on change and set them to -rw -r -r
Sent from my dlx using Tapatalk

Dev-Collab Sense 5 - 4.2.2

WORK IN PROGRESS
EXPECT BUGS
OFF TOPIC REPLYS AND THANK POSTS GO HERE http://forum.xda-developers.com/showthread.php?t=2450255
{
"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"
}
Htc Sense 5
Android 4.2.2
ROM MUST BE PLACED ON INTERNAL STORAGE TO INSTALL
working
wifi
Bluetooth
calls
sound
messaging
data 3g/lte data is stable on 3g 4g is spotty not sure if its our bug or sprints
issues
sdcard mounting
it is easily fixable by running a command in terminal (It will need to be applied every reboot/install
bugs
camera
screenshots
thanks
Chubbz
mammothjojo88
throwback
zarboz for the kernel
download
www.tensailab.com/Sinister/htc-onexl-sense5-port.zip
MD5: 2c4f07cf290be4120f903e15503aa4a9
Go here for how to set up
XDA:DevDB Information
[DEV][WIP][ROM]Sense 5 Android 4.2.2, a ROM for the Sprint HTC EVO 4G LTE
Contributors
Sinistertensai, Chubbzlou, Captain_Throwback, DEV-Collab
ROM OS Version: 4.2.x Jelly Bean
Based On: Port, Stock
Version Information
Status: Beta
Created 2013-12-16
Last Updated 2013-12-16
reserved
Ok Guys here is the svn to the rom that captainthrowback posted hopefully we could get the major bugs fixed.
http://htc-onexl-sense5-port.googlecode.com/svn/trunk/
Enjoy
Current SVN Revision Download
htc-onexl-sense5-port-r27
Changelog
https://code.google.com/p/htc-onexl-sense5-port/source/list
Bug List/Report
https://code.google.com/p/htc-onexl-sense5-port/issues/list
Workarounds
To mount internal/external storage automatically at boot:
Install latest revision.
Go to Play Store and install SManager.
Open SManager, and choose the "browse as root" option.
Navigate to /system/etc (this may require pressing the up arrow a few times to get to the root directory)
Find the file "init.cptb.mount_sd.sh" and press it to select it.
In the box that pops up, make sure "run as script" is selected.
Press the button for "Su" to enable the script to run as root.
Press the button for "Boot" to enable the script to run after the system boots.
Look for the option to save those settings (should be at the top of the window) and press it.
Press the exit button to exit.
Manually reboot the device.
Profit.
To install purchased apps from the Play Store:
Install Xposed Framework.
Install MoDaCo Toolkit.
Choose option in Toolkit (under System) to "Disable Forward Lock"
FAQ
Q: Why doesn't my BlinkFeed show any pictures?
A: Because internal storage has to be mounted for it to do so. Complete the storage workaround mentioned above, reboot, and you should have pictures on BlinkFeed.
Q: Why can't I move apps to SD card/save video highlights/do anything else remotely related to storage?
A: Because storage card isn't getting mounted automatically, the permissions for apps to write to it are messed up. Once storage is working properly, so will all of these things.
Q: Why is my LTE data keep disconnecting and my signal bars not changing?
A: Because this is a WIP port from a GSM device. The signal bars are likely due to some hex edits that need to be made, but that is tedious and painstaking work. Feel free to jump in and help.
Q: Why doesn't camera work?
A: Because this is a WIP port from a device with different camera hardware. Also, because you haven't fixed it yet .
Q: Are there any mods I can install for this ROM?
A: I have had some success with some Xposed Mods, including Sense 5 Toolbox and Xposed Statusbar Mods. BUT BE CAREFUL! BACKUP FIRST! Any incompatible mods could bork the ROM.
Refreshing the page constantly....waiting to download...
Edit: Downloading now!!!!! I was on my way to bed, but so much for that!
___________________________________________________________
ASUS TF300T - It's back from the brink of death....
Rerooted, Custom ROM, and Faster than EVER!!!
Just can't wait to try this beast.. Thank you so much guys!!
-----Evo LTE..
Great work fellas
Mine mine! Please use my development name.. mammothjojo88
Sent from my EVO using xda premium
Dev's, can you share that Terminal command to make the sd card work?
-----Evo LTE..
Ahhhh I just seen this and I'm now at work and have to wait til morning to flash this.. gonna be a long 8 hour wait... Can we change the status bar on this one? And thanks Devs for getting this out to us..
Sent from my EVO using xda app-developers app
Yessssss! Thank you. Thank you. Thank you.
Sent from my EVO using Tapatalk 4
So far, so good. Minus the bugs, this easily makes a wonderful daily.
________________________
HTC EVO 4G LTE
Is BlinkFeed acting up for anyone
Sent from my EVO using xda app-developers app
About to install,thanks guys!!
Sent from my EVO using xda app-developers app
[email protected] said:
Dev's, can you share that Terminal command to make the sd card work?
-----Evo LTE..
Click to expand...
Click to collapse
+1
Sent from my EVO using xda app-developers app
Terminal command
adr83 said:
+1
Sent from my EVO using xda app-developers app
Click to expand...
Click to collapse
+1 for the Terminal command. t/u
After some testing, I want to share my findings.
When you first boot the Rom:
You might want to change the keyboard settings to QWERTY, since it's set to QWERTZ by default, unless you like it that way.
3G/4G connection:
It is quite buggy. It will connect to the 4g network, but only briefly, then it loses all connection. I also was not able to actually use the data while it was connected, either. It was not until I parked at work this morning did I see a stable 3g connection, as there is no 4g at my job as of yet.
Inaccurate signal readings and/or Statusbar:
Clearly you can see from the screenshot that I have no signal (which I never have at work), but my statusbar says otherwise. I'm working on checking the cause of this, or how to remedy it (externally, because I don't know anything about the internal coding...I leave that up to the devs). I used SignalCheck Lite from the play store to check.
Storage mount:
I found a simple fix to mount the internal! Find an app from the play store that allows you to Hot Restart/Soft Reboot. <---Same thing, for those who do not know.
Side notes about storage:
1) I learned by installing the Xposed Framework, and hot rebooting to set the changes. The framework didn't work, but I noticed that my storage had mounted when I entered TB to boot into recovery.
EDIT:
I downloaded the latest version of Xposed, and it works.
2) You don't need the internal to be mounted to install apps that are uploaded to Dropbox or Google Drive. They use temp folders, unlike downloading from browsers (which need the internal). I uploaded Xposed from another device, and installed it from Drive.
3) You cannot take any screenshots without mounting the internal. (Duh, where would it save?)
I was able to play music from my internal sd, and I was able to see my pics loaded in the internal.
Important: A full reboot breaks the mount, but another hot reboot fixes it. I haven't found a way to mount the external sd, but in the storage settings, it definitely knows that it's there, because it reads correctly.
Weird behavior of storage:
After a full reboot to break the storage, and a soft reboot to restore it, the music players would no longer recognize the music on the phone. But when I used a file explorer to navigate to the location, the files were there, and I was able to play them one by one.
After an unspecified amount of time, it began recognizing the music again. Not sure why.
Side note:
1) While having issues with the media storage (what if I wipe it....hmmm.....), the gallery always displayed pictures while the internal was mounted.
EDIT @ 8:16a EST:
So after being booted for approx. 2hrs straight, my ext sd is now being read. It doesn't appear in TB, but it certainly shows up in file managers. All of my music & all of my pictures are here. The only thing that I changed was the removal of the bloatware & the Google Apps that are available on the Play Store. It cleared some /system space, and now everything is being read. Strange....
Blinkfeed:
FIrst off, to use Blinkfeed, you must go to Settings-->Personalize-->Home Screen Style, and select Blinkfeed. The traditional style allows 7 screens max, just like before.
Secondly, and more importantly to know, Blinkfeed doesn't display pictures without the internal being mounted.
Camera:
Yeah....right. Not going there. Nothing that I can contribute. Just know that it doesn't work...for now.
Other:
When the phone first started reading my external, the ext_sd folder was empty, but now it is beginning to read everything as normal. It seems like time is the greatest factor here. Maybe I'm wrong. Maybe it's the mount speeds. Who knows.
The zip file attached works. It works in any rom, actually, AOSP and Sense alike. It was found from the Stock With Goodies thread. You can also flash any of OMJ's mod packs, for this option is in all of them.
Those are my findings so far.
________________________
HTC EVO 4G LTE
woo hoo! this must be an early Christmas!
So I noticed there's no superuser pre installed. What's the terminal command to get storage data to read for ti back-up? And what does everyone recommend for all the bloatware from whatever country this is hard off of? Haha! Woah guys. This is awesome though!
Sent from my EVO using xda app-developers app
This is awesome.
Sent from my EVO using xda app-developers app

Categories

Resources