From: James S. <jsi...@us...> - 2002-04-12 18:08:13
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/video In directory usw-pr-cvs1:/tmp/cvs-serv6258 Modified Files: Config.in Makefile Log Message: Readded dummy console again. For testing purpose and X window handling. Index: Config.in =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/video/Config.in,v retrieving revision 1.59 retrieving revision 1.60 diff -u -d -r1.59 -r1.60 --- Config.in 14 Mar 2002 22:32:23 -0000 1.59 +++ Config.in 12 Apr 2002 18:08:09 -0000 1.60 @@ -260,6 +260,7 @@ if [ "$CONFIG_PCI" = "y" ]; then tristate 'NVIDIA hardware text console' CONFIG_NVIDIA_CONSOLE fi + tristate 'Dummy consolesupport' CONFIG_DUMMY_CONSOLE if [ "$CONFIG_FB" = "y" ]; then bool 'Support for frame buffer console' CONFIG_FRAMEBUFFER_CONSOLE if [ "$CONFIG_FRAMEBUFFER_CONSOLE" = "y" ]; then Index: Makefile =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/video/Makefile,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- Makefile 23 Nov 2001 04:10:15 -0000 1.44 +++ Makefile 12 Apr 2002 18:08:09 -0000 1.45 @@ -22,6 +22,7 @@ obj-$(CONFIG_MDA_CONSOLE) += mdacon.o obj-$(CONFIG_NVIDIA_CONSOLE) += nvvgacon.o obj-$(CONFIG_FRAMEBUFFER_CONSOLE) += fbcon.o +obj-$(CONFIG_DUMMY_CONSOLE) += dummycon.o subdir-$(CONFIG_FONTS) += fonts ifeq ($(CONFIG_FONTS),y) |