Well...
i did this:
--- a/northbridge/intel/i440bxemulation/i440bx.c +++ b/northbridge/intel/i440bxemulation/i440bx.c @@ -184,3 +184,10 @@ struct device_operations i440bx_northbridge = { .ops_pci_bus = &pci_cf8_conf1,
}; + +int is_coldboot(void) +{ + int boot_mode = 0; + return boot_mode; +} +
but it obviously only fixes the problem for qemu-x86...
Cheers, Patty
On Fri, Mar 13, 2009 at 10:35 PM, ron minnich rminnich@gmail.com wrote:
On Fri, Mar 13, 2009 at 2:27 PM, Pattrick Hueper phueper@hueper.net wrote:
Hi,
On Wed, Mar 11, 2009 at 5:17 PM, svn@coreboot.org wrote: ...
- cpu_phase2(is_coldboot(), sysinfo);
Take it out for now. I'll ack any patch to fix what I broke :-)
ron