summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-11-03 16:51:24 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-11-03 16:54:22 +0100
commita2e456bae95289d6a988f17e29fa0f13d599eaf3 (patch)
tree6f387543226004f4e5a7dcd1d368f411180b57c6
parent815a5764bd1fe9d6284b19b3fc2318822af98f88 (diff)
downloadvendor_replicant-scripts-a2e456bae95289d6a988f17e29fa0f13d599eaf3.tar.gz
vendor_replicant-scripts-a2e456bae95289d6a988f17e29fa0f13d599eaf3.tar.bz2
vendor_replicant-scripts-a2e456bae95289d6a988f17e29fa0f13d599eaf3.zip
Add that the Galaxy J7 has shared memory between the modem and the SOC
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rwxr-xr-xdata/lineageos_wiki/find_lineageos_devices.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/data/lineageos_wiki/find_lineageos_devices.py b/data/lineageos_wiki/find_lineageos_devices.py
index 3616dd2..11fc332 100755
--- a/data/lineageos_wiki/find_lineageos_devices.py
+++ b/data/lineageos_wiki/find_lineageos_devices.py
@@ -57,6 +57,12 @@ def device_has_shared_memory_between_modem_and_soc(vendor, product):
# CONFIG_LINK_DEVICE_HSIC is not set
if vendor == 'Samsung' and product == 'Galaxy S5 Neo':
return True
+ if vendor == 'Samsung' and product == 'Galaxy J7 (2015)':
+ # lineageos_j7elte_defconfig in the lineage-17.1 branch of
+ # android_kernel_samsung_universal7580 has the following:
+ # CONFIG_LINK_DEVICE_SHMEM=y. All other CONFIG_LINK_DEVICE_
+ # are 'is not set'.
+ return True
# unknown
return None