Module Name:    src
Committed By:   snj
Date:           Mon Mar  9 18:50:19 UTC 2020

Modified Files:
        src/usr.sbin/sysinst/arch/alpha [netbsd-9]: md.c

Log Message:
Pull up following revision(s) (requested by martin in ticket #777):
        usr.sbin/sysinst/arch/alpha/md.c: 1.8
The (unused) md_pre_disklabel() function needs to return success, otherwise
all installations will be aborted.


To generate a diff of this commit:
cvs rdiff -u -r1.6.2.1 -r1.6.2.2 src/usr.sbin/sysinst/arch/alpha/md.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/arch/alpha/md.c
diff -u src/usr.sbin/sysinst/arch/alpha/md.c:1.6.2.1 src/usr.sbin/sysinst/arch/alpha/md.c:1.6.2.2
--- src/usr.sbin/sysinst/arch/alpha/md.c:1.6.2.1	Tue Dec 17 09:44:50 2019
+++ src/usr.sbin/sysinst/arch/alpha/md.c	Mon Mar  9 18:50:19 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: md.c,v 1.6.2.1 2019/12/17 09:44:50 msaitoh Exp $ */
+/*	$NetBSD: md.c,v 1.6.2.2 2020/03/09 18:50:19 snj Exp $ */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -126,7 +126,7 @@ bool
 md_pre_disklabel(struct install_partition_desc *install,
     struct disk_partitions *part)
 {
-	return 0;
+	return true;
 }
 
 /*

Reply via email to