build: use stable rust as default

Signed-off-by: Changyuan Lyu <changyuanl@google.com>
This commit is contained in:
Changyuan Lyu 2024-04-24 21:35:21 -07:00 committed by Lencerf
parent 489df47eaa
commit ae0aae04f8
2 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ detailed steps for building a type-2 hypervisor and booting a Linux guest kernel
* Build Alioth from source,
```sh
cargo +nightly build --release --target x86_64-unknown-linux-gnu
cargo build --release --target x86_64-unknown-linux-gnu
```
* Make an initramfs with [u-root](https://github.com/u-root/u-root?tab=readme-ov-file#examples),
@ -17,7 +17,7 @@ detailed steps for building a type-2 hypervisor and booting a Linux guest kernel
* Boot a Linux kernel with 2 CPUs and 4 GiB memory:
```sh
cargo +nightly run --release --target x86_64-unknown-linux-gnu -- \
cargo run --release --target x86_64-unknown-linux-gnu -- \
-l info \
--log-to-file \
run \

View file

@ -1,2 +1,2 @@
[toolchain]
channel = "nightly"
channel = "stable"