diff options
author | Laszlo Ersek <lersek@redhat.com> | 2019-06-04 20:17:48 +0200 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2019-06-05 10:10:41 +0200 |
commit | be689ecc93e5b9255ec329a86520c831f824084f (patch) | |
tree | 10619294d67c5e43df958c11a267d85f162a3ebd | |
parent | a1539c46958fb896dee8f7987f4a98e9f9d10796 (diff) | |
download | edk2-be689ecc93e5b9255ec329a86520c831f824084f.tar.gz edk2-be689ecc93e5b9255ec329a86520c831f824084f.tar.bz2 edk2-be689ecc93e5b9255ec329a86520c831f824084f.zip |
Revert "EmulatorPkg: don't display the cpu current speed"
This reverts commit 7cea4d71a8a87a93924a07ab32348332f5881ef9.
Said commit was not suitable for pushing during the edk2-stable201905 hard
feature freeze; it was pushed only by mistake. The subject line referenced
EmulatorPkg, but the patch changed MdeModulePkg/UiApp, regressing the
display of the CPU speed from SMBIOS in multiple platforms.
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Hao A Wu <hao.a.wu@intel.com>
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=1877
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
-rw-r--r-- | MdeModulePkg/Application/UiApp/FrontPage.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MdeModulePkg/Application/UiApp/FrontPage.c b/MdeModulePkg/Application/UiApp/FrontPage.c index fded763406..4b95cccb5c 100644 --- a/MdeModulePkg/Application/UiApp/FrontPage.c +++ b/MdeModulePkg/Application/UiApp/FrontPage.c @@ -621,6 +621,11 @@ UpdateFrontPageBannerStrings ( HiiSetString (gFrontPagePrivate.HiiHandle, STRING_TOKEN (STR_FRONT_PAGE_CPU_MODEL), NewString, NULL);
FreePool (NewString);
+ ConvertProcessorToString(Type4Record->CurrentSpeed, 6, &NewString);
+ UiCustomizeFrontPageBanner (2, FALSE, &NewString);
+ HiiSetString (gFrontPagePrivate.HiiHandle, STRING_TOKEN (STR_FRONT_PAGE_CPU_SPEED), NewString, NULL);
+ FreePool (NewString);
+
FoundCpu = TRUE;
}
}
|