From b7e8d5af06ee840cc48217ca4629cf28aeeb3c50 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:35:19 +0200 Subject: Adding debian version 252.22-1~deb12u1. Signed-off-by: Daniel Baumann --- debian/systemd-boot.postinst | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 debian/systemd-boot.postinst (limited to 'debian/systemd-boot.postinst') diff --git a/debian/systemd-boot.postinst b/debian/systemd-boot.postinst new file mode 100644 index 0000000..bb06ea3 --- /dev/null +++ b/debian/systemd-boot.postinst @@ -0,0 +1,20 @@ +#!/bin/sh + +set -e + +if [ "$1" = configure ] && [ -z "$2" ] && bootctl --print-esp-path > /dev/null 2>&1; then + bootctl install --make-machine-id-directory=auto + + # register existing kernel(s) + for k in /boot/vmlinuz-* ; do + [ -f "$k" ] || continue + ver=$(basename "$k" | sed s/^vmlinuz-//) + kernel-install add "$ver" "$k" + done +fi + +if [ "$1" = configure ] && [ -n "$2" ] && bootctl is-installed > /dev/null 2>&1; then + bootctl update --graceful +fi + +#DEBHELPER# -- cgit v1.2.3