void-packages/srcpkgs/mkinitcpio/files/kernel-hook-postinst
2015-06-26 04:03:54 +02:00

15 lines
256 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 bin/mkinitcpio ]; then
exit 0
fi
mkinitcpio -g boot/initramfs-${VERSION}.img -k ${VERSION}
exit $?