* util/grub.d/30_os-prober.in: Add minix entry.
This commit is contained in:
parent
87d62d7d29
commit
e756ec8284
2 changed files with 15 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2013-11-11 Fam Zheng <famcool@gmail.com>
|
||||||
|
|
||||||
|
* util/grub.d/30_os-prober.in: Add minix entry.
|
||||||
|
|
||||||
2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/loader/i386/coreboot/chainloader.c (load_segment): Use
|
* grub-core/loader/i386/coreboot/chainloader.c (load_segment): Use
|
||||||
|
|
|
@ -293,6 +293,17 @@ EOF
|
||||||
'\$(task-create)' '\$(task-resume)'
|
'\$(task-create)' '\$(task-resume)'
|
||||||
module /lib/ld.so.1 exec /hurd/exec '\$(exec-task=task-create)'
|
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
|
EOF
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|
Loading…
Reference in a new issue