From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Sat, 29 Dec 2018 06:39:46 -0700 Subject: [U-Boot] [PATCH 2/3] tools: mkimage: Add Allwinner eGON support In-Reply-To: <20181222013422.16967-3-andre.przywara@arm.com> References: <20181222013422.16967-1-andre.przywara@arm.com> <20181222013422.16967-3-andre.przywara@arm.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Fri, 21 Dec 2018 at 18:36, Andre Przywara wrote: > > So far we used the separate mksunxiboot tool for generating a bootable > image for Allwinner SPLs, probably just for historical reasons. > > Use the mkimage framework to generate a so called eGON image the > Allwinner BROM expects. > The new image type is called "sunxi_egon", to differentiate it > from the (still to be implemented) secure boot TOC0 image. > > Signed-off-by: Andre Przywara > --- > common/image.c | 1 + > include/image.h | 1 + > tools/Makefile | 1 + > tools/sunxi_egon.c | 136 +++++++++++++++++++++++++++++++++++++++++++++++++++++ > 4 files changed, 139 insertions(+) > create mode 100644 tools/sunxi_egon.c Good idea. Reviewed-by: Simon Glass