From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Km1TE-00074H-J0 for qemu-devel@nongnu.org; Sat, 04 Oct 2008 03:22:32 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Km1TD-00073s-Tp for qemu-devel@nongnu.org; Sat, 04 Oct 2008 03:22:32 -0400 Received: from [199.232.76.173] (port=59100 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Km1TD-00073j-Ot for qemu-devel@nongnu.org; Sat, 04 Oct 2008 03:22:31 -0400 Received: from savannah.gnu.org ([199.232.41.3]:51534 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Km1TD-0006tL-Dc for qemu-devel@nongnu.org; Sat, 04 Oct 2008 03:22:31 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1Km1TC-0007Ze-LP for qemu-devel@nongnu.org; Sat, 04 Oct 2008 07:22:30 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1Km1TC-0007Za-7L for qemu-devel@nongnu.org; Sat, 04 Oct 2008 07:22:30 +0000 MIME-Version: 1.0 Errors-To: blueswir1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Blue Swirl Message-Id: Date: Sat, 04 Oct 2008 07:22:30 +0000 Subject: [Qemu-devel] [5414] Move nographic export to sysemu.h 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 Revision: 5414 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5414 Author: blueswir1 Date: 2008-10-04 07:22:29 +0000 (Sat, 04 Oct 2008) Log Message: ----------- Move nographic export to sysemu.h Modified Paths: -------------- trunk/hw/fw_cfg.c trunk/hw/sun4m.c trunk/hw/sun4u.c trunk/sysemu.h Modified: trunk/hw/fw_cfg.c =================================================================== --- trunk/hw/fw_cfg.c 2008-10-04 07:20:07 UTC (rev 5413) +++ trunk/hw/fw_cfg.c 2008-10-04 07:22:29 UTC (rev 5414) @@ -259,7 +259,6 @@ { FWCfgState *s; int io_ctl_memory, io_data_memory; - extern int nographic; s = qemu_mallocz(sizeof(FWCfgState)); if (!s) Modified: trunk/hw/sun4m.c =================================================================== --- trunk/hw/sun4m.c 2008-10-04 07:20:07 UTC (rev 5413) +++ trunk/hw/sun4m.c 2008-10-04 07:22:29 UTC (rev 5414) @@ -175,8 +175,6 @@ return 0; } -extern int nographic; - static void nvram_init(m48t59_t *nvram, uint8_t *macaddr, const char *cmdline, const char *boot_devices, ram_addr_t RAM_size, uint32_t kernel_size, Modified: trunk/hw/sun4u.c =================================================================== --- trunk/hw/sun4u.c 2008-10-04 07:20:07 UTC (rev 5413) +++ trunk/hw/sun4u.c 2008-10-04 07:22:29 UTC (rev 5414) @@ -108,8 +108,6 @@ return 0; } -extern int nographic; - static int sun4u_NVRAM_set_params (m48t59_t *nvram, uint16_t NVRAM_size, const char *arch, ram_addr_t RAM_size, Modified: trunk/sysemu.h =================================================================== --- trunk/sysemu.h 2008-10-04 07:20:07 UTC (rev 5413) +++ trunk/sysemu.h 2008-10-04 07:22:29 UTC (rev 5414) @@ -78,6 +78,7 @@ extern int graphic_width; extern int graphic_height; extern int graphic_depth; +extern int nographic; extern const char *keyboard_layout; extern int win2k_install_hack; extern int alt_grab;