diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2010-02-17 20:19:06 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2010-02-17 20:19:06 +0000 |
commit | cb6be95ae74a96973efc6c14b8ace9478dd32b63 (patch) | |
tree | 88098105f5776d110bcb5183b0ff64923ea46192 /sbin | |
parent | d84c8b254681a733349d100c69a273558ccbe77d (diff) |
loongson has mbr as well; ok miod@ (but he made me promise to make
a -DHAVE_MBR diff after release)
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/fdisk/fdisk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fdisk/fdisk.c b/sbin/fdisk/fdisk.c index 80e03c8399e..c1f5ef763c0 100644 --- a/sbin/fdisk/fdisk.c +++ b/sbin/fdisk/fdisk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fdisk.c,v 1.48 2007/12/30 13:20:13 sobrado Exp $ */ +/* $OpenBSD: fdisk.c,v 1.49 2010/02/17 20:19:05 otto Exp $ */ /* * Copyright (c) 1997 Tobias Weingartner @@ -72,7 +72,7 @@ main(int argc, char *argv[]) disk_t disk; DISK_metrics *usermetrics; #if defined(__amd64__) || defined(__i386__) || defined (__powerpc__) || \ - defined(__sh__) + defined(__sh__) || defined(__MIPSEL__) char *mbrfile = _PATH_MBR; #else char *mbrfile = NULL; |