[Build] Add a way to start qemu in debug mode with new script.
This commit is contained in:
parent
e1dc790155
commit
6756d25e5c
|
@ -14,8 +14,13 @@ ninja install
|
||||||
|
|
||||||
sudo sh ${DIR}/build_image.sh disk.img
|
sudo sh ${DIR}/build_image.sh disk.img
|
||||||
|
|
||||||
|
QEMU_ARGS=
|
||||||
|
if [[ $1 == "debug" ]]; then
|
||||||
|
QEMU_ARGS+="-S -s"
|
||||||
|
fi
|
||||||
|
|
||||||
# Use machine q35 to access PCI devices.
|
# Use machine q35 to access PCI devices.
|
||||||
qemu-system-x86_64 -machine q35 -d guest_errors -m 1G -serial stdio -hda disk.img
|
qemu-system-x86_64 -machine q35 -d guest_errors -m 1G -serial stdio -hda disk.img ${QEMU_ARGS}
|
||||||
popd
|
popd
|
||||||
|
|
||||||
# Extra options to add to this script in the future.
|
# Extra options to add to this script in the future.
|
||||||
|
|
Loading…
Reference in New Issue