mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 14:04:26 -04:00 
			
		
		
		
	* New microcode update packages from AMD upstream:
    + New Microcodes:
      sig 0x00800f12, patch id 0x08001227, 2018-02-09
    + Updated Microcodes:
      sig 0x00600f12, patch id 0x0600063e, 2018-02-07
      sig 0x00600f20, patch id 0x06000852, 2018-02-06
  * Adds Spectre v2 (CVE-2017-5715) microcode-based mitigation support,
    plus other unspecified fixes/updates.
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
		
	
			
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # 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:=amd64-microcode
 | |
| PKG_VERSION:=20180524
 | |
| PKG_RELEASE:=1
 | |
| 
 | |
| PKG_SOURCE:=amd64-microcode_3.$(PKG_VERSION).$(PKG_RELEASE).tar.xz
 | |
| PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/non-free/a/amd64-microcode/
 | |
| PKG_HASH:=7c389c357c242e7161f6872bf4e12011a71e4c0683f06fb1bcfad650a78bf0a9
 | |
| PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-3.$(PKG_VERSION).$(PKG_RELEASE)
 | |
| 
 | |
| PKG_LICENSE_FILE:=LICENSE.amd-ucode
 | |
| 
 | |
| include $(INCLUDE_DIR)/package.mk
 | |
| 
 | |
| define Package/amd64-microcode
 | |
|   SECTION:=firmware
 | |
|   CATEGORY:=Firmware
 | |
|   URL:=$(PKG_SOURCE_URL)
 | |
|   DEPENDS:=@TARGET_x86
 | |
|   TITLE:=AMD64 CPU microcode
 | |
| endef
 | |
| 
 | |
| define Build/Prepare
 | |
| 	rm -rf $(PKG_BUILD_DIR)
 | |
| 	mkdir -p $(PKG_BUILD_DIR)
 | |
| 	$(TAR) -C $(BUILD_DIR) -xJf $(DL_DIR)/$(PKG_SOURCE)
 | |
| endef
 | |
| 
 | |
| define Build/Compile
 | |
| endef
 | |
| 
 | |
| define Package/amd64-microcode/install
 | |
| 	$(INSTALL_DIR) $(1)/lib/firmware/amd-ucode
 | |
| 	$(INSTALL_DATA) $(PKG_BUILD_DIR)/*.bin $(1)/lib/firmware/amd-ucode
 | |
| endef
 | |
| 
 | |
| $(eval $(call BuildPackage,amd64-microcode))
 |