Mon Mar 9 17:10:31 2020 UTC ()
The (unused) md_pre_disklabel() function needs to return success, otherwise
all installations will be aborted.


(martin)
diff -r1.7 -r1.8 src/usr.sbin/sysinst/arch/alpha/md.c

cvs diff -r1.7 -r1.8 src/usr.sbin/sysinst/arch/alpha/md.c (expand / switch to context diff)
--- src/usr.sbin/sysinst/arch/alpha/md.c 2019/12/15 13:39:24 1.7
+++ src/usr.sbin/sysinst/arch/alpha/md.c 2020/03/09 17:10:31 1.8
@@ -1,4 +1,4 @@
-/*	$NetBSD: md.c,v 1.7 2019/12/15 13:39:24 martin Exp $ */
+/*	$NetBSD: md.c,v 1.8 2020/03/09 17:10:31 martin Exp $ */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -126,7 +126,7 @@
 md_pre_disklabel(struct install_partition_desc *install,
     struct disk_partitions *part)
 {
-	return 0;
+	return true;
 }
 
 /*