summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2015-01-01 15:50:28 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2015-01-01 15:50:28 +0000
commitd7d5c9d11b6da0cc532fcb03b37996f8a31a7d5c (patch)
treeccfe5e1976899a9dcf61ac1c3f61a3966e638553 /sys
parent7a6285480e23053252c7bb8bef5cf8350d9d2326 (diff)
move to 5.7-beta
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/macppc/stand/tbxidata/bsd.tbxi4
-rw-r--r--sys/conf/newvers.sh8
-rw-r--r--sys/sys/param.h6
3 files changed, 9 insertions, 9 deletions
diff --git a/sys/arch/macppc/stand/tbxidata/bsd.tbxi b/sys/arch/macppc/stand/tbxidata/bsd.tbxi
index d4a0f57728c..5f3a0162487 100644
--- a/sys/arch/macppc/stand/tbxidata/bsd.tbxi
+++ b/sys/arch/macppc/stand/tbxidata/bsd.tbxi
@@ -1,6 +1,6 @@
<CHRP-BOOT>
<LICENSE>
-/* $OpenBSD: bsd.tbxi,v 1.33 2014/07/15 21:59:17 deraadt Exp $ */
+/* $OpenBSD: bsd.tbxi,v 1.34 2015/01/01 15:50:27 deraadt Exp $ */
/*
* Copyright (c) 2001 Dale Rahn.
* All rights reserved.
@@ -34,7 +34,7 @@ MacRISC MacRISC3 MacRISC4
OpenBSD/macppc bootloader
</DESCRIPTION>
<BOOT-SCRIPT>
-boot cd:,ofwboot /5.6/macppc/bsd.rd
+boot cd:,ofwboot /5.7/macppc/bsd.rd
</BOOT-SCRIPT>
<OS-BADGE-ICONS>
201B
diff --git a/sys/conf/newvers.sh b/sys/conf/newvers.sh
index b85d76a432b..770cd323aa5 100644
--- a/sys/conf/newvers.sh
+++ b/sys/conf/newvers.sh
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: newvers.sh,v 1.134 2014/08/11 18:33:36 miod Exp $
+# $OpenBSD: newvers.sh,v 1.135 2015/01/01 15:50:27 deraadt Exp $
# $NetBSD: newvers.sh,v 1.17.2.1 1995/10/12 05:17:11 jtc Exp $
#
# Copyright (c) 1984, 1986, 1990, 1993
@@ -61,14 +61,14 @@ id=`basename "${d}"`
# and disable POOL_DEBUG in sys/conf/GENERIC
ost="OpenBSD"
-osr="5.6"
+osr="5.7"
cat >vers.c <<eof
#if 0
#define STATUS "" /* release */
-#define STATUS "-beta" /* just before a release */
-#endif
#define STATUS "-current" /* just after a release */
+#endif
+#define STATUS "-beta" /* just before a release */
const char ostype[] = "${ost}";
const char osrelease[] = "${osr}";
diff --git a/sys/sys/param.h b/sys/sys/param.h
index b6ef3a890e9..43e94a320ed 100644
--- a/sys/sys/param.h
+++ b/sys/sys/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.108 2014/10/22 06:55:10 dcoppa Exp $ */
+/* $OpenBSD: param.h,v 1.109 2015/01/01 15:50:27 deraadt Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@@ -41,8 +41,8 @@
#define BSD4_3 1
#define BSD4_4 1
-#define OpenBSD 201411 /* OpenBSD version (year & month). */
-#define OpenBSD5_6 1 /* OpenBSD 5.6 */
+#define OpenBSD 201505 /* OpenBSD version (year & month). */
+#define OpenBSD5_7 1 /* OpenBSD 5.7 */
#ifndef NULL
#ifdef __GNUG__