Increase space reserved for symbol space. As of the kernel i build it
needed at least a 255344 bytes while 242000 was reserved. Bumped it a few kb higher to reduce symbol table fill too soon again.
This commit is contained in:
parent
f213e15f84
commit
b4f746a195
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: GENERIC,v 1.32 2004/07/15 03:53:51 atatat Exp $
|
||||
# $NetBSD: GENERIC,v 1.33 2004/08/25 12:24:48 reinoud Exp $
|
||||
#
|
||||
# Generic Shark configuration.
|
||||
#
|
||||
|
@ -7,7 +7,7 @@ include "arch/shark/conf/std.shark"
|
|||
|
||||
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
|
||||
|
||||
#ident "GENERIC-$Revision: 1.32 $"
|
||||
#ident "GENERIC-$Revision: 1.33 $"
|
||||
|
||||
# estimated number of users
|
||||
maxusers 32
|
||||
|
@ -158,7 +158,7 @@ options DIAGNOSTIC # internal consistency checks
|
|||
#options PMAP_DEBUG # Enable pmap_debug_level code
|
||||
#options IPKDB # remote kernel debugging
|
||||
options DDB # in-kernel debugger
|
||||
options SYMTAB_SPACE=242000 # reserve symbol space for DDB
|
||||
options SYMTAB_SPACE=258000 # reserve symbol space for DDB
|
||||
# (needed because we boot netbsd.aout)
|
||||
#options DDB_ONPANIC=0 # don't run DDB at panictime
|
||||
#options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
|
||||
|
|
Loading…
Reference in New Issue