From: Simon Glass <[email protected]> Add a call to bootm_final() before the simulated kernel jump. This adds the "Starting kernel" message, bootstage tracking, board_quiesce_devices() and dm_remove_devices_active() which were not previously called on sandbox.
Signed-off-by: Simon Glass <[email protected]> --- Changes in v3: - Add new patch for sandbox conversion arch/sandbox/lib/bootm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/sandbox/lib/bootm.c b/arch/sandbox/lib/bootm.c index 44ba8b52e13..561dad369be 100644 --- a/arch/sandbox/lib/bootm.c +++ b/arch/sandbox/lib/bootm.c @@ -73,6 +73,8 @@ int do_bootm_linux(int flag, struct bootm_info *bmi) if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) { bootstage_mark(BOOTSTAGE_ID_RUN_OS); + bootm_final((flag & BOOTM_STATE_OS_FAKE_GO) ? + BOOTM_FINAL_FAKE : 0); printf("## Transferring control to Linux (at address %08lx)...\n", images->ep); printf("sandbox: continuing, as we cannot run Linux\n"); -- 2.43.0

