• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root Touch Recovery

cjreyes666

Well-Known Member
Has any one gotten a look on the touch recovery for the LG Black and see if it can be ported to our devices? Thanks.
 
probably not the smartest question...but do you just flash this and it overwrites the existing cwm?
 
just swap the .img out in the installer you used to install it (not RM) and rename accordingly. ;)
It's been a long time since installing clockwork mod. I try to avoid RM so no worries. What what you recommend as the easiest method/installer to use?
 
yeah, if u wanna wait a second u can use the one im uploading if ur using windows. Doing the linux/mac script now

edit:

All i did was edit playful's aio and removed the root options, upgraded the recovery.img. Will work on windows/mac/linux (run script accordingly). I am not responsible for what people do to their phones.

Goo.im Downloads - Downloading LGMarquee_AIO.zip

Thanks Monster, quick work. Has anyone tried this yet? Attempting now
 
Monster, I keep getting this error when running the script on windows:
/data/local/tmp/sh: permission denied

Should I flash to stock and try again?
I'm currently running CTMod 3.6.8
 
Monster, I keep getting this error when running the script on windows:
/data/local/tmp/sh: permission denied

Should I flash to stock and try again?
I'm currently running CTMod 3.6.8

not sure yet. I gotta go over the script, its playful's so it should work. That new link i posted had nothing at all changed besides the recovery.img. So im still digging.

update: fixed. Link updated./ http://d-h.st/Gxi
 
Looks like this is missing?
Code:
Files/$adb shell /data/local/tmp/sh -c "mount -orw,remount /dev/block/data /data"

Here's what I came up with for the .bat file. Haven't tried it yet tho

Code:
:CWMTOUCHRECOVERY
CLS
echo Rooting the LG Ignite
echo Tool Built by mtmichaelson
echo Exploit Built by the Revolutionary Team
echo CWM Touch Built by PlayfulGod
echo.
echo.
Echo Root and CWM Touch
pause
Files\adb kill-server
Files\adb wait-for-device

echo Device found

echo Pushing Touch Recovery
Files\adb push Files\cwmtouchrecovery.img /data/local/tmp/cwmtouchrecovery.img
Files\adb shell /data/local/tmp/sh -c "mount -orw,remount /dev/block/data /data"

echo Installing CWM Touch Recovery

Files\adb shell /data/local/tmp/sh -c "dd if=/dev/block/mmcblk0p4 of=/sdcard/mmcblk0p4.backup bs=4096"
Files\adb shell /data/local/tmp/sh -c "dd if=/data/local/tmp/cwmtouchrecovery.img of=/dev/block/mmcblk0p4 bs=4096"
Files\adb shell "rm /data/local/tmp/* 2>/dev/null"

echo Finished Installing Recovery!!!
Files\adb reboot

pause
GOTO MENU
 
Looks like this is missing?
Code:
Files/$adb shell /data/local/tmp/sh -c "mount -orw,remount /dev/block/data /data"
Here's what I came up with for the .bat file. Haven't tried it yet tho

Code:
:CWMTOUCHRECOVERY
CLS
echo Rooting the LG Ignite
echo Tool Built by mtmichaelson
echo Exploit Built by the Revolutionary Team
echo CWM Touch Built by PlayfulGod
echo.
echo.
Echo Root and CWM Touch
pause
Files\adb kill-server
Files\adb wait-for-device

echo Device found

echo Pushing Touch Recovery
Files\adb push Files\cwmtouchrecovery.img /data/local/tmp/cwmtouchrecovery.img
Files\adb shell /data/local/tmp/sh -c "mount -orw,remount /dev/block/data /data"

echo Installing CWM Touch Recovery

Files\adb shell /data/local/tmp/sh -c "dd if=/dev/block/mmcblk0p4 of=/sdcard/mmcblk0p4.backup bs=4096"
Files\adb shell /data/local/tmp/sh -c "dd if=/data/local/tmp/cwmtouchrecovery.img of=/dev/block/mmcblk0p4 bs=4096"
Files\adb shell "rm /data/local/tmp/* 2>/dev/null"

echo Finished Installing Recovery!!!
Files\adb reboot

pause
GOTO MENU
remove this
Code:
/data/local/tmp/sh -c

Can I just push it with adb?
Yea I adb pushed n ran the dd cmd manually myself ;)
 
Back
Top Bottom