From f92faa4e81480308214a28237e634750f794f556 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 28 Oct 2009 19:00:44 +0000 Subject: do not auto reconfigure if more than one graphic card (rationale: the code is not ready to handle that yet) --- perl-install/standalone/service_harddrake | 3 +++ 1 file changed, 3 insertions(+) (limited to 'perl-install/standalone/service_harddrake') diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index a8a728e3d..b16df5901 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -114,6 +114,9 @@ my @cards = ( my @devices = grep { $_->{driver} =~ /^Card:/ } detect_devices::probeall(); +# do not auto reconfigure if more than one graphic card: +$cfg{AUTORECONFIGURE_RIGHT_XORG_DRIVER} = 'no' if scalar(@devices) > 1; + foreach my $device (@devices) { next if !text2bool($cfg{AUTORECONFIGURE_RIGHT_XORG_DRIVER}); -- cgit v1.2.1