11 lines
218 B
Bash
Executable File
11 lines
218 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ -z ${MITTOS64+x} ]; then >&2 echo "Unsupported environment! See README"; exit 1; fi
|
|
|
|
sysroot=${BUILDROOT}sysroot
|
|
iso=${BUILDROOT}mittos64.iso
|
|
|
|
mkdir -p ${sysroot}
|
|
|
|
grub-mkrescue -o ${iso} ${sysroot}
|