From owner-svn-src-all@freebsd.org Mon Jul 16 19:05:53 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA653103818C; Mon, 16 Jul 2018 19:05:52 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9A38E7F20B; Mon, 16 Jul 2018 19:05:52 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7409E20AA5; Mon, 16 Jul 2018 19:05:52 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6GJ5q69076835; Mon, 16 Jul 2018 19:05:52 GMT (envelope-from kevans@FreeBSD.org) Received: (from kevans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6GJ5oP1076822; Mon, 16 Jul 2018 19:05:50 GMT (envelope-from kevans@FreeBSD.org) Message-Id: <201807161905.w6GJ5oP1076822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevans set sender to kevans@FreeBSD.org using -f From: Kyle Evans Date: Mon, 16 Jul 2018 19:05:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r336353 - in head: sys/conf usr.sbin/config X-SVN-Group: head X-SVN-Commit-Author: kevans X-SVN-Commit-Paths: in head: sys/conf usr.sbin/config X-SVN-Commit-Revision: 336353 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jul 2018 19:05:53 -0000 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)