summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVarshitPandya <varshit.pandya@arm.com>2026-07-01 15:36:40 +0100
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2026-07-02 07:22:54 +0000
commitc362e91e5600ad3378bff1d75aeae90fdef1e154 (patch)
tree748b1e5823e9a7f6203a14271c3a8efd7565970a
parent7bc6629f400c03970614420366edddecbd0dabcb (diff)
downloadedk2-c362e91e5600ad3378bff1d75aeae90fdef1e154.tar.gz
edk2-c362e91e5600ad3378bff1d75aeae90fdef1e154.zip
ShellPkg: Add missing smbiosview Type 28 locations
Add the missing SMBIOS Type 28 Temperature Probe location decode values to smbiosview. The Type 28 Location field defines values 0x0C through 0x0F for Front Panel Board, Back Panel Board, Power System Board, and Drive Back Plane, but smbiosview only decoded values up to 0x0B. Signed-off-by: VarshitPandya <varshit.pandya@arm.com>
-rw-r--r--ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c
index 9d3219b6eb..71848259af 100644
--- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c
+++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c
@@ -3455,6 +3455,22 @@ TABLE_ITEM TemperatureProbeLocTable[] = {
0x0B,
L" Add-in Card "
},
+ {
+ 0x0C,
+ L" Front Panel Board "
+ },
+ {
+ 0x0D,
+ L" Back Panel Board "
+ },
+ {
+ 0x0E,
+ L" Power System Board "
+ },
+ {
+ 0x0F,
+ L" Drive Back Plane "
+ },
};
TABLE_ITEM ECPStatusTable[] = {