-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKconfig
73 lines (57 loc) · 1.48 KB
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# For a description of the syntax of this configuration file,
# see http://lxr.linux.no/source/Documentation/kbuild/kconfig-language.txt.
mainmenu "Akosix/$ARCH $KERNELVERSION Configuration"
config KERNELVERSION
string
option env="KERNELVERSION"
menu "General settings"
config STACK_SIZE
int "Kernel stack size (in bytes)"
default 8192
help
The default is 8KB, if you not sure, keep it.
config EXPERIMENTAL
bool "Show experimental options"
default y
config PANIC_STRING
string "Panic message"
default " AKOSIX KERNEL PANIC "
endmenu
menu "Display"
config ENABLE_CONSOLE
bool "Enable console"
default y
config CONSOLE_WIDTH
depends on ENABLE_CONSOLE
int "Height of the console"
default 80
config CONSOLE_HEIGHT
depends on ENABLE_CONSOLE
int "Height of the console"
default 25
config ENABLE_VBE
default n
bool "Enable VBE mode (EXPERIMENTAL)"
depends on EXPERIMENTAL
help
It's very experimental, don't use it.
config VBE_HEIGHT
depends on ENABLE_VBE
int "Height of the display"
default 800
config VBE_WIDTH
depends on ENABLE_VBE
int "Height of the display"
default 600
config VBE_DEPTH
depends on ENABLE_VBE
int "Bit depth of the display"
default 8
endmenu
menu "Debugging and hacking"
config DEBUG_KMALLOC
bool "Debug kmalloc()"
default n
help
Dump the kmalloc linked lists to the console
endmenu