diff options
author | Aaron Durbin <adurbin@chromium.org> | 2015-03-26 11:05:26 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@google.com> | 2015-03-31 23:01:39 +0200 |
commit | f786652af1c315fbe27221217aab0e845851acb5 (patch) | |
tree | 8b256005354a2bc3884fafde7927a3743227ba8d /src/arch | |
parent | bf5407cd4985119cd682ded72e9e634496d48201 (diff) |
cbfs: add cbfs_serialized.h header file
The serialized format of CBFS is separate from the APIs
used to traverse and read from CBFS. Separate those out
so they can be consumed as a standalone header.
Change-Id: I09f71d9c474ee9f23a62b0062ffa777963d1a4dd
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/9125
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/include/arch/cbfs.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/arch/x86/include/arch/cbfs.h b/src/arch/x86/include/arch/cbfs.h index 964eb4edea..f2aed3b012 100644 --- a/src/arch/x86/include/arch/cbfs.h +++ b/src/arch/x86/include/arch/cbfs.h @@ -20,7 +20,10 @@ #ifndef __INCLUDE_ARCH_CBFS__ #define __INCLUDE_ARCH_CBFS__ -#include <cbfs_core.h> +#include <arch/byteorder.h> +#include <cbfs_serialized.h> + +#define CBFS_SUBHEADER(_p) ( (void *) ((((uint8_t *) (_p)) + ntohl((_p)->offset))) ) static struct cbfs_file *walkcbfs_head(char *target) { |