From: Stefan Hellermann Date: Sat, 6 Dec 2014 15:30:39 +0000 (+0100) Subject: btrfs-progs: Fix init script X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=02f732fb5ddb5538e8d2c3fc9b7b7d49c7c41447;p=feed%2Fpackages.git btrfs-progs: Fix init script the init script calls the old btrfsctl util, which is not included in btrfs-progs anymore. Update the init script to call "btrfs device scan" which assembles multi device btrfs filesystems. Signed-off-by: Stefan Hellermann --- diff --git a/utils/btrfs-progs/files/btrfs-scan.init b/utils/btrfs-progs/files/btrfs-scan.init index f1264ee701..559fddaae9 100644 --- a/utils/btrfs-progs/files/btrfs-scan.init +++ b/utils/btrfs-progs/files/btrfs-scan.init @@ -4,6 +4,6 @@ START=19 start() { - grep -q btrfs /proc/modules && /usr/bin/btrfsctl -a + grep -q btrfs /proc/modules && /usr/bin/btrfs device scan }