summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-11-28 13:52:32 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2011-11-29 21:12:42 +0100
commit1aac831cca66d7ac70e369a09c944c0a54547d32 (patch)
tree71f64e37bfeefaffa02da5e3d61bc234aaecde76 /lib
parente3394a7010dfed2ba378761c69bfa1d676e411ea (diff)
downloadbarebox-1aac831cca66d7ac70e369a09c944c0a54547d32.tar.gz
barebox-1aac831cca66d7ac70e369a09c944c0a54547d32.tar.xz
lib: prompt for uncompression functions
Allow the user to manually select the uncompression support he wants to have so that we have a single point where a user can see which uncompression support will be compiled in. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/Kconfig6
-rw-r--r--lib/lzo/Kconfig1
2 files changed, 5 insertions, 2 deletions
diff --git a/lib/Kconfig b/lib/Kconfig
index 531398f7c1..e16dd35715 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -1,8 +1,9 @@
+menu "Library routines"
config ZLIB
- bool
+ bool "include gzip uncompression support"
config BZLIB
- bool
+ bool "include bzip2 uncompression support"
config GENERIC_FIND_NEXT_BIT
def_bool n
@@ -18,3 +19,4 @@ config FDT
config OFTREE
select FDT
bool
+endmenu
diff --git a/lib/lzo/Kconfig b/lib/lzo/Kconfig
index 4016785838..03c3350897 100644
--- a/lib/lzo/Kconfig
+++ b/lib/lzo/Kconfig
@@ -1,4 +1,5 @@
config LZO_DECOMPRESS
+ bool "include lzo uncompression support"
bool
config LZO_COMPRESS