1config BR2_PACKAGE_OFONO 2 bool "ofono" 3 depends on BR2_USE_WCHAR # gettext, libglib2, ell 4 depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2 5 depends on BR2_USE_MMU # dbus, libglib2 6 depends on !BR2_STATIC_LIBS # dlopen(), ell 7 depends on BR2_TOOLCHAIN_HAS_SYNC_4 8 depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12 # ell 9 select BR2_PACKAGE_DBUS 10 select BR2_PACKAGE_ELL 11 select BR2_PACKAGE_LIBCAP_NG 12 select BR2_PACKAGE_LIBGLIB2 13 select BR2_PACKAGE_MOBILE_BROADBAND_PROVIDER_INFO 14 help 15 oFono is a free, open source project for mobile telephony 16 (GSM/UMTS) applications. It uses high-level D-Bus API for 17 use by telephony applications. It uses 3GPP standard. 18 19 http://ofono.org/ 20 21comment "ofono needs a toolchain w/ dynamic library, wchar, threads, headers >= 4.12" 22 depends on BR2_USE_MMU 23 depends on BR2_TOOLCHAIN_HAS_SYNC_4 24 depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR || \ 25 !BR2_TOOLCHAIN_HAS_THREADS || \ 26 !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12 27