[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2] tools: ipxe: update for fixing build with GCC11
- To: xen-devel@xxxxxxxxxxxxxxxxxxxx
- From: Olaf Hering <olaf@xxxxxxxxx>
- Date: Wed, 16 Jun 2021 15:14:35 +0200
- Arc-authentication-results: i=1; strato.com; dkim=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; t=1623849279; s=strato-dkim-0002; d=strato.com; h=Message-Id:Date:Subject:Cc:To:From:Cc:Date:From:Subject:Sender; bh=jApK5xhguXgItxZ5f/1GTBckGrTPVB37W+HmDgfW5pk=; b=cCPYCTYcfX7Z2A8LOcSroHp5d5Wo3+3RZMXJboBEY4eYSA103uFCsjnu/p6FEZxQ7a 0ANB0TtUYG+HZ6c6Ze1mmn+/vo6mWjhXef9EdqQifVhcrWoO8RW/ZkQLgEZuKuD0a6ug 5ikwmuB6dnoRsLeHdyHZ3rQW/SvZcUKGNqRdmHD8aH1ID4QpdK0d3zbTn+b8aUXNsQjD ZwdKkoIkfsKc5MXOLxOTXLWOyHzhi0kqQb5YYWDofK2fkDOAYp2bjmOMJ47uD8TaMxYd 5+VpdL+429VizPrhuSkU9E91WSSMJ4jResQtb3mJF42lKeLkq+xudK3NkIlSL9MlY1GM wJRA==
- Arc-seal: i=1; a=rsa-sha256; t=1623849279; cv=none; d=strato.com; s=strato-dkim-0002; b=KGsZWre7/Ghq+S+monVzGitmSNTADGrv3qFYc5MWCUctVeQXFOVGSlPItqHHDG7UAc M3+ohYJnFzSL+qZ5qY1kEuv2ip2WXpSFtrjHAxBcAXJHnZwJGJzkSXxrBIgwG9vVgLFp z1qKniM7FN4Rj+EOrZZa+duDhfe2uu0ftcArPcdeeP4xaYROniKuFhbMZRQ+zQiFFKWg MSaA27B/NOJwjBKhf0DR1+7aNdmb0QJ0H+eduTmJQoOQEA0VTqkAmtyGSaW68JpJkbdt JL6PL0OgHz4CgKm/Z9+AXXVB2F5ecY4e6faCDnQwQ8JpYlw34xh/S5Bg2H6UJTSN+pF/ 5o7w==
- Authentication-results: strato.com; dkim=none
- Cc: Olaf Hering <olaf@xxxxxxxxx>, Ian Jackson <iwj@xxxxxxxxxxxxxx>, Wei Liu <wl@xxxxxxx>
- Delivery-date: Wed, 16 Jun 2021 13:14:55 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
Use a snapshot which includes commit
f3f568e382a5f19824b3bfc6081cde39eee661e8 ("[crypto] Add
memory output constraints for big-integer inline assembly"),
which fixes build with gcc11.
Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>
---
tools/firmware/etherboot/Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
v02:
- use parent of bf4ccd4265ac to allow build with CentOS 7
diff --git a/tools/firmware/etherboot/Makefile
b/tools/firmware/etherboot/Makefile
index ed9e11305f..4bc3633ba3 100644
--- a/tools/firmware/etherboot/Makefile
+++ b/tools/firmware/etherboot/Makefile
@@ -10,7 +10,8 @@ else
IPXE_GIT_URL ?= git://git.ipxe.org/ipxe.git
endif
-IPXE_GIT_TAG := 988d2c13cdf0f0b4140685af35ced70ac5b3283c
+# put an updated tar.gz on xenbits after changes to this variable
+IPXE_GIT_TAG := 3c040ad387099483102708bb1839110bc788cefb
IPXE_TARBALL_URL ?= $(XEN_EXTFILES_URL)/ipxe-git-$(IPXE_GIT_TAG).tar.gz
|