blob: 77a97982035905931a6285bad6aa23e8204768d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
check_initramfs
}
post_upgrade() {
check_initramfs
}
check_initramfs() {
echo " >>> To build the module for the current kernel use this command:
# dkms install zfs/0.6.4.2 -k _KERNEL_VERSION_HERE_
or just boot to kernel you want to build and do
# dkms install zfs/0.6.4.2 -k \$(uname -r)
>>> Always remember to install kernel headers!
"
}
|