diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-08 05:35:03 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-08 05:35:03 +0000 |
commit | 44b76a6df5441d9ffc9b139f2be6297fce73b8da (patch) | |
tree | 5162afe8e7b0528778d97947cf5e93fcd45dfa78 /perl-install/install_steps_interactive.pm | |
parent | 74532016c19d917b0cacd105e34e30e21745e344 (diff) | |
download | drakx-44b76a6df5441d9ffc9b139f2be6297fce73b8da.tar drakx-44b76a6df5441d9ffc9b139f2be6297fce73b8da.tar.gz drakx-44b76a6df5441d9ffc9b139f2be6297fce73b8da.tar.bz2 drakx-44b76a6df5441d9ffc9b139f2be6297fce73b8da.tar.xz drakx-44b76a6df5441d9ffc9b139f2be6297fce73b8da.zip |
- create X_options_from_o() and use it
- add freeDriver boot option
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index c269ff682..c3894f22f 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1263,12 +1263,8 @@ sub configureX { install_steps::configureXBefore($o); symlink "$o->{prefix}/etc/gtk", "/etc/gtk"; - my $options = { - allowFB => $o->{allowFB}, - }; - require Xconfig::main; - if (my $raw_X = Xconfig::main::configure_everything_or_configure_chooser($o, $options, !$expert, $o->{keyboard}, $o->{mouse})) { + if (my $raw_X = Xconfig::main::configure_everything_or_configure_chooser($o, install_any::X_options_from_o($o), !$expert, $o->{keyboard}, $o->{mouse})) { $o->{raw_X} = $raw_X; install_steps::configureXAfter($o); } |