Blame SOURCES/0011-use-grub-boot-aa64.efi-for-boot-images-on-AArch64.patch

6b3c76
From e4a3de3ef6a122504b5fb47de1f4a1bd6295d49a Mon Sep 17 00:00:00 2001
a85e8e
From: Andrey Borzenkov <arvidjaar@gmail.com>
a85e8e
Date: Tue, 7 Jan 2014 10:38:54 +0400
6b3c76
Subject: [PATCH 011/261] use {grub,boot}aa64.efi for boot images on AArch64
a85e8e
a85e8e
According to UEFI 2.4 specification, default boot file name on AArch64
a85e8e
is BOOTAA64.EFI (3.4.1.1 Removable Media Boot Behavior). Also set default
a85e8e
GRUB image name to grubaa64.efi to match it.
a85e8e
---
a85e8e
 util/grub-install.c | 4 ++--
a85e8e
 1 file changed, 2 insertions(+), 2 deletions(-)
a85e8e
a85e8e
diff --git a/util/grub-install.c b/util/grub-install.c
6b3c76
index 8cfe0eaa2..4608b80fe 100644
a85e8e
--- a/util/grub-install.c
a85e8e
+++ b/util/grub-install.c
a85e8e
@@ -1091,7 +1091,7 @@ main (int argc, char *argv[])
a85e8e
 	      efi_file = "BOOTARM.EFI";
a85e8e
 	      break;
a85e8e
 	    case GRUB_INSTALL_PLATFORM_ARM64_EFI:
a85e8e
-	      efi_file = "BOOTAARCH64.EFI";
a85e8e
+	      efi_file = "BOOTAA64.EFI";
a85e8e
 	      break;
a85e8e
 	    default:
a85e8e
 	      grub_util_error ("%s", _("You've found a bug"));
a85e8e
@@ -1118,7 +1118,7 @@ main (int argc, char *argv[])
a85e8e
 	      efi_file = "grubarm.efi";
a85e8e
 	      break;
a85e8e
 	    case GRUB_INSTALL_PLATFORM_ARM64_EFI:
a85e8e
-	      efi_file = "grubarm64.efi";
a85e8e
+	      efi_file = "grubaa64.efi";
a85e8e
 	      break;
a85e8e
 	    default:
a85e8e
 	      efi_file = "grub.efi";
6b3c76
-- 
6b3c76
2.13.5
6b3c76