diff options
author | Revathy V <revathyv@ami.com> | 2024-10-14 11:31:39 +0530 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-10-22 18:25:54 +0000 |
commit | 4ab8c3cf99fda87f264f2e6898fd52d28e80b94a (patch) | |
tree | b28699090338dbce3fa75aefc4c408da6a9c08cb | |
parent | 9dc7fb819c87830bc0eb1081a21c194888a9ad67 (diff) | |
download | edk2-4ab8c3cf99fda87f264f2e6898fd52d28e80b94a.zip edk2-4ab8c3cf99fda87f264f2e6898fd52d28e80b94a.tar.gz edk2-4ab8c3cf99fda87f264f2e6898fd52d28e80b94a.tar.bz2 |
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 <revathyv@ami.com>
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c index 5757036..80199c9 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;
|