aboutsummaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorTony Garnock-Jones <tonyg@leastfixedpoint.com>2020-09-29 22:03:06 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2021-02-22 16:26:36 +0100
commit56ff64110d57570454a4a308419190cae74b133e (patch)
treef80132d12a0b47fc9c77f52f498a430534f628ee /Android.mk
parent900ac4d9fe69e381717e04e500431f6eaec3d530 (diff)
downloadhardware_replicant_libsamsung-ipc-56ff64110d57570454a4a308419190cae74b133e.tar.gz
hardware_replicant_libsamsung-ipc-56ff64110d57570454a4a308419190cae74b133e.tar.bz2
hardware_replicant_libsamsung-ipc-56ff64110d57570454a4a308419190cae74b133e.zip
Initial support for herolte (Samsung Galaxy S7 GSM).
A previous version of this patch was tested on the herolte, however since then, several light functional changes were introduced. With the previous patch, it was possible to boot the modem and it was probably possible to send message to, and receive messages from the modem. For the TARGET_DEVICE we use in our Android.mk, In the Android.mk of android_device_samsung_herolte[1] we have: ifneq ($(filter herolte, $(TARGET_DEVICE)),) include $(call all-makefiles-under,$(LOCAL_PATH)) endif so we can safely assume that the TARGET_DEVICE is herolte. [1]https://github.com/LineageOS/android_device_samsung_herolte Signed-off-by: Tony Garnock-Jones <tonyg@leastfixedpoint.com> GNUtoo: rebased, code cleanup, more debug prints, commit message content but not its summary. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 048a212..adaf0d4 100644
--- a/Android.mk
+++ b/Android.mk
@@ -25,6 +25,10 @@ ifneq (,$(filter crespo,$(TARGET_DEVICE)))
ipc_device_name := crespo
endif
+ifneq (,$(filter herolte,$(TARGET_DEVICE)))
+ ipc_device_name := herolte
+endif
+
ifneq (,$(filter i9100 galaxys2 n7000,$(TARGET_DEVICE)))
ipc_device_name := galaxys2
endif
@@ -66,6 +70,7 @@ libsamsung_ipc_local_src_files := \
samsung-ipc/devices/aries/aries.c \
samsung-ipc/devices/crespo/crespo.c \
samsung-ipc/devices/galaxys2/galaxys2.c \
+ samsung-ipc/devices/herolte/herolte.c \
samsung-ipc/devices/i9300/i9300.c \
samsung-ipc/devices/maguro/maguro.c \
samsung-ipc/devices/n5100/n5100.c \