summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1997-10-06 17:36:44 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1997-10-06 17:36:44 +0000
commit264cb3445aa543297712f3ed883085bf6c90df79 (patch)
treef1c7524d900b9e641c38e4d831cc2e525fbbe4a5 /sys
parentd45df835e0222044e4c8968f7b4e974002d7d0f9 (diff)
better amp message
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/i386/stand/libsa/machdep.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/i386/stand/libsa/machdep.c b/sys/arch/i386/stand/libsa/machdep.c
index fad04e8b67b..4f1a249dd77 100644
--- a/sys/arch/i386/stand/libsa/machdep.c
+++ b/sys/arch/i386/stand/libsa/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.15 1997/09/29 03:48:03 mickey Exp $ */
+/* $OpenBSD: machdep.c,v 1.16 1997/10/06 17:36:43 mickey Exp $ */
/*
* Copyright (c) 1997 Michael Shalayeff
@@ -149,12 +149,12 @@ machdep()
#ifdef BOOT_APM
if ((BIOS_vars.bios_apm_detail = apm_check())) {
- printf("apm: ");
+ printf("apm0");
apm_disconnect();
if (apm_connect() != 0)
- printf("connect error\n");
+ printf(": connect error\n");
#ifdef DEBUG
- printf("%x text=%x/%x[%x] data=%x[%x] @ %x",
+ printf(": %x text=%x/%x[%x] data=%x[%x] @ %x",
BIOS_vars.bios_apm_detail,
BIOS_vars.bios_apm_code32_base,
BIOS_vars.bios_apm_code16_base,
@@ -163,7 +163,7 @@ machdep()
BIOS_vars.bios_apm_data_len,
BIOS_vars.bios_apm_entry);
#else
- printf("present");
+ printf(" detected");
#endif
putchar('\n');
}