mirror of
https://github.com/openwrt/packages.git
synced 2025-12-22 01:44:32 +04:00
This change introduces an optional configuration of the netifd integration in the ModemManager package. When disabled, it removes the NETIFD dependency and other unwanted components from the root filesystem during the build phase. Additionally, in the modemmanager.common the netifd-proto.sh inclusion line can be savely removed as there is no usage of it in its functions. Signed-off-by: Gilles Lenaerts <gilles.lenaerts_ext@softathome.com>
37 lines
771 B
Plaintext
37 lines
771 B
Plaintext
menu "Configuration"
|
|
depends on PACKAGE_modemmanager
|
|
|
|
config MODEMMANAGER_WITH_NETIFD
|
|
bool "Include netifd support"
|
|
default y
|
|
help
|
|
Provide ModemManager with netifd support
|
|
|
|
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
|