From b15a952c52a6825376d3e7f6c1bf5c886c6d8b74 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 12:06:00 +0200 Subject: Adding debian version 5.10.209-2. Signed-off-by: Daniel Baumann --- debian/linux-image-5.10.0-28-alpha-smp.postinst | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 debian/linux-image-5.10.0-28-alpha-smp.postinst (limited to 'debian/linux-image-5.10.0-28-alpha-smp.postinst') diff --git a/debian/linux-image-5.10.0-28-alpha-smp.postinst b/debian/linux-image-5.10.0-28-alpha-smp.postinst new file mode 100755 index 000000000..ca3fdf12a --- /dev/null +++ b/debian/linux-image-5.10.0-28-alpha-smp.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=5.10.0-28-alpha-smp +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +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 + +exit 0 -- cgit v1.2.3