diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | lib/Xconfig/card.pm | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,4 @@ +- do not offer to try KMS drivers during installation (mga#3711) - display_driver_helper: use the new modprobe --resolve-alias instead of manually parsing --dry-run output diff --git a/lib/Xconfig/card.pm b/lib/Xconfig/card.pm index 8a34b61..8f2c680 100644 --- a/lib/Xconfig/card.pm +++ b/lib/Xconfig/card.pm @@ -466,6 +466,12 @@ sub check_bad_card { log::explanations("the graphics card does not like X in framebuffer") if $bad_card; + #- avoid testing during install at any price: + if (!$bad_card && !$::isStandalone) { + $bad_card = member($card->{Driver}, qw(ati intel nouveau)); + log::explanations("the graphics card does not like using KMS in framebuffer") if $bad_card; + } + !$bad_card; } |