diff options
Diffstat (limited to 'util/flashrom/coreboot_tables.h')
-rw-r--r-- | util/flashrom/coreboot_tables.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/util/flashrom/coreboot_tables.h b/util/flashrom/coreboot_tables.h index c4c2d4d17e..2eaff08765 100644 --- a/util/flashrom/coreboot_tables.h +++ b/util/flashrom/coreboot_tables.h @@ -135,6 +135,13 @@ struct lb_string { uint8_t string[0]; }; +#define LB_TAG_FORWARD 0x0011 +struct lb_forward { + uint32_t tag; + uint32_t size; + uint64_t forward; +}; + /* The following structures are for the cmos definitions table */ #define LB_TAG_CMOS_OPTION_TABLE 200 /* cmos header record */ |