diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-11-21 02:27:07 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-11-21 02:27:07 +0000 |
commit | 899f5b8ab233987646e6f5012f462a19a833d8d4 (patch) | |
tree | cee5ca8745e7e84f9f2612c3eeb732d31e5c5f24 /src/arch/i386/include | |
parent | 68c438954de2b7c0d65557c437a36084d64d05c9 (diff) | |
download | ipxe-899f5b8ab233987646e6f5012f462a19a833d8d4.tar.gz |
Added definition of a UUID and uuid_ntoa() (for debugging), and
implemented smbios_get_uuid().
Diffstat (limited to 'src/arch/i386/include')
-rw-r--r-- | src/arch/i386/include/smbios.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/i386/include/smbios.h b/src/arch/i386/include/smbios.h index a0a7a222..f5f0b5c2 100644 --- a/src/arch/i386/include/smbios.h +++ b/src/arch/i386/include/smbios.h @@ -32,6 +32,8 @@ struct smbios_system_information { uint8_t serial; /** UUID */ uint8_t uuid[16]; + /** Wake-up type */ + uint8_t wakeup; } __attribute__ (( packed )); /** SMBIOS system information structure type */ |