-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build targets for on-seL4 and not-on-seL4
This allows us to build versions of the website for running on seL4/LionsOS, and for running on a more standard webserver. The version for running on LionsOS adds a link in the footer to a diagram and a description and where to get the source. `make build` builds in _site, `make on_seL4` builds into _site_on_seL4, and includes any material protected by an `if site.on_seL4` guard. Currently that's only in the template. Signed-off-by: Peter Chubb <Peter.Chubb@unsw.edu.au> Signed-off-by: Ivan Velickovic <i.velickovic@unsw.edu.au> Signed-off-by: James Archer <j.archer@unsw.edu.au>
- Loading branch information
Showing
9 changed files
with
400 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
*.swp | ||
_site | ||
_preview | ||
_site_on_seL4 | ||
.sass-cache | ||
.jekyll-cache | ||
.jekyll-metadata | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
# Copyright 2020 seL4 Project a Series of LF Projects, LLC. | ||
# SPDX-License-Identifier: CC-BY-SA-4.0 | ||
title: About this website | ||
--- | ||
<h1> | ||
About this website | ||
</h1> | ||
<div class="row"> | ||
<div class="col-sm-6 col-3"> | ||
<img style= | ||
"padding:10px; width:inherit; vertical-align: top; float: | ||
left;" src="./webserver.svg" alt="Webserver architecture | ||
diagram" class="img-responsive img-fluid"> | ||
</div> | ||
<div class="col-sm-6 col-3"> | ||
<p> | ||
This website runs on <a href="https://lionsos.org">LionsOS</a>, | ||
an operating system for embedded systems. LionsOS is in turn | ||
based on | ||
the <a href="https://github.com/seL4/microkit">Microkit</a>, a | ||
framework that presents a small set of simple abstractions over | ||
seL4, and | ||
the <a href="https://trustworthy.systems/projects/drivers">sel4 | ||
Device Driver Framework</a>. | ||
</p> | ||
<p> | ||
Source for the system is | ||
in <a href="https://github.com/au-ts/lionsos">the LionsOS</a> | ||
repository. | ||
</p> | ||
<p> | ||
The hardware is | ||
an <a href="https://www.hardkernel.com/shop/odroid-c4/">Odroid | ||
C4</a>, a quad-core Cortex A55 running at 1.2GHz with 4G of DDR4 | ||
RAM and a Gigabit ethernet. We are using only one of the cores. | ||
</p> | ||
<p> | ||
For ease of update, the website content is stored on an NFS | ||
server. It is built from content | ||
on <a href="https://github.com/seL4/website">github.com</a> and | ||
deployed to the NFS server as updates are accepted into the | ||
tree. | ||
</p> | ||
<p> | ||
The MicroPython code that actually implements the webserver is | ||
based on | ||
the <a href="https://github.com/miguelgrinberg/microdot">Microdot</a> | ||
framework. It uses asychronous access to network and | ||
filesystems. | ||
</p> | ||
</div> | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Copyright 2024 seL4 Project a Series of LF Projects, LLC. | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
## | ||
|
||
url: "https://beta.sel4.systems" | ||
static_url: "https://beta.sel4.systems" | ||
on_seL4: true | ||
destination: _site_on_seL4 |