diff --git a/ChangeLog b/ChangeLog index c06aa81ca..24a07e352 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-11-11 Fam Zheng + + * util/grub.d/30_os-prober.in: Add minix entry. + 2013-11-10 Vladimir Serbinenko * grub-core/loader/i386/coreboot/chainloader.c (load_segment): Use diff --git a/util/grub.d/30_os-prober.in b/util/grub.d/30_os-prober.in index c991360cc..502faeaa8 100644 --- a/util/grub.d/30_os-prober.in +++ b/util/grub.d/30_os-prober.in @@ -293,6 +293,17 @@ EOF '\$(task-create)' '\$(task-resume)' module /lib/ld.so.1 exec /hurd/exec '\$(exec-task=task-create)' } +EOF + ;; + minix) + cat << EOF +menuentry "${LONGNAME} (on ${DEVICE}, Multiboot)" { +EOF + save_default_entry | sed -e "s/^/\t/" + prepare_grub_to_access_device ${DEVICE} | sed -e "s/^/\t/" + cat << EOF + multiboot /boot/image_latest +} EOF ;; *)