Subversion Repositories HelenOS-historic

Rev

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

Rev 549 Rev 550
1
## General configuration directives
1
## General configuration directives
2
 
2
 
-
 
3
# Architecture
-
 
4
@ "ia32" Intel IA32
-
 
5
@ "amd64" Intel ET64/AMD64
-
 
6
@ "ia64" Intel IA64
-
 
7
@ "mips32" MIPS 32-bit
-
 
8
@ "ppc32" PowerPC 32-bit
-
 
9
@ "sparc64" Sun UltraSparc 64-bit
-
 
10
! ARCH (choice)
-
 
11
 
-
 
12
%ASKDEFAULT
-
 
13
 
-
 
14
# IA32 Compiler
-
 
15
@ "cross" Cross-compiler
-
 
16
@ "native" Native
-
 
17
! [ARCH=ia32] IA32_COMPILER (choice)
-
 
18
% [ARCH=ia32] SAVEAS IA32_COMPILER COMPILER
-
 
19
 
-
 
20
# AMD64 Compiler
-
 
21
@ "cross" Cross-compiler
-
 
22
@ "native" Native
-
 
23
! [ARCH=amd64] AMD64_COMPILER (choice)
-
 
24
% [ARCH=amd64] SAVEAS AMD64_COMPILER COMPILER
-
 
25
 
-
 
26
# Compiler
-
 
27
@ "cross" Cross-compiler
-
 
28
@ "native" Native
-
 
29
! [(ARCH!=amd64)&(ARCH!=ia32)] OTHER_COMPILER (choice)
-
 
30
% [(ARCH!=amd64)&(ARCH!=ia32)] SAVEAS OTHER_COMPILER COMPILER
-
 
31
 
-
 
32
 
-
 
33
# CPU type
-
 
34
@ "pentium4" Pentium 4
-
 
35
@ "pentium3" Pentium 3
-
 
36
@ "athlon-xp" Athlon XP
-
 
37
@ "athlon-mp" Athlon MP
-
 
38
@ "prescott" Prescott
-
 
39
! [ARCH=ia32] IA32_CPU (choice)
-
 
40
 
3
# Support for SMP
41
# Support for SMP
4
! CONFIG_SMP (y/n)
42
! CONFIG_SMP (y/n)
5
 
43
 
6
# Improved support for hyperthreading
44
# Improved support for hyperthreading
7
! [ARCH=ia32|ARCH=amd64] CONFIG_HT (y/n)
45
! [(ARCH=ia32|ARCH=amd64)&CONFIG_SMP=y] CONFIG_HT (y/n)
8
 
46
 
9
# Lazy FPU context switching
47
# Lazy FPU context switching
10
! CONFIG_FPU_LAZY (y/n)
48
! CONFIG_FPU_LAZY (y/n)
11
 
49
 
-
 
50
# MIPS Machine Type
-
 
51
@ "msim" MSIM Simulator
-
 
52
@ "msim4kc" MSIM Simulator with 4kc instruction set
-
 
53
@ "simics" Virtutech Simics simulator
-
 
54
@ "lgxemul" GXEmul Little Endian
-
 
55
@ "bgxemul" GXEmul Big Endian
-
 
56
@ "indy" SGI Indy
-
 
57
! [ARCH=mips32] MIPS_MACHINE (choice)
-
 
58
 
12
## Debugging configuration directives
59
## Debugging configuration directives
13
 
60
 
14
# General debuging and assert checking
61
# General debuging and assert checking
15
! CONFIG_DEBUG (y/n)
62
! CONFIG_DEBUG (y/n)
16
 
63
 
17
# Deadlock detection support for spinlocks
64
# Deadlock detection support for spinlocks
18
! [CONFIG_DEBUG=y] CONFIG_DEBUG_SPINLOCK (y/n)
65
! [CONFIG_DEBUG=y] CONFIG_DEBUG_SPINLOCK (y/n)
19
 
66
 
20
## Run-time configuration directives
67
## Run-time configuration directives
21
 
68
 
22
# Enable user space support
69
# Enable user space support
23
! CONFIG_USERSPACE (n/y)
70
! CONFIG_USERSPACE (n/y)
24
 
71
 
25
# Kernel test type
72
# Kernel test type
26
@ "" No test
73
@ "" No test
27
@ "synch/rwlock1" Read write test 1
74
@ "synch/rwlock1" Read write test 1
28
@ "synch/rwlock2" Read write test 2
75
@ "synch/rwlock2" Read write test 2
29
@ "synch/rwlock3" Read write test 3
76
@ "synch/rwlock3" Read write test 3
30
@ "synch/rwlock4" Read write test 4
77
@ "synch/rwlock4" Read write test 4
31
@ "synch/rwlock5" Read write test 5
78
@ "synch/rwlock5" Read write test 5
32
@ "synch/semaphore1" Semaphore test 1
79
@ "synch/semaphore1" Semaphore test 1
33
@ "synch/semaphore2" Sempahore test 2
80
@ "synch/semaphore2" Sempahore test 2
34
@ [ARCH=ia32|ARCH=amd64] "fpu/fpu1" Intel fpu test 1
81
@ [ARCH=ia32|ARCH=amd64] "fpu/fpu1" Intel fpu test 1
35
@ [ARCH=ia32|ARCH=amd64] "fpu/sse1" Intel Sse test 1
82
@ [ARCH=ia32|ARCH=amd64] "fpu/sse1" Intel Sse test 1
36
@ [ARCH=mips] "fpu/mips1" Mips FPU test 1
83
@ [ARCH=mips] "fpu/mips1" Mips FPU test 1
37
@ "print/print1" Printf test 1
84
@ "print/print1" Printf test 1
38
@ "thread/trhead1" Thread test 1
85
@ "thread/trhead1" Thread test 1
39
@ "mm/mapping1" Mapping test 1
86
@ "mm/mapping1" Mapping test 1
40
! CONFIG_TEST (choice)
87
! CONFIG_TEST (choice)
41
 
88