summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/board_f.c6
-rw-r--r--configs/am62x_android_a53.config5
2 files changed, 9 insertions, 2 deletions
diff --git a/common/board_f.c b/common/board_f.c
index aaf64ed9d8..7f5af1ed15 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -416,8 +416,10 @@ static int reserve_video(void)
struct video_handoff *ho;
ho = bloblist_find(BLOBLISTT_U_BOOT_VIDEO, sizeof(*ho));
- if (!ho)
- return log_msg_ret("blf", -ENOENT);
+ if (!ho) {
+ printf("no bloblist found!");
+ return 0;
+ }
video_reserve_from_bloblist(ho);
gd->relocaddr = ho->fb;
} else if (CONFIG_IS_ENABLED(VIDEO)) {
diff --git a/configs/am62x_android_a53.config b/configs/am62x_android_a53.config
index 1c1406128a..a18e05f15a 100644
--- a/configs/am62x_android_a53.config
+++ b/configs/am62x_android_a53.config
@@ -25,3 +25,8 @@ CONFIG_ENV_IS_IN_MMC=y
CONFIG_ENV_IS_NOWHERE=n
CONFIG_SYS_MMC_ENV_PART=1
CONFIG_SPL_ENV_IS_NOWHERE=y
+# Disable splashscreen
+CONFIG_SPL_VIDEO=n
+CONFIG_VIDEO=n
+CONFIG_SPL_BMP=n
+CONFIG_BMP=n