View Single Post
Old 01-04-2011, 11:19 AM   #123
hiaig
Addict
hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.
 
Posts: 292
Karma: 428
Join Date: Mar 2010
Location: Toronto, Canada
Device: jetbook and PocketBook IQ
Quote:
Originally Posted by Coredump-EE View Post
Can you give me a link to these scripts?
http://translate.googleusercontent.c...2TdZqBYRx1pSrw

See post 39

This is what I came up with:
Quote:
App2SD:

cd android-sdk-windows\platform-tools

adb shell
su

cat /proc/mtd

mount -o remount,rw -t yaffs2 /dev/block/mtdblock6 /system
mkdir /system/sd

ls /dev/block/mmc*
---- see whether it is mmcblk0p2 or mmcblk1p2

echo “#!/system/bin/sh” > /system/etc/install-recovery.sh

ls /system/etc
------ make sure there is a file: install-recovery.sh

echo “/system/bin/mount -w -t ext2 /dev/block/mmcblk0p2 /system/sd” >> /system/etc/install-recovery.sh

echo “/system/bin/mount -w -t ext2 /dev/block/mmcblk1p2 /system/sd” >> /system/etc/install-recovery.sh

chmod 4755 /system/etc/install-recovery.sh

reboot

adb shell
su
mount
busybox cp -a /data/app /system/sd
rm -r /data/app
ln -s /system/sd/app /data/app
busybox cp -a /data/data /system/sd
rm -r /data/data
ln -s /system/sd/data /data/data
reboot

Last edited by hiaig; 01-04-2011 at 11:57 AM.
hiaig is offline   Reply With Quote