diff options
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index ea2444e68..6ba1ebb13 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -742,7 +742,9 @@ sub setupBootloader($) { } elsif (arch() =~ /^sparc/) { silo::install($o->{prefix}, $o->{bootloader}); } else { - lilo::install($o->{prefix}, $o->{bootloader}, $o->{fstab}, $o->{hds}); + $o->{lnx4win} ? + lilo::install_loadlin($o->{prefix}, $o->{bootloader}, $o->{fstab}) : + lilo::install($o->{prefix}, $o->{bootloader}, $o->{fstab}, $o->{hds}); } } |