7998ae32c1
ZFS hooks taken from [1] and slightly modified: 1. If present, /etc/hostid is included in the image 2. Pool imports are read/write by default 3. Dracut-style root=zfs:<filesystem> arguments are recognized [1] https://github.com/archzfs/archzfs/tree/master/src/zfs-utils
16 lines
279 B
Bash
16 lines
279 B
Bash
#!/bin/sh
|
|
#
|
|
# Kernel post-install hook for mkinitcpio.
|
|
#
|
|
# Arguments passed to this script: $1 pkgname, $2 version.
|
|
#
|
|
PKGNAME="$1"
|
|
VERSION="$2"
|
|
|
|
if [ ! -x usr/bin/mkinitcpio ]; then
|
|
exit 0
|
|
fi
|
|
|
|
umask 0077
|
|
usr/bin/mkinitcpio -g boot/initramfs-${VERSION}.img -k ${VERSION}
|
|
exit $?
|