summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
diff options
context:
space:
mode:
authorMartin Whitaker <mageia@martin-whitaker.me.uk>2020-06-15 16:39:36 +0100
committerMartin Whitaker <mageia@martin-whitaker.me.uk>2020-06-16 17:21:39 +0100
commit49a85ac103ec3e275941535e31daf6e90b03a202 (patch)
treecb31973f6c0f7138088aaff1f6f50eea1a4aaedc /perl-install/any.pm
parentff4d256a950648b12348a42ef11dea8dd19c7453 (diff)
downloaddrakx-49a85ac103ec3e275941535e31daf6e90b03a202.tar
drakx-49a85ac103ec3e275941535e31daf6e90b03a202.tar.gz
drakx-49a85ac103ec3e275941535e31daf6e90b03a202.tar.bz2
drakx-49a85ac103ec3e275941535e31daf6e90b03a202.tar.xz
drakx-49a85ac103ec3e275941535e31daf6e90b03a202.zip
Enhance message for installing bootloaders in /EFI/BOOT.
This may be needed to make a removable device self-bootable as well as to work around buggy BIOSs that don't respect the NVRAM settings.
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r--perl-install/any.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index c3ab97eb7..93d5eadd6 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -506,7 +506,7 @@ sub setupBootloader__refind {
[
{ text => N("Install or update rEFInd in the EFI system partition"),
val => \$update_esp, type => 'bool', disabled => sub { !$already_installed } },
- { text => N("Install in /EFI/BOOT (workaround for some BIOSs)"),
+ { text => N("Install in /EFI/BOOT (removable device or workaround for some BIOSs)"),
val => \$as_default, type => 'bool', disabled => sub { !$update_esp } },
]
) or return 0;
@@ -730,7 +730,7 @@ sub setupBootloader__grub2 {
help => N("If grub2 takes too long to install, you can use this option to skip detecting other OSes and make it fast"),
},
if_(is_uefi(),
- { text => N("Install in /EFI/BOOT (workaround for some BIOSs)"),
+ { text => N("Install in /EFI/BOOT (removable device or workaround for some BIOSs)"),
val => \$b->{removable}, type => 'bool' },
),
]);