A POSIX-like operating system, designed to run unmodified Linux application targeting Cloud/HPC enviroment. It's based on Zircon Kernel from Fuchsia/LK project.
NOTE: As derived from Fuchsia some scripts/tools are still necessary (plan to remove in the future).
# Jiri Bootstrap:
curl -s "https://fuchsia.googlesource.com/jiri/+/HEAD/scripts/bootstrap_jiri?format=TEXT" | base64 --decode | bash -s mist-os
# Update binary/packages dependencies using jiri
cd mist-os
export PATH=$PWD/.jiri_root/bin:$PATH
# Clone the REPO
jiri import -name=integration flower https://github.com/misttech/integration
jiri update
# Avoid jiri to update the project(git). It will be usefull for updating packages and deps (submodules).
jiri project-config --no-update=true --no-rebase=true
# Check out the main branch
git checkout main
# Build the kernel
make it
# Build and run qemu
make it rain
# Build and run some tests
make test
The repo is a clone of Fuchsia original Repo from here. The Fuchsia original files are preserved with .fuchsia extension
Most of the code is governed by BSD-style licenses. Some parts are under an MIT-style license.
The Third Party Components (third_party/...) are under various licenses (of the BSD, MIT, or Zlib style), which may be found in the root directory of each component, respectively.