[edk2-devel] [PATCH v4 0/6] ArmPkg/SMBIOS fixes and improvements

Nhi Pham via groups.io posted 6 patches 2 years, 2 months ago
Failed in applying to current master (apply log)
ArmPkg/Universal/Smbios/OemMiscLibNull/OemMiscLibNull.inf                        |  9 ++++
ArmPkg/Include/Library/OemMiscLib.h                                              | 37 ++++++++++++++-
ArmPkg/Universal/Smbios/OemMiscLibNull/OemMiscLib.c                              | 47 ++++++++++++++++++++
ArmPkg/Universal/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c                 |  8 +++-
ArmPkg/Universal/Smbios/ProcessorSubClassDxe/SmbiosProcessorArmCommon.c          |  6 +--
ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type00/MiscBiosVendorFunction.c            | 22 ++++-----
ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type01/MiscSystemManufacturerFunction.c    |  3 +-
ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type02/MiscBaseBoardManufacturerFunction.c | 13 +-----
8 files changed, 117 insertions(+), 28 deletions(-)
[edk2-devel] [PATCH v4 0/6] ArmPkg/SMBIOS fixes and improvements
Posted by Nhi Pham via groups.io 2 years, 2 months ago
This patchset is to update the ArmPkg/SMBIOS for fixes and improvements.

Changes since v3:
    + Update for OemGetBiosRelease and
    OemGetEmbeddedControllerFirmwareRelease functions [Leif, Sami]

Changes since v2:
    + Add tags from Ard and Sami
    + Fix patch 3 for compilation error with OemMiscLibNull due to lack
    of gZeroGuid in the INF file.

Changes since v1:
    + Change PartNumber to ProcessorVersion [Sami]

Minh Nguyen (5):
  ArmPkg/ProcessorSubClassDxe: Get processor version from OemMiscLib
  ArmPkg: Correct return value of "SMCCC_ARCH_SOC_ID" Function ID call
  ArmPkg/SmbiosMiscDxe: Fix typo of "AssetTagType02"
  ArmPkg/SmbiosMiscDxe: Remove redundant updates in SMBIOS Type 2
  ArmPkg/SmbiosMiscDxe: Get SMBIOS information from OemMiscLib

Nhi Pham (1):
  ArmPkg/SmbiosMiscDxe: Support fetching System UUID

 ArmPkg/Universal/Smbios/OemMiscLibNull/OemMiscLibNull.inf                        |  9 ++++
 ArmPkg/Include/Library/OemMiscLib.h                                              | 37 ++++++++++++++-
 ArmPkg/Universal/Smbios/OemMiscLibNull/OemMiscLib.c                              | 47 ++++++++++++++++++++
 ArmPkg/Universal/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c                 |  8 +++-
 ArmPkg/Universal/Smbios/ProcessorSubClassDxe/SmbiosProcessorArmCommon.c          |  6 +--
 ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type00/MiscBiosVendorFunction.c            | 22 ++++-----
 ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type01/MiscSystemManufacturerFunction.c    |  3 +-
 ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type02/MiscBaseBoardManufacturerFunction.c | 13 +-----
 8 files changed, 117 insertions(+), 28 deletions(-)

-- 
2.25.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#93926): https://edk2.groups.io/g/devel/message/93926
Mute This Topic: https://groups.io/mt/93773954/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-
Re: [edk2-devel] [PATCH v4 0/6] ArmPkg/SMBIOS fixes and improvements
Posted by Sami Mujawar 2 years, 2 months ago
Merged as a8e8c43a0ef2..953438e4665c

Thanks.

Regards,

Sami Mujawar

On 19/09/2022 03:19 am, Nhi Pham wrote:
> This patchset is to update the ArmPkg/SMBIOS for fixes and improvements.
>
> Changes since v3:
>      + Update for OemGetBiosRelease and
>      OemGetEmbeddedControllerFirmwareRelease functions [Leif, Sami]
>
> Changes since v2:
>      + Add tags from Ard and Sami
>      + Fix patch 3 for compilation error with OemMiscLibNull due to lack
>      of gZeroGuid in the INF file.
>
> Changes since v1:
>      + Change PartNumber to ProcessorVersion [Sami]
>
> Minh Nguyen (5):
>    ArmPkg/ProcessorSubClassDxe: Get processor version from OemMiscLib
>    ArmPkg: Correct return value of "SMCCC_ARCH_SOC_ID" Function ID call
>    ArmPkg/SmbiosMiscDxe: Fix typo of "AssetTagType02"
>    ArmPkg/SmbiosMiscDxe: Remove redundant updates in SMBIOS Type 2
>    ArmPkg/SmbiosMiscDxe: Get SMBIOS information from OemMiscLib
>
> Nhi Pham (1):
>    ArmPkg/SmbiosMiscDxe: Support fetching System UUID
>
>   ArmPkg/Universal/Smbios/OemMiscLibNull/OemMiscLibNull.inf                        |  9 ++++
>   ArmPkg/Include/Library/OemMiscLib.h                                              | 37 ++++++++++++++-
>   ArmPkg/Universal/Smbios/OemMiscLibNull/OemMiscLib.c                              | 47 ++++++++++++++++++++
>   ArmPkg/Universal/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c                 |  8 +++-
>   ArmPkg/Universal/Smbios/ProcessorSubClassDxe/SmbiosProcessorArmCommon.c          |  6 +--
>   ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type00/MiscBiosVendorFunction.c            | 22 ++++-----
>   ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type01/MiscSystemManufacturerFunction.c    |  3 +-
>   ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type02/MiscBaseBoardManufacturerFunction.c | 13 +-----
>   8 files changed, 117 insertions(+), 28 deletions(-)
>


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#94217): https://edk2.groups.io/g/devel/message/94217
Mute This Topic: https://groups.io/mt/93773954/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-