diff options
author | Jeremy Rosen <jeremy.rosen@openwide.fr> | 2014-01-08 14:48:33 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-01-08 22:28:00 +0100 |
commit | bd53398cd6f6b62c3c2834ea7ec77298b4de2488 (patch) | |
tree | 7200436ac6b2b24a182561bd3a6eaf787b5cb73b | |
parent | 848e02b8cb9d2bda94c1941d9ca2247b36bd5187 (diff) | |
download | buildroot-bd53398cd6f6b62c3c2834ea7ec77298b4de2488.tar.gz buildroot-bd53398cd6f6b62c3c2834ea7ec77298b4de2488.zip |
linux: force inotify kernel option when udev is used as dev handler
[Peter: drop unneeded devtmpfs handling]
Signed-off-by: Jérémy Rosen <jeremy.rosen@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | linux/linux.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux/linux.mk b/linux/linux.mk index fa8aa0cad9..ab25fe9871 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -185,6 +185,8 @@ define LINUX_CONFIGURE_CMDS $(call KCONFIG_ENABLE_OPT,CONFIG_DEVTMPFS_MOUNT,$(@D)/.config)) $(if $(BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV), $(call KCONFIG_SET_OPT,CONFIG_UEVENT_HELPER_PATH,\"/sbin/mdev\",$(@D)/.config)) + $(if $(BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV), + $(call KCONFIG_ENABLE_OPT,CONFIG_INOTIFY_USER,$(@D)/.config)) $(if $(BR2_PACKAGE_KTAP), $(call KCONFIG_ENABLE_OPT,CONFIG_DEBUG_FS,$(@D)/.config) $(call KCONFIG_ENABLE_OPT,CONFIG_EVENT_TRACING,$(@D)/.config) |