* [U-Boot] [PATCH v2] ARM: at91: at91sam9n12ek: save the environment to a fat file in MMC card
@ 2015-03-24 9:07 Josh Wu
2015-03-25 3:54 ` Bo Shen
2015-03-31 23:06 ` [U-Boot] [U-Boot, " Andreas Bießmann
0 siblings, 2 replies; 3+ messages in thread
From: Josh Wu @ 2015-03-24 9:07 UTC (permalink / raw)
To: u-boot
Insteading in mmc's raw sectors, this patch will save the environment
in a fat file (uboot.env) in mmc card's first FAT patition by default.
If you want to save in mmc's raw sectors, you only need to define
CONFIG_ENV_IS_IN_MMC.
Signed-off-by: Josh Wu <josh.wu@atmel.com>
---
Changes in v2:
- not remove the code to save env in mmc's raw sectors.
- we can define CONFIG_ENV_IS_IN_MMC to enable raw sectors saving.
include/configs/at91sam9n12ek.h | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/include/configs/at91sam9n12ek.h b/include/configs/at91sam9n12ek.h
index f02fce9..058e0e4 100644
--- a/include/configs/at91sam9n12ek.h
+++ b/include/configs/at91sam9n12ek.h
@@ -201,11 +201,22 @@
#else /* CONFIG_SYS_USE_MMC */
/* bootstrap + u-boot + env + linux in mmc */
-#define CONFIG_ENV_IS_IN_MMC
-/* For FAT system, most cases it should be in the reserved sector */
+
+#ifdef CONFIG_ENV_IS_IN_MMC
+/* Use raw reserved sectors to save environment */
#define CONFIG_ENV_OFFSET 0x2000
#define CONFIG_ENV_SIZE 0x1000
#define CONFIG_SYS_MMC_ENV_DEV 0
+#else
+/* Use file in FAT file to save environment */
+#define CONFIG_ENV_IS_IN_FAT
+#define CONFIG_FAT_WRITE
+#define FAT_ENV_INTERFACE "mmc"
+#define FAT_ENV_FILE "uboot.env"
+#define FAT_ENV_DEVICE_AND_PART "0"
+#define CONFIG_ENV_SIZE 0x4000
+#endif
+
#define CONFIG_BOOTCOMMAND \
"setenv bootargs ${console} ${mtdparts} ${bootargs_mmc};" \
"fatload mmc 0:1 0x21000000 dtb;" \
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH v2] ARM: at91: at91sam9n12ek: save the environment to a fat file in MMC card
2015-03-24 9:07 [U-Boot] [PATCH v2] ARM: at91: at91sam9n12ek: save the environment to a fat file in MMC card Josh Wu
@ 2015-03-25 3:54 ` Bo Shen
2015-03-31 23:06 ` [U-Boot] [U-Boot, " Andreas Bießmann
1 sibling, 0 replies; 3+ messages in thread
From: Bo Shen @ 2015-03-25 3:54 UTC (permalink / raw)
To: u-boot
Hi Josh,
On 03/24/2015 05:07 PM, Josh Wu wrote:
> Insteading in mmc's raw sectors, this patch will save the environment
> in a fat file (uboot.env) in mmc card's first FAT patition by default.
>
> If you want to save in mmc's raw sectors, you only need to define
> CONFIG_ENV_IS_IN_MMC.
>
> Signed-off-by: Josh Wu <josh.wu@atmel.com>
Thanks for your patch. I think this one is better than v1.
Acked-by: Bo Shen <voice.shen@atmel.com>
> ---
>
> Changes in v2:
> - not remove the code to save env in mmc's raw sectors.
> - we can define CONFIG_ENV_IS_IN_MMC to enable raw sectors saving.
>
> include/configs/at91sam9n12ek.h | 15 +++++++++++++--
> 1 file changed, 13 insertions(+), 2 deletions(-)
>
> diff --git a/include/configs/at91sam9n12ek.h b/include/configs/at91sam9n12ek.h
> index f02fce9..058e0e4 100644
> --- a/include/configs/at91sam9n12ek.h
> +++ b/include/configs/at91sam9n12ek.h
> @@ -201,11 +201,22 @@
> #else /* CONFIG_SYS_USE_MMC */
>
> /* bootstrap + u-boot + env + linux in mmc */
> -#define CONFIG_ENV_IS_IN_MMC
> -/* For FAT system, most cases it should be in the reserved sector */
> +
> +#ifdef CONFIG_ENV_IS_IN_MMC
> +/* Use raw reserved sectors to save environment */
> #define CONFIG_ENV_OFFSET 0x2000
> #define CONFIG_ENV_SIZE 0x1000
> #define CONFIG_SYS_MMC_ENV_DEV 0
> +#else
> +/* Use file in FAT file to save environment */
> +#define CONFIG_ENV_IS_IN_FAT
> +#define CONFIG_FAT_WRITE
> +#define FAT_ENV_INTERFACE "mmc"
> +#define FAT_ENV_FILE "uboot.env"
> +#define FAT_ENV_DEVICE_AND_PART "0"
> +#define CONFIG_ENV_SIZE 0x4000
> +#endif
> +
> #define CONFIG_BOOTCOMMAND \
> "setenv bootargs ${console} ${mtdparts} ${bootargs_mmc};" \
> "fatload mmc 0:1 0x21000000 dtb;" \
>
Best Regards,
Bo Shen
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [U-Boot, v2] ARM: at91: at91sam9n12ek: save the environment to a fat file in MMC card
2015-03-24 9:07 [U-Boot] [PATCH v2] ARM: at91: at91sam9n12ek: save the environment to a fat file in MMC card Josh Wu
2015-03-25 3:54 ` Bo Shen
@ 2015-03-31 23:06 ` Andreas Bießmann
1 sibling, 0 replies; 3+ messages in thread
From: Andreas Bießmann @ 2015-03-31 23:06 UTC (permalink / raw)
To: u-boot
Dear Josh Wu,
Josh Wu <Josh.wu@atmel.com> writes:
>Insteading in mmc's raw sectors, this patch will save the environment
>in a fat file (uboot.env) in mmc card's first FAT patition by default.
>
>If you want to save in mmc's raw sectors, you only need to define
>CONFIG_ENV_IS_IN_MMC.
>
>Signed-off-by: Josh Wu <josh.wu@atmel.com>
>Acked-by: Bo Shen <voice.shen@atmel.com>
>---
>
>Changes in v2:
>- not remove the code to save env in mmc's raw sectors.
>- we can define CONFIG_ENV_IS_IN_MMC to enable raw sectors saving.
>
> include/configs/at91sam9n12ek.h | 15 +++++++++++++--
> 1 file changed, 13 insertions(+), 2 deletions(-)
applied to u-boot-atmel/master, thanks!
Best regards,
Andreas Bie?mann
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-03-31 23:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-24 9:07 [U-Boot] [PATCH v2] ARM: at91: at91sam9n12ek: save the environment to a fat file in MMC card Josh Wu
2015-03-25 3:54 ` Bo Shen
2015-03-31 23:06 ` [U-Boot] [U-Boot, " Andreas Bießmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox