48 lines
1.8 KiB
Diff
48 lines
1.8 KiB
Diff
From 0b10d2ebcaf9244eba57790ede30fed6bc6c4223 Mon Sep 17 00:00:00 2001
|
|
From: Peter Robinson <pbrobinson@gmail.com>
|
|
Date: Mon, 18 Sep 2017 09:24:37 +0100
|
|
Subject: [PATCH] use Fedora specific EFI path/name
|
|
|
|
Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
|
|
---
|
|
include/config_distro_bootcmd.h | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h
|
|
index e0d0034ed3..18da4ff737 100644
|
|
--- a/include/config_distro_bootcmd.h
|
|
+++ b/include/config_distro_bootcmd.h
|
|
@@ -88,7 +88,7 @@
|
|
|
|
#ifdef CONFIG_EFI_LOADER
|
|
#if defined(CONFIG_ARM64)
|
|
-#define BOOTEFI_NAME "bootaa64.efi"
|
|
+#define BOOTEFI_NAME "grubaa64.efi"
|
|
#elif defined(CONFIG_ARM)
|
|
#define BOOTEFI_NAME "bootarm.efi"
|
|
#endif
|
|
@@ -118,7 +118,7 @@
|
|
"bootefi bootmgr ${fdtcontroladdr};" \
|
|
"fi;" \
|
|
"load ${devtype} ${devnum}:${distro_bootpart} " \
|
|
- "${kernel_addr_r} efi/boot/"BOOTEFI_NAME"; " \
|
|
+ "${kernel_addr_r} efi/fedora/"BOOTEFI_NAME"; " \
|
|
"if fdt addr ${fdt_addr_r}; then " \
|
|
"bootefi ${kernel_addr_r} ${fdt_addr_r};" \
|
|
"else " \
|
|
@@ -141,9 +141,9 @@
|
|
"fi;" \
|
|
"done;" \
|
|
"if test -e ${devtype} ${devnum}:${distro_bootpart} " \
|
|
- "efi/boot/"BOOTEFI_NAME"; then " \
|
|
+ "efi/fedora/"BOOTEFI_NAME"; then " \
|
|
"echo Found EFI removable media binary " \
|
|
- "efi/boot/"BOOTEFI_NAME"; " \
|
|
+ "efi/fedora/"BOOTEFI_NAME"; " \
|
|
"run boot_efi_binary; " \
|
|
"echo EFI LOAD FAILED: continuing...; " \
|
|
"fi; " \
|
|
--
|
|
2.13.5
|
|
|