From 68e53e7549e96e72fea152e404bcecb473980859 Mon Sep 17 00:00:00 2001 From: "Jayachandran C." Date: Thu, 23 Sep 2010 05:24:50 +0000 Subject: [PATCH] Add MIPS platform, this will make bsdlabel(8) work on MIPS (when invoked without a -m option. -m mips is still not supported) --- sys/sys/disklabel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/disklabel.h b/sys/sys/disklabel.h index c6584949fe3..31cefd1eb12 100644 --- a/sys/sys/disklabel.h +++ b/sys/sys/disklabel.h @@ -52,7 +52,7 @@ /* XXX these should be defined per controller (or drive) elsewhere, not here! */ #if defined(__i386__) || defined(__amd64__) || defined(__arm__) || \ - defined(__ia64__) || defined(__powerpc__) + defined(__ia64__) || defined(__powerpc__) || defined(__mips__) #define LABELSECTOR 1 /* sector containing label */ #define LABELOFFSET 0 /* offset of label in sector */ #endif