mirror of https://github.com/acidanthera/audk.git
Remove RT attribute for variable PlatDriOver.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Gao, Liming <liming.gao@intel.com> Reviewed-by: Yao, Jiewen <jiewen.yao@intel.com> Reviewed-by: Zeng, Star <star.zeng@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15401 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
44372159a2
commit
90651f7773
|
@ -912,7 +912,7 @@ DeleteOverridesVariables (
|
||||||
Status = gRT->SetVariable (
|
Status = gRT->SetVariable (
|
||||||
L"PlatDriOver",
|
L"PlatDriOver",
|
||||||
&gEfiCallerIdGuid,
|
&gEfiCallerIdGuid,
|
||||||
EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
|
EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE,
|
||||||
0,
|
0,
|
||||||
NULL
|
NULL
|
||||||
);
|
);
|
||||||
|
@ -922,7 +922,7 @@ DeleteOverridesVariables (
|
||||||
Status = gRT->SetVariable (
|
Status = gRT->SetVariable (
|
||||||
OverrideVariableName,
|
OverrideVariableName,
|
||||||
&gEfiCallerIdGuid,
|
&gEfiCallerIdGuid,
|
||||||
EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
|
EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE,
|
||||||
0,
|
0,
|
||||||
NULL
|
NULL
|
||||||
);
|
);
|
||||||
|
@ -977,7 +977,7 @@ SaveOverridesMapping (
|
||||||
// Get the the maximum size of an individual EFI variable in current system
|
// Get the the maximum size of an individual EFI variable in current system
|
||||||
//
|
//
|
||||||
gRT->QueryVariableInfo (
|
gRT->QueryVariableInfo (
|
||||||
EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
|
EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE,
|
||||||
&MaximumVariableStorageSize,
|
&MaximumVariableStorageSize,
|
||||||
&RemainingVariableStorageSize,
|
&RemainingVariableStorageSize,
|
||||||
&MaximumVariableSize
|
&MaximumVariableSize
|
||||||
|
@ -1086,7 +1086,7 @@ SaveOverridesMapping (
|
||||||
Status = gRT->SetVariable (
|
Status = gRT->SetVariable (
|
||||||
OverrideVariableName,
|
OverrideVariableName,
|
||||||
&gEfiCallerIdGuid,
|
&gEfiCallerIdGuid,
|
||||||
EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
|
EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE,
|
||||||
VariableNeededSize,
|
VariableNeededSize,
|
||||||
VariableBuffer
|
VariableBuffer
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue