diff options
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index cfe2de197..15566d0c7 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -62,7 +62,9 @@ arch() !~ /alpha|sparc/ ? ( ) : (), setupBootloader => [ __("Install bootloader"), 1, 1, '$::o->{lnx4win} && !$::expert', "doInstallStep" ], configureX => [ __("Configure X"), 1, 1, '', ["formatPartitions", "setupBootloader"] ], +arch() !~ /sparc/ ? ( generateAutoInstFloppy => [ __("Auto install floppy"), 1, 1, '!$::expert || $o->{lnx4win}', "doInstallStep" ], +) : (), exitInstall => [ __("Exit install"), 0, 0, '$::beginner' ], ); for (my $i = 0; $i < @installSteps; $i += 2) { @@ -489,6 +491,8 @@ sub createBootdisk { sub setupBootloader { return if $::g_auto_install; + modules::write_conf("$o->{prefix}/etc/conf.modules"); + $o->setupBootloaderBefore if $_[1] == 1; $o->setupBootloader($_[1] - 1); |