From 74962458cd8fa21dfdd625d844fc166a505594ac Mon Sep 17 00:00:00 2001 From: naijun0403 Date: Tue, 6 May 2025 19:44:44 +0900 Subject: [PATCH] marble: Update module paths in BoardConfig.mk to use DEVICE_PATH --- BoardConfig.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BoardConfig.mk b/BoardConfig.mk index e535a29..862a46a 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -77,8 +77,8 @@ BOARD_BOOTCONFIG := \ # Kernel modules first_stage_modules := $(strip $(shell cat $(TARGET_KERNEL_SOURCE)/modules.list.msm.waipio)) -second_stage_modules := $(strip $(shell cat $(COMMON_PATH)/modules.list.second_stage)) -vendor_dlkm_exclusive_modules := $(strip $(shell cat $(COMMON_PATH)/modules.list.vendor_dlkm)) +second_stage_modules := $(strip $(shell cat $(DEVICE_PATH)/modules.list.second_stage)) +vendor_dlkm_exclusive_modules := $(strip $(shell cat $(DEVICE_PATH)/modules.list.vendor_dlkm)) BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD += $(first_stage_modules) BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD += $(first_stage_modules) $(second_stage_modules)