diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-16 11:11:02 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-16 11:11:02 +0000 |
commit | dcedc30060f12a836733cb2eb949508d6df5e624 (patch) | |
tree | fbe2a6e8ff43defed6add95a921665ab8fd081ec /perl-install/install_steps_interactive.pm | |
parent | 8828242570fd982a9f604771497a1fccec9fe8e1 (diff) | |
download | drakx-dcedc30060f12a836733cb2eb949508d6df5e624.tar drakx-dcedc30060f12a836733cb2eb949508d6df5e624.tar.gz drakx-dcedc30060f12a836733cb2eb949508d6df5e624.tar.bz2 drakx-dcedc30060f12a836733cb2eb949508d6df5e624.tar.xz drakx-dcedc30060f12a836733cb2eb949508d6df5e624.zip |
for Driver fbdev, rework to allow configuring vga= in bootloader and telling to reboot instead of restarting X server (now i simply need to configure bootloader in Xconfig::main::write() when need_reboot)
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 407a909b6..0420be586 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1269,7 +1269,7 @@ sub configureX { symlink "$o->{prefix}/etc/gtk", "/etc/gtk"; require Xconfig::main; - if (my $raw_X = Xconfig::main::configure_everything_or_configure_chooser($o, install_any::X_options_from_o($o), !$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); } |