From: Sean Anderson Date: Fri, 27 Oct 2023 20:07:40 +0000 (-0400) Subject: bootm: Enable legacy VxWorks booting from FITs X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=1125e291fbc5ee977a296065d24694a4861785fa;p=u-boot.git bootm: Enable legacy VxWorks booting from FITs This works without issue, so don't fail. Signed-off-by: Sean Anderson --- diff --git a/boot/bootm_os.c b/boot/bootm_os.c index 9c035b5be8..30296eb27d 100644 --- a/boot/bootm_os.c +++ b/boot/bootm_os.c @@ -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;