Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- su
- mount -o rw,remount /dev/block/mmcblk0p12 /system
- if [ -e /system/build.prop ];
- then
- echo "Build.prop found. Removing"
- rm /system/build.prop
- else
- echo "Build.prop not found. Restoring"
- cp /sdcard/Build.prop /system
- fi
Advertisement
Add Comment
Please, Sign In to add comment