diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-07 02:25:53 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-07 02:29:41 +0000 |
commit | 9571ba558dd1c8d85f256458a38f157f05c6b166 (patch) | |
tree | b46789c0d1d9afb1140fd51c5942cfdfe1789e9b /debian/linux-image-6.1.0-20progress6.99u1-alpha-smp.preinst | |
parent | Merging upstream version 6.1.90. (diff) | |
download | linux-9571ba558dd1c8d85f256458a38f157f05c6b166.tar.xz linux-9571ba558dd1c8d85f256458a38f157f05c6b166.zip |
Merging debian version 6.1.90-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-6.1.0-20progress6.99u1-alpha-smp.preinst')
-rwxr-xr-x | debian/linux-image-6.1.0-20progress6.99u1-alpha-smp.preinst | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/debian/linux-image-6.1.0-20progress6.99u1-alpha-smp.preinst b/debian/linux-image-6.1.0-20progress6.99u1-alpha-smp.preinst deleted file mode 100755 index fc7e2c979..000000000 --- a/debian/linux-image-6.1.0-20progress6.99u1-alpha-smp.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.1.0-20progress6.99u1-alpha-smp -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 |