Compare commits
2 commits
ae4bddb784
...
1b5e5cfb7b
Author | SHA1 | Date | |
---|---|---|---|
1b5e5cfb7b | |||
![]() |
9dc37e568f |
2 changed files with 30 additions and 0 deletions
11
debian/changelog
vendored
11
debian/changelog
vendored
|
@ -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
|
mdadm (4.4-10) sid; urgency=medium
|
||||||
|
|
||||||
* Simplifying watch file to make it actually work.
|
* Simplifying watch file to make it actually work.
|
||||||
|
|
19
debian/local/initramfs-tools/init-top/00_mount_efivarfs
vendored
Executable file
19
debian/local/initramfs-tools/init-top/00_mount_efivarfs
vendored
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue