From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1W0D3o-0002gT-Gj for mharc-grub-devel@gnu.org; Mon, 06 Jan 2014 11:29:52 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58068) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W0D3f-0002fZ-8V for grub-devel@gnu.org; Mon, 06 Jan 2014 11:29:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W0D3V-0000yR-SA for grub-devel@gnu.org; Mon, 06 Jan 2014 11:29:43 -0500 Received: from mail-la0-x22b.google.com ([2a00:1450:4010:c03::22b]:52601) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W0D3V-0000yL-Jy for grub-devel@gnu.org; Mon, 06 Jan 2014 11:29:33 -0500 Received: by mail-la0-f43.google.com with SMTP id n7so9960254lam.16 for ; Mon, 06 Jan 2014 08:29:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:subject:from:to:date:in-reply-to:references:content-type :mime-version:content-transfer-encoding; bh=w2woH4NTBuPS26zI/jFxDqr794Lj+h7Fvgm8MvXvo+E=; b=lcSW4W7WTGxvlla7HhrBl2iFLqiMq0xmcPTffDXu8cFYccp8bU7o/LRlZDdRfWMbTu oX2yVsfES111VzG3D7MPqxfa/oyK+ykcc45UXdSN+QUC7UJuK5eGomg0mgqWEUI5vy5D GU11VinHaoBeXF2IM97ZItsHlkUHtW2llStB94ylwGwac0J7mAr3pnqfwIQD+lxG8Df9 0BELxzEdPxt6xuyAZ3lVqond3JMdSl93Ci5OtHnVDWpEY7Y2J58hHTiG18jGWfBDg4GF KaqamnCnZLc3rz0PQAU3JGtWNkEGx5/l+yipLvHL1AefWov2h+tGIhW9NL0BFOMpNMc5 /VVQ== X-Received: by 10.112.135.102 with SMTP id pr6mr1349772lbb.43.1389025772072; Mon, 06 Jan 2014 08:29:32 -0800 (PST) Received: from [192.168.1.44] (ppp91-76-134-134.pppoe.mtu-net.ru. [91.76.134.134]) by mx.google.com with ESMTPSA id i8sm43075098lbh.2.2014.01.06.08.29.31 for (version=SSLv3 cipher=RC4-SHA bits=128/128); Mon, 06 Jan 2014 08:29:31 -0800 (PST) Message-ID: <1389025771.918.202.camel@opensuse.site> Subject: Re: [PATCH] fix name of default boot image on AArch64 From: Andrey Borzenkov To: grub-devel@gnu.org Date: Mon, 06 Jan 2014 20:29:31 +0400 In-Reply-To: <20140106113425.GG29433@bivouac.eciton.net> References: <1388566476-1312-1-git-send-email-arvidjaar@gmail.com> <20140106113425.GG29433@bivouac.eciton.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.10.2 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c03::22b X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jan 2014 16:29:51 -0000 В Пн, 06/01/2014 в 11:34 +0000, Leif Lindholm пишет: > On Wed, Jan 01, 2014 at 12:54:36PM +0400, Andrey Borzenkov wrote: > > According to UEFI 2.4 specification, default boot file name on AArch64 > > is BOOTAA64.EFI (3.4.1.1 Removable Media Boot Behavior). > > > > --- > > util/grub-install.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/util/grub-install.c b/util/grub-install.c > > index 8cfe0ea..d3b9db7 100644 > > --- a/util/grub-install.c > > +++ b/util/grub-install.c > > @@ -1091,7 +1091,7 @@ main (int argc, char *argv[]) > > efi_file = "BOOTARM.EFI"; > > break; > > case GRUB_INSTALL_PLATFORM_ARM64_EFI: > > - efi_file = "BOOTAARCH64.EFI"; > > + efi_file = "BOOTAA64.EFI"; > > break; > > default: > > grub_util_error ("%s", _("You've found a bug")); > > -- > > tg: (668add2..) u/aarch64-default-boot (depends on: master) > > Oops - muscle memory override. > My only excuse is that current Tianocore Bds for arm* is not conformant > to the removable media boot behaviour, so this could not currently be > tested. Fixing this is on my to-do list for Q1. > Could this be applied please? > Should not grubarm64 be changed into grubaa64 as well, even to just fit into 8+3 name? Having them consistent makes life easier. And now is just the right point in time before name is set in stone.