mirror of
https://github.com/iceHtwoO/novaOS.git
synced 2026-04-16 20:22:26 +00:00
15 lines
360 B
Bash
Executable File
15 lines
360 B
Bash
Executable File
cargo build --target aarch64-unknown-none
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
llvm-objcopy -O binary ../target/aarch64-unknown-none/debug/nova ../target/aarch64-unknown-none/debug/kernel8.img
|
|
|
|
qemu-system-aarch64 \
|
|
-M raspi3b \
|
|
-cpu cortex-a53 \
|
|
-serial stdio \
|
|
-sd ../sd.img \
|
|
-display none \
|
|
-kernel ../target/aarch64-unknown-none/debug/kernel8.img \
|
|
-s -S
|