Merge "Enable Bazel in HALIDAY 3.0" into bt-kernel.lnx.14.0

This commit is contained in:
CNSS_WLAN Service
2024-05-24 07:45:46 -07:00
committed by Gerrit - the friendly Code Review server
3 changed files with 21 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
LOCAL_PATH := $(call my-dir)
# Build/Package only in case of supported target
ifeq ($(call is-board-platform-in-list,taro kalama pineapple blair pitti volcano niobe), true)
ifeq ($(call is-board-platform-in-list,taro kalama pineapple blair pitti volcano niobe anorak61), true)
BT_SELECT := CONFIG_MSM_BT_POWER=m
#ifdef CONFIG_SLIMBUS

View File

@@ -11,3 +11,7 @@ ddk_headers(
load(":target.bzl", "define_pineapple")
define_pineapple()
load(":target.bzl", "define_anorak61")
define_anorak61()

View File

@@ -65,3 +65,19 @@ def define_niobe():
"CONFIG_BT_HW_SECURE_DISABLE",
]
)
def define_anorak61():
define_bt_modules(
target = "anorak",
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",
]
)