summaryrefslogtreecommitdiffstats
path: root/prebuilt/common/bin/chkkineto.sh
diff options
context:
space:
mode:
Diffstat (limited to 'prebuilt/common/bin/chkkineto.sh')
-rw-r--r--prebuilt/common/bin/chkkineto.sh40
1 files changed, 0 insertions, 40 deletions
diff --git a/prebuilt/common/bin/chkkineto.sh b/prebuilt/common/bin/chkkineto.sh
deleted file mode 100644
index b94936e..0000000
--- a/prebuilt/common/bin/chkkineto.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/sbin/sh
-#
-# Remove KINETO if TMUS or GOOGLE Radio firmware not preset.
-#
-
-c=`/system/bin/getprop ro.carrier`
-p=/system/app/MS-HTCVISION-KNT20-02.apk
-r=y
-
-if [ "$c" = "TMUS" ];
- then
- r=n
-fi
-
-if [ "$c" = "GOOGLE" ];
- then
- r=n
-fi
-
-if [ "$c" = "ALL" ];
- then
- r=n
-fi
-
-if [ "$r" = "y" ];
- then
- if [ -f $p ];
- then
- rm -f /system/app/MS-HTCVISION-KNT20-02.apk
- rm -f /system/lib/libkineto.so
- rm -f /system/lib/libganril.so
- rm -f /system/lib/librilswitch.so
- sed 's/librilswitch.so/libhtc_ril.so/' /system/build.prop > /tmp/build.tmp
- sed '/rilswitch/d' /tmp/build.tmp > /system/build.prop
- chmod 644 /system/build.prop
- rm /tmp/build*
- fi
-fi
-
-exit 0