alcedo/checkmultiboot.sh

7 lines
125 B
Bash
Raw Normal View History

2017-10-20 20:58:06 +01:00
#!/bin/sh
if grub-file --is-x86-multiboot myos.bin; then
2017-10-20 20:58:06 +01:00
echo multiboot confirmed
else
echo the file is not multiboot
fi