From: Andrejs Cainikovs Date: Fri, 3 Mar 2023 13:26:36 +0000 (+0100) Subject: colibri-imx8x: switch from fatload to load X-Git-Tag: baikal/mips/sdk6.2~4^2~3^2~175^2~16^2~22 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=693db74445ad1442406b6fae0943a07c5439ab35;p=uboot.git colibri-imx8x: switch from fatload to load Make sure M4 binary loading works equally well on ext4 as well as fat file systems. Signed-off-by: Andrejs Cainikovs --- diff --git a/include/configs/colibri-imx8x.h b/include/configs/colibri-imx8x.h index 94243117f1..b4814bdfbf 100644 --- a/include/configs/colibri-imx8x.h +++ b/include/configs/colibri-imx8x.h @@ -18,9 +18,8 @@ /* Boot M4 */ #define M4_BOOT_ENV \ "m4_0_image=m4_0.bin\0" \ - "loadm4image_0=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} " \ - "${m4_0_image}\0" \ - "m4boot_0=run loadm4image_0; dcache flush; bootaux ${loadaddr} 0\0" \ + "loadm4image_0=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${m4_0_image}\0" \ + "m4boot_0=run loadm4image_0; dcache flush; bootaux ${loadaddr} 0\0" /* Enable Distro Boot */ #define BOOT_TARGET_DEVICES(func) \