diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-01-08 17:19:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-01-08 17:19:01 +0000 |
commit | 870ccd7212488014aef62fcb1640d5d1faeb07f9 (patch) | |
tree | e6a57b8321f7805b08ab3f885b3a5c0c4a1abc21 | |
parent | 501b0e335f33d6fa7c7bb5063f7be80281b0f698 (diff) |
do not whine if /sys/block does not exist ... embedded systems dont need stinkin block devices
-rw-r--r-- | util-linux/mdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c index 956de15ae..9ad1a6ff2 100644 --- a/util-linux/mdev.c +++ b/util-linux/mdev.c @@ -421,7 +421,7 @@ int mdev_main(int argc UNUSED_PARAM, char **argv) * (kernel's CONFIG_SYSFS_DEPRECATED makes them real dirs, * but we can't enforce that on users) */ recursive_action("/sys/block", - ACTION_RECURSE | ACTION_FOLLOWLINKS, + ACTION_RECURSE | ACTION_FOLLOWLINKS | ACTION_QUIET, fileAction, dirAction, temp, 0); recursive_action("/sys/class", ACTION_RECURSE | ACTION_FOLLOWLINKS, |