From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=47286 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OOT1o-0003ln-6C for qemu-devel@nongnu.org; Tue, 15 Jun 2010 06:05:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OOT1m-0003Fi-U7 for qemu-devel@nongnu.org; Tue, 15 Jun 2010 06:05:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:8111) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OOT1m-0003FG-Fo for qemu-devel@nongnu.org; Tue, 15 Jun 2010 06:05:54 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o5FA5rjB030887 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 15 Jun 2010 06:05:53 -0400 From: Gerd Hoffmann Date: Tue, 15 Jun 2010 12:05:42 +0200 Message-Id: <1276596347-9410-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 0/5] fbdev display driver + misc bits List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, This patch series features the linux fbdev display driver and a few more patches the fbdev driver depends on. Most of the patches have been on the list before. If you wondered what they are good for -- here is the big picture ;) As usual the individual patches carry more verbose descriptions. cheers, Gerd Gerd Hoffmann (5): QLIST-ify display change listeners. add unregister_displaychangelistener Fix and simplify gui timer logic. add pflib: PixelFormat conversion library. linux fbdev display driver. Makefile.objs | 2 + console.h | 82 +++-- fbdev.c | 931 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ hw/xenfb.c | 2 +- linux-keynames.h | 386 ++++++++++++++++++++++ monitor.c | 14 + pflib.c | 213 +++++++++++++ pflib.h | 20 ++ qemu-options.hx | 10 + sysemu.h | 1 + vl.c | 55 ++-- 11 files changed, 1648 insertions(+), 68 deletions(-) create mode 100644 fbdev.c create mode 100644 linux-keynames.h create mode 100644 pflib.c create mode 100644 pflib.h