summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-03-03 19:25:46 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-03-03 19:25:46 +0000
commita1691673db47fce761601d1503b42d7a6bc052de (patch)
tree38ae94c382e47c55caad3b22a34cbfe297f7c226 /perl-install
parent50a3bb4a08e83fc6c5080848bda5609f6dde1fba (diff)
downloaddrakx-a1691673db47fce761601d1503b42d7a6bc052de.tar
drakx-a1691673db47fce761601d1503b42d7a6bc052de.tar.gz
drakx-a1691673db47fce761601d1503b42d7a6bc052de.tar.bz2
drakx-a1691673db47fce761601d1503b42d7a6bc052de.tar.xz
drakx-a1691673db47fce761601d1503b42d7a6bc052de.zip
cleanup
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/install_steps_interactive.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 06fcecef8..d9b75ac35 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -282,7 +282,7 @@ sub ask_mntpoint_s {
{
my $w = $o->wait_message('', _("Scanning partitions to find mount points"));
- install_any::suggest_mount_points($o->{hds}, $o->{prefix}, 'uniq');
+ install_any::suggest_mount_points($fstab, $o->{prefix}, 'uniq');
log::l("default mntpoint $_->{mntpoint} $_->{device}") foreach @fstab;
}
if (@fstab == 1) {
@@ -330,7 +330,7 @@ Continue at your own risk!"));
$o->ask_from_listf(_("Root Partition"),
_("What is the root partition (/) of your system?"),
\&partition_table_raw::description,
- [ install_any::find_root_parts($o->{hds}, $o->{prefix}) ]) or die "setstep exitInstall\n";
+ [ install_any::find_root_parts($o->{fstab}, $o->{prefix}) ]) or die "setstep exitInstall\n";
install_any::use_root_part($o->{fstab}, $p, $o->{prefix});
} elsif ($::expert && ref($o) =~ /gtk/) {
install_interactive::partition_with_diskdrake($o, $o->{hds});