summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/service_harddrake
diff options
context:
space:
mode:
authorAnssi Hannula <anssi@mageia.org>2011-04-17 14:34:00 +0000
committerAnssi Hannula <anssi@mageia.org>2011-04-17 14:34:00 +0000
commit3fce7ceaac1d142ddf6ac6bc9bea803c46b292ed (patch)
tree0e0be84b3857a5ece7da61c76032c1669df54d25 /perl-install/standalone/service_harddrake
parent37ee576dcb240d727f08a6b69987d51be2cdd4a8 (diff)
downloaddrakx-backup-do-not-use-3fce7ceaac1d142ddf6ac6bc9bea803c46b292ed.tar
drakx-backup-do-not-use-3fce7ceaac1d142ddf6ac6bc9bea803c46b292ed.tar.gz
drakx-backup-do-not-use-3fce7ceaac1d142ddf6ac6bc9bea803c46b292ed.tar.bz2
drakx-backup-do-not-use-3fce7ceaac1d142ddf6ac6bc9bea803c46b292ed.tar.xz
drakx-backup-do-not-use-3fce7ceaac1d142ddf6ac6bc9bea803c46b292ed.zip
service_harddrake: Do not switch a display driver if speedboot has already started X server, in that case simply disable speedboot for next boot.
Diffstat (limited to 'perl-install/standalone/service_harddrake')
-rwxr-xr-xperl-install/standalone/service_harddrake8
1 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake
index c465575ce..bc4e13aea 100755
--- a/perl-install/standalone/service_harddrake
+++ b/perl-install/standalone/service_harddrake
@@ -198,10 +198,18 @@ foreach my $device (@devices) {
# auto reconfigure x11 only on first time default driver have changed:
my ($should_reconfigure, $reason) = should_reconfigure_x_driver($card_data, $device, $current_driver);
if ($should_reconfigure) {
+ if (-e "/tmp/.X11-unix/X0") {
+ # We are too late, X server is already running.
+ # It was probably speedboot, disable it for next boot.
+ substInFile { s!^$curr_kernel .*\n!! } "/var/lib/speedboot/status" if -e "/var/lib/speedboot/status";
+ # Restore state as we were not able to switch the driver yet.
+ setVarsInSh("$hw_sysconfdir/xorg", { XORG_DRV => $previous_xorg_config{XORG_DRV} });
+ } else {
$reboot_needed |= switch_x_driver($current_driver, $card_data->{Driver}, $reason);
schedule_warn_about_switch($reason) if any { $current_driver =~ $_->{xorg_driver_regexp} } @cards;
# Update $current_driver with the new one
$current_driver = $card_data->{Driver};
+ }
}
# nv->nouveau or non_kms_nouveau->kms_nouveau can't have "Disable dri"!