summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bsdinstall
diff options
context:
space:
mode:
authordteske <dteske@FreeBSD.org>2013-12-07 00:33:10 +0000
committerdteske <dteske@FreeBSD.org>2013-12-07 00:33:10 +0000
commit17574f5acb83d692f63b419bd0e0b0f2a798e7b3 (patch)
treea5b13c3cd52347c72bb47eac77753c7968a84ddc /usr.sbin/bsdinstall
parent4490be87f5c99153f1e18387430f652d85c8cae1 (diff)
downloadFreeBSD-src-17574f5acb83d692f63b419bd0e0b0f2a798e7b3.zip
FreeBSD-src-17574f5acb83d692f63b419bd0e0b0f2a798e7b3.tar.gz
MFC r258927: Fix a regression introduced by SVN r257842 that prevents
Encryption from being enabled. Approved by: re (gjb)
Diffstat (limited to 'usr.sbin/bsdinstall')
-rwxr-xr-xusr.sbin/bsdinstall/scripts/zfsboot10
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.sbin/bsdinstall/scripts/zfsboot b/usr.sbin/bsdinstall/scripts/zfsboot
index 2248a0d..90d6240 100755
--- a/usr.sbin/bsdinstall/scripts/zfsboot
+++ b/usr.sbin/bsdinstall/scripts/zfsboot
@@ -961,7 +961,7 @@ zfs_create_boot()
# If encryption is enabled, we need to create the GEOMs
#
if [ "$ZFSBOOT_GELI_ENCRYPTION" ]; then
- local bootvdev=
+ local bootvdev= options=
local geli_pool="$BSDINSTALL_CHROOT/$ZFSBOOT_GELI_POOL_NAME"
local key="$ZFSBOOT_GELI_KEY_FILE"
@@ -978,11 +978,13 @@ zfs_create_boot()
f_dprintf "$funcname: %s %s %s" \
"ZFSBOOT_GELI_POOL_NAME=[$ZFSBOOT_GELI_POOL_NAME]" \
"bootvdev=[$bootvdev]" "unenc_list=[$unenc_list]"
+ options="-o altroot=\"\$BSDINSTALL_CHROOT\""
+ options="$options -m \"/\$ZFSBOOT_GELI_POOL_NAME\""
+ options="$options -f"
f_eval_catch $funcname zpool "$ZPOOL_CREATE_WITH_OPTIONS" \
- "-o altroot=\"\$BSDINSTALL_CHROOT\"
- -m \"/\$ZFSBOOT_GELI_POOL_NAME\" -f" \
- \$ZFSBOOT_GELI_POOL_NAME \$bootvdev \
+ "$options" \$ZFSBOOT_GELI_POOL_NAME \$bootvdev \
\$unenc_list || return $FAILURE
+
f_dprintf "$funcname: geli_pool=[%s]" "$geli_pool"
f_eval_catch $funcname mkdir "$MKDIR_P" \$geli_pool/boot ||
return $FAILURE
OpenPOWER on IntegriCloud