1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- 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",
- ]
- )
- def define_blair():
- define_bt_modules(
- target = "blair",
- modules = [
- "btpower",
- "bt_fm_slim",
- "radio-i2c-rtc6226-qca",
- ],
- config_options = [
- "CONFIG_MSM_BT_POWER",
- "CONFIG_BTFM_SLIM",
- "CONFIG_I2C_RTC6226_QCA",
- "CONFIG_BT_HW_SECURE_DISABLE",
- ]
- )
- def define_pitti():
- define_bt_modules(
- target = "pitti",
- modules = [
- "btpower",
- "bt_fm_slim",
- "radio-i2c-rtc6226-qca",
- ],
- config_options = [
- "CONFIG_MSM_BT_POWER",
- "CONFIG_BTFM_SLIM",
- "CONFIG_I2C_RTC6226_QCA",
- "CONFIG_BT_HW_SECURE_DISABLE",
- ]
- )
- def define_niobe():
- define_bt_modules(
- target = "niobe",
- modules = [
- "btpower",
- "bt_fm_slim",
- "radio-i2c-rtc6226-qca",
- ],
- config_options = [
- "CONFIG_MSM_BT_POWER",
- "CONFIG_BTFM_SLIM",
- "CONFIG_I2C_RTC6226_QCA",
- "CONFIG_BT_HW_SECURE_DISABLE",
- ]
- )
- def define_anorak61():
- define_bt_modules(
- target = "anorak61",
- modules = [
- "btpower",
- "bt_fm_slim",
- "radio-i2c-rtc6226-qca",
- ],
- config_options = [
- "CONFIG_MSM_BT_POWER",
- "CONFIG_BTFM_SLIM",
- "CONFIG_I2C_RTC6226_QCA",
- "CONFIG_BT_HW_SECURE_DISABLE",
- ]
- )
|