#!/bin/sh
-# $OpenBSD: install.sub,v 1.149 2000/03/19 01:14:03 espie Exp $
+# $OpenBSD: install.sub,v 1.150 2000/04/08 05:06:25 deraadt Exp $
# $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $
#
# Copyright (c) 1997,1998 Todd Miller, Theo de Raadt
# OpenBSD installation/upgrade script - common subroutines.
ROOTDISK= # filled in below
-VERSION=26
+VERSION=27
VERSION_MAJOR=$(( $VERSION / 10 ))
VERSION_MINOR=$(( $VERSION % 10 ))
export VERSION VERSION_MAJOR VERSION_MINOR
-# $OpenBSD: sys.mk,v 1.21 1999/09/23 08:25:01 deraadt Exp $
+# $OpenBSD: sys.mk,v 1.22 2000/04/08 05:06:25 deraadt Exp $
# $NetBSD: sys.mk,v 1.27 1996/04/10 05:47:19 mycroft Exp $
# @(#)sys.mk 5.11 (Berkeley) 3/13/91
unix= We run OpenBSD.
OSMAJOR= 2
-OSMINOR= 6
+OSMINOR= 7
OSREV= $(OSMAJOR).$(OSMINOR)
OSrev= $(OSMAJOR)$(OSMINOR)
-.\" $OpenBSD: doc-common,v 1.18 2000/02/05 12:24:12 espie Exp $
+.\" $OpenBSD: doc-common,v 1.19 2000/04/08 05:06:25 deraadt Exp $
.\"
.\" Copyright (c) 1991, 1993
.\" The Regents of the University of California. All rights reserved.
.de Os
.ds oS Null
.if "\\$1"" \{\
-. ds oS OpenBSD 2.6
+. ds oS OpenBSD 2.7
.\}
.if "\\$2"" \{\
. ds aa Non-Null
. if "\\$2"2.4" .as oS \02.4
. if "\\$2"2.5" .as oS \02.5
. if "\\$2"2.6" .as oS \02.6
+. if "\\$2"2.7" .as oS \02.7
.\}
.if "\\*(oS"Null" .ds oS \0\\$1
.if "\\*(aa"Non-Null" .as oS \0\\$2
#!/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
#
ost="OpenBSD"
-osr="2.6"
+osr="2.7"
echo "char ostype[] = \"${ost}\";" > vers.c
echo "char osrelease[] = \"${osr}\";" >> 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
-/* $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 $ */
/*-
#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__