From: Kenn H. <ke...@us...> - 2003-02-09 01:34:34
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1:/tmp/cvs-serv18505 Modified Files: config.in Log Message: This had gotten quite out of date compared to other arches. Index: config.in =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/config.in,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- config.in 31 Jan 2003 08:52:51 -0000 1.9 +++ config.in 9 Feb 2003 01:34:29 -0000 1.10 @@ -52,6 +52,8 @@ define_bool CONFIG_KCORE_ELF y define_bool CONFIG_EXTRA_ELF_COMPILER n +bool 'Preemptible kernel (currently broken)' CONFIG_PREEMPT + bool 'Networking support' CONFIG_NET bool 'System V IPC' CONFIG_SYSVIPC bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT @@ -177,13 +179,14 @@ mainmenu_option next_comment comment 'Kernel hacking' -# This appears to have died. -#bool 'Debug kmalloc/kfree' CONFIG_DEBUG_MALLOC -bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQ -bool 'Kernel profiling support' CONFIG_PROFILE -if [ "$CONFIG_PROFILE" = "y" ]; then - int ' Profile shift count' CONFIG_PROFILE_SHIFT 2 +bool 'Kernel debugging' CONFIG_DEBUG_KERNEL +if [ "$CONFIG_DEBUG_KERNEL" != "n" ]; then + bool ' Debug memory allocations' CONFIG_DEBUG_SLAB + bool ' Magic SysRq key' CONFIG_MAGIC_SYSRQ + bool ' Spinlock debugging' CONFIG_DEBUG_SPINLOCK + bool ' Verbose BUG() reporting' CONFIG_DEBUG_BUGVERBOSE fi + endmenu source security/Config.in |