Initialize SDP, register to L2CAP and accept incoming connections Change-Id: I568db63910d9e6ff418581b9943d528d4260b859 Signed-off-by: Kaustav Dey Biswas <kaustav.d.biswas@intel.com>
35 lines
719 B
Makefile
35 lines
719 B
Makefile
ccflags-y +=-I$(srctree)/include/drivers
|
|
|
|
obj-$(CONFIG_BLUETOOTH_STACK_HCI) += \
|
|
uuid.o \
|
|
hci_core.o
|
|
|
|
obj-$(CONFIG_BLUETOOTH_STACK_HCI_RAW) += \
|
|
hci_raw.o
|
|
|
|
obj-$(CONFIG_BLUETOOTH_DEBUG) += log.o
|
|
|
|
obj-$(CONFIG_BLUETOOTH_DEBUG_MONITOR) += monitor.o
|
|
|
|
obj-$(CONFIG_BLUETOOTH_TINYCRYPT_ECC) += hci_ecc.o
|
|
|
|
ifeq ($(CONFIG_BLUETOOTH_CONN),y)
|
|
obj-y += conn.o l2cap.o att.o gatt.o
|
|
|
|
ifeq ($(CONFIG_BLUETOOTH_SMP),y)
|
|
obj-y += smp.o keys.o
|
|
else
|
|
obj-y += smp_null.o
|
|
endif
|
|
|
|
obj-$(CONFIG_BLUETOOTH_BREDR) += keys_br.o l2cap_br.o avdtp.o sdp.o
|
|
|
|
obj-$(CONFIG_BLUETOOTH_RFCOMM) += rfcomm.o
|
|
|
|
obj-$(CONFIG_BLUETOOTH_HFP_HF) += hfp_hf.o
|
|
|
|
obj-$(CONFIG_BLUETOOTH_AVDTP) += avdtp.o
|
|
|
|
obj-$(CONFIG_BLUETOOTH_A2DP) += a2dp.o
|
|
endif
|