diff options
author | Laszlo Ersek <lersek@redhat.com> | 2016-09-08 21:47:19 +0200 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2016-09-09 10:36:30 +0200 |
commit | 2d41ea3aed4ea1935fc63df35b834e9626f896df (patch) | |
tree | 7e15cb9ebc5d03bc06f10ba4c626414f88ad08ab /BaseTools | |
parent | 7eb3bb6c552d59b28f07ce5787049b53da76d5cf (diff) | |
download | edk2-2d41ea3aed4ea1935fc63df35b834e9626f896df.tar.gz edk2-2d41ea3aed4ea1935fc63df35b834e9626f896df.tar.bz2 edk2-2d41ea3aed4ea1935fc63df35b834e9626f896df.zip |
BaseTools/EfiRom: supply missing machine type lookup strings
"EfiRom --dump" does not recognize the 0x8664 machine type:
> EFI ROM header contents
> EFI Signature 0x0EF1
> Compression Type 0x0001 (compressed)
> Machine type 0x8664 (unknown)
> Subsystem 0x000B (EFI boot service driver)
> EFI image offset 0x0050 (@0xF650)
Add lookup strings for the remaining EFI_IMAGE_MACHINE_* numeric macros
that can be found in
"BaseTools/Source/C/Include/IndustryStandard/PeImage.h". The strings
follow Table 12. "UEFI Image Types" from the UEFI v2.6 spec.
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Diffstat (limited to 'BaseTools')
-rw-r--r-- | BaseTools/Source/C/EfiRom/EfiRom.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/BaseTools/Source/C/EfiRom/EfiRom.h b/BaseTools/Source/C/EfiRom/EfiRom.h index 1214700826..6763d6b1ec 100644 --- a/BaseTools/Source/C/EfiRom/EfiRom.h +++ b/BaseTools/Source/C/EfiRom/EfiRom.h @@ -117,6 +117,9 @@ static STRING_LOOKUP mMachineTypes[] = { { EFI_IMAGE_MACHINE_IA32, "IA32" },
{ EFI_IMAGE_MACHINE_IA64, "IA64" },
{ EFI_IMAGE_MACHINE_EBC, "EBC" },
+ { EFI_IMAGE_MACHINE_X64, "X64" },
+ { EFI_IMAGE_MACHINE_ARMT, "ARM" },
+ { EFI_IMAGE_MACHINE_AARCH64, "AA64" },
{ 0, NULL }
};
|