]> git.baikalelectronics.ru Git - uboot.git/commitdiff
mkimage: add a flag to describe whether -A is specified
authorIcenowy Zheng <icenowy@aosc.io>
Fri, 15 Oct 2021 01:53:04 +0000 (20:53 -0500)
committerAndre Przywara <andre.przywara@arm.com>
Mon, 4 Apr 2022 22:24:17 +0000 (23:24 +0100)
The sunxi_egon type used to take no -A argument (because we assume sunxi
targets are all ARM). However, as Allwinner D1 appears as the first
RISC-V sunxi target, we need to support -A; in addition, as external
projects rely on U-Boot mkimage to generate sunxi eGON.BT0 header, we
need to keep compatibility with command line without -A.

As the default value of arch in mkimage is not proper (IH_ARCH_PPC
instead of IH_ARCH_INVALID), to keep more compatibility, add an Aflag
field to image parameters to describe whether an architecture is
explicitly specified.

Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Signed-off-by: Samuel Holland <samuel@sholland.org>
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
tools/imagetool.h
tools/mkimage.c

index 5169b0245dadb43f97d99e2e671803b13fee8b8b..05dd94d108474842b88eb8a38a2db9a03d13fc33 100644 (file)
@@ -53,6 +53,7 @@ struct image_tool_params {
        int pflag;
        int vflag;
        int xflag;
+       int Aflag;
        int skipcpy;
        int os;
        int arch;
index 74bd072832c74908a8956847a374e1ddd02dab3a..b46216fdc59fff76510ea48b570b4f583651617e 100644 (file)
@@ -172,6 +172,7 @@ static void process_args(int argc, char **argv)
                                show_valid_options(IH_ARCH);
                                usage("Invalid architecture");
                        }
+                       params.Aflag = 1;
                        break;
                case 'b':
                        if (add_content(IH_TYPE_FLATDT, optarg)) {