From e00995c0d70133a2b6d00ce4fb1cc4f971e8b651 Mon Sep 17 00:00:00 2001 From: attn1 Date: Mon, 31 Jan 2011 18:59:47 -0500 Subject: Allow Kineto only on TMUS/Google Change-Id: Iea318a277000e5b1dc299074ff5cf8a3a302073f --- prebuilt/common/bin/chkkineto.sh | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 prebuilt/common/bin/chkkineto.sh (limited to 'prebuilt') diff --git a/prebuilt/common/bin/chkkineto.sh b/prebuilt/common/bin/chkkineto.sh new file mode 100644 index 0000000..41f4d96 --- /dev/null +++ b/prebuilt/common/bin/chkkineto.sh @@ -0,0 +1,35 @@ +#!/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 [ "$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 -- cgit v1.1