diff options
Diffstat (limited to 'system/vl.c')
-rw-r--r-- | system/vl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/system/vl.c b/system/vl.c index 00f3694..646239e 100644 --- a/system/vl.c +++ b/system/vl.c @@ -3837,6 +3837,8 @@ void qemu_init(int argc, char **argv) } qemu_init_displays(); accel_setup_post(current_machine); - os_setup_post(); + if (migrate_mode() != MIG_MODE_CPR_EXEC) { + os_setup_post(); + } resume_mux_open(); } |