ddddavidmartin / sel4-tutorials

Tutorials for working with seL4 and/or CAmkES.

Home Page:https://docs.sel4.systems/Tutorials

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sel4-tutorials

Various tutorials for using seL4, its libraries, and CAmkES.

Prerequisites

Follow the instructions for setting up your host environment on the seL4 docsite.

Starting a tutorial

A tutorial is started through the use of the init script that is provided in the root directory. Using this script you can specify a tutorial and target machine and it will create a copy of the tutorial for you to work on.

Example:

mkdir build_hello_1
cd build_hello_1
../init --plat pc99 --tut hello-1

The init script will initialize a build directory in the current directory and at the end it will print out a list of files that need to be modified to complete the tutorial. Building is performed simply be invoking ninja, and once the tutorial compiles it can be tested in Qemu by using the provided simulation script through ./simulate

Tutorials and targets

The -h switch to the init script provides a list of different tutorials and targets that can be provided to --plat and --tut respectively.

Most tutorials support any target platform, with the eception of hello-camkes-timer, which only supports the zynq7000 platform.

Virtual Machine Image

You can also download a VirtualBox virtual machine appliance(md5) (3GB, based on Lubuntu 16.04.1 with all the seL4 tutorial prerequisites installed).

This appliance is based on VirtualBox 5.1.2. You may also need to install the appropriate VirtualBox extensions.

Solutions

To view the solutions for a tutorial instead of performing the tutorial pass the --solution flag to the init script

Example:

mkdir build_hello_1_sol
cd build_hello_1_sol
../init --plat pc99 --tut hello-1 --solution

After which it will tell you where the solution files are that you can look at. You can then do ninja && ./simulate to build and run the solution.

Reporting issues or bugs in the tutorials:

Please report any issues you find in the tutorials (bugs, outdated API calls, etc) by filing an issue on the public github repository: https://github.com/SEL4PROJ/sel4-tutorials/issues

Build system tutorial

Due to custom written additions to the build system specifically for the tutorials they are not appropriate for learning how to create and structure new applications/systems. Future tutorials for this will be forthcoming. For now it is suggested to look at other existing applications for ideas.

Documentation

Developer wiki

A walkthrough of each tutorial is available on the docs site

Tutorial Slides

The slides used for the tutorial are available in docs.

seL4 Manual

The seL4 manual lives in the kernel source in the manual directory. To generate a PDF go into that directory and type make. You will need to have LaTeX installed to build it.

A pre-generated PDF version can be found here.

CAmkES Documentation

CAmkES documentation lives in the camkes-tool repository in docs/index.md.

About

Tutorials for working with seL4 and/or CAmkES.

https://docs.sel4.systems/Tutorials

License:Other


Languages

Language:Python 55.4%Language:CMake 33.4%Language:C 11.3%