diff options
author | tte_zheng_wenlong <wenlong_zheng_za@mail.toyota.co.jp> | 2017-03-15 13:25:26 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-03-17 21:51:14 +0000 |
commit | e1a7d95053b7f19a2a7d9bf4da7625a4154c57e3 (patch) | |
tree | a26843266f3701d0a44dfaa346c879a7c4f7228b /meta-agl-bsp/meta-core | |
parent | 2c41fccae6bd195cb035e96f8feda9f0c73cdf1f (diff) |
Add kernel config for uart bluetooth device support
Change-Id: Idb61c0f1f52ca9fb6b1afd50e4a397678971f6e5
Signed-off-by: tte_zheng_wenlong <wenlong_zheng_za@mail.toyota.co.jp>
Diffstat (limited to 'meta-agl-bsp/meta-core')
-rwxr-xr-x | meta-agl-bsp/meta-core/recipes-kernel/linux/linux-yocto/hciattach.cfg | 17 | ||||
-rwxr-xr-x | meta-agl-bsp/meta-core/recipes-kernel/linux/linux-yocto_%.bbappend | 5 |
2 files changed, 22 insertions, 0 deletions
diff --git a/meta-agl-bsp/meta-core/recipes-kernel/linux/linux-yocto/hciattach.cfg b/meta-agl-bsp/meta-core/recipes-kernel/linux/linux-yocto/hciattach.cfg new file mode 100755 index 000000000..c9c4fe2ed --- /dev/null +++ b/meta-agl-bsp/meta-core/recipes-kernel/linux/linux-yocto/hciattach.cfg @@ -0,0 +1,17 @@ +# +# Bluetooth device drivers +# +CONFIG_BT_INTEL=m +CONFIG_BT_BCM=m +CONFIG_BT_RTL=m +CONFIG_BT_HCIBTUSB=m +CONFIG_BT_HCIBTUSB_BCM=y +CONFIG_BT_HCIBTUSB_RTL=y +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_H4=y +CONFIG_BT_HCIUART_BCSP=y + +# +# USB port drivers +# +CONFIG_USB_SERIAL_CP210X=y diff --git a/meta-agl-bsp/meta-core/recipes-kernel/linux/linux-yocto_%.bbappend b/meta-agl-bsp/meta-core/recipes-kernel/linux/linux-yocto_%.bbappend new file mode 100755 index 000000000..99c9581b2 --- /dev/null +++ b/meta-agl-bsp/meta-core/recipes-kernel/linux/linux-yocto_%.bbappend @@ -0,0 +1,5 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/linux-yocto:" + +# Extra configuration options for the QEMU kernel +SRC_URI += "file://hciattach.cfg \ + " |