* [U-Boot] [PATCH] imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent
@ 2014-08-26 10:05 Guillaume GARDET
2014-09-01 2:24 ` Fabio Estevam
2014-09-09 14:58 ` Stefano Babic
0 siblings, 2 replies; 6+ messages in thread
From: Guillaume GARDET @ 2014-08-26 10:05 UTC (permalink / raw)
To: u-boot
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 <guillaume.gardet@free.fr>
Cc: Stefano Babic <sbabic@denx.de>
---
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 @@
"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
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent
2014-08-26 10:05 [U-Boot] [PATCH] imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent Guillaume GARDET
@ 2014-09-01 2:24 ` Fabio Estevam
2014-09-01 18:27 ` Eric Nelson
2014-09-09 14:58 ` Stefano Babic
1 sibling, 1 reply; 6+ messages in thread
From: Fabio Estevam @ 2014-09-01 2:24 UTC (permalink / raw)
To: u-boot
On Tue, Aug 26, 2014 at 7:05 AM, Guillaume GARDET
<guillaume.gardet@free.fr> 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 <guillaume.gardet@free.fr>
> Cc: Stefano Babic <sbabic@denx.de>
Adding Eric Nelson on Cc.
> ---
> 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 @@
> "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
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent
2014-09-01 2:24 ` Fabio Estevam
@ 2014-09-01 18:27 ` Eric Nelson
2014-09-09 12:31 ` Guillaume Gardet
0 siblings, 1 reply; 6+ messages in thread
From: Eric Nelson @ 2014-09-01 18:27 UTC (permalink / raw)
To: u-boot
Hi all,
On 08/31/2014 07:24 PM, Fabio Estevam wrote:
> On Tue, Aug 26, 2014 at 7:05 AM, Guillaume GARDET
> <guillaume.gardet@free.fr> 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 <guillaume.gardet@free.fr>
>> Cc: Stefano Babic <sbabic@denx.de>
>
> 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 <eric.nelson@boundarydevices.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent
2014-09-01 18:27 ` Eric Nelson
@ 2014-09-09 12:31 ` Guillaume Gardet
2014-09-09 12:38 ` Stefano Babic
0 siblings, 1 reply; 6+ messages in thread
From: Guillaume Gardet @ 2014-09-09 12:31 UTC (permalink / raw)
To: u-boot
Ping.
Guillaume
Le 01/09/2014 20:27, Eric Nelson a ?crit :
> Hi all,
>
> On 08/31/2014 07:24 PM, Fabio Estevam wrote:
>> On Tue, Aug 26, 2014 at 7:05 AM, Guillaume GARDET
>> <guillaume.gardet@free.fr> 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 <guillaume.gardet@free.fr>
>>> Cc: Stefano Babic <sbabic@denx.de>
>> 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 <eric.nelson@boundarydevices.com>
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent
2014-09-09 12:31 ` Guillaume Gardet
@ 2014-09-09 12:38 ` Stefano Babic
0 siblings, 0 replies; 6+ messages in thread
From: Stefano Babic @ 2014-09-09 12:38 UTC (permalink / raw)
To: u-boot
Hi Guillaume,
On 09/09/2014 14:31, Guillaume Gardet wrote:
> Ping.
Sorry, I was not in office in the last two weeks. I will go through all
i.MX patches (it seems I have something to do..) and I will apply the
ones are ready, as yours.
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent
2014-08-26 10:05 [U-Boot] [PATCH] imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent Guillaume GARDET
2014-09-01 2:24 ` Fabio Estevam
@ 2014-09-09 14:58 ` Stefano Babic
1 sibling, 0 replies; 6+ messages in thread
From: Stefano Babic @ 2014-09-09 14:58 UTC (permalink / raw)
To: u-boot
On 26/08/2014 12:05, 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 <guillaume.gardet@free.fr>
> Cc: Stefano Babic <sbabic@denx.de>
>
> ---
Applied to u-boot-imx, thanks!
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-09-09 14:58 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-26 10:05 [U-Boot] [PATCH] imx: nitrogen6x: Replace 'fatload' by 'load' command in env settings to be filesystem independent Guillaume GARDET
2014-09-01 2:24 ` Fabio Estevam
2014-09-01 18:27 ` Eric Nelson
2014-09-09 12:31 ` Guillaume Gardet
2014-09-09 12:38 ` Stefano Babic
2014-09-09 14:58 ` Stefano Babic
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox