This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
66 lines (54 loc) · 1.44 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
mainmenu "Runikraft/0.1.0 Configuration"
menu "Memory and CPU Configuration"
config HEAP_SIZE
int "Heap size(MiB)"
default 16
config STACK_SIZE_PAGE_ORDER
int "Page order of stack size(log STACK_SIZE)"
default 4
menu "Limit Configuration"
config MEMORY_SIZE
int "the maximum size of memory(B)"
default -1
help
-1: unlimited
config OPEN_FILES
int "the maximum size of open files"
default 1024
config PIPE_SIZE
int "the maximum size of pipe files"
default 4096
config CPU_TIME
int "the limit of CPU time(ms)"
default -1
help
-1: Duration::MAX
endmenu
config LCPU_MAXCOUNT
int "the maximum count of CPU(less than 8)"
default 8
config MAIN_STACK_SIZE
int "the main stack size(B)"
default 65536
config PAGE_SIZE
int "the page size(B)"
default 4096
endmenu
menu "Library Configuration"
source "lib/rkplat/config"
source "lib/rkboot/config"
endmenu
menu "Make Build Configuration"
choice
prompt "Make build type"
default debug
config debug
bool "debug type"
help
Compile without "--release"
config release
bool "release type"
help
Compile with "--release"
endchoice
endmenu