1
0
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
1b5e5cfb7b
Releasing debian version 4.4-11.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-04-25 18:24:23 +02:00
Cyrus Lien
9dc37e568f
Adding a initramfs-tools script to mount the efivarfs during the initramfs boot phase (Closes: #1003352, #1103762; LP: #1993541).
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-04-25 18:23:34 +02:00
2 changed files with 30 additions and 0 deletions

11
debian/changelog vendored
View file

@ -1,3 +1,14 @@
mdadm (4.4-11) sid; urgency=medium
[ Daniel Baumann ]
* Harmonizing watch file.
[ Cyrus Lien ]
* Adding a initramfs-tools script to mount the efivarfs during the
initramfs boot phase (Closes: #1003352, #1103762; LP: #1993541).
-- Daniel Baumann <daniel@debian.org> Fri, 25 Apr 2025 18:24:19 +0200
mdadm (4.4-10) sid; urgency=medium
* Simplifying watch file to make it actually work.

View file

@ -0,0 +1,19 @@
#!/bin/sh
PREREQ=""
prereqs()
{
echo "$PREREQ"
}
case $1 in
# get pre-requisites
prereqs)
prereqs
exit 0
;;
esac
# shellcheck disable=SC2013
if [ -d /sys/firmware/efi/efivars ]; then
mount -t efivarfs -o rw,nosuid,nodev,noexec,relatime efivarfs /sys/firmware/efi/efivars
fi