blob: c2ea37a5c5c81bd451bdf4f76f3ccb0e99f72316 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
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
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=iucode-tool
11PKG_VERSION:=2.3.1
12PKG_RELEASE:=2
13
14PKG_SOURCE:=iucode-tool_$(PKG_VERSION).tar.xz
15PKG_SOURCE_URL:=https://gitlab.com/iucode-tool/releases/raw/latest
16PKG_HASH:=12b88efa4d0d95af08db05a50b3dcb217c0eb2bfc67b483779e33d498ddb2f95
17PKG_CPE_ID:=cpe:/a:iucode-tool_project:iucode-tool
18
19PKG_BUILD_DEPENDS:=USE_UCLIBC:argp-standalone USE_MUSL:argp-standalone
20HOST_BUILD_DEPENDS:=HOST_OS_MACOS:argp-standalone/host
21
22PKG_MAINTAINER:=Zoltan HERPAI <wigyori@uid0.hu>
23PKG_LICENSE:=GPL-2.0
24
25PKG_FLAGS:=nonshared
26
27PKG_INSTALL:=1
28
29include $(INCLUDE_DIR)/package.mk
30include $(INCLUDE_DIR)/host-build.mk
31
32define Package/iucode-tool
33 SECTION:=utils
34 CATEGORY:=Base system
35 URL:=$(PKG_SOURCE_URL)
36 DEPENDS:=@TARGET_x86
37 TITLE:=Intel microcode loader
38endef
39
40define Package/iucode-tool/install
41 $(INSTALL_DIR) $(1)/lib/firmware
42 $(INSTALL_DIR) $(1)/usr/bin
43 $(INSTALL_BIN) $(PKG_BUILD_DIR)/iucode_tool $(1)/usr/bin/
44endef
45
46# List of build hosts with working cpuid.h
47IUT_NATIVE_HOST_OS_ARCH := \
48 linux/x86_64 linux/amd64 linux/i386 linux/i686
49
50IUT_HOST_OS_ARCH := $(call tolower,$(HOST_OS))/$(HOST_ARCH)
51
52# Use cpuid.h compat header if build host does not have working cpuid.h
53ifeq ($(filter $(IUT_HOST_OS_ARCH),$(IUT_NATIVE_HOST_OS_ARCH)),)
54HOST_CFLAGS += \
55 -I$(HOST_BUILD_DIR)/cpuid-compat
56endif
57
58define Host/Install
59 $(INSTALL_BIN) $(HOST_BUILD_DIR)/iucode_tool $(STAGING_DIR_HOST)/bin/iucode_tool
60endef
61
62$(eval $(call HostBuild))
63$(eval $(call BuildPackage,iucode-tool))