diff options
author | Samer El-Haj-Mahmoud elhaj <Samer El-Haj-Mahmoud elhaj@hp.com> | 2014-09-02 20:03:36 +0000 |
---|---|---|
committer | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-09-02 20:03:36 +0000 |
commit | 073fe5871e9a20e694ec49801d2d5c422fc4f8c4 (patch) | |
tree | 252d3b81fba180c6b7dce5fa72ddf9a558da928d /ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | |
parent | a3d236df1441f07d727e3aa98f865d4695e0a9f4 (diff) | |
download | edk2-platforms-073fe5871e9a20e694ec49801d2d5c422fc4f8c4.tar.xz |
Update SmbiosView Shell command to display additional CPU Family
and Socket designations, and fix a couple of typos
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Samer El-Haj-Mahmoud elhaj@hp.com
Reviewed-By: Jaben Carsey <Jaben.carsey@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16036 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c')
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c index 700592d263..de6df5f12b 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c @@ -469,7 +469,7 @@ TABLE_ITEM ProcessorUpgradeTable[] = { },
{
0x24,
- L"Socket BGA1155"
+ L"Socket LGA1155"
},
{
0x25,
@@ -494,6 +494,14 @@ TABLE_ITEM ProcessorUpgradeTable[] = { {
0x2A,
L"Socket FM2"
+ },
+ {
+ 0x2B,
+ L"Socket LGA2011-3"
+ },
+ {
+ 0x2C,
+ L"Socket LGA1356-3"
}
};
|