From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LXVJB-0004gL-Tm for qemu-devel@nongnu.org; Thu, 12 Feb 2009 01:44:25 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LXVJA-0004er-UR for qemu-devel@nongnu.org; Thu, 12 Feb 2009 01:44:25 -0500 Received: from [199.232.76.173] (port=60645 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LXVJA-0004ef-Lg for qemu-devel@nongnu.org; Thu, 12 Feb 2009 01:44:24 -0500 Received: from mx2.redhat.com ([66.187.237.31]:51360) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LXVJA-0002VX-84 for qemu-devel@nongnu.org; Thu, 12 Feb 2009 01:44:24 -0500 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n1C6iLi2007089 for ; Thu, 12 Feb 2009 01:44:23 -0500 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n1C6iMbi013441 for ; Thu, 12 Feb 2009 01:44:22 -0500 Received: from dhcp-1-237.tlv.redhat.com (dhcp-1-237.tlv.redhat.com [10.35.1.237]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n1C6iLtY025010 for ; Thu, 12 Feb 2009 01:44:21 -0500 Date: Thu, 12 Feb 2009 08:41:43 +0200 From: Gleb Natapov Subject: Re: [Qemu-devel] [PATCH] Define a new route for sending data to bios Message-ID: <20090212064143.GF5569@redhat.com> References: <1234421329-8119-1-git-send-email-FOSS@AtlasTechnologiesInc.com> <1234421329-8119-2-git-send-email-FOSS@AtlasTechnologiesInc.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1234421329-8119-2-git-send-email-FOSS@AtlasTechnologiesInc.com> 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 On Thu, Feb 12, 2009 at 01:48:46AM -0500, Cory Fields wrote: > diff --git a/hw/fw_cfg.h b/hw/fw_cfg.h > index ef8f378..a119867 100644 > --- a/hw/fw_cfg.h > +++ b/hw/fw_cfg.h > @@ -8,6 +8,8 @@ > #define FW_CFG_NOGRAPHIC 0x04 > #define FW_CFG_NB_CPUS 0x05 > #define FW_CFG_MACHINE_ID 0x06 > +#define FW_CFG_BIOSPROMPT 0x07 > +#define FW_CFG_QUIETBIOS 0x08 > #define FW_CFG_MAX_ENTRY 0x10 > Are these config parameters relevant to platforms other then x86? > #define FW_CFG_WRITE_CHANNEL 0x4000 > diff --git a/sysemu.h b/sysemu.h > index bc6d5af..14b9aef 100644 > --- a/sysemu.h > +++ b/sysemu.h > @@ -85,6 +85,9 @@ extern int graphic_width; > extern int graphic_height; > extern int graphic_depth; > extern int nographic; > +extern int quietbios; > +extern int biosprompt; > + > extern const char *keyboard_layout; > extern int win2k_install_hack; > extern int rtc_td_hack; > -- > 1.6.0.6 > > -- Gleb.