- fedora -> debian bootstrap (v1)
- setup apt
dnf group install development-toolsdnf install dpkg apt dpkg-dev autoconf automakesudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6ED0E7B82643E131 78DBA3BC47EF2265(TODO change this to/etc/apt/trusted.gpg.d/)sudo dnf install debian-keyringalternative
- binfmt emulation
sudo dnf install qemu-static-user
- make
apt-sourcesdir for sources to live in - equivs
- setup apt
This file contains hidden or 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 hidden or 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 . |