diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-03 14:02:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-03 14:02:18 +0000 |
commit | 38e1cb1b6d5b00be81c1d8396ff3c6c039db44d4 (patch) | |
tree | 333a0fdf49d5f7436737fdd24894f736ffd7bf4a /debian/patches/debian-initramfs-post-update.patch | |
parent | Merging upstream version 102. (diff) | |
download | dracut-38e1cb1b6d5b00be81c1d8396ff3c6c039db44d4.tar.xz dracut-38e1cb1b6d5b00be81c1d8396ff3c6c039db44d4.zip |
Merging debian version 102-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/debian-initramfs-post-update.patch')
-rw-r--r-- | debian/patches/debian-initramfs-post-update.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/patches/debian-initramfs-post-update.patch b/debian/patches/debian-initramfs-post-update.patch new file mode 100644 index 0000000..e2b5da8 --- /dev/null +++ b/debian/patches/debian-initramfs-post-update.patch @@ -0,0 +1,22 @@ +Description: Run bootloader hooks from /etc/initramfs/post-update.d after making + the image, and add $NO_POST_UPDATE_HOOKS to disable this + . + See <https://kernel-team.pages.debian.net/kernel-handbook/ch-update-hooks.html#s-initramfs-hooks> +Author: наб <nabijaczleweli@nabijaczleweli.xyz> +Bug-Debian: https://bugs.debian.org/753752 +Forwarded: not-needed +Last-Update: 2022-11-17 + +--- a/dracut.sh ++++ b/dracut.sh +@@ -2685,4 +2685,10 @@ + fi + fi + ++# Invoke policy-conformant bootloader hooks ++if [ -z "$NO_POST_UPDATE_HOOKS" ] && [ -d /etc/initramfs/post-update.d/ ]; then ++ run-parts --arg="${kernel}" --arg="${outfile}" \ ++ /etc/initramfs/post-update.d/ ++fi ++ + exit 0 |