diff options
| author | Heiko Schocher <hs@denx.de> | 2011-07-16 00:06:42 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-07-28 16:52:41 +0200 | 
| commit | 7816f2cf813326505970922021b3ed6490863e78 (patch) | |
| tree | 759959ef5f03dcc1973038234866aa07c4e2389a /common/image.c | |
| parent | b9af6d3d8265e90538c29f7f7871352a30d817c5 (diff) | |
| download | olio-uboot-2014.01-7816f2cf813326505970922021b3ed6490863e78.tar.xz olio-uboot-2014.01-7816f2cf813326505970922021b3ed6490863e78.zip | |
mkimage: add UBL header support for booting davinci cpus
creating an u-boot.ubl file, which contains the UBL Header
needed for booting from NAND with the RBL from TI. For more
information read doc/README.ublimage.
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'common/image.c')
| -rw-r--r-- | common/image.c | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/common/image.c b/common/image.c index 5c7d4f42f..f1755410c 100644 --- a/common/image.c +++ b/common/image.c @@ -141,6 +141,7 @@ static const table_entry_t uimage_type[] = {  	{	IH_TYPE_FLATDT,     "flat_dt",    "Flat Device Tree",	},  	{	IH_TYPE_KWBIMAGE,   "kwbimage",   "Kirkwood Boot Image",},  	{	IH_TYPE_IMXIMAGE,   "imximage",   "Freescale i.MX Boot Image",}, +	{	IH_TYPE_UBLIMAGE,   "ublimage",   "Davinci UBL image",},  	{	-1,		    "",		  "",			},  }; |