1
0
Files
linux/debian/templates/image.postinst.in
2025-05-29 17:14:07 +03:00

35 lines
829 B
Bash

#!/bin/sh
set -e
[ "$1" = configure ] || exit 0
version='@abiname@@localversion@'
image_path="/boot/@image-stem@-${version}"
have_cmd() { command -v "$1" >/dev/null || return 1 ; }
depmod "${version}"
if have_cmd linux-update-symlinks ; then
change=install
[ -f "/lib/modules/${version}/.fresh-install" ] || change=upgrade
linux-update-symlinks ${change} "${version}" "${image_path}"
fi
rm -f "/lib/modules/${version}/.fresh-install"
if have_cmd linux-run-hooks ; then
## linux-base (>= 4.12~)
linux-run-hooks image postinst "${version}" "${image_path}" -- "$@"
else
if [ -d /etc/kernel/postinst.d ] ; then
DEB_MAINT_PARAMS="$*" \
run-parts --report --exit-on-error \
"--arg=${version}" \
"--arg=${image_path}" \
/etc/kernel/postinst.d
fi
fi
exit 0