alcedo/checkmultiboot.sh

7 lines
125 B
Bash
Executable File

#!/bin/sh
if grub-file --is-x86-multiboot myos.bin; then
echo multiboot confirmed
else
echo the file is not multiboot
fi