Skip to content

Commit

Permalink
Merge pull request #61 from ownia/runtime_services
Browse files Browse the repository at this point in the history
Fix SBBRRuntimeServices log info
  • Loading branch information
edhay authored Feb 15, 2024
2 parents dc6ba84 + f82f257 commit 5f28049
Showing 1 changed file with 13 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,12 +179,7 @@ BBTestRuntimeServices (
L" ConvertPointer : %X\n"
L" GetVariable : %X\n"
L" GetNextVariableName : %X\n"
L" SetVariable : %X\n"
L" GetNextHighMonotonicCount : %X\n"
L" ResetSystem : %X\n"
L" QueryVariableInfo : %X\n"
L" QueryCapsuleCapabilities : %X\n"
L" UpdateCapsule : %X\n",
L" SetVariable : %X\n",
gtRT->GetTime,
gtRT->SetTime,
gtRT->GetWakeupTime,
Expand All @@ -193,7 +188,17 @@ BBTestRuntimeServices (
gtRT->ConvertPointer,
gtRT->GetVariable,
gtRT->GetNextVariableName,
gtRT->SetVariable,
gtRT->SetVariable
);

StandardLib->RecordMessage (
StandardLib,
EFI_VERBOSE_LEVEL_DEFAULT,
L" GetNextHighMonotonicCount : %X\n"
L" ResetSystem : %X\n"
L" QueryVariableInfo : %X\n"
L" QueryCapsuleCapabilities : %X\n"
L" UpdateCapsule : %X\n",
gtRT->GetNextHighMonotonicCount,
gtRT->ResetSystem,
gtRT->QueryVariableInfo,
Expand Down Expand Up @@ -606,4 +611,4 @@ BBTestNonVolatileVariable (
} else {
return EFI_LOAD_ERROR;
}
}
}

0 comments on commit 5f28049

Please sign in to comment.