From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1Vnl3H-0000Zs-G1 for mharc-grub-devel@gnu.org; Tue, 03 Dec 2013 03:09:51 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37246) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vnl3A-0000XC-Tl for grub-devel@gnu.org; Tue, 03 Dec 2013 03:09:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vnl35-00038U-86 for grub-devel@gnu.org; Tue, 03 Dec 2013 03:09:44 -0500 Received: from mail-ee0-x229.google.com ([2a00:1450:4013:c00::229]:58686) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vnl35-00038P-09 for grub-devel@gnu.org; Tue, 03 Dec 2013 03:09:39 -0500 Received: by mail-ee0-f41.google.com with SMTP id t10so1224043eei.14 for ; Tue, 03 Dec 2013 00:09:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type; bh=iw7hvBnItlrsqCc//7bHLDd+yZX6jCChE8TC765KJng=; b=oZ0yBocDCcUNtj5uTsCaMhLb80YnNo1+SPDECylFfOi/9XdqxsmYy9BnGsIU122B22 YaWebA3AnZNBwHd1vWPp8LhwDdtRo9sNYIw9Q8UFHfFe5bnDREKLBjcYDSH3q5a7J0J1 9I5jbtSLVFRUbWWlt14B6EEKqmVELOBAmTRdpY0HwMquwKC2Pa+OUSZ9dTS8KhjwoZ/v 16VVEJRBD/xeFfIywQDz38BZ+I0YZpl5q88uy55rcff7Q8HxrSZD40ZHqxuJO2+h5THt 7qvNIxXLX8HIVVtEq96CrgnDzConYhF0InxcYdviA/atMN9mtE1Q1MFm3Pn7u6Zrhesy JofA== X-Received: by 10.15.100.199 with SMTP id bn47mr16957491eeb.5.1386058178125; Tue, 03 Dec 2013 00:09:38 -0800 (PST) Received: from [192.168.1.16] (85-188.196-178.cust.bluewin.ch. [178.196.188.85]) by mx.google.com with ESMTPSA id o1sm36059422eea.10.2013.12.03.00.09.36 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 03 Dec 2013 00:09:37 -0800 (PST) Message-ID: <529D91C0.8040109@gmail.com> Date: Tue, 03 Dec 2013 09:09:36 +0100 From: =?UTF-8?B?VmxhZGltaXIgJ8+GLWNvZGVyL3BoY29kZXInIFNlcmJpbmVua28=?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20131005 Icedove/17.0.9 MIME-Version: 1.0 To: The development of GNU GRUB Subject: Re: [PATCH, RFC, RFT] ARM relocation fixes References: <529AD1E8.8010305@gmail.com> <20131202105330.GA24997@rocoto.smurfnet.nu> <529C6820.9090902@gmail.com> <20131202112846.GC24997@rocoto.smurfnet.nu> <529C7305.5070002@gmail.com> <20131202133051.GE24997@rocoto.smurfnet.nu> <529CC74C.2060903@gmail.com> <20131202194020.GN24997@rocoto.smurfnet.nu> <529CE7DF.6000906@gmail.com> <20131202204622.GO24997@rocoto.smurfnet.nu> In-Reply-To: <20131202204622.GO24997@rocoto.smurfnet.nu> X-Enigmail-Version: 1.5.1 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="----enig2IIWWXLXPJURDOXGDGRXL" X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4013:c00::229 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: Tue, 03 Dec 2013 08:09:50 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) ------enig2IIWWXLXPJURDOXGDGRXL Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 02.12.2013 21:46, Leif Lindholm wrote: > On Mon, Dec 02, 2013 at 09:04:47PM +0100, Vladimir '=CF=86-coder/phcode= r' Serbinenko wrote: >>>>> My default ARMv7 UEFI build fails to grub-install with >>>>> /work/local/grub/uefi/sbin/grub-install: error: bl/b.w targettting = ARM. >>>> >>>> This is a problem because of asm functions which are always ARM and = gcc >>>> uses bl to jump to them from thumb that an't be satisified. I wonder= if >>>> it's better to add veneers to mkimage or to add explicit thumb inter= work >>>> to all asm functions like I did in my other patch. >>> >>> Ah. When linking with a standalone linker, it rewrites BL to BLX wher= e >>> this is required for state change >> >> Doesn't this require Thumb2 ? >=20 > No, BLX immediate has been supported since ARMv5T. > (Yes, that is effectively a 32-bit encoding in what is a 16-bit > instruction set - but so is the basic BL.) >=20 In my branch I added veneers to mkimage. Do you have a tutorial on setting up arm-efi VM? > / > Leif >=20 > _______________________________________________ > Grub-devel mailing list > Grub-devel@gnu.org > https://lists.gnu.org/mailman/listinfo/grub-devel >=20 ------enig2IIWWXLXPJURDOXGDGRXL Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (GNU/Linux) Comment: Using GnuPG with Icedove - http://www.enigmail.net/ iF4EAREKAAYFAlKdkcAACgkQmBXlbbo5nOtr1wD+Om2Iz3kHmMY8+XIzsmPnxL4c FzTqjKjyKRsfL1uSTYoA/1HkGI8yvflJF+qukuxBCMKJtQkwx8u7EkVTihnKX1qp =K94p -----END PGP SIGNATURE----- ------enig2IIWWXLXPJURDOXGDGRXL--