diff options
author | Star Zeng <star.zeng@intel.com> | 2021-09-28 10:27:28 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-10-12 05:41:25 +0000 |
commit | ba4ae92234b1985a89b3abed221d825b8d9ef9e2 (patch) | |
tree | 7b1663dfe52837baabcfc892a349773a4f6f6c0e /ShellPkg | |
parent | 782d0187032908cfe3298f975dca6ca1312f8bc2 (diff) | |
download | edk2-ba4ae92234b1985a89b3abed221d825b8d9ef9e2.tar.gz edk2-ba4ae92234b1985a89b3abed221d825b8d9ef9e2.tar.bz2 edk2-ba4ae92234b1985a89b3abed221d825b8d9ef9e2.zip |
ShellPkg: Support ProcessorUpgradeSocketLGA4677 from SMBIOS 3.5.0
The patch adds entry into QueryTable.c for ProcessorUpgradeSocketLGA4677
from SMBIOS 3.5.0.
It also adds entries into QueryTable.c for ProcessorUpgradeSocketLGA4189
and ProcessorUpgradeSocketLGA1200 from SMBIOS 3.4.0.
Signed-off-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to 'ShellPkg')
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c index 7fc9d38a3b..c312a7f8f2 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c @@ -2,7 +2,7 @@ Build a table, each item is (Key, Info) pair.
And give a interface of query a string out of a table.
- Copyright (c) 2005 - 2019, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2005 - 2021, Intel Corporation. All rights reserved.<BR>
(C) Copyright 2016-2019 Hewlett Packard Enterprise Development LP<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
@@ -589,6 +589,18 @@ TABLE_ITEM ProcessorUpgradeTable[] = { {
0x3C,
L"Socket BGA1528"
+ },
+ {
+ 0x3D,
+ L"Socket LGA4189"
+ },
+ {
+ 0x3E,
+ L"Socket LGA1200"
+ },
+ {
+ 0x3F,
+ L"Socket LGA4677"
}
};
|