Patrick Schoenfeld wrote:
2) With this driver it is impossible to switch between the Xorg VT and
another VT. The screen of another VT simply stays blank. I've seen there
is a bug report open for this and a possible patch (which is not
applieable to trunk currently) - any proceeding?
If you are refering to bug 29
http://www.openchrome.org/trac/ticket/29
Here's a new patch that applies to trunk. Let's us know if it helps with
your pb.
Regards,
Xavier
Index: src/via_mode.c
===================================================================
--- src/via_mode.c (revision 491)
+++ src/via_mode.c (working copy)
@@ -2026,10 +1413,13 @@
#endif
/* Enable LCD */
- if (On)
+ if (On) {
+ pBIOSInfo->LCDPower(pScrn, TRUE);
ViaCrtcMask(hwp, 0x6A, 0x08, 0x08);
- else
+ } else {
+ pBIOSInfo->LCDPower(pScrn, FALSE);
ViaCrtcMask(hwp, 0x6A, 0x00, 0x08);
+ }
/* Find Panel Size Index for PowerSeq Table */
if (pVia->Chipset == VIA_CLE266) {
_______________________________________________
openchrome-users mailing list
[email protected]
http://wiki.openchrome.org/mailman/listinfo/openchrome-users
Main page:
http://www.openchrome.org
Wiki:
http://wiki.openchrome.org
User Forum:
http://wiki.openchrome.org/tikiwiki/tiki-view_forum.php?forumId=1