diff options
-rw-r--r-- | perl-install/install_steps.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index e63e7355a..46a3ca986 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -732,9 +732,12 @@ sub setupBootloaderBefore { } } else { #- check for valid fb mode to enable a default boot with frame buffer. - my $vga = $o->{allowFB} && (!detect_devices::matching_desc('Rage LT') && + my $vga = $o->{allowFB} && (!detect_devices::matching_desc('3D Rage LT') && + !detect_devices::matching_desc('Rage Mobility [PL]') && + !detect_devices::matching_desc('i740') && + !detect_devices::matching_desc('ViRGE') && !detect_devices::matching_desc('Matrox') && - !detect_devices::matching_desc('Rage Mobility') && + !detect_devices::matching_desc('Tseng.*ET6\d00') && !detect_devices::matching_desc('SiS.*SG86C2.5') && !detect_devices::matching_desc('SiS.*559[78]') && !detect_devices::matching_desc('SiS.*300') && |