aboutsummaryrefslogtreecommitdiff
path: root/board/sandbox/sandbox.c
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2021-03-04 18:28:37 +0000
committerSimon Glass <sjg@chromium.org>2021-03-22 19:23:26 +1300
commit2a38e712652f678c9e6141f5d83bc4fdfafe161f (patch)
tree1d72ec35a3719e963264a3d4bea94f358556a1d1 /board/sandbox/sandbox.c
parentc803838fa85d681a0ea60409fc81f596a2e9c07c (diff)
downloadu-boot-2a38e712652f678c9e6141f5d83bc4fdfafe161f.zip
u-boot-2a38e712652f678c9e6141f5d83bc4fdfafe161f.tar.gz
u-boot-2a38e712652f678c9e6141f5d83bc4fdfafe161f.tar.bz2
sandbox: add FAT to the list of usable env drivers
Add the FAT environment driver to the priority list. When testing the UEFI sub-system the EFI system partition is formatted with FAT so it is reasonable to store the environment there. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/sandbox/sandbox.c')
-rw-r--r--board/sandbox/sandbox.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/board/sandbox/sandbox.c b/board/sandbox/sandbox.c
index 3c63d45..902b99e 100644
--- a/board/sandbox/sandbox.c
+++ b/board/sandbox/sandbox.c
@@ -48,6 +48,7 @@ unsigned long timer_read_counter(void)
static enum env_location env_locations[] = {
ENVL_NOWHERE,
ENVL_EXT4,
+ ENVL_FAT,
};
enum env_location env_get_location(enum env_operation op, int prio)