diff options
| author | Simon Glass <[email protected]> | 2026-03-05 19:36:22 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-03-18 13:17:34 -0600 |
| commit | 3b4bd773e093e777d35f2d951d1868de1a3cc2f3 (patch) | |
| tree | 833f7a67dfc39557c979ed27dcdd79b2f401fd45 /arch | |
| parent | 15e58f975aa42ffbc9170ac226cc480962c6df59 (diff) | |
m68k: 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 m68k.
Signed-off-by: Simon Glass <[email protected]>
Acked-by: Angelo Dureghello <[email protected]>
Tested-by: Angelo Dureghello <[email protected]>
Acked-by: Kuan-Wei Chiu <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/m68k/lib/bootm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/m68k/lib/bootm.c b/arch/m68k/lib/bootm.c index 3dcff8076e3..7e36ac73169 100644 --- a/arch/m68k/lib/bootm.c +++ b/arch/m68k/lib/bootm.c @@ -65,6 +65,8 @@ int do_bootm_linux(int flag, struct bootm_info *bmi) bootstage_mark(BOOTSTAGE_ID_RUN_OS); + bootm_final(0); + /* * Linux Kernel Parameters (passing board info data): * sp+00: Ignore, side effect of using jsr to jump to kernel |
