diff options
| author | Hunter Kvalevog <hunter@kvog.sh> | 2026-02-15 09:59:38 -0600 |
|---|---|---|
| committer | Hunter Kvalevog <hunter@kvog.sh> | 2026-02-15 09:59:38 -0600 |
| commit | 0d2dfeca9318e954cbbd1f719b65f8a5c5eacd38 (patch) | |
| tree | 620bbaaa6a9aea7562abd5859e17b9bd0321d62d /rushmore-linux/rl-qemu.sh | |
| parent | be4240d597716b2f4d3e3d0fbadfc8f219787ed1 (diff) | |
rl: New build system, arm64 support
Diffstat (limited to 'rushmore-linux/rl-qemu.sh')
| -rwxr-xr-x | rushmore-linux/rl-qemu.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rushmore-linux/rl-qemu.sh b/rushmore-linux/rl-qemu.sh new file mode 100755 index 0000000..af9565b --- /dev/null +++ b/rushmore-linux/rl-qemu.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash +set -euo pipefail + +DIR="$(cd "$(dirname "$0")" && pwd)" + +qemu-system-aarch64 -machine virt -cpu cortex-a72 \ + -kernel "$DIR/out/kernel/arch/arm64/boot/Image" \ + -initrd "$DIR/out/initramfs.cpio.gz" \ + -append "console=ttyAMA0 console=ttyS0,115200 vga=792" \ + -device virtio-gpu-pci,edid=on,xres=1024,yres=768 \ + -display cocoa \ + -serial mon:stdio
\ No newline at end of file |