mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
intel-microcode: bump to version 20180807a
The big "intel-microcode.dat" text file is gone. Only binary files are provided, in the "intel-ucode" directory. Install it at /lib/firmware/, like linux-firmware does, and update the iucode-tool init script to use that path. We don't install the microcode under "intel-ucode-with-caveats", since it needs special commits in the Linux kernel (see "relnotes" for more information). Tested on an equipment with Intel C3000 processor. Signed-off-by: Carlos Santos <casantos@datacom.com.br> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
9ca59a6351
commit
1f0beaf9a8
@@ -4,23 +4,17 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
INTEL_MICROCODE_VERSION = 20180312
|
||||
INTEL_MICROCODE_VERSION = 20180807a
|
||||
INTEL_MICROCODE_SOURCE = microcode-$(INTEL_MICROCODE_VERSION).tgz
|
||||
INTEL_MICROCODE_SITE = http://downloadmirror.intel.com/27591/eng
|
||||
INTEL_MICROCODE_SITE = https://downloadmirror.intel.com/28087/eng
|
||||
INTEL_MICROCODE_STRIP_COMPONENTS = 0
|
||||
INTEL_MICROCODE_LICENSE = PROPRIETARY
|
||||
INTEL_MICROCODE_LICENSE_FILES = license.txt
|
||||
INTEL_MICROCODE_LICENSE_FILES = license
|
||||
INTEL_MICROCODE_REDISTRIBUTE = NO
|
||||
|
||||
define INTEL_MICROCODE_EXTRACT_LICENSE
|
||||
head -n 33 $(@D)/microcode.dat > $(@D)/license.txt
|
||||
endef
|
||||
|
||||
INTEL_MICROCODE_POST_EXTRACT_HOOKS += INTEL_MICROCODE_EXTRACT_LICENSE
|
||||
|
||||
define INTEL_MICROCODE_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0644 $(@D)/microcode.dat \
|
||||
$(TARGET_DIR)/usr/share/misc/intel-microcode.dat
|
||||
$(INSTALL) -D -m 0644 -t $(TARGET_DIR)/lib/firmware/intel-ucode \
|
||||
$(@D)/intel-ucode/*
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
|
||||
Reference in New Issue
Block a user