summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancesco Dolcini <francesco.dolcini@toradex.com>2024-03-22 09:10:43 +0100
committerFrancesco Dolcini <francesco.dolcini@toradex.com>2024-03-22 09:10:43 +0100
commitca551722e0b5341282a2dd346ddd1897db47cb5b (patch)
treeed7c3b9d37232736de5f7d515a5161a60dff33f2
parentccf1ac9755ad2c890d57615e342a61fd9bfe9b3f (diff)
parentf9b966c674731a1a29a20a8e143c61d4e046f13c (diff)
Merge tag '09.02.00.009' into dev/toradex_ti-merge-09.02.00.009
RC Release 09.02.00.009
-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