From: Kevin O'Connor Date: Fri, 9 Oct 2009 02:14:50 +0000 (-0400) Subject: Move qemu cfg init before smp init. X-Git-Tag: rel-0.5.0~69 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=4092cf9fd8728206b34d0e1c916569625e70808e;p=seabios.git Move qemu cfg init before smp init. We will need to read qemu config during smp init. Signed-off-by: Gleb Natapov --- diff --git a/src/post.c b/src/post.c index e6f9c39..674f402 100644 --- a/src/post.c +++ b/src/post.c @@ -161,6 +161,8 @@ post() init_ivt(); init_bda(); + qemu_cfg_port_probe(); + pic_setup(); timer_setup(); mathcp_setup(); @@ -185,8 +187,6 @@ post() serial_setup(); mouse_setup(); - qemu_cfg_port_probe(); - init_bios_tables(); boot_setup();