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 AC80BC433EF for ; Fri, 7 Jan 2022 14:27:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=jJKrUXcP9o6o0rUeqFRyza/5QXd5h3iwCmUtrIqWTJU=; b=09ghdYaH/d/Wdi wuU6RytuieCIDR+oMt66ZmYyI1u+EaKXRbnwrmNJcj//hshTO8U98m/EvW9wpeUywA4lGPtLBoVEY KN/CWZJa1dmJmLhj4xS81eX5JrcfpBIiaRewbUb4ntjF6oAUAPDIql8RrAJ+1g229ZwUwJMVNcIqR c7c5xGb+I1/t+2HIYHADWorbJ0msXxlgSOQXXH+GD8cmL847z5zRhYJxzGryLlglPO0sJWfmnxV3C N1h6fIcdDWmJzU7yCZYVFSjpKmHZqTuRPEkR3UDEpjm/9jWh5uFDMaHhW/4qLYWFlVn+U18iooFZm GWcGFOT9hR0lKC2QAqsw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1n5qBr-004B6A-Oq; Fri, 07 Jan 2022 14:25:59 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1n5qBo-004B5q-AR for linux-arm-kernel@lists.infradead.org; Fri, 07 Jan 2022 14:25:57 +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 BA8271435; Fri, 7 Jan 2022 06:25:54 -0800 (PST) Received: from FVFF77S0Q05N (unknown [10.57.7.134]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 0844E3F774; Fri, 7 Jan 2022 06:25:53 -0800 (PST) Date: Fri, 7 Jan 2022 14:25:51 +0000 From: Mark Rutland To: Andre Przywara Cc: linux-arm-kernel@lists.infradead.org, Jaxson Han Subject: Re: [boot-wrapper PATCH v2 0/9] Various (build system) fixes Message-ID: References: <20211222181607.1203191-1-andre.przywara@arm.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20211222181607.1203191-1-andre.przywara@arm.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220107_062556_451222_F24E3764 X-CRM114-Status: GOOD ( 15.58 ) 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: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Andre, On Wed, Dec 22, 2021 at 06:15:58PM +0000, Andre Przywara wrote: > This series combines various smaller fixes to boot-wrapper, mostly > build system related, and some convenience fixes. > Patches 1-3 fix problems with distribution (cross-)compilers, since they > tend to make too many assumptions about compiling userland programs. > Patches 4-8 have been on the list before[1]. Patch 9 is a new fix to > silence dtc when it's recompiling the DTB. > > See the respective patch subjects below for a summary. > > [1] http://lists.infradead.org/pipermail/linux-arm-kernel/2021-May/656310.html > > Andre Przywara (9): > Makefile: Avoid .got section creation > Add standard headers > Makefile: Tell compiler to generate bare-metal code > configure: Make PSCI the default boot method > configure: Fix default DTB > configure: Use earlycon instead of earlyprintk > pointer auth: Document CPU feature bit mask > configure: Autodetect GICv3 > avoid dtc warnings on re-compiling DTB Thanks for this! Of these, I have applied: Makefile: Avoid .got section creation configure: Make PSCI the default boot method configure: Fix default DTB configure: Use earlycon instead of earlyprintk pointer auth: Document CPU feature bit mask avoid dtc warnings on re-compiling DTB ... and have pushed that out. I have not applied: Add standard headers Makefile: Tell compiler to generate bare-metal code configure: Autodetect GICv3 ... since for the first two I have some questions/concerns, and for the GICv3 patch I'd like to make that a bit more robust if possible. Thanks, Mark. > > Makefile.am | 33 +++++++++++++++++---------------- > arch/aarch32/include/stdint.h | 19 +++++++++++++++++++ > arch/aarch64/boot.S | 3 ++- > arch/aarch64/include/stdint.h | 19 +++++++++++++++++++ > configure.ac | 16 ++++------------ > include/stddef.h | 15 +++++++++++++++ > 6 files changed, 76 insertions(+), 29 deletions(-) > create mode 100644 arch/aarch32/include/stdint.h > create mode 100644 arch/aarch64/include/stdint.h > create mode 100644 include/stddef.h > > -- > 2.25.1 > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel