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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 44DE8C433F5 for ; Tue, 5 Apr 2022 23:02:36 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id D66318027D; Wed, 6 Apr 2022 01:02:33 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id A376C83B8A; Wed, 6 Apr 2022 01:02:31 +0200 (CEST) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by phobos.denx.de (Postfix) with ESMTP id A682483B38 for ; Wed, 6 Apr 2022 01:02:26 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=andre.przywara@arm.com 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 DE5A723A; Tue, 5 Apr 2022 16:02:25 -0700 (PDT) Received: from slackpad.lan (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id B66D43F718; Tue, 5 Apr 2022 16:02:24 -0700 (PDT) Date: Tue, 5 Apr 2022 23:41:35 +0100 From: Andre Przywara To: Icenowy Zheng Cc: Simon Glass , Jagan Teki , Samuel Holland , Tom Rini , u-boot@lists.denx.de, linux-sunxi@lists.linux.dev Subject: Re: [PATCH v2 0/4] mkimage: sunxi_egon: add riscv support Message-ID: <20220405234135.5716de2f@slackpad.lan> In-Reply-To: <20210619091838.646779-1-icenowy@aosc.io> References: <20210619091838.646779-1-icenowy@aosc.io> Organization: Arm Ltd. X-Mailer: Claws Mail 4.0.0 (GTK+ 3.24.31; x86_64-slackware-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean On Sat, 19 Jun 2021 17:18:34 +0800 Icenowy Zheng wrote: > This patchset tries to make mkimage -T sunxi_egon to be able to generate > an eGON.BT0 image for Allwinner RISC-V SoCs (e.g. D1). > > In addition, to keep the compatibility, it will still consider the > architecture to be ARM when no architecture is specified. All merged into sunxi/master (which already landed in mainline). Thanks! Andre > > Icenowy Zheng (4): > mkimage: add a flag to describe whether -A is specified > mkimage: sunxi_egon: refactor for multi-architecture support > mkimage: sunxi_egon: add support for riscv > sunxi: specify architecture when generating SPL boot image > > scripts/Makefile.spl | 2 +- > tools/imagetool.h | 1 + > tools/mkimage.c | 1 + > tools/sunxi_egon.c | 86 ++++++++++++++++++++++++++++++++++++++++---- > 4 files changed, 82 insertions(+), 8 deletions(-) >