build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/19872 )
Change subject: nb/intel/x4x/raminit: Make programming launch ddr3 specific
......................................................................
Patch Set 8:
Build Successful
https://qa.coreboot.org/job/coreboot-checkpatch/20011/ : SUCCESS
https://qa.coreboot.org/job/coreboot-gerrit/65278/ : SUCCESS
--
To view, visit https://review.coreboot.org/19872
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: Ia2ca4a200a1c813b2133eb1004fbe248fa3de9ce
Gerrit-Change-Number: 19872
Gerrit-PatchSet: 8
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
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 20:04:23 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: No
Alex Thiessen has uploaded this change for review. ( https://review.coreboot.org/23096
Change subject: util/gitconfig: Use `make` in git hooks
......................................................................
util/gitconfig: Use `make` in git hooks
As the code was moved from the Makefile.inc to a separate file in commit
9ab8ae6a (util/gitconfig: Make gitconfig a bash script), `$(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.
Furthermore, special treatment of `make` tool via the `%MAKE%`
substitution performed during hooks' deployment doesn't seem justified.
It was introduced in commit f3947152 (gitconfig: Use the right make
executable in git hooks) and back then, `make` was called via `exec`.
This is not the case anymore since commit b18f522b (lint/gitconfig:
Enable checkpatch.pl checking of commits) and I think it's obsolete now.
Replace `sed` and `chmod +x` with `install` for brevity.
Change-Id: Ia78e06567b904b342dc9b7778569201fe02e6897
Signed-off-by: Alex Thiessen <alex.thiessen.de+coreboot(a)gmail.com>
---
M util/gitconfig/gitconfig.sh
M util/gitconfig/pre-commit
2 files changed, 3 insertions(+), 6 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/96/23096/1
diff --git a/util/gitconfig/gitconfig.sh b/util/gitconfig/gitconfig.sh
index 5f91a69..e6da0ee 100755
--- a/util/gitconfig/gitconfig.sh
+++ b/util/gitconfig/gitconfig.sh
@@ -7,8 +7,7 @@
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
- chmod +x .git/hooks/$hook
+ install "util/gitconfig/${hook}" ".git/hooks"
fi
done
# Now set up the hooks for 3rdparty/
@@ -16,9 +15,7 @@
if [ -d $hooks ]; then
if [ util/gitconfig/commit-msg -nt $hooks/commit-msg ] || \
[ ! -x $hooks/commit-msg ]; then
- sed -e "s,%MAKE%,remake,g" \
- util/gitconfig/commit-msg > $hooks/commit-msg
- chmod +x $hooks/commit-msg
+ install "util/gitconfig/commit-msg" "${hooks}"
fi
fi
done
diff --git a/util/gitconfig/pre-commit b/util/gitconfig/pre-commit
index 1c04bc3..2c1a2aa 100755
--- a/util/gitconfig/pre-commit
+++ b/util/gitconfig/pre-commit
@@ -1,5 +1,5 @@
#!/bin/sh
-%MAKE% lint-stable
+make lint-stable
PATCHDIFF=$(git diff --cached)
if printf "%s\n" "$PATCHDIFF" | grep -q "@@"; then
--
To view, visit https://review.coreboot.org/23096
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: Ia78e06567b904b342dc9b7778569201fe02e6897
Gerrit-Change-Number: 23096
Gerrit-PatchSet: 1
Gerrit-Owner: Alex Thiessen <alex.thiessen.de+coreboot(a)gmail.com>
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 29: Verified+1
Build Successful
https://qa.coreboot.org/job/coreboot-checkpatch/20006/ : SUCCESS
https://qa.coreboot.org/job/coreboot-gerrit/65273/ : 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: 29
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 18:03:22 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/21315 )
Change subject: ifdtool: improve the "new layout" feature
......................................................................
Patch Set 72:
Build Successful
https://qa.coreboot.org/job/coreboot-checkpatch/20003/ : SUCCESS
https://qa.coreboot.org/job/coreboot-gerrit/65270/ : SUCCESS
--
To view, visit https://review.coreboot.org/21315
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: Ia2b92c3f835f9849a243a48c37588c2dbe7449bf
Gerrit-Change-Number: 21315
Gerrit-PatchSet: 72
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: Bill XIE <persmule(a)gmail.com>
Gerrit-Reviewer: Christopher Douglass <cdouglass.orion(a)gmail.com>
Gerrit-Reviewer: Jonathan Neuschäfer <j.neuschaefer(a)gmx.net>
Gerrit-Reviewer: Nicola Corna <nicola(a)corna.info>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Philippe Mathieu-Daudé <f4bug(a)amsat.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Thu, 04 Jan 2018 17:04:15 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: No