qemu.sh (115B)
1 #!/bin/sh 2 3 set -e 4 kernel_bin="o.kernel" 5 mem="16M" 6 7 exec qemu-system-i386 \ 8 -m "$mem" \ 9 -kernel "$kernel_bin" \