2007-11-17 00:48:19 +03:00
|
|
|
#!/bin/sh -
|
1994-06-29 10:29:24 +04:00
|
|
|
#
|
2010-01-11 02:55:03 +03:00
|
|
|
# $NetBSD: newvers.sh,v 1.57 2010/01/10 23:55:03 snj Exp $
|
1993-03-21 12:45:37 +03:00
|
|
|
#
|
1994-05-05 09:35:42 +04:00
|
|
|
# Copyright (c) 1984, 1986, 1990, 1993
|
|
|
|
# The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
#
|
|
|
|
# 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.
|
2010-01-11 02:55:03 +03:00
|
|
|
# 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
# 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.
|
|
|
|
#
|
1994-06-27 23:40:57 +04:00
|
|
|
# @(#)newvers.sh 8.1 (Berkeley) 4/20/94
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2004-01-05 06:33:06 +03:00
|
|
|
if [ ! -e version ]; then
|
1993-03-21 12:45:37 +03:00
|
|
|
echo 0 > version
|
|
|
|
fi
|
|
|
|
|
2003-10-14 18:23:10 +04:00
|
|
|
v=$(cat version)
|
2009-02-20 16:41:27 +03:00
|
|
|
t=$(LC_ALL=C date)
|
2003-10-14 18:23:10 +04:00
|
|
|
u=${USER-root}
|
|
|
|
h=$(hostname)
|
|
|
|
d=$(pwd)
|
2004-01-05 06:33:06 +03:00
|
|
|
cwd=$(dirname $0)
|
2005-02-13 12:13:04 +03:00
|
|
|
copyright=$(awk '{ printf("\"%s\\n\"", $0); }' ${cwd}/copyright)
|
2003-03-03 01:17:30 +03:00
|
|
|
|
2009-12-16 23:54:49 +03:00
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
|
|
|
-r)
|
2009-12-17 00:25:03 +03:00
|
|
|
rflag=true
|
2009-12-16 23:54:49 +03:00
|
|
|
;;
|
|
|
|
-i)
|
2009-12-17 00:25:03 +03:00
|
|
|
id="$2"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-n)
|
|
|
|
nflag=true
|
|
|
|
;;
|
2009-12-16 23:54:49 +03:00
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2009-12-17 00:25:03 +03:00
|
|
|
if [ -z "${id}" ]; then
|
|
|
|
if [ -f ident ]; then
|
|
|
|
id="$(cat ident)"
|
|
|
|
else
|
|
|
|
id=$(basename ${d})
|
|
|
|
fi
|
2000-01-24 02:39:19 +03:00
|
|
|
fi
|
2003-03-03 01:17:30 +03:00
|
|
|
|
2004-01-05 06:33:06 +03:00
|
|
|
osrelcmd=${cwd}/osrelease.sh
|
1994-05-05 09:35:42 +04:00
|
|
|
|
|
|
|
ost="NetBSD"
|
2003-03-03 01:17:30 +03:00
|
|
|
osr=$(sh $osrelcmd)
|
|
|
|
|
2009-12-17 00:25:03 +03:00
|
|
|
if [ ! -z "${rflag}" ]; then
|
2009-03-30 20:29:55 +04:00
|
|
|
fullversion="${ost} ${osr} (${id})\n"
|
2009-12-17 00:25:03 +03:00
|
|
|
else
|
2009-03-30 20:29:55 +04:00
|
|
|
fullversion="${ost} ${osr} (${id}) #${v}: ${t}\n\t${u}@${h}:${d}\n"
|
2009-12-17 00:25:03 +03:00
|
|
|
fi
|
2003-10-15 05:28:49 +04:00
|
|
|
|
2009-12-16 23:54:49 +03:00
|
|
|
echo $(expr ${v} + 1) > version
|
|
|
|
|
2003-03-03 01:17:30 +03:00
|
|
|
cat << _EOF > vers.c
|
|
|
|
/*
|
|
|
|
* Automatically generated file from $0
|
|
|
|
* Do not edit.
|
|
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/exec.h>
|
|
|
|
#include <sys/exec_elf.h>
|
|
|
|
|
|
|
|
const char ostype[] = "${ost}";
|
|
|
|
const char osrelease[] = "${osr}";
|
2003-10-15 05:28:49 +04:00
|
|
|
const char sccs[] = "@(#)${fullversion}";
|
|
|
|
const char version[] = "${fullversion}";
|
2005-06-23 04:30:28 +04:00
|
|
|
const char kernel_ident[] = "${id}";
|
2004-01-05 06:33:06 +03:00
|
|
|
const char copyright[] =
|
|
|
|
${copyright}
|
|
|
|
"\n";
|
2009-12-16 23:54:49 +03:00
|
|
|
_EOF
|
|
|
|
|
2009-12-17 00:25:03 +03:00
|
|
|
[ ! -z "${nflag}" ] && exit 0
|
2009-12-16 23:54:49 +03:00
|
|
|
|
|
|
|
cat << _EOF >> vers.c
|
1994-05-05 09:35:42 +04:00
|
|
|
|
2003-03-03 01:17:30 +03:00
|
|
|
/*
|
|
|
|
* NetBSD identity note.
|
|
|
|
*/
|
2007-11-17 11:59:51 +03:00
|
|
|
#ifdef __arm__
|
|
|
|
#define _SHT_NOTE %note
|
|
|
|
#else
|
|
|
|
#define _SHT_NOTE @note
|
|
|
|
#endif
|
|
|
|
|
2003-03-03 01:17:30 +03:00
|
|
|
#define _S(TAG) __STRING(TAG)
|
|
|
|
__asm(
|
2007-11-17 11:59:51 +03:00
|
|
|
".section\t\".note.netbsd.ident\", \"\"," _S(_SHT_NOTE) "\n"
|
2003-03-03 01:17:30 +03:00
|
|
|
"\t.p2align\t2\n"
|
|
|
|
"\t.long\t" _S(ELF_NOTE_NETBSD_NAMESZ) "\n"
|
|
|
|
"\t.long\t" _S(ELF_NOTE_NETBSD_DESCSZ) "\n"
|
|
|
|
"\t.long\t" _S(ELF_NOTE_TYPE_NETBSD_TAG) "\n"
|
|
|
|
"\t.ascii\t" _S(ELF_NOTE_NETBSD_NAME) "\n"
|
|
|
|
"\t.long\t" _S(__NetBSD_Version__) "\n"
|
|
|
|
"\t.p2align\t2\n"
|
|
|
|
);
|
1993-04-03 05:40:55 +04:00
|
|
|
|
2003-03-03 01:17:30 +03:00
|
|
|
_EOF
|