target.bzl 503 B

12345678910111213141516171819
  1. load(":bt_kernel.bzl", "define_bt_modules")
  2. def define_pineapple():
  3. define_bt_modules(
  4. target = "pineapple",
  5. modules = [
  6. "btpower",
  7. "bt_fm_slim",
  8. "radio-i2c-rtc6226-qca",
  9. # "btfm_slim_codec",
  10. ],
  11. config_options = [
  12. "CONFIG_MSM_BT_POWER",
  13. "CONFIG_BTFM_SLIM",
  14. "CONFIG_I2C_RTC6226_QCA",
  15. # "CONFIG_SLIM_BTFM_CODEC",
  16. "CONFIG_BT_HW_SECURE_DISABLE",
  17. ]
  18. )