From ce9ddb70137be0df96baf3a1fc7594279daae7b5 Mon Sep 17 00:00:00 2001 From: Subash Abhinov Kasiviswanathan Date: Wed, 9 Aug 2023 10:15:24 -0700 Subject: [PATCH] datarmnet: Add redundant module checks BoardConfig.mk is not being processed by the build system in certain configurations. Add a duplicate check in the module specific makefile for module enablement. CRs-Fixed: 3593384 Change-Id: Ib87a3ea4313d42cdc5c05c3c5e896ceb3f3a01af Signed-off-by: Subash Abhinov Kasiviswanathan --- core/Android.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/Android.mk b/core/Android.mk index 377668f3e8..86796a056a 100644 --- a/core/Android.mk +++ b/core/Android.mk @@ -1,3 +1,4 @@ +ifeq ($(TARGET_DATARMNET_ENABLE), true) ifneq ($(TARGET_BOARD_PLATFORM),qssi) RMNET_CORE_DLKM_PLATFORMS_LIST := pineapple RMNET_CORE_DLKM_PLATFORMS_LIST += blair @@ -35,3 +36,4 @@ include $(DLKM_DIR)/Build_external_kernelmodule.mk endif #End of Check for target endif #End of Check for qssi target +endif #End of Check for datarmnet