Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
config BR2_PACKAGE_INTEL_MICROCODE
bool "intel-microcode"
depends on BR2_x86_64 || BR2_i386
help
This package provides an Intel microcode data file that can be
used to correct processor errors. The iucode-tool package and
proper kernel support are required to upload the microcode.

View File

@@ -0,0 +1,2 @@
# Locally computed
sha256 096e39489eef67666be652e81fa372a06b74f39ea3d565dc0287242c668717e7 microcode-20151106.tgz

View File

@@ -0,0 +1,26 @@
################################################################################
#
# intel-microcode
#
################################################################################
INTEL_MICROCODE_VERSION = 20151106
INTEL_MICROCODE_SOURCE = microcode-$(INTEL_MICROCODE_VERSION).tgz
INTEL_MICROCODE_SITE = http://downloadmirror.intel.com/25512/eng
INTEL_MICROCODE_STRIP_COMPONENTS = 0
INTEL_MICROCODE_LICENSE = PROPRIETARY
INTEL_MICROCODE_LICENSE_FILES = license.txt
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
endef
$(eval $(generic-package))