X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=tools%2Fmkimage.c;h=64ad131860b08c7b2d5d2e772c1e55095967be46;hb=3aba3fd65490eff5305160e92937dc5592ab9bfb;hp=4e561820e7723597a46d3804cad3a236522e9e69;hpb=1a7cdb88f58edc5f34f3cb6ba354022827a50b38;p=u-boot diff --git a/tools/mkimage.c b/tools/mkimage.c index 4e561820e7..64ad131860 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -1,11 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2008 Semihalf * * (C) Copyright 2000-2009 * DENX Software Engineering * Wolfgang Denk, wd@denx.de - * - * SPDX-License-Identifier: GPL-2.0+ */ #include "mkimage.h" @@ -301,6 +300,8 @@ static void process_args(int argc, char **argv) else if (!params.datafile) usage("Missing data file for auto-FIT (use -d)"); } else if (type != IH_TYPE_INVALID) { + if (type == IH_TYPE_SCRIPT && !params.datafile) + usage("Missing data file for script (use -d)"); params.type = type; }