Mike Banon has uploaded a new patch set (#2). ( https://review.coreboot.org/28370 )
Change subject: src/vendorcode/amd/agesa/f16kb: Update microcode to version 0x7000110 2018-02-09
......................................................................
src/vendorcode/amd/agesa/f16kb: Update microcode to version 0x7000110 2018-02-09
This microcode update for CPU ID 0x700F01 improves system stability:
in particular, fixes Xen hardware virtualization freezes. Also it attempts to
patch some Spectre-related security vulnerabilities. This new microcode has been
tested by multiple coreboot community members and found working perfectly.
Old version: 0x700010B [2013-07-09]
replaced by
New version: 0x7000110 [2018-02-09]
Change-Id: Iebe6e54d922378a8a1feb97f37b08ac50c8234b2
Signed-off-by: Mike Banon <mikebdp2(a)gmail.com>
---
M src/vendorcode/amd/agesa/f16kb/Proc/CPU/Family/0x16/KB/F16KbId7001MicrocodePatch.c
1 file changed, 437 insertions(+), 3,462 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/70/28370/2
--
To view, visit https://review.coreboot.org/28370
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: Iebe6e54d922378a8a1feb97f37b08ac50c8234b2
Gerrit-Change-Number: 28370
Gerrit-PatchSet: 2
Gerrit-Owner: Mike Banon <mikebdp2(a)gmail.com>
Martin Roth has submitted this change and it was merged. ( https://review.coreboot.org/28326 )
Change subject: Documentation: Fix make rule for sphinx-autobuild
......................................................................
Documentation: Fix make rule for sphinx-autobuild
Execute sphinx-autobuild for livesphinx make rule
Change-Id: I725392f1f132101eede8fed75e8d225c972ad1fe
Signed-off-by: Tom Hiller <thrilleratplay(a)gmail.com>
Reviewed-on: https://review.coreboot.org/28326
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
Reviewed-by: Patrick Rudolph <siro(a)das-labor.org>
---
M Documentation/Makefile.sphinx
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
build bot (Jenkins): Verified
Patrick Rudolph: Looks good to me, approved
diff --git a/Documentation/Makefile.sphinx b/Documentation/Makefile.sphinx
index 8c10a9f..5236f3e 100644
--- a/Documentation/Makefile.sphinx
+++ b/Documentation/Makefile.sphinx
@@ -57,7 +57,7 @@
.PHONY: livehtml
livehtml:
- $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)
+ $(SPHINXAUTOBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)
@echo
@echo "Autobuild finished. The HTML pages are in $(BUILDDIR)."
--
To view, visit https://review.coreboot.org/28326
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I725392f1f132101eede8fed75e8d225c972ad1fe
Gerrit-Change-Number: 28326
Gerrit-PatchSet: 2
Gerrit-Owner: Tom Hiller <thrilleratplay(a)gmail.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Tom Hiller <thrilleratplay(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Martin Roth has uploaded this change for review. ( https://review.coreboot.org/28365
Change subject: util/nvidia: Change ENODATA to ENOATTR for FreeBSD
......................................................................
util/nvidia: Change ENODATA to ENOATTR for FreeBSD
FreeBSD doesn't have ENODATA defined, so the cbootimage utility wouldn't
build. It looks like the BSDs use ENOATTR in the same fashion, so
update the error to use that.
Change-Id: Ic70710d5726476755585fd1a3ae3f256a430e8df
Signed-off-by: Martin Roth <martinr(a)coreboot.org>
---
M util/nvidia/Makefile.inc
1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/28365/1
diff --git a/util/nvidia/Makefile.inc b/util/nvidia/Makefile.inc
index 133778f..1894fad 100644
--- a/util/nvidia/Makefile.inc
+++ b/util/nvidia/Makefile.inc
@@ -43,6 +43,10 @@
CBOOTIMAGE_OBJS:=$(addprefix $(objutil)/nvidia/cbootimage/,$(patsubst %.c,%.o,$(filter %.c,$(CBOOTIMAGE_RAW_SRCS))))
CBOOTIMAGE_FLAGS:=-Wall -std=c99 -O2
+ifeq ($(OS_ARCH), FreeBSD)
+CBOOTIMAGE_FLAGS:=-DENODATA=ENOATTR
+endif
+
additional-dirs += $(sort $(dir $(CBOOTIMAGE_OBJS)))
$(objutil)/nvidia/cbootimage/%.o: util/nvidia/cbootimage/src/%.c
--
To view, visit https://review.coreboot.org/28365
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic70710d5726476755585fd1a3ae3f256a430e8df
Gerrit-Change-Number: 28365
Gerrit-PatchSet: 1
Gerrit-Owner: Martin Roth <martinroth(a)google.com>
Martin Roth has uploaded this change for review. ( https://review.coreboot.org/28364
Change subject: util/abuild: Use env to find bash
......................................................................
util/abuild: Use env to find bash
FreeBSD doesn't have bash in /bin, so use env to find it. This is
already done in many other scripts that are used in the actual build
path.
Change-Id: If6fb6bc3c55835e2144599fea1cdb2f7abefb0fc
Signed-off-by: Martin Roth <martinr(a)coreboot.org>
---
M util/abuild/abuild
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/64/28364/1
diff --git a/util/abuild/abuild b/util/abuild/abuild
index 3831d59..3228d09 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
#
# coreboot autobuild
#
--
To view, visit https://review.coreboot.org/28364
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: If6fb6bc3c55835e2144599fea1cdb2f7abefb0fc
Gerrit-Change-Number: 28364
Gerrit-PatchSet: 1
Gerrit-Owner: Martin Roth <martinroth(a)google.com>