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
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