]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
sh: Call bootm_final()
authorSimon Glass <simon.glass@canonical.com>
Fri, 6 Mar 2026 02:36:24 +0000 (19:36 -0700)
committerTom Rini <trini@konsulko.com>
Wed, 18 Mar 2026 19:17:34 +0000 (13:17 -0600)
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 <simon.glass@canonical.com>
arch/sh/lib/bootm.c

index 1c118870dad684b457325a823e8f08bca28be94a..81d5957edaac55692f78962214159caf7c70b1ee 100644 (file)
@@ -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();