diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-05-09 20:53:56 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-05-09 20:53:56 +0000 |
commit | 05ee57d2cb14934d9cc61a2538e71b0b7ab923f5 (patch) | |
tree | 5ba22f812be8fbaff71d8c26043f516b92d277a0 /target | |
parent | eb7bbcc6b320debc351bd0d666658569d7c51753 (diff) | |
download | upstream-05ee57d2cb14934d9cc61a2538e71b0b7ab923f5.tar.gz upstream-05ee57d2cb14934d9cc61a2538e71b0b7ab923f5.tar.bz2 upstream-05ee57d2cb14934d9cc61a2538e71b0b7ab923f5.zip |
AA: kernel: make zlib and lzo modules selectable
Backport of r36592.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/branches/attitude_adjustment@36597 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/generic/patches-3.3/259-compressor_kconfig_hack.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/target/linux/generic/patches-3.3/259-compressor_kconfig_hack.patch b/target/linux/generic/patches-3.3/259-compressor_kconfig_hack.patch new file mode 100644 index 0000000000..2cf86d0880 --- /dev/null +++ b/target/linux/generic/patches-3.3/259-compressor_kconfig_hack.patch @@ -0,0 +1,23 @@ +--- a/lib/Kconfig ++++ b/lib/Kconfig +@@ -105,16 +105,16 @@ config AUDIT_GENERIC + # compression support is select'ed if needed + # + config ZLIB_INFLATE +- tristate ++ tristate "ZLIB inflate support" + + config ZLIB_DEFLATE +- tristate ++ tristate "ZLIB deflate support" + + config LZO_COMPRESS +- tristate ++ tristate "LZO compress support" + + config LZO_DECOMPRESS +- tristate ++ tristate "LZO decompress support" + + source "lib/xz/Kconfig" + |