diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-04-08 15:07:39 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-04-08 15:07:39 +0000 |
commit | d67cf471601a6d423c7448b2ba713a44019b127b (patch) | |
tree | 0b77696f68fbf431b1b360696da495e41e6bc6b8 | |
parent | 0fb2f9c0f65e2d83d049e4c8f2883a57c19013d7 (diff) | |
download | upstream-d67cf471601a6d423c7448b2ba713a44019b127b.tar.gz upstream-d67cf471601a6d423c7448b2ba713a44019b127b.tar.bz2 upstream-d67cf471601a6d423c7448b2ba713a44019b127b.zip |
[kernel] workaroun some stupid Kconfig bugs (#4895)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15157 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.28/977-textsearch_kconfig_hacks.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.28/977-textsearch_kconfig_hacks.patch b/target/linux/generic-2.6/patches-2.6.28/977-textsearch_kconfig_hacks.patch new file mode 100644 index 0000000000..1ef893a728 --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.28/977-textsearch_kconfig_hacks.patch @@ -0,0 +1,23 @@ +--- a/lib/Kconfig 2009-04-08 16:46:30.000000000 +0200 ++++ b/lib/Kconfig 2009-04-08 16:46:15.000000000 +0200 +@@ -119,16 +119,16 @@ + # Textsearch support is select'ed if needed + # + config TEXTSEARCH +- boolean ++ boolean "Textsearch support" + + config TEXTSEARCH_KMP +- tristate ++ tristate "Textsearch KMP" + + config TEXTSEARCH_BM +- tristate ++ tristate "Textsearch BM" + + config TEXTSEARCH_FSM +- tristate ++ tristate "Textsearch FSM" + + # + # plist support is select#ed if needed |