From 4b43f920127598b456c656fa18e7ed84ab9d1c74 Mon Sep 17 00:00:00 2001 From: Zoltan HERPAI Date: Mon, 8 Jan 2018 15:37:02 +0100 Subject: [PATCH] tools: add iucode-tool Add tool to "compile" Intel microcode files. Signed-off-by: Zoltan HERPAI --- tools/iucode-tool/Makefile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tools/iucode-tool/Makefile diff --git a/tools/iucode-tool/Makefile b/tools/iucode-tool/Makefile new file mode 100644 index 0000000000..c576b61c05 --- /dev/null +++ b/tools/iucode-tool/Makefile @@ -0,0 +1,31 @@ +# +# Copyright (C) 2018 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=iucode-tool +PKG_VERSION:=2.2 +PKG_RELEASE:=1 + +PKG_SOURCE:=iucode-tool_$(PKG_VERSION).tar.xz +PKG_SOURCE_URL:=https://gitlab.com/iucode-tool/releases/raw/latest +PKG_HASH:=9810daf925b8a9ca244adc4e1916bcab65601c9ebe87e91c2281f78055982971 + +PKG_BUILD_DEPENDS:=USE_UCLIBC:argp-standalone USE_MUSL:argp-standalone + +PKG_MAINTAINER:=Zoltan HERPAI +PKG_LICENSE:=GPL-2.0 + +PKG_INSTALL:=1 + +include $(INCLUDE_DIR)/host-build.mk + +define Host/Install + $(INSTALL_BIN) $(HOST_BUILD_DIR)/iucode_tool $(STAGING_DIR_HOST)/bin/iucode_tool +endef + +$(eval $(call HostBuild)) -- 2.30.2