Author: imp
Date: Sun May  6 07:20:48 2012
New Revision: 235072
URL: http://svn.freebsd.org/changeset/base/235072

Log:
  Fix the MACHINE_ARCH for big endian arm to be armeb.

Modified:
  head/sys/arm/include/param.h

Modified: head/sys/arm/include/param.h
==============================================================================
--- head/sys/arm/include/param.h        Sun May  6 06:25:17 2012        
(r235071)
+++ head/sys/arm/include/param.h        Sun May  6 07:20:48 2012        
(r235072)
@@ -56,8 +56,12 @@
 #define        MACHINE         "arm"
 #endif
 #ifndef MACHINE_ARCH
+#ifdef __ARMEB__
+#define        MACHINE_ARCH    "armeb"
+#else
 #define        MACHINE_ARCH    "arm"
 #endif
+#endif
 #define        MID_MACHINE     MID_ARM6 
 
 #if defined(SMP) || defined(KLD_MODULE)
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to