mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 02:15:02 +00:00
Fix EFI boot file name definition for 64-bit x86
This change aligns the preprocessor directive with the standard configuration flag used for detecting 64-bit x86 architecture. Signed-off-by: Jeremy Compostella <jeremy.compostella@intel.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
8eefb60e89
commit
33d84771e9
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@
|
|||
#define BOOTEFI_NAME "bootarm.efi"
|
||||
#elif defined(CONFIG_X86_RUN_32BIT)
|
||||
#define BOOTEFI_NAME "bootia32.efi"
|
||||
#elif defined(CONFIG_X86_RUN_64BIT)
|
||||
#elif defined(CONFIG_X86_64)
|
||||
#define BOOTEFI_NAME "bootx64.efi"
|
||||
#elif defined(CONFIG_ARCH_RV32I)
|
||||
#define BOOTEFI_NAME "bootriscv32.efi"
|
||||
|
|
Loading…
Add table
Reference in a new issue