Merge "Enable cutom ecc"
This commit is contained in:
commit
b14aea96b7
|
@ -16,9 +16,11 @@ endif
|
|||
PRODUCT_PROPERTY_OVERRIDES += \
|
||||
ro.vendor.extension_library=libqti-perfd-client.so \
|
||||
persist.radio.apm_sim_not_pwdn=1 \
|
||||
persist.radio.custom_ecc=1\
|
||||
persist.radio.sib16_support=1
|
||||
|
||||
PRODUCT_PRIVATE_KEY := device/qcom/common/qcom.key
|
||||
PRODUCT_PACKAGES += qcril.db
|
||||
|
||||
$(call inherit-product, frameworks/native/build/phone-xhdpi-1024-dalvik-heap.mk)
|
||||
#$(call inherit-product, frameworks/base/data/fonts/fonts.mk)
|
||||
|
|
|
@ -111,6 +111,14 @@ start_msm_irqbalance()
|
|||
fi
|
||||
}
|
||||
|
||||
start_copying_prebuilt_qcril_db()
|
||||
{
|
||||
if [ -f /system/vendor/qcril.db -a ! -f /data/misc/radio/qcril.db ]; then
|
||||
cp /system/vendor/qcril.db /data/misc/radio/qcril.db
|
||||
chown -h radio.radio /data/misc/radio/qcril.db
|
||||
fi
|
||||
}
|
||||
|
||||
baseband=`getprop ro.baseband`
|
||||
echo 1 > /proc/sys/net/ipv6/conf/default/accept_ra_defrtr
|
||||
|
||||
|
@ -121,6 +129,7 @@ case "$baseband" in
|
|||
esac
|
||||
|
||||
start_sensors
|
||||
start_copying_prebuilt_qcril_db
|
||||
|
||||
case "$target" in
|
||||
"msm7630_surf" | "msm7630_1x" | "msm7630_fusion")
|
||||
|
|
Loading…
Reference in New Issue