2020-06-29 07:52:02 +02:00
|
|
|
/** @file
|
|
|
|
Migrated FV information
|
|
|
|
|
|
|
|
Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __EDKII_MIGRATED_FV_INFO_GUID_H__
|
|
|
|
#define __EDKII_MIGRATED_FV_INFO_GUID_H__
|
|
|
|
|
|
|
|
typedef struct {
|
2021-12-05 23:54:02 +01:00
|
|
|
UINT32 FvOrgBase; // original FV address
|
|
|
|
UINT32 FvNewBase; // new FV address
|
|
|
|
UINT32 FvDataBase; // original FV data
|
|
|
|
UINT32 FvLength; // Fv Length
|
2020-06-29 07:52:02 +02:00
|
|
|
} EDKII_MIGRATED_FV_INFO;
|
|
|
|
|
2021-12-05 23:54:02 +01:00
|
|
|
extern EFI_GUID gEdkiiMigratedFvInfoGuid;
|
2020-06-29 07:52:02 +02:00
|
|
|
|
|
|
|
#endif // #ifndef __EDKII_MIGRATED_FV_INFO_GUID_H__
|