aboutsummaryrefslogtreecommitdiff
path: root/tools/mkimage.c
diff options
context:
space:
mode:
authorStefano Babic <sbabic@denx.de>2011-10-17 00:07:43 +0000
committerWolfgang Denk <wd@denx.de>2011-10-23 23:34:21 +0200
commit4962e38e9a4a053792722918bb11c5408549aebd (patch)
treee6efc3d47eb55a231415d70597321173c6f13ef8 /tools/mkimage.c
parentdaaaf0285d55745248762fe2b4ea51ab4f3712d9 (diff)
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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/mkimage.c b/tools/mkimage.c
index c307a3761..36e28ec92 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;