[PATCH] Add sysinfo_have_multiboot function

Add a new infrastructure for returning system information to payloads.
First up - a pointer to the multiboot table.

Signed-off-by: Jordan Crouse <jordan@cosmicpenguin.net>
Acked-by: Peter Stuge <peter@stuge.se>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3743 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Jordan Crouse
2008-11-11 19:51:14 +00:00
committed by Jordan Crouse
parent 3b6c527322
commit 6c6e4333c4
5 changed files with 53 additions and 1 deletions

View File

@ -48,6 +48,8 @@ struct sysinfo_t {
u32 cmos_range_start;
u32 cmos_range_end;
u32 cmos_checksum_location;
unsigned long *mbtable; /** Pointer to the multiboot table */
};
extern struct sysinfo_t lib_sysinfo;