mirror of
https://github.com/openwrt/packages.git
synced 2025-01-31 00:12:09 +00:00
6ae8b15d68
Using https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git to download the source code. Added compile option to compile qrtr support. Enabled lto and additional gcc flags for perfomance and less size. Modified to use meson as upstream has abandoned autotools. Removed BUILD_PARALLEL options. These are default with ninja/meson. Signed-off-by: Maxim Anisimov <maxim.anisimov.ua@gmail.com>
31 lines
643 B
Plaintext
31 lines
643 B
Plaintext
menu "Configuration"
|
|
depends on PACKAGE_modemmanager
|
|
|
|
config MODEMMANAGER_WITH_MBIM
|
|
bool "Include MBIM support"
|
|
default y
|
|
help
|
|
Compile ModemManager with MBIM support
|
|
|
|
config MODEMMANAGER_WITH_QMI
|
|
bool "Include QMI support"
|
|
default y
|
|
help
|
|
Compile ModemManager with QMI support
|
|
|
|
config MODEMMANAGER_WITH_QRTR
|
|
bool "Include QRTR support"
|
|
default y
|
|
depends on MODEMMANAGER_WITH_QMI
|
|
select LIBQMI_WITH_QRTR_GLIB
|
|
help
|
|
Compile ModemManager with QRTR support
|
|
|
|
config MODEMMANAGER_WITH_AT_COMMAND_VIA_DBUS
|
|
bool "Allow AT commands via DBus"
|
|
default n
|
|
help
|
|
Compile ModemManager allowing AT commands without debug flag
|
|
|
|
endmenu
|