sortix-mirror/debsrc/etc/grub.d/42_sortix

11 lines
271 B
Plaintext
Raw Normal View History

2011-08-05 12:25:00 +00:00
#!/bin/sh
for KERNEL in `ls /boot | grep sortix | grep bin`; do
echo "Found Sortix kernel: $KERNEL" >&2
INITRD=`echo "$KERNEL" | sed 's/bin/initrd/g'`
echo "menuentry \"Sortix\" {"
echo "\tmultiboot /boot/$KERNEL"
echo "\tmodule /boot/$INITRD"
echo "}"
done
2011-08-05 12:25:00 +00:00