summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjb <gjb@FreeBSD.org>2013-12-14 20:55:53 +0000
committergjb <gjb@FreeBSD.org>2013-12-14 20:55:53 +0000
commit1948707197e7ff10f90a1ec89884c055862c8f61 (patch)
tree5b98aaa49d5b66b41fbeaf14f47d6ee2df896906
parent1277739e09fd46dcb4de3e9c9b0d47f278d281d3 (diff)
downloadFreeBSD-src-1948707197e7ff10f90a1ec89884c055862c8f61.zip
FreeBSD-src-1948707197e7ff10f90a1ec89884c055862c8f61.tar.gz
MFC r259113, r259115, r259144, r259148:
r259113 (dteske): Fix failed attempt to send pkg(8) stderr to /dev/null r259115 (dteske): Prevent truncating /tmp/bsdinstall_log each time we exec a module. r259144 (dteske): Fix a regression after successfully installing to encrypted ZFS root, the passphrase is not accepted and a message about "incorrect key" is displayed. r259148 (dteske): Fix a regression resulting in mountroot prompt after attempting to install to encrypted ZFS root (caused by a typo in a variable name -- ZFSBOOT_BOOT_FSNAME -> ZFSBOOT_BOOTFS_NAME). Sponsored by: The FreeBSD Foundation
-rw-r--r--usr.sbin/bsdconfig/share/common.subr4
-rwxr-xr-xusr.sbin/bsdinstall/bsdinstall1
-rwxr-xr-xusr.sbin/bsdinstall/scripts/zfsboot4
3 files changed, 5 insertions, 4 deletions
diff --git a/usr.sbin/bsdconfig/share/common.subr b/usr.sbin/bsdconfig/share/common.subr
index dd8c534..db28a54 100644
--- a/usr.sbin/bsdconfig/share/common.subr
+++ b/usr.sbin/bsdconfig/share/common.subr
@@ -64,8 +64,8 @@ export UNAME_M="$(uname -m)" # Machine platform (i.e. i386)
export UNAME_R="$(uname -r)" # Release Level (i.e. X.Y-RELEASE)
if [ ! "${PKG_ABI+set}" ]; then
export PKG_ABI="$(
- ASSUME_ALWAYS_YES=1 pkg -vv |
- awk '$1=="ABI"{print $3;exit}' 2> /dev/null
+ ASSUME_ALWAYS_YES=1 pkg -vv 2> /dev/null |
+ awk '$1=="ABI"{print $3;exit}'
)"
fi
diff --git a/usr.sbin/bsdinstall/bsdinstall b/usr.sbin/bsdinstall/bsdinstall
index e57005dd..a258e47 100755
--- a/usr.sbin/bsdinstall/bsdinstall
+++ b/usr.sbin/bsdinstall/bsdinstall
@@ -33,6 +33,7 @@
# re-processing of flags (all children log to the parent's log file).
#
export DEBUG_SELF_INITIALIZE=
+export DEBUG_INITIALIZE_FILE=
BSDCFG_SHARE="/usr/share/bsdconfig"
. $BSDCFG_SHARE/common.subr || exit 1
diff --git a/usr.sbin/bsdinstall/scripts/zfsboot b/usr.sbin/bsdinstall/scripts/zfsboot
index 90d6240..78eb43c 100755
--- a/usr.sbin/bsdinstall/scripts/zfsboot
+++ b/usr.sbin/bsdinstall/scripts/zfsboot
@@ -1190,7 +1190,7 @@ zfs_create_boot()
f_eval_catch $funcname echo "$ECHO_APPEND" 'geom_eli_load=\"YES\"' \
\$BSDINSTALL_TMPBOOT/loader.conf.geli || return $FAILURE
f_eval_catch $funcname printf "$PRINTF_CONF" vfs.root.mountfrom \
- '"zfs:$poolname/$ZFSBOOT_BEROOT_NAME/$ZFSBOOT_BOOT_FSNAME"' \
+ '"zfs:$poolname/$ZFSBOOT_BEROOT_NAME/$ZFSBOOT_BOOTFS_NAME"' \
\$BSDINSTALL_TMPBOOT/loader.conf.root || return $FAILURE
f_dprintf "$funcname: disks=[%s]" "$disks"
for disk in $disks; do
@@ -1203,7 +1203,7 @@ zfs_create_boot()
return $FAILURE
f_eval_catch $funcname printf "$PRINTF_CONF" \
geli_%s_keyfile0_type \
- '"$disk$targetpart" "$disk$targetpart"' \
+ '"$disk$targetpart" "$disk$targetpart:geli_keyfile0"' \
\$BSDINSTALL_TMPBOOT/loader.conf.\$disk\$targetpart ||
return $FAILURE
f_eval_catch $funcname printf "$PRINTF_CONF" \
OpenPOWER on IntegriCloud