summaryrefslogtreecommitdiff
path: root/audio_kernel_vendor_board.mk
blob: 5a649c3c4d14ec020243063477123941fd1ece53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
AUDIO_DLKM_ENABLE := false
ifeq ($(TARGET_KERNEL_DLKM_DISABLE), true)
  ifeq ($(TARGET_KERNEL_DLKM_AUDIO_OVERRIDE),true)
    AUDIO_DLKM_ENABLE := true
  endif
else
  ifeq ($(TARGET_KERNEL_DLKM_AUDIO_OVERRIDE),true)
    AUDIO_DLKM_ENABLE := true
  endif
endif

ifeq ($(AUDIO_DLKM_ENABLE), true)
  ifeq ($(call is-board-platform-in-list,taro kalama bengal monaco), true)
    include vendor/qcom/opensource/audio-kernel/audio_kernel_modules.mk
  endif
  ifeq ($(ENABLE_AUDIO_LEGACY_TECHPACK),true)
    include vendor/qcom/opensource/audio-kernel/legacy/audio_kernel_modules.mk
  endif
  BOARD_VENDOR_KERNEL_MODULES += $(AUDIO_KERNEL_MODULES)
endif