diff options
author | Brandon Maier | 2021-01-16 15:14:43 -0600 |
---|---|---|
committer | Tom Rini | 2021-04-16 13:37:06 -0400 |
commit | 2339f01af6478f93aada713fa33b5e04c3497724 (patch) | |
tree | 2c1eac45e01353e7fb88a0560f753f6412f265b9 /env/Kconfig | |
parent | 9636bf8b2e319c0f43453f71131ba70856571d05 (diff) |
env/fat.c: support redund environment
Signed-off-by: Brandon Maier <brandon.maier@rockwellcollins.com>
CC: Joe Hershberger <joe.hershberger@ni.com>
CC: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'env/Kconfig')
-rw-r--r-- | env/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/env/Kconfig b/env/Kconfig index 844c3128705..08e49c2a47f 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -476,6 +476,14 @@ config ENV_FAT_FILE It's a string of the FAT file name. This file use to store the environment. +config ENV_FAT_FILE_REDUND + string "Name of the FAT file to use for the environment" + depends on ENV_IS_IN_FAT && SYS_REDUNDAND_ENVIRONMENT + default "uboot-redund.env" + help + It's a string of the FAT file name. This file use to store the + redundant environment. + config ENV_EXT4_INTERFACE string "Name of the block device for the environment" depends on ENV_IS_IN_EXT4 |