d855: Migrate from system.prop to system_prop.mk

* This is the new way to do things as of AOSP 8.0.
 * This will allow us to split system/vendor properties if we want to.

Change-Id: Ia147eb39342122bf0ecdcd3f2d3c2338569fc2da
gugelfrei
Nolen Johnson 5 years ago committed by Aleksander Gencel
parent bbf1cc9462
commit 6b41fb4c77

@ -62,5 +62,8 @@ PRODUCT_COPY_FILES += \
device/lge/g3-common/wcnss/p2p_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/p2p_supplicant_overlay.conf \
device/lge/g3-common/wcnss/wpa_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant_overlay.conf
# System properties
-include $(LOCAL_PATH)/system_prop.mk
# common g3
$(call inherit-product, device/lge/g3-common/g3.mk)

@ -1,11 +0,0 @@
# Radio
persist.radio.do_not_init_csvt=1
rild.libpath=/vendor/lib/libril-qc-qmi-1.so
ro.ril.telephony.mqanelements=4
ro.telephony.call_ring.multiple=0
ro.telephony.default_network=9
telephony.lteOnCdmaDevice=0
telephony.lteOnGsmDevice=1
# Bluetooth
qcom.bluetooth.soc=smd

@ -0,0 +1,17 @@
#
# System properties for d855
#
# Radio
PRODUCT_PROPERTY_OVERRIDES += \
persist.radio.do_not_init_csvt=1 \
rild.libpath=/vendor/lib/libril-qc-qmi-1.so \
ro.ril.telephony.mqanelements=4 \
ro.telephony.call_ring.multiple=0 \
ro.telephony.default_network=9 \
telephony.lteOnCdmaDevice=0 \
telephony.lteOnGsmDevice=1
# Bluetooth
PRODUCT_PROPERTY_OVERRIDES += \
qcom.bluetooth.soc=smd
Loading…
Cancel
Save