summaryrefslogtreecommitdiffstats
path: root/perl-install/install_any.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r--perl-install/install_any.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index 531f5fe00..3af71804b 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -226,7 +226,7 @@ sub getAvailableSpace {
do { $_->{mntpoint} eq '/' and return int($_->{size} * 512 / 1.07) } foreach @{$o->{fstab}};
if ($::testing) {
- my $nb = 1350;
+ my $nb = 650;
log::l("taking ${nb}MB for testing");
return $nb << 20;
}
@@ -499,7 +499,7 @@ sub setupFB {
#- nothing done, fall through linux-fb.
} else {
$e->{vga} = $vga;
- lilo::install($o->{prefix}, $o->{bootloader});
+ lilo::install($o->{prefix}, $o->{bootloader}, $o->{fstab}, $o->{hds});
return 1;
}
}
@@ -511,7 +511,7 @@ sub setupFB {
vga => $vga,
})) {
$o->{bootloader}{default} = 'linux-fb';
- lilo::install($o->{prefix}, $o->{bootloader});
+ lilo::install($o->{prefix}, $o->{bootloader}, $o->{fstab}, $o->{hds});
} else {
log::l("unable to install kernel with frame buffer support, disabling");
return 0;