diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2019-04-08 13:56:23 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2019-04-08 13:56:23 +0000 |
commit | 228eae623f7d0c8ab969909e7e36e654f9c10e2b (patch) | |
tree | 2c7952d436e73d6bdca8b0f360d9980f627d455d | |
parent | a469ec48f0197dd48df75134b5f4a7ace3a1848b (diff) |
crank version; looks good deraadt
-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 acb381548ee..e2c86cd0d7c 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.42 2018/08/10 16:43:54 jsing Exp $ */ +/* $OpenBSD: conf.c,v 1.43 2019/04/08 13:56:21 florian Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -40,7 +40,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/cdboot/conf.c b/sys/arch/amd64/stand/cdboot/conf.c index 41f976fc5b7..e224c0d4dbe 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.36 2018/07/11 14:48:40 mlarkin Exp $ */ +/* $OpenBSD: conf.c,v 1.37 2019/04/08 13:56:21 florian Exp $ */ /* * Copyright (c) 2004 Tom Cosgrove @@ -41,7 +41,7 @@ #include <biosdev.h> #include <dev/cons.h> -const char version[] = "3.40"; +const char version[] = "3.41"; int debug = 1; diff --git a/sys/arch/amd64/stand/efiboot/conf.c b/sys/arch/amd64/stand/efiboot/conf.c index c42f0df15a8..438b9f5c260 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.17 2019/03/15 06:53:37 jsg Exp $ */ +/* $OpenBSD: conf.c,v 1.18 2019/04/08 13:56:21 florian Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -39,7 +39,7 @@ #include "efidev.h" #include "efipxe.h" -const char version[] = "3.41"; +const char version[] = "3.42"; #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 4d40f45d7fc..61a0bec757c 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.40 2018/07/11 14:48:40 mlarkin Exp $ */ +/* $OpenBSD: conf.c,v 1.41 2019/04/08 13:56:21 florian Exp $ */ /* * Copyright (c) 2004 Tom Cosgrove @@ -43,7 +43,7 @@ #include "pxeboot.h" #include "pxe_net.h" -const char version[] = "3.40"; +const char version[] = "3.41"; 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 61fa2388b0f..58e436f3c4e 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.17 2019/01/31 23:17:26 kettenis Exp $ */ +/* $OpenBSD: conf.c,v 1.18 2019/04/08 13:56:21 florian Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -45,7 +45,7 @@ #include "efipxe.h" #include "softraid_arm64.h" -const char version[] = "0.14"; +const char version[] = "0.15"; 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 7f6be74e427..11d2e1007a0 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.13 2018/03/31 18:19:12 patrick Exp $ */ +/* $OpenBSD: conf.c,v 1.14 2019/04/08 13:56:21 florian Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -36,7 +36,7 @@ #include "efidev.h" #include "efipxe.h" -const char version[] = "1.1"; +const char version[] = "1.2"; 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 95261c482b8..c461ced5f0e 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.29 2017/09/08 05:36:51 deraadt Exp $ */ +/* $OpenBSD: conf.c,v 1.30 2019/04/08 13:56:22 florian Exp $ */ /* * Copyright (c) 1998-2004 Michael Shalayeff @@ -32,7 +32,7 @@ #include <lib/libsa/cd9660.h> #include <dev/cons.h> -const char version[] = "1.4"; +const char version[] = "1.5"; 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 169a5d0f706..7cb62905aca 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.66 2019/03/07 10:46:37 jsg Exp $ */ +/* $OpenBSD: conf.c,v 1.67 2019/04/08 13:56:22 florian Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -41,7 +41,7 @@ #include <dev/cons.h> #include "debug.h" -const char version[] = "3.35"; +const char version[] = "3.36"; int debug = 1; diff --git a/sys/arch/i386/stand/cdboot/conf.c b/sys/arch/i386/stand/cdboot/conf.c index f7e9a027a51..7650c8d1b6c 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.34 2019/03/07 10:46:37 jsg Exp $ */ +/* $OpenBSD: conf.c,v 1.35 2019/04/08 13:56:22 florian Exp $ */ /* * Copyright (c) 2004 Tom Cosgrove @@ -42,7 +42,7 @@ #include <dev/cons.h> #include "debug.h" -const char version[] = "3.31"; +const char version[] = "3.32"; 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 931be3dee80..23a8fc2f553 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.39 2019/03/07 10:46:37 jsg Exp $ */ +/* $OpenBSD: conf.c,v 1.40 2019/04/08 13:56:22 florian Exp $ */ /* * Copyright (c) 2004 Tom Cosgrove @@ -44,7 +44,7 @@ #include "pxeboot.h" #include "pxe_net.h" -const char version[] = "3.31"; +const char version[] = "3.32"; 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 b241f7e40ca..c31577661a2 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.10 2017/09/08 05:36:52 deraadt Exp $ */ +/* $OpenBSD: conf.c,v 1.11 2019/04/08 13:56:22 florian Exp $ */ /* * Copyright (c) 2006 Michael Shalayeff @@ -29,7 +29,7 @@ #endif #include <dev/cons.h> -const char version[] = "1.04"; +const char version[] = "1.05"; 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 f23771d0ea3..0bd5b1f81bc 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.8 2018/04/20 14:08:12 visa Exp $ */ +/* $OpenBSD: conf.c,v 1.9 2019/04/08 13:56:22 florian 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.6"; +const char version[] = "0.7"; #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 8451371b8aa..4c4b2eba2ff 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.3 2016/09/13 18:27:49 jasper Exp $ */ +/* $OpenBSD: conf.c,v 1.4 2019/04/08 13:56:22 florian 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.3"; +const char version[] = "0.4"; /* * Device configuration diff --git a/sys/arch/socppc/stand/boot/conf.c b/sys/arch/socppc/stand/boot/conf.c index cd66d594175..a9224959fd9 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.8 2016/09/13 18:27:49 jasper Exp $ */ +/* $OpenBSD: conf.c,v 1.9 2019/04/08 13:56:22 florian 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.2"; +const char version[] = "1.3"; int debug = 0; /* |