summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2026-03-05 19:36:24 -0700
committerTom Rini <[email protected]>2026-03-18 13:17:34 -0600
commit7fec6d005bdb55e27f1de3d6784dfe8815691bd4 (patch)
tree091a27a17f428a482c4960e5dbfd7464834971f3 /arch
parent81334489c0f3e3982c46e9ff5986097d43adaec9 (diff)
sh: Call bootm_final()
Add a call to bootm_final() before jumping to the kernel. This adds the "Starting kernel" message, bootstage tracking, board_quiesce_devices() and dm_remove_devices_active() which were not previously called on SH. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'arch')
-rw-r--r--arch/sh/lib/bootm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/lib/bootm.c b/arch/sh/lib/bootm.c
index 1c118870dad..81d5957edaa 100644
--- a/arch/sh/lib/bootm.c
+++ b/arch/sh/lib/bootm.c
@@ -92,6 +92,8 @@ int do_bootm_linux(int flag, struct bootm_info *bmi)
images->rd_end - images->rd_start);
}
+ bootm_final(0);
+
/* Boot kernel */
kernel();