54 lines
902 B
Bash
Executable File
54 lines
902 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
build="$(dirname $0)/build"
|
|
assets="$(dirname $0)/assets"
|
|
debug=""
|
|
flash_name="ovmf.fd"
|
|
gfx="-nographic"
|
|
|
|
for arg in $@; do
|
|
case "${arg}" in
|
|
--debug)
|
|
debug="-s"
|
|
flash_name="ovmf_debug.fd"
|
|
;;
|
|
--gfx)
|
|
gfx=""
|
|
;;
|
|
*)
|
|
build="${arg}"
|
|
;;
|
|
esac
|
|
done
|
|
|
|
kvm=""
|
|
if [[ -c /dev/kvm ]]; then
|
|
kvm="-enable-kvm"
|
|
fi
|
|
|
|
if ! ninja -C "${build}"; then
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -n $TMUX ]]; then
|
|
if [[ -n $debug ]]; then
|
|
tmux split-window "gdb ${build}/popcorn.elf" &
|
|
else
|
|
tmux split-window "sleep 1; telnet localhost 45454" &
|
|
fi
|
|
fi
|
|
|
|
touch "${build}/popd_table.data"
|
|
exec qemu-system-x86_64 \
|
|
-drive "if=pflash,format=raw,file=${build}/${flash_name}" \
|
|
-drive "format=raw,file=${build}/popcorn.img" \
|
|
-monitor telnet:localhost:45454,server,nowait \
|
|
-smp 1 \
|
|
-m 512 \
|
|
-d mmu,int,guest_errors \
|
|
-D popcorn.log \
|
|
-cpu Broadwell \
|
|
-M q35 \
|
|
-no-reboot \
|
|
$gfx $kvm $debug
|