diff options
author | Francois Pons <fpons@mandriva.com> | 2001-09-13 14:15:49 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-09-13 14:15:49 +0000 |
commit | 90b998d0718fa02f1fc4b33e42cbe8fcec06e5a5 (patch) | |
tree | 7207065b8e6b36c9455deb48f1c208783a9eb4ef /perl-install | |
parent | c65fb27de51658ab9cfe630cc7715d8fc40f80f9 (diff) | |
download | drakx-backup-do-not-use-90b998d0718fa02f1fc4b33e42cbe8fcec06e5a5.tar drakx-backup-do-not-use-90b998d0718fa02f1fc4b33e42cbe8fcec06e5a5.tar.gz drakx-backup-do-not-use-90b998d0718fa02f1fc4b33e42cbe8fcec06e5a5.tar.bz2 drakx-backup-do-not-use-90b998d0718fa02f1fc4b33e42cbe8fcec06e5a5.tar.xz drakx-backup-do-not-use-90b998d0718fa02f1fc4b33e42cbe8fcec06e5a5.zip |
updated Rage Mobility regexp for bad_card, added bad_card for XF4 as Tseng ET6\d00.
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/Xconfigurator.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 45027f0a6..8da7528eb 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -563,8 +563,8 @@ sub testFinalConfig { #- needed for bad cards not restoring cleanly framebuffer, according to which version of XFree are used. my $bad_card = ($o->{card}{use_xf4} ? - $o->{card}{identifier} =~ /Matrox|SiS.*SG86C2.5|SiS.*559[78]|SiS.*300|SiS.*540|SiS.*6C?326|SiS.*6C?236/ : - $o->{card}{identifier} =~ /i740|ViRGE|Rage Mobility (?:P\/M|L) |3D Rage LT/); + $o->{card}{identifier} =~ /Matrox|SiS.*SG86C2.5|SiS.*559[78]|SiS.*300|SiS.*540|SiS.*6C?326|SiS.*6C?236|Tseng.*ET6\d00/ : + $o->{card}{identifier} =~ /i740|ViRGE|Rage Mobility [PL]|3D Rage LT/); log::l("the graphic card does not like X in framebuffer") if $bad_card; my $verybad_card = $o->{card}{driver} eq 'i810'; |