summaryrefslogtreecommitdiffstats
path: root/perl-install/fs
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2016-07-12 08:58:28 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2016-07-12 14:16:28 +0200
commit962056e2a198e2ce02c4220e99b84022ae1be408 (patch)
treeb2fe7abf7d9ad5b3548161d6d62926be6b597095 /perl-install/fs
parent532fd1d60df306e204bae79c5158ca2302739966 (diff)
downloaddrakx-962056e2a198e2ce02c4220e99b84022ae1be408.tar
drakx-962056e2a198e2ce02c4220e99b84022ae1be408.tar.gz
drakx-962056e2a198e2ce02c4220e99b84022ae1be408.tar.bz2
drakx-962056e2a198e2ce02c4220e99b84022ae1be408.tar.xz
drakx-962056e2a198e2ce02c4220e99b84022ae1be408.zip
make warning more explicit about "BBP" purpose
(BIOS boot partition, thus fixing mga#18923)
Diffstat (limited to 'perl-install/fs')
-rw-r--r--perl-install/fs/any.pm2
-rw-r--r--perl-install/fs/partitioning_wizard.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs/any.pm b/perl-install/fs/any.pm
index 9d2dd2fb5..9dbda0eae 100644
--- a/perl-install/fs/any.pm
+++ b/perl-install/fs/any.pm
@@ -76,7 +76,7 @@ sub check_hds_boot_and_root {
}
} else {
if (is_boot_bios_part_needed($all_hds, $fstab)) {
- die N("You must have a Boot BIOS partition");
+ die N("You must have a BIOS boot partition for non-UEFI GPT-partitioned disks. Please create one before continuing.");
}
}
}
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm
index 6c709bc24..c17e3da52 100644
--- a/perl-install/fs/partitioning_wizard.pm
+++ b/perl-install/fs/partitioning_wizard.pm
@@ -79,7 +79,7 @@ Then choose action ``Mount point'' and set it to `/'"), 1) or return;
}
} else {
if (fs::any::is_boot_bios_part_needed($all_hds, $fstab)) {
- $in->ask_warn('', N("You must have a Boot BIOS partition"));
+ $in->ask_warn('', N("You must have a BIOS boot partition for non-UEFI GPT-partitioned disks. Please create one before continuing."));
$ok = '';
}
}