WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Don't specify VT console structure at all when specifyin

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Don't specify VT console structure at all when specifying
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Thu, 09 Feb 2006 19:22:12 +0000
Delivery-date: Thu, 09 Feb 2006 19:34:52 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID ee9691e23dbe4c7a4e52acde3f7c207ae0659627
# Parent  c63083610678336061b3e96e7a44789023846e79
Don't specify VT console structure at all when specifying
!console_use_vt. The dummy_con just confuses the VT
implementation and you get no console output without manually
specifying a console= boot parameter.

Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>

diff -r c63083610678 -r ee9691e23dbe 
linux-2.6-xen-sparse/arch/i386/kernel/setup-xen.c
--- a/linux-2.6-xen-sparse/arch/i386/kernel/setup-xen.c Thu Feb  9 15:12:48 2006
+++ b/linux-2.6-xen-sparse/arch/i386/kernel/setup-xen.c Thu Feb  9 16:42:51 2006
@@ -1866,13 +1866,6 @@
 #endif
        } else {
                extern int console_use_vt;
-#if defined(CONFIG_VGA_CONSOLE)
-               /* disable VGA driver */
-               ORIG_VIDEO_ISVGA = VIDEO_TYPE_VLFB;
-#endif
-#if defined(CONFIG_DUMMY_CONSOLE)
-               conswitchp = &dummy_con;
-#endif
                console_use_vt = 0;
        }
 }
diff -r c63083610678 -r ee9691e23dbe 
linux-2.6-xen-sparse/arch/x86_64/kernel/setup-xen.c
--- a/linux-2.6-xen-sparse/arch/x86_64/kernel/setup-xen.c       Thu Feb  9 
15:12:48 2006
+++ b/linux-2.6-xen-sparse/arch/x86_64/kernel/setup-xen.c       Thu Feb  9 
16:42:51 2006
@@ -961,13 +961,6 @@
 #endif
                } else {
                        extern int console_use_vt;
-#if defined(CONFIG_VGA_CONSOLE)
-                       /* disable VGA driver */
-                       ORIG_VIDEO_ISVGA = VIDEO_TYPE_VLFB;
-#endif
-#if defined(CONFIG_DUMMY_CONSOLE)
-                       conswitchp = &dummy_con;
-#endif
                        console_use_vt = 0;
                }
        }

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Don't specify VT console structure at all when specifying, Xen patchbot -unstable <=