Module Name: src Committed By: msaitoh Date: Mon Oct 28 02:49:12 UTC 2019
Modified Files: src/usr.sbin/sysinst [netbsd-9]: part_edit.c Log Message: Pull up following revision(s) (requested by martin in ticket #380): usr.sbin/sysinst/part_edit.c: revision 1.8 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.7.2.1 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.7.2.1 --- src/usr.sbin/sysinst/part_edit.c:1.7 Fri Jul 12 18:25:08 2019 +++ src/usr.sbin/sysinst/part_edit.c Mon Oct 28 02:49:12 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.7.2.1 2019/10/28 02:49:12 msaitoh 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;