From a38b76e45090b6598eb59aedee71ad982d68c0b0 Mon Sep 17 00:00:00 2001 From: Amrathesh Date: Mon, 6 Jan 2025 09:40:53 +0530 Subject: [PATCH] changes to check authencticated variable store - added EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS attribute for QueryVariableInfo call. Fixes: #89 Signed-off-by: Amrathesh --- .../BlackBoxTest/BBSRVariableSizeBBTestFunction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbsr/sct-tests/BBSRVariableSizeTest/BlackBoxTest/BBSRVariableSizeBBTestFunction.c b/bbsr/sct-tests/BBSRVariableSizeTest/BlackBoxTest/BBSRVariableSizeBBTestFunction.c index a63dabd..f32370b 100644 --- a/bbsr/sct-tests/BBSRVariableSizeTest/BlackBoxTest/BBSRVariableSizeBBTestFunction.c +++ b/bbsr/sct-tests/BBSRVariableSizeTest/BlackBoxTest/BBSRVariableSizeBBTestFunction.c @@ -109,7 +109,7 @@ BBSRVariableSizeTestSub1 ( ) { EFI_STATUS QueryVarStatus; - UINT32 ValidAttributes = EFI_VARIABLE_NON_VOLATILE|EFI_VARIABLE_BOOTSERVICE_ACCESS|EFI_VARIABLE_RUNTIME_ACCESS; + UINT32 ValidAttributes = EFI_VARIABLE_NON_VOLATILE|EFI_VARIABLE_BOOTSERVICE_ACCESS|EFI_VARIABLE_RUNTIME_ACCESS|EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS; UINT64 MaximumVariableStorageSize; UINT64 RemainingVariableStorageSize; UINT64 MaximumVariableSize;