Module Name: src
Committed By: martin
Date: Thu Oct 24 18:17:08 UTC 2019
Modified Files:
src/usr.sbin/sysinst: part_edit.c
Log Message:
When we fail to setup for "all of the disk for NetBSD" report
failure, instead of silently aborting the install.
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/usr.sbin/sysinst/part_edit.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/sysinst/part_edit.c
diff -u src/usr.sbin/sysinst/part_edit.c:1.7 src/usr.sbin/sysinst/part_edit.c:1.8
--- src/usr.sbin/sysinst/part_edit.c:1.7 Fri Jul 12 18:25:08 2019
+++ src/usr.sbin/sysinst/part_edit.c Thu Oct 24 18:17:08 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: part_edit.c,v 1.7 2019/07/12 18:25:08 martin Exp $ */
+/* $NetBSD: part_edit.c,v 1.8 2019/10/24 18:17:08 martin Exp $ */
/*
* Copyright (c) 2019 The NetBSD Foundation, Inc.
@@ -1152,8 +1152,10 @@ edit_outer_parts(struct disk_partitions
return false;
}
}
- if (!md_parts_use_wholedisk(parts))
+ if (!md_parts_use_wholedisk(parts)) {
+ hit_enter_to_continue(MSG_No_free_space, NULL);
return false;
+ }
if (parts->pscheme->post_edit_verify) {
return
parts->pscheme->post_edit_verify(parts, true) == 2;