qca: add QRTR tools

Package QCA-s QRTR tools that come in handy when debugging.

Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
Robert Marko 2022-12-04 13:08:17 +01:00
parent 9fbdee3f62
commit 8e37e79806

32
qca/qrtr/Makefile Normal file
View File

@ -0,0 +1,32 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=qrtr
PKG_RELEASE:=$(AUTORELEASE)
PKG_SOURCE_URL:=https://git.codelinaro.org/clo/qsdk/qrtr.git
PKG_SOURCE_PROTO:=git
PKG_SOURCE_DATE:=2029-07-25
PKG_SOURCE_VERSION:=cd6bedd5d00f211e6c1e3803ff2f9f53c246435e
PKG_MIRROR_HASH:=55239998e6a63ce2bb7daf59060162c3a5da5d2709d9b6ee8ea6908fe50b14ab
include $(INCLUDE_DIR)/package.mk
define Package/qrtr
SECTION:=utils
CATEGORY:=Utilities
TITLE:=QRTR tools
DEPENDS:=@(TARGET_ipq807x)
endef
define Package/qrtr/description
Set of QRTR related configuration and debugging tools.
endef
define Package/qrtr/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/qrtr-cfg $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/qrtr-lookup $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/qrtr-ns $(1)/usr/sbin
endef
$(eval $(call BuildPackage,qrtr))