diff options
author | maxin.john@enea.com | 2015-03-18 10:51:47 +0100 |
---|---|---|
committer | Tom Rini | 2015-03-28 12:07:44 -0400 |
commit | 3b6e4841225c60aa1bd0212754ba0edc1822393d (patch) | |
tree | 73f38d369be160efa1afd22fa8993c5b3aacfc98 /include/configs/omap4_panda.h | |
parent | aa63387a399bdf9e06e4918322b23a112a5b8f97 (diff) |
ARM: omap4_panda: enable saveenv command
Enable saveenv command and the configs to store environment
persistently in the SD card.
Tested on OMAP4 Panda (OMAP4460 ES1.1)
Signed-off-by: Maxin B. John <maxin.john@enea.com>
Acked-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'include/configs/omap4_panda.h')
-rw-r--r-- | include/configs/omap4_panda.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/configs/omap4_panda.h b/include/configs/omap4_panda.h index 7378acdb210..e97c5e30da5 100644 --- a/include/configs/omap4_panda.h +++ b/include/configs/omap4_panda.h @@ -43,8 +43,13 @@ #define CONFIG_CMD_GPIO /* ENV related config options */ -#define CONFIG_ENV_IS_NOWHERE #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG +#define CONFIG_ENV_IS_IN_FAT +#define FAT_ENV_INTERFACE "mmc" +#define FAT_ENV_DEVICE_AND_PART "0:1" +#define FAT_ENV_FILE "uboot.env" +#define CONFIG_CMD_SAVEENV +#define CONFIG_ENV_OVERWRITE #endif /* __CONFIG_PANDA_H */ |