summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/stand/boot
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-12-01 20:55:10 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-12-01 20:55:10 +0000
commit68a26d722a8ab5d406487230b34b40f85ff2c970 (patch)
tree3f9d31db10e904874cf60aca495dfd271a40d282 /sys/arch/alpha/stand/boot
parent9b9fbf109071050f147a9feb4fadae89f7466ba5 (diff)
remove excessive chattiness from the bootblocks. our goal is to shrink
them to < 5*1024, because the floppies are once again tight
Diffstat (limited to 'sys/arch/alpha/stand/boot')
-rw-r--r--sys/arch/alpha/stand/boot/boot.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/alpha/stand/boot/boot.c b/sys/arch/alpha/stand/boot/boot.c
index dc9b3c82e88..f943553f702 100644
--- a/sys/arch/alpha/stand/boot/boot.c
+++ b/sys/arch/alpha/stand/boot/boot.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: boot.c,v 1.16 2004/07/05 19:59:20 deraadt Exp $ */
+/* $OpenBSD: boot.c,v 1.17 2004/12/01 20:55:09 deraadt Exp $ */
/* $NetBSD: boot.c,v 1.10 1997/01/18 01:58:33 cgd Exp $ */
/*
@@ -110,12 +110,10 @@ main()
bootinfo_v1.cnputc = NULL;
bootinfo_v1.cnpollc = NULL;
- (void)printf("Entering %s at 0x%lx...\n", name, entry);
(*(void (*)(u_int64_t, u_int64_t, u_int64_t, void *, u_int64_t,
u_int64_t))entry)(ffp_save, ptbr_save, BOOTINFO_MAGIC,
&bootinfo_v1, 1, 0);
fail:
- (void)printf("Boot failed! Halting...\n");
halt();
}