diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-08-21 22:49:26 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-08-21 22:49:26 +0000 |
commit | f2ef619c8c65d978fc45b90073ed32ea592a6663 (patch) | |
tree | 9edcf7fba547202a37d2a722962f0eb2c3083ab6 /sbin/fdisk/cmd.c | |
parent | 039f09906f35e9a1abadead7965cdd171ca7a8e8 (diff) |
MIPS boxes that use fdisk need an MS-DOS partition
Diffstat (limited to 'sbin/fdisk/cmd.c')
-rw-r--r-- | sbin/fdisk/cmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fdisk/cmd.c b/sbin/fdisk/cmd.c index 0e2949bd163..3a883b60c4f 100644 --- a/sbin/fdisk/cmd.c +++ b/sbin/fdisk/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.21 1999/06/10 22:38:01 pjanzen Exp $ */ +/* $OpenBSD: cmd.c,v 1.22 1999/08/21 22:49:25 niklas Exp $ */ /* * Copyright (c) 1997 Tobias Weingartner @@ -85,7 +85,7 @@ Xdisk(cmd, disk, mbr, tt, offset) /* Print out disk info */ DISK_printmetrics(disk); -#ifdef __powerpc__ +#if defined (__powerpc__) || defined (__mips__) maxcyl = 9999999; maxhead = 9999999; maxsec = 9999999; |