Hi,
Currently I'm working on imx8qm MEK with Android Auto 13, linux kernel version is v6.1.25.
I am trying to enable bluetooth function on the board by connecting a bluetooth USB dongle rtl8761bu.
To recognize the device and bring out the driver, btusb.ko and btrtl.ko are both necessary for this.
Here is my setting:
- arch/arm64/configs/gki_defconfig
CONFIG_BT=m
CONFIG_BT_RTL=m
CONFIG_BT_HCIUART=m
CONFIG_BT_HCIBTUSB=m
CONFIG_BT_HCIBTUSB_RTL=y
- drivers/bluetooth/Makefile
-obj-$(CONFIG_BT_HCIBTUSB) += btusb.o
+obj-m += btusb.o
-obj-$(CONFIG_BT_RTL) += btrtl.o
+obj-m += btrtl.o
After compile the kernel, both kernel modules are missing in the driver folder, why?