forked from seL4/sel4-tutorials-manifest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmcs.xml
85 lines (69 loc) · 3.5 KB
/
mcs.xml
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
85
<!--
Copyright 2017, Data61
Commonwealth Scientific and Industrial Research Organisation (CSIRO)
ABN 41 687 119 230.
This software may be distributed and modified according to the terms of
the BSD 2-Clause license. Note that NO WARRANTY is provided.
See "LICENSE_BSD2.txt" for details.
@TAG(DATA61_BSD)
-->
<manifest>
<remote name="sel4proj" fetch="."/>
<remote name="seL4" fetch="../seL4"/>
<default revision="master" remote="seL4"/>
<!-- the seL4 kernel -->
<project name="seL4.git" path="kernel" revision="new-rt">
<linkfile src="libsel4" dest="libs/libsel4"/>
</project>
<!-- tools for building -->
<project name="seL4_tools.git" path="projects/tools" revision="master">
<linkfile src="common-tool" dest="tools/common"/>
<linkfile src="kbuild-tool" dest="tools/kbuild"/>
<linkfile src="elfloader-tool" dest="tools/elfloader"/>
</project>
<!-- C library -->
<project name="musllibc.git" path="libs/libmuslc" revision="sel4"/>
<!-- seL4-specific libraries -->
<project name="seL4_libs.git" path="projects/seL4_libs">
<linkfile src="libsel4allocman" dest="libs/libsel4allocman"/>
<linkfile src="libsel4debug" dest="libs/libsel4debug"/>
<linkfile src="libsel4muslcsys" dest="libs/libsel4muslcsys"/>
<linkfile src="libsel4platsupport" dest="libs/libsel4platsupport"/>
<linkfile src="libsel4simple" dest="libs/libsel4simple"/>
<linkfile src="libsel4simple-default" dest="libs/libsel4simple-default"/>
<linkfile src="libsel4simple-stable" dest="libs/libsel4simple-stable"/>
<linkfile src="libsel4test" dest="libs/libsel4test"/>
<linkfile src="libsel4utils" dest="libs/libsel4utils"/>
<linkfile src="libsel4vka" dest="libs/libsel4vka"/>
<linkfile src="libsel4vspace" dest="libs/libsel4vspace"/>
<linkfile src="libsel4sync" dest="libs/libsel4sync"/>
<linkfile src="libsel4bench" dest="libs/libsel4bench"/>
</project>
<!-- seL4-independent libraries -->
<project name="util_libs.git" path="projects/util_libs" revision="master">
<linkfile src="libcpio" dest="libs/libcpio"/>
<linkfile src="libelf" dest="libs/libelf"/>
<linkfile src="libplatsupport" dest="libs/libplatsupport"/>
<linkfile src="libutils" dest="libs/libutils"/>
</project>
<!-- all the CAmkES tools and libraries -->
<project name="camkes-tool.git" path="tools/camkes" revision="master">
<linkfile src="libsel4camkes" dest="libs/libsel4camkes"/>
<linkfile src="libsel4muslccamkes" dest="libs/libsel4muslccamkes"/>
<linkfile src="docs/index.md" dest="README-camkes.md"/>
</project>
<!-- all the capDL tools and libraries -->
<project name="capdl.git" path="projects/capdl" revision="master">
<linkfile src="capDL-tool" dest="tools/capDL"/>
<linkfile src="python-capdl-tool" dest="tools/python-capdl"/>
</project>
<!-- tool for removing excess functions from C code -->
<project name="pruner.git" path="tools/pruner"/>
<!-- global CAmkES components and interfaces -->
<project remote="sel4proj" name="global-components.git" path="projects/global-components" revision="master"/>
<!-- the tutorial code -->
<project name="sel4-tutorials-source.git" path="projects/sel4-tutorials-source" remote="sel4proj" revision="mcs">
<linkfile src="manage.py" dest="manage.py"/>
<linkfile src="README.md" dest="README.md"/>
</project>
</manifest>