From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=40763 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ORrFX-00012S-Sb for qemu-devel@nongnu.org; Thu, 24 Jun 2010 14:34:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ORrFW-0006dS-9p for qemu-devel@nongnu.org; Thu, 24 Jun 2010 14:34:07 -0400 Received: from smtp.citrix.com ([66.165.176.89]:56206) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ORrFW-0006Zc-6P for qemu-devel@nongnu.org; Thu, 24 Jun 2010 14:34:06 -0400 Message-ID: <4C23A61F.80609@citrix.com> Date: Thu, 24 Jun 2010 19:38:23 +0100 From: Julian Pidancet MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH 0/5] fbdev display driver + misc bits References: <1276596347-9410-1-git-send-email-kraxel@redhat.com> In-Reply-To: <1276596347-9410-1-git-send-email-kraxel@redhat.com> Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: "qemu-devel@nongnu.org" On 06/15/2010 11:05 AM, Gerd Hoffmann wrote: > 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 > > Have anyone got the time to review this yet ? -- Julian