Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
and this:#!/system/bin/sh
echo APP2SD
mount -o remount,rw -t yaffs2 /dev/block/mtdblock1 /system
mkdir /system/sd
chown system.system /system/sd
mount -t ext2 /dev/block//vold/179:2 /system/sd
mkdir /system/sd/app
chown system.system /system/sd/app
mkdir /system/sd/dalvik-cache
chown system.system /system/sd/dalvik-cache
cd /data/dalvik-cache
busybox * /system/sd/dalvik-cache
rm *
cd /data/app
busybox * /system/sd/app
rm *
cd /data
mount -o bind /system/sd/app /data/app
cd /data
mount -o bind /system/sd/dalvik-cache /data/dalvik-cache
cd /sdcard/app2sd
cat init-sd2.sh > /system/etc/init-sd2.sh && chmod 755 /system/etc/init-sd2.sh
cd /sdcard/app2sd
cat install-recovery.sh > /system/etc/install-recovery.sh && chmod 755 /system/etc/install-recovery.sh
df
echo Applications & Dalvik-cache have been transferred to sd card
echo phone resets on 20 seconds
sleep 20
reboot
#!/system/bin/sh
MYLOG=/data/install-recovery.log
echo "$(date) Starting install-recovery.sh" > $MYLOG
echo "$(date) Waiting SD to become ready..." >> $MYLOG
sleep 10
mount -t ext2 /dev/block/mmcblk0p2 /system/sd 1>>$MYLOG 2>>$MYLOG
mount -o bind /system/sd/app /data/app 1>>$MYLOG 2>>$MYLOG
mount -o bind /system/sd/dalvik-cache /data/dalvik-cache 1>>$MYLOG 2>>$MYLOG
mount >> $MYLOG
echo "$(date) Finishing install-recovery.sh" >> $MYLOG
Just need to be rooted that's all.
but you'd need to make sure busy box is installed.
~Ivy