2009-08-29 Robert Millan <rmh.grub@aybabtu.com>
* util/grub.d/10_freebsd.in: Detect `ufs1' and `ufs2' and map them to `ufs' in the vfs.root.mountfrom kernel parameter.
This commit is contained in:
parent
d8888b5cb4
commit
c90edae43a
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2009-08-29 Robert Millan <rmh.grub@aybabtu.com>
|
||||||
|
|
||||||
|
* util/grub.d/10_freebsd.in: Detect `ufs1' and `ufs2' and map them
|
||||||
|
to `ufs' in the vfs.root.mountfrom kernel parameter.
|
||||||
|
|
||||||
2009-08-29 Robert Millan <rmh.grub@aybabtu.com>
|
2009-08-29 Robert Millan <rmh.grub@aybabtu.com>
|
||||||
|
|
||||||
* term/i386/pc/serial.c: Include `<grub/machine/memory.h>'.
|
* term/i386/pc/serial.c: Include `<grub/machine/memory.h>'.
|
||||||
|
|
|
@ -50,8 +50,10 @@ if [ "x$kfreebsd" != "x" ] ; then
|
||||||
devices_rel_dirname=`make_system_path_relative_to_its_root $devices_dirname`
|
devices_rel_dirname=`make_system_path_relative_to_its_root $devices_dirname`
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# For "ufs" it's the same. Do we care about the others?
|
case ${GRUB_FS} in
|
||||||
kfreebsd_fs=${GRUB_FS}
|
ufs1 | ufs2) kfreebsd_fs=ufs ;;
|
||||||
|
*) kfreebsd_fs=${GRUB_FS} ;;
|
||||||
|
esac
|
||||||
|
|
||||||
cat << EOF
|
cat << EOF
|
||||||
menuentry "${OS}" {
|
menuentry "${OS}" {
|
||||||
|
|
Loading…
Reference in a new issue