diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-05-17 20:36:45 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-05-17 20:36:45 +0000 |
commit | c9a6f0f442846b0ed631ddceb062e632c1154da4 (patch) | |
tree | d38c38cb3458eedde489f5f6e35e4a6bf47f709d /payloads/libpayload/include/sysinfo.h | |
parent | 56ae8fcb6fe545557c6b5a3ffb72f54bd3b53ddc (diff) | |
download | coreboot-c9a6f0f442846b0ed631ddceb062e632c1154da4.tar.xz |
Add type field to memranges, and fill it from the source data.
type field contains e820 type ids, which are used by coreboot
and multiboot (the two source formats), so they can be used
as-is.
The MEMMAP_RAM_ONLY define is a way to allow a payload to opt
for only having CB_MEM_RAM type fields, which might be helpful
to support older payloads easily (just add the define, and it
won't encounter "weird" fields)
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4291 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/libpayload/include/sysinfo.h')
-rw-r--r-- | payloads/libpayload/include/sysinfo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/payloads/libpayload/include/sysinfo.h b/payloads/libpayload/include/sysinfo.h index 3b2c69c61d..bcc3d5fbab 100644 --- a/payloads/libpayload/include/sysinfo.h +++ b/payloads/libpayload/include/sysinfo.h @@ -42,6 +42,7 @@ struct sysinfo_t { struct memrange { unsigned long long base; unsigned long long size; + unsigned int type; } memrange[SYSINFO_MAX_MEM_RANGES]; struct cb_cmos_option_table *option_table; |