summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfigurator.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2000-09-26 12:26:49 +0000
committerFrancois Pons <fpons@mandriva.com>2000-09-26 12:26:49 +0000
commit77a5a06c830cef706404b51b1ec482602d6da13a (patch)
tree9b3a46dfa361d78931174cc58858473b335f11ed /perl-install/Xconfigurator.pm
parentfa432c7cee366d7081c822a800618368b20e9901 (diff)
downloaddrakx-backup-do-not-use-77a5a06c830cef706404b51b1ec482602d6da13a.tar
drakx-backup-do-not-use-77a5a06c830cef706404b51b1ec482602d6da13a.tar.gz
drakx-backup-do-not-use-77a5a06c830cef706404b51b1ec482602d6da13a.tar.bz2
drakx-backup-do-not-use-77a5a06c830cef706404b51b1ec482602d6da13a.tar.xz
drakx-backup-do-not-use-77a5a06c830cef706404b51b1ec482602d6da13a.zip
*** empty log message ***
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r--perl-install/Xconfigurator.pm12
1 files changed, 8 insertions, 4 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm
index f8ad163f0..e24b8ebba 100644
--- a/perl-install/Xconfigurator.pm
+++ b/perl-install/Xconfigurator.pm
@@ -187,7 +187,9 @@ sub cardConfiguration(;$$$) {
#- 3D acceleration configuration for XFree 3.3 using Utah-GLX.
$card->{Utah_glx} = ($card->{identifier} =~ /Matrox.* G[24]00/ || #- 8bpp does not work.
- $card->{identifier} =~ /3D Rage Pro AGP/); #- by default only such card are supported, with AGP ?
+ $card->{identifier} =~ /Rage X[CL]/ ||
+ $card->{identifier} =~ /Rage Mobility (?:P\/M|L) / ||
+ $card->{identifier} =~ /3D Rage (?:LT|Pro)/);
#- NOT WORKING $card->{type} =~ /Intel 810/);
#- 3D acceleration configuration for XFree 3.3 using Utah-GLX but EXPERIMENTAL that may freeze the machine (FOR INFO NOT USED).
$card->{Utah_glx_EXPERIMENTAL} = ($card->{type} =~ /RIVA TNT/ || #- all RIVA/GeForce comes from NVIDIA and may freeze (gltron).
@@ -199,8 +201,8 @@ sub cardConfiguration(;$$$) {
#- 3D acceleration configuration for XFree 4.0 using DRI.
$card->{DRI_glx} = ($card->{identifier} =~ /Voodoo [35]/ || $card->{identifier} =~ /Voodoo Banshee/ || #- 16bit only
$card->{identifier} =~ /Matrox.* G[24]00/ || #- prefer 16bit (24bit not well tested according to DRI)
- $card->{type} =~ /Intel 810/ || #- 16bit
- $card->{type} =~ /ATI Rage 128/); #- 16 and 32 bits, prefer 16bit as no DMA.
+ $card->{identifier} =~ /8281[05].* CGC/ || #- 16bit (Intel 810 & 815).
+ $card->{identifier} =~ /Rage 128/); #- 16 and 32 bits, prefer 16bit as no DMA.
#- check to use XFree 4.0 or XFree 3.3.
$card->{use_xf4} = $card->{driver} && !$card->{flags}{unsupported};
@@ -298,7 +300,9 @@ NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.", $xf3_ver)) . "
#- hack for ATI Mach64 card where two options should be used if using Utah-GLX.
- if ($card->{identifier} =~ /3D Rage Pro AGP/) {
+ if ($card->{identifier} =~ /Rage X[CL]/ ||
+ $card->{identifier} =~ /Rage Mobility (?:P\/M|L) / ||
+ $card->{identifier} =~ /3D Rage (?:LT|Pro)/) {
$card->{options_xf3}{no_font_cache} = $card->{Utah_glx};
$card->{options_xf3}{no_pixmap_cache} = $card->{Utah_glx};
}