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 /common/image.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 'common/image.c')
| -rw-r--r-- | common/image.c | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/common/image.c b/common/image.c index f1755410c..5eea2a1f5 100644 --- a/common/image.c +++ b/common/image.c @@ -130,11 +130,15 @@ static const table_entry_t uimage_os[] = {  };  static const table_entry_t uimage_type[] = { -	{	IH_TYPE_INVALID,    NULL,	  "Invalid Image",	},  	{	IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image",	},  	{	IH_TYPE_FIRMWARE,   "firmware",	  "Firmware",		}, +	{	IH_TYPE_FLATDT,     "flat_dt",    "Flat Device Tree",	}, +	{	IH_TYPE_INVALID,    NULL,	  "Invalid Image",	}, +	{	IH_TYPE_IMXIMAGE,   "imximage",   "Freescale i.MX Boot Image",},  	{	IH_TYPE_KERNEL,	    "kernel",	  "Kernel Image",	}, +	{	IH_TYPE_KWBIMAGE,   "kwbimage",   "Kirkwood Boot Image",},  	{	IH_TYPE_MULTI,	    "multi",	  "Multi-File Image",	}, +	{	IH_TYPE_OMAPIMAGE,  "omapimage",  "TI OMAP SPL With GP CH",},  	{	IH_TYPE_RAMDISK,    "ramdisk",	  "RAMDisk Image",	},  	{	IH_TYPE_SCRIPT,     "script",	  "Script",		},  	{	IH_TYPE_STANDALONE, "standalone", "Standalone Program", }, |