qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Upgrade to SeaBIOS v1.6.3.1
@ 2011-11-24 17:38 Kevin O'Connor
  2011-11-24 17:39 ` Paolo Bonzini
  2011-11-28 17:34 ` Anthony Liguori
  0 siblings, 2 replies; 4+ messages in thread
From: Kevin O'Connor @ 2011-11-24 17:38 UTC (permalink / raw)
  To: qemu-devel, Anthony Liguori; +Cc: Paolo Bonzini

There are a handful of bugfixes between QEmu's current SeaBIOS version
(8e301472e324b6d6496d8b4ffc66863e99d7a505) and the SeaBIOS v1.6.3.1
released version.  The total diff is 12 patches - 5 bug fixes for
QEmu/KVM, 1 coreboot bug fix, 3 patches are version/doc changes, 2
minor comment changes, and 1 seabios compile fix.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>

Log of SeaBIOS changes:

Jan Kiszka (2):
  Probe HPET existence
  Probe PCI existence

Kevin O'Connor (9):
  Use coreboot smbios table if found.
  Minor formatting and comment updates to acpi.c.
  Minor - move ACPI_HPET_ADDRESS definition to config.h.
  Define handle_post as VISIBLE32FLAT as work around for QEmu memory
    layout.
  Reorder build objects to work around gcc bug with -combine.
  Fix alignment bug in pci_bios_init_root_regions().
  Update README file.
  Update version to 1.6.3
  Update version to 1.6.3.1

Paolo Bonzini (1):
  usb: fix boot paths

 Makefile         |    4 ++--
 README           |   35 +++++++++--------------------------
 src/acpi.c       |   44 ++++++++++++++++++++++++++------------------
 src/biostables.c |    3 +++
 src/boot.c       |    4 ++--
 src/config.h     |   15 +++++++--------
 src/coreboot.c   |    7 ++++---
 src/pci.c        |   14 +++++++++++++-
 src/pci.h        |    3 ++-
 src/pciinit.c    |    9 ++++++---
 src/post.c       |   31 ++++++++++++++++++++-----------
 src/smbios.c     |    3 +++
 src/smbios.h     |    2 ++
 13 files changed, 99 insertions(+), 75 deletions(-)
---
 roms/seabios |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/roms/seabios b/roms/seabios
index 8e30147..80d11e8 160000
--- a/roms/seabios
+++ b/roms/seabios
@@ -1 +1 @@
-Subproject commit 8e301472e324b6d6496d8b4ffc66863e99d7a505
+Subproject commit 80d11e8577bf03e98f2eb1b0cb3a281ab2879c9e
-- 
1.7.6.4

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

* Re: [Qemu-devel] [PATCH] Upgrade to SeaBIOS v1.6.3.1
  2011-11-24 17:38 [Qemu-devel] [PATCH] Upgrade to SeaBIOS v1.6.3.1 Kevin O'Connor
@ 2011-11-24 17:39 ` Paolo Bonzini
  2011-11-30 13:29   ` Jan Kiszka
  2011-11-28 17:34 ` Anthony Liguori
  1 sibling, 1 reply; 4+ messages in thread
From: Paolo Bonzini @ 2011-11-24 17:39 UTC (permalink / raw)
  To: Kevin O'Connor; +Cc: Jan Kiszka, qemu-devel

On 11/24/2011 06:38 PM, Kevin O'Connor wrote:
> Jan Kiszka (2):
>    Probe HPET existence
>    Probe PCI existence

Jan,

does this mean that isapc will be unbroken in 1.0?  Yay!

Paolo

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

* Re: [Qemu-devel] [PATCH] Upgrade to SeaBIOS v1.6.3.1
  2011-11-24 17:38 [Qemu-devel] [PATCH] Upgrade to SeaBIOS v1.6.3.1 Kevin O'Connor
  2011-11-24 17:39 ` Paolo Bonzini
@ 2011-11-28 17:34 ` Anthony Liguori
  1 sibling, 0 replies; 4+ messages in thread
From: Anthony Liguori @ 2011-11-28 17:34 UTC (permalink / raw)
  To: Kevin O'Connor; +Cc: Paolo Bonzini, qemu-devel

On 11/24/2011 11:38 AM, Kevin O'Connor wrote:
> There are a handful of bugfixes between QEmu's current SeaBIOS version
> (8e301472e324b6d6496d8b4ffc66863e99d7a505) and the SeaBIOS v1.6.3.1
> released version.  The total diff is 12 patches - 5 bug fixes for
> QEmu/KVM, 1 coreboot bug fix, 3 patches are version/doc changes, 2
> minor comment changes, and 1 seabios compile fix.
>
> Signed-off-by: Kevin O'Connor<kevin@koconnor.net>

This makes me very nervous for 1.0, but I think we can do it for 1.0.1 with no 
problem.

Regards,

Anthony Liguori

>
> Log of SeaBIOS changes:
>
> Jan Kiszka (2):
>    Probe HPET existence
>    Probe PCI existence
>
> Kevin O'Connor (9):
>    Use coreboot smbios table if found.
>    Minor formatting and comment updates to acpi.c.
>    Minor - move ACPI_HPET_ADDRESS definition to config.h.
>    Define handle_post as VISIBLE32FLAT as work around for QEmu memory
>      layout.
>    Reorder build objects to work around gcc bug with -combine.
>    Fix alignment bug in pci_bios_init_root_regions().
>    Update README file.
>    Update version to 1.6.3
>    Update version to 1.6.3.1
>
> Paolo Bonzini (1):
>    usb: fix boot paths
>
>   Makefile         |    4 ++--
>   README           |   35 +++++++++--------------------------
>   src/acpi.c       |   44 ++++++++++++++++++++++++++------------------
>   src/biostables.c |    3 +++
>   src/boot.c       |    4 ++--
>   src/config.h     |   15 +++++++--------
>   src/coreboot.c   |    7 ++++---
>   src/pci.c        |   14 +++++++++++++-
>   src/pci.h        |    3 ++-
>   src/pciinit.c    |    9 ++++++---
>   src/post.c       |   31 ++++++++++++++++++++-----------
>   src/smbios.c     |    3 +++
>   src/smbios.h     |    2 ++
>   13 files changed, 99 insertions(+), 75 deletions(-)
> ---
>   roms/seabios |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/roms/seabios b/roms/seabios
> index 8e30147..80d11e8 160000
> --- a/roms/seabios
> +++ b/roms/seabios
> @@ -1 +1 @@
> -Subproject commit 8e301472e324b6d6496d8b4ffc66863e99d7a505
> +Subproject commit 80d11e8577bf03e98f2eb1b0cb3a281ab2879c9e

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

* Re: [Qemu-devel] [PATCH] Upgrade to SeaBIOS v1.6.3.1
  2011-11-24 17:39 ` Paolo Bonzini
@ 2011-11-30 13:29   ` Jan Kiszka
  0 siblings, 0 replies; 4+ messages in thread
From: Jan Kiszka @ 2011-11-30 13:29 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Kevin O'Connor, qemu-devel@nongnu.org

On 2011-11-24 18:39, Paolo Bonzini wrote:
> On 11/24/2011 06:38 PM, Kevin O'Connor wrote:
>> Jan Kiszka (2):
>>    Probe HPET existence
>>    Probe PCI existence
> 
> Jan,
> 
> does this mean that isapc will be unbroken in 1.0?  Yay!

At least, there should be no excuse anymore. ;)

Jan

-- 
Siemens AG, Corporate Technology, CT T DE IT 1
Corporate Competence Center Embedded Linux

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

end of thread, other threads:[~2011-11-30 13:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-24 17:38 [Qemu-devel] [PATCH] Upgrade to SeaBIOS v1.6.3.1 Kevin O'Connor
2011-11-24 17:39 ` Paolo Bonzini
2011-11-30 13:29   ` Jan Kiszka
2011-11-28 17:34 ` 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).