diff options
author | Stefano Babic <sbabic@denx.de> | 2011-10-17 00:07:43 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-10-23 23:34:21 +0200 |
commit | 4962e38e9a4a053792722918bb11c5408549aebd (patch) | |
tree | e6efc3d47eb55a231415d70597321173c6f13ef8 /tools/mkimage.c | |
parent | daaaf0285d55745248762fe2b4ea51ab4f3712d9 (diff) | |
download | u-boot-4962e38e9a4a053792722918bb11c5408549aebd.tar.gz |
mkimage: adding support for Davinci AIS image
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 <sbabic@denx.de>
CC: Wolfgang Denk <wd@denx.de>
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 c307a37615..36e28ec923 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -162,6 +162,8 @@ main (int argc, char **argv) init_default_image_type (); /* Init Davinci UBL support */ init_ubl_image_type(); + /* Init Davinci AIS support */ + init_ais_image_type(); params.cmdname = *argv; params.addr = params.ep = 0; |