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

62 lines
1.3 KiB
Bash
Raw Normal View History

2011-07-04 13:25:31 -04:00
#!/bin/sh
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
which zpool >/dev/null 2>&1 || return 1
which zfs >/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
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
dracut_install @sbindir@/zfs
dracut_install @sbindir@/zpool
2013-01-29 10:53:19 -08:00
dracut_install @udevdir@/vdev_id
dracut_install @udevdir@/zvol_id
2011-07-24 16:46:16 -04:00
dracut_install mount.zfs
dracut_install hostid
2015-02-16 04:08:04 +01:00
dracut_install awk
dracut_install head
2015-02-15 20:28:42 +01:00
inst_hook cmdline 95 "${moddir}/parse-zfs.sh"
inst_hook mount 98 "${moddir}/mount-zfs.sh"
inst_hook shutdown 30 "${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
fi
2015-02-16 04:08:04 +01:00
if [ -e @sysconfdir@/zfs/vdev_id.conf ]; then
inst @sysconfdir@/zfs/vdev_id.conf
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`
2015-02-15 20:28:42 +01:00
printf "\x${DD}\x${CC}\x${BB}\x${AA}" > "${initdir}/etc/hostid"
2011-07-04 13:25:31 -04:00
}