2011-03-18 01:18:13 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
. /lib/dracut-lib.sh
|
|
|
|
|
2011-07-04 21:25:31 +04:00
|
|
|
ZPOOL_FORCE=""
|
2011-07-25 00:53:15 +04:00
|
|
|
|
2011-07-04 21:25:31 +04:00
|
|
|
if getargbool 0 zfs_force -y zfs.force -y zfsforce ; then
|
2011-07-25 00:46:16 +04:00
|
|
|
warn "ZFS: Will force-import pools if necessary."
|
|
|
|
ZPOOL_FORCE="-f"
|
2011-07-04 21:25:31 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
case "$root" in
|
2011-07-25 00:46:16 +04:00
|
|
|
zfs:*)
|
|
|
|
# We have ZFS modules loaded, so we're able to import pools now.
|
|
|
|
if [ "$root" = "zfs:AUTO" ] ; then
|
|
|
|
# Need to parse bootfs attribute
|
|
|
|
info "ZFS: Attempting to detect root from imported ZFS pools."
|
2011-07-04 21:25:31 +04:00
|
|
|
|
2011-07-25 00:46:16 +04:00
|
|
|
# Might be imported by the kernel module, so try searching before
|
|
|
|
# we import anything.
|
2014-03-21 00:21:34 +04:00
|
|
|
zfsbootfs=`zpool list -H -o bootfs | sed -n '/^-$/ !p' | sed 'q'`
|
2011-07-31 08:21:40 +04:00
|
|
|
if [ "$?" != "0" ] || [ "$zfsbootfs" = "" ] || \
|
|
|
|
[ "$zfsbootfs" = "no pools available" ] ; then
|
2011-07-25 00:46:16 +04:00
|
|
|
# Not there, so we need to import everything.
|
|
|
|
info "ZFS: Attempting to import additional pools."
|
|
|
|
zpool import -N -a ${ZPOOL_FORCE}
|
2014-03-21 00:21:34 +04:00
|
|
|
zfsbootfs=`zpool list -H -o bootfs | sed -n '/^-$/ !p' | sed 'q'`
|
2011-07-31 08:21:40 +04:00
|
|
|
if [ "$?" != "0" ] || [ "$zfsbootfs" = "" ] || \
|
|
|
|
[ "$zfsbootfs" = "no pools available" ] ; then
|
2011-07-25 00:46:16 +04:00
|
|
|
rootok=0
|
|
|
|
pool=""
|
2011-07-04 21:25:31 +04:00
|
|
|
|
2011-07-25 00:46:16 +04:00
|
|
|
warn "ZFS: No bootfs attribute found in importable pools."
|
2011-07-04 21:25:31 +04:00
|
|
|
|
2011-07-25 00:46:16 +04:00
|
|
|
# Re-export everything since we're not prepared to take
|
|
|
|
# responsibility for them.
|
|
|
|
zpool list -H | while read fs rest ; do
|
|
|
|
zpool export "$fs"
|
|
|
|
done
|
2011-07-04 21:25:31 +04:00
|
|
|
|
2011-07-25 00:46:16 +04:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
info "ZFS: Using ${zfsbootfs} as root."
|
|
|
|
else
|
|
|
|
# Should have an explicit pool set, so just import it and we're done.
|
|
|
|
zfsbootfs="${root#zfs:}"
|
|
|
|
pool="${zfsbootfs%%/*}"
|
|
|
|
if ! zpool list -H $pool > /dev/null ; then
|
|
|
|
# pool wasn't imported automatically by the kernel module, so
|
|
|
|
# try it manually.
|
|
|
|
info "ZFS: Importing pool ${pool}..."
|
|
|
|
if ! zpool import -N ${ZPOOL_FORCE} $pool ; then
|
|
|
|
warn "ZFS: Unable to import pool ${pool}."
|
|
|
|
rootok=0
|
2011-07-04 21:25:31 +04:00
|
|
|
|
2011-07-25 00:46:16 +04:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
2011-07-04 21:25:31 +04:00
|
|
|
|
2011-07-25 00:46:16 +04:00
|
|
|
# Above should have left our rpool imported and pool/dataset in $root.
|
|
|
|
# We need zfsutil for non-legacy mounts and not for legacy mounts.
|
|
|
|
mountpoint=`zfs get -H -o value mountpoint $zfsbootfs`
|
|
|
|
if [ "$mountpoint" = "legacy" ] ; then
|
|
|
|
mount -t zfs "$zfsbootfs" "$NEWROOT" && ROOTFS_MOUNTED=yes
|
|
|
|
else
|
|
|
|
mount -o zfsutil -t zfs "$zfsbootfs" "$NEWROOT" && ROOTFS_MOUNTED=yes
|
|
|
|
fi
|
|
|
|
;;
|
2011-07-04 21:25:31 +04:00
|
|
|
esac
|