diff options
author | Francois Pons <fpons@mandriva.com> | 2001-09-12 13:59:03 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-09-12 13:59:03 +0000 |
commit | a37dd2b8a77b2536372debf6da01db151c073808 (patch) | |
tree | 76d995f54859615817d21c47f52cb22457f98491 /perl-install/install_steps.pm | |
parent | fb9b554780d6784eac8f294e6e8817e7bfda873b (diff) | |
download | drakx-backup-do-not-use-a37dd2b8a77b2536372debf6da01db151c073808.tar drakx-backup-do-not-use-a37dd2b8a77b2536372debf6da01db151c073808.tar.gz drakx-backup-do-not-use-a37dd2b8a77b2536372debf6da01db151c073808.tar.bz2 drakx-backup-do-not-use-a37dd2b8a77b2536372debf6da01db151c073808.tar.xz drakx-backup-do-not-use-a37dd2b8a77b2536372debf6da01db151c073808.zip |
disabled frame buffer for most of the SiS display card except SiS 630.
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index d13d2d8fc..8271c4fc6 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -734,7 +734,13 @@ sub setupBootloaderBefore { #- check for valid fb mode to enable a default boot with frame buffer. my $vga = $o->{allowFB} && (!detect_devices::matching_desc('Rage LT') && !detect_devices::matching_desc('Matrox') && - !detect_devices::matching_desc('Rage Mobility') + !detect_devices::matching_desc('Rage Mobility') && + !detect_devices::matching_desc('SiS.*SG86C2.5') && + !detect_devices::matching_desc('SiS.*559[78]') && + !detect_devices::matching_desc('SiS.*300') && + !detect_devices::matching_desc('SiS.*540') && + !detect_devices::matching_desc('SiS.*6C?326') && + !detect_devices::matching_desc('SiS.*6C?236') ); my $force_vga = $o->{allowFB} && (detect_devices::matching_desc('SiS.*630') #- SiS 630 need frame buffer. ); |