diff options
author | Star Zeng <star.zeng@intel.com> | 2017-01-13 16:14:54 +0800 |
---|---|---|
committer | Star Zeng <star.zeng@intel.com> | 2017-01-19 09:47:28 +0800 |
commit | 5ab0ffc9f64f5a539a9bdb50446b7fbf92b845d6 (patch) | |
tree | 5e5be4ac985f70ab340efd437f9e6b36657b81b4 /ShellPkg | |
parent | 88fd27e5b2cae68ff5a11cd5560ef5f98d001c42 (diff) | |
download | edk2-5ab0ffc9f64f5a539a9bdb50446b7fbf92b845d6.tar.gz edk2-5ab0ffc9f64f5a539a9bdb50446b7fbf92b845d6.tar.bz2 edk2-5ab0ffc9f64f5a539a9bdb50446b7fbf92b845d6.zip |
ShellPkg SmbiosView: Add missing decoding of SlotType AGP8X
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=344
SlotType AGP8X was added in SMBIOS spec 2.3.4, but the decoding
of it is missing. I found it when I am adding SMBIOS spec 3.1.0
support.
Cc: Jaben Carsey <jaben.carsey@intel.com>
Cc: Ruiyu Ni <ruiyu.ni@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
Diffstat (limited to 'ShellPkg')
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c index b802c54509..bb7a19b041 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 - 2015, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2005 - 2017, Intel Corporation. All rights reserved.<BR>
(C) Copyright 2016-2017 Hewlett Packard Enterprise Development LP<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -1263,6 +1263,10 @@ TABLE_ITEM SystemSlotTypeTable[] = { L"PCI-X"
},
{
+ 0x13,
+ L"AGP 8X"
+ },
+ {
0xA0,
L"PC-98/C20 "
},
|