mirror of
https://github.com/google/alioth.git
synced 2024-11-24 04:09:36 +00:00
build: use stable rust as default
Signed-off-by: Changyuan Lyu <changyuanl@google.com>
This commit is contained in:
parent
489df47eaa
commit
ae0aae04f8
2 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@ detailed steps for building a type-2 hypervisor and booting a Linux guest kernel
|
||||||
* Build Alioth from source,
|
* Build Alioth from source,
|
||||||
|
|
||||||
```sh
|
```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),
|
* 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:
|
* Boot a Linux kernel with 2 CPUs and 4 GiB memory:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
cargo +nightly run --release --target x86_64-unknown-linux-gnu -- \
|
cargo run --release --target x86_64-unknown-linux-gnu -- \
|
||||||
-l info \
|
-l info \
|
||||||
--log-to-file \
|
--log-to-file \
|
||||||
run \
|
run \
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
[toolchain]
|
[toolchain]
|
||||||
channel = "nightly"
|
channel = "stable"
|
Loading…
Reference in a new issue