thanks for your interest in contributing to Mycelium, an alleged "operating system"! please bear in mind that this is a hobby project that i work on in my spare time, so pull requests may not always be reviewed in a timely manner.
mycelium is built using inoculate, the horrible mycelium build tool.
inoculate automates the process of compiling the kernel and bootloader and
producing a bootable mycelium disk image. it also provides a test runner for
running kernel-mode tests in QEMU, running the release kernel in QEMU, and
launching a gdb debugging session.
inoculate 0.1.0
the horrible mycelium build tool (because that's a thing we have to have now apparently!)
USAGE:
inoculate [OPTIONS] <kernel-bin> [SUBCOMMAND]
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
--bootloader-manifest <bootloader-manifest>
The path to the `bootloader` crate's Cargo manifest. If this is not provided, it will be located
automatically
--color <color>
Whether to emit colors in output [env: CARGO_TERM_COLORS=] [default: auto] [possible values: auto, always,
never]
--kernel-manifest <kernel-manifest>
The path to the kernel's Cargo manifest. If this is not provided, it will be located automatically
-l, --log <log> Configures build logging [env: RUST_LOG=] [default: warn]
-o, --out-dir <out-dir> Overrides the directory in which to build the output image
-t, --target-dir <target-dir> Overrides the target directory for the kernel build
ARGS:
<kernel-bin> The path to the kernel binary
SUBCOMMANDS:
help Prints this message or the help of the given subcommand(s)
run Builds a bootable disk image and runs it in QEMU (implies: `build`)
test Builds a bootable disk image with tests enabled, and runs the tests in QEMU
the following cargo aliases are provided for development:
cargo inoculateruns anyinoculatesubcommandcargo run-x64runs the x86_64 kernel in QEMUcargo test-x64runs the x86_64 kernel's kernel-mode test suite in QEMUcargo build-x64builds the x86_64 bootable disk imagecargo clippy-x64runs the clippy linter with the kernel x86_64 target enabled (rather than the build host's target triple).
in addition to inoculate, which is used to build and run the kernel, a
justfile for the Just command runner is provided to automate testing and
linting workflows that involve multiple steps.
note that any recipe that takes a <crate> can be invoked with the name of a
specific crate in the workspace, or without a crate name to run that recipe for
the whole Mycelium workspace.
just preflight: runs all tests and checks. recommended for running on a branch prior to opening a pull request.just test <crate>: runs all tests for<crate>(or the whole workspace if no crate is provided), including host tests, Loom tests, Miri tests, and doctests.just miri <crate>: runs tests for<crate>in the Miri interpreter.just loom <crate>: runs Loom models for<crate>(or all Loom models in the workspace).just test-host <crate>: runs standardcargo testtests (host tests) for<crate>(or the whole workspace).just test-kernel: runs the kernel test suite in QEMU --- this is equivalent tocargo test-x64.just docs <crate>: builds and opens development RustDoc documentation for<crate>(or for the whole workspace).just lint <crate>: runs clippy and rustfmt linting checks for<crate>/the whole workspace.
running just --list (or just just) will print a list of all available just
recipes.
see https://just.systems/man for more information on using Just.
to build mycelium for x86_64, you need the following:
- a nightly rust compiler
- the
rust-srcandllvm-tools-previewRust toolchain components
the rust-src and llvm-tools-preview toolchain components are required in the
rust-toolchain.toml file, so in most cases, rustup will install them
automatically. if, for whatever reason, they are not present, you can install
them manually with:
rustup component add rust-src llvm-tools-previewto run the mycelium kernel-mode tests, or to run an interactive mycelium session
using inoculate, you need the QEMU emulator; in particular,
qemu-system-x86_64 to run the x86_64 mycelium kernel. you can install QEMU
using your favorite package manager.
similarly, to use inoculate's support for gdb (the GNU debugger), you need
gdb installed on your system. it's probably also possible to debug mycelium with
lldb somehow, but i haven't tried that.
in order to use the justfile, you need the Just command
runner. this is optional, but useful to have. most of the Just recipes run tests
using cargo nextest rather than cargo test, but the justfile will
offer to install cargo nextest for you if needed.
for NixOS users, there's an included shell.nix which can be used with
nix-shell or direnv. this should ensure all required runtime
dependencies and tools are present.
for users of other package managers, you're on your own...but if there's a similar mechanism for installing the required dev tooling for a project from a config file, i'd welcome a PR to add support for your preferred package manager.