the following patch was just integrated into master:
commit 1fa52740713a77a58aa038f61cc0e5ab6112a896
Author: Stefan Reinauer <reinauer(a)chromium.org>
Date: Fri Jul 31 17:56:03 2015 -0700
Only apply libgcc workaround on x86-32
This should probably be moved out of lib and to arch/x86,
since it does not even apply on x86-64, and ARM has its
own copy of libgcc.
Change-Id: I4fca1323927f8d37128472ed60d059f7a459fc71
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/11110
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/11110 for details.
-gerrit
the following patch was just integrated into master:
commit d146ac6a33a9ba578c7dce0abf8b4ca65689b425
Author: Stefan Reinauer <reinauer(a)chromium.org>
Date: Fri Jul 31 13:50:03 2015 -0700
Move function/data sections to common CFLAGS
Instead of adding -ffunction-sections and -fdata-sections to
every architecture, just add it to CFLAGS_common, thus making
sure that new architectures will pick it up automatically.
Change-Id: I38e878851226565b7791d05e222cb4e502e0c8a3
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/11105
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/11105 for details.
-gerrit
the following patch was just integrated into master:
commit d0d487aaf481a5d1667f32eb87213cd33b80921a
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Tue Jul 14 15:57:44 2015 -0700
payloads: Move payloads logic to payloads directory
Change-Id: I6437e30da6ab675d32dc81c5d6d3fd9bcdc67f06
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/10923
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/10923 for details.
-gerrit
the following patch was just integrated into master:
commit 2c6fe441a79af45119837cd44e111f1ebce4dec2
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Mon Jun 29 14:46:40 2015 -0700
libpayload: Use CONFIG_LP_CCACHE instead of CONFIG_CCACHE
CONFIG_CCACHE was obsoleted a long time ago for libpayload.
Change-Id: Ib0a418d97f368439476e524b753160a6229bb9f6
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/10710
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/10710 for details.
-gerrit
the following patch was just integrated into master:
commit 501005f126161fe5136d5cfac76372c91fd59bd3
Author: Martin Roth <gaumless(a)gmail.com>
Date: Wed Jun 24 20:03:08 2015 -0600
Makefile.inc: Clean up SeaBIOS clean command line
Passing the argments to the sub-make is no longer needed.
Change-Id: Ie4fa3e36c2911eb25f201506df0e79b415d3e9b9
Signed-off-by: Martin Roth <gaumless(a)gmail.com>
Reviewed-on: http://review.coreboot.org/10656
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/10656 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/11147
-gerrit
commit 07000fc110327cfee4545d59c7d7f40be9970d9b
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Sun Aug 9 20:53:59 2015 +0200
genbuild_h: Actually use git's current commit for timestamp if possible
The test failed to trigger because top wasn't set.
Change-Id: I96de16a1b5cbc5a64d8e65ed84fd6849dd618e8f
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
---
util/genbuild_h/genbuild_h.sh | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/util/genbuild_h/genbuild_h.sh b/util/genbuild_h/genbuild_h.sh
index 0a70eb8..a3e4453 100755
--- a/util/genbuild_h/genbuild_h.sh
+++ b/util/genbuild_h/genbuild_h.sh
@@ -26,7 +26,9 @@ export LANG=C
export LC_ALL=C
export TZ=UTC
-if [ -d "${top}/.git" ] && [ -f "$(command -v git)" ]; then
+top=`dirname $0`/../..
+
+if [ -d "${top}/.git" -a -x "$(command -v git)" ]; then
GITREV=$(LANG= git log remotes/origin/master -1 --format=format:%h)
TIMESOURCE=git
DATE=$(git log --pretty=format:%ct -1)
Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11146
-gerrit
commit 811046494ba6f38ffef97dbf3051602f756c088b
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Sun Aug 9 20:53:16 2015 +0200
genbuild_h: actually make date(1) based timestamp locale independent
This fixes the botched fix in commit d9bc2fadc4ea74ebca0d793aeef288fe9f1acf0c
Change-Id: I0c4445af2851bc80fabb631864321a56123ce7b0
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
---
util/genbuild_h/genbuild_h.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/util/genbuild_h/genbuild_h.sh b/util/genbuild_h/genbuild_h.sh
index be72f81..0a70eb8 100755
--- a/util/genbuild_h/genbuild_h.sh
+++ b/util/genbuild_h/genbuild_h.sh
@@ -32,8 +32,8 @@ if [ -d "${top}/.git" ] && [ -f "$(command -v git)" ]; then
DATE=$(git log --pretty=format:%ct -1)
else
GITREV=Unknown
- TIMESOURCE="LANG=C LC_ALL=C TZ=UTC date"
- DATE=$(date +%s)
+ TIMESOURCE="date"
+ DATE=$(LANG= LC_ALL=C TZ=UTC date +%s)
fi
our_date() {
the following patch was just integrated into master:
commit 7580b1aca4251fb76c2302106a2fa69d7ae9759a
Author: Paul Menzel <paulepanter(a)users.sourceforge.net>
Date: Sun Jun 7 11:11:23 2015 +0200
drivers/pc80/i8254.c: Indent with GNU indent 2.2.11
Run `indent -linux src/drivers/pc80/i8254.c` and manually put the `;` in
the while loop back on a separate line.
Change-Id: I58c4c5df3846a91ef92aafb608962dc26a21f811
Signed-off-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-on: http://review.coreboot.org/10452
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/10452 for details.
-gerrit