]>
Commit | Line | Data |
---|---|---|
ebcfa987 AVEM |
1 | # |
2 | # Config.in.legacy - support for backward compatibility | |
3 | # | |
f8c56f5f TDS |
4 | # When an existing Config.in symbol is removed, it should be added again in |
5 | # this file, and take appropriate action to approximate backward compatibility. | |
6 | # This will make the transition for the user more convenient. | |
ebcfa987 AVEM |
7 | # |
8 | # When adding legacy symbols to this file, add them to the front. The oldest | |
9 | # symbols will be removed again after about two years. | |
10 | # | |
11 | # The symbol should be copied as-is from the place where it was previously | |
12 | # defined, but the help text should be removed or replaced with something that | |
13 | # explains how to fix it. | |
f8c56f5f TDS |
14 | # |
15 | # For bool options, the old symbol should select BR2_LEGACY, so that the user | |
16 | # is informed at build-time about selected legacy options. | |
17 | # If there is an equivalent (set of) new symbols, these should be select'ed by | |
18 | # the old symbol for backwards compatibility. | |
94d403d7 AV |
19 | # It is not possible to select an option that is part of a choice. In that |
20 | # case, the new option should use the old symbol as default. This requires a | |
21 | # change outside of Config.in.legacy, and this should be clearly marked as such | |
22 | # in a comment, so that removal of legacy options also include the removal of | |
23 | # these external references. | |
24 | # | |
25 | # [Example: renaming a bool option that is part of a choice from FOO to BAR] | |
26 | # original choice: | |
27 | # choice | |
28 | # prompt "Choose foobar" | |
29 | # config BR2_FOO_1 | |
30 | # bool "foobar 1" | |
31 | # config BR2_FOO_2 | |
32 | # bool "foobar 2" | |
33 | # endchoice | |
34 | # | |
35 | # becomes: | |
36 | # choice | |
37 | # prompt "Choose foobar" | |
38 | # default BR2_BAR_1 if BR2_FOO_1 # legacy | |
39 | # default BR2_BAR_2 if BR2_FOO_2 # legacy | |
40 | # config BR2_BAR_1 | |
41 | # bool "foobar 1" | |
42 | # config BR2_BAR_2 | |
43 | # bool "foobar 2" | |
44 | # endchoice | |
45 | # | |
46 | # and in Config.in.legacy: | |
47 | # config BR2_FOO_1 | |
48 | # bool "foobar 1 has been renamed" | |
49 | # help | |
50 | # <suitable help text> | |
51 | # # Note: BR2_FOO_1 is still referenced from package/foo/Config.in | |
52 | # config BR2_FOO_2 | |
53 | # bool "foobar 2 has been renamed" | |
54 | # help | |
55 | # <suitable help text> | |
56 | # # Note: BR2_FOO_2 is still referenced from package/foo/Config.in | |
57 | # | |
58 | # [End of example] | |
f8c56f5f TDS |
59 | # |
60 | # For string options, it is not possible to directly select another symbol. In | |
61 | # this case, a hidden wrap bool option has to be added, that defaults to y if | |
62 | # the old string is not set at its default value. The wrap symbol should select | |
63 | # BR2_LEGACY. | |
64 | # If the original symbol has been renamed, the new symbol should use the value | |
94d403d7 AV |
65 | # of the old symbol as default. Like for choice options, a comment should be |
66 | # added to flag that the symbol is still used in another file. | |
f8c56f5f TDS |
67 | # |
68 | # [Example: renaming a string option from FOO to BAR] | |
69 | # original symbol: | |
94d403d7 AV |
70 | # config BR2_FOO_STRING |
71 | # string "Some foo string" | |
f8c56f5f TDS |
72 | # |
73 | # becomes: | |
94d403d7 AV |
74 | # config BR2_BAR_STRING |
75 | # string "Some bar string" | |
76 | # default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy | |
f8c56f5f TDS |
77 | # |
78 | # and in Config.in.legacy: | |
94d403d7 AV |
79 | # config BR2_FOO_STRING |
80 | # string "The foo string has been renamed" | |
81 | # help | |
82 | # <suitable help text> | |
f8c56f5f | 83 | # |
94d403d7 AV |
84 | # config BR2_FOO_STRING_WRAP |
85 | # bool | |
86 | # default y if BR2_FOO_STRING != "" | |
87 | # select BR2_LEGACY | |
f8c56f5f | 88 | # |
94d403d7 | 89 | # # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in |
f8c56f5f TDS |
90 | # |
91 | # [End of example] | |
ebcfa987 | 92 | |
53903a15 AV |
93 | config BR2_SKIP_LEGACY |
94 | bool | |
95 | option env="SKIP_LEGACY" | |
96 | ||
97 | if !BR2_SKIP_LEGACY | |
98 | ||
ebcfa987 AVEM |
99 | config BR2_LEGACY |
100 | bool | |
101 | help | |
102 | This option is selected automatically when your old .config uses an | |
103 | option that no longer exists in current buildroot. In that case, the | |
104 | build will fail. Look for config options which are selected in the | |
105 | menu below: they no longer exist and should be replaced by something | |
106 | else. | |
107 | ||
108 | # This comment fits exactly in a 80-column display | |
109 | comment "Legacy detected: check the content of the menu below" | |
110 | depends on BR2_LEGACY | |
111 | ||
a91a5c16 AVEM |
112 | menu "Legacy config options" |
113 | ||
114 | if BR2_LEGACY | |
a25e4a4c | 115 | comment "----------------------------------------------------" |
a91a5c16 | 116 | comment "Your old configuration uses legacy options that no " |
cce5baa8 TDS |
117 | comment "longer exist in buildroot, as indicated in the menu " |
118 | comment "below. As long as these options stay selected, or in" | |
119 | comment "case of string options are non-empty, the build " | |
a91a5c16 | 120 | comment "will fail. " |
cce5baa8 TDS |
121 | comment "* " |
122 | comment "Where possible, an automatic conversion from old to " | |
123 | comment "new symbols has been performed. Before making any " | |
124 | comment "change in this legacy menu, make sure to exit the " | |
125 | comment "configuration editor a first time and save the " | |
126 | comment "configuration. Otherwise, the automatic conversion " | |
127 | comment "of symbols will be lost. " | |
128 | comment "* " | |
129 | comment "After this initial save, reopen the configuration " | |
130 | comment "editor, inspect the options selected below, read " | |
131 | comment "their help texts, and verify/update the new " | |
132 | comment "configuration in the corresponding configuration " | |
133 | comment "menus. When everything is ok, you can disable the " | |
134 | comment "legacy options in the menu below. Once you have " | |
135 | comment "disabled all legacy options, this text will " | |
136 | comment "disappear and you will be able to start the build. " | |
137 | comment "* " | |
d2e706c3 YM |
138 | comment "Note: at some point in the future, the oldest legacy" |
139 | comment "options will be removed, and configuration files " | |
140 | comment "that still have those options set, will fail to " | |
141 | comment "build, or run, in unpredictable ways. " | |
a25e4a4c | 142 | comment "----------------------------------------------------" |
a91a5c16 | 143 | endif |
ebcfa987 | 144 | |
ed364d1e TP |
145 | ############################################################################### |
146 | comment "Legacy options removed in 2017.02" | |
147 | ||
148 | config BR2_PACKAGE_SNOWBALL_HDMISERVICE | |
149 | bool "snowball-hdmiservice removed" | |
150 | select BR2_LEGACY | |
151 | help | |
152 | We no longer have support for the Snowball platform in | |
153 | Buildroot, so this package was no longer useful. | |
154 | ||
155 | config BR2_PACKAGE_SNOWBALL_INIT | |
156 | bool "snowball-init removed" | |
157 | select BR2_LEGACY | |
158 | help | |
159 | We no longer have support for the Snowball platform in | |
160 | Buildroot, so this package was no longer useful. | |
161 | ||
e782cd5b YM |
162 | ############################################################################### |
163 | comment "Legacy options removed in 2016.11" | |
164 | ||
c457213f FF |
165 | config BR2_PACKAGE_PHP_SAPI_CLI_CGI |
166 | bool "PHP CGI and CLI options are now seperate" | |
167 | select BR2_PACKAGE_PHP_SAPI_CLI | |
168 | select BR2_PACKAGE_PHP_SAPI_CGI | |
c087cbe5 | 169 | select BR2_LEGACY |
c457213f FF |
170 | help |
171 | The PHP Interface options have been split up into a | |
172 | separate option for each interface. | |
173 | ||
174 | config BR2_PACKAGE_PHP_SAPI_CLI_FPM | |
175 | bool "PHP CLI and FPM options are now separate" | |
176 | select BR2_PACKAGE_PHP_SAPI_CLI | |
177 | select BR2_PACKAGE_PHP_SAPI_FPM | |
c087cbe5 | 178 | select BR2_LEGACY |
c457213f FF |
179 | help |
180 | The PHP Interface options have been split up into a | |
181 | separate option for each interface. | |
182 | ||
3534399d AV |
183 | config BR2_PACKAGE_WVSTREAMS |
184 | bool "wvstreams removed" | |
185 | select BR2_LEGACY | |
186 | help | |
187 | wvstreams is not maintained anymore since about 2009. It also | |
188 | doesn't build anymore with recent compilers (GCC 5+). | |
189 | ||
152d4b66 AV |
190 | config BR2_PACKAGE_WVDIAL |
191 | bool "wvdial removed" | |
192 | select BR2_LEGACY | |
193 | help | |
194 | wvdial is not maintained anymore since about 2009. It also | |
195 | doesn't build anymore with recent compilers (GCC 5+). | |
196 | ||
79c82a35 AV |
197 | config BR2_PACKAGE_WEBKITGTK24 |
198 | bool "webkitgtk 2.4.x removed" | |
199 | select BR2_LEGACY | |
200 | help | |
201 | This legacy package only existed because some other packages | |
202 | depended on that specific version of webkitgtk. However, the | |
203 | other packages have been fixed. webkitgtk 2.4 is full of | |
204 | security issues so it needs to be removed. | |
205 | ||
ea3a7ee0 AV |
206 | config BR2_PACKAGE_TORSMO |
207 | bool "torsmo removed" | |
208 | select BR2_LEGACY | |
209 | help | |
210 | torsmo has been unmaintained for a long time, and nobody | |
211 | seems to be interested in it. | |
212 | ||
290166f2 AV |
213 | config BR2_PACKAGE_SSTRIP |
214 | bool "sstrip removed" | |
215 | select BR2_LEGACY | |
216 | help | |
217 | sstrip is unmaintained and potentially harmful. It doesn't | |
218 | save so much compared to normal binutils strip, and there is | |
219 | a big risk of binaries that don't work. Use normal strip | |
220 | instead. | |
221 | ||
133466f5 AV |
222 | config BR2_KERNEL_HEADERS_4_3 |
223 | bool "kernel headers version 4.3.x are no longer supported" | |
224 | select BR2_KERNEL_HEADERS_4_1 | |
225 | select BR2_LEGACY | |
226 | help | |
227 | Version 4.3.x of the Linux kernel headers are no longer | |
228 | maintained upstream and are now removed. As an alternative, | |
229 | version 4.1.x of the headers have been automatically | |
230 | selected in your configuration. | |
231 | ||
232 | config BR2_KERNEL_HEADERS_4_2 | |
233 | bool "kernel headers version 4.2.x are no longer supported" | |
234 | select BR2_KERNEL_HEADERS_4_1 | |
235 | select BR2_LEGACY | |
236 | help | |
237 | Version 4.2.x of the Linux kernel headers are no longer | |
238 | maintained upstream and are now removed. As an alternative, | |
239 | version 4.1.x of the headers have been automatically | |
240 | selected in your configuration. | |
241 | ||
1c2a63ad AV |
242 | config BR2_PACKAGE_KODI_ADDON_XVDR |
243 | bool "kodi-addon-xvdr removed" | |
244 | select BR2_LEGACY | |
245 | help | |
246 | According to the github project page: | |
247 | https://github.com/pipelka/xbmc-addon-xvdr | |
248 | this package is discontinued. | |
249 | ||
3b80ca89 AV |
250 | config BR2_PACKAGE_IPKG |
251 | bool "ipkg removed" | |
252 | select BR2_LEGACY | |
253 | help | |
254 | ipkg dates back to the early 2000s when Compaq started the | |
255 | handhelds.org project and it hasn't seen development since 2006. | |
256 | Use opkg as a replacement. | |
257 | ||
a7c13c1b AV |
258 | config BR2_GCC_VERSION_4_7_X |
259 | bool "gcc 4.7.x support removed" | |
260 | select BR2_LEGACY | |
261 | help | |
262 | Support for gcc version 4.7.x has been removed. The current | |
263 | default version (4.9.x or later) has been selected instead. | |
264 | ||
d8878112 AV |
265 | config BR2_BINUTILS_VERSION_2_24_X |
266 | bool "binutils version 2.24 support removed" | |
267 | select BR2_LEGACY | |
268 | help | |
269 | Support for binutils version 2.24 has been removed. The | |
270 | current default version (2.26 or later) has been selected | |
271 | instead. | |
272 | ||
8c85a5f0 GZ |
273 | config BR2_PACKAGE_WESTON_RPI |
274 | bool "Weston propietary RPI support is gone" | |
275 | select BR2_LEGACY | |
276 | help | |
277 | Upstream decided the propietary (rpi-userland) weston composer | |
278 | support wasn't worth the effort so it was removed. Switch to | |
279 | the open VC4 support. | |
280 | ||
20b14466 YM |
281 | config BR2_LINUX_KERNEL_TOOL_CPUPOWER |
282 | bool "linux-tool cpupower" | |
283 | depends on BR2_LINUX_KERNEL | |
284 | select BR2_LEGACY | |
285 | select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER | |
286 | help | |
287 | Linux tool cpupower option was renamed. | |
288 | ||
289 | config BR2_LINUX_KERNEL_TOOL_PERF | |
290 | bool "linux-tool perf" | |
291 | depends on BR2_LINUX_KERNEL | |
292 | select BR2_LEGACY | |
293 | select BR2_PACKAGE_LINUX_TOOLS_PERF | |
294 | help | |
295 | Linux tool perf option was renamed. | |
296 | ||
297 | config BR2_LINUX_KERNEL_TOOL_SELFTESTS | |
298 | bool "linux-tool selftests" | |
299 | depends on BR2_LINUX_KERNEL | |
300 | select BR2_LEGACY | |
301 | select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS | |
302 | help | |
303 | Linux tool selftests option was renamed. | |
304 | ||
50332a53 TP |
305 | config BR2_GCC_VERSION_4_8_ARC |
306 | bool "gcc arc option renamed" | |
307 | select BR2_LEGACY | |
308 | select BR2_GCC_VERSION_ARC | |
309 | help | |
310 | The option that selects the gcc version for the ARC | |
311 | architecture has been renamed to BR2_GCC_VERSION_ARC. | |
312 | ||
3c590a3e GZ |
313 | config BR2_KERNEL_HEADERS_4_0 |
314 | bool "kernel headers version 4.0.x are no longer supported" | |
315 | select BR2_KERNEL_HEADERS_3_18 | |
316 | select BR2_LEGACY | |
317 | help | |
318 | Version 4.0.x of the Linux kernel headers have been deprecated | |
319 | for more than four buildroot releases and are now removed. | |
320 | As an alternative, version 3.18.x of the headers have been | |
321 | automatically selected in your configuration. | |
322 | ||
323 | config BR2_KERNEL_HEADERS_3_19 | |
324 | bool "kernel headers version 3.19.x are no longer supported" | |
325 | select BR2_KERNEL_HEADERS_3_18 | |
326 | select BR2_LEGACY | |
327 | help | |
328 | Version 3.19.x of the Linux kernel headers have been deprecated | |
329 | for more than four buildroot releases and are now removed. | |
330 | As an alternative, version 3.18.x of the headers have been | |
331 | automatically selected in your configuration. | |
332 | ||
0e517317 RN |
333 | config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS |
334 | bool "libevas-generic-loaders package removed" | |
335 | select BR2_LEGACY | |
336 | select BR2_PACKAGE_EFL | |
337 | help | |
338 | With EFL 1.18, libevas-generic-loaders is now provided by the efl | |
339 | package. | |
340 | ||
c22b7580 RN |
341 | config BR2_PACKAGE_ELEMENTARY |
342 | bool "elementary package removed" | |
343 | select BR2_LEGACY | |
344 | select BR2_PACKAGE_EFL | |
345 | help | |
346 | With EFL 1.18, elementary is now provided by the efl package. | |
347 | ||
e782cd5b YM |
348 | config BR2_LINUX_KERNEL_CUSTOM_LOCAL |
349 | bool "Linux kernel local directory option removed" | |
350 | help | |
351 | The option to select a local directory as the source of the Linux | |
352 | kernel has been removed. It hurts reproducibility of builds. | |
353 | ||
354 | In case you were using this option during development of your | |
355 | Linux kernel, use the override mechanism instead. | |
356 | ||
20ed897b TP |
357 | ############################################################################### |
358 | comment "Legacy options removed in 2016.08" | |
359 | ||
638cfb5e MH |
360 | config BR2_PACKAGE_SYSTEMD_COMPAT |
361 | bool "systemd compatibility libraries have been removed" | |
d246b984 | 362 | select BR2_LEGACY |
638cfb5e | 363 | help |
17bccf17 | 364 | The systemd option to enable the compatibility libraries has |
638cfb5e MH |
365 | been removed. Theses libraries have been useless since a few |
366 | version, and have been fully dropped from the source since | |
367 | v230. | |
368 | ||
5baa92b0 MN |
369 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER |
370 | bool "gst1-plugins-bad liveadder plugin removed" | |
371 | select BR2_LEGACY | |
372 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER | |
373 | help | |
374 | The functionality of the liveadder plugin of the | |
375 | gst1-plugins-bad package has been merged into audiomixer. | |
376 | ||
0f92b19d AW |
377 | config BR2_PACKAGE_LIBFSLVPUWRAP |
378 | bool "libfslvpuwrap has been renamed to imx-vpuwrap" | |
379 | select BR2_LEGACY | |
380 | select BR2_PACKAGE_IMX_VPUWRAP | |
381 | help | |
382 | The libfslvpuwrap has been renamed to match the renamed package. | |
383 | ||
64998907 AW |
384 | config BR2_PACKAGE_LIBFSLPARSER |
385 | bool "libfslparser has been renamed to imx-parser" | |
386 | select BR2_LEGACY | |
387 | select BR2_PACKAGE_IMX_PARSER | |
388 | help | |
389 | The libfslparser has been renamed to match the renamed package. | |
390 | ||
47e6203f AW |
391 | config BR2_PACKAGE_LIBFSLCODEC |
392 | bool "libfslcodec has been renamed to imx-codec" | |
393 | select BR2_LEGACY | |
394 | select BR2_PACKAGE_IMX_CODEC | |
395 | help | |
396 | The libfslcodec has been renamed to match the renamed package. | |
397 | ||
b5d99008 CS |
398 | config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT |
399 | bool "FIT support in uboot-tools has been refactored" | |
400 | select BR2_LEGACY | |
401 | select BR2_PACKAGE_DTC | |
402 | select BR2_PACKAGE_DTC_PROGRAMS | |
403 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT | |
404 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT | |
405 | select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE | |
406 | help | |
407 | This option has been removed in favor of a more fine-grained | |
408 | configuration, which is recommended. Selecting this option | |
409 | enables FIT and FIT signature support for the target packages. | |
410 | It will also select the dtc and openssl packages. | |
411 | ||
f253c146 WB |
412 | config BR2_PTHREADS_OLD |
413 | bool "linuxthreads (stable/old)" | |
414 | select BR2_LEGACY | |
415 | help | |
416 | Linuxthreads have been reworked, BR2_PTHREADS_OLD is now | |
417 | BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed. | |
418 | ||
ae466a60 TP |
419 | config BR2_BINUTILS_VERSION_2_23_X |
420 | bool "binutils 2.23 removed" | |
421 | select BR2_LEGACY | |
422 | help | |
423 | Binutils 2.23 has been removed, using a newer version is | |
424 | recommended. | |
425 | ||
500de259 TP |
426 | config BR2_TOOLCHAIN_BUILDROOT_EGLIBC |
427 | bool "eglibc support has been removed" | |
428 | select BR2_LEGACY | |
429 | help | |
430 | The eglibc project no longer exists, as it has been merged | |
431 | back into the glibc project. Therefore, support for eglibc | |
432 | has been removed, and glibc should be used instead. | |
433 | ||
20ed897b TP |
434 | config BR2_GDB_VERSION_7_8 |
435 | bool "gdb 7.8 has been removed" | |
436 | select BR2_LEGACY | |
437 | help | |
438 | The 7.8 version of gdb has been removed. Use a newer version | |
439 | instead. | |
440 | ||
f0c94704 | 441 | ############################################################################### |
2661c4f1 | 442 | comment "Legacy options removed in 2016.05" |
f0c94704 | 443 | |
3380da69 GZ |
444 | config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL |
445 | bool "openvpn polarssl crypto backend removed" | |
446 | select BR2_LEGACY | |
447 | help | |
448 | The OpenVPN polarssl crypto backend option has been removed. | |
449 | Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't | |
450 | compatible with mbedtls (polarssl) series 2.x which is the | |
451 | version provided in buildroot. And both can't coexist. | |
452 | It now uses OpenSSL as the only option. | |
453 | ||
454 | ||
4dfc2cb5 MB |
455 | config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE |
456 | bool "nginx http spdy module removed" | |
457 | select BR2_LEGACY | |
458 | select BR2_PACKAGE_NGINX_HTTP_V2_MODULE | |
459 | help | |
460 | The ngx_http_spdy_module has been superseded by the | |
461 | ngx_http_v2_module since nginx v1.9.5. The | |
462 | ngx_http_v2_module modules has been automatically selected | |
463 | in your configuration. | |
464 | ||
0c956f2d GZ |
465 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP |
466 | bool "gst1-plugins-bad rtp plugin moved to good" | |
467 | select BR2_LEGACY | |
468 | help | |
469 | The rtp plugin has been moved from gst1-plugins-base to | |
470 | gst1-plugins-good. | |
471 | ||
4196cf90 GZ |
472 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123 |
473 | bool "gst1-plugins-bad mpg123 plugin moved to ugly" | |
474 | select BR2_LEGACY | |
475 | help | |
476 | The mpg123 plugin has been moved from gst1-plugins-bad to | |
477 | gst1-plugins-ugly. | |
478 | ||
8490e833 GZ |
479 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC |
480 | bool "PowerPC Sourcery toolchain has been removed" | |
481 | select BR2_LEGACY | |
482 | help | |
483 | The Sourcery CodeBench toolchain for the PowerPC | |
484 | architecture has been removed, as it was very old, not | |
485 | maintained, and causing numerous build failures with modern | |
486 | userspace packages. | |
487 | ||
488 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2 | |
489 | bool "PowerPC Sourcery E500v2 toolchain has been removed" | |
490 | select BR2_LEGACY | |
491 | help | |
492 | The Sourcery CodeBench toolchain for the PowerPC E500v2 | |
493 | architecture has been removed, as it was very old, not | |
494 | maintained, and causing numerous build failures with modern | |
495 | userspace packages. | |
496 | ||
6cb4814c TP |
497 | config BR2_x86_i386 |
498 | bool "x86 i386 support removed" | |
7aaa730c | 499 | select BR2_LEGACY |
6cb4814c TP |
500 | help |
501 | The support for the i386 processors of the x86 architecture | |
502 | has been removed. | |
503 | ||
940bfe2f JC |
504 | config BR2_PACKAGE_QT5WEBKIT_EXAMPLES |
505 | bool "qt5webkit-examples package removed" | |
506 | select BR2_LEGACY | |
507 | help | |
508 | The qt5webkit-examples package has been removed, since it | |
509 | was removed from upstream starting from Qt 5.6. | |
510 | ||
f75ee80d JC |
511 | config BR2_PACKAGE_QT5QUICK1 |
512 | bool "qt5quick1 package removed" | |
513 | select BR2_LEGACY | |
514 | help | |
515 | The qt5quick1 package has been removed, since it was removed | |
516 | from upstream starting from Qt 5.6. | |
517 | ||
21b25d28 GZ |
518 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR |
519 | bool "uboot custom patch dir removed" | |
520 | select BR2_LEGACY | |
521 | help | |
522 | The uboot custom patch directory option has been removed. Use | |
523 | the improved BR2_TARGET_UBOOT_PATCH option instead. | |
524 | ||
f80ad2fd GZ |
525 | config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID |
526 | bool "xf86-input-void removed" | |
527 | select BR2_LEGACY | |
528 | help | |
529 | The xf86-input-void package has been removed, there's no need | |
530 | for it in any modern (post-2007) xorg server. | |
531 | ||
b8de1788 GZ |
532 | config BR2_KERNEL_HEADERS_3_17 |
533 | bool "kernel headers version 3.17.x are no longer supported" | |
a26aa968 | 534 | select BR2_KERNEL_HEADERS_3_14 |
b8de1788 GZ |
535 | select BR2_LEGACY |
536 | help | |
537 | Version 3.17.x of the Linux kernel headers have been deprecated | |
538 | for more than four buildroot releases and are now removed. | |
a26aa968 | 539 | As an alternative, version 3.14.x of the headers have been |
b8de1788 GZ |
540 | automatically selected in your configuration. |
541 | ||
ffc324ea GZ |
542 | config BR2_GDB_VERSION_7_7 |
543 | bool "gdb 7.7 has been removed" | |
544 | select BR2_LEGACY | |
545 | help | |
546 | The 7.7 version of gdb has been removed. Use a newer version | |
547 | instead. | |
548 | ||
75945ddc GZ |
549 | config BR2_PACKAGE_FOOMATIC_FILTERS |
550 | bool "foomatic-filters" | |
551 | select BR2_LEGACY | |
552 | help | |
553 | The foomatic-filters package was removed. | |
554 | ||
7bd9dbc1 GZ |
555 | config BR2_PACKAGE_SAMBA |
556 | bool "samba" | |
557 | select BR2_LEGACY | |
558 | help | |
559 | The samba package was removed in favour of samba4 since the | |
560 | 3.x series isn't supported by upstream any longer. | |
561 | ||
6922b41d BK |
562 | config BR2_PACKAGE_KODI_WAVPACK |
563 | bool "wavpack" | |
564 | select BR2_LEGACY | |
565 | help | |
566 | wavpack support was removed in favour of ffmpeg: | |
567 | https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4 | |
568 | ||
75ce17d0 BK |
569 | config BR2_PACKAGE_KODI_RSXS |
570 | bool "rsxs support in Kodi was moved to an addon" | |
571 | select BR2_LEGACY | |
572 | select BR2_PACKAGE_KODI_SCREENSAVER_RSXS | |
573 | help | |
574 | rsxs support in Kodi was moved to an addon | |
575 | ||
56b80ece BK |
576 | config BR2_PACKAGE_KODI_GOOM |
577 | bool "Goom support in Kodi was moved to an addon" | |
578 | select BR2_LEGACY | |
579 | select BR2_PACKAGE_KODI_VISUALISATION_GOOM | |
580 | help | |
581 | Goom support in Kodi was moved to an addon | |
582 | ||
e5a073ac GE |
583 | config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS |
584 | bool "systemd all extras option has been removed" | |
585 | select BR2_LEGACY | |
586 | select BR2_PACKAGE_XZ | |
587 | select BR2_PACKAGE_LIBGCRYPT | |
588 | help | |
589 | The systemd option to enable "all extras" has been | |
590 | removed. To get the same features, the libgcrypt and xz | |
591 | package should now be enabled. | |
592 | ||
8c0a367d GZ |
593 | config BR2_GCC_VERSION_4_5_X |
594 | bool "gcc 4.5.x has been removed" | |
595 | select BR2_LEGACY | |
596 | help | |
597 | The 4.5.x version of gcc has been removed. Use a newer | |
598 | version instead. | |
599 | ||
007c2ce9 BK |
600 | config BR2_PACKAGE_SQLITE_READLINE |
601 | bool "command-line editing support was updated" | |
602 | select BR2_PACKAGE_NCURSES | |
603 | select BR2_PACKAGE_READLINE | |
604 | select BR2_LEGACY | |
605 | help | |
606 | This option was removed in favour of the sqlite package | |
607 | deciding itself depending on the enabled packages whether | |
608 | command-line editing should be enabled, it also also takes | |
609 | libedit into account. | |
610 | ||
f0c94704 LC |
611 | ############################################################################### |
612 | comment "Legacy options removed in 2016.02" | |
613 | ||
f39ac4d2 BK |
614 | config BR2_PACKAGE_DOVECOT_BZIP2 |
615 | bool "bzip2 support option has been removed" | |
616 | select BR2_LEGACY | |
617 | select BR2_PACKAGE_BZIP2 | |
618 | help | |
619 | Bzip2 support is built if the bzip2 package is selected. | |
620 | ||
621 | config BR2_PACKAGE_DOVECOT_ZLIB | |
622 | bool "zlib support option has been removed" | |
623 | select BR2_LEGACY | |
624 | select BR2_PACKAGE_ZLIB | |
625 | help | |
626 | Zlib support is built if the zlib package is selected. | |
627 | ||
ead1df42 JK |
628 | config BR2_PACKAGE_E2FSPROGS_FINDFS |
629 | bool "e2fsprogs findfs option has been removed" | |
630 | select BR2_LEGACY | |
631 | help | |
632 | This option attempted to enable findfs capabilities from | |
633 | e2fsprogs but has not worked since July 2015 (due to | |
634 | packaging changes). One can use BusyBox's findfs support or | |
635 | enable the BR2_PACKAGE_UTIL_LINUX_FINDFS option. | |
636 | ||
b1063a01 RN |
637 | config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL |
638 | bool "openpowerlink debug option has been removed" | |
639 | select BR2_LEGACY | |
640 | help | |
641 | This option depends on BR2_ENABLE_DEBUG which should not be used | |
642 | by packages anymore. | |
643 | ||
644 | config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE | |
645 | bool "openpowerlink package has been updated" | |
646 | select BR2_LEGACY | |
647 | select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB | |
648 | help | |
649 | openpowerlink kernel modules are built if the | |
650 | kernel stack library is selected. | |
651 | ||
652 | config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP | |
653 | bool "openpowerlink package has been updated" | |
654 | select BR2_LEGACY | |
655 | select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB | |
656 | help | |
657 | The user space support has been split in two part: | |
658 | - a monolitic user space library | |
659 | - a user spae deamon driver | |
660 | ||
e3e0583f YM |
661 | config BR2_LINUX_KERNEL_SAME_AS_HEADERS |
662 | bool "using the linux headers version for the kernel has been removed" | |
663 | select BR2_LEGACY | |
664 | help | |
665 | The option to use the version of the kernel headers for the | |
666 | kernel to build has been removed. | |
667 | ||
668 | There is now the converse, better-suited and more versatile | |
669 | option to use the kernel version for the linux headers. | |
670 | ||
d37ce8e1 OS |
671 | config BR2_PACKAGE_CUPS_PDFTOPS |
672 | bool "Pdftops support has been removed from Cups" | |
673 | select BR2_LEGACY | |
674 | help | |
675 | Pdftops support has been removed from the cups package | |
676 | It is now part of the cups-filters package. | |
677 | ||
d8da5f10 GZ |
678 | config BR2_KERNEL_HEADERS_3_16 |
679 | bool "kernel headers version 3.16.x are no longer supported" | |
a26aa968 | 680 | select BR2_KERNEL_HEADERS_3_14 |
d8da5f10 GZ |
681 | select BR2_LEGACY |
682 | help | |
683 | Version 3.16.x of the Linux kernel headers have been deprecated | |
684 | for more than four buildroot releases and are now removed. | |
a26aa968 | 685 | As an alternative, version 3.14.x of the headers have been |
d8da5f10 GZ |
686 | automatically selected in your configuration. |
687 | ||
af45a4f4 YY |
688 | config BR2_PACKAGE_PYTHON_PYXML |
689 | bool "python-pyxml package has been removed" | |
690 | select BR2_LEGACY | |
691 | help | |
692 | PyXML is obsolete and its functionality is covered either via | |
693 | native Python XML support or python-lxml package. | |
694 | ||
d29c7196 SN |
695 | # BR2_ENABLE_SSP is still referenced in Config.in (default in choice) |
696 | config BR2_ENABLE_SSP | |
697 | bool "Stack Smashing protection now has different levels" | |
698 | help | |
699 | The protection offered by SSP can now be selected from different | |
700 | protection levels. Be sure to review the SSP level in the build | |
701 | options menu. | |
702 | ||
1e3d2cad | 703 | config BR2_PACKAGE_DIRECTFB_CLE266 |
e989ddbe | 704 | bool "cle266 driver for directfb removed" |
1e3d2cad GZ |
705 | select BR2_LEGACY |
706 | help | |
707 | The cle266 directfb driver support has been removed. | |
708 | It doesn't build in the latest version and it's unlikely | |
709 | anyone has any use for it. | |
710 | ||
711 | config BR2_PACKAGE_DIRECTFB_UNICHROME | |
e989ddbe | 712 | bool "unichrome driver for directfb removed" |
1e3d2cad GZ |
713 | select BR2_LEGACY |
714 | help | |
715 | The unichrome directfb driver support has been removed. | |
716 | It doesn't build in the latest version and it's unlikely | |
717 | anyone has any use for it. | |
718 | ||
820e1685 RN |
719 | config BR2_PACKAGE_LIBELEMENTARY |
720 | bool "libelementary has been renamed to elementary" | |
721 | select BR2_LEGACY | |
722 | select BR2_PACKAGE_ELEMENTARY | |
723 | help | |
724 | The libelementary package has been renamed to match the upstream | |
725 | name. | |
726 | ||
a9d1f5f6 RN |
727 | config BR2_PACKAGE_LIBEINA |
728 | bool "libeina package has been removed" | |
729 | select BR2_LEGACY | |
730 | select BR2_PACKAGE_EFL | |
731 | help | |
1f83a7a7 | 732 | With EFL 1.15, libeina is now provided by the efl package. |
a9d1f5f6 | 733 | |
49700f08 RN |
734 | config BR2_PACKAGE_LIBEET |
735 | bool "libeet package has been removed" | |
736 | select BR2_LEGACY | |
737 | select BR2_PACKAGE_EFL | |
738 | help | |
1f83a7a7 | 739 | With EFL 1.15, libeet is now provided by the efl package. |
49700f08 | 740 | |
e5989d6c RN |
741 | config BR2_PACKAGE_LIBEVAS |
742 | bool "libevas package has been removed" | |
743 | select BR2_LEGACY | |
744 | select BR2_PACKAGE_EFL | |
745 | help | |
1f83a7a7 | 746 | With EFL 1.15, libevas is now provided by the efl package. |
e5989d6c | 747 | |
1fe1b60b RN |
748 | config BR2_PACKAGE_LIBECORE |
749 | bool "libecore package has been removed" | |
750 | select BR2_LEGACY | |
751 | select BR2_PACKAGE_EFL | |
752 | help | |
1f83a7a7 | 753 | With EFL 1.15, libecore is now provided by the efl package. |
1fe1b60b | 754 | |
8c05c38d RN |
755 | config BR2_PACKAGE_LIBEDBUS |
756 | bool "libedbus package has been removed" | |
757 | select BR2_LEGACY | |
758 | select BR2_PACKAGE_EFL | |
759 | help | |
1f83a7a7 | 760 | With EFL 1.15, libedbus is now provided by the efl package. |
8c05c38d | 761 | |
d2b042c1 RN |
762 | config BR2_PACKAGE_LIBEFREET |
763 | bool "libefreet package has been removed" | |
764 | select BR2_LEGACY | |
765 | select BR2_PACKAGE_EFL | |
766 | help | |
1f83a7a7 | 767 | With EFL 1.15, libefreet is now provided by the efl package. |
d2b042c1 | 768 | |
e155c957 RN |
769 | config BR2_PACKAGE_LIBEIO |
770 | bool "libeio package has been removed" | |
771 | select BR2_LEGACY | |
772 | select BR2_PACKAGE_EFL | |
773 | help | |
1f83a7a7 | 774 | With EFL 1.15, libeio is now provided by the efl package. |
e155c957 | 775 | |
b728fb77 RN |
776 | config BR2_PACKAGE_LIBEMBRYO |
777 | bool "libembryo package has been removed" | |
778 | select BR2_LEGACY | |
779 | select BR2_PACKAGE_EFL | |
780 | help | |
1f83a7a7 | 781 | With EFL 1.15, libembryo is now provided by the efl package. |
b728fb77 | 782 | |
4c93c107 RN |
783 | config BR2_PACKAGE_LIBEDJE |
784 | bool "libedje package has been removed" | |
785 | select BR2_LEGACY | |
786 | select BR2_PACKAGE_EFL | |
787 | help | |
1f83a7a7 | 788 | With EFL 1.15, libedje is now provided by the efl package. |
4c93c107 | 789 | |
905dba10 RN |
790 | config BR2_PACKAGE_LIBETHUMB |
791 | bool "libethumb package has been removed" | |
792 | select BR2_LEGACY | |
793 | select BR2_PACKAGE_EFL | |
794 | help | |
1f83a7a7 | 795 | With EFL 1.15, libethumb is now provided by the efl package. |
905dba10 | 796 | |
f0c94704 LC |
797 | config BR2_PACKAGE_INFOZIP |
798 | bool "infozip option has been renamed to zip" | |
799 | select BR2_LEGACY | |
800 | select BR2_PACKAGE_ZIP | |
801 | help | |
802 | Info-Zip's Zip package has been renamed from infozip to zip, | |
803 | to avoid ambiguities with Info-Zip's UnZip which has been added | |
804 | in the unzip package. | |
805 | ||
a2d16600 | 806 | config BR2_BR2_PACKAGE_NODEJS_0_10_X |
75b70492 | 807 | bool "nodejs 0.10.x option removed" |
a2d16600 MB |
808 | select BR2_LEGACY |
809 | select BR2_PACKAGE_NODEJS | |
810 | help | |
75b70492 MB |
811 | nodejs 0.10.x option has been removed. 0.10.x is now |
812 | automatically chosen for ARMv5 architectures only and the latest | |
813 | nodejs for all other supported architectures. The correct nodejs | |
814 | version has been automatically selected in your configuration. | |
a2d16600 | 815 | |
a314b878 MB |
816 | config BR2_BR2_PACKAGE_NODEJS_0_12_X |
817 | bool "nodejs version 0.12.x has been removed" | |
818 | select BR2_LEGACY | |
819 | select BR2_PACKAGE_NODEJS | |
820 | help | |
821 | nodejs version 0.12.x has been removed. As an alternative, | |
822 | the latest nodejs version has been automatically selected in | |
823 | your configuration. | |
824 | ||
90bf67c0 MB |
825 | config BR2_BR2_PACKAGE_NODEJS_4_X |
826 | bool "nodejs version 4.x has been removed" | |
827 | select BR2_LEGACY | |
828 | select BR2_PACKAGE_NODEJS | |
829 | help | |
830 | nodejs version 4.x has been removed. As an alternative, | |
831 | the latest nodejs version has been automatically selected in | |
832 | your configuration. | |
833 | ||
16b8e813 | 834 | ############################################################################### |
ae46e8f9 TP |
835 | comment "Legacy options removed in 2015.11" |
836 | ||
301e8ffb PS |
837 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL |
838 | bool "gst1-plugins-bad real plugin has been removed" | |
839 | select BR2_LEGACY | |
840 | help | |
841 | The real plugin from GStreamer 1 bad plugins has been | |
842 | removed. | |
843 | ||
f7dd5cb2 PS |
844 | config BR2_PACKAGE_MEDIA_CTL |
845 | bool "media-ctl package has been removed" | |
846 | select BR2_LEGACY | |
847 | select BR2_PACKAGE_LIBV4L | |
848 | select BR2_PACKAGE_LIBV4L_UTILS | |
849 | help | |
850 | media-ctl source and developement have been moved to | |
851 | v4l-utils since June 2014. For an up-to-date media-ctl | |
852 | version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS. | |
853 | ||
f8031339 RN |
854 | config BR2_PACKAGE_SCHIFRA |
855 | bool "schifra package has been removed" | |
758c5c7f | 856 | select BR2_LEGACY |
f8031339 RN |
857 | help |
858 | Schifra package has been maked broken since 2014.11 release and | |
859 | haven't been fixed since then. | |
860 | ||
7e5ddbcb MH |
861 | config BR2_PACKAGE_ZXING |
862 | bool "zxing option has been renamed" | |
863 | select BR2_LEGACY | |
864 | select BR2_PACKAGE_ZXING_CPP | |
865 | help | |
866 | ZXing no longer provides the cpp bindings, it has been renamed to | |
867 | BR2_PACKAGE_ZXING_CPP which uses a new upstream. | |
868 | ||
4d131b4d YM |
869 | # Since FreeRDP has new dependencies, protect this legacy to avoid the |
870 | # infamous "unmet direct dependencies" kconfig error. | |
871 | config BR2_PACKAGE_FREERDP_CLIENT | |
872 | bool "freerdp client option renamed" | |
873 | depends on BR2_PACKAGE_FREERDP | |
758c5c7f | 874 | select BR2_LEGACY |
4d131b4d YM |
875 | select BR2_PACKAGE_FREERDP_CLIENT_X11 |
876 | ||
a658c4d1 GZ |
877 | config BR2_PACKAGE_BLACKBOX |
878 | bool "blackbox package has been removed" | |
879 | select BR2_LEGACY | |
880 | help | |
881 | Upstream is dead and the package has been deprecated for | |
882 | some time. There are other alternative maintained WMs. | |
883 | ||
4ac4bc32 GZ |
884 | config BR2_KERNEL_HEADERS_3_0 |
885 | bool "kernel headers version 3.0.x are no longer supported" | |
886 | select BR2_KERNEL_HEADERS_3_2 | |
887 | select BR2_LEGACY | |
888 | help | |
889 | Version 3.0.x of the Linux kernel headers have been deprecated | |
890 | for more than four buildroot releases and are now removed. | |
891 | As an alternative, version 3.2.x of the headers have been | |
892 | automatically selected in your configuration. | |
893 | ||
894 | config BR2_KERNEL_HEADERS_3_11 | |
895 | bool "kernel headers version 3.11.x are no longer supported" | |
a26aa968 | 896 | select BR2_KERNEL_HEADERS_3_10 |
4ac4bc32 GZ |
897 | select BR2_LEGACY |
898 | help | |
899 | Version 3.11.x of the Linux kernel headers have been deprecated | |
900 | for more than four buildroot releases and are now removed. | |
a26aa968 | 901 | As an alternative, version 3.10.x of the headers have been |
4ac4bc32 GZ |
902 | automatically selected in your configuration. |
903 | ||
904 | config BR2_KERNEL_HEADERS_3_13 | |
905 | bool "kernel headers version 3.13.x are no longer supported" | |
a26aa968 | 906 | select BR2_KERNEL_HEADERS_3_12 |
4ac4bc32 GZ |
907 | select BR2_LEGACY |
908 | help | |
909 | Version 3.13.x of the Linux kernel headers have been deprecated | |
910 | for more than four buildroot releases and are now removed. | |
a26aa968 | 911 | As an alternative, version 3.12.x of the headers have been |
4ac4bc32 GZ |
912 | automatically selected in your configuration. |
913 | ||
914 | config BR2_KERNEL_HEADERS_3_15 | |
915 | bool "kernel headers version 3.15.x are no longer supported" | |
a26aa968 | 916 | select BR2_KERNEL_HEADERS_3_14 |
4ac4bc32 GZ |
917 | select BR2_LEGACY |
918 | help | |
919 | Version 3.15.x of the Linux kernel headers have been deprecated | |
920 | for more than four buildroot releases and are now removed. | |
a26aa968 | 921 | As an alternative, version 3.14.x of the headers have been |
4ac4bc32 GZ |
922 | automatically selected in your configuration. |
923 | ||
80404e8c TP |
924 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI |
925 | bool "DirectFB example df_andi has been removed" | |
758c5c7f | 926 | select BR2_LEGACY |
80404e8c TP |
927 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
928 | help | |
929 | The per-DirectFB example options have been removed. The | |
930 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
931 | examples. | |
932 | ||
933 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD | |
934 | bool "DirectFB example df_bltload has been removed" | |
758c5c7f | 935 | select BR2_LEGACY |
80404e8c TP |
936 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
937 | help | |
938 | The per-DirectFB example options have been removed. The | |
939 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
940 | examples. | |
941 | ||
942 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD | |
943 | bool "DirectFB example df_cpuload has been removed" | |
758c5c7f | 944 | select BR2_LEGACY |
80404e8c TP |
945 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
946 | help | |
947 | The per-DirectFB example options have been removed. The | |
948 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
949 | examples. | |
950 | ||
951 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER | |
952 | bool "DirectFB example df_databuffer has been removed" | |
758c5c7f | 953 | select BR2_LEGACY |
80404e8c TP |
954 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
955 | help | |
956 | The per-DirectFB example options have been removed. The | |
957 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
958 | examples. | |
959 | ||
960 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD | |
961 | bool "DirectFB example df_dioload has been removed" | |
758c5c7f | 962 | select BR2_LEGACY |
80404e8c TP |
963 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
964 | help | |
965 | The per-DirectFB example options have been removed. The | |
966 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
967 | examples. | |
968 | ||
969 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK | |
970 | bool "DirectFB example df_dok has been removed" | |
758c5c7f | 971 | select BR2_LEGACY |
80404e8c TP |
972 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
973 | help | |
974 | The per-DirectFB example options have been removed. The | |
975 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
976 | examples. | |
977 | ||
978 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST | |
979 | bool "DirectFB example df_drivertest has been removed" | |
758c5c7f | 980 | select BR2_LEGACY |
80404e8c TP |
981 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
982 | help | |
983 | The per-DirectFB example options have been removed. The | |
984 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
985 | examples. | |
986 | ||
80404e8c TP |
987 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE |
988 | bool "DirectFB example df_fire has been removed" | |
758c5c7f | 989 | select BR2_LEGACY |
80404e8c TP |
990 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
991 | help | |
992 | The per-DirectFB example options have been removed. The | |
993 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
994 | examples. | |
995 | ||
996 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP | |
997 | bool "DirectFB example df_flip has been removed" | |
758c5c7f | 998 | select BR2_LEGACY |
80404e8c TP |
999 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1000 | help | |
1001 | The per-DirectFB example options have been removed. The | |
1002 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1003 | examples. | |
1004 | ||
1005 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS | |
1006 | bool "DirectFB example df_fonts has been removed" | |
758c5c7f | 1007 | select BR2_LEGACY |
80404e8c TP |
1008 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1009 | help | |
1010 | The per-DirectFB example options have been removed. The | |
1011 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1012 | examples. | |
1013 | ||
1014 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT | |
1015 | bool "DirectFB example df_input has been removed" | |
758c5c7f | 1016 | select BR2_LEGACY |
80404e8c TP |
1017 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1018 | help | |
1019 | The per-DirectFB example options have been removed. The | |
1020 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1021 | examples. | |
1022 | ||
1023 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK | |
1024 | bool "DirectFB example df_joystick has been removed" | |
758c5c7f | 1025 | select BR2_LEGACY |
80404e8c TP |
1026 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1027 | help | |
1028 | The per-DirectFB example options have been removed. The | |
1029 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1030 | examples. | |
1031 | ||
1032 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES | |
1033 | bool "DirectFB example df_knuckles has been removed" | |
758c5c7f | 1034 | select BR2_LEGACY |
80404e8c TP |
1035 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1036 | help | |
1037 | The per-DirectFB example options have been removed. The | |
1038 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1039 | examples. | |
1040 | ||
1041 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER | |
1042 | bool "DirectFB example df_layer has been removed" | |
758c5c7f | 1043 | select BR2_LEGACY |
80404e8c TP |
1044 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1045 | help | |
1046 | The per-DirectFB example options have been removed. The | |
1047 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1048 | examples. | |
1049 | ||
1050 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX | |
1051 | bool "DirectFB example df_matrix has been removed" | |
758c5c7f | 1052 | select BR2_LEGACY |
80404e8c TP |
1053 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1054 | help | |
1055 | The per-DirectFB example options have been removed. The | |
1056 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1057 | examples. | |
1058 | ||
1059 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER | |
1060 | bool "DirectFB example df_matrix_water has been removed" | |
758c5c7f | 1061 | select BR2_LEGACY |
80404e8c TP |
1062 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1063 | help | |
1064 | The per-DirectFB example options have been removed. The | |
1065 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1066 | examples. | |
1067 | ||
1068 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO | |
1069 | bool "DirectFB example df_neo has been removed" | |
758c5c7f | 1070 | select BR2_LEGACY |
80404e8c TP |
1071 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1072 | help | |
1073 | The per-DirectFB example options have been removed. The | |
1074 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1075 | examples. | |
1076 | ||
1077 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD | |
1078 | bool "DirectFB example df_netload has been removed" | |
758c5c7f | 1079 | select BR2_LEGACY |
80404e8c TP |
1080 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1081 | help | |
1082 | The per-DirectFB example options have been removed. The | |
1083 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1084 | examples. | |
1085 | ||
1086 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE | |
1087 | bool "DirectFB example df_palette has been removed" | |
1088 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
1089 | help | |
1090 | The per-DirectFB example options have been removed. The | |
1091 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1092 | examples. | |
1093 | ||
1094 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE | |
1095 | bool "DirectFB example df_particle has been removed" | |
758c5c7f | 1096 | select BR2_LEGACY |
80404e8c TP |
1097 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1098 | help | |
1099 | The per-DirectFB example options have been removed. The | |
1100 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1101 | examples. | |
1102 | ||
1103 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER | |
1104 | bool "DirectFB example df_porter has been removed" | |
758c5c7f | 1105 | select BR2_LEGACY |
80404e8c TP |
1106 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1107 | help | |
1108 | The per-DirectFB example options have been removed. The | |
1109 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1110 | examples. | |
1111 | ||
1112 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS | |
1113 | bool "DirectFB example df_stress has been removed" | |
1114 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
1115 | help | |
1116 | The per-DirectFB example options have been removed. The | |
1117 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1118 | examples. | |
1119 | ||
1120 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE | |
1121 | bool "DirectFB example df_texture has been removed" | |
758c5c7f | 1122 | select BR2_LEGACY |
80404e8c TP |
1123 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1124 | help | |
1125 | The per-DirectFB example options have been removed. The | |
1126 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1127 | examples. | |
1128 | ||
1129 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO | |
1130 | bool "DirectFB example df_video has been removed" | |
758c5c7f | 1131 | select BR2_LEGACY |
80404e8c TP |
1132 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1133 | help | |
1134 | The per-DirectFB example options have been removed. The | |
1135 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1136 | examples. | |
1137 | ||
1138 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE | |
1139 | bool "DirectFB example df_video_particle has been removed" | |
758c5c7f | 1140 | select BR2_LEGACY |
80404e8c TP |
1141 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1142 | help | |
1143 | The per-DirectFB example options have been removed. The | |
1144 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1145 | examples. | |
1146 | ||
1147 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW | |
1148 | bool "DirectFB example df_window has been removed" | |
758c5c7f | 1149 | select BR2_LEGACY |
80404e8c TP |
1150 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1151 | help | |
1152 | The per-DirectFB example options have been removed. The | |
1153 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1154 | examples. | |
1155 | ||
2b78fb21 GB |
1156 | config BR2_PACKAGE_KOBS_NG |
1157 | bool "kobs-ng was replaced by imx-kobs" | |
1158 | select BR2_LEGACY | |
1159 | select BR2_PACKAGE_IMX_KOBS | |
1160 | help | |
1161 | The outdated kobs-ng has been replaced by the Freescale- | |
1162 | maintained imx-kobs package. | |
1163 | ||
11573f5a TP |
1164 | config BR2_PACKAGE_SAWMAN |
1165 | bool "sawman package removed" | |
1166 | select BR2_LEGACY | |
1167 | select BR2_PACKAGE_DIRECTFB_SAWMAN | |
1168 | help | |
1169 | This option has been removed because the sawman package no | |
1170 | longer exists: it was merged inside DirectFB itself. This | |
1171 | feature can now be enabled using the | |
1172 | BR2_PACKAGE_DIRECTFB_SAWMAN option. | |
1173 | ||
ae46e8f9 TP |
1174 | config BR2_PACKAGE_DIVINE |
1175 | bool "divine package removed" | |
1176 | select BR2_LEGACY | |
1177 | select BR2_PACKAGE_DIRECTFB_DIVINE | |
1178 | help | |
1179 | This option has been removed because the divine package no | |
1180 | longer exists: it was merged inside DirectFB itself. This | |
1181 | feature can now be enabled using the | |
1182 | BR2_PACKAGE_DIRECTFB_DIVINE option. | |
1183 | ||
1184 | ############################################################################### | |
16b8e813 GZ |
1185 | comment "Legacy options removed in 2015.08" |
1186 | ||
9d9f1a92 BK |
1187 | config BR2_PACKAGE_KODI_PVR_ADDONS |
1188 | bool "Kodi PVR addon was split" | |
1189 | select BR2_LEGACY | |
2579ec20 | 1190 | select BR2_PACKAGE_KODI_PVR_ARGUSTV |
a69eca43 | 1191 | select BR2_PACKAGE_KODI_PVR_DVBLINK |
6894c6c7 | 1192 | select BR2_PACKAGE_KODI_PVR_DVBVIEWER |
313e45cd | 1193 | select BR2_PACKAGE_KODI_PVR_FILMON |
6940d66a | 1194 | select BR2_PACKAGE_KODI_PVR_HTS |
8c326ff8 | 1195 | select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE |
a571287d | 1196 | select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER |
afb2f155 | 1197 | select BR2_PACKAGE_KODI_PVR_MYTHTV |
0757c7d3 | 1198 | select BR2_PACKAGE_KODI_PVR_NEXTPVR |
805e9c15 | 1199 | select BR2_PACKAGE_KODI_PVR_NJOY |
8776003d | 1200 | select BR2_PACKAGE_KODI_PVR_PCTV |
70cf949f | 1201 | select BR2_PACKAGE_KODI_PVR_STALKER |
610a3701 | 1202 | select BR2_PACKAGE_KODI_PVR_VBOX |
7457d487 | 1203 | select BR2_PACKAGE_KODI_PVR_VDR_VNSI |
eaf250c1 | 1204 | select BR2_PACKAGE_KODI_PVR_VUPLUS |
967a4e9a | 1205 | select BR2_PACKAGE_KODI_PVR_WMC |
9d9f1a92 BK |
1206 | help |
1207 | Kodi PVR addon was split into seperate modules | |
1208 | ||
f84cc202 GZ |
1209 | config BR2_BINUTILS_VERSION_2_23_2 |
1210 | bool "binutils 2.23 option renamed" | |
1211 | select BR2_LEGACY | |
f84cc202 | 1212 | help |
ae466a60 TP |
1213 | Binutils 2.23.2 has been removed, using a newer version is |
1214 | recommended. | |
f84cc202 GZ |
1215 | |
1216 | config BR2_BINUTILS_VERSION_2_24 | |
1217 | bool "binutils 2.24 option renamed" | |
1218 | select BR2_LEGACY | |
1219 | select BR2_BINUTILS_VERSION_2_24_X | |
1220 | help | |
1221 | The binutils version option has been renamed to match the | |
1222 | same patchlevel logic used by gcc. The new option is now | |
1223 | BR2_BINUTILS_VERSION_2_24_X. | |
1224 | ||
1225 | config BR2_BINUTILS_VERSION_2_25 | |
1226 | bool "binutils 2.25 option renamed" | |
1227 | select BR2_LEGACY | |
1228 | select BR2_BINUTILS_VERSION_2_25_X | |
1229 | help | |
1230 | The binutils version option has been renamed to match the | |
1231 | same patchlevel logic used by gcc. The new option is now | |
1232 | BR2_BINUTILS_VERSION_2_25_X. | |
1233 | ||
1326e761 RN |
1234 | config BR2_PACKAGE_PERF |
1235 | bool "perf option has been renamed" | |
1236 | select BR2_LEGACY | |
1237 | select BR2_LINUX_KERNEL_TOOL_PERF | |
1238 | help | |
1239 | The perf package has been moved as a Linux tools package, | |
1240 | and the option to enable it is now | |
1241 | BR2_LINUX_KERNEL_TOOL_PERF. | |
1242 | ||
2f845953 TP |
1243 | config BR2_BINUTILS_VERSION_2_22 |
1244 | bool "binutils 2.22 removed" | |
1245 | select BR2_LEGACY | |
1246 | help | |
1247 | Binutils 2.22 has been removed, using a newer version is | |
1248 | recommended. | |
1249 | ||
4c0613e7 GB |
1250 | config BR2_PACKAGE_GPU_VIV_BIN_MX6Q |
1251 | bool "gpu-viv-bin-mx6q" | |
1252 | select BR2_LEGACY | |
1253 | select BR2_PACKAGE_IMX_GPU_VIV | |
1254 | help | |
1255 | Vivante graphics libraries have been renamed to | |
1256 | BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package | |
1257 | name. | |
1258 | ||
7742abe0 MW |
1259 | config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS |
1260 | depends on BR2_PACKAGE_PYTHON | |
1261 | bool "libsemanage python bindings removed" | |
758c5c7f | 1262 | select BR2_LEGACY |
7742abe0 MW |
1263 | help |
1264 | This option has been removed, since the libsemanage Python | |
1265 | bindings on the target were not useful. | |
1266 | ||
16b8e813 GZ |
1267 | config BR2_TARGET_UBOOT_NETWORK |
1268 | bool "U-Boot custom network settings removed" | |
1269 | select BR2_LEGACY | |
1270 | help | |
1271 | U-Boot's custom network settings options have been removed. | |
1272 | ||
120136ee | 1273 | ############################################################################### |
fd0e5f6b | 1274 | comment "Legacy options removed in 2015.05" |
665e13c8 | 1275 | |
e3904a89 ML |
1276 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K |
1277 | bool "jffs2 16kB erasesize NAND flash option renamed" | |
1278 | select BR2_LEGACY | |
1279 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K | |
1280 | help | |
1281 | The JFFS2 NAND flash options now longer include the page | |
1282 | size. | |
1283 | ||
1284 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K | |
1285 | bool "jffs2 128kB erasesize NAND flash option renamed" | |
1286 | select BR2_LEGACY | |
1287 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K | |
1288 | help | |
1289 | The JFFS2 NAND flash options now longer include the page | |
1290 | size. | |
1291 | ||
eff7c144 AC |
1292 | config BR2_PACKAGE_MONO_20 |
1293 | bool "2.0/3.5 .Net Runtime" | |
1294 | select BR2_LEGACY | |
1295 | help | |
1296 | This option no longer exists, all versions of the .Net | |
1297 | runtime are now installed. | |
1298 | ||
1299 | config BR2_PACKAGE_MONO_40 | |
1300 | bool "4.0 .Net Runtime" | |
1301 | select BR2_LEGACY | |
1302 | help | |
1303 | This option no longer exists, all versions of the .Net | |
1304 | runtime are now installed. | |
1305 | ||
1306 | config BR2_PACKAGE_MONO_45 | |
1307 | bool "4.5 .Net Runtime" | |
1308 | select BR2_LEGACY | |
1309 | help | |
1310 | This option no longer exists, all versions of the .Net | |
1311 | runtime are now installed. | |
1312 | ||
efd49e33 PK |
1313 | config BR2_CIVETWEB_WITH_LUA |
1314 | bool "civetweb lua option renamed" | |
1315 | select BR2_LEGACY | |
1316 | select BR2_PACKAGE_CIVETWEB_WITH_LUA | |
1317 | help | |
1318 | civetweb's lua option has been renamed to | |
1319 | BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other | |
1320 | packages name options. | |
1321 | ||
e6c7ad17 BK |
1322 | config BR2_PACKAGE_TIFF_TIFF2PDF |
1323 | bool "tiff utility-specific option removed" | |
1324 | select BR2_LEGACY | |
1325 | select BR2_PACKAGE_TIFF_UTILITIES | |
1326 | help | |
1327 | utility-specific options have been removed in favour of | |
1328 | the new option BR2_PACKAGE_TIFF_UTILITIES. | |
1329 | ||
1330 | config BR2_PACKAGE_TIFF_TIFFCP | |
1331 | bool "tiff utility-specific option removed" | |
1332 | select BR2_LEGACY | |
1333 | select BR2_PACKAGE_TIFF_UTILITIES | |
1334 | help | |
1335 | utility-specific options have been removed in favour of | |
1336 | the new option BR2_PACKAGE_TIFF_UTILITIES. | |
1337 | ||
e7035d4e TP |
1338 | config BR2_LINUX_KERNEL_EXT_RTAI_PATCH |
1339 | bool "RTAI patch file path has been removed" | |
758c5c7f | 1340 | select BR2_LEGACY |
e7035d4e TP |
1341 | help |
1342 | This option has never worked, so it has been removed. | |
1343 | ||
02917961 YM |
1344 | config BR2_TARGET_GENERIC_PASSWD_DES |
1345 | bool "Encoding passwords with DES has been removed" | |
1346 | select BR2_LEGACY | |
1347 | help | |
1348 | Paswords can now only be encoded with either of md5, sha256 or sha512. | |
1349 | The default is md5, which is stronger that DES (but still pretty weak). | |
1350 | ||
0d31b5e4 GZ |
1351 | config BR2_PACKAGE_GTK2_THEME_HICOLOR |
1352 | bool "hicolor (default theme) is a duplicate" | |
1353 | select BR2_LEGACY | |
1354 | select BR2_PACKAGE_HICOLOR_ICON_THEME | |
1355 | help | |
1356 | The option was just a duplicate of hicolor icon theme. | |
1357 | ||
fd0e5f6b MW |
1358 | config BR2_PACKAGE_VALGRIND_PTRCHECK |
1359 | bool "valgrind's PTRCheck was renamed to SGCheck" | |
1360 | select BR2_LEGACY | |
1361 | select BR2_PACKAGE_VALGRIND_SGCHECK | |
1362 | help | |
1363 | PTRCheck was renamed to SGCheck in valgrind | |
1364 | ||
1365 | ############################################################################### | |
665e13c8 TP |
1366 | comment "Legacy options removed in 2015.02" |
1367 | ||
10900c07 PA |
1368 | config BR2_PACKAGE_LIBGC |
1369 | bool "libgc package removed" | |
1370 | select BR2_LEGACY | |
1371 | select BR2_PACKAGE_BDWGC | |
1372 | help | |
1373 | libgc has been removed because we have the same package under a | |
1374 | different name, bdwgc. | |
1375 | ||
8d702aca YM |
1376 | config BR2_PACKAGE_WDCTL |
1377 | bool "util-linux' wdctl option has been renamed" | |
1378 | select BR2_LEGACY | |
1379 | select BR2_PACKAGE_UTIL_LINUX_WDCTL | |
1380 | help | |
1381 | util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL | |
1382 | to be aligned with how the other options are named. | |
1383 | ||
e44edb82 DM |
1384 | config BR2_PACKAGE_UTIL_LINUX_ARCH |
1385 | bool "util-linux' arch option has been removed" | |
1386 | select BR2_LEGACY | |
1387 | help | |
1388 | util-linux' arch was dropped in util-linux 2.23, in favor of | |
1389 | the coreutils version. | |
1390 | ||
1391 | config BR2_PACKAGE_UTIL_LINUX_DDATE | |
1392 | bool "util-linux' ddate option has been removed" | |
1393 | select BR2_LEGACY | |
1394 | help | |
1395 | util-linux' ddate was dropped in util-linux 2.23. | |
1396 | ||
3c476540 RN |
1397 | config BR2_PACKAGE_RPM_BZIP2_PAYLOADS |
1398 | bool "rpm's bzip2 payloads option has been removed" | |
1399 | select BR2_LEGACY | |
1400 | select BR2_PACKAGE_BZIP2 | |
1401 | help | |
1402 | The bzip2 payloads option rely entirely on the dependant package bzip2. | |
1403 | So, you need to select it to enable this feature. | |
1404 | ||
1405 | config BR2_PACKAGE_RPM_XZ_PAYLOADS | |
1406 | bool "rpm's xz payloads option has been removed" | |
1407 | select BR2_LEGACY | |
1408 | select BR2_PACKAGE_XZ | |
1409 | help | |
1410 | The xz payloads option rely entirely on the dependant package xz. | |
1411 | So, you need to select it to enable this feature. | |
1412 | ||
6927bc91 GZ |
1413 | config BR2_PACKAGE_M4 |
1414 | bool "m4 target package removed" | |
1415 | select BR2_LEGACY | |
1416 | help | |
1417 | The m4 target package has been removed, it's been | |
1418 | deprecated for some time now. | |
1419 | ||
aa6ea7ab GZ |
1420 | config BR2_PACKAGE_FLEX_BINARY |
1421 | bool "flex binary in target option removed" | |
1422 | select BR2_LEGACY | |
1423 | help | |
1424 | The flex binary in the target option has been removed. | |
1425 | It's been deprecated for some time now and is essentially a | |
1426 | development tool which isn't very useful in the target. | |
1427 | ||
38dabc6e GZ |
1428 | config BR2_PACKAGE_BISON |
1429 | bool "bison target package removed" | |
1430 | select BR2_LEGACY | |
1431 | help | |
1432 | The bison target package has been removed, it's been | |
1433 | deprecated for some time now and is essentially a development | |
1434 | tool which isn't very useful in the target. | |
1435 | ||
7f9d4441 GZ |
1436 | config BR2_PACKAGE_GOB2 |
1437 | bool "gob2 target package removed" | |
1438 | select BR2_LEGACY | |
1439 | help | |
1440 | The gob2 target package has been removed, it's been | |
1441 | deprecated for some time now and was essentially useless | |
1442 | without a target toolchain. | |
1443 | ||
c2e3d0be GZ |
1444 | config BR2_PACKAGE_DISTCC |
1445 | bool "distcc target package removed" | |
1446 | select BR2_LEGACY | |
1447 | help | |
1448 | The distcc target package has been removed, it's been | |
1449 | deprecated for some time now and was essentially useless | |
1450 | without a target toolchain. | |
1451 | ||
b64cde60 GZ |
1452 | config BR2_PACKAGE_HASERL_VERSION_0_8_X |
1453 | bool "haserl 0.8.x version removed" | |
1454 | select BR2_LEGACY | |
1455 | help | |
1456 | The 0.8.x version option for haserl has been removed since it | |
1457 | has been deprecated for some time now. | |
1458 | You should be able to use the 0.9.x version without issues. | |
1459 | ||
0120d9f3 GZ |
1460 | config BR2_PACKAGE_STRONGSWAN_TOOLS |
1461 | bool "strongswan option has been removed" | |
1462 | select BR2_LEGACY | |
1463 | select BR2_PACKAGE_STRONGSWAN_PKI | |
1464 | select BR2_PACKAGE_STRONGSWAN_SCEP | |
1465 | help | |
1466 | The tools option has been removed upstream and the different tools | |
1467 | have been split between the pki and scep options, with others | |
1468 | deprecated. | |
1469 | ||
db78eb07 | 1470 | config BR2_PACKAGE_XBMC_ADDON_XVDR |
1c2a63ad | 1471 | bool "xbmc-addon-xvdr removed" |
db78eb07 | 1472 | select BR2_LEGACY |
db78eb07 | 1473 | help |
1c2a63ad AV |
1474 | According to the github project page: |
1475 | https://github.com/pipelka/xbmc-addon-xvdr | |
1476 | this package is discontinued. | |
db78eb07 | 1477 | |
b3df2a35 BK |
1478 | config BR2_PACKAGE_XBMC_PVR_ADDONS |
1479 | bool "xbmc options have been renamed" | |
1480 | select BR2_LEGACY | |
1481 | select BR2_PACKAGE_KODI_PVR_ADDONS | |
1482 | help | |
1483 | The XBMC media center project was renamed to Kodi entertainment center | |
1484 | ||
35784597 BK |
1485 | config BR2_PACKAGE_XBMC |
1486 | bool "xbmc options have been renamed" | |
1487 | select BR2_LEGACY | |
1488 | select BR2_PACKAGE_KODI | |
1489 | help | |
1490 | The XBMC media center project was renamed to Kodi entertainment center | |
1491 | ||
1492 | config BR2_PACKAGE_XBMC_ALSA_LIB | |
1493 | bool "xbmc options have been renamed" | |
1494 | select BR2_LEGACY | |
1495 | select BR2_PACKAGE_KODI_ALSA_LIB | |
1496 | help | |
1497 | The XBMC media center project was renamed to Kodi entertainment center | |
1498 | ||
1499 | config BR2_PACKAGE_XBMC_AVAHI | |
1500 | bool "xbmc options have been renamed" | |
1501 | select BR2_LEGACY | |
1502 | select BR2_PACKAGE_KODI_AVAHI | |
1503 | help | |
1504 | The XBMC media center project was renamed to Kodi entertainment center | |
1505 | ||
1506 | config BR2_PACKAGE_XBMC_DBUS | |
1507 | bool "xbmc options have been renamed" | |
1508 | select BR2_LEGACY | |
1509 | select BR2_PACKAGE_KODI_DBUS | |
1510 | help | |
1511 | The XBMC media center project was renamed to Kodi entertainment center | |
1512 | ||
1513 | config BR2_PACKAGE_XBMC_LIBBLURAY | |
1514 | bool "xbmc options have been renamed" | |
1515 | select BR2_LEGACY | |
1516 | select BR2_PACKAGE_KODI_LIBBLURAY | |
1517 | help | |
1518 | The XBMC media center project was renamed to Kodi entertainment center | |
1519 | ||
1520 | config BR2_PACKAGE_XBMC_GOOM | |
1521 | bool "xbmc options have been renamed" | |
1522 | select BR2_LEGACY | |
1523 | select BR2_PACKAGE_KODI_GOOM | |
1524 | help | |
1525 | The XBMC media center project was renamed to Kodi entertainment center | |
1526 | ||
1527 | config BR2_PACKAGE_XBMC_RSXS | |
1528 | bool "xbmc options have been renamed" | |
1529 | select BR2_LEGACY | |
1530 | select BR2_PACKAGE_KODI_RSXS | |
1531 | help | |
1532 | The XBMC media center project was renamed to Kodi entertainment center | |
1533 | ||
1534 | config BR2_PACKAGE_XBMC_LIBCEC | |
1535 | bool "xbmc options have been renamed" | |
1536 | select BR2_LEGACY | |
1537 | select BR2_PACKAGE_KODI_LIBCEC | |
1538 | help | |
1539 | The XBMC media center project was renamed to Kodi entertainment center | |
1540 | ||
1541 | config BR2_PACKAGE_XBMC_LIBMICROHTTPD | |
1542 | bool "xbmc options have been renamed" | |
1543 | select BR2_LEGACY | |
1544 | select BR2_PACKAGE_KODI_LIBMICROHTTPD | |
1545 | help | |
1546 | The XBMC media center project was renamed to Kodi entertainment center | |
1547 | ||
1548 | config BR2_PACKAGE_XBMC_LIBNFS | |
1549 | bool "xbmc options have been renamed" | |
1550 | select BR2_LEGACY | |
1551 | select BR2_PACKAGE_KODI_LIBNFS | |
1552 | help | |
1553 | The XBMC media center project was renamed to Kodi entertainment center | |
1554 | ||
1555 | config BR2_PACKAGE_XBMC_RTMPDUMP | |
1556 | bool "xbmc options have been renamed" | |
1557 | select BR2_LEGACY | |
1558 | select BR2_PACKAGE_KODI_RTMPDUMP | |
1559 | help | |
1560 | The XBMC media center project was renamed to Kodi entertainment center | |
1561 | ||
1562 | config BR2_PACKAGE_XBMC_LIBSHAIRPLAY | |
1563 | bool "xbmc options have been renamed" | |
1564 | select BR2_LEGACY | |
1565 | select BR2_PACKAGE_KODI_LIBSHAIRPLAY | |
1566 | help | |
1567 | The XBMC media center project was renamed to Kodi entertainment center | |
1568 | ||
1569 | config BR2_PACKAGE_XBMC_LIBSMBCLIENT | |
1570 | bool "xbmc options have been renamed" | |
1571 | select BR2_LEGACY | |
1572 | select BR2_PACKAGE_KODI_LIBSMBCLIENT | |
1573 | help | |
1574 | The XBMC media center project was renamed to Kodi entertainment center | |
1575 | ||
1576 | config BR2_PACKAGE_XBMC_LIBTHEORA | |
1577 | bool "xbmc options have been renamed" | |
1578 | select BR2_LEGACY | |
1579 | select BR2_PACKAGE_KODI_LIBTHEORA | |
1580 | help | |
1581 | The XBMC media center project was renamed to Kodi entertainment center | |
1582 | ||
1583 | config BR2_PACKAGE_XBMC_LIBUSB | |
1584 | bool "xbmc options have been renamed" | |
1585 | select BR2_LEGACY | |
1586 | select BR2_PACKAGE_KODI_LIBUSB | |
1587 | help | |
1588 | The XBMC media center project was renamed to Kodi entertainment center | |
1589 | ||
1590 | config BR2_PACKAGE_XBMC_LIBVA | |
1591 | bool "xbmc options have been renamed" | |
1592 | select BR2_LEGACY | |
1593 | select BR2_PACKAGE_KODI_LIBVA | |
1594 | help | |
1595 | The XBMC media center project was renamed to Kodi entertainment center | |
1596 | ||
1597 | config BR2_PACKAGE_XBMC_WAVPACK | |
1598 | bool "xbmc options have been renamed" | |
1599 | select BR2_LEGACY | |
1600 | select BR2_PACKAGE_KODI_WAVPACK | |
1601 | help | |
1602 | The XBMC media center project was renamed to Kodi entertainment center | |
1603 | ||
665e13c8 TP |
1604 | config BR2_PREFER_STATIC_LIB |
1605 | bool "static library option renamed" | |
a44b1c14 | 1606 | select BR2_LEGACY |
665e13c8 TP |
1607 | help |
1608 | The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It | |
1609 | highlights the fact that the option no longer "prefers" | |
1610 | static libraries, but "enforces" static libraries (i.e | |
1611 | shared libraries are completely unused). | |
1612 | ||
a44b1c14 SM |
1613 | Take care of updating the type of libraries you want under the |
1614 | "Build options" menu. | |
1615 | ||
35784597 | 1616 | ############################################################################### |
120136ee YM |
1617 | comment "Legacy options removed in 2014.11" |
1618 | ||
a52bad85 PK |
1619 | config BR2_x86_generic |
1620 | bool "x86 generic variant has been removed" | |
1621 | select BR2_LEGACY | |
1622 | help | |
1623 | The generic x86 CPU variant has been removed. Use another | |
a95e98c0 | 1624 | CPU variant instead. |
a52bad85 | 1625 | |
40e18f29 AL |
1626 | config BR2_GCC_VERSION_4_4_X |
1627 | bool "gcc 4.4.x has been removed" | |
1628 | select BR2_LEGACY | |
1629 | help | |
1630 | The 4.4.x version of gcc has been removed. Use a newer | |
1631 | version instead. | |
1632 | ||
43b78e72 AL |
1633 | config BR2_sparc_sparchfleon |
1634 | bool "sparchfleon CPU has been removed" | |
1635 | select BR2_LEGACY | |
1636 | help | |
1637 | The sparchfleon CPU was only supported in a patched gcc 4.4 | |
1638 | version. Its support has been removed in favor of the leon3 | |
1639 | CPU starting from gcc 4.8.x. | |
1640 | ||
1641 | config BR2_sparc_sparchfleonv8 | |
1642 | bool "sparchfleonv8 CPU has been removed" | |
1643 | select BR2_LEGACY | |
1644 | help | |
1645 | The sparchfleonv8 CPU was only supported in a patched gcc | |
1646 | 4.4 version. Its support has been removed in favor of the | |
1647 | leon3 CPU starting from gcc 4.8.x. | |
1648 | ||
1649 | config BR2_sparc_sparcsfleon | |
1650 | bool "sparcsfleon CPU has been removed" | |
1651 | select BR2_LEGACY | |
1652 | help | |
1653 | The sparcsfleon CPU was only supported in a patched gcc 4.4 | |
1654 | version. Its support has been removed in favor of the leon3 | |
1655 | CPU starting from gcc 4.8.x. | |
1656 | ||
1657 | config BR2_sparc_sparcsfleonv8 | |
1658 | bool "sparcsfleonv8 CPU has been removed" | |
1659 | select BR2_LEGACY | |
1660 | help | |
1661 | The sparcsfleonv8 CPU was only supported in a patched gcc | |
1662 | 4.4 version. Its support has been removed in favor of the | |
1663 | leon3 CPU starting from gcc 4.8.x. | |
1664 | ||
bfd87877 BK |
1665 | config BR2_PACKAGE_XLIB_LIBPCIACCESS |
1666 | bool "xlib-libpciaccess option has been renamed" | |
1667 | depends on BR2_PACKAGE_XORG7 | |
1668 | select BR2_LEGACY | |
1669 | select BR2_PACKAGE_LIBPCIACCESS | |
1670 | help | |
1671 | libpciaccess neither depends on X11 nor Xlib. Thus the | |
1672 | package has been renamed BR2_PACKAGE_LIBPCIACCESS | |
1673 | ||
b581bba9 YM |
1674 | config BR2_PACKAGE_LINUX_FIRMWARE_XC5000 |
1675 | bool "Xceive xc5000 option has been renamed" | |
758c5c7f | 1676 | select BR2_LEGACY |
b581bba9 YM |
1677 | select BR2_PACKAGE_LINUX_FIRMWARE_XCx000 |
1678 | help | |
1679 | The Xceive xc5000 option now also handles older firmwares from | |
1680 | Xceive (the xc4000 series), as well as new firmwares (the xc5000c) | |
1681 | from Cresta, who bought Xceive. | |
1682 | ||
dac546e9 YM |
1683 | config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 |
1684 | bool "Chelsio T4 option has been renamed" | |
758c5c7f | 1685 | select BR2_LEGACY |
dac546e9 YM |
1686 | select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 |
1687 | help | |
1688 | The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 | |
1689 | has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 | |
1690 | to better account for the fact that a T5 variant exists. | |
1691 | ||
120136ee YM |
1692 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 |
1693 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed" | |
758c5c7f | 1694 | select BR2_LEGACY |
120136ee YM |
1695 | help |
1696 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was | |
1697 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must | |
1698 | select it in: | |
1699 | Target packages -> Hardware handling -> | |
1700 | Firmware -> linux-firmware -> WiFi firmware -> | |
1701 | iwlwifi 3160/726x revision to use (revision 7) | |
1702 | ||
1703 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 | |
1704 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed" | |
758c5c7f | 1705 | select BR2_LEGACY |
120136ee YM |
1706 | help |
1707 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was | |
1708 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must | |
1709 | select it in: | |
1710 | Target packages -> Hardware handling -> | |
1711 | Firmware -> linux-firmware -> WiFi firmware -> | |
1712 | iwlwifi 3160/726x revision to use (revision 8) | |
1713 | ||
5cd1c4fe YM |
1714 | ############################################################################### |
1715 | comment "Legacy options removed in 2014.08" | |
1716 | ||
52fac6a2 GC |
1717 | config BR2_PACKAGE_LIBELF |
1718 | bool "libelf has been removed" | |
1719 | select BR2_PACKAGE_ELFUTILS | |
1720 | select BR2_LEGACY | |
1721 | help | |
1722 | The libelf package provided an old version of the libelf library | |
1723 | and is deprecated. The libelf library is now provided by the | |
1724 | elfutils package. | |
1725 | ||
dfae6f67 TDS |
1726 | config BR2_KERNEL_HEADERS_3_8 |
1727 | bool "kernel headers version 3.8.x are no longer supported" | |
a26aa968 | 1728 | select BR2_KERNEL_HEADERS_3_4 |
dfae6f67 TDS |
1729 | select BR2_LEGACY |
1730 | help | |
1731 | Version 3.8.x of the Linux kernel headers have been deprecated | |
1732 | for more than four buildroot releases and are now removed. | |
a26aa968 | 1733 | As an alternative, version 3.4.x of the headers have been |
dfae6f67 TDS |
1734 | automatically selected in your configuration. |
1735 | ||
187b4d68 TP |
1736 | config BR2_PACKAGE_GETTEXT_TOOLS |
1737 | bool "support for gettext-tools on target has been removed" | |
1738 | select BR2_LEGACY | |
1739 | help | |
1740 | The option to install the gettext utilities on the target | |
1741 | has been removed. This is not necessary as Buildroot is not | |
1742 | designed to provide a full development environment on the | |
1743 | target. gettext tools should be used on the build machine | |
1744 | instead. | |
1745 | ||
5cd1c4fe YM |
1746 | config BR2_PACKAGE_PROCPS |
1747 | bool "procps has been replaced by procps-ng" | |
1748 | select BR2_PACKAGE_PROCPS_NG | |
1749 | select BR2_LEGACY | |
1750 | help | |
1751 | The procps package has been replaced by the equivalent procps-ng. | |
1752 | ||
d4839ffc TP |
1753 | config BR2_BINUTILS_VERSION_2_20_1 |
1754 | bool "binutils 2.20.1 has been removed" | |
1755 | select BR2_LEGACY | |
1756 | help | |
1757 | The 2.20.1 version of binutils has been removed. Use a newer | |
1758 | version instead. | |
1759 | ||
1760 | config BR2_BINUTILS_VERSION_2_21 | |
1761 | bool "binutils 2.21 has been removed" | |
1762 | select BR2_LEGACY | |
1763 | help | |
1764 | The 2.21 version of binutils has been removed. Use a newer | |
1765 | version instead. | |
1766 | ||
1767 | config BR2_BINUTILS_VERSION_2_23_1 | |
1768 | bool "binutils 2.23.1 has been removed" | |
1769 | select BR2_LEGACY | |
1770 | help | |
1771 | The 2.23.1 version of binutils has been removed. Use a newer | |
1772 | version instead. | |
1773 | ||
506b964d TP |
1774 | config BR2_UCLIBC_VERSION_0_9_32 |
1775 | bool "uclibc 0.9.32 has been removed" | |
1776 | select BR2_LEGACY | |
1777 | help | |
1778 | The 0.9.32 version of uClibc has been removed. Use a newer | |
1779 | version instead. | |
1780 | ||
d10e0805 TP |
1781 | config BR2_GCC_VERSION_4_3_X |
1782 | bool "gcc 4.3.x has been removed" | |
1783 | select BR2_LEGACY | |
1784 | help | |
1785 | The 4.3.x version of gcc has been removed. Use a newer | |
1786 | version instead. | |
1787 | ||
1788 | config BR2_GCC_VERSION_4_6_X | |
1789 | bool "gcc 4.6.x has been removed" | |
1790 | select BR2_LEGACY | |
1791 | help | |
1792 | The 4.6.x version of gcc has been removed. Use a newer | |
1793 | version instead. | |
1794 | ||
02d85f65 TP |
1795 | config BR2_GDB_VERSION_7_4 |
1796 | bool "gdb 7.4 has been removed" | |
1797 | select BR2_LEGACY | |
1798 | help | |
1799 | The 7.4 version of gdb has been removed. Use a newer version | |
1800 | instead. | |
1801 | ||
1802 | config BR2_GDB_VERSION_7_5 | |
1803 | bool "gdb 7.5 has been removed" | |
1804 | select BR2_LEGACY | |
1805 | help | |
1806 | The 7.5 version of gdb has been removed. Use a newer version | |
1807 | instead. | |
1808 | ||
b18dca0d TP |
1809 | config BR2_BUSYBOX_VERSION_1_19_X |
1810 | bool "busybox version selection has been removed" | |
1811 | select BR2_LEGACY | |
1812 | help | |
1813 | The possibility of selecting the Busybox version has been | |
1814 | removed. Use the latest version provided by the Busybox | |
1815 | package instead. | |
1816 | ||
1817 | config BR2_BUSYBOX_VERSION_1_20_X | |
1818 | bool "busybox version selection has been removed" | |
1819 | select BR2_LEGACY | |
1820 | help | |
1821 | The possibility of selecting the Busybox version has been | |
1822 | removed. Use the latest version provided by the Busybox | |
1823 | package instead. | |
1824 | ||
1825 | config BR2_BUSYBOX_VERSION_1_21_X | |
1826 | bool "busybox version selection has been removed" | |
1827 | select BR2_LEGACY | |
1828 | help | |
1829 | The possibility of selecting the Busybox version has been | |
1830 | removed. Use the latest version provided by the Busybox | |
1831 | package instead. | |
1832 | ||
07ac0456 EG |
1833 | config BR2_PACKAGE_LIBV4L_DECODE_TM6000 |
1834 | bool "decode_tm6000" | |
1835 | select BR2_PACKAGE_LIBV4L_UTILS | |
1836 | select BR2_LEGACY | |
1837 | help | |
1838 | This libv4l option has been deprecated and replaced by a single | |
1839 | option to build all the libv4l utilities. | |
1840 | ||
1841 | config BR2_PACKAGE_LIBV4L_IR_KEYTABLE | |
1842 | bool "ir-keytable" | |
1843 | select BR2_PACKAGE_LIBV4L_UTILS | |
1844 | select BR2_LEGACY | |
1845 | help | |
1846 | This libv4l option has been deprecated and replaced by a single | |
1847 | option to build all the libv4l utilities. | |
1848 | ||
1849 | config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE | |
1850 | bool "v4l2-compliance" | |
1851 | select BR2_PACKAGE_LIBV4L_UTILS | |
1852 | select BR2_LEGACY | |
1853 | help | |
1854 | This libv4l option has been deprecated and replaced by a single | |
1855 | option to build all the libv4l utilities. | |
1856 | ||
1857 | config BR2_PACKAGE_LIBV4L_V4L2_CTL | |
1858 | bool "v4l2-ctl" | |
1859 | select BR2_PACKAGE_LIBV4L_UTILS | |
1860 | select BR2_LEGACY | |
1861 | help | |
1862 | This libv4l option has been deprecated and replaced by a single | |
1863 | option to build all the libv4l utilities. | |
1864 | ||
1865 | config BR2_PACKAGE_LIBV4L_V4L2_DBG | |
1866 | bool "v4l2-dbg" | |
1867 | select BR2_PACKAGE_LIBV4L_UTILS | |
1868 | select BR2_LEGACY | |
1869 | help | |
1870 | This libv4l option has been deprecated and replaced by a single | |
1871 | option to build all the libv4l utilities. | |
1872 | ||
fabcb119 | 1873 | ############################################################################### |
1874 | comment "Legacy options removed in 2014.05" | |
1875 | ||
4990a381 PS |
1876 | config BR2_PACKAGE_EVTEST_CAPTURE |
1877 | bool "evtest-capture support removed (dropped since evtest 1.31)" | |
1878 | select BR2_LEGACY | |
1879 | help | |
1880 | Support for evtest-capture has been removed (dropped from | |
1881 | evtest package since version 1.31), use evemu package | |
1882 | instead. | |
1883 | ||
47c2d1b4 TDS |
1884 | config BR2_KERNEL_HEADERS_3_6 |
1885 | bool "kernel headers version 3.6.x are no longer supported" | |
a26aa968 | 1886 | select BR2_KERNEL_HEADERS_3_4 |
47c2d1b4 TDS |
1887 | select BR2_LEGACY |
1888 | help | |
1889 | Version 3.6.x of the Linux kernel headers have been deprecated | |
1890 | for more than four buildroot releases and are now removed. | |
a26aa968 | 1891 | As an alternative, version 3.4.x of the headers have been |
47c2d1b4 TDS |
1892 | automatically selected in your configuration. |
1893 | ||
1894 | config BR2_KERNEL_HEADERS_3_7 | |
1895 | bool "kernel headers version 3.7.x are no longer supported" | |
a26aa968 | 1896 | select BR2_KERNEL_HEADERS_3_4 |
47c2d1b4 TDS |
1897 | select BR2_LEGACY |
1898 | help | |
1899 | Version 3.7.x of the Linux kernel headers have been deprecated | |
1900 | for more than four buildroot releases and are now removed. | |
a26aa968 | 1901 | As an alternative, version 3.4.x of the headers have been |
47c2d1b4 TDS |
1902 | automatically selected in your configuration. |
1903 | ||
947ca9e1 TDS |
1904 | config BR2_PACKAGE_VALA |
1905 | bool "vala target package has been removed" | |
1906 | select BR2_LEGACY | |
1907 | help | |
1908 | The 'vala' target package has been removed since it has been | |
1909 | deprecated for more than four buildroot releases. | |
1910 | Note: the host vala package still exists. | |
1911 | ||
d6a37917 YM |
1912 | config BR2_TARGET_TZ_ZONELIST |
1913 | default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != "" | |
1914 | ||
1915 | config BR2_PACKAGE_TZDATA_ZONELIST | |
1916 | string "tzdata: the timezone list option has been renamed" | |
1917 | help | |
1918 | The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to | |
1919 | BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration" | |
1920 | menu. You'll need to select BR2_TARGET_TZ_INFO. | |
1921 | ||
1922 | config BR2_PACKAGE_TZDATA_ZONELIST_WRAP | |
1923 | bool | |
1924 | default y if BR2_PACKAGE_TZDATA_ZONELIST != "" | |
1925 | select BR2_LEGACY | |
1926 | ||
c97aeb7e YM |
1927 | config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE |
1928 | bool "Lua command-line editing none has been renamed" | |
1929 | select BR2_LEGACY | |
1930 | help | |
1931 | The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been | |
1932 | renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select | |
1933 | it in the corresponding choice. | |
1934 | ||
1935 | config BR2_PACKAGE_LUA_INTERPRETER_READLINE | |
1936 | bool "Lua command-line editing using readline has been renamed" | |
1937 | select BR2_LEGACY | |
1938 | help | |
1939 | The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been | |
1940 | renamed to BR2_PACKAGE_LUA_READLINE. You will have to select | |
1941 | it in the corresponding choice. | |
1942 | ||
1943 | config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE | |
1944 | bool "Lua command-line editing using linenoise has been renamed" | |
1945 | select BR2_LEGACY | |
1946 | help | |
1947 | The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been | |
1948 | renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select | |
1949 | it in the corresponding choice. | |
1950 | ||
365ae61c YM |
1951 | config BR2_PACKAGE_DVB_APPS_UTILS |
1952 | bool "dvb-apps utilities now built by default" | |
1953 | select BR2_LEGACY | |
1954 | help | |
1955 | The dvb-apps utilities are now always built when the dvb-apps | |
1956 | package is selected. | |
1957 | ||
971e331c YM |
1958 | config BR2_KERNEL_HEADERS_SNAP |
1959 | bool "Local Linux snapshot support removed" | |
1960 | select BR2_LEGACY | |
1961 | help | |
1962 | Support for using a custom snapshot to install the Linux | |
1963 | kernel headers has been removed. | |
1964 | ||
fabcb119 | 1965 | config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV |
1966 | bool "/dev management by udev removed" | |
1967 | select BR2_LEGACY | |
1968 | help | |
1969 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 1970 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 1971 | |
2c66e442 | 1972 | Therefore, if you are not using 'systemd' as init system, you |
1973 | must choose 'Dynamic using eudev' in the '/dev management' | |
1974 | menu to get the same behaviour as in your old configuration. | |
1975 | ||
1976 | If you are using 'systemd', its internal implementation of | |
1977 | 'udev' will be used automatically. | |
fabcb119 | 1978 | |
1979 | You must also check the packages depending on 'udev' are still | |
1980 | selected. | |
1981 | ||
1982 | config BR2_PACKAGE_UDEV | |
1983 | bool "udev is now a virtual package" | |
1984 | select BR2_LEGACY | |
1985 | select BR2_PACKAGE_HAS_UDEV | |
1986 | help | |
1987 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 1988 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 1989 | |
1990 | Your old configuration refers to packages depending on 'udev', | |
1991 | either for build or at runtime. | |
1992 | ||
2c66e442 | 1993 | Check that a 'udev' provider is selected. If you are not using |
1994 | 'systemd' as init system, 'eudev' should be selected, which is | |
1995 | the case if '/dev management' is set to 'Dynamic using eudev'. | |
1996 | ||
1997 | If you are using 'systemd', its internal implementation of 'udev' | |
1998 | is used. | |
fabcb119 | 1999 | |
2000 | config BR2_PACKAGE_UDEV_RULES_GEN | |
2c66e442 | 2001 | bool "udev rules generation handled by provider" |
fabcb119 | 2002 | select BR2_LEGACY |
2c66e442 | 2003 | select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD |
2004 | select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD | |
fabcb119 | 2005 | help |
2006 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 2007 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 2008 | |
2c66e442 | 2009 | If you are not using 'systemd' as init system, udev rules |
2010 | generation will be handled by 'eudev'. Check that | |
2011 | '/dev management' is set to 'Dynamic using eudev' to get | |
2012 | the same behaviour as in your old configuration. | |
fabcb119 | 2013 | |
2c66e442 | 2014 | If you are using 'systemd', it internal implementation of 'udev' |
2015 | will generate the rules. | |
fabcb119 | 2016 | |
2017 | config BR2_PACKAGE_UDEV_ALL_EXTRAS | |
2018 | bool "udev extras removed" | |
2019 | select BR2_LEGACY | |
2020 | help | |
2021 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 2022 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 2023 | |
2024 | The option to enable the extra features of 'udev' (gudev, ...) | |
2025 | has been removed. These features are automatically enabled in | |
2026 | the 'udev' providers if the dependencies are selected. For | |
2027 | example, selecting 'libglib2' will trigger the build of gudev. | |
2028 | ||
5562be13 BK |
2029 | config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS |
2030 | bool "xlib-libpthread-stubs option has been renamed" | |
2031 | depends on BR2_PACKAGE_XORG7 | |
2032 | select BR2_LEGACY | |
2033 | select BR2_PACKAGE_LIBPTHREAD_STUBS | |
2034 | help | |
2035 | The pthread stubs neither depend on X11 nor Xlib. Thus the | |
2036 | package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS | |
2037 | ||
8b2e2357 | 2038 | ############################################################################### |
f169e5e1 YM |
2039 | comment "Legacy options removed in 2014.02" |
2040 | ||
e543f5a1 TP |
2041 | config BR2_sh2 |
2042 | bool "sh2 support removed" | |
758c5c7f | 2043 | select BR2_LEGACY |
e543f5a1 TP |
2044 | help |
2045 | Due to an inexistent user base and generally poor Linux | |
2046 | support, the support for the SH2 architecture was removed. | |
2047 | ||
2048 | config BR2_sh3 | |
2049 | bool "sh3 support removed" | |
758c5c7f | 2050 | select BR2_LEGACY |
e543f5a1 TP |
2051 | help |
2052 | Due to an inexistent user base and generally poor Linux | |
2053 | support, the support for the SH3 architecture was removed. | |
2054 | ||
2055 | config BR2_sh3eb | |
2056 | bool "sh3eb support removed" | |
758c5c7f | 2057 | select BR2_LEGACY |
e543f5a1 TP |
2058 | help |
2059 | Due to an inexistent user base and generally poor Linux | |
2060 | support, the support for the SH3eb architecture was removed. | |
2061 | ||
334dca61 TDS |
2062 | config BR2_KERNEL_HEADERS_3_1 |
2063 | bool "kernel headers version 3.1.x are no longer supported" | |
2064 | select BR2_KERNEL_HEADERS_3_2 | |
2065 | select BR2_LEGACY | |
2066 | help | |
2067 | Version 3.1.x of the Linux kernel headers have been deprecated | |
2068 | for more than four buildroot releases and are now removed. | |
2069 | As an alternative, version 3.2.x of the headers have been | |
2070 | automatically selected in your configuration. | |
2071 | ||
2072 | config BR2_KERNEL_HEADERS_3_3 | |
2073 | bool "kernel headers version 3.3.x are no longer supported" | |
a26aa968 | 2074 | select BR2_KERNEL_HEADERS_3_2 |
334dca61 TDS |
2075 | select BR2_LEGACY |
2076 | help | |
2077 | Version 3.3.x of the Linux kernel headers have been deprecated | |
2078 | for more than four buildroot releases and are now removed. | |
a26aa968 | 2079 | As an alternative, version 3.2.x of the headers have been |
334dca61 TDS |
2080 | automatically selected in your configuration. |
2081 | ||
2082 | config BR2_KERNEL_HEADERS_3_5 | |
2083 | bool "kernel headers version 3.5.x are no longer supported" | |
a26aa968 | 2084 | select BR2_KERNEL_HEADERS_3_4 |
334dca61 TDS |
2085 | select BR2_LEGACY |
2086 | help | |
2087 | Version 3.5.x of the Linux kernel headers have been deprecated | |
2088 | for more than four buildroot releases and are now removed. | |
a26aa968 | 2089 | As an alternative, version 3.4.x of the headers have been |
334dca61 TDS |
2090 | automatically selected in your configuration. |
2091 | ||
348060f9 TDS |
2092 | config BR2_GDB_VERSION_7_2 |
2093 | bool "gdb 7.2.x is no longer supported" | |
02d85f65 | 2094 | select BR2_GDB_VERSION_7_6 |
348060f9 TDS |
2095 | select BR2_LEGACY |
2096 | help | |
2097 | Version 7.2.x of gdb has been deprecated for more than four | |
2098 | buildroot releases and is now removed. As an alternative, gdb | |
2099 | 7.5.x has been automatically selected in your configuration. | |
2100 | ||
2101 | config BR2_GDB_VERSION_7_3 | |
2102 | bool "gdb 7.3.x is no longer supported" | |
02d85f65 | 2103 | select BR2_GDB_VERSION_7_6 |
348060f9 TDS |
2104 | select BR2_LEGACY |
2105 | help | |
2106 | Version 7.3.x of gdb has been deprecated for more than four | |
2107 | buildroot releases and is now removed. As an alternative, gdb | |
2108 | 7.5.x has been automatically selected in your configuration. | |
2109 | ||
831624c4 TDS |
2110 | config BR2_PACKAGE_CCACHE |
2111 | bool "ccache target package has been removed" | |
2112 | select BR2_LEGACY | |
2113 | help | |
2114 | The 'ccache' target package has been removed since it has been | |
2115 | deprecated for more than four buildroot releases. | |
2116 | Note: using ccache for speeding up builds is still supported. | |
2117 | ||
7164a326 TDS |
2118 | config BR2_HAVE_DOCUMENTATION |
2119 | bool "support for documentation on target has been removed" | |
2120 | select BR2_LEGACY | |
2121 | help | |
2122 | Support for documentation on target has been removed since it has | |
2123 | been deprecated for more than four buildroot releases. | |
2124 | ||
f75245d9 TDS |
2125 | config BR2_PACKAGE_AUTOMAKE |
2126 | bool "automake target package has been removed" | |
2127 | select BR2_LEGACY | |
2128 | help | |
2129 | The 'automake' target package has been removed since it has been | |
2130 | deprecated for more than four buildroot releases. | |
2131 | Note: the host automake still exists. | |
2132 | ||
e7af2ac6 TDS |
2133 | config BR2_PACKAGE_AUTOCONF |
2134 | bool "autoconf target package has been removed" | |
2135 | select BR2_LEGACY | |
2136 | help | |
2137 | The 'autoconf' target package has been removed since it has been | |
2138 | deprecated for more than four buildroot releases. | |
2139 | Note: the host autoconf still exists. | |
2140 | ||
ddf5424f TDS |
2141 | config BR2_PACKAGE_XSTROKE |
2142 | bool "xstroke has been removed" | |
2143 | select BR2_LEGACY | |
2144 | help | |
2145 | The 'xstroke' package has been removed since it has been | |
2146 | deprecated for more than four buildroot releases. | |
2147 | ||
0a077319 TDS |
2148 | config BR2_PACKAGE_LZMA |
2149 | bool "lzma target package has been removed" | |
2150 | select BR2_LEGACY | |
2151 | help | |
2152 | The 'lzma' target package has been removed since it has been | |
2153 | deprecated for more than four buildroot releases. | |
2154 | Note: generating lzma-compressed rootfs images is still supported. | |
2155 | ||
7ef5c3a5 TDS |
2156 | config BR2_PACKAGE_TTCP |
2157 | bool "ttcp has been removed" | |
2158 | select BR2_LEGACY | |
2159 | help | |
2160 | The 'ttcp' package has been removed since it has been | |
2161 | deprecated for more than four buildroot releases. | |
2162 | ||
8b2e2357 | 2163 | config BR2_PACKAGE_LIBNFC_LLCP |
93341046 | 2164 | bool "libnfc-llcp has been replaced by libllcp" |
8b2e2357 | 2165 | select BR2_LEGACY |
93341046 | 2166 | select BR2_PACKAGE_LIBLLCP |
8b2e2357 VOR |
2167 | help |
2168 | The 'libnfc-llcp' package has been removed since upstream renamed | |
93341046 TDS |
2169 | to 'libllcp'. We have added a new package for 'libllcp' and bumped |
2170 | the version at the same time. | |
8b2e2357 | 2171 | |
06c82128 MGUF |
2172 | config BR2_PACKAGE_MYSQL_CLIENT |
2173 | bool "MySQL client renamed to MySQL" | |
2174 | select BR2_LEGACY | |
2175 | select BR2_PACKAGE_MYSQL | |
2176 | help | |
2177 | The option has been renamed BR2_PACKAGE_MYSQL | |
2178 | ||
2f7a53ee TDS |
2179 | config BR2_PACKAGE_SQUASHFS3 |
2180 | bool "squashfs3 has been removed" | |
2181 | select BR2_LEGACY | |
2182 | select BR2_PACKAGE_SQUASHFS | |
2183 | help | |
2184 | The 'squashfs3' package has been removed since it has been | |
2185 | deprecated for more than four buildroot releases. Package | |
2186 | 'squashfs' (4) has been selected automatically as replacement. | |
2187 | ||
2188 | config BR2_TARGET_ROOTFS_SQUASHFS3 | |
2189 | bool "squashfs3 rootfs support has been removed" | |
2190 | select BR2_LEGACY | |
2191 | help | |
2192 | Together with the removal of the squashfs3 package, support | |
2193 | for squashfs3 root filesystems has been removed too. Squashfs | |
2194 | root filesystems will automatically use squashfs4 now. | |
2195 | ||
560fe85b AA |
2196 | config BR2_PACKAGE_NETKITBASE |
2197 | bool "netkitbase has been removed" | |
2198 | select BR2_LEGACY | |
2199 | help | |
2200 | The 'netkitbase' package has been removed since it has been | |
2201 | deprecated since 2012.11. This package provided 'inetd' | |
2202 | which is replaced by 'xinet' and 'ping' which is replaced by | |
2203 | 'busybox' or 'fping'. | |
2204 | ||
2205 | config BR2_PACKAGE_NETKITTELNET | |
2206 | bool "netkittelnet has been removed" | |
2207 | select BR2_LEGACY | |
2208 | help | |
2209 | The 'netkittelnet' package has been removed since it has | |
2210 | been deprecated since 2012.11. 'busybox' provides a telnet | |
2211 | client and should be used instead. | |
2212 | ||
63058f8b FP |
2213 | config BR2_PACKAGE_LUASQL |
2214 | bool "luasql has been replaced by luasql-sqlite3" | |
2215 | select BR2_PACKAGE_LUASQL_SQLITE3 | |
2216 | select BR2_LEGACY | |
2217 | help | |
2218 | The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3. | |
2219 | ||
a6c53478 FP |
2220 | config BR2_PACKAGE_LUACJSON |
2221 | bool "luacjson has been replaced by lua-cjson" | |
2222 | select BR2_PACKAGE_LUA_CJSON | |
2223 | select BR2_LEGACY | |
2224 | help | |
2225 | The option has been renamed BR2_PACKAGE_LUA_CJSON. | |
2226 | ||
94c72087 TP |
2227 | ############################################################################### |
2228 | comment "Legacy options removed in 2013.11" | |
2229 | ||
ff0f55e3 AV |
2230 | config BR2_PACKAGE_LVM2_DMSETUP_ONLY |
2231 | bool "lvm2's 'dmsetup only' option removed" | |
2232 | select BR2_LEGACY | |
2233 | help | |
2234 | The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which | |
2235 | led to problems with other packages that need the full lvm2 | |
2236 | suite. Therefore, the option has been replaced with the positive | |
2237 | BR2_PACKAGE_LVM2_STANDARD_INSTALL option. | |
2238 | ||
2239 | # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in | |
2240 | # in order to automatically propagate old configs | |
2241 | ||
1f9c04f6 TP |
2242 | config BR2_PACKAGE_QT_JAVASCRIPTCORE |
2243 | bool "qt javascriptcore option removed" | |
2244 | select BR2_LEGACY | |
2245 | help | |
2246 | The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to | |
2247 | force the activation or disabling of the JIT compiler in the | |
2248 | Qt Javascript interpreter. However, the JIT compiler is not | |
2249 | available for all architectures, so forcing its activation | |
2250 | does not always work. Moreover, Qt knows by itself for which | |
2251 | architectures JIT support is possible, and will | |
2252 | automatically enable it if possible. | |
2253 | ||
2254 | Therefore, this option was in fact useless, and causing | |
2255 | build problems when enabled on architectures for which the | |
2256 | JIT support was not available. It has been removed, and | |
2257 | there is no replacement: Qt will enable JIT at compile time | |
2258 | when possible. | |
2259 | ||
94c72087 TP |
2260 | config BR2_PACKAGE_MODULE_INIT_TOOLS |
2261 | bool "module-init-tools replaced by kmod" | |
2262 | select BR2_PACKAGE_KMOD | |
2263 | select BR2_PACKAGE_KMOD_TOOLS | |
0f401f91 | 2264 | select BR2_LEGACY |
94c72087 TP |
2265 | help |
2266 | The 'module-init-tools' package has been removed, since it | |
2267 | has been depracated upstream and replaced by 'kmod'. | |
2268 | ||
f2c2193b TDS |
2269 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL |
2270 | string "u-boot: the git repository URL option has been renamed" | |
2271 | help | |
2272 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has | |
2273 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL. | |
2274 | ||
2275 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP | |
2276 | bool | |
2277 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != "" | |
2278 | select BR2_LEGACY | |
2279 | ||
2280 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from | |
2281 | # boot/uboot/Config.in | |
2282 | ||
2283 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION | |
2284 | string "u-boot: the git repository version option has been renamed" | |
2285 | help | |
2286 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has | |
2287 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION. | |
2288 | ||
2289 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP | |
2290 | bool | |
2291 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" | |
2292 | select BR2_LEGACY | |
2293 | ||
2294 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from | |
2295 | # boot/uboot/Config.in | |
2296 | ||
63ecded2 TDS |
2297 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL |
2298 | string "linux: the git repository URL option has been renamed" | |
2299 | help | |
2300 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has | |
2301 | been renamed to | |
2302 | BR2_LINUX_KERNEL_CUSTOM_REPO_URL. | |
2303 | ||
2304 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP | |
2305 | bool | |
2306 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != "" | |
2307 | select BR2_LEGACY | |
2308 | ||
2309 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from | |
2310 | # linux/Config.in | |
2311 | ||
2312 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION | |
2313 | string "linux: the git repository version option has been renamed" | |
2314 | help | |
2315 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has | |
2316 | been renamed to | |
2317 | BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION. | |
2318 | ||
2319 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP | |
2320 | bool | |
2321 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" | |
2322 | select BR2_LEGACY | |
2323 | ||
2324 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from | |
2325 | # linux/Config.in | |
2326 | ||
67eaf705 YM |
2327 | ############################################################################### |
2328 | comment "Legacy options removed in 2013.08" | |
c6e4fcb1 | 2329 | |
1f3078b1 TP |
2330 | config BR2_ARM_OABI |
2331 | bool "ARM OABI support has been removed" | |
2332 | select BR2_LEGACY | |
2333 | help | |
2334 | The support for the ARM OABI was deprecated since a while, | |
2335 | and has been removed completely from Buildroot. It is also | |
2336 | deprecated in upstream gcc, since gcc 4.7. People should | |
2337 | switch to EABI instead, which should not be a problem as | |
2338 | long as you don't have pre-built OABI binaries in your | |
2339 | system that you can't recompile. | |
2340 | ||
c6e4fcb1 GZ |
2341 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK |
2342 | bool "dosfstools dosfsck renamed to fsck.fat" | |
2343 | select BR2_LEGACY | |
2344 | select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT | |
2345 | help | |
2346 | dosfsck was renamed upstream to fsck.fat for consistency. | |
2347 | ||
2348 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL | |
2349 | bool "dosfstools dosfslabel renamed to fatlabel" | |
2350 | select BR2_LEGACY | |
2351 | select BR2_PACKAGE_DOSFSTOOLS_FATLABEL | |
2352 | help | |
2353 | doslabel was renamed upstream to fatlabel for consistency. | |
2354 | ||
2355 | config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS | |
2356 | bool "dosfstools mkdosfs renamed to mkfs.fat" | |
2357 | select BR2_LEGACY | |
2358 | select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT | |
2359 | help | |
2360 | mkdosfs was renamed upstream to mkfs.fat for consistency. | |
2361 | ||
e21db000 TP |
2362 | config BR2_ELF2FLT |
2363 | bool "the elf2flt option has been renamed" | |
2364 | select BR2_LEGACY | |
2365 | help | |
2366 | The BR2_ELF2FLT option has been renamed to | |
2367 | BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to | |
2368 | the package infrastructure. | |
2369 | ||
d806005b TP |
2370 | config BR2_VFP_FLOAT |
2371 | bool "the ARM VFP floating point option has been renamed" | |
2372 | select BR2_LEGACY | |
2373 | help | |
2374 | Due to a major refactoring of the floating-point handling of | |
2375 | the ARM architecture support, the BR2_VFP_FLOAT option has | |
2376 | been replaced with a choice of options that allows to select | |
2377 | between various VFP versions/capabilities. | |
2378 | ||
ba8f82b0 SM |
2379 | config BR2_PACKAGE_GCC_TARGET |
2380 | bool "gcc on the target filesystem has been removed" | |
2381 | select BR2_LEGACY | |
2382 | help | |
2383 | The support for gcc in the target filesystem was deprecated | |
2384 | since a while, and has been removed completely from Buildroot. | |
2385 | See Buildroot's documentation for more explanations. | |
2386 | ||
2387 | config BR2_HAVE_DEVFILES | |
2388 | bool "development files in target filesystem has been removed" | |
2389 | select BR2_LEGACY | |
2390 | help | |
2391 | The installation of the development files in the target | |
2392 | filesystem was deprecated since a while, and has been removed | |
2393 | completely from Buildroot. | |
2394 | See Buildroot's documentation for more explanations. | |
2395 | ||
67eaf705 YM |
2396 | ############################################################################### |
2397 | comment "Legacy options removed in 2013.05" | |
860d37a2 YM |
2398 | |
2399 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192 | |
2400 | bool "Realtek 8192 replaced by Realtek 81xx" | |
2401 | select BR2_LEGACY | |
2402 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX | |
2403 | help | |
2404 | Now covers the whole Realtek 81xx familly: 8188/8192. | |
2405 | ||
2406 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712 | |
2407 | bool "Realtek 8712 replaced by Realtek 87xx" | |
2408 | select BR2_LEGACY | |
2409 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX | |
2410 | help | |
2411 | Now covers the whole Realtek 87xx familly: 8712/8723. | |
2412 | ||
67eaf705 YM |
2413 | ############################################################################### |
2414 | comment "Legacy options removed in 2013.02" | |
29b83f05 | 2415 | |
9474421d GZ |
2416 | config BR2_sa110 |
2417 | bool "sa110 ARM target switched to strongarm" | |
2418 | select BR2_LEGACY | |
2419 | select BR2_strongarm | |
2420 | help | |
2421 | The SA110 is the same as a generic StrongARM, it just differs | |
2422 | in speed, peripherals and cache. | |
2423 | ||
2424 | config BR2_sa1100 | |
2425 | bool "sa1100 ARM target switched to strongarm" | |
2426 | select BR2_LEGACY | |
2427 | select BR2_strongarm | |
2428 | help | |
2429 | The SA1100 is the same as a generic StrongARM, it just differs | |
2430 | in speed, peripherals and cache. | |
2431 | ||
29b83f05 TP |
2432 | config BR2_PACKAGE_GDISK |
2433 | bool "gdisk has been replaced by gptfdisk" | |
2434 | select BR2_LEGACY | |
2435 | select BR2_PACKAGE_GPTFDISK | |
2436 | help | |
2437 | The option has been renamed BR2_PACKAGE_GPTFDISK. | |
2438 | ||
2439 | config BR2_PACKAGE_GDISK_GDISK | |
2440 | bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk" | |
2441 | select BR2_LEGACY | |
2442 | select BR2_PACKAGE_GPTFDISK | |
2443 | select BR2_PACKAGE_GPTFDISK_GDISK | |
2444 | help | |
2445 | The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK. | |
2446 | ||
2447 | config BR2_PACKAGE_GDISK_SGDISK | |
2448 | bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk" | |
2449 | select BR2_LEGACY | |
2450 | select BR2_PACKAGE_GPTFDISK | |
2451 | select BR2_PACKAGE_GPTFDISK_SGDISK | |
2452 | help | |
2453 | The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK. | |
ebcfa987 | 2454 | |
a0b6faaa TP |
2455 | config BR2_PACKAGE_GDB_HOST |
2456 | bool "gdb for the host option has been renamed" | |
2457 | select BR2_PACKAGE_HOST_GDB | |
2458 | select BR2_LEGACY | |
2459 | help | |
2460 | Due to the conversion of gdb to the package infrastructure, | |
2461 | the BR2_PACKAGE_GDB_HOST option has been renamed | |
2462 | BR2_PACKAGE_HOST_GDB. | |
2463 | ||
76de0f80 CS |
2464 | config BR2_PACKAGE_DIRECTB_DITHER_RGB16 |
2465 | bool "DirectFB RGB16 dithering option has been renamed" | |
2466 | select BR2_PACKAGE_DIRECTFB_DITHER_RGB16 | |
2467 | select BR2_LEGACY | |
2468 | help | |
2469 | The option has been renamed | |
2470 | BR2_PACKAGE_DIRECTFB_DITHER_RGB16. | |
2471 | ||
2472 | config BR2_PACKAGE_DIRECTB_TESTS | |
2473 | bool "DirectFB Tests option has been renamed" | |
2474 | select BR2_PACKAGE_DIRECTFB_TESTS | |
2475 | select BR2_LEGACY | |
2476 | help | |
2477 | The option has been renamed | |
2478 | BR2_PACKAGE_DIRECTFB_TESTS. | |
2479 | ||
67eaf705 YM |
2480 | ############################################################################### |
2481 | comment "Legacy options removed in 2012.11" | |
2482 | ||
12ccc43f TP |
2483 | config BR2_PACKAGE_CUSTOMIZE |
2484 | bool "customize package has been removed" | |
2485 | select BR2_LEGACY | |
2486 | help | |
2487 | The 'customize' special package has been removed. Instead, | |
2488 | we recommend to create either your own packages, or use a | |
2489 | post-build script to customize your root filesystem. See | |
2490 | Buildroot's documentation for more details. | |
2cd9121c AVEM |
2491 | |
2492 | config BR2_PACKAGE_XSERVER_xorg | |
2493 | bool "X.org modular server" | |
2494 | select BR2_LEGACY | |
2495 | select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR | |
2496 | help | |
2497 | The option has been renamed | |
2498 | BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR. | |
2499 | ||
2500 | config BR2_PACKAGE_XSERVER_tinyx | |
2501 | bool "KDrive / TinyX server" | |
2502 | select BR2_LEGACY | |
2503 | select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE | |
2504 | help | |
2505 | The option has been renamed | |
2506 | BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE. | |
2507 | ||
2508 | config BR2_PACKAGE_PTHREAD_STUBS | |
2509 | bool "pthread-stubs option has been renamed" | |
2510 | select BR2_LEGACY | |
5562be13 | 2511 | select BR2_PACKAGE_LIBPTHREAD_STUBS |
2cd9121c AVEM |
2512 | help |
2513 | For consistency reason, the pthread-stubs package has been | |
5562be13 | 2514 | renamed to libpthread-stubs. |
2cd9121c | 2515 | |
67eaf705 YM |
2516 | ############################################################################### |
2517 | comment "Legacy options removed in 2012.08" | |
ebcfa987 | 2518 | |
26803e88 AVEM |
2519 | config BR2_PACKAGE_GETTEXT_STATIC |
2520 | bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB" | |
2521 | select BR2_LEGACY | |
2522 | help | |
2523 | To build a static gettext library, select BR2_PREFER_STATIC_LIB. | |
2524 | ||
2525 | ||
2526 | config BR2_PACKAGE_LIBINTL | |
2527 | bool "libintl" | |
2528 | select BR2_LEGACY | |
2529 | select BR2_PACKAGE_GETTEXT | |
2530 | help | |
2531 | libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now | |
2532 | only installs the library, not the executables. | |
2533 | ||
c430fab2 AVEM |
2534 | config BR2_PACKAGE_INPUT_TOOLS_EVTEST |
2535 | bool "input-tools evtest is now a separate package evtest" | |
2536 | select BR2_LEGACY | |
2537 | select BR2_PACKAGE_EVTEST | |
2538 | help | |
2539 | The evtest program from input-tools is now a separate package. | |
2540 | ||
57133825 SZ |
2541 | config BR2_BFIN_FDPIC |
2542 | bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC" | |
2543 | select BR2_BINFMT_FDPIC | |
2544 | select BR2_LEGACY | |
2545 | ||
2546 | config BR2_BFIN_FLAT | |
2547 | bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT" | |
2548 | select BR2_BINFMT_FLAT | |
2549 | select BR2_LEGACY | |
2550 | ||
a91a5c16 | 2551 | endmenu |
53903a15 AV |
2552 | |
2553 | endif # !SKIP_LEGACY |