diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rwxr-xr-x | perl-install/standalone/service_harddrake | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index c79c843d7..58f00cbb5 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,6 @@ - service_harddrake: o do not bother configure old Xorg conf files anymore + o log right driver we're switching to from fglrx Version 10.4.143 - 04 July 2007, by Thierry Vignaud diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index a17f9484a..67310b82e 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -85,7 +85,7 @@ if (find { $_->{driver} =~ /ATI Radeon/ } detect_devices::probeall()) { my $done; substInFile { $done ||= s!Driver "fglrx"!Driver "$driver"!g } '/etc/X11/xorg.conf'; if ($done) { - log::explanations("switch X.org driver from fglrx to ati"); + log::explanations("switch X.org driver from fglrx to $driver"); require Xconfig::card; Xconfig::card::libgl_config_and_more({ Driver => $driver }); } |