summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2013-11-01 07:43:10 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2013-11-01 07:43:10 +0000
commit38e8ee6ad0e3faff7323314674502242f1956b3f (patch)
treecfd1f25b9dd714e78a70fad00390a480a2fbe395 /sys/arch
parent749dda04ee5cad5dc0e718909f156cc05f30af38 (diff)
Better report of the system type, to match the OMRON spelling; aoyama@
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/luna88k/stand/boot/init_main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/luna88k/stand/boot/init_main.c b/sys/arch/luna88k/stand/boot/init_main.c
index 517f6f13a24..c5fff01ea82 100644
--- a/sys/arch/luna88k/stand/boot/init_main.c
+++ b/sys/arch/luna88k/stand/boot/init_main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: init_main.c,v 1.4 2013/10/29 22:13:28 miod Exp $ */
+/* $OpenBSD: init_main.c,v 1.5 2013/11/01 07:43:09 miod Exp $ */
/* $NetBSD: init_main.c,v 1.6 2013/03/05 15:34:53 tsutsui Exp $ */
/*
@@ -171,17 +171,17 @@ main(void)
* Initialize the console before we print anything out.
*/
if (machtype == LUNA_88K) {
- machstr = "luna88k";
+ machstr = "LUNA-88K";
cpuspeed = MHZ_25;
} else {
- machstr = "luna88k-2";
+ machstr = "LUNA-88K2";
cpuspeed = MHZ_33;
}
nplane = get_plane_numbers();
cninit();
- printf("\nOpenBSD/%s boot 0.3\n\n", machstr);
+ printf("\nOpenBSD/" MACHINE " (%s) boot 0.3\n\n", machstr);
#ifdef SUPPORT_ETHERNET
try_bootp = 1;