mirror of https://github.com/acidanthera/audk.git
MdeModulePkg: Dxe: add RISCV64 to mMachineTypeInfo
This fixes messages like: "Image type AARCH64 can't be loaded on <Unknown> UEFI system" Cc: Daniel Schaefer <git@danielschaefer.me> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Jian J Wang <jian.j.wang@intel.com> Reviewed-by: Sunil V L <sunilvl@ventanamicro.com> Signed-off-by: Andrei Warkentin <andrei.warkentin@intel.com>
This commit is contained in:
parent
6ceaef4804
commit
db0a3087a5
|
@ -81,7 +81,8 @@ GLOBAL_REMOVE_IF_UNREFERENCED MACHINE_TYPE_INFO mMachineTypeInfo[] = {
|
|||
{ EFI_IMAGE_MACHINE_IA64, L"IA64" },
|
||||
{ EFI_IMAGE_MACHINE_X64, L"X64" },
|
||||
{ EFI_IMAGE_MACHINE_ARMTHUMB_MIXED, L"ARM" },
|
||||
{ EFI_IMAGE_MACHINE_AARCH64, L"AARCH64" }
|
||||
{ EFI_IMAGE_MACHINE_AARCH64, L"AARCH64" },
|
||||
{ EFI_IMAGE_MACHINE_RISCV64, L"RISCV64" },
|
||||
};
|
||||
|
||||
UINT16 mDxeCoreImageMachineType = 0;
|
||||
|
|
Loading…
Reference in New Issue