mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-17 22:31:12 +01:00
Some checks are pending
Build all core packages / Build all core packages for selected target (push) Waiting to run
7914da4 uqmi: extend wda-get-data-format 7aef645 wda: add option for enabling flow-control f74ddb3 wds: implement retrieval of profile list 6be8b6e wds: implement selection of LTE attach PDNs 21c4aaa wds: implement selection of default profile 5c844c0 wds: implement profile deletion 0756755 wds: reduce code duplication 283fbe0 data: add downlink padding option 4b90804 wda: allow agggregation parameter configuration c20c017 uqmi: enable binding WDS sessions to QMAP multiplex a1b37fe uqmi: fix whitespace errors Signed-off-by: David Bauer <mail@david-bauer.net>
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=uqmi
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/uqmi.git
|
|
PKG_SOURCE_DATE:=2025-07-30
|
|
PKG_SOURCE_VERSION:=7914da43cddaaf6cfba116260c81e6e9adffd5ab
|
|
PKG_MIRROR_HASH:=5972a5f90bd60d34b5c7a8cec14ae98f13dbb6ea5b35d845ce5da7a8a3b0e59c
|
|
PKG_MAINTAINER:=Matti Laakso <malaakso@elisanet.fi>
|
|
|
|
PKG_LICENSE:=GPL-2.0
|
|
PKG_LICENSE_FILES:=
|
|
|
|
PKG_FLAGS:=nonshared
|
|
PKG_BUILD_FLAGS:=gc-sections
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/uqmi
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=WWAN
|
|
DEPENDS:=+libubox +libblobmsg-json +kmod-usb-net +kmod-usb-net-qmi-wwan +wwan
|
|
TITLE:=Control utility for mobile broadband modems
|
|
endef
|
|
|
|
define Package/uqmi/description
|
|
uqmi is a command line tool for controlling mobile broadband modems using
|
|
the QMI-protocol.
|
|
endef
|
|
|
|
TARGET_CFLAGS += \
|
|
-I$(STAGING_DIR)/usr/include \
|
|
-Wno-error=maybe-uninitialized
|
|
|
|
CMAKE_OPTIONS += \
|
|
-DDEBUG=1
|
|
|
|
define Package/uqmi/install
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/uqmi/uqmi $(1)/sbin/
|
|
$(CP) ./files/* $(1)/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,uqmi))
|