]>
Commit | Line | Data |
---|---|---|
04092fa3 SM |
1 | config BR2_PACKAGE_OPENOBEX |
2 | bool "openobex" | |
3 | depends on BR2_INET_IPV6 | |
4 | help | |
5 | Free open source implementation of the Object Exchange (OBEX) | |
6 | protocol. | |
7 | ||
8 | http://www.openobex.org | |
9 | ||
10 | if BR2_PACKAGE_OPENOBEX | |
11 | ||
04092fa3 SM |
12 | config BR2_PACKAGE_OPENOBEX_BLUEZ |
13 | bool "enable bluez support" | |
14 | depends on !BR2_avr32 | |
15 | depends on BR2_USE_WCHAR # libglib2 | |
51788521 | 16 | depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, alsa-lib, libglib2 |
04092fa3 SM |
17 | depends on BR2_USE_MMU # dbus |
18 | select BR2_PACKAGE_BLUEZ_UTILS | |
19 | ||
51788521 SG |
20 | comment "bluez support require a toolchain with WCHAR and thread support" |
21 | depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS | |
04092fa3 SM |
22 | |
23 | config BR2_PACKAGE_OPENOBEX_LIBUSB | |
24 | bool "enable libusb support" | |
25 | depends on BR2_TOOLCHAIN_HAS_THREADS | |
26 | select BR2_PACKAGE_LIBUSB | |
27 | ||
51788521 SG |
28 | comment "libusb support require a toolchain with thread support" |
29 | depends on !BR2_TOOLCHAIN_HAS_THREADS | |
30 | ||
04092fa3 SM |
31 | config BR2_PACKAGE_OPENOBEX_APPS |
32 | bool "install test applications" | |
33 | help | |
34 | Also install the openobex test applications on target. | |
35 | ||
36 | config BR2_PACKAGE_OPENOBEX_SYSLOG | |
37 | bool "enable debugging to the system logger" | |
38 | ||
39 | config BR2_PACKAGE_OPENOBEX_DUMP | |
40 | bool "enable protocol dumping for debugging" | |
41 | ||
42 | endif | |
51788521 SG |
43 | |
44 | comment "openobex requires a toolchain with IPV6 support" | |
45 | depends on !BR2_INET_IPV6 |