Subversion Repositories HelenOS

Rev

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

Rev 4240 Rev 4402
1
# Platform
1
# Platform
2
PLATFORM = amd64
2
PLATFORM = amd64
3
 
3
 
4
# Ramdisk format
4
# Ramdisk format
5
RDFMT = fat
5
RDFMT = fat
6
 
6
 
7
# Compiler
7
# Compiler
8
COMPILER = gcc_cross
8
COMPILER = gcc_cross
9
 
9
 
10
# Debug build
10
# Debug build
11
CONFIG_DEBUG = y
11
CONFIG_DEBUG = y
12
 
12
 
13
# Deadlock detection support for spinlocks
13
# Deadlock detection support for spinlocks
14
CONFIG_DEBUG_SPINLOCK = y
14
CONFIG_DEBUG_SPINLOCK = y
15
 
15
 
16
# Support for SMP
16
# Support for SMP
17
CONFIG_SMP = y
17
CONFIG_SMP = y
18
 
18
 
19
# Improved support for hyperthreading
-
 
20
CONFIG_HT = y
-
 
21
 
-
 
22
# Lazy FPU context switching
19
# Lazy FPU context switching
23
CONFIG_FPU_LAZY = y
20
CONFIG_FPU_LAZY = y
24
 
21
 
25
# Support for userspace debuggers
22
# Support for userspace debuggers
26
CONFIG_UDEBUG = y
23
CONFIG_UDEBUG = y
27
 
24
 
28
# Kernel console support
25
# Kernel console support
29
CONFIG_KCONSOLE = y
26
CONFIG_KCONSOLE = y
30
 
27
 
31
# Kernel symbol information
28
# Kernel symbol information
32
CONFIG_SYMTAB = y
29
CONFIG_SYMTAB = y
33
 
30
 
34
# Detailed kernel logging
31
# Detailed kernel logging
35
CONFIG_LOG = n
32
CONFIG_LOG = n
36
 
33
 
37
# Compile kernel tests
34
# Compile kernel tests
38
CONFIG_TEST = y
35
CONFIG_TEST = y
39
 
36
 
40
# Input device class
37
# Input device class
41
CONFIG_HID_IN = generic
38
CONFIG_HID_IN = generic
42
 
39
 
43
# Output device class
40
# Output device class
44
CONFIG_HID_OUT = generic
41
CONFIG_HID_OUT = generic
45
 
42
 
46
# PC keyboard support
43
# PC keyboard support
47
CONFIG_PC_KBD = y
44
CONFIG_PC_KBD = y
48
 
45
 
49
# EGA support
46
# EGA support
50
CONFIG_EGA = y
47
CONFIG_EGA = y
51
 
48
 
52
# Framebuffer support
49
# Framebuffer support
53
CONFIG_FB = y
50
CONFIG_FB = y
54
 
51
 
55
# Default framebuffer mode
52
# Default framebuffer mode
56
CONFIG_VESA_MODE = 800x600
53
CONFIG_VESA_MODE = 800x600
57
 
54
 
58
# Default framebuffer depth
55
# Default framebuffer depth
59
CONFIG_VESA_BPP = 16
56
CONFIG_VESA_BPP = 16
60
 
57