svn commit: r336353 - in head: sys/conf usr.sbin/config

Kyle Evans kevans at FreeBSD.org
Mon Jul 16 19:05:53 UTC 2018


Author: kevans
Date: Mon Jul 16 19:05:50 2018
New Revision: 336353
URL: https://svnweb.freebsd.org/changeset/base/336353

Log:
  config(8): Bump major version after r335998
  
  config-generated hints.c/env.c from r335998 and later are incompatible with
  earlier kernels due to no longer setting envmode/hintmode. A minor bump for
  this is insufficient, as matching major version with a later minor version
  is still viewed as backwards-compatible.
  
  This was an MI kernel change, soo all VERSREQ's are bumped.

Modified:
  head/sys/conf/Makefile.amd64
  head/sys/conf/Makefile.arm
  head/sys/conf/Makefile.arm64
  head/sys/conf/Makefile.i386
  head/sys/conf/Makefile.mips
  head/sys/conf/Makefile.powerpc
  head/sys/conf/Makefile.riscv
  head/sys/conf/Makefile.sparc64
  head/usr.sbin/config/configvers.h

Modified: head/sys/conf/Makefile.amd64
==============================================================================
--- head/sys/conf/Makefile.amd64	Mon Jul 16 19:01:05 2018	(r336352)
+++ head/sys/conf/Makefile.amd64	Mon Jul 16 19:05:50 2018	(r336353)
@@ -18,7 +18,7 @@
 #
 
 # Which version of config(8) is required.
-%VERSREQ=	600012
+%VERSREQ=	700000
 
 STD8X16FONT?=	iso
 

Modified: head/sys/conf/Makefile.arm
==============================================================================
--- head/sys/conf/Makefile.arm	Mon Jul 16 19:01:05 2018	(r336352)
+++ head/sys/conf/Makefile.arm	Mon Jul 16 19:05:50 2018	(r336353)
@@ -17,7 +17,7 @@
 #
 
 # Which version of config(8) is required.
-%VERSREQ=	600013
+%VERSREQ=	700000
 
 STD8X16FONT?=	iso
 

Modified: head/sys/conf/Makefile.arm64
==============================================================================
--- head/sys/conf/Makefile.arm64	Mon Jul 16 19:01:05 2018	(r336352)
+++ head/sys/conf/Makefile.arm64	Mon Jul 16 19:05:50 2018	(r336353)
@@ -18,7 +18,7 @@
 #
 
 # Which version of config(8) is required.
-%VERSREQ=	600012
+%VERSREQ=	700000
 
 .if !defined(S)
 S=	../../..

Modified: head/sys/conf/Makefile.i386
==============================================================================
--- head/sys/conf/Makefile.i386	Mon Jul 16 19:01:05 2018	(r336352)
+++ head/sys/conf/Makefile.i386	Mon Jul 16 19:05:50 2018	(r336353)
@@ -17,7 +17,7 @@
 #
 
 # Which version of config(8) is required.
-%VERSREQ=	600012
+%VERSREQ=	700000
 
 STD8X16FONT?=	iso
 

Modified: head/sys/conf/Makefile.mips
==============================================================================
--- head/sys/conf/Makefile.mips	Mon Jul 16 19:01:05 2018	(r336352)
+++ head/sys/conf/Makefile.mips	Mon Jul 16 19:05:50 2018	(r336353)
@@ -15,7 +15,7 @@
 #
 
 # Which version of config(8) is required.
-%VERSREQ=	600012
+%VERSREQ=	700000
 
 STD8X16FONT?=	iso
 

Modified: head/sys/conf/Makefile.powerpc
==============================================================================
--- head/sys/conf/Makefile.powerpc	Mon Jul 16 19:01:05 2018	(r336352)
+++ head/sys/conf/Makefile.powerpc	Mon Jul 16 19:05:50 2018	(r336353)
@@ -17,7 +17,7 @@
 #
 
 # Which version of config(8) is required.
-%VERSREQ=	600012
+%VERSREQ=	700000
 
 STD8X16FONT?=	iso
 

Modified: head/sys/conf/Makefile.riscv
==============================================================================
--- head/sys/conf/Makefile.riscv	Mon Jul 16 19:01:05 2018	(r336352)
+++ head/sys/conf/Makefile.riscv	Mon Jul 16 19:05:50 2018	(r336353)
@@ -19,7 +19,7 @@
 #
 
 # Which version of config(8) is required.
-%VERSREQ=	600012
+%VERSREQ=	700000
 
 .if !defined(S)
 S=	../../..

Modified: head/sys/conf/Makefile.sparc64
==============================================================================
--- head/sys/conf/Makefile.sparc64	Mon Jul 16 19:01:05 2018	(r336352)
+++ head/sys/conf/Makefile.sparc64	Mon Jul 16 19:05:50 2018	(r336353)
@@ -17,7 +17,7 @@
 #
 
 # Which version of config(8) is required.
-%VERSREQ=	600012
+%VERSREQ=	700000
 
 STD8X16FONT?=	iso
 

Modified: head/usr.sbin/config/configvers.h
==============================================================================
--- head/usr.sbin/config/configvers.h	Mon Jul 16 19:01:05 2018	(r336352)
+++ head/usr.sbin/config/configvers.h	Mon Jul 16 19:05:50 2018	(r336353)
@@ -49,5 +49,5 @@
  *
  * $FreeBSD$
  */
-#define	CONFIGVERS	600015
+#define	CONFIGVERS	700000
 #define	MAJOR_VERS(x)	((x) / 100000)


More information about the svn-src-all mailing list