From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Mon, 19 Aug 2013 21:47:09 +0200 Subject: [U-Boot] [PATCH V2] ARM: mxs: tools: Add mkimage support for MXS bootstream In-Reply-To: <20130819143132.GD1311@bill-the-cat> References: <1375800893-21634-1-git-send-email-marex@denx.de> <20130819143132.GD1311@bill-the-cat> Message-ID: <201308192147.09842.marex@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Dear Tom Rini, > On Tue, Aug 06, 2013 at 04:54:53PM +0200, Marek Vasut wrote: > > Add mkimage support for generating and verifying MXS bootstream. > > The implementation here is mostly a glue code between MXSSB v0.4 > > and mkimage, but the long-term goal is to rectify this and merge > > MXSSB with mkimage more tightly. Once this code is properly in > > U-Boot, MXSSB shall be deprecated in favor of mkimage-mxsimage > > support. > > > > Note that the mxsimage generator needs libcrypto from OpenSSL, I > > therefore enabled the libcrypto/libssl unconditionally. > > > > MXSSB: http://git.denx.de/?p=mxssb.git;a=summary > > > > The code is based on research presented at: > > http://www.rockbox.org/wiki/SbFileFormat > > > > Signed-off-by: Marek Vasut > > Cc: Tom Rini > > Cc: Fabio Estevam > > Cc: Stefano Babic > > Cc: Otavio Salvador > > --- > > > > arch/arm/cpu/arm926ejs/mxs/mxsimage.mx23.cfg | 6 + > > arch/arm/cpu/arm926ejs/mxs/mxsimage.mx28.cfg | 8 + > > common/image.c | 1 + > > config.mk | 6 + > > doc/README.mxsimage | 165 ++ > > include/image.h | 1 + > > tools/Makefile | 2 + > > tools/mkimage.c | 2 + > > tools/mkimage.h | 1 + > > tools/mxsimage.c | 2312 > > ++++++++++++++++++++++++++ tools/mxsimage.h > > | 203 +++ > > 11 files changed, 2707 insertions(+) > > create mode 100644 arch/arm/cpu/arm926ejs/mxs/mxsimage.mx23.cfg > > create mode 100644 arch/arm/cpu/arm926ejs/mxs/mxsimage.mx28.cfg > > create mode 100644 doc/README.mxsimage > > create mode 100644 tools/mxsimage.c > > create mode 100644 tools/mxsimage.h > > > > V2: Remove the time hack fixing timestamp at certain time > > > > Enable -lssl and -lcrypto only if CONFIG_MX23/CONFIG_MX28 is set > > I think this now breaks non-MX23/28 builds as we still build and try and > link all of the crypto stuff. It will, but only if CONFIG_MX23/MX28 is selected, so what's the problem exactly? > Please double check this with how Simon > handled this for FIT signature stuff. I wonder if we shouldn't just unconditionally link openssl anyway. But that's for another discussion. Best regards, Marek Vasut