diff options
| author | John Rigby <john.rigby@linaro.org> | 2011-07-21 09:10:30 -0400 | 
|---|---|---|
| committer | U-Boot <uboot@aari01-12.(none)> | 2011-08-03 12:49:20 +0200 | 
| commit | 3decb14abe76d244ba98fd158ef95f89e7e37d70 (patch) | |
| tree | 26801dea2222c668be62625a9c0313be747c95cf /tools/mkimage.c | |
| parent | 8cf686e19b6922a2a6b401af188dfb83414c3c04 (diff) | |
| download | olio-uboot-2014.01-3decb14abe76d244ba98fd158ef95f89e7e37d70.tar.xz olio-uboot-2014.01-3decb14abe76d244ba98fd158ef95f89e7e37d70.zip | |
mkimage: Add OMAP boot image support
- Add mkimage support for OMAP boot image
- Add support for OMAP boot image(MLO) generation in the new
  SPL framework
Signed-off-by: John Rigby <john.rigby@linaro.org>
Signed-off-by: Aneesh V <aneesh@ti.com>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'tools/mkimage.c')
| -rw-r--r-- | tools/mkimage.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/tools/mkimage.c b/tools/mkimage.c index 7215d0f2e..2f3310175 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -156,6 +156,8 @@ main (int argc, char **argv)  	init_imx_image_type ();  	/* Init FIT image generation/list support */  	init_fit_image_type (); +	/* Init TI OMAP Boot image generation/list support */ +	init_omap_image_type();  	/* Init Default image generation/list support */  	init_default_image_type ();  	/* Init Davinci UBL support */ |