All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 0/3] seabios: update from 1.9.1 to 1.9.3
@ 2016-07-04 11:43 Gerd Hoffmann
  2016-07-04 11:43 ` [Qemu-devel] [PULL v2 1/3] seabios: update submodule " Gerd Hoffmann
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Gerd Hoffmann @ 2016-07-04 11:43 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Here comes the seabios update for qemu 2.7.  No big changes, it is a
stable branch update with only four patches (patch #1 comes with a
shortlog).  Also updated the 128k config to keep the size below
the limit.

v2: drop bios-fast.bin patch, also remove the binary from patch #3.

please pull,
  Gerd

The following changes since commit 96b39d8327883094f52b0a3d3f25dba83d6d1d63:

  Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (2016-07-01 19:29:27 +0100)

are available in the git repository at:


  git://git.kraxel.org/qemu tags/pull-seabios-20160704-2

for you to fetch changes up to ffaacc827f7a37a64f1e2cc17f78460d9fa1650f:

  seabios: update binaries from 1.9.1 to 1.9.3 (2016-07-04 13:39:42 +0200)

----------------------------------------------------------------
seabios: update from 1.9.1 to 1.9.3

----------------------------------------------------------------
Gerd Hoffmann (3):
      seabios: update submodule from 1.9.1 to 1.9.3
      seabios: update 128k config
      seabios: update binaries from 1.9.1 to 1.9.3

 pc-bios/bios-256k.bin    | Bin 262144 -> 262144 bytes
 pc-bios/bios.bin         | Bin 131072 -> 131072 bytes
 roms/config.seabios-128k |   2 ++
 roms/seabios             |   2 +-
 4 files changed, 3 insertions(+), 1 deletion(-)

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

* [Qemu-devel] [PULL v2 1/3] seabios: update submodule from 1.9.1 to 1.9.3
  2016-07-04 11:43 [Qemu-devel] [PULL v2 0/3] seabios: update from 1.9.1 to 1.9.3 Gerd Hoffmann
@ 2016-07-04 11:43 ` Gerd Hoffmann
  2016-07-04 11:43 ` [Qemu-devel] [PULL v2 2/3] seabios: update 128k config Gerd Hoffmann
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Gerd Hoffmann @ 2016-07-04 11:43 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

git shortlog
============

Alex Williamson (1):
      fw/pci: Add support for mapping Intel IGD via QEMU

Haozhong Zhang (1):
      fw/msr_feature_control: add support to set MSR_IA32_FEATURE_CONTROL

Kevin O'Connor (1):
      build: fix .text section address alignment

Marcel Apfelbaum (1):
      fw/pci: add Q35 S3 support

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 roms/seabios | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/roms/seabios b/roms/seabios
index b3ef39f..e2fc41e 160000
--- a/roms/seabios
+++ b/roms/seabios
@@ -1 +1 @@
-Subproject commit b3ef39f532db52bf17457ba931da758eeb38d6b4
+Subproject commit e2fc41e24ee0ada60fc511d60b15a41b294538be
-- 
1.8.3.1

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

* [Qemu-devel] [PULL v2 2/3] seabios: update 128k config
  2016-07-04 11:43 [Qemu-devel] [PULL v2 0/3] seabios: update from 1.9.1 to 1.9.3 Gerd Hoffmann
  2016-07-04 11:43 ` [Qemu-devel] [PULL v2 1/3] seabios: update submodule " Gerd Hoffmann
@ 2016-07-04 11:43 ` Gerd Hoffmann
  2016-07-04 11:43 ` [Qemu-devel] [PULL v2 3/3] seabios: update binaries from 1.9.1 to 1.9.3 Gerd Hoffmann
  2016-07-04 13:32 ` [Qemu-devel] [PULL v2 0/3] seabios: update " Peter Maydell
  3 siblings, 0 replies; 5+ messages in thread
From: Gerd Hoffmann @ 2016-07-04 11:43 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

Turn off mpt-scsi and bootsplash to keep size below 128k.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 roms/config.seabios-128k | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/roms/config.seabios-128k b/roms/config.seabios-128k
index 0a9da77..93203af 100644
--- a/roms/config.seabios-128k
+++ b/roms/config.seabios-128k
@@ -2,9 +2,11 @@
 # need to turn off features (xhci,uas) to make it fit into 128k
 CONFIG_QEMU=y
 CONFIG_ROM_SIZE=128
+CONFIG_BOOTSPLASH=n
 CONFIG_XEN=n
 CONFIG_USB_OHCI=n
 CONFIG_USB_XHCI=n
 CONFIG_USB_UAS=n
 CONFIG_SDCARD=n
 CONFIG_TCGBIOS=n
+CONFIG_MPT_SCSI=n
-- 
1.8.3.1

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

* [Qemu-devel] [PULL v2 3/3] seabios: update binaries from 1.9.1 to 1.9.3
  2016-07-04 11:43 [Qemu-devel] [PULL v2 0/3] seabios: update from 1.9.1 to 1.9.3 Gerd Hoffmann
  2016-07-04 11:43 ` [Qemu-devel] [PULL v2 1/3] seabios: update submodule " Gerd Hoffmann
  2016-07-04 11:43 ` [Qemu-devel] [PULL v2 2/3] seabios: update 128k config Gerd Hoffmann
@ 2016-07-04 11:43 ` Gerd Hoffmann
  2016-07-04 13:32 ` [Qemu-devel] [PULL v2 0/3] seabios: update " Peter Maydell
  3 siblings, 0 replies; 5+ messages in thread
From: Gerd Hoffmann @ 2016-07-04 11:43 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 pc-bios/bios-256k.bin | Bin 262144 -> 262144 bytes
 pc-bios/bios.bin      | Bin 131072 -> 131072 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/pc-bios/bios-256k.bin b/pc-bios/bios-256k.bin
index e7a7e72..57fb4d8 100644
Binary files a/pc-bios/bios-256k.bin and b/pc-bios/bios-256k.bin differ
diff --git a/pc-bios/bios.bin b/pc-bios/bios.bin
index b0ae502..8a6869f 100644
Binary files a/pc-bios/bios.bin and b/pc-bios/bios.bin differ
-- 
1.8.3.1

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

* Re: [Qemu-devel] [PULL v2 0/3] seabios: update from 1.9.1 to 1.9.3
  2016-07-04 11:43 [Qemu-devel] [PULL v2 0/3] seabios: update from 1.9.1 to 1.9.3 Gerd Hoffmann
                   ` (2 preceding siblings ...)
  2016-07-04 11:43 ` [Qemu-devel] [PULL v2 3/3] seabios: update binaries from 1.9.1 to 1.9.3 Gerd Hoffmann
@ 2016-07-04 13:32 ` Peter Maydell
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2016-07-04 13:32 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: QEMU Developers

On 4 July 2016 at 12:43, Gerd Hoffmann <kraxel@redhat.com> wrote:
>   Hi,
>
> Here comes the seabios update for qemu 2.7.  No big changes, it is a
> stable branch update with only four patches (patch #1 comes with a
> shortlog).  Also updated the 128k config to keep the size below
> the limit.
>
> v2: drop bios-fast.bin patch, also remove the binary from patch #3.

Hi. I'm afraid I just merged v1 rather than v2 -- didn't see
your follow up mail until after I'd pushed it. Can you send
something that fixes up master to the right state, please?

Sorry for the inconvenience.

-- PMM

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

end of thread, other threads:[~2016-07-04 13:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-04 11:43 [Qemu-devel] [PULL v2 0/3] seabios: update from 1.9.1 to 1.9.3 Gerd Hoffmann
2016-07-04 11:43 ` [Qemu-devel] [PULL v2 1/3] seabios: update submodule " Gerd Hoffmann
2016-07-04 11:43 ` [Qemu-devel] [PULL v2 2/3] seabios: update 128k config Gerd Hoffmann
2016-07-04 11:43 ` [Qemu-devel] [PULL v2 3/3] seabios: update binaries from 1.9.1 to 1.9.3 Gerd Hoffmann
2016-07-04 13:32 ` [Qemu-devel] [PULL v2 0/3] seabios: update " Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.