summaryrefslogtreecommitdiff
path: root/sys/arch/amd64
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r--sys/arch/amd64/stand/boot/conf.c4
-rw-r--r--sys/arch/amd64/stand/cdboot/conf.c4
-rw-r--r--sys/arch/amd64/stand/libsa/memprobe.c5
-rw-r--r--sys/arch/amd64/stand/pxeboot/conf.c4
4 files changed, 9 insertions, 8 deletions
diff --git a/sys/arch/amd64/stand/boot/conf.c b/sys/arch/amd64/stand/boot/conf.c
index 8dbe954c75e..7bc4c2dcdc5 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.4 2005/04/30 16:39:03 tom Exp $ */
+/* $OpenBSD: conf.c,v 1.5 2005/05/03 13:02:45 tom Exp $ */
/*
* Copyright (c) 1996 Michael Shalayeff
@@ -42,7 +42,7 @@
#include <biosdev.h>
#include <dev/cons.h>
-const char version[] = "2.08";
+const char version[] = "2.09";
int debug = 1;
diff --git a/sys/arch/amd64/stand/cdboot/conf.c b/sys/arch/amd64/stand/cdboot/conf.c
index 0c86cdf9e85..e74ee752bfe 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.3 2005/04/30 16:39:03 tom Exp $ */
+/* $OpenBSD: conf.c,v 1.4 2005/05/03 13:02:45 tom Exp $ */
/*
* Copyright (c) 2004 Tom Cosgrove
@@ -42,7 +42,7 @@
#include <biosdev.h>
#include <dev/cons.h>
-const char version[] = "1.02";
+const char version[] = "1.03";
int debug = 1;
diff --git a/sys/arch/amd64/stand/libsa/memprobe.c b/sys/arch/amd64/stand/libsa/memprobe.c
index 58543d1da6b..312fc1e6b91 100644
--- a/sys/arch/amd64/stand/libsa/memprobe.c
+++ b/sys/arch/amd64/stand/libsa/memprobe.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: memprobe.c,v 1.1 2004/02/03 12:09:47 mickey Exp $ */
+/* $OpenBSD: memprobe.c,v 1.2 2005/05/03 13:02:45 tom Exp $ */
/*
* Copyright (c) 1997-1999 Michael Shalayeff
@@ -328,7 +328,8 @@ memprobe(void)
/* Count only "good" memory chunks 12K and up in size */
if ((im->type == BIOS_MAP_FREE) && (im->size >= 12*1024)) {
if (im->size > 1024 * 1024)
- printf("%uM ", (u_int)im->size / (1024 * 1024));
+ printf("%uM ", (u_int)(im->size /
+ (1024 * 1024)));
else
printf("%uK ", (u_int)im->size / 1024);
diff --git a/sys/arch/amd64/stand/pxeboot/conf.c b/sys/arch/amd64/stand/pxeboot/conf.c
index 8193d75113c..39a1851fbfa 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.5 2005/04/30 16:39:03 tom Exp $ */
+/* $OpenBSD: conf.c,v 1.6 2005/05/03 13:02:45 tom Exp $ */
/*
* Copyright (c) 2004 Tom Cosgrove
@@ -45,7 +45,7 @@
#include "pxeboot.h"
#include "pxe_net.h"
-const char version[] = "1.04";
+const char version[] = "1.05";
int debug = 0;
#undef _TEST