From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 33217C3DA49 for ; Fri, 2 Aug 2024 10:11:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:In-Reply-To:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=tLLCYlUHyWu8t9tc8B9p9l2f14d558sJ7HtEfEDjlzo=; b=tuKUIAVaY/Gmxk6xzqveGYrz0M UpRXtfajCQRwvujd9hONxR0TdyJ1FT3hdPqSeohMymoNcPQy4qkZHPNuHkLHFLAjWcwpmcXRq6omK kXcjp1gOB44pC7hCpWvrwvv1b7IDB1gU8Bgf57ebn4xAbeLEtVxDpHkk5cdtXZcISfURRImTPS/ox F6/OMCIHwAJYXqd+2bj4ZcsuOt5X85qn1X7RbGm7W5Rx8+v4/vxsDyxZFETx5b9fh1VfbwaP4/Zm9 sPLtthjWX+E+/8g9DmVbcuQivnHk01Ie4DhN4BpNASE9EymOToc1KO3bVbYtKWxag9balz038lCg5 9f6BxECg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sZpG9-00000008PwX-3YpN; Fri, 02 Aug 2024 10:11:42 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sZpFd-00000008Ps5-36xR for linux-arm-kernel@lists.infradead.org; Fri, 02 Aug 2024 10:11:11 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 2A04C1007; Fri, 2 Aug 2024 03:11:34 -0700 (PDT) Received: from J2N7QTR9R3 (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 68DA83F64C; Fri, 2 Aug 2024 03:11:07 -0700 (PDT) Date: Fri, 2 Aug 2024 11:10:57 +0100 From: Mark Rutland To: linux-arm-kernel@lists.infradead.org Cc: akos.denke@arm.com, andre.przywara@arm.com, luca.fancellu@arm.com, maz@kernel.org Subject: Re: [BOOT-WRAPPER 0/3] Allow use of bare-metal toolchains Message-ID: References: <20240729143116.1804615-1-mark.rutland@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240729143116.1804615-1-mark.rutland@arm.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240802_031109_851066_4DAB8BE6 X-CRM114-Status: GOOD ( 12.53 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, Jul 29, 2024 at 03:31:13PM +0100, Mark Rutland wrote: > Since the boot-wrapper build system was migrated to autoconf it hasn't > been possible to build the boot-wrapper with a bare-metal toolchain, > since the configure sscript checks for a hosted toolchain. > > These patches make it possible to build the boot-wrapper with a > bare-metal toolchain. > > Mark. > > Mark Rutland (3): > Makefile: rework test-dtc-option > Makefile: suppress RWX segment warnings > configure: allow the use of bare-metal toolchains > > Makefile.am | 20 +++++++++++++++----- > configure.ac | 3 +++ > 2 files changed, 18 insertions(+), 5 deletions(-) I've applied this series to the boot-wrapper-aarch64 master branch: https://git.kernel.org/pub/scm/linux/kernel/git/mark/boot-wrapper-aarch64.git/commit/?id=1fea854771f9aee405c4ae204c0e0f912318da6f Mark.