the following patch was just integrated into master:
commit 94b8ad48790c23220d5b54eacac97460826d3ab4
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Tue Jun 30 12:49:50 2015 +0200
samsung/stumpy: implement get_write_protect_state
Current vboot wants that function.
Change-Id: Ie3b49aa716d9711223ec71a142878e847eedfe4e
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Reviewed-on: http://review.coreboot.org/10726
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/10726 for details.
-gerrit
the following patch was just integrated into master:
commit 961e8a46af0a75063db012997c64d342b0b193f3
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Tue Jun 30 12:49:50 2015 +0200
samsung/lumpy: implement get_write_protect_state
Current vboot wants that function.
Change-Id: I08590739112a7fcce7a983b6d77ff500692ef7d3
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Reviewed-on: http://review.coreboot.org/10725
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/10725 for details.
-gerrit
the following patch was just integrated into master:
commit 03decc0c5e988ce9af20ebe1e3e52e495251d0a5
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Tue Jun 30 12:48:45 2015 +0200
intel/sandybridge: initialize variable
Otherwise cache_base may be uninitialized.
Change-Id: Ie91f9567cea24114723a5362f52052d6ec22a6b8
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Reviewed-on: http://review.coreboot.org/10724
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/10724 for details.
-gerrit
the following patch was just integrated into master:
commit ea31f6333648ff25694a5e706c137052d1082aff
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Tue Jun 30 12:40:43 2015 +0200
google/jecht: Fix compiling GPIO table code
A lot changed here between Chrome OS and upstream, and these changes are
needed to reflect that.
Change-Id: I7195861465388d0f6a7cb540ebf4e410e38c260a
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Reviewed-on: http://review.coreboot.org/10723
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/10723 for details.
-gerrit
the following patch was just integrated into master:
commit b5e20903700dcf9036e8a29acedc9c1df0c67f49
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Tue Jun 30 12:39:23 2015 +0200
vboot: move vbnv_* sources around a bit more.
The many different places to put vboot verification in can be confusing.
Instead of using libverstage (which isn't enough since those functions are
sometimes called outside that, too), mention all stages where it can resides
explicitly.
Change-Id: I9360face822ada7018a1cfdfced8da29b347cbb4
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Reviewed-on: http://review.coreboot.org/10722
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/10722 for details.
-gerrit
the following patch was just integrated into master:
commit 2551f5914eb269a303a3da8653036bb82e65798e
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Mon Jun 29 14:28:25 2015 -0700
libpayload: Makefile: Use variables defined for Kconfig
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Change-Id: Ia451e8250307ad1944cb0429bdfee4bdf18c706b
Reviewed-on: http://review.coreboot.org/10712
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/10712 for details.
-gerrit
the following patch was just integrated into master:
commit ed56499ab145dc3dec1ee65693fe4b5d2f4a973f
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Thu Jun 11 14:57:36 2015 -0700
libpayload: Drop duplicate copy of Kconfig
It's perfectly fine to have one single copy of kconfig in the tree.
Change-Id: Icfe32f0249dfc1c223009d6e7136462f8f8a7248
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/10521
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/10521 for details.
-gerrit
the following patch was just integrated into master:
commit 1b4d39428eac80bc76713b1f21a2c85e8900c1b8
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Mon Jun 29 15:47:34 2015 -0700
libpayload: Make Kconfig bools use IS_ENABLED()
This will make the code work with the different styles
of Kconfig (emit unset bools vs don't emit unset bools)
Roughly, the patch does this, and a little bit of fixing up:
perl -pi -e 's,ifdef (CONFIG_LP_.+?)\b,if IS_ENABLED\($1\),g' `find . -name *.[ch]`
perl -pi -e 's,ifndef (CONFIG_LP_.+?)\b,if !IS_ENABLED\($1\),g' `find . -name *.[ch]`
Change-Id: Ib8a839b056a1f806a8597052e1b571ea3d18a79f
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/10711
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/10711 for details.
-gerrit
the following patch was just integrated into master:
commit de60c8899680f362a908d68efe9e4154ab3380be
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Mon Jun 29 14:44:37 2015 -0700
Makefile: Use variables defined for Kconfig
Change-Id: I72df5fef187e12d1c3c2409449dc9d9b7b80a5e2
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/10709
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/10709 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/10730
-gerrit
commit 07b0241c08b2047e36132c0df703175cd139de29
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Tue Jun 30 17:43:44 2015 +0200
google/peach_pit: disable Chrome OS support
The Exynos SoC code and vboot really don't get along and things are not even
in a good shape in Chrome OS' top of tree. Disable but don't rip out the
support functions, so it could be revived.
Change-Id: I982c5a3731b527fd1f1579e9de353819da656452
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
---
src/mainboard/google/peach_pit/Kconfig | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/mainboard/google/peach_pit/Kconfig b/src/mainboard/google/peach_pit/Kconfig
index 4c6cbb9..3a94dec 100644
--- a/src/mainboard/google/peach_pit/Kconfig
+++ b/src/mainboard/google/peach_pit/Kconfig
@@ -25,7 +25,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
select EC_GOOGLE_CHROMEEC
select EC_GOOGLE_CHROMEEC_SPI
select BOARD_ROMSIZE_KB_4096
- select MAINBOARD_HAS_CHROMEOS
select MAINBOARD_HAS_NATIVE_VGA_INIT
select MAINBOARD_DO_NATIVE_VGA_INIT
select DRIVER_PARADE_PS8625