From abc8615de16034b0df540a50ec7e290b0f04c98a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 21 Aug 2024 07:38:17 +0200 Subject: Adding debian version 6.10.6-1. Signed-off-by: Daniel Baumann --- debian/linux-image-6.10.6-sh7751r.preinst | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 debian/linux-image-6.10.6-sh7751r.preinst (limited to 'debian/linux-image-6.10.6-sh7751r.preinst') diff --git a/debian/linux-image-6.10.6-sh7751r.preinst b/debian/linux-image-6.10.6-sh7751r.preinst new file mode 100644 index 0000000000..e34bb3b66b --- /dev/null +++ b/debian/linux-image-6.10.6-sh7751r.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.10.6-sh7751r +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 -- cgit v1.2.3