summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/conf/newvers.sh6
-rw-r--r--sys/sys/param.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/conf/newvers.sh b/sys/conf/newvers.sh
index f20d350acfa..03605f736e7 100644
--- a/sys/conf/newvers.sh
+++ b/sys/conf/newvers.sh
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: newvers.sh,v 1.22 1999/11/27 20:51:48 deraadt Exp $
+# $OpenBSD: newvers.sh,v 1.23 2000/04/08 05:06:25 deraadt Exp $
# $NetBSD: newvers.sh,v 1.17.2.1 1995/10/12 05:17:11 jtc Exp $
#
# Copyright (c) 1984, 1986, 1990, 1993
@@ -62,7 +62,7 @@ id=`basename ${d}`
#
ost="OpenBSD"
-osr="2.6"
+osr="2.7"
echo "char ostype[] = \"${ost}\";" > vers.c
echo "char osrelease[] = \"${osr}\";" >> vers.c
@@ -70,7 +70,7 @@ echo "char osversion[] = \"${id}#${v}\";" >> vers.c
echo "char sccs[8] = { ' ', ' ', ' ', ' ', '@', '(', '#', ')' };" >> vers.c
echo \
"char version[] = \
- \"${ost} ${osr}-current (${id}) #${v}: ${t}\\n ${u}@${h}:${d}\\n\";" \
+ \"${ost} ${osr}-beta (${id}) #${v}: ${t}\\n ${u}@${h}:${d}\\n\";" \
>> vers.c
echo `expr ${v} + 1` > version
diff --git a/sys/sys/param.h b/sys/sys/param.h
index a971af102ec..cf5a9418cdd 100644
--- a/sys/sys/param.h
+++ b/sys/sys/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.27 2000/01/14 23:37:21 deraadt Exp $ */
+/* $OpenBSD: param.h,v 1.28 2000/04/08 05:06:24 deraadt Exp $ */
/* $NetBSD: param.h,v 1.23 1996/03/17 01:02:29 thorpej Exp $ */
/*-
@@ -45,8 +45,8 @@
#define BSD4_3 1
#define BSD4_4 1
-#define OpenBSD 199912 /* OpenBSD version (year & month). */
-#define OpenBSD2_6 1 /* OpenBSD 2.6 */
+#define OpenBSD 200006 /* OpenBSD version (year & month). */
+#define OpenBSD2_7 1 /* OpenBSD 2.7 */
#ifndef NULL
#ifdef __GNUG__