[Qemu-devel] Re: [SeaBIOS] [PATCH 0/4] qemu option loading

2009-12-18 Thread Kevin O'Connor
On Fri, Dec 18, 2009 at 08:55:38PM -0600, Anthony Liguori wrote: >> Anthony - it looks like you've made some changes to your seabios repo, >> but I don't think you've pushed them yet. > > I've pushed now. Don't worry about merging them from me though, it's > easy enough to let git do it's magic

[Qemu-devel] Re: [SeaBIOS] [PATCH 0/4] qemu option loading

2009-12-18 Thread Anthony Liguori
Kevin O'Connor wrote: On Fri, Dec 18, 2009 at 12:16:00PM +0100, Gerd Hoffmann wrote: Hi, qemu is about to change the way how option roms are loaded. pci roms will be loaded into a option rom bar (like real hardware does). non-pci roms can be loaded using the qemu firmware interface. With

[Qemu-devel] Re: [SeaBIOS] [PATCH 0/4] qemu option loading

2009-12-18 Thread Kevin O'Connor
On Fri, Dec 18, 2009 at 12:16:00PM +0100, Gerd Hoffmann wrote: > Hi, > > qemu is about to change the way how option roms are loaded. pci roms > will be loaded into a option rom bar (like real hardware does). > non-pci roms can be loaded using the qemu firmware interface. > > With this change s

[Qemu-devel] Re: [SeaBIOS] [PATCH 0/4] qemu option loading

2009-12-18 Thread Kevin O'Connor
On Fri, Dec 18, 2009 at 04:52:08PM +0100, Gerd Hoffmann wrote: > On 12/18/09 16:41, Anthony Liguori wrote: >> I needed the following patch for this series to build: >> >> --- a/src/optionroms.c >> +++ b/src/optionroms.c >> @@ -13,6 +13,7 @@ >> +#include "paravirt.h" // qemu_cfg_* > >> --- a/src/par

[Qemu-devel] Re: [SeaBIOS] [PATCH 0/4] qemu option loading

2009-12-18 Thread Gerd Hoffmann
On 12/18/09 17:22, Anthony Liguori wrote: I think your fw_cfg.h changes also broke the optionroms/multiboot build. Haven't debugged yet though. That one is easy to fix, see attachment cheers, Gerd diff --git a/hw/fw_cfg.h b/hw/fw_cfg.h index a63f54f..c1019d0 100644 --- a/hw/fw_cfg.h +++ b/hw

[Qemu-devel] Re: [SeaBIOS] [PATCH 0/4] qemu option loading

2009-12-18 Thread Anthony Liguori
Gerd Hoffmann wrote: On 12/18/09 16:41, Anthony Liguori wrote: I needed the following patch for this series to build: --- a/src/optionroms.c +++ b/src/optionroms.c @@ -13,6 +13,7 @@ +#include "paravirt.h" // qemu_cfg_* --- a/src/paravirt.h +++ b/src/paravirt.h +u32 qemu_cfg_read_file(QemuCfg

[Qemu-devel] Re: [SeaBIOS] [PATCH 0/4] qemu option loading

2009-12-18 Thread Gerd Hoffmann
On 12/18/09 16:41, Anthony Liguori wrote: I needed the following patch for this series to build: --- a/src/optionroms.c +++ b/src/optionroms.c @@ -13,6 +13,7 @@ +#include "paravirt.h" // qemu_cfg_* --- a/src/paravirt.h +++ b/src/paravirt.h +u32 qemu_cfg_read_file(QemuCfgFile *entry, void *dst

[Qemu-devel] Re: [SeaBIOS] [PATCH 0/4] qemu option loading

2009-12-18 Thread Anthony Liguori
I needed the following patch for this series to build: diff --git a/src/optionroms.c b/src/optionroms.c index c5de1ad..0be6852 100644 --- a/src/optionroms.c +++ b/src/optionroms.c @@ -13,6 +13,7 @@ #include "pci_regs.h" // PCI_ROM_ADDRESS #include "pci_ids.h" // PCI_CLASS_DISPLAY_VGA #include "bo