From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:51887) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TB4rN-0005xQ-6Z for qemu-devel@nongnu.org; Mon, 10 Sep 2012 10:21:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TB4rI-0002Lo-QL for qemu-devel@nongnu.org; Mon, 10 Sep 2012 10:21:09 -0400 Received: from mx1.redhat.com ([209.132.183.28]:17634) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TB4rI-0002LX-I0 for qemu-devel@nongnu.org; Mon, 10 Sep 2012 10:21:04 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q8AEL39v014141 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 10 Sep 2012 10:21:04 -0400 From: Gerd Hoffmann Date: Mon, 10 Sep 2012 16:20:56 +0200 Message-Id: <1347286860-22918-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 0/4] linux framebuffer display driver List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Undusting an pretty old patch series, rebasing it, testing it, fixing a bug or two, fixing codestyle issues: Qemu can run on the linux framebuffer console as graphical display now. enjoy, Gerd Gerd Hoffmann (4): QLIST-ify display change listeners. add unregister_displaychangelistener fbdev: add linux framebuffer display driver. fbdev: add monitor command to enable/disable console.h | 86 +++-- hmp-commands.hx | 15 + hmp.c | 9 + hmp.h | 1 + hw/xenfb.c | 2 +- qapi-schema.json | 15 + qemu-options.hx | 8 + qmp-commands.hx | 6 + qmp.c | 17 + sysemu.h | 1 + trace-events | 14 + ui/Makefile.objs | 1 + ui/fbdev.c | 953 +++++++++++++++++++++++++++++++++++++++++++++++++++ ui/linux-keynames.h | 388 +++++++++++++++++++++ vl.c | 50 ++- 15 files changed, 1518 insertions(+), 48 deletions(-) create mode 100644 ui/fbdev.c create mode 100644 ui/linux-keynames.h