package/modem-manager: Add option to enable AT commands via D-Bus

Signed-off-by: Stefan Nickl <Stefan.Nickl@gmail.com>
Reviewed-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Stefan Nickl
2025-07-29 19:26:39 +02:00
committed by Julien Olivain
parent 9440bf5a62
commit f103e3696f
2 changed files with 12 additions and 0 deletions

View File

@@ -38,6 +38,12 @@ config BR2_PACKAGE_MODEM_MANAGER_LIBQRTR
comment "QRTR support needs a toolchain w/ headers >= 4.15"
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_15
config BR2_PACKAGE_MODEM_MANAGER_ATVIADBUS
bool "at-via-dbus support"
help
This option enables support for issuing AT commands
over the D-Bus interface.
endif
comment "modemmanager needs a toolchain w/ wchar, threads, dynamic library"

View File

@@ -48,6 +48,12 @@ else
MODEM_MANAGER_CONF_OPTS += -Dqrtr=false
endif
ifeq ($(BR2_PACKAGE_MODEM_MANAGER_ATVIADBUS),y)
MODEM_MANAGER_CONF_OPTS += -Dat_command_via_dbus=true
else
MODEM_MANAGER_CONF_OPTS += -Dat_command_via_dbus=false
endif
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
MODEM_MANAGER_DEPENDENCIES += systemd
MODEM_MANAGER_CONF_OPTS += \