diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-06-04 11:12:14 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-06-04 11:12:14 +0000 |
commit | 37d4047e44806051bf7721869791fce9917d04ee (patch) | |
tree | 25355f29bdadb48e125a9983bbc84c66083216c5 /perl-install/install_steps.pm | |
parent | 98d8aa6727de9bdba8ef650bbc669f241d06467b (diff) | |
download | drakx-37d4047e44806051bf7721869791fce9917d04ee.tar drakx-37d4047e44806051bf7721869791fce9917d04ee.tar.gz drakx-37d4047e44806051bf7721869791fce9917d04ee.tar.bz2 drakx-37d4047e44806051bf7721869791fce9917d04ee.tar.xz drakx-37d4047e44806051bf7721869791fce9917d04ee.zip |
don't use framebuffer after install on i845 (even if framebuffer works during install)
(this implies no graphical boot)
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 513ae88c3..40b1d2618 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -881,7 +881,7 @@ sub setupBootloaderBefore { !detect_devices::matching_desc('SiS.*6C?326') && !detect_devices::matching_desc('SiS.*6C?236') && !detect_devices::matching_desc('Voodoo [35]|Voodoo Banshee') && #- 3d acceleration seems to bug in fb mode - !detect_devices::matching_desc('8281[05].* CGC') #- i810 now have FB support during install but we disable it afterwards + !detect_devices::matching_desc('828[14][05].* CGC') #- i810 & i845 now have FB support during install but we disable it afterwards ); my $force_vga = $o->{allowFB} && (detect_devices::matching_desc('SiS.*630') || #- SiS 630 need frame buffer. detect_devices::matching_desc('GeForce.*Integrated') #- needed for fbdev driver (hack). |