diff options
author | Francois Pons <fpons@mandriva.com> | 2001-04-25 15:44:54 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-04-25 15:44:54 +0000 |
commit | 77f7ab3e73b1d11baa2a2cb49debc101bb766434 (patch) | |
tree | cae07497e5a8df6d33683cf976ca869a7c9d7d84 /perl-install | |
parent | 04c2a7c878eb1c0a5df0673d651343dab52ef6d6 (diff) | |
download | drakx-77f7ab3e73b1d11baa2a2cb49debc101bb766434.tar drakx-77f7ab3e73b1d11baa2a2cb49debc101bb766434.tar.gz drakx-77f7ab3e73b1d11baa2a2cb49debc101bb766434.tar.bz2 drakx-77f7ab3e73b1d11baa2a2cb49debc101bb766434.tar.xz drakx-77f7ab3e73b1d11baa2a2cb49debc101bb766434.zip |
avoid testing card using NVIDIA driver as the module is not loaded.
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/Xconfigurator.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 9a483f6d1..1ca9fe7d7 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -540,6 +540,7 @@ sub testFinalConfig { log::l("the graphic card does not like X in framebuffer") if $bad_card; my $verybad_card = $o->{card}{driver} eq 'i810'; + $verybad_card ||= $o->{card}{driver} eq 'nvidia' && !$::isStandalone; #- avoid testing during install at any price. $verybad_card and return 1; my $mesg = _("Do you want to test the configuration?"); |