pressy4pie

Untitled

Sep 1st, 2013
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #!/bin/bash
  2. su
  3. mount -o rw,remount /dev/block/mmcblk0p12 /system
  4.  
  5. if [ -e /system/build.prop ];
  6. then
  7.    echo "Build.prop found. Removing"
  8.    mv /system/build.prop /system/build.propORG
  9. else
  10.    echo "Build.prop not found. Restoring"
  11.    mv /system/build.propORG /system/build.prop
  12. fi
Advertisement
Add Comment
Please, Sign In to add comment