diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-03 19:25:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-03 19:25:32 +0000 |
commit | 1cbf6d5eb20b0336ccc2b66f932ed67a56b7af0b (patch) | |
tree | 92e1813ba37c4aa4a27ab08477bf487b1fda2c35 /debian/linux-image-5.10.0-30-riscv64.postinst | |
parent | Merging upstream version 5.10.218. (diff) | |
download | linux-1ea0a9cffce0f6ec7ef4a593e50e2d5cb8888bb6.tar.xz linux-1ea0a9cffce0f6ec7ef4a593e50e2d5cb8888bb6.zip |
Adding debian version 5.10.218-1.debian/5.10.218-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-5.10.0-30-riscv64.postinst')
-rwxr-xr-x | debian/linux-image-5.10.0-30-riscv64.postinst | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/linux-image-5.10.0-30-riscv64.postinst b/debian/linux-image-5.10.0-30-riscv64.postinst new file mode 100755 index 000000000..fedd2e4fa --- /dev/null +++ b/debian/linux-image-5.10.0-30-riscv64.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=5.10.0-30-riscv64 +image_path=/boot/vmlinux-$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 |