j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Hi,
this patch only effects the biosload build. In a few places linuxbios-loaded is used where qemu-loaded should be used and vice versa. This patch changes that, so that running LinuxBIOS + OFW on real hardware works by only enabling linuxbios-loaded in config.fth.
With kind regards,
Jens
Attachments:
On Wednesday 10 October 2007, Jens Freimann wrote:
Hi,
this patch only effects the biosload build. In a few places linuxbios-loaded is used where qemu-loaded should be used and vice versa. This patch changes that, so that running LinuxBIOS + OFW on real hardware works by only enabling linuxbios-loaded in config.fth.
It even works in qemu. Real HW remains to be tested (I'm currently typing to it ;-)
Acked-by: Torsten Duwe duwe@lst.de
* Jens Freimann jens@freimann.org [071010 23:03]:
--- cpu/x86/pc/biosload/fw.bth (Revision 548) +++ cpu/x86/pc/biosload/fw.bth (Arbeitskopie) @@ -121,6 +121,12 @@ end-support-package [then]
+[ifdef] qemu-loaded +fload ${BP}/cpu/x86/pc/biosload/lbtable.fth +fload ${BP}/cpu/x86/pc/biosload/lbcmos.fth +fload ${BP}/cpu/x86/pc/biosload/lbdevtree.fth +[then]
is this one qemu-loaded on purpose?
On Tuesday 16 October 2007, Stefan Reinauer wrote:
- Jens Freimann jens@freimann.org [071010 23:03]:
--- cpu/x86/pc/biosload/fw.bth (Revision 548) +++ cpu/x86/pc/biosload/fw.bth (Arbeitskopie) @@ -121,6 +121,12 @@ end-support-package [then]
+[ifdef] qemu-loaded +fload ${BP}/cpu/x86/pc/biosload/lbtable.fth +fload ${BP}/cpu/x86/pc/biosload/lbcmos.fth +fload ${BP}/cpu/x86/pc/biosload/lbdevtree.fth +[then]
is this one qemu-loaded on purpose?
Unlikely. That chunk needs to be [ifdef]'ed linuxbios-loaded and be moved 40 lines up, before fload ${BP}/cpu/x86/pc/biosload/probemem.fth ; see my reply to "Read size of installed memory", the ofw_lbtable+probemem patch I had attached.
Torsten