From 870ccd7212488014aef62fcb1640d5d1faeb07f9 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 8 Jan 2009 17:19:01 +0000 Subject: [PATCH] do not whine if /sys/block does not exist ... embedded systems dont need stinkin block devices --- util-linux/mdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.25.1