mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 14:37:57 +00:00
4002a6aa76
Update restool to latest LSDK-21.08. Signed-off-by: Martin Schiller <ms@dev.tdt.de>
40 lines
905 B
Makefile
40 lines
905 B
Makefile
#
|
|
# Copyright 2017 NXP
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=restool
|
|
PKG_VERSION:=LSDK-21.08
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://source.codeaurora.org/external/qoriq/qoriq-components/restool
|
|
PKG_SOURCE_VERSION:=LSDK-21.08
|
|
PKG_MIRROR_HASH:=d793defa2e4cf907bebe7761d88feb2ac94e0ecdaabdb3bbc9dda83a82046bc5
|
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/restool
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Layerscape DPAA2 dynamical management tool
|
|
DEPENDS:=@TARGET_layerscape_armv8_64b
|
|
endef
|
|
|
|
MAKE_FLAGS += \
|
|
DESTDIR="$(PKG_BUILD_DIR)"/output/ \
|
|
install
|
|
|
|
define Package/restool/install
|
|
$(INSTALL_DIR) $(1)/usr/bin/
|
|
$(CP) $(PKG_BUILD_DIR)/output/usr/local/bin/* $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,restool))
|