diff options
author | sbruno <sbruno@FreeBSD.org> | 2018-05-22 23:09:38 +0800 |
---|---|---|
committer | sbruno <sbruno@FreeBSD.org> | 2018-05-22 23:09:38 +0800 |
commit | 91d7ad3ad5c7714f62ba87867a2e13d4732ae91e (patch) | |
tree | 53cd5fc64524b35cdc4546f158037ae7191ebf83 /sysutils | |
parent | 7acd6691445b7c3be8d1dace841a6e3fcea1b11c (diff) | |
download | freebsd-ports-graphics-91d7ad3ad5c7714f62ba87867a2e13d4732ae91e.tar.gz freebsd-ports-graphics-91d7ad3ad5c7714f62ba87867a2e13d4732ae91e.tar.zst freebsd-ports-graphics-91d7ad3ad5c7714f62ba87867a2e13d4732ae91e.zip |
sysutils/devcpu-data:
-- updated to Intel Microcode release 0425
-- removed the BDX microcode
-- updated the GLK microcode
-- Modded files/Makefile to be more explicit on which files to process
now that non-microcode files have appeared in the Intel microcode directory
-- intel-ucode-with-caveats/ --
This directory holds microcode that might need special handling.
BDX-ML microcode is provided in directory, because it need special commits in
the Linux kernel, otherwise, updating it might result in unexpected system
behavior.
OS vendors must ensure that the late loader patches (provided in
linux-kernel-patches\) are included in the distribution before packaging the
BDX-ML microcode for late-loading.
== 20180425 Release ==
-- Updates upon 20180312 release --
Processor Identifier Version Products
Model Stepping F-MO-S/PI Old->New
---- updated platforms ------------------------------------
GLK B0 6-7a-1/01 0000001e->00000022 Pentium Silver N/J5xxx, Celeron N/J4xxx
---- removed platforms ------------------------------------
BDX-ML B/M/R0 6-4f-1/ef 0b000021 Xeon E5/E7 v4; Core i7-69xx/68xx
-- Special release with caveats --
BDX-ML B/M/R0 6-4f-1/ef 0b00002c Xeon E5/E7 v4; Core i7-69xx/68xx
Sponsored by: Limelight Networks
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/devcpu-data/Makefile | 6 | ||||
-rw-r--r-- | sysutils/devcpu-data/distinfo | 6 | ||||
-rw-r--r-- | sysutils/devcpu-data/files/Makefile | 4 | ||||
-rw-r--r-- | sysutils/devcpu-data/pkg-plist | 1 |
4 files changed, 9 insertions, 8 deletions
diff --git a/sysutils/devcpu-data/Makefile b/sysutils/devcpu-data/Makefile index c82a25f804b..901adbf71d6 100644 --- a/sysutils/devcpu-data/Makefile +++ b/sysutils/devcpu-data/Makefile @@ -3,12 +3,12 @@ PORTNAME= data PORTVERSION= 1.16 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils -MASTER_SITES= https://downloadmirror.intel.com/27591/eng/:intel \ +MASTER_SITES= https://downloadmirror.intel.com/27776/eng/:intel \ LOCAL/sbruno:amd PKGNAMEPREFIX= devcpu- -DISTFILES= microcode-20180312.tgz:intel \ +DISTFILES= microcode-20180425.tgz:intel \ amd64-microcode_3.20171205.1.tar.xz:amd MAINTAINER= sbruno@freebsd.org diff --git a/sysutils/devcpu-data/distinfo b/sysutils/devcpu-data/distinfo index a7bd4561efa..a5efda99602 100644 --- a/sysutils/devcpu-data/distinfo +++ b/sysutils/devcpu-data/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1520973336 -SHA256 (microcode-20180312.tgz) = 0b381face2df1b0a829dc4fa8fa93f47f39e11b1c9c22ebd44f8614657c1e779 -SIZE (microcode-20180312.tgz) = 3789662 +TIMESTAMP = 1526996964 +SHA256 (microcode-20180425.tgz) = f0d2492f4561e2559f6c9471b231cb8262d45762c0e7cccf787be5c189b4e2d6 +SIZE (microcode-20180425.tgz) = 1565473 SHA256 (amd64-microcode_3.20171205.1.tar.xz) = a38bc072f535a3d3c1bf4e9e545197aa5114e979e94ef7e4a67e615df2f853a7 SIZE (amd64-microcode_3.20171205.1.tar.xz) = 32584 diff --git a/sysutils/devcpu-data/files/Makefile b/sysutils/devcpu-data/files/Makefile index be79db5e1fd..82aaf665bae 100644 --- a/sysutils/devcpu-data/files/Makefile +++ b/sysutils/devcpu-data/files/Makefile @@ -1,4 +1,5 @@ # $FreeBSD$ + INTEL_UCODE= intel-ucode OUTPUT_DIR= mcodes @@ -6,7 +7,8 @@ all: ucode ucode: ucode-split mkdir -p $(OUTPUT_DIR) cd ${OUTPUT_DIR} && \ - for file in ../${INTEL_UCODE}/*; do \ + for file in \ + ../${INTEL_UCODE}/[0-9,a-f][0-9,a-f]-[0-9,a-f][0-9,a-f]-[0-9,a-f][0-9,a-f]; do \ ../ucode-split $$file; \ done diff --git a/sysutils/devcpu-data/pkg-plist b/sysutils/devcpu-data/pkg-plist index cf1a33de8cd..717c46a32e8 100644 --- a/sysutils/devcpu-data/pkg-plist +++ b/sysutils/devcpu-data/pkg-plist @@ -110,7 +110,6 @@ %%DATADIR%%/06-46-01.32 %%DATADIR%%/06-47-01.22 %%DATADIR%%/06-4e-03.c0 -%%DATADIR%%/06-4f-01.ef %%DATADIR%%/06-55-03.97 %%DATADIR%%/06-55-04.b7 %%DATADIR%%/06-56-02.10 |