From a7e1fa717d6dcea4523fabeacfa68e861366d910 Mon Sep 17 00:00:00 2001 From: jkh Date: Wed, 30 Sep 1998 21:48:11 +0000 Subject: Always use dedicated disk case on alpha. --- release/sysinstall/disks.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'release') diff --git a/release/sysinstall/disks.c b/release/sysinstall/disks.c index 9f08837..64d8f6a 100644 --- a/release/sysinstall/disks.c +++ b/release/sysinstall/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.99 1998/09/14 19:14:11 jkh Exp $ + * $Id: disks.c,v 1.100 1998/09/15 10:24:46 gibbs Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -269,6 +269,9 @@ diskPartition(Device *dev) break; case 'A': +#ifdef __alpha__ + rv = 1; +#else /* The rest is only relevant on x86 */ cp = variable_get(VAR_DEDICATE_DISK); if (cp && !strcasecmp(cp, "always")) rv = 1; @@ -281,6 +284,7 @@ diskPartition(Device *dev) if (rv == -1) rv = 0; } +#endif All_FreeBSD(d, rv); variable_set2(DISK_PARTITIONED, "yes"); record_chunks(d); -- cgit v1.1