2014-05-28 19:45:20 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=uqmi
|
2018-09-15 17:16:52 +00:00
|
|
|
PKG_RELEASE:=4
|
2014-05-28 19:45:20 +00:00
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2018-01-05 09:46:06 +00:00
|
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/uqmi.git
|
2016-12-21 21:25:41 +00:00
|
|
|
PKG_SOURCE_DATE:=2016-12-19
|
2016-12-19 08:34:20 +00:00
|
|
|
PKG_SOURCE_VERSION:=8ceeab690d8c6f1e3afbd4bcaee7bc2ba3fbe165
|
2016-12-21 21:25:41 +00:00
|
|
|
PKG_MIRROR_HASH:=b3637ff04e51769137af1c5e173e73311e11c3c2dcc49eeaca6aa3520f61d247
|
2014-05-28 19:45:20 +00:00
|
|
|
PKG_MAINTAINER:=Matti Laakso <malaakso@elisanet.fi>
|
|
|
|
|
2014-11-02 12:20:54 +00:00
|
|
|
PKG_LICENSE:=GPL-2.0
|
2014-05-28 19:45:20 +00:00
|
|
|
PKG_LICENSE_FILES:=
|
|
|
|
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
|
2017-01-13 11:07:53 +00:00
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
|
2014-05-28 19:45:20 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
|
|
|
|
define Package/uqmi
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2016-11-03 10:31:15 +00:00
|
|
|
SUBMENU:=WWAN
|
2017-01-11 18:47:33 +00:00
|
|
|
DEPENDS:=+libubox +libblobmsg-json +kmod-usb-net +kmod-usb-net-qmi-wwan +wwan
|
2014-05-28 19:45:20 +00:00
|
|
|
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 += \
|
2014-06-07 19:14:17 +00:00
|
|
|
-I$(STAGING_DIR)/usr/include -ffunction-sections -fdata-sections
|
|
|
|
|
|
|
|
TARGET_LDFLAGS += -Wl,--gc-sections
|
2014-05-28 19:45:20 +00:00
|
|
|
|
|
|
|
CMAKE_OPTIONS += \
|
|
|
|
-DDEBUG=1
|
|
|
|
|
|
|
|
define Package/uqmi/install
|
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/uqmi $(1)/sbin/
|
|
|
|
$(CP) ./files/* $(1)/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,uqmi))
|