From 57c4aa7f6954ecc0a931734226cf4b53e03fec8c Mon Sep 17 00:00:00 2001 From: jonathan Date: Sun, 2 Nov 1997 02:21:04 +0000 Subject: [PATCH] On pmax, write bootblocks to raw C partition, not A partition. pmax still writes bootblocks with disklabel -B, not installboot. --- distrib/utils/sysinst/arch/pmax/md.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/distrib/utils/sysinst/arch/pmax/md.c b/distrib/utils/sysinst/arch/pmax/md.c index 25b739cd7565..19f4f7f717a3 100644 --- a/distrib/utils/sysinst/arch/pmax/md.c +++ b/distrib/utils/sysinst/arch/pmax/md.c @@ -1,4 +1,4 @@ -/* $NetBSD: md.c,v 1.5 1997/11/01 23:44:23 jonathan Exp $ */ +/* $NetBSD: md.c,v 1.6 1997/11/02 02:21:04 jonathan Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -112,8 +112,8 @@ void md_post_newfs (void) { /* XXX boot blocks ... */ printf (msg_string(MSG_dobootblks), diskdev); - run_prog ("/sbin/disklabel -B -b /usr/mdec/rzboot -s /usr/mdec/bootrz " - "/dev/r%sa", diskdev); + run_prog_noerr ("/sbin/disklabel -B %s /dev/r%sc", + "-b /usr/mdec/rzboot -s /usr/mdec/bootrz", diskdev); } void md_copy_filesystem (void)