9 lines
194 B
Bash
Executable File
9 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
|
|
qemu-system-x86_64 \
|
|
-kernel artifacts/kernel/bzImage \
|
|
-initrd artifacts/ramdisk/initramfs.cpio.gz \
|
|
-nographic \
|
|
-serial mon:stdio \
|
|
-no-reboot \
|
|
-append "console=ttyS0" |