summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/service_harddrake
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-10-28 16:06:53 +0000
committerThierry Vignaud <tv@mandriva.org>2009-10-28 16:06:53 +0000
commit38505925a80c53dfb3ec7f7197bea6ada273634a (patch)
treee09c775ef0bfd90119d774d1af0f1da3a9256fe5 /perl-install/standalone/service_harddrake
parentefe7adfcce9e723681cf08486568a1757e4e2447 (diff)
downloaddrakx-38505925a80c53dfb3ec7f7197bea6ada273634a.tar
drakx-38505925a80c53dfb3ec7f7197bea6ada273634a.tar.gz
drakx-38505925a80c53dfb3ec7f7197bea6ada273634a.tar.bz2
drakx-38505925a80c53dfb3ec7f7197bea6ada273634a.tar.xz
drakx-38505925a80c53dfb3ec7f7197bea6ada273634a.zip
fix detecting nvidia proprietary driver when checking if current xorg
driver still supports current card (#54943) rationale: nvidia proprietary driver in ldetect-lst can be 'nvidia173', rnvidia-current', ... but really is just 'nvidia' in xorg.conf
Diffstat (limited to 'perl-install/standalone/service_harddrake')
-rwxr-xr-xperl-install/standalone/service_harddrake4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake
index 5848975e1..9b1ac5274 100755
--- a/perl-install/standalone/service_harddrake
+++ b/perl-install/standalone/service_harddrake
@@ -103,6 +103,10 @@ foreach my $device (@devices) {
my $card_data = Xconfig::card::readCardsDB("/usr/share/ldetect-lst/Cards+")->{$id};
my $current_driver = get_xorg_driver();
+ # nvidia proprietary driver in ldetect-lst can be 'nvidia173', 'nvidia-current', ...
+ # but really is just 'nvidia' in xorg.conf:
+ $card_data->{Driver2} =~ s/(nvidia)-.*/$1/;
+
if (!member($current_driver, $card_data->{Driver}, $card_data->{Driver2}, 'fbdev', 'vesa')) {
switch_x_driver($current_driver, $card_data->{Driver}, 'no more supported by this driver');
schedule_warn_about_switch() if any { $current_driver =~ $_->{xorg_driver_regexp} } @cards;