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
#!/usr/bin/python3 | |
import sys | |
import os | |
import re | |
import io | |
import requests | |
import json | |
import io | |
import html |
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
#!/bin/sh | |
mkdir -p sel4-project/projects | |
cd sel4-project | |
git clone https://github.com/sel4/sel4 kernel | |
git clone https://github.com/seL4/seL4_libs projects/seL4_libs | |
git clone https://github.com/seL4/seL4_tools tools | |
ln -s tools/cmake-tool/default-CMakeLists.txt ./CMakeLists.txt | |
ln -s tools/cmake-tool/init-build.sh . |