diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-24 01:38:52 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-24 01:41:31 +0200 |
commit | 5299be0d043982d2e8180d7b56c26331ae57b8e9 (patch) | |
tree | f217fda04cf88818a3de3db9206517506cc32526 /perl-install/any.pm | |
parent | 2b1bc03858825e25c142be6bdd8010a05e420507 (diff) | |
download | drakx-5299be0d043982d2e8180d7b56c26331ae57b8e9.tar drakx-5299be0d043982d2e8180d7b56c26331ae57b8e9.tar.gz drakx-5299be0d043982d2e8180d7b56c26331ae57b8e9.tar.bz2 drakx-5299be0d043982d2e8180d7b56c26331ae57b8e9.tar.xz drakx-5299be0d043982d2e8180d7b56c26331ae57b8e9.zip |
add a "Do not touch ESP or MBR" option (mga#18770)
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 8d804cade..d878766f5 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -637,6 +637,7 @@ sub setupBootloader__grub2 { { label => N("Append"), val => \$append }, { label => N("Video mode"), val => \$vga, list => [ '', Xconfig::resolution_and_depth::bios_vga_modes() ], format => \&Xconfig::resolution_and_depth::to_string, advanced => 1 }, + { text => N("Do not touch ESP or MBR"), val => \$b->{no_esp_or_mbr}, type => 'bool', advanced => 1 }, { text => N("Probe Foreign OS"), val => \$os_prober, type => 'bool' }, ]); if ($res) { |