Module Name: src
Committed By: tsutsui
Date: Tue Jul 21 14:26:48 UTC 2009
Modified Files:
src/sys/arch/pmax/pmax: machdep.c
Log Message:
Fix an #ifdef botch in rev 1.214 that causes
[ Kernel symbol table invalid! ] message at boot,
which means no ksyms(4) support even on GENERIC kernel.
Should be pulled up to netbsd-4 and netbsd-5.
To generate a diff of this commit:
cvs rdiff -u -r1.232 -r1.233 src/sys/arch/pmax/pmax/machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/pmax/pmax/machdep.c
diff -u src/sys/arch/pmax/pmax/machdep.c:1.232 src/sys/arch/pmax/pmax/machdep.c:1.233
--- src/sys/arch/pmax/pmax/machdep.c:1.232 Wed Mar 18 10:22:33 2009
+++ src/sys/arch/pmax/pmax/machdep.c Tue Jul 21 14:26:48 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.232 2009/03/18 10:22:33 cegger Exp $ */
+/* $NetBSD: machdep.c,v 1.233 2009/07/21 14:26:48 tsutsui Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -77,7 +77,7 @@
*/
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.232 2009/03/18 10:22:33 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.233 2009/07/21 14:26:48 tsutsui Exp $");
#include "fs_mfs.h"
#include "opt_ddb.h"
@@ -231,13 +231,13 @@
esym = (void *)bi_syms->esym;
kernend = (void *)mips_round_page(esym);
memset(edata, 0, end - edata);
- }
+ } else
+#ifdef EXEC_AOUT
/* XXX: Backwards compatibility with old bootblocks - this should
* go soon...
*/
-#ifdef EXEC_AOUT
/* Exec header and symbols? */
- else if (aout->a_midmag == 0x07018b00 && (i = aout->a_syms) != 0) {
+ if (aout->a_midmag == 0x07018b00 && (i = aout->a_syms) != 0) {
ssym = end;
i += (*(long *)(end + i + 4) + 3) & ~3; /* strings */
esym = end + i + 4;