Hello Arthur Heymans, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/27521
to look at the new patch set (#2).
Change subject: mb/hp/compaq_8200_elite_sff: Add data.vbt
......................................................................
mb/hp/compaq_8200_elite_sff: Add data.vbt
Change-Id: Idb65d6c2ec85f09b8e7e9967ba0a055f876378df
Signed-off-by: Patrick Rudolph <patrick.rudolph(a)9elements.com>
---
M src/mainboard/hp/compaq_8200_elite_sff/Kconfig
A src/mainboard/hp/compaq_8200_elite_sff/data.vbt
2 files changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/21/27521/2
--
To view, visit https://review.coreboot.org/27521
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: Idb65d6c2ec85f09b8e7e9967ba0a055f876378df
Gerrit-Change-Number: 27521
Gerrit-PatchSet: 2
Gerrit-Owner: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Joel Kitching has uploaded this change for review. ( https://review.coreboot.org/27520
Change subject: cbfstool/extract: ignore compression field for some payload segments
......................................................................
cbfstool/extract: ignore compression field for some payload segments
When extracting a payload from CBFS, ignore compression fields for
these types of payload segments:
- PAYLOAD_SEGMENT_ENTRY
- PAYLOAD_SEGMENT_BSS
- PAYLOAD_SEGMENT_PARAMS
These types of payload segments cannot be compressed, and in certain
cases are being erroneously labeled as compressed, causing errors
when extracting the payload.
For an example of this problem, see creation of PAYLOAD_SEGMENT_ENTRY
segments in cbfs-mkpayload.c, where the only field that is written to
is |load_addr|.
Also, add a linebreak to an ERROR line.
BUG=b:111576981
TEST=cbfstool tianocore.cbfs extract -m x86 -n payload -f /tmp/payload -v -v
Change-Id: I8c5c40205d648799ea577ad0c5bee6ec2dd7d05f
Signed-off-by: kitching(a)google.com
---
M util/cbfstool/cbfs_image.c
1 file changed, 8 insertions(+), 8 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/20/27520/1
diff --git a/util/cbfstool/cbfs_image.c b/util/cbfstool/cbfs_image.c
index e533483..a0b7e7b 100644
--- a/util/cbfstool/cbfs_image.c
+++ b/util/cbfstool/cbfs_image.c
@@ -925,14 +925,6 @@
struct buffer tbuff;
size_t decomp_size;
- /* The payload uses an unknown compression algorithm. */
- decompress = decompression_function(segments[i].compression);
- if (decompress == NULL) {
- ERROR("Unknown decompression algorithm: %u",
- segments[i].compression);
- return -1;
- }
-
/* Segments BSS and ENTRY do not have binary data. */
if (segments[i].type == PAYLOAD_SEGMENT_BSS ||
segments[i].type == PAYLOAD_SEGMENT_ENTRY) {
@@ -947,6 +939,14 @@
continue;
}
+ /* The payload uses an unknown compression algorithm. */
+ decompress = decompression_function(segments[i].compression);
+ if (decompress == NULL) {
+ ERROR("Unknown decompression algorithm: %u",
+ segments[i].compression);
+ return -1;
+ }
+
if (buffer_create(&tbuff, segments[i].mem_len, "segment")) {
buffer_delete(&new_buffer);
return -1;
--
To view, visit https://review.coreboot.org/27520
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: I8c5c40205d648799ea577ad0c5bee6ec2dd7d05f
Gerrit-Change-Number: 27520
Gerrit-PatchSet: 1
Gerrit-Owner: Joel Kitching <kitching(a)google.com>
Hello Ravishankar Sarawadi, build bot (Jenkins), Hannah Williams,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/27518
to look at the new patch set (#2).
Change subject: soc/intel/skylake: Use bootblock common stage
......................................................................
soc/intel/skylake: Use bootblock common stage
Change skylake bootcode to use common bootblock stage.
BUG=b:78109109
Change-Id: I46cb6bc6f6c6b97243f7d40457fd02d4ef7b8933
Signed-off-by: Bora Guvendik <bora.guvendik(a)intel.com>
---
M src/soc/intel/skylake/Kconfig
M src/soc/intel/skylake/Makefile.inc
M src/soc/intel/skylake/bootblock/bootblock.c
D src/soc/intel/skylake/bootblock/cpu.c
D src/soc/intel/skylake/bootblock/pch.c
M src/soc/intel/skylake/bootblock/report_platform.c
M src/soc/intel/skylake/include/soc/bootblock.h
M src/soc/intel/skylake/include/soc/iomap.h
M src/soc/intel/skylake/uart.c
9 files changed, 243 insertions(+), 436 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/18/27518/2
--
To view, visit https://review.coreboot.org/27518
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I46cb6bc6f6c6b97243f7d40457fd02d4ef7b8933
Gerrit-Change-Number: 27518
Gerrit-PatchSet: 2
Gerrit-Owner: Bora Guvendik <bora.guvendik(a)intel.com>
Gerrit-Reviewer: Hannah Williams <hannah.williams(a)intel.com>
Gerrit-Reviewer: Ravishankar Sarawadi <ravishankar.sarawadi(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Raul Rangel has posted comments on this change. ( https://review.coreboot.org/27517 )
Change subject: security/vboot: fix typo
......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/#/c/27517/1//COMMIT_MSG
Commit Message:
https://review.coreboot.org/#/c/27517/1//COMMIT_MSG@7
PS1, Line 7: secur
> This should probably be "security/vboot:" Typically we want to start with a path.
Done
--
To view, visit https://review.coreboot.org/27517
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: I7027abee66ccdf9b2d37df60ca7f4dbbbae2f9e4
Gerrit-Change-Number: 27517
Gerrit-PatchSet: 2
Gerrit-Owner: Raul Rangel <rrangel(a)chromium.org>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Raul Rangel <rrangel(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Tue, 17 Jul 2018 20:45:10 +0000
Gerrit-HasComments: Yes
Gerrit-HasLabels: No