12 lines
187 B
Bash
Executable File
12 lines
187 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
qemu-system-x86_64 \
|
|
-machine pc \
|
|
-m 4G \
|
|
-boot d \
|
|
-drive file=disk.hdd,format=raw,if=ide \
|
|
-device pci-serial,chardev=char0 -chardev stdio,id=char0 \
|
|
$@
|