Merge "Only start the IZAT services when the Sys prop is true"

This commit is contained in:
Linux Build Service Account 2012-10-05 12:53:56 -07:00 committed by Gerrit - the friendly Code Review server
commit 314abe78ef
1 changed files with 7 additions and 4 deletions

View File

@ -60,6 +60,7 @@ start_battery_monitor()
}
baseband=`getprop ro.baseband`
izat_premium_enablement=`getprop ro.qc.sdk.izat.premium_enabled`
#
# Suppress default route installation during RA for IPV6; user space will take
@ -92,10 +93,12 @@ case "$target" in
esac
case "$target" in
"msm8960")
start location_mq
start xtwifi_inet
start xtwifi_client
"msm8960" | "msm8974")
if [ "$izat_premium_enablement" -eq 1 ]; then
start location_mq
start xtwifi_inet
start xtwifi_client
fi
esac
case "$target" in