Suppress annoying but harmless warning about unknown module
authorJan Blunck <jblunck@brocade.com>
Tue, 9 Dec 2014 15:16:23 +0000 (16:16 +0100)
committerJan Blunck <jblunck@brocade.com>
Tue, 9 Dec 2014 15:16:23 +0000 (16:16 +0100)
Loading, please wait...
[    4.237575] sd 2:0:0:0: [sda] Assuming drive cache: write through
[    4.239183] sd 2:0:0:0: [sda] Assuming drive cache: write through
[    4.524950] sd 2:0:0:0: [sda] Assuming drive cache: write through
modprobe: module unknown not found in modules.dep

components/9990-misc-helpers.sh

index f845ed8..fb139ec 100755 (executable)
@@ -426,7 +426,7 @@ is_supported_fs ()
                return 0
        else
                # Then try to add support for it the gentle way using the initramfs capabilities
-               modprobe ${fstype}
+               modprobe -q -b ${fstype}
                if grep -q ${fstype} /proc/filesystems
                then
                        return 0