mirror of https://github.com/acidanthera/audk.git
Should use gEfiFirmwareFileSystem2Guid but not gEfiFirmwareFileSystemGuid in DxeCore.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3096 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
7d421cff2b
commit
9767823fc9
|
@ -43,7 +43,7 @@ Revision History
|
|||
#include <Protocol/PlatformDriverOverride.h>
|
||||
#include <Protocol/Variable.h>
|
||||
#include <Guid/MemoryTypeInformation.h>
|
||||
#include <Guid/FirmwareFileSystem.h>
|
||||
#include <Guid/FirmwareFileSystem2.h>
|
||||
#include <Guid/HobList.h>
|
||||
#include <Protocol/Timer.h>
|
||||
#include <Protocol/SimpleFileSystem.h>
|
||||
|
|
|
@ -127,7 +127,7 @@
|
|||
gEfiEventExitBootServicesGuid # ALWAYS_CONSUMED
|
||||
gEfiHobMemoryAllocModuleGuid # ALWAYS_CONSUMED
|
||||
gEfiFileInfoGuid # ALWAYS_CONSUMED
|
||||
gEfiFirmwareFileSystemGuid # ALWAYS_CONSUMED
|
||||
gEfiFirmwareFileSystem2Guid # ALWAYS_CONSUMED
|
||||
gAprioriGuid # ALWAYS_CONSUMED
|
||||
gEfiDebugImageInfoTableGuid # ALWAYS_CONSUMED
|
||||
gEfiHobListGuid # ALWAYS_CONSUMED
|
||||
|
|
|
@ -461,7 +461,7 @@ Returns:
|
|||
// Check to see that the file system is indeed formatted in a way we can
|
||||
// understand it...
|
||||
//
|
||||
if (!CompareGuid (&FwVolHeader->FileSystemGuid, &gEfiFirmwareFileSystemGuid)) {
|
||||
if (!CompareGuid (&FwVolHeader->FileSystemGuid, &gEfiFirmwareFileSystem2Guid)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue