-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.xml
More file actions
38 lines (28 loc) · 1.04 KB
/
default.xml
File metadata and controls
38 lines (28 loc) · 1.04 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Sunlight Linux - repo tool manifest (default.xml)
Org: https://github.com/sunlightlinux
Usage:
repo init -u https://github.com/sunlightlinux/slmanifests.git -b main
repo sync -j4
Versioning: all projects track 'main' (no pinned SHAs).
For a reproducible release, snapshot with:
repo manifest -r -o release-<tag>.xml
-->
<manifest>
<remote name="slgh"
fetch="https://github.com/sunlightlinux/" />
<default remote="slgh"
revision="main"
sync-j="4" />
<!-- Kernel packaging / config. -->
<project name="slkernel" path="kernel" />
<!-- void-packages fork, rebranded to Sunlight Linux. -->
<project name="slpkgs" path="pkgs" />
<!-- Init system / service manager (PID 1), written in Go. -->
<project name="slinit" path="src/init" />
<!-- System installer. -->
<project name="slinstaller" path="src/installer" />
<!-- This manifest repo itself, checked out into the tree. -->
<project name="slmanifests" path="manifests" />
</manifest>