diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | lib/Xconfig/card.pm | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- do not propose to test modesetting in stage2 (mga#15687) + Version 1.6 - 11 February 2015 - suppress writing xorg.conf.d snippets for built in evdev defaults (mga#14476) diff --git a/lib/Xconfig/card.pm b/lib/Xconfig/card.pm index cf07001..276fb9f 100644 --- a/lib/Xconfig/card.pm +++ b/lib/Xconfig/card.pm @@ -466,7 +466,7 @@ sub check_bad_card { my ($card) = @_; my $bad_card = $card->{BAD_FB_RESTORE}; $bad_card ||= member($card->{Driver}, qw(intel fbdev)); - $bad_card ||= member($card->{Driver}, 'nvidia', 'vmware') if !$::isStandalone; #- avoid testing during install at any price. + $bad_card ||= member($card->{Driver}, qw(modesetting nvidia vmware)) if !$::isStandalone; #- avoid testing during install at any price. log::explanations("the graphics card does not like X in framebuffer") if $bad_card; |