Subversion Repositories HelenOS-historic

Rev

Rev 452 | Rev 460 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 452 Rev 459
1
## General configuration directives
1
## General configuration directives
2
#
2
#
3
# CONFIG_SMP (n/y)
3
# CONFIG_SMP (n/y)
4
#       Support for symetric multiprocessors
4
#       Support for symetric multiprocessors
5
#
5
#
6
# CONFIG_HT (n/y)
6
# CONFIG_HT (n/y)
7
#       Improved support for hyperthreading
7
#       Improved support for hyperthreading
8
#
8
#
9
# CONFIG_FPU_LAZY (n/y)
9
# CONFIG_FPU_LAZY (n/y)
10
#       Lazy context switching
10
#       Lazy context switching
11
#
11
#
12
 
12
 
13
CONFIG_SMP = y
13
CONFIG_SMP = y
14
CONFIG_HT = y
14
CONFIG_HT = y
15
CONFIG_FPU_LAZY = y
15
CONFIG_FPU_LAZY = y
16
 
16
 
17
## Debugging configuration directives
17
## Debugging configuration directives
18
#
18
#
19
# CONFIG_DEBUG (n/y)
19
# CONFIG_DEBUG (n/y)
20
#       General debuging and assert checking
20
#       General debuging and assert checking
21
#
21
#
22
# CONFIG_DEBUG_SPINLOCK (n/y)
22
# CONFIG_DEBUG_SPINLOCK (n/y)
23
#       Deadlock detection support for spinlocks
23
#       Deadlock detection support for spinlocks
24
#
24
#
25
 
25
 
26
CONFIG_DEBUG = n
26
CONFIG_DEBUG = n
27
CONFIG_DEBUG_SPINLOCK = y
27
CONFIG_DEBUG_SPINLOCK = y
-
 
28
 
-
 
29
## Run-time configuration directives
-
 
30
#
-
 
31
# CONFIG_USERSPACE (n/y)
-
 
32
#       Enable user space support
-
 
33
#
-
 
34
# CONFIG_TEST (value)
-
 
35
#       Compile in test "value" (empty string for no test)
-
 
36
#
-
 
37
 
-
 
38
CONFIG_USERSPACE = n
-
 
39
CONFIG_TEST =
-
 
40
#CONFIG_TEST = synch/rwlock1/
-
 
41
#CONFIG_TEST = synch/rwlock2/
-
 
42
#CONFIG_TEST = synch/rwlock3/
-
 
43
#CONFIG_TEST = synch/rwlock4/
-
 
44
#CONFIG_TEST = synch/rwlock5/
-
 
45
#CONFIG_TEST = synch/semaphore1/
-
 
46
#CONFIG_TEST = synch/semaphore2/
-
 
47
#CONFIG_TEST = fpu/fpu1/
-
 
48
#CONFIG_TEST = fpu/sse1/
-
 
49
#CONFIG_TEST = fpu/mips1/
-
 
50
#CONFIG_TEST = print/print1/
-
 
51
#CONFIG_TEST = thread/thread1/
-
 
52
#CONFIG_TEST = mm/mapping1/
28
 
53