15 lines
257 B
Bash
15 lines
257 B
Bash
#!/bin/sh
|
|
#
|
|
# Kernel post-install hook for dracut.
|
|
#
|
|
# Arguments passed to this script: $1 pkgname, $2 version.
|
|
#
|
|
PKGNAME="$1"
|
|
VERSION="$2"
|
|
|
|
if [ ! -x /usr/bin/dracut ]; then
|
|
exit 0
|
|
fi
|
|
|
|
dracut --xz --force /boot/initramfs-${VERSION}.img ${VERSION}
|
|
exit $?
|