diff --git a/recipes/bootstrap/recipe.toml b/recipes/bootstrap/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..d923d92bdc40206a1ddcf38840447e2f719ac80d
--- /dev/null
+++ b/recipes/bootstrap/recipe.toml
@@ -0,0 +1,13 @@
+[source]
+git = "https://gitlab.redox-os.org/redox-os/bootstrap.git"
+
+[build]
+template = "custom"
+script = """
+ARCH="$(echo "${TARGET}" | cut -d - -f1)"
+nasm -o "${COOKBOOK_BUILD}/asm.o" -f elf64 "${COOKBOOK_SOURCE}/src/${ARCH}.asm"
+cargo -Zbuild-std=core,alloc,compiler_builtins -Zbuild-std-features=compiler-builtins-mem rustc --target "${TARGET}" --manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" --release --target-dir "${COOKBOOK_BUILD}" -- --emit obj="${COOKBOOK_BUILD}/${TARGET}/release/libbootstrap.a"
+compiler_builtins=`find "${COOKBOOK_BUILD}/x86_64-unknown-redox/release/deps/" -name "*libcompiler_builtins*.rlib"`
+ld -o "${COOKBOOK_STAGE}/bootstrap" --gc-sections -T "${COOKBOOK_SOURCE}/src/${ARCH}.ld" "${COOKBOOK_BUILD}/asm.o" "${COOKBOOK_BUILD}/${TARGET}/release/libbootstrap.a" "${COOKBOOK_SYSROOT}/lib/libc.a" "$compiler_builtins"
+"""
+dependencies = ["relibc"]
diff --git a/recipes/escalated/recipe.toml b/recipes/escalated/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..801bf9a8bb7549c517c2bd753ca5685e39e9ab6e
--- /dev/null
+++ b/recipes/escalated/recipe.toml
@@ -0,0 +1,5 @@
+[source]
+git = "https://gitlab.redox-os.org/redox-os/escalated.git"
+
+[build]
+template = "cargo"
diff --git a/recipes/relibc/recipe.toml b/recipes/relibc/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..a25543a235eec72a36a8d6b62757156f851e89a4
--- /dev/null
+++ b/recipes/relibc/recipe.toml
@@ -0,0 +1,10 @@
+[recipe]
+# TODO: Set git link once userspace_fexec is merged.
+#GIT=https://gitlab.redox-os.org/redox-os/relibc.git
+
+[build]
+template = "custom"
+script = """
+cd "${COOKBOOK_SOURCE}"
+"$REDOX_MAKE" CARGO="env -u CARGO cargo" -j"$($NPROC)" DESTDIR="${COOKBOOK_STAGE}" install
+"""