Make head 9.0-CURRENT in preparation for lifting code freeze.

Approved by:	re (implicit)
This commit is contained in:
Ken Smith 2009-08-22 23:44:37 +00:00
parent c4b21cbe4a
commit cf48cc9f69
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=196432
6 changed files with 14 additions and 11 deletions

View File

@ -8,8 +8,8 @@ Items affecting the ports and packages system can be found in
/usr/ports/UPDATING. Please read that file before running /usr/ports/UPDATING. Please read that file before running
portupgrade. portupgrade.
NOTE TO PEOPLE WHO THINK THAT FreeBSD 8.x IS SLOW: NOTE TO PEOPLE WHO THINK THAT FreeBSD 9.x IS SLOW:
FreeBSD 8.x has many debugging features turned on, in FreeBSD 9.x has many debugging features turned on, in
both the kernel and userland. These features attempt to detect both the kernel and userland. These features attempt to detect
incorrect use of system primitives, and encourage loud failure incorrect use of system primitives, and encourage loud failure
through extra sanity checking and fail stop semantics. They through extra sanity checking and fail stop semantics. They

View File

@ -66,13 +66,14 @@
.ds doc-volume-as-arm arm .ds doc-volume-as-arm arm
. .
.\" Default .Os value .\" Default .Os value
.ds doc-default-operating-system FreeBSD\~8.0 .ds doc-default-operating-system FreeBSD\~9.0
. .
.\" FreeBSD releases not found in doc-common .\" FreeBSD releases not found in doc-common
.ds doc-operating-system-FreeBSD-6.3 6.3 .ds doc-operating-system-FreeBSD-6.3 6.3
.ds doc-operating-system-FreeBSD-6.4 6.4 .ds doc-operating-system-FreeBSD-6.4 6.4
.ds doc-operating-system-FreeBSD-7.1 7.1 .ds doc-operating-system-FreeBSD-7.1 7.1
.ds doc-operating-system-FreeBSD-8.0 8.0 .ds doc-operating-system-FreeBSD-8.0 8.0
.ds doc-operating-system-FreeBSD-9.0 9.0
. .
.\" Definitions not (yet) in doc-syms .\" Definitions not (yet) in doc-syms
.ds doc-str-St--p1003.1-2008 \*[doc-Tn-font-size]\%IEEE\*[doc-str-St] Std 1003.1-2008 .ds doc-str-St--p1003.1-2008 \*[doc-Tn-font-size]\%IEEE\*[doc-str-St] Std 1003.1-2008

View File

@ -24,16 +24,16 @@
# Set these, release builder! # Set these, release builder!
# #
# Fixed version: # Fixed version:
#BUILDNAME=8.0-CURRENT #BUILDNAME=9.0-CURRENT
# #
# Automatic SNAP versioning: # Automatic SNAP versioning:
DATE != date +%Y%m%d DATE != date +%Y%m%d
BASE = 8.0 BASE = 9.0
BUILDNAME?=${BASE}-${DATE}-SNAP BUILDNAME?=${BASE}-${DATE}-SNAP
# #
#CHROOTDIR=/junk/release #CHROOTDIR=/junk/release
# If this is a -stable snapshot, then set # If this is a -stable snapshot, then set
#RELEASETAG=RELENG_7 #RELEASETAG=RELENG_8
# #
# To test a release with a source tree containing patches and # To test a release with a source tree containing patches and
# other work. This tree will get copied instead of getting the # other work. This tree will get copied instead of getting the
@ -72,7 +72,7 @@ BUILDNAME?=${BASE}-${DATE}-SNAP
# #
# Subversion branch to build for src. If this is not set then it is # Subversion branch to build for src. If this is not set then it is
# automatically computed from RELEASETAG. # automatically computed from RELEASETAG.
#SVNBRANCH=stable/7 #SVNBRANCH=stable/8
# #
# Non-zero if ${RELEASETAG} is in the form "RELENG_ver_RELEASE"; we # Non-zero if ${RELEASETAG} is in the form "RELENG_ver_RELEASE"; we
# are building an official release. Otherwise, we are building for # are building an official release. Otherwise, we are building for

View File

@ -31,8 +31,8 @@
# $FreeBSD$ # $FreeBSD$
TYPE="FreeBSD" TYPE="FreeBSD"
REVISION="8.0" REVISION="9.0"
BRANCH="BETA2" BRANCH="CURRENT"
if [ "X${BRANCH_OVERRIDE}" != "X" ]; then if [ "X${BRANCH_OVERRIDE}" != "X" ]; then
BRANCH=${BRANCH_OVERRIDE} BRANCH=${BRANCH_OVERRIDE}
fi fi

View File

@ -58,7 +58,7 @@
* in the range 5 to 9. * in the range 5 to 9.
*/ */
#undef __FreeBSD_version #undef __FreeBSD_version
#define __FreeBSD_version 800107 /* Master, propagated to newvers */ #define __FreeBSD_version 900000 /* Master, propagated to newvers */
#ifndef LOCORE #ifndef LOCORE
#include <sys/types.h> #include <sys/types.h>

View File

@ -82,13 +82,15 @@ struct {
{ 700000, 700099, "/packages-7.0-release" }, { 700000, 700099, "/packages-7.0-release" },
{ 701000, 701099, "/packages-7.1-release" }, { 701000, 701099, "/packages-7.1-release" },
{ 702000, 702099, "/packages-7.2-release" }, { 702000, 702099, "/packages-7.2-release" },
{ 800000, 800499, "/packages-8.0-release" },
{ 300000, 399000, "/packages-3-stable" }, { 300000, 399000, "/packages-3-stable" },
{ 400000, 499000, "/packages-4-stable" }, { 400000, 499000, "/packages-4-stable" },
{ 502100, 502128, "/packages-5-current" }, { 502100, 502128, "/packages-5-current" },
{ 503100, 599000, "/packages-5-stable" }, { 503100, 599000, "/packages-5-stable" },
{ 600100, 699000, "/packages-6-stable" }, { 600100, 699000, "/packages-6-stable" },
{ 700100, 799000, "/packages-7-stable" }, { 700100, 799000, "/packages-7-stable" },
{ 800000, 899000, "/packages-8-current" }, { 800000, 899000, "/packages-8-stable" },
{ 900000, 999000, "/packages-9-current" },
{ 0, 9999999, "/packages-current" }, { 0, 9999999, "/packages-current" },
{ 0, 0, NULL } { 0, 0, NULL }
}; };