diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2018-04-09 13:05:29 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-04-10 10:50:06 +0000 |
commit | 8ee93ae26786c11f5169aedceb5b2670ff53568a (patch) | |
tree | ead95aded2e49b14c8500f23a4f9ac87487da5dd /Documentation/cbfs.txt | |
parent | 7fa9f73ac7b55272f15236a019f07c468b1f05c9 (diff) | |
download | coreboot-8ee93ae26786c11f5169aedceb5b2670ff53568a.tar.xz |
Documentation: Fix a bunch of typos
Change-Id: I25dca2e231343cfdad61a638f0302726a6aa3f8b
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/25571
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'Documentation/cbfs.txt')
-rw-r--r-- | Documentation/cbfs.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/cbfs.txt b/Documentation/cbfs.txt index 6c5c228e28..7adae61432 100644 --- a/Documentation/cbfs.txt +++ b/Documentation/cbfs.txt @@ -36,7 +36,7 @@ CBFS by type (i.e - bayou can ask for all components that are payloads). The header on each "file" (or component, as I like to style them) has been simplified - We now only store the length, the type, the checksum, and the offset to the data. The name scheme remains the same. The -addtional information, which is component specific, has been moved to +additional information, which is component specific, has been moved to the component itself (see below). The components are arranged in the ROM aligned along the specified @@ -245,7 +245,7 @@ structure of the header: | ... | \--------/ <- start + 'offset' + 'len' -== Searching Alogrithm == +== Searching Algorithm == To locate a specific component in the ROM, one starts at the 'offset' specified in the CBFS master header. For this example, the offset will @@ -379,7 +379,7 @@ struct cbfs_payload_segment { PAYLOAD_SEGMENT_CODE 0x45444F43 The segment contains executable code PAYLOAD_SEGMENT_DATA 0x41544144 The segment contains data -PAYLOAD_SEGMENT_BSS 0x20535342 The memory speicfied by the segment +PAYLOAD_SEGMENT_BSS 0x20535342 The memory specified by the segment should be zeroed PAYLOAD_SEGMENT_PARAMS 0x41524150 The segment contains information for the payload |