Skip to content

Commit ec6938a

Browse files
committed
Replace (sel4-)?tutorials-manifest with tutorials
The previous usage was inconsistent, sometimes with and sometimes without "sel4-", and also somewhat misleading. The directory does not (only) contain the manifest, but mainly the content of the manifest. The manifest itself is in a hidden directory inside. Signed-off-by: Gerwin Klein <gerwin.klein@proofcraft.systems>
1 parent fbf7c4d commit ec6938a

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

tutorials/camkes-vm-linux/camkes-vm-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ in applications loaded by the capDL loader.
3838
<br>
3939
More information about CapDL projects can be found [here](https://docs.sel4.systems/CapDL.html).
4040
<br>
41-
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.
41+
For this tutorial clone the [CapDL repo](https://github.com/sel4/capdl). This can be added in a directory that is adjacent to the main `tutorials` directory.
4242
</details>
4343

4444
## Initialising

tutorials/fault-handlers/fault-handlers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ in applications loaded by the capDL loader.
5656
<br>
5757
More information about CapDL projects can be found [here](https://docs.sel4.systems/CapDL.html).
5858
<br>
59-
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.
59+
For this tutorial clone the [CapDL repo](https://github.com/sel4/capdl). This can be added in a directory that is adjacent to the main `tutorials` directory.
6060
</details>
6161

6262
## Background: What is a fault, and what is a fault handler?

tutorials/hello-camkes-2/hello-camkes-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ in applications loaded by the capDL loader.
3737
<br>
3838
More information about CapDL projects can be found [here](https://docs.sel4.systems/CapDL.html).
3939
<br>
40-
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.
40+
For this tutorial clone the [CapDL repo](https://github.com/sel4/capdl). This can be added in a directory that is adjacent to the main `tutorials` directory.
4141
</details>
4242

4343
## Initialising

tutorials/hello-camkes-timer/hello-camkes-timer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ in applications loaded by the capDL loader.
4848
<br>
4949
More information about CapDL projects can be found [here](https://docs.sel4.systems/CapDL.html).
5050
<br>
51-
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.
51+
For this tutorial clone the [CapDL repo](https://github.com/sel4/capdl). This can be added in a directory that is adjacent to the main `tutorials` directory.
5252
</details>
5353

5454
## Initialising

tutorials/hello-world/hello-world.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Initialise the tutorial in Terminal B, which is running the container.
5151

5252
/*? macros.tutorial_init("hello-world") ?*/
5353

54-
This step creates two new directories in `sel4-tutorials-manifest`, namely `hello-world` and `hello-world_build`
54+
This step creates two new directories in `tutorials/`, namely `hello-world` and `hello-world_build`
5555

5656
<details markdown='1'>
5757

@@ -70,7 +70,7 @@ This will generate another `hello-world` directory and `hello-world_build` direc
7070
### Build the program
7171

7272
```
73-
cd sel4-tutorials-manifest/hello-world_build
73+
cd tutorials/hello-world_build
7474
```
7575

7676
Next, build the program in Terminal B using ninja
@@ -111,7 +111,7 @@ because the program hasn't properly cleaned up after itself yet. (This will come
111111
To look at the sources, open a new terminal, Terminal A:
112112

113113
```
114-
cd sel4-tutorials-manifest/hello-world
114+
cd tutorials/hello-world
115115
ls
116116
```
117117

@@ -161,7 +161,7 @@ target_link_libraries(hello-world
161161
muslc utils sel4tutorials
162162
sel4muslcsys sel4platsupport sel4utils sel4debug)
163163
164-
# Tell the build system that this application is the root task.
164+
# Tell the build system that this application is the root task.
165165
include(rootserver)
166166
DeclareRootserver(hello-world)
167167
/*- endset -*/
@@ -170,8 +170,8 @@ DeclareRootserver(hello-world)
170170

171171
### `main.c`
172172

173-
The main C is a very typical C file. For a basic root server application, the only requirement is that
174-
a `main` function is provided.
173+
The main C is a very typical C file. For a basic root server application, the only requirement is that
174+
a `main` function is provided.
175175

176176
```c
177177
#include <stdio.h>

tutorials/interrupts/interrupts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ in applications loaded by the capDL loader.
5050
<br>
5151
More information about CapDL projects can be found [here](https://docs.sel4.systems/CapDL.html).
5252
<br>
53-
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.
53+
For this tutorial clone the [CapDL repo](https://github.com/sel4/capdl). This can be added in a directory that is adjacent to the main `tutorials` directory.
5454
</details>
5555

5656
## Background

tutorials/ipc/ipc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ in applications loaded by the capDL loader.
5151

5252
More information about CapDL projects can be found [here](https://docs.sel4.systems/CapDL.html).
5353

54-
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.
54+
For this tutorial clone the [CapDL repo](https://github.com/sel4/capdl). This can be added in a directory that is adjacent to the main `tutorials` directory.
5555
</details>
5656

5757
## Background

tutorials/notifications/notifications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ in applications loaded by the capDL loader.
5353

5454
More information about CapDL projects can be found [here](https://docs.sel4.systems/CapDL.html).
5555

56-
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.
56+
For this tutorial clone the [CapDL repo](https://github.com/sel4/capdl). This can be added in a directory that is adjacent to the main `tutorials` directory.
5757
</details>
5858

5959
## Background

tutorials/threads/threads.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ in applications loaded by the capDL loader.
4242

4343
More information about CapDL projects can be found [here](https://docs.sel4.systems/CapDL.html).
4444

45-
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.
45+
For this tutorial clone the [CapDL repo](https://github.com/sel4/capdl). This can be added in a directory that is adjacent to the main `tutorials` directory.
4646

4747
## Initialising
4848

0 commit comments

Comments
 (0)