10 lines
196 B
Bash
Executable File
10 lines
196 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ -z ${MITTOS64+x} ]; then >&2 echo "Unsupported environment! See README"; exit 1; fi
|
|
|
|
iso=/opt/mittos64.iso
|
|
|
|
/opt/toolchain/mkiso
|
|
|
|
qemu-system-x86_64 -s -S -cdrom ${iso} -curses
|