All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] make qemu buildable without CONFIG_VT
@ 2006-02-09 15:51 Atsushi Nemoto
  2006-02-09 16:32 ` changing the page properties to cached/uncached Niels Sterrenburg
  2006-02-16 14:40 ` [PATCH] make qemu buildable without CONFIG_VT Ralf Baechle
  0 siblings, 2 replies; 6+ messages in thread
From: Atsushi Nemoto @ 2006-02-09 15:51 UTC (permalink / raw)
  To: linux-mips; +Cc: ralf

Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>

diff --git a/arch/mips/qemu/Makefile b/arch/mips/qemu/Makefile
index 11189fa..5f34a85 100644
--- a/arch/mips/qemu/Makefile
+++ b/arch/mips/qemu/Makefile
@@ -2,4 +2,5 @@
 # Makefile for Qemu specific kernel interface routines under Linux.
 #
 
-obj-y		= q-firmware.o q-int.o q-irq.o q-mem.o q-setup.o q-vga.o
+obj-y		= q-firmware.o q-int.o q-irq.o q-mem.o q-setup.o
+obj-$(CONFIG_VT) = q-vga.o
diff --git a/arch/mips/qemu/q-setup.c b/arch/mips/qemu/q-setup.c
index 32c3d4c..acf0f5b 100644
--- a/arch/mips/qemu/q-setup.c
+++ b/arch/mips/qemu/q-setup.c
@@ -23,6 +23,8 @@ static void __init qemu_timer_setup(stru
 void __init plat_setup(void)
 {
 	set_io_port_base(QEMU_PORT_BASE);
+#ifdef CONFIG_VT
 	qvga_init();
+#endif
 	board_timer_setup = qemu_timer_setup;
 }

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-02-16 16:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-02-09 15:51 [PATCH] make qemu buildable without CONFIG_VT Atsushi Nemoto
2006-02-09 16:32 ` changing the page properties to cached/uncached Niels Sterrenburg
2006-02-10 16:01   ` Alan Cox
2006-02-13  8:40     ` Niels Sterrenburg
2006-02-16 14:40 ` [PATCH] make qemu buildable without CONFIG_VT Ralf Baechle
2006-02-16 16:10   ` Atsushi Nemoto

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.