summaryrefslogtreecommitdiff
path: root/kickstart_checker.sh
diff options
context:
space:
mode:
authorRaphanus Lo <raphanus_lo@asus.com>2013-03-29 15:03:21 +0800
committerEd Tam <etam@google.com>2013-03-31 20:54:53 -0700
commit39be7dd32ee66c5f038e515720950acca92d6fb8 (patch)
treea026875dd76ef2538a60c2ff69026670df1b0f01 /kickstart_checker.sh
parentee443ee82b550cfc38ae73d70e90f93058b5423e (diff)
Before this change, kickstart will possiblely be launched at two point:
1. Boot complete, and property service load persist properties from file, then start service "kickstart" when set property "persist.radio.kickstart" to "on". 2. Later, the same in group "core", ks_checker first disables kickstart, checking the ralated files, and restart kickstart. With above procedure, kicstart might be terminated during firmware downloaded stage, and it will cause modem booting failed. In this change, we don't launch kickstart just after booted and leave it to be performed by ks_checker. Change-Id: If4d0473da69c0d1cdd05f1b24a66c7caafb25c6e Signed-off-by: Raphanus Lo <raphanus_lo@asus.com>
Diffstat (limited to 'kickstart_checker.sh')
-rw-r--r--kickstart_checker.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/kickstart_checker.sh b/kickstart_checker.sh
index 060c167..c097ad8 100644
--- a/kickstart_checker.sh
+++ b/kickstart_checker.sh
@@ -1,5 +1,5 @@
#!/system/bin/sh
-setprop persist.radio.kickstart off
+setprop gsm.radio.kickstart off
if [ $(getprop ro.boot.baseband) == "mdm" ]; then
@@ -18,5 +18,5 @@ if [ $(getprop ro.boot.baseband) == "mdm" ]; then
echo 1 > /sys/module/rmnet_usb/parameters/rmnet_data_init
- setprop persist.radio.kickstart on
+ setprop gsm.radio.kickstart on
fi