summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/service_harddrake
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/standalone/service_harddrake')
-rwxr-xr-xperl-install/standalone/service_harddrake7
1 files changed, 7 insertions, 0 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake
index 9b1ac5274..a3d3f7d15 100755
--- a/perl-install/standalone/service_harddrake
+++ b/perl-install/standalone/service_harddrake
@@ -74,8 +74,15 @@ sub schedule_warn_about_switch() {
touch('/var/run/harddrake-notify-x11-free-driver-switch');
}
+my $lib = arch() =~ /x86_64/ ? "lib64" : "lib";
sub switch_x_driver {
my ($old_driver, $new_driver, $reason) = @_;
+ # nvidia driver has special place:
+ if (!-e "/usr/$lib/xorg/modules/drivers/${new_driver}_drv.so"
+ && !-e "/usr/$lib/xorg/extra-modules/${new_driver}_drv.so") {
+ log::explanations("would switch X.org driver from '$old_driver' to '$new_driver' ($reason); but new driver is not installed");
+ return;
+ }
cp_af('/etc/X11/xorg.conf', "/etc/X11/xorg.conf.mdv$^T");
substInFile { s!Driver "($old_driver)"!Driver "$new_driver"!g } '/etc/X11/xorg.conf';
log::explanations("switch X.org driver from '$old_driver' to '$new_driver' ($reason)");