diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-01-31 21:09:53 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2010-01-31 21:09:53 +0000 |
commit | 34cdb3d69805d81d55ef12f20c5093c14b04bf87 (patch) | |
tree | 9a78ea62fd1aca61c852cb0665dd65e9340e29bb /package/base-files | |
parent | e6eeb6cbf20bf62a0a891e8e1b1c63369dbf08a2 (diff) | |
download | master-187ad058-34cdb3d69805d81d55ef12f20c5093c14b04bf87.tar.gz master-187ad058-34cdb3d69805d81d55ef12f20c5093c14b04bf87.tar.bz2 master-187ad058-34cdb3d69805d81d55ef12f20c5093c14b04bf87.zip |
[package] quieten the check for devs, thanks nbd
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19473 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rw-r--r-- | package/base-files/files/lib/preinit/20_device_fs_mount | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/lib/preinit/20_device_fs_mount b/package/base-files/files/lib/preinit/20_device_fs_mount index 1f049dade0..f82f9a6f45 100644 --- a/package/base-files/files/lib/preinit/20_device_fs_mount +++ b/package/base-files/files/lib/preinit/20_device_fs_mount @@ -15,7 +15,7 @@ do_mount_udev() { } choose_device_fs() { - if grep devfs /proc/filesystems; then + if grep -q devfs /proc/filesystems; then do_mount_devfs elif [ -x /sbin/hotplug2 ]; then do_mount_hotplug |