X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=miscutils%2Finotifyd.c;h=0060797edec5c1a4c003c043c792be8ee9e1cce9;hb=73af705628ddaedc4c6f7f78b9658d6c01310309;hp=52db08adac5f5f192d73cadfbe6d70abd31d6e5f;hpb=9de2e5a22213842da5b116723392de88de9ed419;p=oweals%2Fbusybox.git diff --git a/miscutils/inotifyd.c b/miscutils/inotifyd.c index 52db08ada..0060797ed 100644 --- a/miscutils/inotifyd.c +++ b/miscutils/inotifyd.c @@ -12,7 +12,7 @@ * Use as follows: * # inotifyd /user/space/agent dir/or/file/being/watched[:mask] ... * - * When a filesystem event matching the specified mask is occured on specified file (or directory) + * When a filesystem event matching the specified mask is occurred on specified file (or directory) * a userspace agent is spawned and given the following parameters: * $1. actual event(s) * $2. file (or directory) name @@ -26,6 +26,16 @@ * * See below for mask names explanation. */ +//config:config INOTIFYD +//config: bool "inotifyd (3.5 kb)" +//config: default n # doesn't build on Knoppix 5 +//config: help +//config: Simple inotify daemon. Reports filesystem changes. Requires +//config: kernel >= 2.6.13 + +//applet:IF_INOTIFYD(APPLET(inotifyd, BB_DIR_SBIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_INOTIFYD) += inotifyd.o //usage:#define inotifyd_trivial_usage //usage: "PROG FILE1[:MASK]..."