From d705476a028088c3fcceed71819aa5608fb934f7 Mon Sep 17 00:00:00 2001 From: Itxaka Date: Tue, 10 Oct 2023 16:46:21 +0200 Subject: [PATCH] Add dm_mod to initramfs for mapper devices (#483) --- packages/alpine/collection.yaml | 4 ++-- packages/alpine/files/initramfs-init | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/alpine/collection.yaml b/packages/alpine/collection.yaml index c30075d..be0e959 100644 --- a/packages/alpine/collection.yaml +++ b/packages/alpine/collection.yaml @@ -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" diff --git a/packages/alpine/files/initramfs-init b/packages/alpine/files/initramfs-init index 08cd288..6664554 100755 --- a/packages/alpine/files/initramfs-init +++ b/packages/alpine/files/initramfs-init @@ -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