svn commit: r305256 - in head: . sys/sys

Bryan Drewery bdrewery at FreeBSD.org
Thu Sep 1 23:22:33 UTC 2016


Author: bdrewery
Date: Thu Sep  1 23:22:31 2016
New Revision: 305256
URL: https://svnweb.freebsd.org/changeset/base/305256

Log:
  Bump __FreeBSD_version for crunchgen META_MODE fix in r305254.
  
  MFC after:	2 weeks
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/Makefile.inc1
  head/sys/sys/param.h

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Thu Sep  1 23:21:12 2016	(r305255)
+++ head/Makefile.inc1	Thu Sep  1 23:22:31 2016	(r305256)
@@ -1628,8 +1628,10 @@ _crunchide=	usr.sbin/crunch/crunchide
 
 # r285986 crunchen: use STRIPBIN rather than STRIP
 # 1100113: Support MK_AUTO_OBJ
+# 1200006: META_MODE fixes
 .if ${BOOTSTRAPPING} < 1100078 || \
-    (${MK_AUTO_OBJ} == "yes" && ${BOOTSTRAPPING} < 1100114)
+    (${MK_AUTO_OBJ} == "yes" && ${BOOTSTRAPPING} < 1100114) || \
+    (${MK_META_MODE} == "yes" && ${BOOTSTRAPPING} < 1200006)
 _crunchgen=	usr.sbin/crunch/crunchgen
 .endif
 

Modified: head/sys/sys/param.h
==============================================================================
--- head/sys/sys/param.h	Thu Sep  1 23:21:12 2016	(r305255)
+++ head/sys/sys/param.h	Thu Sep  1 23:22:31 2016	(r305256)
@@ -58,7 +58,7 @@
  *		in the range 5 to 9.
  */
 #undef __FreeBSD_version
-#define __FreeBSD_version 1200005	/* Master, propagated to newvers */
+#define __FreeBSD_version 1200006	/* Master, propagated to newvers */
 
 /*
  * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,


More information about the svn-src-all mailing list