From: Remy Bohmer Date: Wed, 28 Oct 2009 21:13:35 +0000 (+0100) Subject: Building of FIT images does not work. X-Git-Tag: v2009.11-rc2~48 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6a590c5f5fd12cdd27f3153522acfac3854590e7;p=u-boot Building of FIT images does not work. The type is not set for generation of the FIT images, resulting in no images being created without printing or returning an error Signed-off-by: Remy Bohmer --- diff --git a/tools/mkimage.c b/tools/mkimage.c index ab6ea32ad0..8a20594f31 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -229,6 +229,7 @@ main (int argc, char **argv) case 'f': if (--argc <= 0) usage (); + params.type = IH_TYPE_FLATDT; params.datafile = *++argv; params.fflag = 1; goto NXTARG;