Compare commits
2 commits
1b5e5cfb7b
...
ae4bddb784
Author | SHA1 | Date | |
---|---|---|---|
ae4bddb784 | |||
![]() |
54993f12e1 |
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 (LP: #1993541).
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Fri, 25 Apr 2025 18:21:05 +0200
|
||||
|
||||
mdadm (4.4-10) sid; urgency=medium
|
||||
|
||||
* 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