[Qemu-devel] [PULL 0/8] Ui 20180125 patches

Gerd Hoffmann posted 8 patches 6 years, 2 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180125143218.29528-1-kraxel@redhat.com
Test checkpatch passed
Test docker-build@min-glib passed
Test docker-mingw@fedora passed
Test docker-quick@centos6 passed
Test ppc passed
Test s390x passed
configure               |   6 ++
Makefile                |   8 ++
include/sysemu/sysemu.h |   1 +
include/ui/console.h    |   5 +-
include/ui/input.h      |  24 +++++
ui/sdl2-keymap.h        | 267 ------------------------------------------------
ui/vnc.h                |   4 +-
ui/x_keymap.h           |   8 +-
ui/gtk.c                | 220 ++++++++++++++++++++++++---------------
ui/input-keymap.c       |   8 ++
ui/sdl.c                | 145 +++++++++-----------------
ui/sdl2-input.c         |  16 ++-
ui/sdl2.c               |  34 +++---
ui/vnc.c                |   9 ++
ui/x_keymap.c           | 250 +++++++++++++++++----------------------------
vl.c                    |   4 +-
qemu-doc.texi           |   7 ++
ui/Makefile.objs        |   5 +-
ui/trace-events         |   9 +-
19 files changed, 389 insertions(+), 641 deletions(-)
delete mode 100644 ui/sdl2-keymap.h
[Qemu-devel] [PULL 0/8] Ui 20180125 patches
Posted by Gerd Hoffmann 6 years, 2 months ago
The following changes since commit 834a336eb911db8a8ca00e760ee6a85faca19414:

  Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging (2018-01-24 19:24:26 +0000)

are available in the git repository at:

  git://git.kraxel.org/qemu tags/ui-20180125-pull-request

for you to fetch changes up to 04ff1a398a8d6e912eceaca9b62af0a09e927d63:

  sdl: reorganize -no-frame support (2018-01-25 15:22:28 +0100)

----------------------------------------------------------------
ui: convert to keycodedb, fix sign extension
sdl: cleanups, deprecate sdl 1.2

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

Daniel P. Berrange (6):
  ui: avoid sign extension using client width/height
  ui: convert the SDL2 frontend to keycodemapdb
  ui: convert GTK and SDL1 frontends to keycodemapdb
  ui: add fix for GTK Pause key handling on Win32
  ui: ignore hardware keycode 255 on win32
  ui: deprecate use of SDL 1.2 in favour of 2.0 series

Gerd Hoffmann (2):
  sdl: use ctrl-alt-g as grab hotkey
  sdl: reorganize -no-frame support

 configure               |   6 ++
 Makefile                |   8 ++
 include/sysemu/sysemu.h |   1 +
 include/ui/console.h    |   5 +-
 include/ui/input.h      |  24 +++++
 ui/sdl2-keymap.h        | 267 ------------------------------------------------
 ui/vnc.h                |   4 +-
 ui/x_keymap.h           |   8 +-
 ui/gtk.c                | 220 ++++++++++++++++++++++++---------------
 ui/input-keymap.c       |   8 ++
 ui/sdl.c                | 145 +++++++++-----------------
 ui/sdl2-input.c         |  16 ++-
 ui/sdl2.c               |  34 +++---
 ui/vnc.c                |   9 ++
 ui/x_keymap.c           | 250 +++++++++++++++++----------------------------
 vl.c                    |   4 +-
 qemu-doc.texi           |   7 ++
 ui/Makefile.objs        |   5 +-
 ui/trace-events         |   9 +-
 19 files changed, 389 insertions(+), 641 deletions(-)
 delete mode 100644 ui/sdl2-keymap.h

-- 
2.9.3


Re: [Qemu-devel] [PULL 0/8] Ui 20180125 patches
Posted by Peter Maydell 6 years, 2 months ago
On 25 January 2018 at 14:32, Gerd Hoffmann <kraxel@redhat.com> wrote:
> The following changes since commit 834a336eb911db8a8ca00e760ee6a85faca19414:
>
>   Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging (2018-01-24 19:24:26 +0000)
>
> are available in the git repository at:
>
>   git://git.kraxel.org/qemu tags/ui-20180125-pull-request
>
> for you to fetch changes up to 04ff1a398a8d6e912eceaca9b62af0a09e927d63:
>
>   sdl: reorganize -no-frame support (2018-01-25 15:22:28 +0100)
>
> ----------------------------------------------------------------
> ui: convert to keycodedb, fix sign extension
> sdl: cleanups, deprecate sdl 1.2
>
> ----------------------------------------------------------------
>
> Daniel P. Berrange (6):
>   ui: avoid sign extension using client width/height
>   ui: convert the SDL2 frontend to keycodemapdb
>   ui: convert GTK and SDL1 frontends to keycodemapdb
>   ui: add fix for GTK Pause key handling on Win32
>   ui: ignore hardware keycode 255 on win32
>   ui: deprecate use of SDL 1.2 in favour of 2.0 series
>
> Gerd Hoffmann (2):
>   sdl: use ctrl-alt-g as grab hotkey
>   sdl: reorganize -no-frame support

Applied, thanks (and updated my buildtest machines to have SDL2
where necessary to avoid the configure warning).

thanks
-- PMM