>>>>> On Fri, 26 Aug 2016 11:45:16 +0200, [email protected] said:
> There it is
> [ 1.926556] dracut:
> //lib/dracut/hooks/mount/99-mount-root.sh@29(mount_root): mount -t ext4
> -o rw,relatime,errors=remount-ro,data=ordered,ro,ro
> /dev/mapper/data-rootfs /sysroot
> [ 1.935153] EXT4-fs (dm-0): Cannot load crc32c driver.
> [ 1.935373] dracut: mount: mount(2) failed: /sysroot: No such file or
> directory
> [ 1.935578] dracut Warning: Failed to mount -t ext4 -o
> rw,relatime,errors=remount-ro,data=ordered,ro,ro /dev/mapper/data-rootfs
> /sysroot
This is a bit tricky.
lvm needs crc32c kernel module which is provided by those modules:
stretch[...]# modprobe --show-depends dm-raid|grep crc
insmod /lib/modules/4.6.0-1-amd64/kernel/arch/x86/crypto/crc32c-intel.ko
insmod /lib/modules/4.6.0-1-amd64/kernel/crypto/crc32c_generic.ko
insmod /lib/modules/4.6.0-1-amd64/kernel/lib/libcrc32c.ko
The kernel want to load the driver crc32c but the kernel 4.6 only has
crc32c-intel or crc32c_generic. Please check if you are you booting
the right kernel.
--
regards Thomas