diff options
author | Thierry Vignaud <tv@mandriva.org> | 2010-02-01 15:04:09 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2010-02-01 15:04:09 +0000 |
commit | 92c1383e7f93a60aa5c1d1a926017f99b38dbbe4 (patch) | |
tree | d8ed8b65c45f8ec8c41ff3676ff2cba621ae39b1 | |
parent | c1bb8da243e4443c9134a14e4230a8e8f449ee55 (diff) | |
download | drakx-92c1383e7f93a60aa5c1d1a926017f99b38dbbe4.tar drakx-92c1383e7f93a60aa5c1d1a926017f99b38dbbe4.tar.gz drakx-92c1383e7f93a60aa5c1d1a926017f99b38dbbe4.tar.bz2 drakx-92c1383e7f93a60aa5c1d1a926017f99b38dbbe4.tar.xz drakx-92c1383e7f93a60aa5c1d1a926017f99b38dbbe4.zip |
(setupBootloader__mbr_or_not) do not ask for bootloader location at
install time (requested by fcrozat+enael) (still available in summary)
-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 |