the following patch was just integrated into master:
commit 0232549621f37af5d13c370ba09a421755969194
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Wed Jul 1 21:56:47 2015 +0200
google/veyron_minnie: Add new board
Copied from speedy, with changes to mainboard.c (and speedy -> minnie renames
across the directory)
Change-Id: Ib38f0b15da8306984869e7ee7b4ddf366b0df82c
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Reviewed-on: http://review.coreboot.org/10757
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Tested-by: build bot (Jenkins)
See http://review.coreboot.org/10757 for details.
-gerrit
the following patch was just integrated into master:
commit e559536daa88fa8c1adfdfb0d840fe55719ceb8b
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Wed Jul 1 11:30:03 2015 -0700
libpayload: always compile with -ffunction-sections
Always compile with -ffunction-sections and -fdata-sections
This does not hurt, and it allows the linker to produce much
smaller binaries in some circumstances.
Change-Id: Ibf9f24c210d6d2ed40451b4cf0d68ce88220bc5f
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/10750
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/10750 for details.
-gerrit
the following patch was just integrated into master:
commit ec88681ca31ecec91c853e75a0d8aea7ce17996e
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Wed Jul 1 20:22:39 2015 +0200
nvidia/tegra210: Drop unused Kconfig symbol
The deleted symbols aren't used anywhere in the coreboot tree and come from
the downstream chromeos-2013.04 branch.
Change-Id: I0ebc2936dff400cf8fe68794c86ac583aba2a14b
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Reviewed-on: http://review.coreboot.org/10752
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/10752 for details.
-gerrit
the following patch was just integrated into master:
commit 6a02b3b3e4a28bb4e91cadb0b07a0942b254d404
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Wed Jul 1 20:30:56 2015 +0200
linker scripts: Fix symbol handling for pre-RAM cbmem console
Some ld versions (eg. the one used in the chromium build system) mis-handled
the redefined symbol in romstage.ld, so use the feature that exists for
precisely that purpose.
Change-Id: I184310ab20a02f6b3d569798448eac78b13e88a3
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Reviewed-on: http://review.coreboot.org/10754
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/10754 for details.
-gerrit
Stefan Reinauer (stefan.reinauer(a)coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10750
-gerrit
commit dcd072ce0b337dee20f6222b87429820fcd2c341
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Wed Jul 1 11:30:03 2015 -0700
libpayload: always compile with -ffunction-sections
Always compile with -ffunction-sections and -fdata-sections
This does not hurt, and it allows the linker to produce much
smaller binaries in some circumstances.
Change-Id: Ibf9f24c210d6d2ed40451b4cf0d68ce88220bc5f
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
---
payloads/libpayload/Makefile.inc | 1 +
1 file changed, 1 insertion(+)
diff --git a/payloads/libpayload/Makefile.inc b/payloads/libpayload/Makefile.inc
index a3094aa..05754fe 100644
--- a/payloads/libpayload/Makefile.inc
+++ b/payloads/libpayload/Makefile.inc
@@ -59,6 +59,7 @@ INCLUDES := -Iinclude -Iinclude/$(ARCHDIR-y) -I$(obj) -include include/kconfig.h
CFLAGS = $(EXTRA_CFLAGS) $(INCLUDES) -Os -pipe -nostdinc -ggdb3
CFLAGS += -nostdlib -fno-builtin -ffreestanding -fomit-frame-pointer
+CFLAGS += -ffunction-sections -fdata-sections
CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
CFLAGS += -Wstrict-aliasing -Wshadow -Werror
the following patch was just integrated into master:
commit 20864c1d6dc6102168743fe283fae7d16bf2cef2
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Wed Jul 1 20:29:42 2015 +0200
rockchip/rk3288: Initialize CPU in bootblock
Some basic MMU setup is required to allow unaligned memory accesses that
happen across our entire codebase.
Change-Id: If5a84e19a7a3e47d6009fd073b1323dfb25e6a06
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Found-by: Julius Werner <jwerner(a)chromium.org>
Reviewed-on: http://review.coreboot.org/10753
Tested-by: build bot (Jenkins)
Reviewed-by: Julius Werner <jwerner(a)chromium.org>
See http://review.coreboot.org/10753 for details.
-gerrit
the following patch was just integrated into master:
commit 088c1894f825a14e769c7b3d36333f5e4b6d0685
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Wed Jul 1 11:48:57 2015 -0700
libpayload: Fix compilation on ARM with GDB enabled
Without this, gdb_enter() is not defined.
Change-Id: I067dce371ee817d6ac77387fcbe42a9a7deb6438
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/10755
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
Tested-by: build bot (Jenkins)
See http://review.coreboot.org/10755 for details.
-gerrit