diff mbox

[Linaro-uefi,v4,56/56] Hisilicon/Platforms: ignore memory test to speed boot time

Message ID 1479544691-59575-57-git-send-email-heyi.guo@linaro.org
State New
Headers show

Commit Message

gary guo Nov. 19, 2016, 8:38 a.m. UTC
The D05 have 16 DIMM slots(D03 8 slots) and totally support
16GB*16(256GB) memory, the test time is too long, so we
set the test level to 'IGNOR' to promote boot speed.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Heyi Guo <heyi.guo@linaro.org>
---
 Chips/Hisilicon/Library/PlatformIntelBdsLib/IntelBdsPlatform.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/Chips/Hisilicon/Library/PlatformIntelBdsLib/IntelBdsPlatform.c b/Chips/Hisilicon/Library/PlatformIntelBdsLib/IntelBdsPlatform.c
index 43a4385..e6aaf61 100644
--- a/Chips/Hisilicon/Library/PlatformIntelBdsLib/IntelBdsPlatform.c
+++ b/Chips/Hisilicon/Library/PlatformIntelBdsLib/IntelBdsPlatform.c
@@ -435,7 +435,7 @@  PlatformBdsPolicyBehavior (
   //
   // Add memory test to convert memory above 4GB to be tested
   //
-  Status = BaseMemoryTest (QUICK);
+  Status = BaseMemoryTest (IGNORE);
   if (EFI_ERROR (Status)) {
     DEBUG ((EFI_D_ERROR, "[%a:%d] - Base memory test failed: %r\n", __FUNCTION__, __LINE__, Status));
   }