[U-Boot] [PATCH v4 6/6] arm, davinci: Add support for generating AIS images to the Makefile

2011-12-02 Thread Christian Riesch
Signed-off-by: Christian Riesch christian.rie...@omicron.at Cc: Stefano Babic sba...@denx.de Cc: Heiko Schocher h...@denx.de Cc: Mike Frysinger vap...@gentoo.org --- .gitignore |1 + Makefile | 13 + 2 files changed, 14 insertions(+), 0 deletions(-) diff --git a/.gitignore

Re: [U-Boot] [PATCH v4 6/6] arm, davinci: Add support for generating AIS images to the Makefile

2011-12-02 Thread Mike Frysinger
On Friday 02 December 2011 11:12:10 Christian Riesch wrote: +$(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin + $(obj)tools/mkimage -s -n /dev/null -T aisimage \ + -e $(CONFIG_SPL_TEXT_BASE) -d $(obj)spl/u-boot-spl.bin \ +

Re: [U-Boot] [PATCH v4 6/6] arm, davinci: Add support for generating AIS images to the Makefile

2011-12-02 Thread Christian Riesch
Hi Mike, Thanks for your comments. On Friday, December 2, 2011, Mike Frysinger vap...@gentoo.org wrote: On Friday 02 December 2011 11:12:10 Christian Riesch wrote: +$(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin + $(obj)tools/mkimage -s -n /dev/null -T aisimage \

Re: [U-Boot] [PATCH v4 6/6] arm, davinci: Add support for generating AIS images to the Makefile

2011-12-02 Thread Mike Frysinger
On Saturday 03 December 2011 00:20:19 Christian Riesch wrote: The chaos above contains three commands: 1) I run the SPL through mkimage to add an AIS header for booting from SPI. Since an empty config file (-n) is sufficient here I use /dev/null here. 2) I pad the result