From 4ab8c3cf99fda87f264f2e6898fd52d28e80b94a Mon Sep 17 00:00:00 2001 From: Revathy V Date: Mon, 14 Oct 2024 11:31:39 +0530 Subject: ShellPkg: Updated Type 4 Info as per Smbios 3.8.0 REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4861 Added PROCESSOR_FAMILY_NAME support in ShellPkg. Signed-off-by: Revathy --- ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c index 5757036f58..80199c9cc5 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c @@ -2423,6 +2423,10 @@ DisplayProcessorFamily ( Print (L"Intel Core i9 processor\n"); break; + case 0xD0: + Print (L"Intel Xeon D Processor\n"); + break; + case 0xD2: Print (L"ViaC7M\n"); break; -- cgit