commit 45e85e0b2a45977c15f973dca0362e32331f74d7 parent bf8f0ea6ae4843eb871437b383d147c96e1a6f65 Author: Roberto E. Vargas Caballero <k0ga@shike2.com> Date: Wed, 9 Nov 2022 17:34:30 +0100 pi4: Add launcher script Change-Id: I70386f50c3a2f05bbd49cc777c445d60b1e13710 Diffstat:
A | scripts/pi4.sh | | | 14 | ++++++++++++++ |
1 file changed, 14 insertions(+), 0 deletions(-)
diff --git a/scripts/pi4.sh b/scripts/pi4.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +os=bin/os9.bin + +qemu-system-aarch64 \ + -M virt\ + -m 1024\ + -smp 4\ + -cpu cortex-a53\ + -serial mon:stdio\ + -gdb tcp::7000 -S\ + -no-reboot \ + -nographic \ + -bios $os \