]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Universal/BdsDxe/BdsEntry.c
MdeModulePkg/BdsDxe: Fix calling PlatformBootManagerWaitCallback on 0
[mirror_edk2.git] / MdeModulePkg / Universal / BdsDxe / BdsEntry.c
index 7968a58f3454dd6a19c9dac049ea4cbc7e7a08e8..d6ec31118c1ffd87e37fb0a6430a98b97ddbd1c4 100644 (file)
@@ -341,7 +341,17 @@ BdsWait (
       TimeoutRemain--;\r
     }\r
   }\r
-  PlatformBootManagerWaitCallback (0);\r
+\r
+  //\r
+  // If the platform configured a nonzero and finite time-out, and we have\r
+  // actually reached that, report 100% completion to the platform.\r
+  //\r
+  // Note that the (TimeoutRemain == 0) condition excludes\r
+  // PcdPlatformBootTimeOut=0xFFFF, and that's deliberate.\r
+  //\r
+  if (PcdGet16 (PcdPlatformBootTimeOut) != 0 && TimeoutRemain == 0) {\r
+    PlatformBootManagerWaitCallback (0);\r
+  }\r
   DEBUG ((EFI_D_INFO, "[Bds]Exit the waiting!\n"));\r
 }\r
 \r