From 873bda089bd05adbe74ad17cae063ee4bcbe25de Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Fri, 22 Sep 2017 00:41:47 +0200 Subject: fix booting from btrfs on multiple devices https://btrfs.wiki.kernel.org/index.php/Using_Btrfs_with_Multiple_Devices: > btrfs device scan is used to scan all of the block devices under /dev > and probe for Btrfs volumes. This is required after loading the btrfs > module if you're running with more than one device in a filesystem. See http://bugs.alpinelinux.org/issues/6903 --- initramfs-init.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'initramfs-init.in') diff --git a/initramfs-init.in b/initramfs-init.in index be7b1c3..f3a3ee5 100755 --- a/initramfs-init.in +++ b/initramfs-init.in @@ -388,6 +388,10 @@ if [ -n "$KOPT_root" ]; then nlplug-findfs $cryptopts -p /sbin/mdev ${KOPT_debug_init:+-d} \ $KOPT_root + if echo "$KOPT_modules $KOPT_rootfstype" | grep -qw btrfs; then + /sbin/btrfs device scan || echo "Failed to scan devices for btrfs filesystem." + fi + if [ -n "$KOPT_resume" ]; then echo "Resume from disk" if [ -e /sys/power/resume ]; then -- cgit v1.2.3