Files
mirror_zfs/contrib/dracut/90zfs/module-setup.sh.in
T

120 lines
4.3 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2011-07-04 13:25:31 -04:00
check() {
2011-07-24 16:46:16 -04:00
# We depend on udev-rules being loaded
2015-02-15 20:28:42 +01:00
[ "${1}" = "-d" ] && return 0
2011-07-04 13:25:31 -04:00
2011-07-24 16:46:16 -04:00
# Verify the zfs tool chain
for tool in "@sbindir@/zpool" "@sbindir@/zfs" "@mounthelperdir@/mount.zfs" ; do
2016-04-24 11:35:44 +00:00
test -x "$tool" || return 1
done
# Verify grep exists
which grep >/dev/null 2>&1 || return 1
2011-07-04 13:25:31 -04:00
2011-07-24 16:46:16 -04:00
return 0
2011-07-04 13:25:31 -04:00
}
depends() {
2011-07-24 16:46:16 -04:00
echo udev-rules
return 0
2011-07-04 13:25:31 -04:00
}
installkernel() {
2011-07-24 16:46:16 -04:00
instmods zfs
instmods zcommon
instmods znvpair
instmods zavl
instmods zunicode
2018-02-08 09:16:23 -07:00
instmods zlua
2017-09-12 16:15:11 -04:00
instmods icp
2011-07-24 16:46:16 -04:00
instmods spl
instmods zlib_deflate
instmods zlib_inflate
2011-07-04 13:25:31 -04:00
}
install() {
inst_rules @udevruledir@/90-zfs.rules
2013-03-20 11:25:50 -07:00
inst_rules @udevruledir@/69-vdev.rules
inst_rules @udevruledir@/60-zvol.rules
2016-04-24 11:35:44 +00:00
dracut_install hostid
dracut_install grep
dracut_install @sbindir@/zfs
dracut_install @sbindir@/zpool
# Workaround for zfsonlinux/zfs#4749 by ensuring libgcc_s.so(.1) is included
if [[ -n "$(ldd @sbindir@/zpool | grep -F 'libgcc_s.so')" ]]; then
# Dracut will have already tracked and included it
:;
elif command -v gcc-config 2>&1 1>/dev/null; then
# On systems with gcc-config (Gentoo, Funtoo, etc.):
# Use the current profile to resolve the appropriate path
dracut_install "/usr/lib/gcc/$(s=$(gcc-config -c); echo ${s%-*}/${s##*-})/libgcc_s.so.1"
2017-10-09 21:34:26 +00:00
elif [[ -n "$(ls /usr/lib/libgcc_s.so* 2>/dev/null)" ]]; then
# Try a simple path first
dracut_install /usr/lib/libgcc_s.so*
else
# Fallback: Guess the path and include all matches
dracut_install /usr/lib/gcc/*/*/libgcc_s.so*
fi
dracut_install @mounthelperdir@/mount.zfs
2013-01-29 10:53:19 -08:00
dracut_install @udevdir@/vdev_id
dracut_install awk
dracut_install basename
2018-12-13 23:48:46 +00:00
dracut_install cut
dracut_install head
dracut_install @udevdir@/zvol_id
2015-02-15 20:28:42 +01:00
inst_hook cmdline 95 "${moddir}/parse-zfs.sh"
2016-03-30 18:59:15 -05:00
if [ -n "$systemdutildir" ] ; then
inst_script "${moddir}/zfs-generator.sh" "$systemdutildir"/system-generators/dracut-zfs-generator
fi
2018-01-18 18:20:34 +00:00
inst_hook pre-mount 90 "${moddir}/zfs-load-key.sh"
2016-04-24 11:35:44 +00:00
inst_hook mount 98 "${moddir}/mount-zfs.sh"
inst_hook cleanup 99 "${moddir}/zfs-needshutdown.sh"
inst_hook shutdown 20 "${moddir}/export-zfs.sh"
2011-09-30 10:33:26 -07:00
2015-02-15 20:28:42 +01:00
inst_simple "${moddir}/zfs-lib.sh" "/lib/dracut-zfs-lib.sh"
2013-03-20 11:25:50 -07:00
if [ -e @sysconfdir@/zfs/zpool.cache ]; then
inst @sysconfdir@/zfs/zpool.cache
2016-03-30 18:59:15 -05:00
type mark_hostonly >/dev/null 2>&1 && mark_hostonly @sysconfdir@/zfs/zpool.cache
2013-03-20 11:25:50 -07:00
fi
2015-02-16 04:08:04 +01:00
if [ -e @sysconfdir@/zfs/vdev_id.conf ]; then
inst @sysconfdir@/zfs/vdev_id.conf
2016-03-30 18:59:15 -05:00
type mark_hostonly >/dev/null 2>&1 && mark_hostonly @sysconfdir@/zfs/vdev_id.conf
2015-02-16 04:08:04 +01:00
fi
2011-09-30 10:33:26 -07:00
# Synchronize initramfs and system hostid
AA=`hostid | cut -b 1,2`
BB=`hostid | cut -b 3,4`
CC=`hostid | cut -b 5,6`
DD=`hostid | cut -b 7,8`
2018-12-13 23:48:46 +00:00
echo -ne "\\x${DD}\\x${CC}\\x${BB}\\x${AA}" > "${initdir}/etc/hostid"
2016-03-30 18:59:15 -05:00
if dracut_module_included "systemd"; then
2018-07-31 13:15:41 -04:00
mkdir -p "${initdir}/$systemdsystemunitdir/zfs-import.target.wants"
2016-03-30 18:59:15 -05:00
for _item in scan cache ; do
dracut_install @systemdunitdir@/zfs-import-$_item.service
2018-07-31 13:15:41 -04:00
if ! [ -L "${initdir}/$systemdsystemunitdir/zfs-import.target.wants"/zfs-import-$_item.service ]; then
ln -s ../zfs-import-$_item.service "${initdir}/$systemdsystemunitdir/zfs-import.target.wants"/zfs-import-$_item.service
2016-03-30 18:59:15 -05:00
type mark_hostonly >/dev/null 2>&1 && mark_hostonly @systemdunitdir@/zfs-import-$_item.service
fi
done
2019-04-03 02:14:39 +02:00
inst "${moddir}"/zfs-env-bootfs.service "${systemdsystemunitdir}"/zfs-env-bootfs.service
ln -s ../zfs-env-bootfs.service "${initdir}/${systemdsystemunitdir}/zfs-import.target.wants"/zfs-env-bootfs.service
type mark_hostonly >/dev/null 2>&1 && mark_hostonly @systemdunitdir@/zfs-env-bootfs.service
2018-07-17 01:11:36 +03:00
dracut_install systemd-ask-password
dracut_install systemd-tty-ask-password-agent
2018-07-31 13:15:41 -04:00
mkdir -p "${initdir}/$systemdsystemunitdir/initrd.target.wants"
dracut_install @systemdunitdir@/zfs-import.target
if ! [ -L "${initdir}/$systemdsystemunitdir/initrd.target.wants"/zfs-import.target ]; then
ln -s ../zfs-import.target "${initdir}/$systemdsystemunitdir/initrd.target.wants"/zfs-import.target
type mark_hostonly >/dev/null 2>&1 && mark_hostonly @systemdunitdir@/zfs-import.target
fi
for _service in zfs-snapshot-bootfs.service zfs-rollback-bootfs.service ; do
inst "${moddir}"/$_service "${systemdsystemunitdir}"/$_service
if ! [ -L "${initdir}/$systemdsystemunitdir/initrd.target.wants"/$_service ]; then
ln -s ../$_service "${initdir}/$systemdsystemunitdir/initrd.target.wants"/$_service
fi
done
2016-03-30 18:59:15 -05:00
fi
2011-07-04 13:25:31 -04:00
}