
- add support to copy *.ko to out dir - enable conditional compilation with config flags - enable CONFIG_BT_HW_SECURE_DISABLE with dependency on securemsm-kernel - re-enable compilation of bt_fm_slim with new headers - add fallthrough attribute btfm_slim_hw_interface.c - move BTFMSLIM_DEV_NAME to btfm_slim.h - add target.bzl file to define specific targets Change-Id: I7f7920870d81125f95b020ef33df77df3f937682 Signed-off-by: Franklin Abreu Bueno <quic_fabreu@quicinc.com>
20 lines
503 B
Python
20 lines
503 B
Python
load(":bt_kernel.bzl", "define_bt_modules")
|
|
|
|
def define_pineapple():
|
|
define_bt_modules(
|
|
target = "pineapple",
|
|
modules = [
|
|
"btpower",
|
|
"bt_fm_slim",
|
|
"radio-i2c-rtc6226-qca",
|
|
# "btfm_slim_codec",
|
|
],
|
|
config_options = [
|
|
"CONFIG_MSM_BT_POWER",
|
|
"CONFIG_BTFM_SLIM",
|
|
"CONFIG_I2C_RTC6226_QCA",
|
|
# "CONFIG_SLIM_BTFM_CODEC",
|
|
"CONFIG_BT_HW_SECURE_DISABLE",
|
|
]
|
|
)
|