From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Nelson Date: Mon, 01 Sep 2014 11:27:58 -0700 Subject: [U-Boot] [PATCH] imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent In-Reply-To: References: <1409047531-5016-1-git-send-email-guillaume.gardet@free.fr> Message-ID: <5404BAAE.1060309@boundarydevices.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi all, On 08/31/2014 07:24 PM, Fabio Estevam wrote: > On Tue, Aug 26, 2014 at 7:05 AM, Guillaume GARDET > wrote: >> nitrogen6x.h file defines CONFIG_CMD_FS_GENERIC, so we are able to use generic >> 'load' command instead of 'fatload'. It allows to use ext filesystem and keep >> compatibilty with fat filesystem. >> >> Signed-off-by: Guillaume GARDET >> Cc: Stefano Babic > > Adding Eric Nelson on Cc. > Thanks Fabio. I stopped delivery from the list while on vacation and hadn't re-started it. >> --- >> include/configs/nitrogen6x.h | 6 +++--- >> 1 file changed, 3 insertions(+), 3 deletions(-) >> >> diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h >> index b2b17ce..d4b0ac9 100644 >> --- a/include/configs/nitrogen6x.h >> +++ b/include/configs/nitrogen6x.h >> @@ -192,11 +192,11 @@ I've been wondering if anyone was using this section of nitrogen6x.h, and I guess this answers the question. >> "mmcargs=setenv bootargs console=${console},${baudrate} " \ >> "root=${mmcroot}\0" \ >> "loadbootscript=" \ >> - "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ >> + "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ >> "bootscript=echo Running bootscript from mmc ...; " \ >> "source\0" \ >> - "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \ >> - "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \ >> + "loaduimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \ >> + "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \ >> "mmcboot=echo Booting from mmc ...; " \ >> "run mmcargs; " \ >> "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ >> -- >> 1.8.4.5 >> I don't have a copy of the original e-mail, but: Acked-By: Eric Nelson