diff options
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 03c2c24b9083..8ade0a7a91e0 100644 --- a/lib/Kconfig +++ b/lib/Kconfig | |||
@@ -2,6 +2,9 @@ | |||
2 | # Library configuration | 2 | # Library configuration |
3 | # | 3 | # |
4 | 4 | ||
5 | config BINARY_PRINTF | ||
6 | def_bool n | ||
7 | |||
5 | menu "Library routines" | 8 | menu "Library routines" |
6 | 9 | ||
7 | config BITREVERSE | 10 | config BITREVERSE |
@@ -98,6 +101,20 @@ config LZO_DECOMPRESS | |||
98 | tristate | 101 | tristate |
99 | 102 | ||
100 | # | 103 | # |
104 | # These all provide a common interface (hence the apparent duplication with | ||
105 | # ZLIB_INFLATE; DECOMPRESS_GZIP is just a wrapper.) | ||
106 | # | ||
107 | config DECOMPRESS_GZIP | ||
108 | select ZLIB_INFLATE | ||
109 | tristate | ||
110 | |||
111 | config DECOMPRESS_BZIP2 | ||
112 | tristate | ||
113 | |||
114 | config DECOMPRESS_LZMA | ||
115 | tristate | ||
116 | |||
117 | # | ||
101 | # Generic allocator support is selected if needed | 118 | # Generic allocator support is selected if needed |
102 | # | 119 | # |
103 | config GENERIC_ALLOCATOR | 120 | config GENERIC_ALLOCATOR |
@@ -136,12 +153,6 @@ config TEXTSEARCH_BM | |||
136 | config TEXTSEARCH_FSM | 153 | config TEXTSEARCH_FSM |
137 | tristate | 154 | tristate |
138 | 155 | ||
139 | # | ||
140 | # plist support is select#ed if needed | ||
141 | # | ||
142 | config PLIST | ||
143 | boolean | ||
144 | |||
145 | config HAS_IOMEM | 156 | config HAS_IOMEM |
146 | boolean | 157 | boolean |
147 | depends on !NO_IOMEM | 158 | depends on !NO_IOMEM |
@@ -174,4 +185,10 @@ config DISABLE_OBSOLETE_CPUMASK_FUNCTIONS | |||
174 | bool "Disable obsolete cpumask functions" if DEBUG_PER_CPU_MAPS | 185 | bool "Disable obsolete cpumask functions" if DEBUG_PER_CPU_MAPS |
175 | depends on EXPERIMENTAL && BROKEN | 186 | depends on EXPERIMENTAL && BROKEN |
176 | 187 | ||
188 | # | ||
189 | # Netlink attribute parsing support is select'ed if needed | ||
190 | # | ||
191 | config NLATTR | ||
192 | bool | ||
193 | |||
177 | endmenu | 194 | endmenu |