aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Brazdil <dbrazdil@google.com>2022-09-26 18:36:25 +0000
committerDavid Brazdil <dbrazdil@google.com>2022-09-26 18:36:25 +0000
commit189f236f04a43b139bbe471c361a5aa554017043 (patch)
treebcecac7c23a2821207d7038fc8a36bbafce554b2
parent50d8bba1441958300c843b098e0991739cec3c9a (diff)
pvmfw: Announce entering the kernel
AVF system health tests measure boot time of individual boot stages by parsing the logs. Print the traditional U-Boot announcement of entering the kernel to give us a point in time to measure for pvmfw as well. Test: check output Change-Id: I1c58aa6ce6ec3ef95697c9a1c8ad7f80d6f5c4c9
-rw-r--r--board/android/pvmfw-arm64/pvmfw-arm64.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/board/android/pvmfw-arm64/pvmfw-arm64.c b/board/android/pvmfw-arm64/pvmfw-arm64.c
index 40b11e92921..0197ba567ba 100644
--- a/board/android/pvmfw-arm64/pvmfw-arm64.c
+++ b/board/android/pvmfw-arm64/pvmfw-arm64.c
@@ -124,6 +124,7 @@ int board_run_command(const char *cmdline)
__builtin_unreachable();
}
+ printf("\nStarting kernel ...\n\n");
cleanup_before_linux();
entry(fw_dtb_pointer, 0, 0, 0);
__builtin_unreachable();