From a061dd6c6a1e21a2d08d220828f9b9837e88bea9 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 12 Dec 2011 19:54:42 +0000 Subject: (check_bad_card) do not coffer to try KMS drivers during installation (mga#3711 and the like) TODO: check for KMS<->proprietary/vesa/fb switches --- lib/Xconfig/card.pm | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/Xconfig/card.pm') 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; } -- cgit v1.2.1