mirror of https://github.com/acidanthera/audk.git
due to EmuVariable driver only uses volatile memory to simulate the variable region, so PcdHwErrStorageSize should be less than or equal to PcdVariableStoreSize
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9204 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
c97b567227
commit
93c288f2fb
|
@ -1317,9 +1317,9 @@ InitializeVariableStore (
|
|||
// Note that in EdkII variable driver implementation, Hardware Error Record type variable
|
||||
// is stored with common variable in the same NV region. So the platform integrator should
|
||||
// ensure that the value of PcdHwErrStorageSize is less than or equal to the value of
|
||||
// PcdFlashNvStorageVariableSize.
|
||||
// PcdVariableStoreSize.
|
||||
//
|
||||
ASSERT (FixedPcdGet32(PcdHwErrStorageSize) <= FixedPcdGet32(PcdFlashNvStorageVariableSize));
|
||||
ASSERT (FixedPcdGet32(PcdHwErrStorageSize) <= FixedPcdGet32(PcdVariableStoreSize));
|
||||
|
||||
//
|
||||
// Allocate memory for volatile variable store
|
||||
|
|
Loading…
Reference in New Issue