2021-10-16 14:05:45 -04:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2021-07-29 12:33:17 -04:00
|
|
|
From: Tad <tad@spotco.us>
|
|
|
|
Date: Thu, 29 Jul 2021 12:31:30 -0400
|
2021-10-16 14:05:45 -04:00
|
|
|
Subject: [PATCH] LTE Enablement
|
2021-07-29 12:33:17 -04:00
|
|
|
|
|
|
|
Change-Id: I36cbd7ce1a070201da24dc237154355e780d01b4
|
|
|
|
---
|
|
|
|
.../base/core/res/res/values/config.xml | 2 +-
|
|
|
|
.../services/Telephony/res/values/config.xml | 22 +++++++++++++++++++
|
|
|
|
system_prop.mk | 2 +-
|
|
|
|
3 files changed, 24 insertions(+), 2 deletions(-)
|
|
|
|
create mode 100644 overlay/packages/services/Telephony/res/values/config.xml
|
|
|
|
|
|
|
|
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml
|
2023-09-10 11:42:24 -04:00
|
|
|
index f412344..f01ba6c 100644
|
2021-07-29 12:33:17 -04:00
|
|
|
--- a/overlay/frameworks/base/core/res/res/values/config.xml
|
|
|
|
+++ b/overlay/frameworks/base/core/res/res/values/config.xml
|
2022-08-12 16:37:51 -04:00
|
|
|
@@ -168,7 +168,7 @@
|
2021-07-29 12:33:17 -04:00
|
|
|
Empty is viewed as "all". Only used on devices which
|
|
|
|
don't support RIL_REQUEST_GET_RADIO_CAPABILITY
|
|
|
|
format is UMTS|LTE|... -->
|
|
|
|
- <string translatable="false" name="config_radio_access_family">GSM|WCDMA</string>
|
|
|
|
+ <string translatable="false" name="config_radio_access_family">GSM|WCDMA|LTE</string>
|
|
|
|
|
|
|
|
<!-- Set to true to add links to Cell Broadcast app from Settings and MMS app. -->
|
|
|
|
<bool name="config_cellBroadcastAppLinks">true</bool>
|
|
|
|
diff --git a/overlay/packages/services/Telephony/res/values/config.xml b/overlay/packages/services/Telephony/res/values/config.xml
|
|
|
|
new file mode 100644
|
|
|
|
index 0000000..53c62dd
|
|
|
|
--- /dev/null
|
|
|
|
+++ b/overlay/packages/services/Telephony/res/values/config.xml
|
|
|
|
@@ -0,0 +1,22 @@
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
+<!-- Copyright (C) 2014 The CyanogenMod Project
|
|
|
|
+
|
|
|
|
+ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
+ you may not use this file except in compliance with the License.
|
|
|
|
+ You may obtain a copy of the License at
|
|
|
|
+
|
|
|
|
+ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
+
|
|
|
|
+ Unless required by applicable law or agreed to in writing, software
|
|
|
|
+ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
+ See the License for the specific language governing permissions and
|
|
|
|
+ limitations under the License.
|
|
|
|
+-->
|
|
|
|
+
|
|
|
|
+<resources>
|
|
|
|
+
|
|
|
|
+ <!-- Show enabled lte option for lte device -->
|
|
|
|
+ <bool name="config_enabled_lte" translatable="false">true</bool>
|
|
|
|
+
|
|
|
|
+</resources>
|
|
|
|
diff --git a/system_prop.mk b/system_prop.mk
|
2022-08-12 16:37:51 -04:00
|
|
|
index 716e920..984f25d 100644
|
2021-07-29 12:33:17 -04:00
|
|
|
--- a/system_prop.mk
|
|
|
|
+++ b/system_prop.mk
|
2022-08-12 16:37:51 -04:00
|
|
|
@@ -45,7 +45,7 @@ PRODUCT_PROPERTY_OVERRIDES += \
|
2021-07-29 12:33:17 -04:00
|
|
|
# RIL
|
|
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
|
|
rild.libpath=/vendor/lib/libril-qc-qmi-1.so \
|
|
|
|
- telephony.lteOnCdmaDevice=0 \
|
|
|
|
+ telephony.lteOnCdmaDevice=1 \
|
|
|
|
persist.radio.apm_sim_not_pwdn=1 \
|
|
|
|
ro.telephony.call_ring.multiple=0
|
|
|
|
|