diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2019-10-21 19:25:32 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-10-23 14:22:55 +0000 |
commit | 750ce06cd5541f999d9b9dac17821e0aa0ff0ec9 (patch) | |
tree | bd292dcc4f7a40db929316da4bc247425a23fc2d /Documentation/technotes | |
parent | 7f2aaacd9e7914a461bbad0c7c94599864245ade (diff) |
technotes/coreboot-image-generation: Fix markdown
The manifest example has to be marked as code. The Manifest parsing
section header should be L2 and finally # is a special character in
markdown.
Change-Id: I38cb1a508ec9ccb39cb39048de3742a5cb595f7b
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36199
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'Documentation/technotes')
-rw-r--r-- | Documentation/technotes/2015-11-rebuilding-coreboot-image-generation.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Documentation/technotes/2015-11-rebuilding-coreboot-image-generation.md b/Documentation/technotes/2015-11-rebuilding-coreboot-image-generation.md index d2a8fdcc0d..9accbfe65d 100644 --- a/Documentation/technotes/2015-11-rebuilding-coreboot-image-generation.md +++ b/Documentation/technotes/2015-11-rebuilding-coreboot-image-generation.md @@ -154,6 +154,7 @@ several data regions for its own purpose (similar to GBB, FWID, VPD, …). After the regions are filled, one data region must be post-processed to contain signatures to enable verifying other regions. +``` Chipset manifest ================ # A region called IFD, starting at 0, ending at 4K @@ -249,14 +250,15 @@ EC firmware manifest # overrides the cbfsdefault above group payload: ecrw.bin name=ecrw hash=sha256 group payload: pdrw.bin name=pdrw hash=sha256 +``` manifest parsing -================ +---------------- The exact BNF is work in progress. Some parser rules are * one line per statement -* # introduces a command until the end of line +* '#' introduces a command until the end of line Some processing rules * When there’s a conflict (eg. two statements on what to do to a region, |