summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-07-08 05:35:03 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-07-08 05:35:03 +0000
commit44b76a6df5441d9ffc9b139f2be6297fce73b8da (patch)
tree5162afe8e7b0528778d97947cf5e93fcd45dfa78 /perl-install/install_steps_interactive.pm
parent74532016c19d917b0cacd105e34e30e21745e344 (diff)
downloaddrakx-backup-do-not-use-44b76a6df5441d9ffc9b139f2be6297fce73b8da.tar
drakx-backup-do-not-use-44b76a6df5441d9ffc9b139f2be6297fce73b8da.tar.gz
drakx-backup-do-not-use-44b76a6df5441d9ffc9b139f2be6297fce73b8da.tar.bz2
drakx-backup-do-not-use-44b76a6df5441d9ffc9b139f2be6297fce73b8da.tar.xz
drakx-backup-do-not-use-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.pm6
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);
}