summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Blunck <jblunck@brocade.com>2014-12-09 16:16:23 +0100
committerJan Blunck <jblunck@brocade.com>2014-12-09 16:16:23 +0100
commit06d2edc18a65110f13d8717061ac72af6cb5483a (patch)
tree9b62957c2f5c5c948a05e5bad7ff061ad8f20c10
parent70caceefa69fcb0388c4d91a6f8e719a07893358 (diff)
downloadlive-boot-06d2edc18a65110f13d8717061ac72af6cb5483a.tar.gz
live-boot-06d2edc18a65110f13d8717061ac72af6cb5483a.zip
Suppress annoying but harmless warning about unknown module
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
-rwxr-xr-xcomponents/9990-misc-helpers.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/9990-misc-helpers.sh b/components/9990-misc-helpers.sh
index f845ed8..fb139ec 100755
--- a/components/9990-misc-helpers.sh
+++ b/components/9990-misc-helpers.sh
@@ -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