mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
520dc2a526
fsnotify doens't give the user anything. If someone chooses inotify or dnotify it should build fsnotify, if they don't select one it shouldn't be built. This patch changes fsnotify to be a def_bool=n and makes everything else select it. Also fixes the issue people complained about on lwn where gdm hung because they didn't have inotify and they didn't get the inotify build option..... Signed-off-by: Eric Paris <eparis@redhat.com>
11 lines
315 B
Text
11 lines
315 B
Text
config DNOTIFY
|
|
bool "Dnotify support"
|
|
select FSNOTIFY
|
|
default y
|
|
help
|
|
Dnotify is a directory-based per-fd file change notification system
|
|
that uses signals to communicate events to user-space. There exist
|
|
superior alternatives, but some applications may still rely on
|
|
dnotify.
|
|
|
|
If unsure, say Y.
|