summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2001-04-15 02:35:11 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2001-04-15 02:35:11 +0000
commit0e15fd71bace19e84113081c2746b8ca891bd31f (patch)
tree9a498f56b46fdc887e6c5eaa5052f2243392d2c1 /sys
parent429ba579e2e70810233741206ef1add733dfd4ea (diff)
move to 2.9-beta
Diffstat (limited to 'sys')
-rw-r--r--sys/conf/newvers.sh8
-rw-r--r--sys/sys/param.h6
2 files changed, 7 insertions, 7 deletions
diff --git a/sys/conf/newvers.sh b/sys/conf/newvers.sh
index 3986596c69b..7549b709c40 100644
--- a/sys/conf/newvers.sh
+++ b/sys/conf/newvers.sh
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: newvers.sh,v 1.29 2000/11/07 23:36:10 deraadt Exp $
+# $OpenBSD: newvers.sh,v 1.30 2001/04/15 02:35:09 deraadt Exp $
# $NetBSD: newvers.sh,v 1.17.2.1 1995/10/12 05:17:11 jtc Exp $
#
# Copyright (c) 1984, 1986, 1990, 1993
@@ -52,7 +52,7 @@ id=`basename ${d}`
# src/share/tmac/mdoc/doc-common
# change . ds oS OpenBSD X.X
# add . if "\\$2"X.X" .as oS \0X.X
-# src/share/tmac/mdocs/doc-syms
+# src/share/tmac/mdoc/doc-syms
# ensure new release is listed
# src/share/mk/sys.mk
# OSMAJOR
@@ -62,7 +62,7 @@ id=`basename ${d}`
#
ost="OpenBSD"
-osr="2.8"
+osr="2.9"
cat >vers.c <<eof
char ostype[] = "${ost}";
@@ -70,7 +70,7 @@ char osrelease[] = "${osr}";
char osversion[] = "${id}#${v}";
char sccs[8] = { ' ', ' ', ' ', ' ', '@', '(', '#', ')' };
char version[] =
- "${ost} ${osr}-current (${id}) #${v}: ${t}\n ${u}@${h}:${d}\n";
+ "${ost} ${osr}-beta (${id}) #${v}: ${t}\n ${u}@${h}:${d}\n";
eof
expr ${v} + 1 > version
diff --git a/sys/sys/param.h b/sys/sys/param.h
index 0a3196719c6..5aa9adc493f 100644
--- a/sys/sys/param.h
+++ b/sys/sys/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.35 2001/04/07 08:04:49 deraadt Exp $ */
+/* $OpenBSD: param.h,v 1.36 2001/04/15 02:35:09 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 200012 /* OpenBSD version (year & month). */
-#define OpenBSD2_8 1 /* OpenBSD 2.8 */
+#define OpenBSD 200105 /* OpenBSD version (year & month). */
+#define OpenBSD2_9 1 /* OpenBSD 2.9 */
#ifndef NULL
#ifdef __GNUG__