diff options
| author | Sean Anderson <[email protected]> | 2023-11-08 11:48:49 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-11-16 13:49:14 -0500 |
| commit | 682184e9b9a6f67b108209651ad2ce90aae9ec9d (patch) | |
| tree | 79c22b0938f61ffb7e0e28b55eccfe617523e55c /include/spl_load.h | |
| parent | b8ed72256748119d392c63c6fa8b1f8bb156fd38 (diff) | |
spl: Convert fat to spl_load
This converts the fat loader to use spl_load. Some platforms are very
tight on space, so we take care to only include the code we really need.
Signed-off-by: Sean Anderson <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/spl_load.h')
| -rw-r--r-- | include/spl_load.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/spl_load.h b/include/spl_load.h index 65aa6bb4493..5e0460d956d 100644 --- a/include/spl_load.h +++ b/include/spl_load.h @@ -96,6 +96,7 @@ static inline int _spl_load(struct spl_image_info *spl_image, */ #define SPL_LOAD_USERS \ IS_ENABLED(CONFIG_SPL_FS_EXT4) + \ + IS_ENABLED(CONFIG_SPL_FS_FAT) + \ 0 #if SPL_LOAD_USERS > 1 |
