b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame] | 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:=2 |
| 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 | PKG_CPE_ID:=cpe:/a:iucode-tool_project:iucode-tool |
| 18 | |
| 19 | PKG_BUILD_DEPENDS:=USE_UCLIBC:argp-standalone USE_MUSL:argp-standalone |
| 20 | HOST_BUILD_DEPENDS:=HOST_OS_MACOS:argp-standalone/host |
| 21 | |
| 22 | PKG_MAINTAINER:=Zoltan HERPAI <wigyori@uid0.hu> |
| 23 | PKG_LICENSE:=GPL-2.0 |
| 24 | |
| 25 | PKG_FLAGS:=nonshared |
| 26 | |
| 27 | PKG_INSTALL:=1 |
| 28 | |
| 29 | include $(INCLUDE_DIR)/package.mk |
| 30 | include $(INCLUDE_DIR)/host-build.mk |
| 31 | |
| 32 | define Package/iucode-tool |
| 33 | SECTION:=utils |
| 34 | CATEGORY:=Base system |
| 35 | URL:=$(PKG_SOURCE_URL) |
| 36 | DEPENDS:=@TARGET_x86 |
| 37 | TITLE:=Intel microcode loader |
| 38 | endef |
| 39 | |
| 40 | define 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/ |
| 44 | endef |
| 45 | |
| 46 | # List of build hosts with working cpuid.h |
| 47 | IUT_NATIVE_HOST_OS_ARCH := \ |
| 48 | linux/x86_64 linux/amd64 linux/i386 linux/i686 |
| 49 | |
| 50 | IUT_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 |
| 53 | ifeq ($(filter $(IUT_HOST_OS_ARCH),$(IUT_NATIVE_HOST_OS_ARCH)),) |
| 54 | HOST_CFLAGS += \ |
| 55 | -I$(HOST_BUILD_DIR)/cpuid-compat |
| 56 | endif |
| 57 | |
| 58 | define Host/Install |
| 59 | $(INSTALL_BIN) $(HOST_BUILD_DIR)/iucode_tool $(STAGING_DIR_HOST)/bin/iucode_tool |
| 60 | endef |
| 61 | |
| 62 | $(eval $(call HostBuild)) |
| 63 | $(eval $(call BuildPackage,iucode-tool)) |