mariodebian wrote:
> Hi all.
>
> I'm a openchrome user since many years, with my old laptop, Acer Aspire
> 1355LM, and some thin clients like eTC3800.
>
> Laptop and thin clients has VIA KM400 CLE266 VGA graphic chipset and
> works ok except I can change to VT, and I can't see shutdown process
> with a black screen.
>
> Searching in Openchrome TRAC I found ticket #29 (3 years old) with a
> small patch that fixes this issue:
>
> http://openchrome.org/trac/ticket/29
>
> I have opened a bug in Debian to apply this bug and mantainer tell me to
> ask developers why is not upstream applied.
>
Does the patch actually fix the issue for you ?
The patch attached to the bug obviously doesn't apply anymore. I'm
attaching an updated one. Please report if it helps or not.
Regards,
Xavier
Index: src/via_mode.c
===================================================================
--- src/via_mode.c (revision 594)
+++ src/via_mode.c (working copy)
@@ -1404,10 +1404,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