Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-9]: src/usr.sbin/sysinst Pull up following revision(s) (requested...
details: https://anonhg.NetBSD.org/src/rev/761de655dc8f
branches: netbsd-9
changeset: 462730:761de655dc8f
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Mon Oct 28 02:49:12 2019 +0000
description:
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.
diffstat:
usr.sbin/sysinst/part_edit.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (21 lines):
diff -r ee554faf7c83 -r 761de655dc8f usr.sbin/sysinst/part_edit.c
--- a/usr.sbin/sysinst/part_edit.c Fri Oct 25 16:02:11 2019 +0000
+++ b/usr.sbin/sysinst/part_edit.c Mon Oct 28 02:49:12 2019 +0000
@@ -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 @@
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;
Home |
Main Index |
Thread Index |
Old Index