Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 536 → Rev 545

/kernel/trunk/kernel.config/Makefile.config
1,52 → 1,40
## General configuration directives
#
# CONFIG_SMP (n/y)
# Support for symetric multiprocessors
#
# CONFIG_HT (n/y)
# Improved support for hyperthreading
#
# CONFIG_FPU_LAZY (n/y)
# Lazy context switching
#
 
CONFIG_SMP = y
CONFIG_HT = y
CONFIG_FPU_LAZY = y
# Support for symetric multiprocessors
! CONFIG_SMP (y/n)
 
# Improved support for hyperthreading
! CONFIG_HT (y/n)
 
# Lazy context switching
! CONFIG_FPU_LAZY (y/n)
 
## Debugging configuration directives
#
# CONFIG_DEBUG (n/y)
# General debuging and assert checking
#
# CONFIG_DEBUG_SPINLOCK (n/y)
# Deadlock detection support for spinlocks
#
 
CONFIG_DEBUG = y
CONFIG_DEBUG_SPINLOCK = y
# General debuging and assert checking
! CONFIG_DEBUG (y/n)
 
# Deadlock detection support for spinlocks
! CONFIG_DEBUG_SPINLOCK (y/n)
 
## Run-time configuration directives
#
# CONFIG_USERSPACE (n/y)
# Enable user space support
#
# CONFIG_TEST (value)
# Compile in test "value" (empty string for no test)
#
 
CONFIG_USERSPACE = n
CONFIG_TEST =
#CONFIG_TEST = synch/rwlock1
#CONFIG_TEST = synch/rwlock2
#CONFIG_TEST = synch/rwlock3
#CONFIG_TEST = synch/rwlock4
#CONFIG_TEST = synch/rwlock5
#CONFIG_TEST = synch/semaphore1
#CONFIG_TEST = synch/semaphore2
#CONFIG_TEST = fpu/fpu1
#CONFIG_TEST = fpu/sse1
#CONFIG_TEST = fpu/mips1
#CONFIG_TEST = print/print1
#CONFIG_TEST = thread/thread1
#CONFIG_TEST = mm/mapping1
# Enable user space support
! CONFIG_USERSPACE (n/y)
 
# Kernel test type
@ "" No test
@ "synch/rwlock1" Read write test 1
@ "synch/rwlock2" Read write test 2
@ "synch/rwlock3" Read write test 3
@ "synch/rwlock4" Read write test 4
@ "synch/rwlock5" Read write test 5
@ "synch/semaphore1" Semaphore test 1
@ "synch/semaphore2" Sempahore test 2
@ "fpu/fpu1" Intel fpu test 1
@ "fpu/sse1" Intel Sse test 1
@ "fpu/mips1" Mips FPU test 1
@ "print/print1" Printf test 1
@ "thread/trhead1" Thread test 1
@ "mm/mapping" Mapping test 1
! CONFIG_TEST (choice)