mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-29 08:08:41 +08:00
16 lines
325 B
Bash
16 lines
325 B
Bash
GIT=https://gitlab.redox-os.org/redox-os/drivers.git
|
|
BRANCH=redox-unix
|
|
CARGOBUILD="build"
|
|
CARGOFLAGS="--all"
|
|
|
|
function recipe_version {
|
|
echo "0.1.1"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_stage {
|
|
mkdir -pv "$1/etc/pcid"
|
|
cp -v initfs.toml "$1/etc/pcid/initfs.toml"
|
|
cp -v filesystem.toml "$1/etc/pcid/filesystem.toml"
|
|
}
|