diff options
author | 1997-02-06 01:06:18 +0000 | |
---|---|---|
committer | 1997-02-06 01:06:18 +0000 | |
commit | 46e259546b793529f81e762ff0623b57b17a594f (patch) | |
tree | bc2d1f4b7cf6e535ae3682a14696746210cb55e5 | |
parent | Use the font ROM size, instead of hard coding one. (diff) | |
download | wireguard-openbsd-46e259546b793529f81e762ff0623b57b17a594f.tar.xz wireguard-openbsd-46e259546b793529f81e762ff0623b57b17a594f.zip |
Be more explicit about what we are.
-rw-r--r-- | sys/arch/hp300/stand/inst.c | 8 | ||||
-rw-r--r-- | sys/arch/hp300/stand/uboot.c | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/hp300/stand/inst.c b/sys/arch/hp300/stand/inst.c index 12be80246a1..7c39488156b 100644 --- a/sys/arch/hp300/stand/inst.c +++ b/sys/arch/hp300/stand/inst.c @@ -1,4 +1,4 @@ -/* $OpenBSD: inst.c,v 1.2 1997/02/05 11:16:37 downsj Exp $ */ +/* $OpenBSD: inst.c,v 1.3 1997/02/06 01:06:18 downsj Exp $ */ /* $NetBSD: inst.c,v 1.6 1996/12/21 21:23:43 thorpej Exp $ */ /* @@ -108,9 +108,9 @@ main() */ netio_ask = 1; - printf("\n>> OpenBSD MINIROOT INSTALLATION HP9000/%s CPU\n", - getmachineid()); - printf(">> $OpenBSD: inst.c,v 1.2 1997/02/05 11:16:37 downsj Exp $\n"); + printf("\n>> OpenBSD [%dKB] MINIROOT INSTALLATION HP9000/%s CPU\n", + (__LDPGSZ / 1024), getmachineid()); + printf(">> $OpenBSD: inst.c,v 1.3 1997/02/06 01:06:18 downsj Exp $\n"); gethelp(); for (;;) { diff --git a/sys/arch/hp300/stand/uboot.c b/sys/arch/hp300/stand/uboot.c index 0fd3df7b5d9..3e3ce3614c7 100644 --- a/sys/arch/hp300/stand/uboot.c +++ b/sys/arch/hp300/stand/uboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uboot.c,v 1.3 1997/02/05 11:16:38 downsj Exp $ */ +/* $OpenBSD: uboot.c,v 1.4 1997/02/06 01:06:19 downsj Exp $ */ /* $NetBSD: uboot.c,v 1.2 1996/10/14 07:33:45 thorpej Exp $ */ /*- @@ -70,9 +70,9 @@ main() { int currname = 0; - printf("\n>> OpenBSD UNIFIED BOOT HP9000/%s CPU\n", - getmachineid()); - printf(">> $OpenBSD: uboot.c,v 1.3 1997/02/05 11:16:38 downsj Exp $\n"); + printf("\n>> OpenBSD [%dKB] UNIFIED BOOT HP9000/%s CPU\n", + (__LDPGSZ / 1024), getmachineid()); + printf(">> $OpenBSD: uboot.c,v 1.4 1997/02/06 01:06:19 downsj Exp $\n"); printf(">> Enter \"reset\" to reset system.\n"); bdev = B_TYPE(bootdev); |