diff options
Diffstat (limited to 'common/recipes-core/microcode')
3 files changed, 0 insertions, 128 deletions
diff --git a/common/recipes-core/microcode/intel-microcode_20170707.bb b/common/recipes-core/microcode/intel-microcode_20170707.bb deleted file mode 100644 index 2244088..0000000 --- a/common/recipes-core/microcode/intel-microcode_20170707.bb +++ /dev/null | |||
| @@ -1,66 +0,0 @@ | |||
| 1 | SUMMARY = "Intel Processor Microcode Datafile for Linux" | ||
| 2 | HOMEPAGE = "http://www.intel.com/" | ||
| 3 | DESCRIPTION = "The microcode data file contains the latest microcode\ | ||
| 4 | definitions for all Intel processors. Intel releases microcode updates\ | ||
| 5 | to correct processor behavior as documented in the respective processor\ | ||
| 6 | specification updates. While the regular approach to getting this microcode\ | ||
| 7 | update is via a BIOS upgrade, Intel realizes that this can be an\ | ||
| 8 | administrative hassle. The Linux operating system and VMware ESX\ | ||
| 9 | products have a mechanism to update the microcode after booting.\ | ||
| 10 | For example, this file will be used by the operating system mechanism\ | ||
| 11 | if the file is placed in the /etc/firmware directory of the Linux system." | ||
| 12 | |||
| 13 | LICENSE = "Intel-Microcode-License" | ||
| 14 | LIC_FILES_CHKSUM = "file://microcode.dat;md5=e5b1dc41901d2de706d4bccee94bbadc" | ||
| 15 | |||
| 16 | SRC_URI = "https://downloadmirror.intel.com/26925/eng/microcode-${PV}.tgz" | ||
| 17 | SRC_URI[md5sum] = "fe4bcb12e4600629a81fb65208c34248" | ||
| 18 | SRC_URI[sha256sum] = "4fd44769bf52a7ac11e90651a307aa6e56ca6e1a814e50d750ba8207973bee93" | ||
| 19 | |||
| 20 | DEPENDS = "iucode-tool-native" | ||
| 21 | S = "${WORKDIR}" | ||
| 22 | |||
| 23 | COMPATIBLE_HOST = "(i.86|x86_64).*-linux" | ||
| 24 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 25 | |||
| 26 | inherit deploy | ||
| 27 | |||
| 28 | # Use any of the iucode_tool parameters to filter specific microcodes from the data file | ||
| 29 | # For further information, check the iucode-tool's manpage : http://manned.org/iucode-tool | ||
| 30 | UCODE_FILTER_PARAMETERS ?= "" | ||
| 31 | |||
| 32 | do_compile() { | ||
| 33 | mkdir -p ${WORKDIR}/ucode/kernel/x86/microcode | ||
| 34 | ${STAGING_DIR_NATIVE}${sbindir_native}/iucode_tool \ | ||
| 35 | ${UCODE_FILTER_PARAMETERS} \ | ||
| 36 | --overwrite \ | ||
| 37 | --write-to=${WORKDIR}/microcode_${PV}.bin \ | ||
| 38 | ${WORKDIR}/microcode.dat | ||
| 39 | |||
| 40 | ${STAGING_DIR_NATIVE}${sbindir_native}/iucode_tool \ | ||
| 41 | ${UCODE_FILTER_PARAMETERS} \ | ||
| 42 | --overwrite \ | ||
| 43 | --write-earlyfw=${WORKDIR}/microcode_${PV}.cpio \ | ||
| 44 | ${WORKDIR}/microcode.dat | ||
| 45 | } | ||
| 46 | |||
| 47 | do_install() { | ||
| 48 | install -d ${D}${base_libdir}/firmware/intel-ucode/ | ||
| 49 | install ${WORKDIR}/microcode_${PV}.bin ${D}${base_libdir}/firmware/intel-ucode/ | ||
| 50 | cd ${D}${base_libdir}/firmware/intel-ucode/ | ||
| 51 | ln -sf microcode_${PV}.bin microcode.bin | ||
| 52 | } | ||
| 53 | |||
| 54 | do_deploy() { | ||
| 55 | install -d ${DEPLOYDIR} | ||
| 56 | install ${S}/microcode_${PV}.cpio ${DEPLOYDIR}/ | ||
| 57 | cd ${DEPLOYDIR} | ||
| 58 | rm -f microcode.cpio | ||
| 59 | ln -sf microcode_${PV}.cpio microcode.cpio | ||
| 60 | } | ||
| 61 | |||
| 62 | addtask deploy before do_build after do_compile | ||
| 63 | |||
| 64 | PACKAGES = "${PN}" | ||
| 65 | |||
| 66 | FILES_${PN} = "${base_libdir}" | ||
diff --git a/common/recipes-core/microcode/iucode-tool/0001-Makefile.am-Add-arg-parse-library-for-MUSL-support.patch b/common/recipes-core/microcode/iucode-tool/0001-Makefile.am-Add-arg-parse-library-for-MUSL-support.patch deleted file mode 100644 index ca97d2a..0000000 --- a/common/recipes-core/microcode/iucode-tool/0001-Makefile.am-Add-arg-parse-library-for-MUSL-support.patch +++ /dev/null | |||
| @@ -1,29 +0,0 @@ | |||
| 1 | From 5f6826b3a59dedf508d5a6122362d69a4813e8e6 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Saul Wold <sgw@linux.intel.com> | ||
| 3 | Date: Fri, 3 Feb 2017 16:08:51 -0800 | ||
| 4 | Subject: [PATCH] Makefile.am: Add arg-parse library for MUSL support | ||
| 5 | |||
| 6 | iucode-tool needs argp-standalone when used with MUSL, so add this | ||
| 7 | patch to the Makefile to link with argp | ||
| 8 | |||
| 9 | Upstream-Status: Pending | ||
| 10 | Signed-off-by: Saul Wold <sgw@linux.intel.com> | ||
| 11 | --- | ||
| 12 | Makefile.am | 1 + | ||
| 13 | 1 file changed, 1 insertion(+) | ||
| 14 | |||
| 15 | diff --git a/Makefile.am b/Makefile.am | ||
| 16 | index 415a241..764fb61 100644 | ||
| 17 | --- a/Makefile.am | ||
| 18 | +++ b/Makefile.am | ||
| 19 | @@ -5,6 +5,7 @@ | ||
| 20 | sbin_PROGRAMS = iucode_tool | ||
| 21 | man_MANS = iucode_tool.8 | ||
| 22 | |||
| 23 | +iucode_tool_LDADD = -largp | ||
| 24 | iucode_tool_SOURCES = intel_microcode.h intel_microcode.c iucode_tool.c | ||
| 25 | EXTRA_DIST = autogen.sh CONTRIBUTING | ||
| 26 | |||
| 27 | -- | ||
| 28 | 2.7.4 | ||
| 29 | |||
diff --git a/common/recipes-core/microcode/iucode-tool_2.1.2.bb b/common/recipes-core/microcode/iucode-tool_2.1.2.bb deleted file mode 100644 index e1fb56f..0000000 --- a/common/recipes-core/microcode/iucode-tool_2.1.2.bb +++ /dev/null | |||
| @@ -1,33 +0,0 @@ | |||
| 1 | SUMMARY = "Update Intel CPU microcode" | ||
| 2 | |||
| 3 | DESCRIPTION = "iucode_tool is a program to manipulate Intel i686 and X86-64\ | ||
| 4 | processor microcode update collections, and to use the kernel facilities to\ | ||
| 5 | update the microcode on Intel system processors. It can load microcode data\ | ||
| 6 | files in text and binary format, sort, list and filter the microcode updates\ | ||
| 7 | contained in these files, write selected microcode updates to a new file in\ | ||
| 8 | binary format, or upload them to the kernel. \ | ||
| 9 | It operates on microcode data downloaded directly from Intel:\ | ||
| 10 | http://feeds.downloadcenter.intel.com/rss/?p=2371\ | ||
| 11 | " | ||
| 12 | HOMEPAGE = "https://gitlab.com/iucode-tool/" | ||
| 13 | BUGTRACKER = "https://bugs.debian.org/cgi-bin/pkgreport.cgi?ordering=normal;archive=0;src=iucode-tool;repeatmerged=0" | ||
| 14 | |||
| 15 | LICENSE = "GPLv2+" | ||
| 16 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ | ||
| 17 | file://iucode_tool.c;beginline=1;endline=15;md5=5d8e3639c3b6a80e7d5e0e073933da16" | ||
| 18 | |||
| 19 | DEPENDS_append_libc-musl = " argp-standalone" | ||
| 20 | |||
| 21 | SRC_URI = "https://gitlab.com/iucode-tool/releases/raw/master/iucode-tool_${PV}.tar.xz" | ||
| 22 | SRC_URI_append_libc-musl = " file://0001-Makefile.am-Add-arg-parse-library-for-MUSL-support.patch" | ||
| 23 | |||
| 24 | SRC_URI[md5sum] = "c6f131a0b69443f5498782a2335973fa" | ||
| 25 | SRC_URI[sha256sum] = "01f1c02ba6935e0ac8440fb594c2ef57ce4437fcbce539e3ef329f55a6fd71ab" | ||
| 26 | |||
| 27 | inherit autotools | ||
| 28 | |||
| 29 | BBCLASSEXTEND = "native" | ||
| 30 | |||
| 31 | COMPATIBLE_HOST = "(i.86|x86_64).*-linux" | ||
| 32 | |||
| 33 | UPSTREAM_CHECK_URI = "https://gitlab.com/iucode-tool/releases" | ||
