From 76caed15754338f7261b2a95a3c7cc15a25f6a01 Mon Sep 17 00:00:00 2001 From: David Abdurachmanov Date: Thu, 16 Jan 2020 13:10:10 +0100 Subject: [PATCH 11/11] Also define GRUB_EFI_MAX_ALLOCATION_ADDRESS for RISC-V The commit "Try to pick better locations for kernel and initrd" missed to define this macro for the RISC-V (riscv64) architecture, so add it there. Signed-off-by: David Abdurachmanov --- include/grub/riscv64/efi/memory.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/grub/riscv64/efi/memory.h b/include/grub/riscv64/efi/memory.h index c6cb32417..acb61dca4 100644 --- a/include/grub/riscv64/efi/memory.h +++ b/include/grub/riscv64/efi/memory.h @@ -2,5 +2,6 @@ #include #define GRUB_EFI_MAX_USABLE_ADDRESS 0xffffffffffffULL +#define GRUB_EFI_MAX_ALLOCATION_ADDRESS GRUB_EFI_MAX_USABLE_ADDRESS #endif /* ! GRUB_MEMORY_CPU_HEADER */ -- 2.31.1