* ron minnich rminnich@gmail.com [070509 18:39]:
Should it not rather be fixed? Since LinuxBIOS is not useful on Qemu per se, but only an educational target, we should not drop the stuff that we call our selling points.
yes, that is a good point. Can we make it so we can build a failover target for qemu? That would be very neat.
This patch (wont apply, cut n pasted, so whitespace is broken) might already be enough...
Don't have qemu here right now, so I can't test
Signed-off-by: Stefan Reinauer stepan@coresystems.de
Index: src/mainboard/emulation/qemu-i386/failover.c =================================================================== --- src/mainboard/emulation/qemu-i386/failover.c (revision 2652) +++ src/mainboard/emulation/qemu-i386/failover.c (working copy) @@ -9,9 +9,6 @@
static void main(void) { - /* for now, just always assume failure */ - -#if 0 /* Is this a cpu reset? */ if (cpu_init_detected()) { if (last_boot_normal()) { @@ -25,5 +22,4 @@ else if (do_normal_boot()) { asm("jmp __normal_image"); } -#endif }