13 lines
169 B
Bash
Executable File
13 lines
169 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
qemu-system-x86_64 \
|
|
-cpu IvyBridge \
|
|
-m 4G \
|
|
-cdrom mop2.iso \
|
|
-boot d \
|
|
-serial stdio \
|
|
-drive file=system.img,format=raw,if=ide \
|
|
$@
|