summaryrefslogtreecommitdiffstats
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
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)
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/fs/any.pm2
-rw-r--r--perl-install/fs/partitioning_wizard.pm2
-rw-r--r--perl-install/install/NEWS2
4 files changed, 6 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 09c4e0214..636a9db08 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -2,6 +2,8 @@
o don't offer to format RAID or BIOS boot partition
o fix clearing an already filled GPT disk
o make clear a BIOS boot partition cannot have a mount point
+ o make error about BIOS boot partition more explicit about
+ its purpose and that it must be created (mga#18923)
Version 17.50 - 8 July 2016
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 = '';
}
}
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index c1373fc7e..f37aad092 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -3,6 +3,8 @@
o auto_inst: fix clearing an already filled GPT disk
o don't offer to format RAID or BIOS boot partition
o make clear a BIOS boot partition cannot have a mount point
+ o make error about BIOS boot partition more explicit about
+ its purpose and that it must be created (mga#18923)
Version 17.50 - 8 July 2016