diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2006-10-16 21:23:00 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2006-10-16 21:23:00 +0000 |
commit | b3fd0c4a3ccc3bf46f78dc887216872ec8b66eab (patch) | |
tree | 1513d0f8d62e1bac9b0d099c29b8d84af42ea9a6 /sys/arch/landisk | |
parent | 45697e39df9ecad494663eedef139d6b642d0798 (diff) |
yes this looks like debug, however it allows the kernel to load. ???
Diffstat (limited to 'sys/arch/landisk')
-rw-r--r-- | sys/arch/landisk/stand/boot/devs.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/landisk/stand/boot/devs.c b/sys/arch/landisk/stand/boot/devs.c index 52a74c07030..baa6698e717 100644 --- a/sys/arch/landisk/stand/boot/devs.c +++ b/sys/arch/landisk/stand/boot/devs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: devs.c,v 1.2 2006/10/11 23:06:46 drahn Exp $ */ +/* $OpenBSD: devs.c,v 1.3 2006/10/16 21:22:59 drahn Exp $ */ /* * Copyright (c) 2006 Michael Shalayeff @@ -78,6 +78,10 @@ run_loadfile(u_long *marks, int howto) cache_flush(); printf("entry point at 0x%x\n", (int)entry); + printf("start at 0x%x\n", (int)marks[MARK_START]); + printf("NSYMS 0x%x\n", (int)marks[MARK_NSYM]); + printf("SYM at 0x%x\n", (int)marks[MARK_SYM]); + printf("END at 0x%x\n", (int)marks[MARK_END]); (*(void (*)(int,int,int))entry)(howto, marks[MARK_END], 0); } |