2011-07-04 21:25:31 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
check() {
|
2011-07-25 00:46:16 +04:00
|
|
|
# We depend on udev-rules being loaded
|
|
|
|
[ "$1" = "-d" ] && return 0
|
2011-07-04 21:25:31 +04:00
|
|
|
|
2011-07-25 00: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 21:25:31 +04:00
|
|
|
|
2011-07-25 00:46:16 +04:00
|
|
|
return 0
|
2011-07-04 21:25:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
depends() {
|
2011-07-25 00:46:16 +04:00
|
|
|
echo udev-rules
|
|
|
|
return 0
|
2011-07-04 21:25:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
installkernel() {
|
2011-07-25 00: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 21:25:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
install() {
|
2011-08-10 01:39:47 +04:00
|
|
|
inst_rules @udevruledir@/90-zfs.rules
|
|
|
|
inst_rules @udevruledir@/60-zpool.rules
|
|
|
|
inst_rules @udevruledir@/60-zvol.rules
|
|
|
|
inst @sysconfdir@/zfs/zdev.conf
|
|
|
|
inst @sysconfdir@/zfs/zpool.cache
|
|
|
|
inst @sysconfdir@/hostid
|
|
|
|
dracut_install @sbindir@/zfs
|
|
|
|
dracut_install @sbindir@/zpool
|
|
|
|
dracut_install @bindir@/zpool_layout
|
|
|
|
dracut_install @udevdir@/zpool_id
|
|
|
|
dracut_install @udevdir@/zvol_id
|
2011-07-25 00:46:16 +04:00
|
|
|
dracut_install mount.zfs
|
|
|
|
dracut_install hostid
|
|
|
|
inst_hook cmdline 95 "$moddir/parse-zfs.sh"
|
|
|
|
inst_hook mount 98 "$moddir/mount-zfs.sh"
|
2011-07-04 21:25:31 +04:00
|
|
|
}
|