16 lines
256 B
Text
16 lines
256 B
Text
|
#!/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 $?
|