View difference between Paste ID: CtYcBf7t and dB2wWw71
SHOW: | | - or go back to the newest paste.
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-
   rm /system/build.prop
8+
   mv /system/build.prop /system/build.propORG
9
else
10
   echo "Build.prop not found. Restoring"
11-
   cp /sdcard/Build.prop /system
11+
   mv /system/build.propORG /system/build.prop
12
fi