From owner-svn-src-all@freebsd.org Mon Jul 16 21:53:32 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 780F6103F099; Mon, 16 Jul 2018 21:53:32 +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 22D4384C82; Mon, 16 Jul 2018 21:53:32 +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 02C0A2263B; Mon, 16 Jul 2018 21:53:32 +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 w6GLrVZv063770; Mon, 16 Jul 2018 21:53:31 GMT (envelope-from kevans@FreeBSD.org) Received: (from kevans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6GLrUgr063763; Mon, 16 Jul 2018 21:53:30 GMT (envelope-from kevans@FreeBSD.org) Message-Id: <201807162153.w6GLrUgr063763@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 21:53:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r336358 - head/sys/conf X-SVN-Group: head X-SVN-Commit-Author: kevans X-SVN-Commit-Paths: head/sys/conf X-SVN-Commit-Revision: 336358 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 21:53:32 -0000 Author: kevans Date: Mon Jul 16 21:53:30 2018 New Revision: 336358 URL: https://svnweb.freebsd.org/changeset/base/336358 Log: Partially revert r336353: sys/conf/* %VERSREQ bumps The changes made in r335998 don't strictly require a newer config(8), though it is advised. The %VERSREQ bumps were premature. 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 Modified: head/sys/conf/Makefile.amd64 ============================================================================== --- head/sys/conf/Makefile.amd64 Mon Jul 16 21:32:50 2018 (r336357) +++ head/sys/conf/Makefile.amd64 Mon Jul 16 21:53:30 2018 (r336358) @@ -18,7 +18,7 @@ # # Which version of config(8) is required. -%VERSREQ= 700000 +%VERSREQ= 600012 STD8X16FONT?= iso Modified: head/sys/conf/Makefile.arm ============================================================================== --- head/sys/conf/Makefile.arm Mon Jul 16 21:32:50 2018 (r336357) +++ head/sys/conf/Makefile.arm Mon Jul 16 21:53:30 2018 (r336358) @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 700000 +%VERSREQ= 600013 STD8X16FONT?= iso Modified: head/sys/conf/Makefile.arm64 ============================================================================== --- head/sys/conf/Makefile.arm64 Mon Jul 16 21:32:50 2018 (r336357) +++ head/sys/conf/Makefile.arm64 Mon Jul 16 21:53:30 2018 (r336358) @@ -18,7 +18,7 @@ # # Which version of config(8) is required. -%VERSREQ= 700000 +%VERSREQ= 600012 .if !defined(S) S= ../../.. Modified: head/sys/conf/Makefile.i386 ============================================================================== --- head/sys/conf/Makefile.i386 Mon Jul 16 21:32:50 2018 (r336357) +++ head/sys/conf/Makefile.i386 Mon Jul 16 21:53:30 2018 (r336358) @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 700000 +%VERSREQ= 600012 STD8X16FONT?= iso Modified: head/sys/conf/Makefile.mips ============================================================================== --- head/sys/conf/Makefile.mips Mon Jul 16 21:32:50 2018 (r336357) +++ head/sys/conf/Makefile.mips Mon Jul 16 21:53:30 2018 (r336358) @@ -15,7 +15,7 @@ # # Which version of config(8) is required. -%VERSREQ= 700000 +%VERSREQ= 600012 STD8X16FONT?= iso Modified: head/sys/conf/Makefile.powerpc ============================================================================== --- head/sys/conf/Makefile.powerpc Mon Jul 16 21:32:50 2018 (r336357) +++ head/sys/conf/Makefile.powerpc Mon Jul 16 21:53:30 2018 (r336358) @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 700000 +%VERSREQ= 600012 STD8X16FONT?= iso Modified: head/sys/conf/Makefile.riscv ============================================================================== --- head/sys/conf/Makefile.riscv Mon Jul 16 21:32:50 2018 (r336357) +++ head/sys/conf/Makefile.riscv Mon Jul 16 21:53:30 2018 (r336358) @@ -19,7 +19,7 @@ # # Which version of config(8) is required. -%VERSREQ= 700000 +%VERSREQ= 600012 .if !defined(S) S= ../../.. Modified: head/sys/conf/Makefile.sparc64 ============================================================================== --- head/sys/conf/Makefile.sparc64 Mon Jul 16 21:32:50 2018 (r336357) +++ head/sys/conf/Makefile.sparc64 Mon Jul 16 21:53:30 2018 (r336358) @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 700000 +%VERSREQ= 600012 STD8X16FONT?= iso