8966351b12
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
8 lines
132 B
Bash
Executable File
8 lines
132 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "usage: testiso <iso name>"
|
|
exit 1
|
|
fi
|
|
qemu -boot d -kernel-kqemu -m 256 -cdrom "${1}"
|