From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LCbwI-00058W-RV for qemu-devel@nongnu.org; Tue, 16 Dec 2008 10:34:26 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LCbwG-00057S-Qn for qemu-devel@nongnu.org; Tue, 16 Dec 2008 10:34:26 -0500 Received: from [199.232.76.173] (port=36062 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LCbwG-00057N-NO for qemu-devel@nongnu.org; Tue, 16 Dec 2008 10:34:24 -0500 Received: from fmmailgate02.web.de ([217.72.192.227]:38195) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LCbwG-0004ve-83 for qemu-devel@nongnu.org; Tue, 16 Dec 2008 10:34:24 -0500 Received: from smtp05.web.de (fmsmtp05.dlan.cinetic.de [172.20.4.166]) by fmmailgate02.web.de (Postfix) with ESMTP id 7C288F7B9999 for ; Tue, 16 Dec 2008 16:34:21 +0100 (CET) Received: from [91.18.110.44] (helo=[10.0.1.1]) by smtp05.web.de with asmtp (TLSv1:AES128-SHA:128) (WEB.DE 4.109 #226) id 1LCbwD-00008U-00 for qemu-devel@nongnu.org; Tue, 16 Dec 2008 16:34:21 +0100 Message-Id: <12CAF773-0D77-44BF-8C47-B714BFAB8D1B@web.de> From: =?ISO-8859-1?Q?Andreas_F=E4rber?= In-Reply-To: <1229440810-12394-4-git-send-email-Laurent.Vivier@bull.net> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Re: [Qemu-devel] [PATCH 3/3] [QEMU] Add BIOS splash image Date: Tue, 16 Dec 2008 16:33:59 +0100 References: <1229440810-12394-1-git-send-email-Laurent.Vivier@bull.net> <1229440810-12394-2-git-send-email-Laurent.Vivier@bull.net> <1229440810-12394-3-git-send-email-Laurent.Vivier@bull.net> <1229440810-12394-4-git-send-email-Laurent.Vivier@bull.net> Sender: andreas.faerber@web.de Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Am 16.12.2008 um 16:20 schrieb Laurent Vivier: > This patch adds to qemu the function needed to display a splash > image under > BIOS control through the firmware control device. > > It adds a "-splash" option allowing to specify the picture file name > (a .PNG) > to display. You can enable/disable a fade in, fade out and the > bootmenu. The > time to display the image can be also given (in seconds). > > Signed-off-by: Laurent Vivier > --- > qemu/Makefile.target | 2 +- > qemu/configure | 19 +++ > qemu/hw/bootmenu_pixmap.h | 231 +++++++++++++++++++++++++++++++++++++ > qemu/hw/fw_cfg.h | 1 + > qemu/hw/pc.c | 276 ++++++++++++++++++++++++++++++++++++ > ++++++++- > qemu/sysemu.h | 1 + > qemu/vl.c | 19 +++ > 7 files changed, 545 insertions(+), 4 deletions(-) This is lacking documentation. Andreas