summaryrefslogtreecommitdiff
path: root/db845c.mk
diff options
context:
space:
mode:
authorJohn Stultz <john.stultz@linaro.org>2020-01-31 23:51:58 +0000
committerJohn Stultz <john.stultz@linaro.org>2020-01-31 23:55:19 +0000
commit59657d5db30d4e274e4a77cd38049e021eb28241 (patch)
treef9fe62b3dcb24510d0f7cf157b07380a001d42f0 /db845c.mk
parent2088921ae243be334488ceefd5a11b5e7c122b8b (diff)
db845c: Wire in bluetooth support
The qca bluetooth module has some yet to be determined issue which causes deferred firmware loading to stop it from working. But as long as the bluetooth module is loaded from the vendor partition where the bluetooth firmware is present, it can be made to load and function. This patch updates the bluetooth hal version and adds a trick to exclude the qca and hci_uart modules from being on the ramdisk. Note: Bluetooth audio isn't working yet. Devices pair but I don't hear audio yet. Change-Id: I37e927485414368b817958dfef2137fc263003a0 Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'db845c.mk')
-rw-r--r--db845c.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/db845c.mk b/db845c.mk
index a4984f0..6e360ee 100644
--- a/db845c.mk
+++ b/db845c.mk
@@ -22,6 +22,7 @@ ifeq ($(DB845C_USES_GKI), true)
DB845C_MODS := $(wildcard $(DB845C_KERNEL_DIR)/*.ko)
ifneq ($(DB845C_MODS),)
BOARD_VENDOR_KERNEL_MODULES += $(DB845C_MODS)
- BOARD_VENDOR_RAMDISK_KERNEL_MODULES += $(DB845C_MODS)
+ DB845C_ONLY_VENDOR := %/btqca.ko %/hci_uart.ko
+ BOARD_VENDOR_RAMDISK_KERNEL_MODULES := $(filter-out $(DB845C_ONLY_VENDOR),$(DB845C_MODS))
endif
endif