[Qemu-devel] [PATCHv2 0/2] curses: Add support for wide output

Samuel Thibault posted 2 patches 6 years, 8 months ago
Test asan passed
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190304210217.7056-1-samuel.thibault@ens-lyon.org
Maintainers: Paolo Bonzini <pbonzini@redhat.com>, Eric Blake <eblake@redhat.com>, Markus Armbruster <armbru@redhat.com>, Gerd Hoffmann <kraxel@redhat.com>
There is a newer version of this series
configure       |  45 ++++++-
qapi/ui.json    |  14 +++
qemu-options.hx |   5 +-
ui/curses.c     | 315 ++++++++++++++++++++++++++++++++++++++++--------
vl.c            |   2 +-
5 files changed, 331 insertions(+), 50 deletions(-)
[Qemu-devel] [PATCHv2 0/2] curses: Add support for wide output
Posted by Samuel Thibault 6 years, 8 months ago
Hello,

This adds support for wide output in the curses frontend

Difference with previous version:
- Add more rationale in commit message
- Move charset option to curses-only section.

Samuel Thibault (2):
  iconv: detect and make curses depend on it
  curses: add option to specify VGA font encoding

 configure       |  45 ++++++-
 qapi/ui.json    |  14 +++
 qemu-options.hx |   5 +-
 ui/curses.c     | 315 ++++++++++++++++++++++++++++++++++++++++--------
 vl.c            |   2 +-
 5 files changed, 331 insertions(+), 50 deletions(-)

-- 
2.20.1


Re: [Qemu-devel] [PATCHv2 0/2] curses: Add support for wide output
Posted by Gerd Hoffmann 6 years, 8 months ago
On Mon, Mar 04, 2019 at 10:02:15PM +0100, Samuel Thibault wrote:
> Hello,
> 
> This adds support for wide output in the curses frontend
> 
> Difference with previous version:
> - Add more rationale in commit message
> - Move charset option to curses-only section.

Added to UI patch queue (the other curses patches too).

thanks,
  Gerd


Re: [Qemu-devel] [PATCHv2 0/2] curses: Add support for wide output
Posted by Samuel Thibault 6 years, 8 months ago
Gerd Hoffmann, le jeu. 07 mars 2019 14:21:12 +0100, a ecrit:
> On Mon, Mar 04, 2019 at 10:02:15PM +0100, Samuel Thibault wrote:
> > This adds support for wide output in the curses frontend
> > 
> > Difference with previous version:
> > - Add more rationale in commit message
> > - Move charset option to curses-only section.
> 
> Added to UI patch queue (the other curses patches too).

Thanks!

Samuel