qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/21] Machine Core queue, 2016-05-20
@ 2016-05-20 20:28 Eduardo Habkost
  2016-05-20 20:28 ` [Qemu-devel] [PULL 01/21] pc-dimm: correct comment of MemoryHotplugState Eduardo Habkost
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: Eduardo Habkost @ 2016-05-20 20:28 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Paolo Bonzini, Michael S. Tsirkin, Marcel Apfelbaum, qemu-devel

The following changes since commit 65603e2fc18b48e6e55a3dd693669413141694ec:

  tci: do not include exec/exec-all.h (2016-05-20 15:07:46 +0100)

are available in the git repository at:

  git://github.com/ehabkost/qemu.git tags/machine-pull-request

for you to fetch changes up to e8f2d2722eb84a809697e82c762d39c8c13f22f6:

  Use &error_fatal when initializing crypto on qemu-{img,io,nbd} (2016-05-20 14:28:55 -0300)

----------------------------------------------------------------
Machine Core queue, 2016-05-20

----------------------------------------------------------------

Cao jin (1):
  pc-dimm: correct comment of MemoryHotplugState

Eduardo Habkost (19):
  vl: Use exit(1) when requested VGA interface is unavailable
  vl: Table-based select_vgahw()
  vl: Replace *_vga_available() functions with class_names field
  vl: Add DT_COCOA DisplayType value
  vnc: Initialization stubs
  curses: curses_display_init() stub
  sdl: Initialization stubs
  cocoa: cocoa_display_init() stub
  gtk: Initialization stubs
  spice: Initialization stubs on qemu-spice.h
  milkymist: Move DT_NOGRAPHIC check outside milkymist_tmu2_create()
  vl: Replace DT_NOGRAPHIC with machine option
  vl: Make display_type a local variable
  vl: Move DisplayType typedef to vl.c
  vl: Make display_remote a local variable
  vl: Simplify global property registration
  vl: Use &error_fatal when parsing VNC options
  vl: Use &error_fatal when parsing monitor options
  Use &error_fatal when initializing crypto on qemu-{img,io,nbd}

Igor Mammedov (1):
  machine: add properties to compat_props incrementaly

 hw/arm/virt.c              |   4 -
 hw/core/machine.c          |  31 +++++
 hw/i386/pc_piix.c          |  13 --
 hw/lm32/milkymist-hw.h     |   4 -
 hw/lm32/milkymist.c        |   4 +-
 hw/nvram/fw_cfg.c          |   6 +-
 hw/ppc/spapr.c             |   4 -
 hw/s390x/s390-virtio-ccw.c |   1 -
 hw/sparc/sun4m.c           |   2 +-
 include/hw/boards.h        |  12 +-
 include/hw/i386/pc.h       |   9 --
 include/hw/mem/pc-dimm.h   |   4 +-
 include/sysemu/sysemu.h    |  12 +-
 include/ui/console.h       |  71 ++++++++++-
 include/ui/qemu-spice.h    |  13 ++
 qemu-img.c                 |   5 +-
 qemu-io.c                  |   5 +-
 qemu-nbd.c                 |   5 +-
 vl.c                       | 290 +++++++++++++++++++--------------------------
 19 files changed, 257 insertions(+), 238 deletions(-)

-- 
2.5.5

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

end of thread, other threads:[~2016-05-23 10:27 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-20 20:28 [Qemu-devel] [PULL 00/21] Machine Core queue, 2016-05-20 Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 01/21] pc-dimm: correct comment of MemoryHotplugState Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 02/21] vl: Use exit(1) when requested VGA interface is unavailable Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 03/21] vl: Table-based select_vgahw() Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 04/21] vl: Replace *_vga_available() functions with class_names field Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 05/21] vl: Add DT_COCOA DisplayType value Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 06/21] vnc: Initialization stubs Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 07/21] curses: curses_display_init() stub Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 08/21] sdl: Initialization stubs Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 09/21] cocoa: cocoa_display_init() stub Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 10/21] gtk: Initialization stubs Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 11/21] spice: Initialization stubs on qemu-spice.h Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 12/21] milkymist: Move DT_NOGRAPHIC check outside milkymist_tmu2_create() Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 13/21] vl: Replace DT_NOGRAPHIC with machine option Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 14/21] vl: Make display_type a local variable Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 15/21] vl: Move DisplayType typedef to vl.c Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 16/21] vl: Make display_remote a local variable Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 17/21] vl: Simplify global property registration Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 18/21] machine: add properties to compat_props incrementaly Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 19/21] vl: Use &error_fatal when parsing VNC options Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 20/21] vl: Use &error_fatal when parsing monitor options Eduardo Habkost
2016-05-20 20:28 ` [Qemu-devel] [PULL 21/21] Use &error_fatal when initializing crypto on qemu-{img, io, nbd} Eduardo Habkost
2016-05-23 10:27 ` [Qemu-devel] [PULL 00/21] Machine Core queue, 2016-05-20 Peter Maydell

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).