From owner-svn-src-releng@freebsd.org Fri Nov 1 00:00:18 2019 Return-Path: Delivered-To: svn-src-releng@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 36B1017A891; Fri, 1 Nov 2019 00:00:18 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4742Pt0Wc5z40Zs; Fri, 1 Nov 2019 00:00:18 +0000 (UTC) (envelope-from gjb@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 E8DF7269F; Fri, 1 Nov 2019 00:00:17 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xA100HXW049534; Fri, 1 Nov 2019 00:00:17 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xA100H3Z049532; Fri, 1 Nov 2019 00:00:17 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201911010000.xA100H3Z049532@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Fri, 1 Nov 2019 00:00:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-releng@freebsd.org Subject: svn commit: r354233 - in releng/12.1: . lib/csu/common sys/conf X-SVN-Group: releng X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: in releng/12.1: . lib/csu/common sys/conf X-SVN-Commit-Revision: 354233 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-releng@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the release engineering / security commits to the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Nov 2019 00:00:18 -0000 Author: gjb Date: Fri Nov 1 00:00:17 2019 New Revision: 354233 URL: https://svnweb.freebsd.org/changeset/base/354233 Log: - Switch releng/12.1 from RC2 to RELEASE. - Add the anticipated 12.1-RELEASE date to UPDATING. - Set a static __FreeBSD_version. Approved by: re (implicit) Sponsored by: Rubicon Communications, LLC (Netgate) Modified: releng/12.1/UPDATING releng/12.1/lib/csu/common/crtbrand.c releng/12.1/sys/conf/newvers.sh Modified: releng/12.1/UPDATING ============================================================================== --- releng/12.1/UPDATING Thu Oct 31 22:29:13 2019 (r354232) +++ releng/12.1/UPDATING Fri Nov 1 00:00:17 2019 (r354233) @@ -16,6 +16,9 @@ from older versions of FreeBSD, try WITHOUT_CLANG and the tip of head, and then rebuild without this option. The bootstrap process from older version of current across the gcc/clang cutover is a bit fragile. +20191104: + 12.1-RELEASE. + 20190914: The vfs.fusefs.sync_unmount and vfs.fusefs.init_backgrounded sysctls and the "-o sync_unmount" and "-o init_backgrounded" mount options have Modified: releng/12.1/lib/csu/common/crtbrand.c ============================================================================== --- releng/12.1/lib/csu/common/crtbrand.c Thu Oct 31 22:29:13 2019 (r354232) +++ releng/12.1/lib/csu/common/crtbrand.c Fri Nov 1 00:00:17 2019 (r354233) @@ -65,5 +65,5 @@ static const struct { .descsz = sizeof(int32_t), .type = NT_FREEBSD_ABI_TAG, .name = NOTE_FREEBSD_VENDOR, - .desc = __FreeBSD_version + .desc = 1201000 }; Modified: releng/12.1/sys/conf/newvers.sh ============================================================================== --- releng/12.1/sys/conf/newvers.sh Thu Oct 31 22:29:13 2019 (r354232) +++ releng/12.1/sys/conf/newvers.sh Fri Nov 1 00:00:17 2019 (r354233) @@ -46,7 +46,7 @@ TYPE="FreeBSD" REVISION="12.1" -BRANCH="RC2" +BRANCH="RELEASE" if [ -n "${BRANCH_OVERRIDE}" ]; then BRANCH=${BRANCH_OVERRIDE} fi