summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS4
-rwxr-xr-xperl-install/standalone/service_harddrake2
2 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 27c73bce3..c10f4be11 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,7 @@
+- service_harddrake:
+ o fix detecting nvidia71xx and nvidia96xx nvidia proprietary driver
+ when checking if current xorg driver still supports current card
+
Version 12.74 - 28 October 2009
- partitioning wizard (Windows resize):
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake
index d709a4fea..b8720e1f6 100755
--- a/perl-install/standalone/service_harddrake
+++ b/perl-install/standalone/service_harddrake
@@ -127,7 +127,7 @@ foreach my $device (@devices) {
# 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/;
+ $card_data->{Driver2} =~ s/(nvidia).*/$1/;
# auto reconfigure x11 only on first time default driver have changed:
my $new_key = $card_data->{Driver} . $card_data->{Driver2};