[Qemu-devel] Re: [PATCH 2/4] rom loader: make vga+rom loading target specific

2009-10-19 Thread Gerd Hoffmann
On 10/17/09 11:23, Juan Quintela wrote: +ifdef TARGET_I386 +obj-y += loader-i386.o +else +obj-y += loader-dummy.o +endif + This is wrong (tm). a- TARGET_I386 on Makefiles is only defined for 32bits, not for 64bits (don't blame me, I just did a direct conversion of what was there). Oh. Jo

[Qemu-devel] Re: [PATCH 2/4] rom loader: make vga+rom loading target specific

2009-10-17 Thread Juan Quintela
Gerd Hoffmann wrote: > This patch adds a loader-target.c file for target-specific > rom loading functions. The rom_add_vga() and rom_add_option() > macros are transformed into functions and sticked in there. They > load the bios on TARGET_I386 and no nothing on other targets. > > With this in pl