From dbf054fd70ec42dc52eb598fbff72897407a6873 Mon Sep 17 00:00:00 2001 From: jkh Date: Wed, 7 Oct 1998 03:15:08 +0000 Subject: Don't use boot2 on alpha. --- usr.sbin/sade/disks.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'usr.sbin/sade/disks.c') diff --git a/usr.sbin/sade/disks.c b/usr.sbin/sade/disks.c index 4d4703d..9703014 100644 --- a/usr.sbin/sade/disks.c +++ b/usr.sbin/sade/disks.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: disks.c,v 1.102 1998/09/30 21:55:33 jkh Exp $ + * $Id: disks.c,v 1.103 1998/09/30 21:58:36 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -643,7 +643,11 @@ diskPartitionWrite(dialogMenuItem *self) if (!devs[i]->enabled) continue; +#ifdef __alpha__ + Set_Boot_Blocks(d, boot1, NULL); +#else Set_Boot_Blocks(d, boot1, boot2); +#endif msgNotify("Writing partition information to drive %s", d->name); if (!Fake && Write_Disk(d)) { msgConfirm("ERROR: Unable to write data to disk %s!", d->name); -- cgit v1.1