This patchset introduces SMBIOS/DMI table generation to qemu for PC machines.
The intial patch includes all changes needed to create the tables and load
them into memory.  This patch depends on libuuid.  The subsequent patches
detect for libuuid and optionally link to the library if present.  The final
patch adds a -uuid option for a user to specify their own uuid.

These patches should apply against qemu-cvs.  Tested on target x86_64-softmmu.

Updates:

- moved smbios.o into i386 target section
- removed open segment in hw/pc.c and moved variable declaration
- removed some uneeded externs from smbios.c
- added uuid_parse implementation allowing -uuid to be available with or 
without                  linking against libuuid.
- reduced the number of CONFIG_UUID defines

Signed-off-by: Ryan Harper <[EMAIL PROTECTED]>

7 files changed, 848 insertions(+), 11 deletions(-)
Makefile.target |    9 
configure       |   26 ++
hw/pc.c         |   45 ++++
smbios.c        |  584 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-
smbios_types.h  |  182 +++++++++++++++++
sysemu.h        |    5 
vl.c            |    8 


Reply via email to