371f2aa0ed
The descriptions in this package have grown pretty confusing over time. Try to make this a bit more consistent and up-to-date. * drop references to old kernel versions not supported by BR anymore * Remove "Bluez 5.x" string from options * consistently use the term "plugin" (plugins implement profiles) * make mentioned profile appreviations upper-case * make descriptions closer to the ones in BlueZ Readme [0] * make clear that "tests" refers to the python test scripts [0] https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/README?h=5.58 Signed-off-by: Michael Nosthoff <buildroot@heine.tech> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> [Arnout: - remove more 5.x references; - Use official spelling BlueZ in main help text]
120 lines
3.2 KiB
Plaintext
120 lines
3.2 KiB
Plaintext
config BR2_PACKAGE_BLUEZ5_UTILS
|
|
bool "bluez-utils"
|
|
depends on BR2_USE_WCHAR # libglib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
|
|
depends on BR2_USE_MMU # dbus
|
|
depends on !BR2_STATIC_LIBS # uses dlfcn
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
select BR2_PACKAGE_DBUS
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
help
|
|
BlueZ utils
|
|
|
|
Provides Stack, Library and Tooling for Bluetooth Classic
|
|
and Bluetooth LE.
|
|
|
|
BlueZ utils will use systemd and/or udev if enabled.
|
|
|
|
http://www.bluez.org
|
|
http://www.kernel.org/pub/linux/bluetooth
|
|
|
|
if BR2_PACKAGE_BLUEZ5_UTILS
|
|
|
|
config BR2_PACKAGE_BLUEZ5_UTILS_OBEX
|
|
bool "build OBEX support"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
select BR2_PACKAGE_LIBICAL
|
|
help
|
|
Enable OBEX support.
|
|
|
|
comment "OBEX support needs a toolchain w/ C++"
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|
|
|
|
config BR2_PACKAGE_BLUEZ5_UTILS_CLIENT
|
|
bool "build CLI client"
|
|
select BR2_PACKAGE_READLINE
|
|
help
|
|
Build the command line client "bluetoothctl".
|
|
|
|
config BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
|
|
bool "install deprecated tools"
|
|
depends on BR2_PACKAGE_BLUEZ5_UTILS_CLIENT
|
|
help
|
|
Build deprecated tools. These currently include:
|
|
hciattach, hciconfig, hcitool, hcidump, rfcomm, sdptool,
|
|
ciptool, gatttool.
|
|
|
|
config BR2_PACKAGE_BLUEZ5_UTILS_EXPERIMENTAL
|
|
bool "build experimental tools"
|
|
help
|
|
Build experimental tools. This is currently only the
|
|
"Nokia OBEX PC Suite tool". So, only if OBEX support is
|
|
enabled this option has an effect.
|
|
|
|
config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
|
|
bool "build health plugin"
|
|
help
|
|
Build plugin for health profiles.
|
|
|
|
config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MESH
|
|
bool "build mesh plugin"
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12 # ell
|
|
select BR2_PACKAGE_ELL
|
|
select BR2_PACKAGE_JSON_C
|
|
select BR2_PACKAGE_READLINE
|
|
help
|
|
Build plugin for Mesh support.
|
|
|
|
comment "mesh profile needs a toolchain w/ headers >= 4.12"
|
|
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12
|
|
|
|
config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
|
|
bool "build midi plugin"
|
|
select BR2_PACKAGE_ALSA_LIB
|
|
select BR2_PACKAGE_ALSA_LIB_SEQ
|
|
help
|
|
Build MIDI support via ALSA sequencer.
|
|
|
|
config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
|
|
bool "build nfc plugin"
|
|
help
|
|
Build plugin for NFC pairing.
|
|
|
|
config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
|
|
bool "build sap plugin"
|
|
help
|
|
Build plugin for SAP profile.
|
|
|
|
config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
|
|
bool "build sixaxis plugin"
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
|
help
|
|
Build sixaxis plugin (support Sony Dualshock
|
|
controller)
|
|
|
|
comment "sixaxis plugin needs udev /dev management"
|
|
depends on !BR2_PACKAGE_HAS_UDEV
|
|
|
|
config BR2_PACKAGE_BLUEZ5_UTILS_TEST
|
|
bool "install test scripts"
|
|
help
|
|
Install the python test scripts from the "test" directory.
|
|
|
|
config BR2_PACKAGE_BLUEZ5_UTILS_TOOLS_HID2HCI
|
|
bool "build hid2hci tool"
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
|
help
|
|
Build hid2hci tool
|
|
|
|
comment "hid2hci tool needs udev /dev management"
|
|
depends on !BR2_PACKAGE_HAS_UDEV
|
|
|
|
endif
|
|
|
|
comment "bluez5-utils needs a toolchain w/ wchar, threads, headers >= 3.4, dynamic library"
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 || BR2_STATIC_LIBS
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on BR2_USE_MMU
|