diff options
author | Francois Pons <fpons@mandriva.com> | 2001-07-17 16:38:21 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-07-17 16:38:21 +0000 |
commit | 3adb35275ecf8786f5f57d42036758b0de85ec7d (patch) | |
tree | a974c05045bf52da3ce3e6a0491fd7a21d9b9dc8 /perl-install/install_steps.pm | |
parent | 7c1f3a32c393ada7f898f78706a5a600d03e1eea (diff) | |
download | drakx-3adb35275ecf8786f5f57d42036758b0de85ec7d.tar drakx-3adb35275ecf8786f5f57d42036758b0de85ec7d.tar.gz drakx-3adb35275ecf8786f5f57d42036758b0de85ec7d.tar.bz2 drakx-3adb35275ecf8786f5f57d42036758b0de85ec7d.tar.xz drakx-3adb35275ecf8786f5f57d42036758b0de85ec7d.zip |
disabled Frame buffer for all S3 cards (hangs with XF4 and S3 ViRGE on reboot
with Aurora).
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index ac61be77b..31f6e6856 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -17,7 +17,7 @@ use lang; use keyboard; use fsedit; use loopback; -#use commands; +use pkgs; use any; use log; use fs; @@ -685,6 +685,7 @@ 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('SiS') && + !detect_devices::matching_desc('S3 Inc') && !detect_devices::matching_desc('Matrox') && !detect_devices::matching_desc('Rage Mobility')) && $o->{vga}; |