Add dm_mod to initramfs for mapper devices (#483)

This commit is contained in:
Itxaka 2023-10-10 16:46:21 +02:00 committed by GitHub
parent 883bcee8a6
commit d705476a02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
packages:
- name: "alpine"
category: "distro-kernel"
version: "6.1.56+1"
version: "6.1.56-1"
description: "Provides kernel and custom initrd for alpine"
labels:
autobump.strategy: "custom"
@ -14,7 +14,7 @@ packages:
package.version: "6.1.56"
- name: "alpine-rpi"
category: "distro-kernel"
version: "6.1.55+1"
version: "6.1.55-1"
description: "Provides kernel and custom initrd for alpine"
labels:
autobump.strategy: "custom"

View File

@ -301,7 +301,7 @@ done
# dmesg -n 1
# load available drivers to get access to media
ebegin "Loading boot drivers"
modprobe -a ahci virtio_blk virtio_net virtio_console virtio_pci nvme overlay usb_storage libata cdrom sr_mod iso9660 loop squashfs simpledrm ext4 tpm 2> /dev/null
modprobe -a ahci virtio_blk virtio_net virtio_console virtio_pci nvme overlay usb_storage libata cdrom sr_mod iso9660 loop squashfs simpledrm ext4 tpm dm_mod 2> /dev/null
if [ -f "$ROOT"/etc/modules ] ; then
sed 's/\#.*//g' < /etc/modules |
while read module args; do