Add MIPS platform, this will make bsdlabel(8) work on MIPS (when invoked

without a -m option. -m mips is still not supported)
This commit is contained in:
Jayachandran C. 2010-09-23 05:24:50 +00:00
parent 831826341b
commit 68e53e7549
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=213048

View File

@ -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