* util/grub.d/10_linux.in: Fix ZFS root passing.
This commit is contained in:
parent
e8e0566b0c
commit
7eea167113
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2012-03-10 Richard Laager <rlaager@wiktel.com>
|
||||
|
||||
* util/grub.d/10_linux.in: Fix ZFS root passing.
|
||||
|
||||
2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/commands/videoinfo.c: Add TRANSLATORS comments.
|
||||
|
|
|
@ -61,9 +61,9 @@ case x"$GRUBFS" in
|
|||
GRUB_CMDLINE_LINUX="rootflags=subvol=${rootsubvol} ${GRUB_CMDLINE_LINUX}"
|
||||
fi;;
|
||||
xzfs)
|
||||
rpool=`${grub_probe} --device ${GRUB_DEVICE} --target=fs_label 2>/dev/null || true`
|
||||
bootfs="`make_system_path_relative_to_its_root / | sed -e "s,@$,,"`"
|
||||
LINUX_ROOT_DEVICE="ZFS=${RPOOL}${bootfs}"
|
||||
GRUB_CMDLINE_LINUX="boot=zfs rpool=${RPOOL} bootfs=${RPOOL}${bootfs} ${cmdline} ${GRUB_CMDLINE_LINUX}";;
|
||||
LINUX_ROOT_DEVICE="ZFS=${rpool}${bootfs}"
|
||||
esac
|
||||
|
||||
title_correction_code=
|
||||
|
|
Loading…
Reference in a new issue