forked from openkylin/platform_build
depmod: pair in a modules.load.charger on BOARD_VENDOR_CHARGER_KERNEL_MODULES_LOAD
If the BoardConfig defined BOARD_VENDOR_KERNEL_MODULES_LOAD and BOARD_VENDOR_CHARGER_KERNEL_MODULES_LOAD, generate both a modules.load and modules.load.charger respectively on /vendor/lib/modules. Signed-off-by: Mark Salyzyn <salyzyn@google.com> Bug: 159424228 Bug: 151950334 Test: build, confirm, change to charger mode, confirm set of modules loads Change-Id: I55677ed74d80ff3909fe8cbe26e6766f9b5283d5
This commit is contained in:
parent
be46f482e0
commit
46a9c028b8
|
@ -340,6 +340,15 @@ $(if $(filter top,$(1)),\
|
|||
$(call copy-many-files,$(call module-load-list-copy-paths,$(call intermediates-dir-for,PACKAGING,vendor_ramdisk_recovery_module_list$(_sep)$(_kver)),$(BOARD_VENDOR_RAMDISK_KERNEL_MODULES$(_sep)$(_kver)),$(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),modules.load.recovery,$(TARGET_VENDOR_RAMDISK_OUT))))
|
||||
endef
|
||||
|
||||
# $(1): kernel module directory name (top is an out of band value for no directory)
|
||||
define build-vendor-charger-load
|
||||
$(if $(filter top,$(1)),\
|
||||
$(eval _kver :=)$(eval _sep :=),\
|
||||
$(eval _kver := $(1))$(eval _sep :=_))\
|
||||
$(if $(BOARD_VENDOR_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\
|
||||
$(call copy-many-files,$(call module-load-list-copy-paths,$(call intermediates-dir-for,PACKAGING,vendor_charger_module_list$(_sep)$(_kver)),$(BOARD_VENDOR_CHARGER_KERNEL_MODULES$(_sep)$(_kver)),$(BOARD_VENDOR_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),modules.load.charger,$(TARGET_OUT_VENDOR))))
|
||||
endef
|
||||
|
||||
ifneq ($(BUILDING_VENDOR_BOOT_IMAGE),true)
|
||||
# If there is no vendor boot partition, store vendor ramdisk kernel modules in the
|
||||
# boot ramdisk.
|
||||
|
@ -375,6 +384,7 @@ $(foreach dir,$(BOARD_KERNEL_MODULE_DIRS), \
|
|||
$(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,VENDOR_RAMDISK,$(TARGET_VENDOR_RAMDISK_OUT),,modules.load,$(VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR),$(dir))) \
|
||||
$(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-ramdisk-recovery-load,$(dir))) \
|
||||
$(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,VENDOR,$(TARGET_OUT_VENDOR),vendor,modules.load,$(VENDOR_STRIPPED_MODULE_STAGING_DIR),$(dir))) \
|
||||
$(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-charger-load,$(dir))) \
|
||||
$(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,ODM,$(TARGET_OUT_ODM),odm,modules.load,,$(dir))) \
|
||||
$(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\
|
||||
$(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-recovery-as-boot-load,$(dir))),\
|
||||
|
|
Loading…
Reference in New Issue