From patchwork Mon Jul 29 14:31:13 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mark Rutland X-Patchwork-Id: 13745142 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 6FD05C3DA61 for ; Mon, 29 Jul 2024 14:51:28 +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:Content-Transfer-Encoding: MIME-Version:Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-Type: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=9xxT+lbxMI3Hbs+tey1QSp7WPMDdgsWJF9L7FtbDe48=; b=byAV0CEQIjpT1booTEep1wxkl/ tCr6RBbaJvNbjboRuvRF+J+az8eYsvUgCQvuGPiD70+Gf8GP+SgxSmBo8h+xMqxS6q2LUvdRvQj9o FC01cKgw825+huxyFB1BVFYcVqxR12zpg5KuGcSbZaMbFGg7uwYVoCGvBcvCReVjaUFnKKWG2wZYB fzo6rh1eW0YPg0u/os17g7Ds2Bg+8oUJU1NTJyrzjZJVP7NkoAtwkJeA+jdytsfdHdl7eXywCI7DB 4OWhwwE6OUJ7+0QLtU18Bt4V53xuxA35yYQuuwE51EPjzik4h7zJhwIikRQEEqKA2qZikLMWN8POf qBtHvegg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sYRiX-0000000BjxE-1isM; Mon, 29 Jul 2024 14:51:17 +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 1sYRPG-0000000BcAW-31jQ for linux-arm-kernel@lists.infradead.org; Mon, 29 Jul 2024 14:31:24 +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 20E701007; Mon, 29 Jul 2024 07:31:47 -0700 (PDT) Received: from lakrids.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id A49503F64C; Mon, 29 Jul 2024 07:31:20 -0700 (PDT) From: Mark Rutland To: linux-arm-kernel@lists.infradead.org Cc: akos.denke@arm.com, andre.przywara@arm.com, luca.fancellu@arm.com, mark.rutland@arm.com, maz@kernel.org Subject: [BOOT-WRAPPER 0/3] Allow use of bare-metal toolchains Date: Mon, 29 Jul 2024 15:31:13 +0100 Message-Id: <20240729143116.1804615-1-mark.rutland@arm.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240729_073122_819144_8FEAA4AD X-CRM114-Status: UNSURE ( 8.08 ) X-CRM114-Notice: Please train this message. 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 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(-) Acked-by: Marc Zyngier