Zheng Bao (zheng.bao(a)amd.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11158
-gerrit
commit 958b701a079f825d7f0a2909a4bc6263e52c1aa9
Author: zbao <fishbaozi(a)gmail.com>
Date: Tue Aug 11 02:43:46 2015 -0400
buildgcc: Fix the options check
1. Add -P|--package to build iasl
2. Remove -G|--skip-gdb, which was to skip gdb.
3. Add -S|--scripting to build gdb
4. Remove -C|--clang, which was to build clang.
All these changes are aligned with the options parsing below.
The help text is correct.
Change-Id: I897ea5e8ab002086e45bf05ff33230815b246057
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: Zheng Bao <fishbaozi(a)gmail.com>
---
util/crossgcc/buildgcc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index eaeafcf..bd0d8ef 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -499,11 +499,11 @@ getopt - > /dev/null 2>/dev/null || gcc -o getopt getopt.c
getoptbrand="$(getopt -V | sed -e '1!d' -e 's,^\(......\).*,\1,')"
if [ "${getoptbrand}" = "getopt" ]; then
# Detected GNU getopt that supports long options.
- args=$(getopt -l version,help,clean,directory:,platform:,jobs:,destdir:,savetemps,skip-gdb,ccache,clang Vhcd:p:j:D:tGyC -- "$@")
+ args=$(getopt -l version,help,clean,directory:,platform:,package:,jobs:,destdir:,savetemps,scripting,ccache Vhcd:p:P:j:D:tSy -- "$@")
eval set "$args"
else
# Detected non-GNU getopt
- args=$(getopt Vhcd:p:j:D:tGyC $*)
+ args=$(getopt Vhcd:p:P:j:D:tSy $*)
set -- $args
fi
the following patch was just integrated into master:
commit aa7dcef49427bde74ae4ddb48f6ed9823661a4a5
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Thu Aug 13 07:57:26 2015 +0200
board-status: move board status back to $TMPDIR
Change-Id: I05a8c246384abfc954cfcf163a68cca71aa6b2f0
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
Reviewed-on: http://review.coreboot.org/11224
Tested-by: build bot (Jenkins)
Reviewed-by: Timothy Pearson <tpearson(a)raptorengineeringinc.com>
See http://review.coreboot.org/11224 for details.
-gerrit
Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11224
-gerrit
commit 5202149a543f90ce2c4a793e40e3e67a96753bd8
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Thu Aug 13 07:57:26 2015 +0200
board-status: move board status back to $TMPDIR
Change-Id: I05a8c246384abfc954cfcf163a68cca71aa6b2f0
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
---
util/board_status/board_status.sh | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh
index 14d6514..ee27bc0 100755
--- a/util/board_status/board_status.sh
+++ b/util/board_status/board_status.sh
@@ -211,7 +211,8 @@ fi
# Results will be placed in a temporary location until we're ready to upload.
# If the user does not wish to upload, results will remain in /tmp.
-tmpdir=$(mktemp -d coreboot_board_status.XXXXXXXX)
+tmpdir=$(mktemp -d --tmpdir coreboot_board_status.XXXXXXXX)
+tmpcfg=$(mktemp coreboot_config.XXXXXX)
cbfstool_cmd="build/cbfstool"
if test ! -x build/cbfstool; then
@@ -219,8 +220,11 @@ if test ! -x build/cbfstool; then
fi
test_cmd $LOCAL "$cbfstool_cmd"
$cbfstool_cmd build/coreboot.rom extract -n config -f ${tmpdir}/config.txt
-cp ${tmpdir}/config.txt ${tmpdir}/config.short.txt
-yes "" | make DOTCONFIG=${tmpdir}/config.txt oldconfig
+mv ${tmpdir}/config.txt ${tmpdir}/config.short.txt
+cp ${tmpdir}/config.short.txt ${tmpcfg}
+yes "" | make DOTCONFIG=${tmpcfg} oldconfig 2>/dev/null >/dev/null
+mv ${tmpcfg} ${tmpdir}/config.txt
+rm -f ${tmpcfg}.old
$cbfstool_cmd build/coreboot.rom print > ${tmpdir}/cbfs.txt
# Obtain board and revision info to form the directory structure:
Kevin O'Connor (kevin(a)koconnor.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11223
-gerrit
commit cb2d3a48eafd12b6443d1c44436ffb2432c8077e
Author: Kevin O'Connor <kevin(a)koconnor.net>
Date: Wed Aug 12 18:38:59 2015 -0400
Revert "SeaBIOS: fix reproducible build by defining our own version string"
This reverts commit 633886719e2853744d932bd15324dd21634b0bbb.
The SeaBIOS maintainer (Kevin O'Connor) has requested that default
builds of SeaBIOS continue to use the default SeaBIOS version string.
The commit above changed the default for coreboot builds of SeaBIOS.
This non-standard version string contains less information and it
makes it harder for SeaBIOS developers to respond to trouble reports.
Change-Id: I65f039b06dc4ee857b200bc2b67eea503fa7f537
Signed-off-by: Kevin O'Connor <kevin(a)koconnor.net>
---
payloads/external/SeaBIOS/Makefile.inc | 3 ---
1 file changed, 3 deletions(-)
diff --git a/payloads/external/SeaBIOS/Makefile.inc b/payloads/external/SeaBIOS/Makefile.inc
index 7fb63d4..7390dd3 100644
--- a/payloads/external/SeaBIOS/Makefile.inc
+++ b/payloads/external/SeaBIOS/Makefile.inc
@@ -47,9 +47,6 @@ endif
build: config
echo " MAKE SeaBIOS $(TAG-y)"
- export VERSION=$$(cd seabios && \
- git describe --tags --long --dirty 2>/dev/null || \
- echo "unknown") ; \
$(MAKE) -C seabios OUT=out/
clean:
the following patch was just integrated into master:
commit 608f9b5b165c141efd4cb51fbecaa846e28b7992
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Tue Aug 11 10:35:25 2015 +0200
getac/p470: enable early cbmem init
Change-Id: I4afec92c57c6af4c99858afae53fa7746f47bc7a
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
Reviewed-on: http://review.coreboot.org/11159
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/11159 for details.
-gerrit
the following patch was just integrated into master:
commit 33cfe9b0f8349b2a0470294387bc4d19086562f5
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Sat Sep 6 17:23:30 2014 +0200
getac/p470: Enable native VGA init
Change-Id: I6c5a2324d1a9e21f4e052678be8f0e0dbfed6494
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
Reviewed-on: http://review.coreboot.org/11136
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/11136 for details.
-gerrit
the following patch was just integrated into master:
commit 21a78a88c6113eeeee565b610833e2dc9c5cfbaa
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Sun Aug 9 09:22:30 2015 +0200
getac/p470: Add C-State values
Derived from what the vendor BIOS is doing.
Change-Id: Ie2cba7b86b6bb3f1dcc4a5e1c189aa45d0aab109
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
Found-by: fwts 15.08
Reviewed-on: http://review.coreboot.org/11142
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/11142 for details.
-gerrit