diff options
-rwxr-xr-x | perl-install/standalone/service_harddrake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index 31aa5570b..cbeafa0fb 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -83,7 +83,7 @@ if (find { $_->{driver} =~ /ATI Radeon/ } detect_devices::probeall()) { my @cards = Xconfig::card::probe(); my $driver = $cards[0]{Driver}; substInFile { - log::explanations("switch X.org driver from fglrx to ati") if /Driver "nv.+"/; + log::explanations("switch X.org driver from fglrx to ati") if /Driver "fglrx"/; s!Driver "fglrx"!Driver "$driver"!g; } $_ foreach grep { -e $_ } "/etc/X11/XF86Config-4", "/etc/X11/XF86Config", "/etc/X11/xorg.conf"; |