summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/stand/boot
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1997-07-08 10:42:26 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1997-07-08 10:42:26 +0000
commitccd6fc9178847141a460dbc67c20f8c222c3c1da (patch)
tree36aad6f3102858640859078ec62a6fa286b6799a /sys/arch/alpha/stand/boot
parent667b313d2eaabb1397bfc732d8d981d5bfe19b78 (diff)
Load the kernel symbol table for DDB to use
Diffstat (limited to 'sys/arch/alpha/stand/boot')
-rw-r--r--sys/arch/alpha/stand/boot/boot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/alpha/stand/boot/boot.c b/sys/arch/alpha/stand/boot/boot.c
index 5af7bdb9274..d79987b7356 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.9 1997/05/05 06:01:51 millert Exp $ */
+/* $OpenBSD: boot.c,v 1.10 1997/07/08 10:42:25 niklas Exp $ */
/* $NetBSD: boot.c,v 1.10 1997/01/18 01:58:33 cgd Exp $ */
/*
@@ -59,7 +59,7 @@ char boot_flags[128];
extern char bootprog_name[], bootprog_rev[], bootprog_date[], bootprog_maker[];
-vm_offset_t ffp_save, ptbr_save;
+vm_offset_t ffp_save, ptbr_save, esym;
int debug;
@@ -109,7 +109,7 @@ main()
printf("\n");
if (win) {
(void)printf("Entering %s at 0x%lx...\n", name, entry);
- (*(void (*)())entry)(ffp_save, ptbr_save, 0);
+ (*(void (*)())entry)(ffp_save, ptbr_save, esym);
}
(void)printf("Boot failed! Halting...\n");