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 /util-linux/mdev.c | |
parent | 501b0e335f33d6fa7c7bb5063f7be80281b0f698 (diff) | |
download | busybox-w32-870ccd7212488014aef62fcb1640d5d1faeb07f9.tar.gz busybox-w32-870ccd7212488014aef62fcb1640d5d1faeb07f9.tar.bz2 busybox-w32-870ccd7212488014aef62fcb1640d5d1faeb07f9.zip |
do not whine if /sys/block does not exist ... embedded systems dont need stinkin block devices
Diffstat (limited to 'util-linux/mdev.c')
-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) | |||
421 | * (kernel's CONFIG_SYSFS_DEPRECATED makes them real dirs, | 421 | * (kernel's CONFIG_SYSFS_DEPRECATED makes them real dirs, |
422 | * but we can't enforce that on users) */ | 422 | * but we can't enforce that on users) */ |
423 | recursive_action("/sys/block", | 423 | recursive_action("/sys/block", |
424 | ACTION_RECURSE | ACTION_FOLLOWLINKS, | 424 | ACTION_RECURSE | ACTION_FOLLOWLINKS | ACTION_QUIET, |
425 | fileAction, dirAction, temp, 0); | 425 | fileAction, dirAction, temp, 0); |
426 | recursive_action("/sys/class", | 426 | recursive_action("/sys/class", |
427 | ACTION_RECURSE | ACTION_FOLLOWLINKS, | 427 | ACTION_RECURSE | ACTION_FOLLOWLINKS, |