Files
android_kernel_samsung_sm86…/target.bzl
Franklin Abreu Bueno 176b51aefa bt-kernel: Additional bazel configuration
- 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>
2023-04-08 20:36:07 -07:00

20 regels
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",
]
)