diff options
author | Alberto Bursi <alberto.bursi@outlook.it> | 2019-10-31 14:03:47 +0100 |
---|---|---|
committer | Alberto Bursi <alberto.bursi@outlook.it> | 2019-10-31 14:03:47 +0100 |
commit | 9f15a632c0d159721a0cc6705e26e1bb7042f5a1 (patch) | |
tree | c559e7b17d4d545499aace82d969b9f8933d7878 /net | |
parent | 5ae85b79526d4b0197d3581d349a2f7b6932bd52 (diff) |
modemmanager: enable mbim/qmi support by default
MBIM and QMI support (necessary for modern and
high-performance LTE modems) should be default
y otherwise the only way to use modemmanager
with these protocols is to recompile the package.
This is very inconvenient for most end users.
Also fix typo in PKG_HASH definition.
Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
Diffstat (limited to 'net')
-rw-r--r-- | net/modemmanager/Config.in | 4 | ||||
-rw-r--r-- | net/modemmanager/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/net/modemmanager/Config.in b/net/modemmanager/Config.in index 3b4a255a7..28e65a319 100644 --- a/net/modemmanager/Config.in +++ b/net/modemmanager/Config.in @@ -3,13 +3,13 @@ depends on PACKAGE_modemmanager config MODEMMANAGER_WITH_MBIM bool "Include MBIM support" - default n + default y help Compile ModemManager with MBIM support config MODEMMANAGER_WITH_QMI bool "Include QMI support" - default n + default y help Compile ModemManager with QMI support endmenu diff --git a/net/modemmanager/Makefile b/net/modemmanager/Makefile index b3416e744..26b24ae16 100644 --- a/net/modemmanager/Makefile +++ b/net/modemmanager/Makefile @@ -9,11 +9,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=modemmanager PKG_VERSION:=1.10.6 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=ModemManager-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://www.freedesktop.org/software/ModemManager -PKG_HASH=3c2ca73782215664141042422759899ca9846440fc26d6223c7cf7ea4dd3c996 +PKG_HASH:=3c2ca73782215664141042422759899ca9846440fc26d6223c7cf7ea4dd3c996 PKG_BUILD_DIR:=$(BUILD_DIR)/ModemManager-$(PKG_VERSION) PKG_MAINTAINER:=Nicholas Smith <nicholas.smith@telcoantennas.com.au> |