diff options
| author | Tom Rini <[email protected]> | 2025-04-04 12:26:50 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-04-04 16:49:59 -0600 |
| commit | e458e103d4f5fb7aaf13e744c65916ab3ba4a18d (patch) | |
| tree | 17d2faf81fd09e00120832bad46533f6478945cd /include | |
| parent | c5032bf3f63944464610d55c7a442758224585e6 (diff) | |
| parent | e892c98f7b638cce64ca3e8147ef98bb9b789ed2 (diff) | |
Merge patch series "64-bit U-Boot configuration without SPL"
Jeremy Compostella <[email protected]> says:
Introduces a new configuration option X86_RUN_64BIT_NO_SPL to allow
building U-Boot as a 64-bit binary without using the SPL (Secondary
Program Loader). The motivation is to simplify the boot process for
specific x86-based platforms that do not require SPL, such as those
booting directly from a 64-bit coreboot firmware.
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'include')
| -rw-r--r-- | include/config_distro_bootcmd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h index 0a4e4b8ff85..8ac3a4feeb8 100644 --- a/include/config_distro_bootcmd.h +++ b/include/config_distro_bootcmd.h @@ -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" |
