Prints BootOrder with DBG. */
| 311 | |
| 312 | /** Prints BootOrder with DBG. */ |
| 313 | VOID |
| 314 | PrintBootOrder ( |
| 315 | IN UINT16 BootOrder[], |
| 316 | IN UINTN BootOrderLen |
| 317 | ) |
| 318 | { |
| 319 | UINTN Index; |
| 320 | |
| 321 | |
| 322 | DBG(" %llu: ", BootOrderLen); |
| 323 | for (Index = 0; Index < BootOrderLen; Index++) { |
| 324 | if (Index > 0) { |
| 325 | DBG(", "); |
| 326 | } |
| 327 | DBG("Boot%04hX", BootOrder[Index]); |
| 328 | } |
| 329 | DBG("\n"); |
| 330 | //WaitForKeyPress(L"press a key to continue\n"); |
| 331 | } |
| 332 | |
| 333 | |
| 334 | /** Returns gEfiGlobalVariableGuid:BootOrder as UINT16 array and it's length (num of elements). |
no outgoing calls
no test coverage detected