From 89213c60b3dde9f8631cd572433fa368c1831e11 Mon Sep 17 00:00:00 2001 From: dianlujitao Date: Tue, 22 Oct 2019 21:11:54 +0800 Subject: [PATCH] FP3: Force enable mobile network settings v2 * AOSP defaults to true but 10 QC telephony extension sets it to false. * Restore AOSP behavior by enabling it with a system property which has higher priority over global system settings which is used by QCOM w/o modifying the jar. Change-Id: I45854b91bb8cfafabfe811777cda9f1e1840febf --- BoardConfig.mk | 3 +++ system.prop | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 system.prop diff --git a/BoardConfig.mk b/BoardConfig.mk index 711be7c3..7629a914 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -213,6 +213,9 @@ BOARD_POWER_CUSTOM_BOARD_LIB := libpower_8953 TARGET_HAS_NO_WLAN_STATS := true TARGET_USES_INTERACTION_BOOST := true +# Properties +TARGET_SYSTEM_PROP += $(DEVICE_PATH)/system.prop + # DRM TARGET_ENABLE_MEDIADRM_64 := true diff --git a/system.prop b/system.prop new file mode 100644 index 00000000..6cec6671 --- /dev/null +++ b/system.prop @@ -0,0 +1,2 @@ +# RIL +persist.sys.fflag.override.settings_network_and_internet_v2=true -- GitLab