Split QEMU command

This commit is contained in:
fosslinux 2020-12-17 11:20:22 +11:00
parent f0959ba2f4
commit d6d000aa0a
1 changed files with 7 additions and 1 deletions

View File

@ -29,7 +29,13 @@ find tmp -name .git -exec rm -rf \;
# initramfs
cd tmp
find . | cpio -H newc -o | gzip > initramfs.igz
qemu-system-x86_64 -enable-kvm -kernel ../kernel -initrd initramfs.igz -append console=ttyS0 -nographic -m 16G
# Run
qemu-system-x86_64 -enable-kvm \
-m 16G \
-nographic \
-no-reboot \
-kernel ../kernel -initrd initramfs.igz -append console=ttyS0,kernel.panic=2
# Cleanup
sudo umount tmp