Stefan Reinauer has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/46301?usp=email )
Change subject: soc/intel/common: drop default to enable the PIT if SeaBIOS is chosen
......................................................................
Abandoned
--
To view, visit https://review.coreboot.org/c/coreboot/+/46301?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ifd75800678707a92110682347c7cfb93e25109a4
Gerrit-Change-Number: 46301
Gerrit-PatchSet: 1
Gerrit-Owner: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-Reviewer: Aaron Durbin <adurbin(a)chromium.org>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Furquan Shaikh <furquan.m.shaikh(a)gmail.com>
Gerrit-Reviewer: Gerd Hoffmann <kraxel(a)redhat.com>
Gerrit-Reviewer: Kevin OConnor <kevin(a)koconnor.net>
Gerrit-Reviewer: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Reviewer: Subrata Banik <subrata.banik(a)intel.com>
Gerrit-Reviewer: Tim Wawrzynczak <inforichland(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: abandon
Olaf Hernandez Beristain has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/48420 )
Change subject: add BASIC interpreter or similar payload to project ideas
......................................................................
add BASIC interpreter or similar payload to project ideas
Change-Id: Ib5cfd6ddf6ddaa384c66c313c993fbfcc911e3c3
---
M Documentation/contributing/project_ideas.md
1 file changed, 11 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/20/48420/1
diff --git a/Documentation/contributing/project_ideas.md b/Documentation/contributing/project_ideas.md
index 141023f..c4c26c5 100644
--- a/Documentation/contributing/project_ideas.md
+++ b/Documentation/contributing/project_ideas.md
@@ -247,3 +247,14 @@
### Mentors
* Patrick Rudolph <patrick.rudolph(a)9elements.com>
* Christian Walter <christian.walter(a)9elements.com>
+
+## Create a BASIC interpreter or similar payload
+A payload that can run a BASIC interpreter or similar. Possibly could be a subset of [GW-BASIC](https://github.com/microsoft/GW-BASIC).
+In fact any code interpreter would be great. Another option is [Forth/Fcode](https://www.openfirmware.info/Forth/FCode)
+
+
+### Requirements
+* coreboot knowledge: Should know how to build coreboot images and
+ include payloads.
+* understanding low level programming
+* know how interpreter works
--
To view, visit https://review.coreboot.org/c/coreboot/+/48420
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ib5cfd6ddf6ddaa384c66c313c993fbfcc911e3c3
Gerrit-Change-Number: 48420
Gerrit-PatchSet: 1
Gerrit-Owner: Olaf Hernandez Beristain <olafitohb(a)gmail.com>
Gerrit-MessageType: newchange
Michał Żygowski has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/43483 )
Change subject: Documentation/vendorcode/eltan/security.md: Fix bugs in the guide
......................................................................
Documentation/vendorcode/eltan/security.md: Fix bugs in the guide
ELTAN verified boot seems to be using vboot 2.1 key format not vboot
1.0. Generating vboot 1.0 keys results in public key of incorrect size
(according to the verified boot implementation in vendorcode) which
results in errors during booting.
Fix the cbfstool extraction command to take account for stage file
which may have certain sections removed.
Add note about endianess of digest generated by openssl.
Signed-off-by: Michał Żygowski <michal.zygowski(a)3mdeb.com>
Change-Id: I27cf8e3f8e22876f671092fe4d3265a98564d996
---
M Documentation/vendorcode/eltan/security.md
1 file changed, 8 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/83/43483/1
diff --git a/Documentation/vendorcode/eltan/security.md b/Documentation/vendorcode/eltan/security.md
index 9dd47c0..1c05cd5 100644
--- a/Documentation/vendorcode/eltan/security.md
+++ b/Documentation/vendorcode/eltan/security.md
@@ -42,7 +42,7 @@
Create private key in RSA2048 format: `openssl genrsa -F4 -out <private_key_file> 2048`
Create public key using private key:
-`futility --vb1 create <private_key_file> <public_key_file_without_extension>`
+`futility --vb21 create <private_key_file> <public_key_file_without_extension>`
The public key will be included into coreboot and used for verified boot only.
@@ -79,9 +79,15 @@
The total number of items must match `VENDORCODE_ELTAN_OEM_MANIFEST_ITEMS`.
For every part the SHA (SHA-256) must be calculated. First extract the binary from the coreboot
-image using: `cbfstool <coreboot_file_name> extract -n <cbfs_name> -f <item_binary_file_name>`
+image using: `cbfstool <coreboot_file_name> extract -n <cbfs_name> -f <item_binary_file_name> -m x86 -U`
+Note the `-m x86 -U` flags are required for correct extraction of stages. Certain stages are
+put in CBFS without certain program sections so extraction process must also remove these sections.
+
followed by: `openssl dgst -sha256 -binary -out <hash_file_name> <item_binary_file_name>`
+The SHA256 digest will be in big endian so it must be converted to little endian with:
+`< <hash_file_name> xxd -p -c1 | tac | xxd -p -r > <hash_file_name_le>`
+
Replace -sha256 with -sha512 when `VENDORCODE_ELTAN_VBOOT_USE_SHA512` is enabled.
All the hashes must be combined to a hash binary. The hashes need to be placed in the same order as
--
To view, visit https://review.coreboot.org/c/coreboot/+/43483
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I27cf8e3f8e22876f671092fe4d3265a98564d996
Gerrit-Change-Number: 43483
Gerrit-PatchSet: 1
Gerrit-Owner: Michał Żygowski <michal.zygowski(a)3mdeb.com>
Gerrit-MessageType: newchange
Stefan Reinauer has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/48385?usp=email )
Change subject: soc/intel/common/block/uart: rework to use dummy device
......................................................................
Abandoned
--
To view, visit https://review.coreboot.org/c/coreboot/+/48385?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ic9c9398829b52e6b0523504b862aae9aff559bc7
Gerrit-Change-Number: 48385
Gerrit-PatchSet: 3
Gerrit-Owner: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-Reviewer: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Reviewer: Duncan L
Gerrit-Reviewer: Felix Singer <service+coreboot-gerrit(a)felixsinger.de>
Gerrit-Reviewer: Furquan Shaikh <furquan.m.shaikh(a)gmail.com>
Gerrit-Reviewer: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Reviewer: Tim Wawrzynczak <inforichland(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: abandon