diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-09 14:41:23 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-09 14:41:23 +0000 |
commit | 5442399c701c34ef4803f46ab756c89a0e1618e5 (patch) | |
tree | 168e910e994b55703ae9a2f4cd512187d68ac1aa /perl-install/install_steps_interactive.pm | |
parent | 09a96ae7d473be93ca7d1f4591819e89c7174d6e (diff) | |
download | drakx-5442399c701c34ef4803f46ab756c89a0e1618e5.tar drakx-5442399c701c34ef4803f46ab756c89a0e1618e5.tar.gz drakx-5442399c701c34ef4803f46ab756c89a0e1618e5.tar.bz2 drakx-5442399c701c34ef4803f46ab756c89a0e1618e5.tar.xz drakx-5442399c701c34ef4803f46ab756c89a0e1618e5.zip |
*** empty log message ***
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 7f247a41d..d1f871c65 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -716,7 +716,7 @@ sub setupBootloader { $::expert and $o->ask_yesorno('', _("Do you want to use LILO?"), 1) || return; my @l = ( -_("Boot device") => { val => \$b->{boot}, list => [ map { "/dev/$_->{device}" } @{$o->{hds}}, @{$o->{fstab}}, detect_devices::floppies ], not_edit => !$::expert }, +_("Boot device") => { val => \$b->{boot}, list => [ map { "/dev/$_" } (map { $_->{device} } @{$o->{hds}}, @{$o->{fstab}}), detect_devices::floppies ], not_edit => !$::expert }, _("Linear (needed for some SCSI drives)") => { val => \$b->{linear}, type => "bool", text => _("linear") }, _("Compact") => { val => \$b->{compact}, type => "bool", text => _("compact") }, _("Delay before booting default image") => \$b->{timeout}, |