diff options
author | Tom Lendacky <thomas.lendacky@amd.com> | 2024-11-18 12:59:32 -0600 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-11-23 18:02:30 +0000 |
commit | 6142f0a8a53557ba50300c762a15bf3c18382162 (patch) | |
tree | ab55d0cd3dc8c1fd183baa1abe73a542d00e1626 | |
parent | d502cc7702e4d537c2bcbe5256e26cba6d4ca8c6 (diff) | |
download | edk2-6142f0a8a53557ba50300c762a15bf3c18382162.tar.gz |
OvmfPkg/EmuVariableFvbRuntimeDxe: Issue NV vars initializitation message
Add a debug message that indicates when the NV variables are being
initialized through the template structure.
Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
-rw-r--r-- | OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.c b/OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.c index c07e38966e..cc476c7df2 100644 --- a/OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.c +++ b/OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.c @@ -692,6 +692,8 @@ InitializeFvAndVariableStoreHeaders ( //
Fv = (EFI_FIRMWARE_VOLUME_HEADER *)Ptr;
Fv->Checksum = CalculateCheckSum16 (Ptr, Fv->HeaderLength);
+
+ DEBUG ((DEBUG_INFO, "EMU Variable FVB: Initialized FV using template structure\n"));
}
/**
|