#!/system/bin/sh
#created by -viperboy-
#for PrimeTime
# Modified by Richard Kandarian for HTC Vision (TMO G2)

mount -o remount,rw -t ext3 /dev/block/mmcblk0p25 /system

mntstatus=$(mount | grep -i /system | cut -d " " -f 4 | cut -d , -f 1)
case $mntstatus in
	ro)	echo "Mount /system as RW FAILED!"
		;;
	rw)	echo "Mount /system as RW success!"
		;;
esac
