diff options
author | Francois Pons <fpons@mandriva.com> | 2001-07-04 15:24:36 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-07-04 15:24:36 +0000 |
commit | 9d1cef6977cddef2932c3e311d4ae03007413878 (patch) | |
tree | 7a19f9cca9fece2540c5cc9680a8826b4610305f /perl-install | |
parent | ccab685a69ee364a01b6c1334aee826c225dd67e (diff) | |
download | drakx-9d1cef6977cddef2932c3e311d4ae03007413878.tar drakx-9d1cef6977cddef2932c3e311d4ae03007413878.tar.gz drakx-9d1cef6977cddef2932c3e311d4ae03007413878.tar.bz2 drakx-9d1cef6977cddef2932c3e311d4ae03007413878.tar.xz drakx-9d1cef6977cddef2932c3e311d4ae03007413878.zip |
allow S3 card to have VideoRam uncommented, fix 86c368 video driver that seems
needing VideoRam too.
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/Xconfigurator.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 0babc4ced..a4412a3ed 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -154,7 +154,7 @@ sub cardConfigurationAuto() { my $card = { identifier => ($c[$i]{description} . (@c > 1 && " $i")) }; $card->{type} = $1 if /Card:(.*)/; $card->{server} = $1 if /Server:(.*)/; - $card->{flags}{needVideoRam} = /86c368|S3.*ViRGE/; + $card->{flags}{needVideoRam} = /86c368|S3/; $card->{busid} = "PCI:$c[$i]{pci_bus}:$c[$i]{pci_device}:$c[$i]{pci_function}"; push @{$card->{lines}}, @{$lines{$card->{identifier}} || []}; push @cards, $card; |