diff options
-rw-r--r-- | perl-install/any.pm | 4 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 55d13d17b..c73d6153f 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -368,7 +368,9 @@ sub setupBootloader__mbr_or_not { ); my $default = find { $_->[1] eq $b->{boot} } @l; - $default = _ask_mbr_or_not($in, $default, @l); + if (!$::isInstall) { + $default = _ask_mbr_or_not($in, $default, @l); + } my $new_boot = $default->[1]; #- remove bios mapping if the user changed the boot device diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index c8335ece2..b3fc9a253 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- do not ask for bootloader location (still available in summary) - try to get better initial estimation of install time - fix bootloader entry name for rc kernels - remove mnb from bootloader entry name like we do for mdv |