From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dirk Behme Date: Sat, 29 Oct 2011 18:51:01 +0200 Subject: [U-Boot] [PATCH V3 3/3] mkimage: adding support for Davinci AIS image In-Reply-To: <20111023210841.F3BF31408771@gemini.denx.de> References: <1316166617-11711-1-git-send-email-sbabic@denx.de> <1318846063-9496-1-git-send-email-sbabic@denx.de> <20111023210841.F3BF31408771@gemini.denx.de> Message-ID: <4EAC2EF5.6050401@googlemail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 23.10.2011 23:08, Wolfgang Denk wrote: > Dear Stefano Babic, > > In message<1318846063-9496-1-git-send-email-sbabic@denx.de> you wrote: >> Some Davinci processors supports the Application >> Image Script (AIS) boot process. The patch adds the generation >> of the AIS image inside the mkimage tool to make possible >> to generate a bootable U-boot without external tools >> (TI Davinci AIS Generator). >> >> Signed-off-by: Stefano Babic >> CC: Wolfgang Denk >> --- >> >> Changes since V2: >> - rebased on mainline and sort uimage_type list (Wolfgang Denk) >> >> Changes since V1: >> - removed warning in gcc 4.6 iwhen -Wunused-but-set-variable is set >> - drop remained warnings raised by checkpatch >> >> >> common/image.c | 9 +- >> include/image.h | 1 + >> tools/Makefile | 4 +- >> tools/aisimage.c | 451 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ Hmm, using recent git head this results in aisimage.c: In function ?aisimage_generate?: aisimage.c:365: warning: ?tsize? may be used uninitialized in this function for each board I build :( E.g. Configuring for omap3_evm board... aisimage.c: In function ?aisimage_generate?: aisimage.c:365: warning: ?tsize? may be used uninitialized in this function text data bss dec hex filename 256063 7512 259120 522695 7f9c7 ./u-boot Dirk