mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
bsdinstall: add warning when unsupported partition is modified
Right now is possible to modify bootable partition type to non-bootable type without getting warning from partedit. Example: if you auto parition drive for arm64, you will get freebsd-ufs as bootable partition; now you are able to change bootable partition type to freebsd-zfs; there will be no warning and the system will install but will not be bootable afterwards. After this fix, partedit will issue the same warning it does when user attempts to create bootable partition of not supported type, notyfing a user about incoming problem and allowing to think the decision over before commiting the schema. This has been tested on amd64 and arm64. Obtained from: Semihalf Submitted by: Dominik Ermel <der@semihalf.com> Sponsored by: Cavium Reviewed by: nwhitehorn Differential Revision: https://reviews.freebsd.org/D6879
This commit is contained in:
parent
b6924c9309
commit
e24e98d090
1 changed files with 14 additions and 0 deletions
|
|
@ -617,6 +617,20 @@ editpart:
|
|||
if (choice) /* Cancel pressed */
|
||||
goto endedit;
|
||||
|
||||
/* If this is the root partition, check that this fs is bootable */
|
||||
if (strcmp(items[2].text, "/") == 0 && !is_fs_bootable(scheme,
|
||||
items[0].text)) {
|
||||
char message[512];
|
||||
sprintf(message, "This file system (%s) is not bootable "
|
||||
"on this system. Are you sure you want to proceed?",
|
||||
items[0].text);
|
||||
dialog_vars.defaultno = TRUE;
|
||||
choice = dialog_yesno("Warning", message, 0, 0);
|
||||
dialog_vars.defaultno = FALSE;
|
||||
if (choice == 1) /* cancel */
|
||||
goto editpart;
|
||||
}
|
||||
|
||||
/* Check if the label has a / in it */
|
||||
if (strchr(items[3].text, '/') != NULL) {
|
||||
dialog_msgbox("Error", "Label contains a /, which is not an "
|
||||
|
|
|
|||
Loading…
Reference in a new issue