diff options
author | Sean Anderson | 2023-10-27 16:07:40 -0400 |
---|---|---|
committer | Tom Rini | 2023-11-16 16:21:38 -0500 |
commit | 1125e291fbc5ee977a296065d24694a4861785fa (patch) | |
tree | c2523b9d5a405ad6f31fd8761122e39b3ff03c0c /boot | |
parent | be0724601a9dd6aebca04337b1299edd126bbb4e (diff) |
bootm: Enable legacy VxWorks booting from FITs
This works without issue, so don't fail.
Signed-off-by: Sean Anderson <sean.anderson@seco.com>
Diffstat (limited to 'boot')
-rw-r--r-- | boot/bootm_os.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/boot/bootm_os.c b/boot/bootm_os.c index 9c035b5be88..30296eb27d7 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; |