mirror of
https://github.com/Anything-at-25-00/android_device_tecno_LG8n.git
synced 2024-11-21 21:36:26 -08:00
LG8n: Fix recovery kernel modules instalation
* BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD should contain the list of modules loaded with the recovery, but the modules should be installed using BOARD_VENDOR_RAMDISK_KERNEL_MODULES Signed-off-by: Woomymy <woomy@woomy.be> Change-Id: I72768f8325017e0f5b969a7eb03ccccbf4b7eae0 Signed-off-by: Shirayuki39 <lorddemecrius83@proton.me>
This commit is contained in:
parent
2d2117b8e6
commit
e70c4ebe78
|
@ -28,5 +28,12 @@ BOARD_VENDOR_RAMDISK_KERNEL_MODULES := $(addprefix $(KERNEL_PATH)/ramdisk/, $(BO
|
|||
BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD := $(strip $(shell cat $(KERNEL_PATH)/ramdisk/modules.load.recovery))
|
||||
RECOVERY_MODULES := $(addprefix $(KERNEL_PATH)/ramdisk/, $(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD))
|
||||
|
||||
# Prevent duplicated entries (to solve duplicated build rules problem)
|
||||
BOARD_VENDOR_RAMDISK_KERNEL_MODULES := $(sort $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES) $(RECOVERY_MODULES))
|
||||
|
||||
# Vendor modules (installed to vendor_dlkm)
|
||||
BOARD_VENDOR_KERNEL_MODULES_LOAD := $(strip $(shell cat $(KERNEL_PATH)/vendor_dlkm/modules.load))
|
||||
BOARD_VENDOR_KERNEL_MODULES := $(wildcard $(KERNEL_PATH)/vendor_dlkm/*.ko)
|
||||
|
||||
# Inherit the proprietary files
|
||||
include vendor/tecno/LG8n/BoardConfigVendor.mk
|
||||
|
|
Loading…
Reference in a new issue