You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
465 B
13 lines
465 B
TARGET_KERNEL_USE ?= 5.10
|
|
|
|
KERNEL_MODULES_PATH := kernel/prebuilts/common-modules/virtual-device/$(TARGET_KERNEL_USE)/x86-64
|
|
|
|
KERNEL_MODULES_EXCLUDE := \
|
|
$(KERNEL_MODULES_PATH)/virt_wifi.ko \
|
|
$(KERNEL_MODULES_PATH)/virt_wifi_sim.ko
|
|
|
|
BOARD_VENDOR_RAMDISK_KERNEL_MODULES += \
|
|
$(filter-out $(KERNEL_MODULES_EXCLUDE), $(wildcard $(KERNEL_MODULES_PATH)/*.ko))
|
|
|
|
EMULATOR_KERNEL_FILE := kernel/prebuilts/$(TARGET_KERNEL_USE)/x86_64/kernel-$(TARGET_KERNEL_USE)
|