]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
bootm: Enable legacy VxWorks booting from FITs
authorSean Anderson <sean.anderson@seco.com>
Fri, 27 Oct 2023 20:07:40 +0000 (16:07 -0400)
committerTom Rini <trini@konsulko.com>
Thu, 16 Nov 2023 21:21:38 +0000 (16:21 -0500)
This works without issue, so don't fail.

Signed-off-by: Sean Anderson <sean.anderson@seco.com>
boot/bootm_os.c

index 9c035b5be886d875b031073676c50b580881d402..30296eb27d7dc2ee27f8f0a24d4fbaa62d3126f3 100644 (file)
@@ -317,13 +317,6 @@ static int do_bootm_vxworks_legacy(int flag, int argc, char *const argv[],
        if (flag != BOOTM_STATE_OS_GO)
                return 0;
 
-#if defined(CONFIG_FIT)
-       if (!images->legacy_hdr_valid) {
-               fit_unsupported_reset("VxWorks");
-               return 1;
-       }
-#endif
-
        do_bootvx_fdt(images);
 
        return 1;