From: Heinrich Schuchardt Date: Thu, 4 Mar 2021 18:28:37 +0000 (+0000) Subject: sandbox: add FAT to the list of usable env drivers X-Git-Tag: v2021.10~246^2~4^2~108 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a38e712652f678c9e6141f5d83bc4fdfafe161f;p=platform%2Fkernel%2Fu-boot.git 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 Reviewed-by: Simon Glass --- 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)