forked from shilei-massclouds/lkmodel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRepo.toml
84 lines (82 loc) · 1.9 KB
/
Repo.toml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Default configuration
# org: default organization for components
[default]
org = "ssh://[email protected]/shilei-massclouds"
# Functional components list
# Style 1 - short path
# component-name = "repo-name"
# It means: component is in the repo ("default.org/repo-name")
#
# Style 2 - full path
# component-name = "full-repo-url"
# E.g., foo = "ssh://[email protected]/org_foo/repo_foo"
[mod_list]
arch_boot = "arch_boot"
axconfig = "axconfig"
mm = "mm"
axdriver = "axdriver"
memory_addr = "memory_addr"
#hal_base = "hal_base"
axhal = "axhal"
#earlycon = "earlycon"
early_console = "early_console"
#ramdisk = "ramdisk"
driver_block = "driver_block"
driver_virtio = "driver_virtio"
driver_pci = "driver_pci"
driver_common = "driver_common"
axerrno = "axerrno"
axtype = "axtype"
#axlog = "axlog"
axlog2 = "axlog2"
spinbase = "spinbase"
axalloc = "axalloc"
allocator = "allocator"
#kernel_guard = "kernel_guard"
kernel_guard_base = "kernel_guard_base"
mutex = "mutex"
taskctx = "taskctx"
task = "task"
wait_queue = "wait_queue"
run_queue = "run_queue"
scheduler = "scheduler"
#percpu = "percpu"
percpu2 = "percpu2"
percpu_macros2 = "percpu2"
page_table = "page_table"
page_table_entry = "page_table"
lazy_init = "lazy_init"
ratio = "ratio"
axmount = "axmount"
fstree = "fstree"
axfile = "axfile"
axio = "axio"
capability = "capability"
filetable = "filetable"
axdtb = "axdtb"
axtrap = "axtrap"
exec = "exec"
axsyscall = "axsyscall"
fileops = "fileops"
mmap = "mmap"
sys = "sys"
signal = "signal"
handler_table = "handler_table"
elf = "elf"
fork = "fork"
# Root components list
# Styles are just as [mod_list]
[root_list]
rt_early_console = "early_console"
#rt_earlycon = "earlycon"
#rt_ramdisk = "ramdisk"
rt_driver_block = "driver_block"
rt_mutex = "mutex"
rt_axhal = "axhal"
rt_axmount = "axmount"
test_axmount = "axmount"
rt_driver_virtio = "driver_virtio"
rt_task = "task"
rt_fork = "fork"
rt_exec = "exec"
rt_macrokernel = "macrokernel"