1994-05-24 10:09:53 +00:00
|
|
|
#!/bin/sh -
|
|
|
|
#
|
|
|
|
# Copyright (c) 1984, 1986, 1990, 1993
|
|
|
|
# The Regents of the University of California. All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# 4. Neither the name of the University nor the names of its contributors
|
|
|
|
# may be used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
# SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
# @(#)newvers.sh 8.1 (Berkeley) 4/20/94
|
1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1995-03-19 07:25:41 +00:00
|
|
|
TYPE="FreeBSD"
|
2007-10-11 04:28:08 +00:00
|
|
|
REVISION="8.0"
|
2003-12-07 03:56:12 +00:00
|
|
|
BRANCH="CURRENT"
|
2005-08-19 01:49:15 +00:00
|
|
|
if [ "X${BRANCH_OVERRIDE}" != "X" ]; then
|
|
|
|
BRANCH=${BRANCH_OVERRIDE}
|
|
|
|
fi
|
1996-10-11 14:35:10 +00:00
|
|
|
RELEASE="${REVISION}-${BRANCH}"
|
This is a major rework of newvers.sh to put it back much closer to
what CSRG had, plus make things like, TYPE, REVISION, and BRANCH
easy to set, and derive RELEASE and VERSION from them.
Kill the JUST_TELL_ME hack, it is no longer needed.
Kill DISTNAME, I could find no reveference to it any place in the
source tree.
Now I just need to rework a few bits in release/Makefile, but want
to wait and talk to jkh about that.
Oh, and your now all running:
TYPE="FreeBSD"
REVISION="2.2"
BRANCH="CURRENT"
and the -BUILD-yymmdd is dead and gone. The date was already in the
version[] string, no need for it to be there in 2 formats!
1995-07-13 10:54:23 +00:00
|
|
|
VERSION="${TYPE} ${RELEASE}"
|
1995-04-22 21:39:15 +00:00
|
|
|
|
1998-05-21 19:21:46 +00:00
|
|
|
if [ "X${PARAMFILE}" != "X" ]; then
|
|
|
|
RELDATE=$(awk '/__FreeBSD_version.*propagated to newvers/ {print $3}' \
|
|
|
|
${PARAMFILE})
|
|
|
|
else
|
|
|
|
RELDATE=$(awk '/__FreeBSD_version.*propagated to newvers/ {print $3}' \
|
|
|
|
$(dirname $0)/../sys/param.h)
|
|
|
|
fi
|
|
|
|
|
1995-03-19 07:25:41 +00:00
|
|
|
|
1996-08-04 22:34:23 +00:00
|
|
|
b=share/examples/etc/bsd-style-copyright
|
|
|
|
year=`date '+%Y'`
|
|
|
|
# look for copyright template
|
|
|
|
for bsd_copyright in ../$b ../../$b ../../../$b /usr/src/$b /usr/$b
|
|
|
|
do
|
|
|
|
if [ -r "$bsd_copyright" ]; then
|
1997-07-09 20:38:19 +00:00
|
|
|
COPYRIGHT=`sed \
|
2004-01-11 14:13:29 +00:00
|
|
|
-e "s/\[year\]/1992-$year/" \
|
2004-01-10 16:24:22 +00:00
|
|
|
-e 's/\[your name here\]\.* /The FreeBSD Project./' \
|
|
|
|
-e 's/\[your name\]\.*/The FreeBSD Project./' \
|
1997-07-09 20:38:19 +00:00
|
|
|
-e '/\[id for your version control system, if any\]/d' \
|
|
|
|
$bsd_copyright`
|
1996-08-04 22:34:23 +00:00
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# no copyright found, use a dummy
|
|
|
|
if [ X"$COPYRIGHT" = X ]; then
|
2005-01-12 21:28:25 +00:00
|
|
|
COPYRIGHT="/*-
|
2004-01-11 14:13:29 +00:00
|
|
|
* Copyright (c) 1992-$year The FreeBSD Project.
|
2004-01-10 15:38:47 +00:00
|
|
|
* All rights reserved.
|
1996-08-04 22:34:23 +00:00
|
|
|
*
|
|
|
|
*/"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# add newline
|
|
|
|
COPYRIGHT="$COPYRIGHT
|
|
|
|
"
|
|
|
|
|
2001-03-02 16:52:14 +00:00
|
|
|
LC_ALL=C; export LC_ALL
|
This is a major rework of newvers.sh to put it back much closer to
what CSRG had, plus make things like, TYPE, REVISION, and BRANCH
easy to set, and derive RELEASE and VERSION from them.
Kill the JUST_TELL_ME hack, it is no longer needed.
Kill DISTNAME, I could find no reveference to it any place in the
source tree.
Now I just need to rework a few bits in release/Makefile, but want
to wait and talk to jkh about that.
Oh, and your now all running:
TYPE="FreeBSD"
REVISION="2.2"
BRANCH="CURRENT"
and the -BUILD-yymmdd is dead and gone. The date was already in the
version[] string, no need for it to be there in 2 formats!
1995-07-13 10:54:23 +00:00
|
|
|
if [ ! -r version ]
|
1994-05-24 10:09:53 +00:00
|
|
|
then
|
This is a major rework of newvers.sh to put it back much closer to
what CSRG had, plus make things like, TYPE, REVISION, and BRANCH
easy to set, and derive RELEASE and VERSION from them.
Kill the JUST_TELL_ME hack, it is no longer needed.
Kill DISTNAME, I could find no reveference to it any place in the
source tree.
Now I just need to rework a few bits in release/Makefile, but want
to wait and talk to jkh about that.
Oh, and your now all running:
TYPE="FreeBSD"
REVISION="2.2"
BRANCH="CURRENT"
and the -BUILD-yymmdd is dead and gone. The date was already in the
version[] string, no need for it to be there in 2 formats!
1995-07-13 10:54:23 +00:00
|
|
|
echo 0 > version
|
|
|
|
fi
|
1994-05-24 10:09:53 +00:00
|
|
|
|
This is a major rework of newvers.sh to put it back much closer to
what CSRG had, plus make things like, TYPE, REVISION, and BRANCH
easy to set, and derive RELEASE and VERSION from them.
Kill the JUST_TELL_ME hack, it is no longer needed.
Kill DISTNAME, I could find no reveference to it any place in the
source tree.
Now I just need to rework a few bits in release/Makefile, but want
to wait and talk to jkh about that.
Oh, and your now all running:
TYPE="FreeBSD"
REVISION="2.2"
BRANCH="CURRENT"
and the -BUILD-yymmdd is dead and gone. The date was already in the
version[] string, no need for it to be there in 2 formats!
1995-07-13 10:54:23 +00:00
|
|
|
touch version
|
2005-01-15 13:25:41 +00:00
|
|
|
v=`cat version` u=${USER:-root} d=`pwd` h=${HOSTNAME:-`hostname`} t=`date`
|
2004-09-17 09:17:33 +00:00
|
|
|
i=`${MAKE:-make} -V KERN_IDENT`
|
2008-06-07 09:49:57 +00:00
|
|
|
|
2008-06-08 19:46:23 +00:00
|
|
|
for dir in /bin /usr/bin /usr/local/bin; do
|
|
|
|
if [ -x "${dir}/svnversion" ]; then
|
|
|
|
svnversion=${dir}/svnversion
|
|
|
|
SRCDIR=${d##*obj}
|
2009-01-20 21:37:41 +00:00
|
|
|
if [ -n "$MACHINE" ]; then
|
|
|
|
SRCDIR=${SRCDIR##/$MACHINE}
|
|
|
|
fi
|
2008-06-08 19:46:23 +00:00
|
|
|
SRCDIR=${SRCDIR%%/sys/*}
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ -n "$svnversion" -a -d "${SRCDIR}/.svn" ] ; then
|
2009-03-28 23:17:18 +00:00
|
|
|
# If we are called from the kernel build, limit
|
|
|
|
# the scope of svnversion to sys/ .
|
|
|
|
if [ -e "${SRCDIR}/sys/conf/newvers.sh" ] ; then
|
|
|
|
svn=" r`cd $SRCDIR/sys && $svnversion`"
|
|
|
|
else
|
|
|
|
svn=" r`cd $SRCDIR && $svnversion`"
|
|
|
|
fi
|
2008-06-07 09:49:57 +00:00
|
|
|
else
|
|
|
|
svn=""
|
|
|
|
fi
|
|
|
|
|
1999-08-08 07:51:16 +00:00
|
|
|
cat << EOF > vers.c
|
|
|
|
$COPYRIGHT
|
2008-06-07 09:49:57 +00:00
|
|
|
#define SCCSSTR "@(#)${VERSION} #${v}${svn}: ${t}"
|
|
|
|
#define VERSTR "${VERSION} #${v}${svn}: ${t}\\n ${u}@${h}:${d}\\n"
|
2005-08-19 01:49:15 +00:00
|
|
|
#define RELSTR "${RELEASE}"
|
|
|
|
|
|
|
|
char sccs[sizeof(SCCSSTR) > 128 ? sizeof(SCCSSTR) : 128] = SCCSSTR;
|
|
|
|
char version[sizeof(VERSTR) > 256 ? sizeof(VERSTR) : 256] = VERSTR;
|
1999-08-08 07:51:16 +00:00
|
|
|
char ostype[] = "${TYPE}";
|
2005-08-19 01:49:15 +00:00
|
|
|
char osrelease[sizeof(RELSTR) > 32 ? sizeof(RELSTR) : 32] = RELSTR;
|
1999-08-08 07:51:16 +00:00
|
|
|
int osreldate = ${RELDATE};
|
2003-06-09 18:19:33 +00:00
|
|
|
char kern_ident[] = "${i}";
|
1999-08-08 07:51:16 +00:00
|
|
|
EOF
|
1994-05-24 10:09:53 +00:00
|
|
|
|
This is a major rework of newvers.sh to put it back much closer to
what CSRG had, plus make things like, TYPE, REVISION, and BRANCH
easy to set, and derive RELEASE and VERSION from them.
Kill the JUST_TELL_ME hack, it is no longer needed.
Kill DISTNAME, I could find no reveference to it any place in the
source tree.
Now I just need to rework a few bits in release/Makefile, but want
to wait and talk to jkh about that.
Oh, and your now all running:
TYPE="FreeBSD"
REVISION="2.2"
BRANCH="CURRENT"
and the -BUILD-yymmdd is dead and gone. The date was already in the
version[] string, no need for it to be there in 2 formats!
1995-07-13 10:54:23 +00:00
|
|
|
echo `expr ${v} + 1` > version
|