qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [qemu/qemu] e2f82e: console: purge curses bits from conso


From: GitHub
Subject: [Qemu-commits] [qemu/qemu] e2f82e: console: purge curses bits from console.h
Date: Tue, 03 Oct 2017 06:26:24 -0700

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: e2f82e924d057935dd4c61c0c53e11b15762eda2
      
https://github.com/qemu/qemu/commit/e2f82e924d057935dd4c61c0c53e11b15762eda2
  Author: Gerd Hoffmann <address@hidden>
  Date:   2017-09-29 (Fri, 29 Sep 2017)

  Changed paths:
    M include/ui/console.h
    M target/unicore32/helper.c
    M ui/curses.c

  Log Message:
  -----------
  console: purge curses bits from console.h

Handle the translation from vga chars to curses chars in curses_update()
instead of console_write_ch().  Purge any curses support bits from
ui/console.h include file.

Signed-off-by: Gerd Hoffmann <address@hidden>
Message-id: address@hidden


  Commit: 74083f9c01910b1d36ddaca04db468eb326676ae
      
https://github.com/qemu/qemu/commit/74083f9c01910b1d36ddaca04db468eb326676ae
  Author: Gerd Hoffmann <address@hidden>
  Date:   2017-09-29 (Fri, 29 Sep 2017)

  Changed paths:
    M include/ui/egl-helpers.h
    M ui/egl-headless.c
    M ui/egl-helpers.c
    M ui/gtk-egl.c
    M ui/gtk-gl-area.c
    M ui/sdl2-gl.c

  Log Message:
  -----------
  egl: misc framebuffer helper improvements.

Rename the functions to to say "setup" instead of "create" because they
support being called multiple times on the same egl framebuffer.

Properly delete unused textures, update function interfaces to support
this.

Signed-off-by: Gerd Hoffmann <address@hidden>
Message-id: address@hidden


  Commit: f4924974c7c72560f68ab298ac25a525a28a2124
      
https://github.com/qemu/qemu/commit/f4924974c7c72560f68ab298ac25a525a28a2124
  Author: Gerd Hoffmann <address@hidden>
  Date:   2017-09-29 (Fri, 29 Sep 2017)

  Changed paths:
    M hw/input/virtio-input-hid.c
    M include/hw/compat.h
    M include/hw/virtio/virtio-input.h

  Log Message:
  -----------
  virtio-input: send rel-wheel events for wheel buttons

qemu uses wheel-up/down button events for mouse wheel input, however
linux applications typically want REL_WHEEL events.

This fixes wheel with linux guests. Tested with X11/wayland, and
windows virtio-input driver.

Based on a patch from Marc.
Added property to enable/disable wheel axis.

Cc: Marc-André Lureau <address@hidden>
Signed-off-by: Gerd Hoffmann <address@hidden>
Message-id: address@hidden


  Commit: ad6374c43e572e6e53020a97e72e9ea525b08334
      
https://github.com/qemu/qemu/commit/ad6374c43e572e6e53020a97e72e9ea525b08334
  Author: Daniel P. Berrange <address@hidden>
  Date:   2017-09-29 (Fri, 29 Sep 2017)

  Changed paths:
    M ui/trace-events
    M ui/vnc-auth-vencrypt.c
    M ui/vnc-ws.c
    M ui/vnc.c

  Log Message:
  -----------
  ui: add tracing of VNC operations related to QIOChannel

Trace anything which opens/closes/wraps a QIOChannel in the
VNC server.

Signed-off-by: Daniel P. Berrange <address@hidden>
Message-id: address@hidden
Signed-off-by: Gerd Hoffmann <address@hidden>


  Commit: 7364dbdabb7824d5bde1e341bb6d928282f01c83
      
https://github.com/qemu/qemu/commit/7364dbdabb7824d5bde1e341bb6d928282f01c83
  Author: Daniel P. Berrange <address@hidden>
  Date:   2017-09-29 (Fri, 29 Sep 2017)

  Changed paths:
    M ui/trace-events
    M ui/vnc-auth-sasl.c
    M ui/vnc-auth-vencrypt.c
    M ui/vnc.c

  Log Message:
  -----------
  ui: add tracing of VNC authentication process

Trace anything related to authentication in the VNC protocol
handshake

Signed-off-by: Daniel P. Berrange <address@hidden>
Message-id: address@hidden
Signed-off-by: Gerd Hoffmann <address@hidden>


  Commit: 2c94822167672597d870dbeed9ffc95ea2bf93d3
      
https://github.com/qemu/qemu/commit/2c94822167672597d870dbeed9ffc95ea2bf93d3
  Author: Peter Maydell <address@hidden>
  Date:   2017-10-03 (Tue, 03 Oct 2017)

  Changed paths:
    M hw/input/virtio-input-hid.c
    M include/hw/compat.h
    M include/hw/virtio/virtio-input.h
    M include/ui/console.h
    M include/ui/egl-helpers.h
    M target/unicore32/helper.c
    M ui/curses.c
    M ui/egl-headless.c
    M ui/egl-helpers.c
    M ui/gtk-egl.c
    M ui/gtk-gl-area.c
    M ui/sdl2-gl.c
    M ui/trace-events
    M ui/vnc-auth-sasl.c
    M ui/vnc-auth-vencrypt.c
    M ui/vnc-ws.c
    M ui/vnc.c

  Log Message:
  -----------
  Merge remote-tracking branch 'remotes/kraxel/tags/ui-20170929-pull-request' 
into staging

ui and input patches.

# gpg: Signature made Fri 29 Sep 2017 11:21:45 BST
# gpg:                using RSA key 0x4CB6D8EED3E87138
# gpg: Good signature from "Gerd Hoffmann (work) <address@hidden>"
# gpg:                 aka "Gerd Hoffmann <address@hidden>"
# gpg:                 aka "Gerd Hoffmann (private) <address@hidden>"
# Primary key fingerprint: A032 8CFF B93A 17A7 9901  FE7D 4CB6 D8EE D3E8 7138

* remotes/kraxel/tags/ui-20170929-pull-request:
  ui: add tracing of VNC authentication process
  ui: add tracing of VNC operations related to QIOChannel
  virtio-input: send rel-wheel events for wheel buttons
  egl: misc framebuffer helper improvements.
  console: purge curses bits from console.h

Signed-off-by: Peter Maydell <address@hidden>


Compare: https://github.com/qemu/qemu/compare/be9d19975178...2c9482216767

reply via email to

[Prev in Thread] Current Thread [Next in Thread]