qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [RfC PATCH 0/2] seabios: going to 256k size
@ 2013-09-30 10:46 Gerd Hoffmann
  2013-09-30 10:46 ` [Qemu-devel] [PATCH 1/2] roms: build two seabios binaries Gerd Hoffmann
  2013-09-30 10:46 ` [Qemu-devel] [PATCH 2/2] machine type dependant bios Gerd Hoffmann
  0 siblings, 2 replies; 11+ messages in thread
From: Gerd Hoffmann @ 2013-09-30 10:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

With the seabios update to the next master branch relase (NOT the stable
branch pull sent out earlier today) seabios rom size will cross the 128k
boundary and we have to deal with that.

So here is a RfC patch series with one aproach to handle this: We'll go
build two seabios binaries, one 128k (will less features), one 256k
(full featured).  Machine types 1.7+ will use the 256k bios while older
machine types will continue to use the 128k sized one.

Series applies on top of the "roms: various build improvements" pull
request sent out earlier today.

Comments?

cheers,
  Gerd

Gerd Hoffmann (2):
  roms: build two seabios binaries
  machine type dependant bios

 hw/i386/pc_piix.c        | 1 +
 hw/i386/pc_q35.c         | 1 +
 hw/i386/pc_sysfw.c       | 4 ++--
 include/hw/i386/pc.h     | 2 ++
 roms/Makefile            | 7 ++++---
 roms/config.seabios      | 1 -
 roms/config.seabios-128k | 5 +++++
 roms/config.seabios-256k | 3 +++
 8 files changed, 18 insertions(+), 6 deletions(-)
 delete mode 100644 roms/config.seabios
 create mode 100644 roms/config.seabios-128k
 create mode 100644 roms/config.seabios-256k

-- 
1.8.3.1

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Qemu-devel] [PATCH 1/2] roms: build two seabios binaries
  2013-09-30 10:46 [Qemu-devel] [RfC PATCH 0/2] seabios: going to 256k size Gerd Hoffmann
@ 2013-09-30 10:46 ` Gerd Hoffmann
  2013-09-30 11:12   ` Paolo Bonzini
  2013-09-30 10:46 ` [Qemu-devel] [PATCH 2/2] machine type dependant bios Gerd Hoffmann
  1 sibling, 1 reply; 11+ messages in thread
From: Gerd Hoffmann @ 2013-09-30 10:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 roms/Makefile            | 7 ++++---
 roms/config.seabios      | 1 -
 roms/config.seabios-128k | 5 +++++
 roms/config.seabios-256k | 3 +++
 4 files changed, 12 insertions(+), 4 deletions(-)
 delete mode 100644 roms/config.seabios
 create mode 100644 roms/config.seabios-128k
 create mode 100644 roms/config.seabios-256k

diff --git a/roms/Makefile b/roms/Makefile
index 10d5a65..1d84230 100644
--- a/roms/Makefile
+++ b/roms/Makefile
@@ -56,9 +56,10 @@ default:
 	@echo "                    the EfiRom utility from edk2 / tianocore)"
 	@echo "  slof           -- update slof.bin"
 
-bios: build-seabios-config-seabios
-	cp seabios/builds/seabios/bios.bin ../pc-bios/bios.bin
-	cp seabios/builds/seabios/*dsdt.aml ../pc-bios/
+bios: build-seabios-config-seabios-128k build-seabios-config-seabios-256k
+	cp seabios/builds/seabios-128k/bios.bin ../pc-bios/bios-128k.bin
+	cp seabios/builds/seabios-256k/bios.bin ../pc-bios/bios-256k.bin
+	cp seabios/builds/seabios-256k/src/fw/*dsdt.aml ../pc-bios/
 
 seavgabios: $(patsubst %,seavgabios-%,$(vgabios_variants))
 
diff --git a/roms/config.seabios b/roms/config.seabios
deleted file mode 100644
index c373b87..0000000
--- a/roms/config.seabios
+++ /dev/null
@@ -1 +0,0 @@
-# empty, default config works for us
diff --git a/roms/config.seabios-128k b/roms/config.seabios-128k
new file mode 100644
index 0000000..23ca812
--- /dev/null
+++ b/roms/config.seabios-128k
@@ -0,0 +1,5 @@
+# for qemu machine types 1.6 + older
+# need to turn off features (xhci) to make it fit into 128k
+CONFIG_QEMU=y
+CONFIG_ROM_SIZE=128
+CONFIG_USB_XHCI=n
diff --git a/roms/config.seabios-256k b/roms/config.seabios-256k
new file mode 100644
index 0000000..cc37a78
--- /dev/null
+++ b/roms/config.seabios-256k
@@ -0,0 +1,3 @@
+# for qemu machine types 1.7 + newer
+CONFIG_QEMU=y
+CONFIG_ROM_SIZE=256
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Qemu-devel] [PATCH 2/2] machine type dependant bios
  2013-09-30 10:46 [Qemu-devel] [RfC PATCH 0/2] seabios: going to 256k size Gerd Hoffmann
  2013-09-30 10:46 ` [Qemu-devel] [PATCH 1/2] roms: build two seabios binaries Gerd Hoffmann
@ 2013-09-30 10:46 ` Gerd Hoffmann
  2013-09-30 22:08   ` Anthony Liguori
  1 sibling, 1 reply; 11+ messages in thread
From: Gerd Hoffmann @ 2013-09-30 10:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann, Anthony Liguori

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 hw/i386/pc_piix.c    | 1 +
 hw/i386/pc_q35.c     | 1 +
 hw/i386/pc_sysfw.c   | 4 ++--
 include/hw/i386/pc.h | 2 ++
 4 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
index 907792b..35188a5 100644
--- a/hw/i386/pc_piix.c
+++ b/hw/i386/pc_piix.c
@@ -238,6 +238,7 @@ static void pc_init_pci(QEMUMachineInitArgs *args)
 
 static void pc_compat_1_6(QEMUMachineInitArgs *args)
 {
+    pc_default_bios_name = "bios-128k.bin";
     has_pci_info = false;
     rom_file_in_ram = false;
 }
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
index ca84e1c..e8b0168 100644
--- a/hw/i386/pc_q35.c
+++ b/hw/i386/pc_q35.c
@@ -222,6 +222,7 @@ static void pc_q35_init(QEMUMachineInitArgs *args)
 
 static void pc_compat_1_6(QEMUMachineInitArgs *args)
 {
+    pc_default_bios_name = "bios-128k.bin";
     has_pci_info = false;
     rom_file_in_ram = false;
 }
diff --git a/hw/i386/pc_sysfw.c b/hw/i386/pc_sysfw.c
index e917c83..deb8869 100644
--- a/hw/i386/pc_sysfw.c
+++ b/hw/i386/pc_sysfw.c
@@ -34,7 +34,7 @@
 #include "hw/block/flash.h"
 #include "sysemu/kvm.h"
 
-#define BIOS_FILENAME "bios.bin"
+const char *pc_default_bios_name = "bios-256k.bin";
 
 typedef struct PcSysFwDevice {
     SysBusDevice busdev;
@@ -112,7 +112,7 @@ static void old_pc_system_rom_init(MemoryRegion *rom_memory, bool isapc_ram_fw)
 
     /* BIOS load */
     if (bios_name == NULL) {
-        bios_name = BIOS_FILENAME;
+        bios_name = pc_default_bios_name;
     }
     filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
     if (filename) {
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h
index 9b2ddc4..cf9e47e 100644
--- a/include/hw/i386/pc.h
+++ b/include/hw/i386/pc.h
@@ -12,6 +12,8 @@
 
 /* PC-style peripherals (also used by other machines).  */
 
+extern const char *pc_default_bios_name;
+
 typedef struct PcPciInfo {
     Range w32;
     Range w64;
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [Qemu-devel] [PATCH 1/2] roms: build two seabios binaries
  2013-09-30 10:46 ` [Qemu-devel] [PATCH 1/2] roms: build two seabios binaries Gerd Hoffmann
@ 2013-09-30 11:12   ` Paolo Bonzini
  2013-09-30 13:44     ` Gerd Hoffmann
  0 siblings, 1 reply; 11+ messages in thread
From: Paolo Bonzini @ 2013-09-30 11:12 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-devel

Il 30/09/2013 12:46, Gerd Hoffmann ha scritto:
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
>  roms/Makefile            | 7 ++++---
>  roms/config.seabios      | 1 -
>  roms/config.seabios-128k | 5 +++++
>  roms/config.seabios-256k | 3 +++
>  4 files changed, 12 insertions(+), 4 deletions(-)
>  delete mode 100644 roms/config.seabios
>  create mode 100644 roms/config.seabios-128k
>  create mode 100644 roms/config.seabios-256k
> 
> diff --git a/roms/Makefile b/roms/Makefile
> index 10d5a65..1d84230 100644
> --- a/roms/Makefile
> +++ b/roms/Makefile
> @@ -56,9 +56,10 @@ default:
>  	@echo "                    the EfiRom utility from edk2 / tianocore)"
>  	@echo "  slof           -- update slof.bin"
>  
> -bios: build-seabios-config-seabios
> -	cp seabios/builds/seabios/bios.bin ../pc-bios/bios.bin
> -	cp seabios/builds/seabios/*dsdt.aml ../pc-bios/
> +bios: build-seabios-config-seabios-128k build-seabios-config-seabios-256k
> +	cp seabios/builds/seabios-128k/bios.bin ../pc-bios/bios-128k.bin
> +	cp seabios/builds/seabios-256k/bios.bin ../pc-bios/bios-256k.bin
> +	cp seabios/builds/seabios-256k/src/fw/*dsdt.aml ../pc-bios/
>  
>  seavgabios: $(patsubst %,seavgabios-%,$(vgabios_variants))
>  
> diff --git a/roms/config.seabios b/roms/config.seabios
> deleted file mode 100644
> index c373b87..0000000
> --- a/roms/config.seabios
> +++ /dev/null
> @@ -1 +0,0 @@
> -# empty, default config works for us
> diff --git a/roms/config.seabios-128k b/roms/config.seabios-128k
> new file mode 100644
> index 0000000..23ca812
> --- /dev/null
> +++ b/roms/config.seabios-128k
> @@ -0,0 +1,5 @@
> +# for qemu machine types 1.6 + older
> +# need to turn off features (xhci) to make it fit into 128k
> +CONFIG_QEMU=y
> +CONFIG_ROM_SIZE=128
> +CONFIG_USB_XHCI=n

Is it enough to disable Xen or perhaps OHCI?

> diff --git a/roms/config.seabios-256k b/roms/config.seabios-256k
> new file mode 100644
> index 0000000..cc37a78
> --- /dev/null
> +++ b/roms/config.seabios-256k
> @@ -0,0 +1,3 @@
> +# for qemu machine types 1.7 + newer
> +CONFIG_QEMU=y
> +CONFIG_ROM_SIZE=256

Is there already an option to remove ACPI tables generation?  Should it
be enabled for 1.7, irrespective of the 128k->256k switch?

Paolo

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Qemu-devel] [PATCH 1/2] roms: build two seabios binaries
  2013-09-30 11:12   ` Paolo Bonzini
@ 2013-09-30 13:44     ` Gerd Hoffmann
  2013-09-30 14:01       ` Paolo Bonzini
  0 siblings, 1 reply; 11+ messages in thread
From: Gerd Hoffmann @ 2013-09-30 13:44 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel

> > diff --git a/roms/config.seabios-128k b/roms/config.seabios-128k
> > new file mode 100644
> > index 0000000..23ca812
> > --- /dev/null
> > +++ b/roms/config.seabios-128k
> > @@ -0,0 +1,5 @@
> > +# for qemu machine types 1.6 + older
> > +# need to turn off features (xhci) to make it fit into 128k
> > +CONFIG_QEMU=y
> > +CONFIG_ROM_SIZE=128
> > +CONFIG_USB_XHCI=n
> 
> Is it enough to disable Xen or perhaps OHCI?

We can try that.  I've picked xhci because it is new in master, so we
don't take something away.

> > diff --git a/roms/config.seabios-256k b/roms/config.seabios-256k
> > new file mode 100644
> > index 0000000..cc37a78
> > --- /dev/null
> > +++ b/roms/config.seabios-256k
> > @@ -0,0 +1,3 @@
> > +# for qemu machine types 1.7 + newer
> > +CONFIG_QEMU=y
> > +CONFIG_ROM_SIZE=256
> 
> Is there already an option to remove ACPI tables generation?  Should it
> be enabled for 1.7, irrespective of the 128k->256k switch?

Not yet, but will be once mst's patches are in.  Yes, we can set that
for the 256k rom.

cheers,
  Gerd

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Qemu-devel] [PATCH 1/2] roms: build two seabios binaries
  2013-09-30 13:44     ` Gerd Hoffmann
@ 2013-09-30 14:01       ` Paolo Bonzini
  0 siblings, 0 replies; 11+ messages in thread
From: Paolo Bonzini @ 2013-09-30 14:01 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-devel

Il 30/09/2013 15:44, Gerd Hoffmann ha scritto:
>>> > > +# for qemu machine types 1.6 + older
>>> > > +# need to turn off features (xhci) to make it fit into 128k
>>> > > +CONFIG_QEMU=y
>>> > > +CONFIG_ROM_SIZE=128
>>> > > +CONFIG_USB_XHCI=n
>> > 
>> > Is it enough to disable Xen or perhaps OHCI?
> We can try that.  I've picked xhci because it is new in master, so we
> don't take something away.
> 

Ok.  But if we can enable XHCI and disable Xen, that'd be a win because
Xen anyway embeds SeaBIOS within its own hvmloader firmware.

Paolo

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Qemu-devel] [PATCH 2/2] machine type dependant bios
  2013-09-30 10:46 ` [Qemu-devel] [PATCH 2/2] machine type dependant bios Gerd Hoffmann
@ 2013-09-30 22:08   ` Anthony Liguori
  2013-09-30 22:43     ` Paolo Bonzini
  0 siblings, 1 reply; 11+ messages in thread
From: Anthony Liguori @ 2013-09-30 22:08 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 2317 bytes --]

Wouldn't this be logical as a machine option?  They way you are introducing
it makes it impossible to control with -global.

Regards,

Anthony Liguori


On Mon, Sep 30, 2013 at 5:46 AM, Gerd Hoffmann <kraxel@redhat.com> wrote:

> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
>  hw/i386/pc_piix.c    | 1 +
>  hw/i386/pc_q35.c     | 1 +
>  hw/i386/pc_sysfw.c   | 4 ++--
>  include/hw/i386/pc.h | 2 ++
>  4 files changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
> index 907792b..35188a5 100644
> --- a/hw/i386/pc_piix.c
> +++ b/hw/i386/pc_piix.c
> @@ -238,6 +238,7 @@ static void pc_init_pci(QEMUMachineInitArgs *args)
>
>  static void pc_compat_1_6(QEMUMachineInitArgs *args)
>  {
> +    pc_default_bios_name = "bios-128k.bin";
>      has_pci_info = false;
>      rom_file_in_ram = false;
>  }
> diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
> index ca84e1c..e8b0168 100644
> --- a/hw/i386/pc_q35.c
> +++ b/hw/i386/pc_q35.c
> @@ -222,6 +222,7 @@ static void pc_q35_init(QEMUMachineInitArgs *args)
>
>  static void pc_compat_1_6(QEMUMachineInitArgs *args)
>  {
> +    pc_default_bios_name = "bios-128k.bin";
>      has_pci_info = false;
>      rom_file_in_ram = false;
>  }
> diff --git a/hw/i386/pc_sysfw.c b/hw/i386/pc_sysfw.c
> index e917c83..deb8869 100644
> --- a/hw/i386/pc_sysfw.c
> +++ b/hw/i386/pc_sysfw.c
> @@ -34,7 +34,7 @@
>  #include "hw/block/flash.h"
>  #include "sysemu/kvm.h"
>
> -#define BIOS_FILENAME "bios.bin"
> +const char *pc_default_bios_name = "bios-256k.bin";
>
>  typedef struct PcSysFwDevice {
>      SysBusDevice busdev;
> @@ -112,7 +112,7 @@ static void old_pc_system_rom_init(MemoryRegion
> *rom_memory, bool isapc_ram_fw)
>
>      /* BIOS load */
>      if (bios_name == NULL) {
> -        bios_name = BIOS_FILENAME;
> +        bios_name = pc_default_bios_name;
>      }
>      filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
>      if (filename) {
> diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h
> index 9b2ddc4..cf9e47e 100644
> --- a/include/hw/i386/pc.h
> +++ b/include/hw/i386/pc.h
> @@ -12,6 +12,8 @@
>
>  /* PC-style peripherals (also used by other machines).  */
>
> +extern const char *pc_default_bios_name;
> +
>  typedef struct PcPciInfo {
>      Range w32;
>      Range w64;
> --
> 1.8.3.1
>
>

[-- Attachment #2: Type: text/html, Size: 3013 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Qemu-devel] [PATCH 2/2] machine type dependant bios
  2013-09-30 22:08   ` Anthony Liguori
@ 2013-09-30 22:43     ` Paolo Bonzini
  2013-09-30 22:57       ` Anthony Liguori
  0 siblings, 1 reply; 11+ messages in thread
From: Paolo Bonzini @ 2013-09-30 22:43 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Gerd Hoffmann, qemu-devel

Il 01/10/2013 00:08, Anthony Liguori ha scritto:
> Wouldn't this be logical as a machine option?  They way you are
> introducing it makes it impossible to control with -global.

You still have -bios.

We should introduce a machine object and convert unknown "-machine"
options to -global on that object.  But until that exists, IMO there's
no reason to do anything different from what has been done so far.

Paolo

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Qemu-devel] [PATCH 2/2] machine type dependant bios
  2013-09-30 22:43     ` Paolo Bonzini
@ 2013-09-30 22:57       ` Anthony Liguori
  2013-10-01  6:27         ` Paolo Bonzini
  0 siblings, 1 reply; 11+ messages in thread
From: Anthony Liguori @ 2013-09-30 22:57 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Gerd Hoffmann, qemu-devel

[-- Attachment #1: Type: text/plain, Size: 790 bytes --]

On Mon, Sep 30, 2013 at 5:43 PM, Paolo Bonzini <pbonzini@redhat.com> wrote:

> Il 01/10/2013 00:08, Anthony Liguori ha scritto:
> > Wouldn't this be logical as a machine option?  They way you are
> > introducing it makes it impossible to control with -global.
>
> You still have -bios.
>

Which cannot be versioned.


> We should introduce a machine object and convert unknown "-machine"
> options to -global on that object.


There's no need.  -global works on QemuOpts, not QObjects.  By making this
a machine option, you get -global and machine compat for free.

We also have a way to set per-machine default machine options already too.

Regards,

Anthony Liguori



>  But until that exists, IMO there's
> no reason to do anything different from what has been done so far.
>
> Paolo
>

[-- Attachment #2: Type: text/html, Size: 1558 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Qemu-devel] [PATCH 2/2] machine type dependant bios
  2013-09-30 22:57       ` Anthony Liguori
@ 2013-10-01  6:27         ` Paolo Bonzini
  2013-10-01 15:38           ` Anthony Liguori
  0 siblings, 1 reply; 11+ messages in thread
From: Paolo Bonzini @ 2013-10-01  6:27 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Gerd Hoffmann, qemu-devel

Il 01/10/2013 00:57, Anthony Liguori ha scritto:
> On Mon, Sep 30, 2013 at 5:43 PM, Paolo Bonzini <pbonzini@redhat.com
> <mailto:pbonzini@redhat.com>> wrote:
> 
>     Il 01/10/2013 00:08, Anthony Liguori ha scritto:
>     > Wouldn't this be logical as a machine option?  They way you are
>     > introducing it makes it impossible to control with -global.
> 
>     You still have -bios.
> 
> Which cannot be versioned.

Yeah, that's right.

>     We should introduce a machine object and convert unknown "-machine"
>     options to -global on that object.
> 
> 
> There's no need.  -global works on QemuOpts, not QObjects.

No, it doesn't. :)

Paolo

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Qemu-devel] [PATCH 2/2] machine type dependant bios
  2013-10-01  6:27         ` Paolo Bonzini
@ 2013-10-01 15:38           ` Anthony Liguori
  0 siblings, 0 replies; 11+ messages in thread
From: Anthony Liguori @ 2013-10-01 15:38 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Gerd Hoffmann, qemu-devel

[-- Attachment #1: Type: text/plain, Size: 990 bytes --]

On Tue, Oct 1, 2013 at 1:27 AM, Paolo Bonzini <pbonzini@redhat.com> wrote:

> Il 01/10/2013 00:57, Anthony Liguori ha scritto:
> > On Mon, Sep 30, 2013 at 5:43 PM, Paolo Bonzini <pbonzini@redhat.com
> > <mailto:pbonzini@redhat.com>> wrote:
> >
> >     Il 01/10/2013 00:08, Anthony Liguori ha scritto:
> >     > Wouldn't this be logical as a machine option?  They way you are
> >     > introducing it makes it impossible to control with -global.
> >
> >     You still have -bios.
> >
> > Which cannot be versioned.
>
> Yeah, that's right.
>
> >     We should introduce a machine object and convert unknown "-machine"
> >     options to -global on that object.
> >
> >
> > There's no need.  -global works on QemuOpts, not QObjects.
>
> No, it doesn't. :)
>

You are correct.  Too long of a day I guess.

Nonetheless, I still think it belongs as a machine option.  The other
comments about having a way to have default machine arguments still applies.

Regards,

Anthony Liguori


>
> Paolo
>

[-- Attachment #2: Type: text/html, Size: 1820 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2013-10-01 15:38 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-30 10:46 [Qemu-devel] [RfC PATCH 0/2] seabios: going to 256k size Gerd Hoffmann
2013-09-30 10:46 ` [Qemu-devel] [PATCH 1/2] roms: build two seabios binaries Gerd Hoffmann
2013-09-30 11:12   ` Paolo Bonzini
2013-09-30 13:44     ` Gerd Hoffmann
2013-09-30 14:01       ` Paolo Bonzini
2013-09-30 10:46 ` [Qemu-devel] [PATCH 2/2] machine type dependant bios Gerd Hoffmann
2013-09-30 22:08   ` Anthony Liguori
2013-09-30 22:43     ` Paolo Bonzini
2013-09-30 22:57       ` Anthony Liguori
2013-10-01  6:27         ` Paolo Bonzini
2013-10-01 15:38           ` Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).