diff options
author | Saul Wold <sgw@linux.intel.com> | 2013-04-13 09:55:55 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-13 23:54:22 +0100 |
commit | 92a758a9ee18a0743e981f22b12b824c922986ab (patch) | |
tree | e2067a44678cecb0a14a67fb4d5751793f1c2fb8 /meta | |
parent | d9fd9b89fa08160506b9e4a036ac43362e7d1bf2 (diff) | |
download | poky-92a758a9ee18a0743e981f22b12b824c922986ab.tar.gz |
udev-extraconf: Add -o silent to auto mount for mount.util-linux
This will silence some of the noisy output from mount.util-linux and the kernel
when trying to automount filesystems or devices. Busybox does not accept the silent
option, it uses a loud option instead.
[YOCTO #3935]
(From OE-Core rev: be218292ee3f05afe47545aa8e1625452e0cd614)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/udev/udev-extraconf/mount.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-core/udev/udev-extraconf/mount.sh b/meta/recipes-core/udev/udev-extraconf/mount.sh index 99c76b2530..97af608398 100644 --- a/meta/recipes-core/udev/udev-extraconf/mount.sh +++ b/meta/recipes-core/udev/udev-extraconf/mount.sh | |||
@@ -21,6 +21,11 @@ automount() { | |||
21 | name="`basename "$DEVNAME"`" | 21 | name="`basename "$DEVNAME"`" |
22 | 22 | ||
23 | ! test -d "/media/$name" && mkdir -p "/media/$name" | 23 | ! test -d "/media/$name" && mkdir -p "/media/$name" |
24 | # Silent util-linux's version of mounting auto | ||
25 | if [ "x`readlink $MOUNT`" = "x/bin/mount.util-linux" ] ; | ||
26 | then | ||
27 | MOUNT="$MOUNT -o silent" | ||
28 | fi | ||
24 | 29 | ||
25 | if ! $MOUNT -t auto $DEVNAME "/media/$name" | 30 | if ! $MOUNT -t auto $DEVNAME "/media/$name" |
26 | then | 31 | then |