comgt-ncm: do not attempt to connect if the control device is invalid
[oweals/openwrt.git] / package / system / iucode-tool / Makefile
1 #
2 # Copyright (C) 2018 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=iucode-tool
11 PKG_VERSION:=2.3.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=iucode-tool_$(PKG_VERSION).tar.xz
15 PKG_SOURCE_URL:=https://gitlab.com/iucode-tool/releases/raw/latest
16 PKG_HASH:=12b88efa4d0d95af08db05a50b3dcb217c0eb2bfc67b483779e33d498ddb2f95
17
18 PKG_BUILD_DEPENDS:=USE_UCLIBC:argp-standalone USE_MUSL:argp-standalone
19
20 PKG_MAINTAINER:=Zoltan HERPAI <wigyori@uid0.hu>
21 PKG_LICENSE:=GPL-2.0
22
23 PKG_INSTALL:=1
24
25 include $(INCLUDE_DIR)/package.mk
26 include $(INCLUDE_DIR)/host-build.mk
27
28 define Package/iucode-tool
29   SECTION:=utils
30   CATEGORY:=Base system
31   URL:=$(PKG_SOURCE_URL)
32   DEPENDS:=@TARGET_x86
33   TITLE:=Intel microcode loader
34 endef
35
36 define Package/iucode-tool/install
37         $(INSTALL_DIR) $(1)/lib/firmware
38         $(INSTALL_DIR) $(1)/usr/bin
39         $(INSTALL_BIN) $(PKG_BUILD_DIR)/iucode_tool $(1)/usr/bin/
40 endef
41
42 define Host/Install
43         $(INSTALL_BIN) $(HOST_BUILD_DIR)/iucode_tool $(STAGING_DIR_HOST)/bin/iucode_tool
44 endef
45
46 $(eval $(call HostBuild))
47 $(eval $(call BuildPackage,iucode-tool))