diff options
author | Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> | 2005-12-18 17:50:37 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-18 11:19:44 -0800 |
commit | 76c842d8f8096e2c98ff9ebe1db861363ff254e5 (patch) | |
tree | d2bdfa086f10a70738a51ee81b66c6b5f17551fa /arch | |
parent | 53c0b59dcdb7c68c3cfd4b9a0bd17373b785f2eb (diff) | |
download | linux-3.10-76c842d8f8096e2c98ff9ebe1db861363ff254e5.tar.gz linux-3.10-76c842d8f8096e2c98ff9ebe1db861363ff254e5.tar.bz2 linux-3.10-76c842d8f8096e2c98ff9ebe1db861363ff254e5.zip |
[PATCH] uml - fix some funkiness in Kconfig
So you may have seen the miniconfig stuff wander by, which means that my
build script exits if there's a .config error, and we have this:
fs/Kconfig:1749:warning: 'select' used by config symbol 'CIFS_UPCALL'
refer to undefined symbol 'CONNECTOR'
This makes it shut up.
Signed-off-by: Rob Landley <rob@landley.net>
[ Verified it makes sense. ]
Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/um/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/um/Kconfig b/arch/um/Kconfig index 563301fe5df..1eb21de9d1b 100644 --- a/arch/um/Kconfig +++ b/arch/um/Kconfig @@ -289,6 +289,8 @@ source "arch/um/Kconfig.net" source "drivers/net/Kconfig" +source "drivers/connector/Kconfig" + source "fs/Kconfig" source "security/Kconfig" |