8 lines
218 B
Bash
8 lines
218 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
sudo apt-get install -y qemu-system-x86 qemu-utils
|
|
rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
|
rustup component add llvm-tools-preview
|
|
cargo install bootimage
|