build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/21437 )
Change subject: ifdtool: port the feature to set AltMeDisable/HAP bit here
......................................................................
Patch Set 60:
Build Successful
https://qa.coreboot.org/job/coreboot-checkpatch/20002/ : SUCCESS
https://qa.coreboot.org/job/coreboot-gerrit/65269/ : SUCCESS
--
To view, visit https://review.coreboot.org/21437
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I9a2ecc60cfbb9ee9d96f15be3d53226cb428729a
Gerrit-Change-Number: 21437
Gerrit-PatchSet: 60
Gerrit-Owner: Bill XIE <persmule(a)gmail.com>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Nicola Corna <nicola(a)corna.info>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Thu, 04 Jan 2018 17:03:03 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: No
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/21607 )
Change subject: ifdtool: Port the feature to jail ME from me_cleaner
......................................................................
Patch Set 28:
Build Unstable
https://qa.coreboot.org/job/coreboot-gerrit/65271/ : UNSTABLE
https://qa.coreboot.org/job/coreboot-checkpatch/20004/ : SUCCESS
--
To view, visit https://review.coreboot.org/21607
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I00533f4e2569c4763fbfc302bb460db1e60e5564
Gerrit-Change-Number: 21607
Gerrit-PatchSet: 28
Gerrit-Owner: Bill XIE <persmule(a)gmail.com>
Gerrit-Reviewer: Alexander Couzens <lynxis(a)fe80.eu>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Jonathan Neuschäfer <j.neuschaefer(a)gmx.net>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Thu, 04 Jan 2018 16:55:06 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: No
Alex Thiessen has abandoned this change. ( https://review.coreboot.org/23093 )
Change subject: util/gitconfig: Don't require `remake`
......................................................................
Abandoned
doesn't work
--
To view, visit https://review.coreboot.org/23093
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: abandon
Gerrit-Change-Id: Ic5ee9a0770e173ef0ffacc773c7f30f38cf478e9
Gerrit-Change-Number: 23093
Gerrit-PatchSet: 1
Gerrit-Owner: Alex Thiessen <alex.thiessen.de+coreboot(a)gmail.com>
Alex Thiessen has uploaded this change for review. ( https://review.coreboot.org/23093
Change subject: util/gitconfig: Don't require `remake`
......................................................................
util/gitconfig: Don't require `remake`
As the code was moved from the Makefile.inc to a separate file,
`$(MAKE)` was replaced by `remake`, introducing dependency on this tool
which is basically a `make` with debugging capabilities.
Many developers don't have `remake` installed, leading to pre-commit
hooks being not executed properly. Apparently this was an
unintentional change in commit 9ab8ae6a (util/gitconfig: Make
gitconfig a bash script) and so it is reverted.
Change-Id: Ic5ee9a0770e173ef0ffacc773c7f30f38cf478e9
Signed-off-by: Alex Thiessen <alex.thiessen.de+coreboot(a)gmail.com>
---
M util/gitconfig/gitconfig.sh
1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/93/23093/1
diff --git a/util/gitconfig/gitconfig.sh b/util/gitconfig/gitconfig.sh
index 5f91a69..b80a2e9 100755
--- a/util/gitconfig/gitconfig.sh
+++ b/util/gitconfig/gitconfig.sh
@@ -7,7 +7,8 @@
for hook in commit-msg pre-commit ; do
if [ util/gitconfig/$hook -nt .git/hooks/$hook ] || \
[ ! -x .git/hooks/$hook ]; then
- sed -e "s,%MAKE%,remake,g" util/gitconfig/$hook > .git/hooks/$hook
+ sed -e "s,%MAKE%,$(MAKE),g" util/gitconfig/$hook \
+ > .git/hooks/$hook
chmod +x .git/hooks/$hook
fi
done
--
To view, visit https://review.coreboot.org/23093
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: Ic5ee9a0770e173ef0ffacc773c7f30f38cf478e9
Gerrit-Change-Number: 23093
Gerrit-PatchSet: 1
Gerrit-Owner: Alex Thiessen <alex.thiessen.de+coreboot(a)gmail.com>
Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/23092
Change subject: mrc_cache.h: Include <commonlib/region.h>
......................................................................
mrc_cache.h: Include <commonlib/region.h>
No definition for the struct 'region_device' is given in this file,
which means that other files that include this header will have to
include <commonlib/region.h> before it, making header inclusion
fragile.
Change-Id: Id99da3a54daf96b04f3ee7c41e73cceb4432c5b3
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M src/include/mrc_cache.h
1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/92/23092/1
diff --git a/src/include/mrc_cache.h b/src/include/mrc_cache.h
index 4511fc3..498ecbf 100644
--- a/src/include/mrc_cache.h
+++ b/src/include/mrc_cache.h
@@ -18,6 +18,7 @@
#include <stddef.h>
#include <stdint.h>
+#include <commonlib/region.h>
enum {
MRC_TRAINING_DATA,
--
To view, visit https://review.coreboot.org/23092
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: Id99da3a54daf96b04f3ee7c41e73cceb4432c5b3
Gerrit-Change-Number: 23092
Gerrit-PatchSet: 1
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>