diff options
author | Heiko Schocher | 2011-07-16 00:06:42 +0000 |
---|---|---|
committer | Wolfgang Denk | 2011-07-28 16:52:41 +0200 |
commit | 7816f2cf813326505970922021b3ed6490863e78 (patch) | |
tree | 759959ef5f03dcc1973038234866aa07c4e2389a /tools/mkimage.c | |
parent | b9af6d3d8265e90538c29f7f7871352a30d817c5 (diff) |
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 '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 60f726303c4..7215d0f2ea9 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -158,6 +158,8 @@ main (int argc, char **argv) init_fit_image_type (); /* Init Default image generation/list support */ init_default_image_type (); + /* Init Davinci UBL support */ + init_ubl_image_type(); params.cmdname = *argv; params.addr = params.ep = 0; |