diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-10 04:19:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-10 04:19:33 +0000 |
commit | a5d100e43420a22a95ac05468f73094f9c4cd410 (patch) | |
tree | 788900dcadd4fc1509b0a5b875f537aade6e07f6 | |
parent | 8f0c1aa9fd0ce5d319af8590f3da4e11d36119ac (diff) |
crank versions
-rw-r--r-- | sys/arch/amd64/stand/boot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/amd64/stand/cdboot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/amd64/stand/efiboot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/amd64/stand/pxeboot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/arm64/stand/efiboot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/armv7/stand/efiboot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/hppa/stand/boot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/i386/stand/boot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/i386/stand/cdboot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/i386/stand/pxeboot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/landisk/stand/boot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/loongson/stand/boot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/octeon/stand/boot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/socppc/stand/boot/conf.c | 4 |
14 files changed, 28 insertions, 28 deletions
diff --git a/sys/arch/amd64/stand/boot/conf.c b/sys/arch/amd64/stand/boot/conf.c index e2c86cd0d7c..9cd4c10a51a 100644 --- a/sys/arch/amd64/stand/boot/conf.c +++ b/sys/arch/amd64/stand/boot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.43 2019/04/08 13:56:21 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.44 2019/04/10 04:19:31 deraadt Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -40,7 +40,7 @@ #include <biosdev.h> #include <dev/cons.h> -const char version[] = "3.42"; +const char version[] = "3.43"; int debug = 1; diff --git a/sys/arch/amd64/stand/cdboot/conf.c b/sys/arch/amd64/stand/cdboot/conf.c index e224c0d4dbe..7ac05b9bcca 100644 --- a/sys/arch/amd64/stand/cdboot/conf.c +++ b/sys/arch/amd64/stand/cdboot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.37 2019/04/08 13:56:21 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.38 2019/04/10 04:19:31 deraadt Exp $ */ /* * Copyright (c) 2004 Tom Cosgrove @@ -41,7 +41,7 @@ #include <biosdev.h> #include <dev/cons.h> -const char version[] = "3.41"; +const char version[] = "3.42"; int debug = 1; diff --git a/sys/arch/amd64/stand/efiboot/conf.c b/sys/arch/amd64/stand/efiboot/conf.c index 438b9f5c260..2380f709219 100644 --- a/sys/arch/amd64/stand/efiboot/conf.c +++ b/sys/arch/amd64/stand/efiboot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.18 2019/04/08 13:56:21 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.19 2019/04/10 04:19:31 deraadt Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -39,7 +39,7 @@ #include "efidev.h" #include "efipxe.h" -const char version[] = "3.42"; +const char version[] = "3.43"; #ifdef EFI_DEBUG int debug = 0; diff --git a/sys/arch/amd64/stand/pxeboot/conf.c b/sys/arch/amd64/stand/pxeboot/conf.c index 61a0bec757c..19b371cf9c7 100644 --- a/sys/arch/amd64/stand/pxeboot/conf.c +++ b/sys/arch/amd64/stand/pxeboot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.41 2019/04/08 13:56:21 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.42 2019/04/10 04:19:31 deraadt Exp $ */ /* * Copyright (c) 2004 Tom Cosgrove @@ -43,7 +43,7 @@ #include "pxeboot.h" #include "pxe_net.h" -const char version[] = "3.41"; +const char version[] = "3.42"; int debug = 0; void (*sa_cleanup)(void) = pxe_shutdown; diff --git a/sys/arch/arm64/stand/efiboot/conf.c b/sys/arch/arm64/stand/efiboot/conf.c index 58e436f3c4e..aa659b769d8 100644 --- a/sys/arch/arm64/stand/efiboot/conf.c +++ b/sys/arch/arm64/stand/efiboot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.18 2019/04/08 13:56:21 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.19 2019/04/10 04:19:31 deraadt Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -45,7 +45,7 @@ #include "efipxe.h" #include "softraid_arm64.h" -const char version[] = "0.15"; +const char version[] = "0.16"; int debug = 0; struct fs_ops file_system[] = { diff --git a/sys/arch/armv7/stand/efiboot/conf.c b/sys/arch/armv7/stand/efiboot/conf.c index 11d2e1007a0..67c78dd1128 100644 --- a/sys/arch/armv7/stand/efiboot/conf.c +++ b/sys/arch/armv7/stand/efiboot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.14 2019/04/08 13:56:21 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.15 2019/04/10 04:19:32 deraadt Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -36,7 +36,7 @@ #include "efidev.h" #include "efipxe.h" -const char version[] = "1.2"; +const char version[] = "1.3"; int debug = 0; struct fs_ops file_system[] = { diff --git a/sys/arch/hppa/stand/boot/conf.c b/sys/arch/hppa/stand/boot/conf.c index c461ced5f0e..55d8bc799ae 100644 --- a/sys/arch/hppa/stand/boot/conf.c +++ b/sys/arch/hppa/stand/boot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.30 2019/04/08 13:56:22 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.31 2019/04/10 04:19:32 deraadt Exp $ */ /* * Copyright (c) 1998-2004 Michael Shalayeff @@ -32,7 +32,7 @@ #include <lib/libsa/cd9660.h> #include <dev/cons.h> -const char version[] = "1.5"; +const char version[] = "1.6"; int debug = 0; struct fs_ops file_system[] = { diff --git a/sys/arch/i386/stand/boot/conf.c b/sys/arch/i386/stand/boot/conf.c index 7cb62905aca..97adc6d3591 100644 --- a/sys/arch/i386/stand/boot/conf.c +++ b/sys/arch/i386/stand/boot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.67 2019/04/08 13:56:22 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.68 2019/04/10 04:19:32 deraadt Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -41,7 +41,7 @@ #include <dev/cons.h> #include "debug.h" -const char version[] = "3.36"; +const char version[] = "3.37"; int debug = 1; diff --git a/sys/arch/i386/stand/cdboot/conf.c b/sys/arch/i386/stand/cdboot/conf.c index 7650c8d1b6c..85bc425a4a8 100644 --- a/sys/arch/i386/stand/cdboot/conf.c +++ b/sys/arch/i386/stand/cdboot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.35 2019/04/08 13:56:22 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.36 2019/04/10 04:19:32 deraadt Exp $ */ /* * Copyright (c) 2004 Tom Cosgrove @@ -42,7 +42,7 @@ #include <dev/cons.h> #include "debug.h" -const char version[] = "3.32"; +const char version[] = "3.33"; int debug = 1; void (*sa_cleanup)(void) = NULL; diff --git a/sys/arch/i386/stand/pxeboot/conf.c b/sys/arch/i386/stand/pxeboot/conf.c index 23a8fc2f553..1a2b06afc6d 100644 --- a/sys/arch/i386/stand/pxeboot/conf.c +++ b/sys/arch/i386/stand/pxeboot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.40 2019/04/08 13:56:22 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.41 2019/04/10 04:19:32 deraadt Exp $ */ /* * Copyright (c) 2004 Tom Cosgrove @@ -44,7 +44,7 @@ #include "pxeboot.h" #include "pxe_net.h" -const char version[] = "3.32"; +const char version[] = "3.33"; int debug = 1; void (*sa_cleanup)(void) = pxe_shutdown; diff --git a/sys/arch/landisk/stand/boot/conf.c b/sys/arch/landisk/stand/boot/conf.c index c31577661a2..9d359e6cd60 100644 --- a/sys/arch/landisk/stand/boot/conf.c +++ b/sys/arch/landisk/stand/boot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.11 2019/04/08 13:56:22 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.12 2019/04/10 04:19:32 deraadt Exp $ */ /* * Copyright (c) 2006 Michael Shalayeff @@ -29,7 +29,7 @@ #endif #include <dev/cons.h> -const char version[] = "1.05"; +const char version[] = "1.06"; int debug = 1; struct fs_ops file_system[] = { diff --git a/sys/arch/loongson/stand/boot/conf.c b/sys/arch/loongson/stand/boot/conf.c index 0bd5b1f81bc..95aa51990ed 100644 --- a/sys/arch/loongson/stand/boot/conf.c +++ b/sys/arch/loongson/stand/boot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.9 2019/04/08 13:56:22 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.10 2019/04/10 04:19:32 deraadt Exp $ */ /* * Copyright (c) 1982, 1986, 1990, 1993 @@ -39,7 +39,7 @@ #include <lib/libsa/ufs.h> #include <lib/libsa/cd9660.h> -const char version[] = "0.7"; +const char version[] = "0.8"; #if 0 /* network code not compiled in */ int debug = 0; #endif diff --git a/sys/arch/octeon/stand/boot/conf.c b/sys/arch/octeon/stand/boot/conf.c index 4c4b2eba2ff..31eb2f49fde 100644 --- a/sys/arch/octeon/stand/boot/conf.c +++ b/sys/arch/octeon/stand/boot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.4 2019/04/08 13:56:22 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.5 2019/04/10 04:19:32 deraadt Exp $ */ /* * Copyright (c) 2013 Jasper Lievisse Adriaanse <jasper@openbsd.org> @@ -23,7 +23,7 @@ #include <lib/libsa/ufs.h> #include <lib/libsa/cd9660.h> -const char version[] = "0.4"; +const char version[] = "0.5"; /* * Device configuration diff --git a/sys/arch/socppc/stand/boot/conf.c b/sys/arch/socppc/stand/boot/conf.c index a9224959fd9..e4d2ee06fda 100644 --- a/sys/arch/socppc/stand/boot/conf.c +++ b/sys/arch/socppc/stand/boot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.9 2019/04/08 13:56:22 florian Exp $ */ +/* $OpenBSD: conf.c,v 1.10 2019/04/10 04:19:32 deraadt Exp $ */ /* $NetBSD: conf.c,v 1.4 2005/12/11 12:17:06 christos Exp $ */ /* @@ -39,7 +39,7 @@ #include "libsa.h" #include <lib/libsa/ufs.h> -const char version[] = "1.3"; +const char version[] = "1.4"; int debug = 0; /* |