#!/system/bin/sh #created by -viperboy- #for PrimeTime # Modified by Richard Kandarian for HTC Vision (TMO G2) mount -o remount,ro -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 RO success!" ;; rw) echo "Mount /system as RO FAILED!" ;; esac