2009-11-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
* util/grub.d/30_os-prober.in: Restore default behavior for unsupported OSes.
This commit is contained in:
parent
4f9dfb3701
commit
246cd78f70
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2009-11-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
||||||
|
|
||||||
|
* util/grub.d/30_os-prober.in: Restore default behavior for unsupported
|
||||||
|
OSes.
|
||||||
|
|
||||||
2009-11-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
2009-11-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
||||||
|
|
||||||
* util/grub.d/30_os-prober.in: Add GNU/Hurd support
|
* util/grub.d/30_os-prober.in: Add GNU/Hurd support
|
||||||
|
|
|
@ -158,7 +158,7 @@ EOF
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
hurd|*)
|
hurd)
|
||||||
cat << EOF
|
cat << EOF
|
||||||
menuentry "${LONGNAME} (on ${DEVICE})" {
|
menuentry "${LONGNAME} (on ${DEVICE})" {
|
||||||
EOF
|
EOF
|
||||||
|
@ -182,5 +182,8 @@ EOF
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
|
*)
|
||||||
|
echo " ${LONGNAME} is not yet supported by grub-mkconfig." >&2
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue