Fix the following build failure raised since bump to version 1.20.2 in
commit b95334b71f
:
../output-1/build/modem-manager-1.20.2/meson.build:262:2: ERROR: Assert failed: QRTR support requires QMI enabled
Fixes:
- http://autobuild.buildroot.org/results/04b9a41c5edbc492ef640b27d4d3d896d230cf34
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
config BR2_PACKAGE_MODEM_MANAGER
|
|
bool "modem-manager"
|
|
depends on BR2_USE_WCHAR # libglib2 and gnutls
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
|
|
depends on BR2_USE_MMU # dbus
|
|
select BR2_PACKAGE_DBUS
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
select BR2_PACKAGE_LIBGUDEV if BR2_PACKAGE_HAS_UDEV
|
|
help
|
|
ModemManager is a DBus-activated daemon which controls mobile
|
|
broadband (2G/3G/4G) devices and connections.
|
|
|
|
http://www.freedesktop.org/wiki/Software/ModemManager/
|
|
|
|
if BR2_PACKAGE_MODEM_MANAGER
|
|
|
|
config BR2_PACKAGE_MODEM_MANAGER_LIBMBIM
|
|
bool "MBIM support"
|
|
select BR2_PACKAGE_LIBMBIM
|
|
help
|
|
This option enables support for MBIM protocol
|
|
|
|
config BR2_PACKAGE_MODEM_MANAGER_LIBQMI
|
|
bool "QMI support"
|
|
select BR2_PACKAGE_LIBQMI
|
|
help
|
|
This option enables support for QMI protocol
|
|
|
|
config BR2_PACKAGE_MODEM_MANAGER_LIBQRTR
|
|
bool "QRTR support"
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_15 # libqrtr-glib
|
|
select BR2_PACKAGE_LIBQRTR_GLIB
|
|
select BR2_PACKAGE_MODEM_MANAGER_LIBQMI
|
|
help
|
|
This option enables support for QRTR protocol
|
|
|
|
comment "QRTR support needs a toolchain w/ headers >= 4.15"
|
|
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_15
|
|
|
|
endif
|
|
|
|
comment "modemmanager needs a toolchain w/ wchar, threads"
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU
|