diff options
-rw-r--r-- | board/ti/am62x/evm.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/board/ti/am62x/evm.c b/board/ti/am62x/evm.c index 20b2a70122..1b7b439cf5 100644 --- a/board/ti/am62x/evm.c +++ b/board/ti/am62x/evm.c @@ -20,9 +20,15 @@ DECLARE_GLOBAL_DATA_PTR; -#ifdef CONFIG_SPLASH_SCREEN +#if CONFIG_IS_ENABLED(SPLASH_SCREEN) static struct splash_location default_splash_locations[] = { { + .name = "sf", + .storage = SPLASH_STORAGE_SF, + .flags = SPLASH_STORAGE_RAW, + .offset = 0x700000, + }, + { .name = "mmc", .storage = SPLASH_STORAGE_MMC, .flags = SPLASH_STORAGE_FS, |