Re: [edk2] [PATCH 1/1] MdeModulePkg: Add SMBIOS 3.0 support in NetLibGetSystemGuid

2015-09-29 Thread Fu, Siyuan
mber 17, 2015 2:43 AM To: El-Haj-Mahmoud, Samer mailto:samer.el-haj-mahm...@hpe.com>>; edk2-devel@lists.01.org<mailto:edk2-devel@lists.01.org> Cc: Tian, Feng mailto:feng.t...@intel.com>> Subject: RE: [edk2] [PATCH 1/1] MdeModulePkg: Add SMBIOS 3.0 support in NetLibGetSystemGui

Re: [edk2] [PATCH 1/1] MdeModulePkg: Add SMBIOS 3.0 support in NetLibGetSystemGuid

2015-09-29 Thread El-Haj-Mahmoud, Samer
el@lists.01.org Cc: Tian, Feng Subject: RE: [edk2] [PATCH 1/1] MdeModulePkg: Add SMBIOS 3.0 support in NetLibGetSystemGuid Hi, Samer Should below if condition + if (!(EFI_ERROR (Status) || Smbios30Table == NULL)) { to be if (!(EFI_ERROR (Status) && Smbios30Table != NULL))

Re: [edk2] [PATCH 1/1] MdeModulePkg: Add SMBIOS 3.0 support in NetLibGetSystemGuid

2015-09-17 Thread Fu, Siyuan
-Mahmoud Sent: Thursday, September 17, 2015 2:00 AM To: edk2-devel@lists.01.org Cc: Tian, Feng ; Samer El-Haj-Mahmoud Subject: [edk2] [PATCH 1/1] MdeModulePkg: Add SMBIOS 3.0 support in NetLibGetSystemGuid NetLibGetSystemGuid gets the UUID from SMBIOS table to use as the System GUID (in DHCP a

[edk2] [PATCH 1/1] MdeModulePkg: Add SMBIOS 3.0 support in NetLibGetSystemGuid

2015-09-16 Thread Samer El-Haj-Mahmoud
NetLibGetSystemGuid gets the UUID from SMBIOS table to use as the System GUID (in DHCP and other network use cases). This change adds support to get the UUID from either SMBIOS 2.x or 3.0, since SMBIOS 3.0 uses a different GUID in the System Configuration Table. Contributed-under: TianoCore Con