diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-03 18:38:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-03 18:38:12 +0000 |
commit | a57f6a136dc1ecad3ef422187a576d421e348a95 (patch) | |
tree | e9903cadbc5e95f12695242032c2913ba0e6b03f /sys/arch/sparc64/stand/ofwboot/boot.c | |
parent | 75d4dd0cd8c10bb0404b8c740f914654055abaed (diff) |
sensible version strings; ok miod
Diffstat (limited to 'sys/arch/sparc64/stand/ofwboot/boot.c')
-rw-r--r-- | sys/arch/sparc64/stand/ofwboot/boot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc64/stand/ofwboot/boot.c b/sys/arch/sparc64/stand/ofwboot/boot.c index 7e854d019c2..936c376cd24 100644 --- a/sys/arch/sparc64/stand/ofwboot/boot.c +++ b/sys/arch/sparc64/stand/ofwboot/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.12 2006/07/27 20:41:28 deraadt Exp $ */ +/* $OpenBSD: boot.c,v 1.13 2007/05/03 18:38:11 deraadt Exp $ */ /* $NetBSD: boot.c,v 1.3 2001/05/31 08:55:19 mrg Exp $ */ /* * Copyright (c) 1997, 1999 Eduardo E. Horvath. All rights reserved. @@ -284,7 +284,7 @@ main() char **bootlp; char *just_bootline[2]; - printf(">> %s", version); + printf(">> OpenBSD BOOT %s\n", version); /* * Get the boot arguments from Openfirmware @@ -322,7 +322,7 @@ main() bootlp = 0; kernels[0] = 0; /* no more iteration */ } else if (cp != bootline) { - printf(": trying %s...\n", cp); + printf("Trying %s...\n", cp); strlcpy(bootline, cp, sizeof bootline); } } |