diff options
author | Olivier Martin <olivier.martin@arm.com> | 2013-07-24 15:31:19 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-07-24 15:31:19 +0000 |
commit | ff351683a6b0c061454dbefa316eed30630951e5 (patch) | |
tree | 84e8b96f02f52566d1d7dd053cb06d6c6a442983 | |
parent | 63e25b68cb1bf16b00ebb71cc2d02c65b5fadbeb (diff) | |
download | edk2-ff351683a6b0c061454dbefa316eed30630951e5.zip edk2-ff351683a6b0c061454dbefa316eed30630951e5.tar.gz edk2-ff351683a6b0c061454dbefa316eed30630951e5.tar.bz2 |
ArmPkg: Update the AArch64 Image File Machine Type to match the PE/COFF spec
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14502 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | ArmPkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ArmPkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c b/ArmPkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c index 8a1829a..3fea462 100644 --- a/ArmPkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c +++ b/ArmPkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c @@ -79,7 +79,7 @@ PeCoffLoaderImageFormatSupported ( IN UINT16 Machine
)
{
- if ((Machine == IMAGE_FILE_MACHINE_AARCH64) || (Machine == IMAGE_FILE_MACHINE_EBC)) {
+ if ((Machine == IMAGE_FILE_MACHINE_ARM64) || (Machine == IMAGE_FILE_MACHINE_EBC)) {
return TRUE;
}
|