qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v4 0/9] linux framebuffer display driver
@ 2012-09-19 11:15 Gerd Hoffmann
  2012-09-19 11:15 ` [Qemu-devel] [PATCH 1/9] QLIST-ify display change listeners Gerd Hoffmann
                   ` (8 more replies)
  0 siblings, 9 replies; 26+ messages in thread
From: Gerd Hoffmann @ 2012-09-19 11:15 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Next round of the framebuffer display driver patches, including git
tree for your convinience.

Changes:
  - fix bisectability.
  - Use 'struct Error' to report initialization errors, so we can pass
    up more detailed errors to the monitor.
  - change monitor command names.

Sneak preview: branch rebase/fbdev has patches to switch over spice
to pixman (http://www.kraxel.org/cgit/qemu/log/?h=rebase/fbdev).

cheers,
  Gerd

The following changes since commit 6b80f7db8a7f84d21e46d01e30c8497733bb23a0:

  Merge remote-tracking branch 'kiszka/queues/slirp' into staging (2012-09-17 10:23:20 -0500)

are available in the git repository at:

  git://git.kraxel.org/qemu fbdev.2

Gerd Hoffmann (9):
      QLIST-ify display change listeners.
      add unregister_displaychangelistener
      move set_mouse + cursor_define callbacks
      fbdev: add linux framebuffer display driver.
      fbdev: add monitor command to enable/disable
      fbdev: make configurable at compile time.
      fbdev: move to pixman
      fbdev: add mouse pointer support
      fbdev: add display scaling support

 configure           |   24 ++
 console.c           |    2 +-
 console.h           |  123 ++++--
 hmp-commands.hx     |   15 +
 hmp.c               |    9 +
 hmp.h               |    1 +
 hw/jazz_led.c       |    2 +-
 hw/qxl-render.c     |    2 +-
 hw/vga.c            |   10 +-
 hw/vmware_vga.c     |   11 +-
 hw/xenfb.c          |    2 +-
 qapi-schema.json    |   13 +
 qemu-options.hx     |    8 +
 qmp-commands.hx     |    6 +
 qmp.c               |   19 +
 sysemu.h            |    1 +
 trace-events        |   15 +
 ui/Makefile.objs    |    1 +
 ui/fbdev.c          | 1143 +++++++++++++++++++++++++++++++++++++++++++++++++++
 ui/linux-keynames.h |  388 +++++++++++++++++
 ui/sdl.c            |    8 +-
 ui/spice-display.c  |    4 +-
 ui/vnc.c            |    8 +-
 vl.c                |   57 ++-
 24 files changed, 1798 insertions(+), 74 deletions(-)
 create mode 100644 ui/fbdev.c
 create mode 100644 ui/linux-keynames.h

^ permalink raw reply	[flat|nested] 26+ messages in thread
* [Qemu-devel] [PULL 0/9] linux framebuffer display driver
@ 2012-09-18  7:17 Gerd Hoffmann
  2012-09-18  7:17 ` [Qemu-devel] [PATCH 2/9] add unregister_displaychangelistener Gerd Hoffmann
  0 siblings, 1 reply; 26+ messages in thread
From: Gerd Hoffmann @ 2012-09-18  7:17 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Third round of the framebuffer display driver patches, including git
tree for pull as I think it's ready now.

Changes:  Addressed review comments from Markus.  Catch a few more fatal
signals, especially SIGABRT, so fbdev restores your console when qemu
runs into an assert().  Misc little tweaks, no major changes.

cheers,
  Gerd

The following changes since commit 6b80f7db8a7f84d21e46d01e30c8497733bb23a0:

  Merge remote-tracking branch 'kiszka/queues/slirp' into staging (2012-09-17 10:23:20 -0500)

are available in the git repository at:

  git://git.kraxel.org/qemu fbdev.1

Gerd Hoffmann (9):
      QLIST-ify display change listeners.
      add unregister_displaychangelistener
      move set_mouse + cursor_define callbacks
      fbdev: add linux framebuffer display driver.
      fbdev: add monitor command to enable/disable
      fbdev: make configurable at compile time.
      fbdev: move to pixman
      fbdev: add mouse pointer support
      fbdev: add display scaling support

 configure           |   24 ++
 console.c           |    2 +-
 console.h           |  123 ++++--
 hmp-commands.hx     |   15 +
 hmp.c               |    9 +
 hmp.h               |    1 +
 hw/jazz_led.c       |    2 +-
 hw/qxl-render.c     |    2 +-
 hw/vga.c            |   10 +-
 hw/vmware_vga.c     |   11 +-
 hw/xenfb.c          |    2 +-
 qapi-schema.json    |   14 +
 qemu-options.hx     |    8 +
 qmp-commands.hx     |    6 +
 qmp.c               |   17 +
 sysemu.h            |    1 +
 trace-events        |   15 +
 ui/Makefile.objs    |    1 +
 ui/fbdev.c          | 1142 +++++++++++++++++++++++++++++++++++++++++++++++++++
 ui/linux-keynames.h |  388 +++++++++++++++++
 ui/sdl.c            |    8 +-
 ui/spice-display.c  |    4 +-
 ui/vnc.c            |    8 +-
 vl.c                |   50 ++-
 24 files changed, 1789 insertions(+), 74 deletions(-)
 create mode 100644 ui/fbdev.c
 create mode 100644 ui/linux-keynames.h

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

end of thread, other threads:[~2012-09-24 13:09 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-19 11:15 [Qemu-devel] [PATCH v4 0/9] linux framebuffer display driver Gerd Hoffmann
2012-09-19 11:15 ` [Qemu-devel] [PATCH 1/9] QLIST-ify display change listeners Gerd Hoffmann
2012-09-19 11:15 ` [Qemu-devel] [PATCH 2/9] add unregister_displaychangelistener Gerd Hoffmann
2012-09-19 11:15 ` [Qemu-devel] [PATCH 3/9] move set_mouse + cursor_define callbacks Gerd Hoffmann
2012-09-19 11:15 ` [Qemu-devel] [PATCH 4/9] fbdev: add linux framebuffer display driver Gerd Hoffmann
2012-09-19 18:09   ` Stefano Stabellini
2012-09-21 12:28     ` Gerd Hoffmann
2012-09-24 11:06       ` Stefano Stabellini
2012-09-24 13:09         ` Gerd Hoffmann
2012-09-19 11:15 ` [Qemu-devel] [PATCH 5/9] fbdev: add monitor command to enable/disable Gerd Hoffmann
2012-09-19 11:15 ` [Qemu-devel] [PATCH 6/9] fbdev: make configurable at compile time Gerd Hoffmann
2012-09-19 11:15 ` [Qemu-devel] [PATCH 7/9] fbdev: move to pixman Gerd Hoffmann
2012-09-19 18:10   ` Stefano Stabellini
2012-09-20  6:16     ` Gerd Hoffmann
2012-09-20 11:33       ` Stefano Stabellini
2012-09-20 13:51         ` Gerd Hoffmann
2012-09-20 15:20           ` Stefano Stabellini
2012-09-20 15:27             ` Gerd Hoffmann
2012-09-20 15:28               ` Stefano Stabellini
2012-09-20 15:33                 ` Stefano Stabellini
2012-09-21  5:40                   ` Gerd Hoffmann
2012-09-21 10:48                     ` Stefano Stabellini
2012-09-19 11:15 ` [Qemu-devel] [PATCH 8/9] fbdev: add mouse pointer support Gerd Hoffmann
2012-09-19 11:15 ` [Qemu-devel] [PATCH 9/9] fbdev: add display scaling support Gerd Hoffmann
  -- strict thread matches above, loose matches on Subject: below --
2012-09-18  7:17 [Qemu-devel] [PULL 0/9] linux framebuffer display driver Gerd Hoffmann
2012-09-18  7:17 ` [Qemu-devel] [PATCH 2/9] add unregister_displaychangelistener Gerd Hoffmann
2012-09-18 10:54   ` Stefano Stabellini

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