Subversion Repositories HelenOS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3807 decky 1
# Platform
2
PLATFORM = ia32
3
 
4
# CPU type
5
MACHINE = pentium4
6
 
7
# Ramdisk format
8
RDFMT = tmpfs
9
 
10
# Compiler
11
COMPILER = gcc_cross
12
 
13
# Debug build
14
CONFIG_DEBUG = y
15
 
16
# Support for SMP
17
CONFIG_SMP = y
18
 
19
# Improved support for hyperthreading
20
CONFIG_HT = y
21
 
22
# Simics BIOS AP boot fix
23
CONFIG_SIMICS_FIX = y
24
 
25
# Lazy FPU context switching
26
CONFIG_FPU_LAZY = y
27
 
28
# Support for userspace debuggers
29
CONFIG_UDEBUG = n
30
 
31
# Kernel console support
32
CONFIG_KCONSOLE = y
33
 
34
# Detailed kernel logging
35
CONFIG_LOG = n
36
 
37
# Deadlock detection support for spinlocks
38
CONFIG_DEBUG_SPINLOCK = y
39
 
40
# Watchpoint on rewriting AS with zero
41
CONFIG_DEBUG_AS_WATCHPOINT = y
42
 
43
# Save all interrupt registers
44
CONFIG_DEBUG_ALLREGS = y
45
 
46
# Compile kernel tests
47
CONFIG_TEST = y
48
 
49
# Framebuffer support
50
CONFIG_FB = y
51
 
52
# Framebuffer width
53
CONFIG_VESA_WIDTH = 1024
54
 
55
# Framebuffer height
56
CONFIG_VESA_HEIGHT = 768
57
 
58
# Framebuffer depth
59
CONFIG_VESA_BPP = 24