mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 21:51:57 +00:00
To introduce the Bluetooth stack to the tree we need some additions to the configuration options, as well as the very basic header files. The patch also adds a skeleton for a bt_init() function that applications will need to call to initialize Bluetooth functionality. Change-Id: Ideb24dfea584b71f514e05eb47654b659776133e Co-authored-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
18 lines
388 B
Plaintext
18 lines
388 B
Plaintext
# nanokernel
|
|
ifeq (${vGOAL_NEEDS_TARGET_SETUP},y)
|
|
include ${vBASE}/arch/${vARCH}/defs.objs
|
|
endif
|
|
|
|
# microkernel
|
|
iDEFS_OBJS_MICROKERNEL_y = ${vBASE}/kernel/microkernel/defs.objs
|
|
include ${iDEFS_OBJS_MICROKERNEL_${CONFIG_MICROKERNEL}}
|
|
|
|
# networking
|
|
include ${vBASE}/net/defs.objs
|
|
|
|
# utilities
|
|
include ${vBASE}/kernel/common/util/defs.objs
|
|
|
|
# miscellaneous
|
|
include ${vBASE}/misc/defs.objs
|