diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-12-13 02:58:07 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-13 09:18:54 -0800 |
commit | 83bab9a4bbf91af93f45233dc288c4d26308e281 (patch) | |
tree | aff0b85ec2770e87ec8852b62f9832f10656632d /init | |
parent | 90ac8f7741be4ff66de1f52904f4f67f272f74ce (diff) | |
download | linux-83bab9a4bbf91af93f45233dc288c4d26308e281.tar.bz2 |
[PATCH] allow KOBJECT_UEVENT=n only if EMBEDDED
KOBJECT_UEVENT=n seems to be a common pitfall for udev users in 2.6.14 .
-mm already contains a bigger patch removing this option that is IMHO
too big for being applied now to 2.6.15-rc.
This patch simply allows KOBJECT_UEVENT=n only if EMBEDDED.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/Kconfig b/init/Kconfig index ea097e0a9c02..59344616f477 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -206,7 +206,7 @@ config HOTPLUG outside the kernel tree does. Such modules require Y here. config KOBJECT_UEVENT - bool "Kernel Userspace Events" + bool "Kernel Userspace Events" if EMBEDDED depends on NET default y help |