Skip to content

Commit

Permalink
fix wording for copyright
Browse files Browse the repository at this point in the history
Signed-off-by: Birgit Brecknell <b@brck.nl>
  • Loading branch information
bbrcknl committed May 28, 2024
1 parent 203c810 commit da1c2a8
Show file tree
Hide file tree
Showing 19 changed files with 43 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC..
Copyright 2024, seL4 Project a Series of LF Projects, LLC..
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
2 changes: 1 addition & 1 deletion tutorials/camkes-vm-crossvm/camkes-vm-crossvm.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
22 changes: 21 additions & 1 deletion tutorials/camkes-vm-linux/camkes-vm-linux.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand All @@ -15,6 +15,26 @@ You will become familiar with:
* Creating, configuring and building guest Linux VM components in CAmkES.
* Building and installing your own Linux VM user-level programs and kernel modules.

## CapDL Loader

This tutorial uses the *capDL loader*, a root task which allocates statically
configured objects and capabilities.

<details markdown='1'>
<summary style="display:list-item">Get CapDL</summary>
The capDL loader parses
a static description of the system and the relevant ELF binaries.
It is primarily used in [Camkes](https://docs.sel4.systems/CAmkES/) projects
but we also use it in the tutorials to reduce redundant code.
The program that you construct will end up with its own CSpace and VSpace, which are separate
from the root task, meaning CSlots like `seL4_CapInitThreadVSpace` have no meaning
in applications loaded by the capDL loader.
<br>
More information about CapDL projects can be found [here](https://docs.sel4.systems/CapDL.html).
<br>
For this tutorial clone the [CapDL repo](https://github.com/sel4/capdl). This can be added in a directory that is adjacent to the tutorials-manifest directory.
</details>

## Initialising

/*? macros.tutorial_init("camkes-vm-linux") ?*/
Expand Down
2 changes: 1 addition & 1 deletion tutorials/capabilities/capabilities.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
2 changes: 1 addition & 1 deletion tutorials/dynamic-1/dynamic-1.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
4 changes: 2 additions & 2 deletions tutorials/dynamic-2/dynamic-2.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down Expand Up @@ -891,7 +891,7 @@ That's it for this tutorial.
```
/*-- filter File("main.c") -*/
/*
* 2024 seL4 Project a Series of LF Projects, LLC.
* Copyright 2024, seL4 Project a Series of LF Projects, LLC.
*
* SPDX-License-Identifier: CC-BY-SA-4.0
*/
Expand Down
6 changes: 3 additions & 3 deletions tutorials/dynamic-3/dynamic-3.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down Expand Up @@ -542,7 +542,7 @@ That's it for this tutorial.
```
/*-- filter File("main.c") -*/
/*
* 2024 seL4 Project a Series of LF Projects, LLC..
* Copyright 2024, seL4 Project a Series of LF Projects, LLC..
*
* SPDX-License-Identifier: CC-BY-SA-4.0
*/
Expand Down Expand Up @@ -722,7 +722,7 @@ int main(void) {
/*-- endfilter -*/
/*-- filter File("app.c") -*/
/*
* 2024 seL4 Project a Series of LF Projects, LLC..
* Copyright 2024, seL4 Project a Series of LF Projects, LLC..
*
* SPDX-License-Identifier: CC-BY-SA-4.0
*/
Expand Down
4 changes: 2 additions & 2 deletions tutorials/dynamic-4/dynamic-4.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down Expand Up @@ -494,7 +494,7 @@ int main(void) {
/*-- endfilter -*/
/*-- filter File("client.c") -*/
/*
* 2024 seL4 Project a Series of LF Projects, LLC..
* Copyright 2024, seL4 Project a Series of LF Projects, LLC..
*
* SPDX-License-Identifier: CC-BY-SA-4.0
*/
Expand Down
2 changes: 1 addition & 1 deletion tutorials/fault-handlers/fault-handlers.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
2 changes: 1 addition & 1 deletion tutorials/hello-camkes-0/hello-camkes-0.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
2 changes: 1 addition & 1 deletion tutorials/hello-camkes-1/hello-camkes-1.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
2 changes: 1 addition & 1 deletion tutorials/hello-camkes-2/hello-camkes-2.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
2 changes: 1 addition & 1 deletion tutorials/interrupts/interrupts.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
2 changes: 1 addition & 1 deletion tutorials/ipc/ipc.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
2 changes: 1 addition & 1 deletion tutorials/mapping/mapping.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
2 changes: 1 addition & 1 deletion tutorials/mcs/mcs.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
2 changes: 1 addition & 1 deletion tutorials/notifications/notifications.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
2 changes: 1 addition & 1 deletion tutorials/threads/threads.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down
2 changes: 1 addition & 1 deletion tutorials/untyped/untyped.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
2024 seL4 Project a Series of LF Projects, LLC.
Copyright 2024, seL4 Project a Series of LF Projects, LLC.
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Expand Down

0 comments on commit da1c2a8

Please sign in to comment.