]>
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 | |
d6109172 RM |
102 | This option is selected automatically when your old .config |
103 | uses an option that no longer exists in current buildroot. In | |
104 | that case, the build will fail. Look for config options which | |
105 | are selected in the menu below: they no longer exist and | |
106 | should be replaced by something else. | |
ebcfa987 AVEM |
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 "* " | |
0b39b14b YM |
138 | comment "Note: legacy options older than 5 years have been " |
139 | comment "removed, and configuration files that still have " | |
140 | comment "those options set, will fail to build, or run in " | |
141 | comment "unpredictable ways. " | |
a25e4a4c | 142 | comment "----------------------------------------------------" |
a91a5c16 | 143 | endif |
ebcfa987 | 144 | |
a2d44ec6 | 145 | ############################################################################### |
bf362600 | 146 | |
07044207 BK |
147 | comment "Legacy options removed in 2022.08" |
148 | ||
149 | config BR2_PACKAGE_PHP_EXT_WDDX | |
150 | bool "php wddx removed" | |
151 | select BR2_LEGACY | |
152 | help | |
153 | The WDDX extension was removed from php. | |
154 | ||
ec3ed4da FF |
155 | comment "Legacy options removed in 2022.05" |
156 | ||
bd40451b FF |
157 | config BR2_PACKAGE_KTAP |
158 | bool "ktap removed" | |
159 | select BR2_LEGACY | |
160 | help | |
161 | Package was removed because it is not compatible with latest | |
162 | kernels and is not maintained anymore (no release since 2013). | |
163 | ||
33492419 PK |
164 | config BR2_KERNEL_HEADERS_5_16 |
165 | bool "kernel headers version 5.16.x are no longer supported" | |
166 | select BR2_LEGACY | |
167 | help | |
168 | Version 5.16.x of the Linux kernel headers are no longer | |
169 | maintained upstream and are now removed. | |
170 | ||
5cc46a07 PK |
171 | config BR2_KERNEL_HEADERS_4_4 |
172 | bool "kernel headers version 4.4.x are no longer supported" | |
173 | select BR2_LEGACY | |
174 | help | |
175 | Version 4.4.x of the Linux kernel headers are no longer | |
176 | maintained upstream and are now removed. | |
177 | ||
6030cea9 TP |
178 | config BR2_BINUTILS_VERSION_2_32_X |
179 | bool "binutils 2.32.x has been removed" | |
180 | select BR2_LEGACY | |
181 | help | |
182 | binutils 2.32 has been removed, use a newer version. | |
183 | ||
04ea3d38 TP |
184 | config BR2_sh2a |
185 | bool "sh2a architecture support removed" | |
186 | select BR2_LEGACY | |
187 | help | |
188 | The SuperH 2A (SH2A) architecture was not maintained, and | |
189 | broken, so its support was dropped. | |
190 | ||
5706080f WB |
191 | config BR2_BINUTILS_VERSION_2_35_X |
192 | bool "binutils 2.35.x has been removed" | |
193 | select BR2_LEGACY | |
194 | help | |
195 | binutils 2.35 has been removed, use a newer version. | |
196 | ||
fc68bcf9 FF |
197 | config BR2_PACKAGE_BOOST_LAYOUT_TAGGED |
198 | bool "boost tagged layout removed" | |
199 | select BR2_LEGACY | |
200 | help | |
201 | Boost tagged layout isn't handled by some packages (e.g. botan | |
202 | or libcpprestsdk). | |
203 | ||
ec3ed4da FF |
204 | config BR2_PACKAGE_BOOST_LAYOUT_VERSIONED |
205 | bool "boost versioned layout removed" | |
206 | select BR2_LEGACY | |
207 | help | |
208 | Boost versioned layout isn't handled by a number of autotools | |
209 | and cmake packages (e.g. azmq, cc-tool, i2pd). | |
210 | ||
3db4d486 FF |
211 | comment "Legacy options removed in 2022.02" |
212 | ||
08d65d81 YM |
213 | config BR2_TARGET_ROOTFS_OCI_ENTRYPOINT_ARGS |
214 | string "entrypoint argumetns has been changed as command" | |
215 | help | |
216 | The OCI image BR2_TARGET_ROOTFS_OCI_ENTRYPOINT_ARGS option | |
217 | has been renamed to BR2_TARGET_ROOTFS_OCI_CMD to better | |
218 | reflect its relation to the actual 'command' of the OCI | |
219 | image. | |
220 | ||
221 | The new semantic for BR2_TARGET_ROOTFS_OCI_CMD is slightly | |
222 | differnt in relation to how it is interpreted, so be sure to | |
223 | review the help entry for it. | |
224 | ||
225 | Due to this breaking change, the old value here could not be | |
226 | set to the new variable. | |
227 | ||
228 | config BR2_TARGET_ROOTFS_OCI_ENTRYPOINT_ARGS_WRAP | |
229 | bool | |
230 | default y if BR2_TARGET_ROOTFS_OCI_ENTRYPOINT_ARGS != "" | |
231 | select BR2_LEGACY | |
232 | ||
8afb945b BK |
233 | config BR2_PACKAGE_LIBCURL_LIBNSS |
234 | bool "libcurl NSS removed" | |
235 | select BR2_LEGACY | |
236 | help | |
237 | NSS was deprecated in libcurl 7.82.0. | |
238 | ||
72021742 FF |
239 | config BR2_PACKAGE_WESTON_DEFAULT_FBDEV |
240 | bool "weston fbdev removed" | |
241 | select BR2_LEGACY | |
242 | help | |
243 | fbdev was deprecated in weston 10.0.0. | |
244 | ||
245 | config BR2_PACKAGE_WESTON_FBDEV | |
246 | bool "weston fbdev compositor removed" | |
247 | select BR2_LEGACY | |
248 | help | |
249 | fbdev compositor was deprecated in weston 10.0.0. | |
250 | ||
0e9565f8 FF |
251 | config BR2_PACKAGE_PYTHON_PYCLI |
252 | bool "python-pycli removed" | |
253 | select BR2_LEGACY | |
254 | help | |
255 | Package was removed because it is not compatible with python | |
256 | 3.10 and is not maintained anymore (no release since 2012). | |
257 | ||
3675131e JH |
258 | config BR2_PACKAGE_LINUX_TOOLS_BPFTOOL |
259 | bool "bpftool was moved" | |
260 | select BR2_LEGACY | |
261 | select BR2_PACKAGE_BPFTOOL | |
262 | help | |
263 | The linux-tools bpftool build has been moved out | |
264 | of the linux-tools package. | |
265 | ||
ea6a0a60 PK |
266 | config BR2_TARGET_UBOOT_NEEDS_PYTHON2 |
267 | bool "host-python 2.7 support for U-Boot was removed" | |
268 | select BR2_LEGACY | |
269 | help | |
270 | Option was removed together with python 2.7 support. | |
271 | ||
3aa07290 PS |
272 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIBMMS |
273 | bool "gst1-plugins-bad plugin libmms was removed" | |
274 | depends on BR2_USE_WCHAR | |
275 | depends on BR2_TOOLCHAIN_HAS_THREADS | |
276 | select BR2_LEGACY | |
277 | help | |
278 | This plugin was removed with gst1-plugins-bad-1.20.0. | |
279 | ||
71d5d8c1 PK |
280 | config BR2_PACKAGE_PYTHON_FUNCTOOLS32 |
281 | bool "python-functools32 removed" | |
282 | select BR2_LEGACY | |
283 | help | |
284 | Package was removed together with python 2.7 support. | |
285 | ||
cbd2900b PK |
286 | config BR2_PACKAGE_PYTHON_ENUM34 |
287 | bool "python-enum34 removed" | |
288 | select BR2_LEGACY | |
289 | help | |
290 | Package was removed together with python 2.7 support. | |
291 | ||
ef2c5ce5 PK |
292 | config BR2_PACKAGE_PYTHON_ENUM |
293 | bool "python-enum removed" | |
294 | select BR2_LEGACY | |
295 | help | |
296 | Package was removed together with python 2.7 support. | |
297 | ||
1e44c7bc PK |
298 | config BR2_PACKAGE_PYTHON_DIALOG |
299 | bool "python-dialog removed" | |
300 | select BR2_LEGACY | |
301 | help | |
302 | Package was removed together with python 2.7 support. | |
303 | ||
8d264a96 PK |
304 | config BR2_PACKAGE_PYTHON_CONFIGOBJ |
305 | bool "python-configobj removed" | |
306 | select BR2_LEGACY | |
307 | help | |
308 | Package was removed together with python 2.7 support. | |
309 | ||
ecee967c PK |
310 | config BR2_PACKAGE_PYTHON_YIELDFROM |
311 | bool "python-yieldfrom removed" | |
312 | select BR2_LEGACY | |
313 | help | |
314 | Package was removed together with python 2.7 support. | |
315 | ||
53b288cb PK |
316 | config BR2_PACKAGE_PYTHON_TYPING |
317 | bool "python-typing removed" | |
318 | select BR2_LEGACY | |
319 | help | |
320 | Package was removed together with python 2.7 support. | |
321 | ||
c2d0a365 PK |
322 | config BR2_PACKAGE_PYTHON_SUBPROCESS32 |
323 | bool "python-subprocess32 removed" | |
324 | select BR2_LEGACY | |
325 | help | |
326 | Package was removed together with python 2.7 support. | |
327 | ||
5fce56ae PK |
328 | config BR2_PACKAGE_PYTHON_SINGLEDISPATCH |
329 | bool "python-singledispatch removed" | |
330 | select BR2_LEGACY | |
331 | help | |
332 | Package was removed together with python 2.7 support. | |
333 | ||
6449cc73 PK |
334 | config BR2_PACKAGE_PYTHON_PYRO |
335 | bool "python-pyro removed" | |
336 | select BR2_LEGACY | |
337 | help | |
338 | Package was removed together with python 2.7 support. | |
339 | ||
aec1a69a PK |
340 | config BR2_PACKAGE_PYTHON_PYPCAP |
341 | bool "python-pypcap removed" | |
342 | select BR2_LEGACY | |
343 | help | |
344 | Package was removed together with python 2.7 support. | |
345 | ||
cc3eda10 PK |
346 | config BR2_PACKAGE_PYTHON_PATHLIB2 |
347 | bool "python-pathlib2 removed" | |
348 | select BR2_LEGACY | |
349 | help | |
350 | Package was removed together with python 2.7 support. | |
351 | ||
c8ab3034 PK |
352 | config BR2_PACKAGE_PYTHON_PAM |
353 | bool "python-pam removed" | |
354 | select BR2_LEGACY | |
355 | help | |
356 | Package was removed together with python 2.7 support. | |
357 | ||
67aad59d PK |
358 | config BR2_PACKAGE_PYTHON_NFC |
359 | bool "python-nfc removed" | |
360 | select BR2_LEGACY | |
361 | help | |
362 | Package was removed together with python 2.7 support. | |
363 | ||
82e096a2 PK |
364 | config BR2_PACKAGE_PYTHON_MAD |
365 | bool "python-mad removed" | |
366 | select BR2_LEGACY | |
367 | help | |
368 | Package was removed together with python 2.7 support. | |
369 | ||
e990a926 PK |
370 | config BR2_PACKAGE_PYTHON_IPADDRESS |
371 | bool "python-ipaddress removed" | |
372 | select BR2_LEGACY | |
373 | help | |
374 | Package was removed together with python 2.7 support. | |
375 | ||
da9233ce PK |
376 | config BR2_PACKAGE_PYTHON_IPADDR |
377 | bool "python-ipaddr removed" | |
378 | select BR2_LEGACY | |
379 | help | |
380 | Package was removed together with python 2.7 support. | |
381 | ||
6ad80649 PK |
382 | config BR2_PACKAGE_PYTHON_ID3 |
383 | bool "python-id3 removed" | |
384 | select BR2_LEGACY | |
385 | help | |
386 | Package was removed together with python 2.7 support. | |
387 | ||
c24cc667 PK |
388 | config BR2_PACKAGE_PYTHON_FUTURES |
389 | bool "python-futures removed" | |
390 | select BR2_LEGACY | |
391 | help | |
392 | Package was removed together with python 2.7 support. | |
393 | ||
ee520d5a PK |
394 | config BR2_PACKAGE_PYTHON_BACKPORTS_SSL_MATCH_HOSTNAME |
395 | bool "python-backports-ssl-match-hostname removed" | |
396 | select BR2_LEGACY | |
397 | help | |
398 | Package was removed together with python 2.7 support. | |
399 | ||
1727e80d PK |
400 | config BR2_PACKAGE_PYTHON_BACKPORTS_SHUTIL_GET_TERMINAL_SIZE |
401 | bool "python-backports-shutil-get-terminal-size removed" | |
402 | select BR2_LEGACY | |
403 | help | |
404 | Package was removed together with python 2.7 support. | |
405 | ||
532dd66e PK |
406 | config BR2_PACKAGE_PYTHON_BACKPORTS_ABC |
407 | bool "python-backports-abc removed" | |
408 | select BR2_LEGACY | |
409 | help | |
410 | Package was removed together with python 2.7 support. | |
411 | ||
30683958 PK |
412 | config BR2_PACKAGE_PYTHON |
413 | bool "python2.7 package removed" | |
414 | select BR2_LEGACY | |
415 | help | |
416 | Python 2.7 is EOL since April 2020 and has been removed. | |
417 | ||
418 | https://www.python.org/dev/peps/pep-0373/ | |
419 | ||
f22bff4a YM |
420 | config BR2_TARGET_UBOOT_ZYNQ_IMAGE |
421 | bool "Generate image for Xilinx Zynq" | |
422 | select BR2_LEGACY | |
423 | help | |
424 | Since 2016.1, U-Boot can natively generate the Zynq boot | |
425 | image, and so the Xilinx-specific format and tools have been | |
426 | removed. Should you still have an older U-Boot that needs | |
427 | this, a python3 version of the zynq-boot-bin.py script can be | |
428 | downloaded from the URL below and called from a post-build | |
429 | script. | |
430 | ||
431 | https://gist.githubusercontent.com/jameshilliard/e09235dfc6f96c11418a134e6ebf7890/raw/135b7480c405ae8a77a9db615e495f9a9f2d3242/zynq-boot-bin.py | |
432 | ||
75273241 PS |
433 | config BR2_PACKAGE_RPI_BT_FIRMWARE |
434 | bool "rpi-bt-firmware package was renamed" | |
435 | depends on BR2_arm || BR2_aarch64 | |
436 | select BR2_LEGACY | |
437 | select BR2_PACKAGE_BRCMFMAC_SDIO_FIRMWARE_RPI | |
438 | select BR2_PACKAGE_BRCMFMAC_SDIO_FIRMWARE_RPI_BT | |
439 | help | |
440 | Package rpi-bt-firmware was moved as option to | |
0ed2b747 | 441 | package brcmfmac_sdio-firmware-rpi. |
75273241 PS |
442 | |
443 | config BR2_PACKAGE_RPI_WIFI_FIRMWARE | |
444 | bool "rpi-wifi-firmware package was renamed" | |
445 | depends on BR2_arm || BR2_aarch64 | |
446 | select BR2_LEGACY | |
447 | select BR2_PACKAGE_BRCMFMAC_SDIO_FIRMWARE_RPI | |
448 | select BR2_PACKAGE_BRCMFMAC_SDIO_FIRMWARE_RPI_WIFI | |
449 | help | |
450 | Package rpi-wifi-firmware was moved as option to | |
0ed2b747 | 451 | package brcmfmac_sdio-firmware-rpi. |
75273241 | 452 | |
a607efc6 AD |
453 | config BR2_PACKAGE_HOST_GDB_PYTHON |
454 | bool "GDB Python2 support removed" | |
455 | select BR2_LEGACY | |
456 | help | |
457 | Python2 is deprecated and no longer supported. | |
458 | Please migrate to Python3. | |
459 | ||
bdb8cbb1 FF |
460 | config BR2_PACKAGE_GSTREAMER1_MM |
461 | bool "gstreamer1-mm package removed" | |
462 | select BR2_LEGACY | |
463 | help | |
464 | This package has been removed as it is not actively | |
465 | maintained anymore and does not support glibmm-2.68 API. | |
466 | ||
27eb296a PK |
467 | config BR2_KERNEL_HEADERS_5_14 |
468 | bool "kernel headers version 5.14.x are no longer supported" | |
469 | select BR2_LEGACY | |
470 | help | |
471 | Version 5.14.x of the Linux kernel headers are no longer | |
472 | maintained upstream and are now removed. | |
473 | ||
31848ba5 FF |
474 | config BR2_PACKAGE_PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE |
475 | bool "python-backports-functools-lru-cache package removed" | |
476 | select BR2_LEGACY | |
477 | help | |
478 | This package has been removed as python-setuptools-scm | |
479 | dropped support of python 2 since version 6.0.0. | |
480 | ||
329f71ed FF |
481 | config BR2_PACKAGE_CIVETWEB_WITH_LUA |
482 | bool "civetweb lua support option removed" | |
483 | select BR2_LEGACY | |
484 | help | |
485 | Lua support does not depend on a version of Lua bundled | |
486 | within the Civetweb sources anymore. Lua support is | |
487 | automatically enabled if an Lua interpreter (lua or luajit) | |
488 | is enabled in Buildroot. | |
489 | ||
c8324bf8 MR |
490 | config BR2_PACKAGE_SUNXI_MALI_MAINLINE_DRIVER |
491 | bool "sunxi-mali-mainline-driver package was renamed" | |
492 | select BR2_LEGACY | |
493 | select BR2_PACKAGE_SUNXI_MALI_UTGARD_DRIVER | |
494 | help | |
495 | Since the removal of the sunxi-mali-driver package, the | |
496 | sunxi-mali-mainline-driver package that coexisted became the | |
497 | only package to provide the Sunxi Mali driver. The "-mainline" | |
498 | suffix being undescriptive nowadays and before adding new | |
499 | packages bringing Mali support for other SoCs/GPU flavors, it | |
500 | is clearer to rename it SUNXI_MALI_UTGARD_DRIVER. | |
501 | ||
6a7a652b MR |
502 | config BR2_PACKAGE_SUNXI_MALI_MAINLINE |
503 | bool "sunxi-mali-mainline package was renamed" | |
504 | select BR2_LEGACY | |
505 | select BR2_PACKAGE_SUNXI_MALI_UTGARD | |
506 | help | |
507 | Since the removal of the sunxi-mali package, the | |
508 | sunxi-mali-mainline package that coexisted became the only | |
509 | package to provide Mali blobs. The "-mainline" suffix being | |
510 | undescriptive nowadays and before adding new packages bringing | |
511 | Mali support for other SoCs/GPU flavors, it is clearer to | |
512 | rename it SUNXI_MALI_UTGARD. | |
513 | ||
514 | config BR2_PACKAGE_SUNXI_MALI_MAINLINE_R6P2 | |
515 | bool "sunxi-mali-mainline-r6p2 was renamed" | |
516 | select BR2_LEGACY | |
517 | select BR2_PACKAGE_SUNXI_MALI_UTGARD_R6P2 | |
518 | help | |
519 | The sunxi-mali-mainline package has been renamed | |
520 | sunxi-mali-utgard, the suboptions of this package have also | |
521 | been renamed accordingly. | |
522 | ||
523 | config BR2_PACKAGE_SUNXI_MALI_MAINLINE_R8P1 | |
524 | bool "sunxi-mali-mainline-r8p1 was renamed" | |
525 | select BR2_LEGACY | |
526 | select BR2_PACKAGE_SUNXI_MALI_UTGARD_R8P1 | |
527 | help | |
528 | The sunxi-mali-mainline package has been renamed | |
529 | sunxi-mali-utgard, the suboptions of this package have also | |
530 | been renamed accordingly. | |
531 | ||
b4841d72 JH |
532 | config BR2_PACKAGE_QT5WEBKIT_EXAMPLES |
533 | bool "qt5webkit-examples removed" | |
534 | select BR2_LEGACY | |
535 | help | |
536 | The qt5webkit-examples package is unmaintained and has been | |
537 | removed. | |
538 | ||
b3c66481 TP |
539 | config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_GLIBC_BLEEDING_EDGE |
540 | bool "Bootlin riscv64 glibc bleeding-edge toolchain removed" | |
541 | select BR2_LEGACY | |
542 | help | |
543 | The RISC-V 64-bit LP64 Bootlin toolchains have been removed, | |
544 | in favor of RISC-V 64-bit LP64D toolchains. | |
545 | ||
d9290c6e AVEM |
546 | config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_MUSL_BLEEDING_EDGE |
547 | bool "Bootlin riscv64 musl bleeding-edge toolchain removed" | |
b3c66481 TP |
548 | select BR2_LEGACY |
549 | help | |
550 | The RISC-V 64-bit LP64 Bootlin toolchains have been removed, | |
551 | in favor of RISC-V 64-bit LP64D toolchains. | |
552 | ||
db0c2a28 | 553 | config BR2_PACKAGE_IPUTILS_TFTPD |
44cd33ba | 554 | bool "iputils tftpd option removed" |
db0c2a28 PV |
555 | select BR2_LEGACY |
556 | help | |
44cd33ba | 557 | tftpd has been removed from iputils since version 20211215. |
db0c2a28 PV |
558 | |
559 | config BR2_PACKAGE_IPUTILS_TRACEROUTE6 | |
44cd33ba | 560 | bool "iputils traceroute6 option removed" |
db0c2a28 PV |
561 | select BR2_LEGACY |
562 | help | |
44cd33ba FF |
563 | traceroute6 has been removed from iputils since version |
564 | 20211215. | |
db0c2a28 | 565 | |
3db4d486 FF |
566 | config BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE |
567 | bool "libmediaart 'none' backend removed" | |
568 | select BR2_LEGACY | |
569 | help | |
570 | 'none' backend has been removed from libmediaart since version | |
571 | 1.9.5. | |
572 | ||
e5a74af2 AZ |
573 | config BR2_PACKAGE_MPD_UPNP |
574 | bool "MPD UPnP configuration changed" | |
575 | select BR2_LEGACY | |
576 | help | |
577 | From version 0.23, MPD supports npupnp in addition to pupnp to | |
578 | provide database access to a UPnP media server. To preserve | |
579 | the existing functionality, the pupnp option has been selected | |
580 | in the MPD UPnP configuration. | |
581 | # Note: BR2_PACKAGE_MPD_UPNP is still referenced from package/mpd/Config.in | |
582 | ||
5045cab6 FF |
583 | comment "Legacy options removed in 2021.11" |
584 | ||
a610bf99 AD |
585 | config BR2_OPENJDK_VERSION_LTS |
586 | bool "OpenJDK LTS version was renamed to OpenJDK 11" | |
587 | select BR2_LEGACY | |
588 | select BR2_PACKAGE_OPENJDK_VERSION_11 | |
589 | help | |
590 | The LTS version option was renamed to OpenJDK 11 to make it | |
591 | clear what LTS version is. | |
592 | ||
593 | config BR2_OPENJDK_VERSION_LATEST | |
594 | bool "OpenJDK latest version (16.x) was removed" | |
595 | select BR2_LEGACY | |
596 | select BR2_PACKAGE_OPENJDK_VERSION_17 | |
597 | help | |
598 | OpenJDK 16.x is no longer mainted, so the option has been | |
599 | removed. Use OpenJDK 17.x instead. | |
600 | ||
c89e0cd9 FF |
601 | config BR2_PACKAGE_MPD_TIDAL |
602 | bool "mpd tidal option removed" | |
603 | select BR2_LEGACY | |
604 | help | |
605 | tidal has been removed from mpd since version 0.22.10. | |
606 | ||
b0080a09 JW |
607 | config BR2_PACKAGE_MROUTED_RSRR |
608 | bool "RSRR for RSVP removed in mrouted v4.4" | |
609 | select BR2_LEGACY | |
610 | help | |
611 | The RSRR configure option and feature was dropped in upstream | |
612 | mrouted as of v4.4. This feature was marked as experimental | |
613 | since its inception well before v4.0 and was never deployed | |
614 | in the field outside of academia. | |
615 | ||
1abeae18 RN |
616 | config BR2_BINUTILS_VERSION_CSKY |
617 | bool "binutils csky version removed" | |
618 | select BR2_LEGACY | |
619 | help | |
620 | Support for binutils csky version has been removed. | |
621 | ||
547d681b RN |
622 | config BR2_GCC_VERSION_CSKY |
623 | bool "gcc csky version removed" | |
624 | select BR2_LEGACY | |
625 | help | |
626 | Support for gcc csky version has been removed. | |
627 | ||
b7e8da22 AD |
628 | config BR2_PACKAGE_CANFESTIVAL |
629 | bool "canfestival package removed" | |
630 | select BR2_LEGACY | |
631 | help | |
632 | This package has been removed as it is unmaintained since | |
633 | November 2017. | |
634 | ||
41f982f7 AD |
635 | config BR2_PACKAGE_NMAP_NDIFF |
636 | bool "The ndiff utility has been removed" | |
637 | select BR2_LEGACY | |
638 | select BR2_PACKAGE_PYTHON_PYNDIFF | |
639 | help | |
640 | The ndiff utility provided by nmap requires python2 which is | |
641 | deprecated. The same functionality is provided by the python | |
642 | package pyndiff. | |
643 | ||
5b2a5cd3 TP |
644 | config BR2_GDB_VERSION_8_3 |
645 | bool "gdb version 8.3.x removed" | |
646 | select BR2_LEGACY | |
647 | help | |
648 | gdb 8.3.x has been removed, use a newer version instead. | |
649 | ||
24d608d2 AK |
650 | config BR2_PACKAGE_PYTHON_MELD3 |
651 | bool "python-meld3 package removed" | |
652 | select BR2_LEGACY | |
653 | help | |
654 | This package has been removed as it is unmaintained since | |
655 | April 2020. | |
656 | ||
89f20c1c ME |
657 | config BR2_PACKAGE_STRONGSWAN_EAP |
658 | bool "strongswan EAP plugins now individually selectable" | |
659 | select BR2_LEGACY | |
660 | help | |
661 | The various EAP plugins are now individually selectable. | |
662 | ||
5045cab6 FF |
663 | config BR2_PACKAGE_GNURADIO_PAGER |
664 | bool "gnuradio gr-flex support removed" | |
665 | select BR2_LEGACY | |
666 | help | |
667 | gr-flex has been removed from gnuradio since version 3.8.0.0. | |
668 | ||
144acc31 PK |
669 | config BR2_KERNEL_HEADERS_5_11 |
670 | bool "kernel headers version 5.11.x are no longer supported" | |
671 | select BR2_LEGACY | |
672 | help | |
673 | Version 5.11.x of the Linux kernel headers are no longer | |
674 | maintained upstream and are now removed. | |
675 | ||
676 | config BR2_KERNEL_HEADERS_5_12 | |
677 | bool "kernel headers version 5.12.x are no longer supported" | |
678 | select BR2_LEGACY | |
679 | help | |
680 | Version 5.12.x of the Linux kernel headers are no longer | |
681 | maintained upstream and are now removed. | |
682 | ||
e444baf8 PK |
683 | config BR2_KERNEL_HEADERS_5_13 |
684 | bool "kernel headers version 5.13.x are no longer supported" | |
685 | select BR2_LEGACY | |
686 | help | |
687 | Version 5.13.x of the Linux kernel headers are no longer | |
688 | maintained upstream and are now removed. | |
689 | ||
1fe532c0 | 690 | comment "Legacy options removed in 2021.08" |
49eb73ca | 691 | |
b68810e7 KM |
692 | config BR2_TARGET_GRUB2_BUILTIN_MODULES |
693 | string "the grub2 builtin modules has been renamed" | |
694 | help | |
695 | This option has been split to separate the builtin modules | |
696 | between BR2_TARGET_GRUB2_BUILTIN_MODULES_PC and | |
697 | BR2_TARGET_GRUB2_BUILTIN_MODULES_EFI. | |
698 | ||
699 | config BR2_TARGET_GRUB2_BUILTIN_MODULES_WRAP | |
700 | bool | |
701 | default y if BR2_TARGET_GRUB2_BUILTIN_MODULES != "" | |
702 | select BR2_LEGACY | |
703 | ||
704 | config BR2_TARGET_GRUB2_BUILTIN_CONFIG | |
705 | string "the grub2 builtin configuration has been renamed" | |
706 | help | |
707 | This option has been split to separate the builtin | |
708 | configuration between BR2_TARGET_GRUB2_BUILTIN_CONFIG_PC and | |
709 | BR2_TARGET_GRUB2_BUILTIN_CONFIG_EFI. | |
710 | ||
711 | config BR2_TARGET_GRUB2_BUILTIN_CONFIG_WRAP | |
712 | bool | |
713 | default y if BR2_TARGET_GRUB2_BUILTIN_CONFIG != "" | |
714 | select BR2_LEGACY | |
715 | ||
e24c5731 FF |
716 | config BR2_PACKAGE_LIBMCRYPT |
717 | bool "libmcrypt package was removed" | |
718 | select BR2_LEGACY | |
719 | help | |
720 | This package has been removed as "the last update to libmcrypt | |
721 | was in 2007, despite years of unmerged patches. These facts | |
722 | have led security experts to declare mcrypt abandonware and | |
723 | discourage its use in new development" (extract from | |
724 | https://en.wikipedia.org/wiki/Mcrypt). | |
725 | ||
66eb8cd0 FF |
726 | config BR2_PACKAGE_MCRYPT |
727 | bool "mcrypt package was removed" | |
728 | select BR2_LEGACY | |
729 | help | |
730 | This package has been removed as "the last update to libmcrypt | |
731 | was in 2007, despite years of unmerged patches. These facts | |
732 | have led security experts to declare mcrypt abandonware and | |
733 | discourage its use in new development" (extract from | |
734 | https://en.wikipedia.org/wiki/Mcrypt). | |
735 | ||
c1e6b82e FF |
736 | config BR2_PACKAGE_PHP_EXT_MCRYPT |
737 | bool "PHP mcrypt extension removed" | |
738 | select BR2_LEGACY | |
739 | help | |
740 | mcrypt has been removed from php since version 7.2.0. | |
741 | ||
594f5218 TP |
742 | config BR2_BINUTILS_VERSION_2_34_X |
743 | bool "binutils 2.34 has been removed" | |
744 | select BR2_LEGACY | |
745 | help | |
746 | binutils 2.34 has been removed, use a newer version. | |
747 | ||
4a3f27b1 BK |
748 | config BR2_PACKAGE_LIBSOIL |
749 | bool "libsoil package removed" | |
750 | select BR2_LEGACY | |
751 | help | |
752 | The libsoil package was removed. All packages needing | |
753 | libsoil removed the dependency. | |
754 | ||
e9a37dd1 AVEM |
755 | config BR2_PACKAGE_CLAPACK |
756 | bool "cblas/clapack package removed" | |
757 | select BR2_LEGACY | |
758 | select BR2_PACKAGE_LAPACK if BR2_PACKAGE_LAPACK_ARCH_SUPPORTS && BR2_TOOLCHAIN_HAS_FORTRAN | |
759 | help | |
760 | The clapack package was removed. LAPACK no longer generates a | |
761 | C version. Use lapack instead. This does require a Fortran | |
762 | compiler however. | |
763 | ||
6418d31b AD |
764 | config BR2_PACKAGE_SPIDERMONKEY |
765 | bool "spidermonkey package removed" | |
766 | select BR2_LEGACY | |
767 | help | |
768 | The spidermonkey package was removed. The only package that | |
769 | depended on spidermonkey was polkit. The spidermonkey | |
770 | dependency is replaced with duktape. | |
771 | ||
80c1135d BK |
772 | config BR2_PACKAGE_KODI_LIBVA |
773 | bool "kodi option to add libva support removed" | |
774 | select BR2_LEGACY | |
775 | help | |
776 | Kodi still has support for libva if the package is enabled but | |
777 | the kodi-specific dependencies limiting libva support to non- | |
778 | OPENGLES platforms were removed including this option. | |
779 | ||
0c7e30b4 FF |
780 | config BR2_PACKAGE_PYTHON_COHERENCE |
781 | bool "python-coherence package removed" | |
782 | select BR2_LEGACY | |
783 | help | |
784 | This package has been removed as it can't be built anymore due | |
785 | to python-twisted being now incompatible with python 2. | |
786 | ||
469c11c5 AD |
787 | config BR2_PACKAGE_PHP_EXT_XMLRPC |
788 | bool "PHP XMLRPC extension removed" | |
789 | select BR2_LEGACY | |
790 | help | |
791 | The XMLRPC php extension was removed. | |
792 | See: https://wiki.php.net/rfc/unbundle_xmlprc | |
793 | ||
531b2a10 RN |
794 | config BR2_GCC_VERSION_8_X |
795 | bool "gcc 8.x support removed" | |
796 | select BR2_LEGACY | |
797 | help | |
798 | Support for gcc version 8.x has been removed. The current | |
799 | default version (10.x or later) has been selected instead. | |
800 | ||
1fe532c0 FF |
801 | comment "Legacy options removed in 2021.05" |
802 | ||
eb251b30 FF |
803 | config BR2_PACKAGE_UDISKS_LVM2 |
804 | bool "udisks lvm2 support removed" | |
805 | select BR2_LEGACY | |
806 | help | |
807 | The lvm2 support was removed because udisks < 2.7.0 still | |
808 | depends on lvm2 application library, which was removed | |
0a2942af | 809 | in lvm2. |
eb251b30 FF |
810 | |
811 | config BR2_PACKAGE_LVM2_APP_LIBRARY | |
812 | bool "lvm2 application library removed" | |
813 | select BR2_LEGACY | |
814 | help | |
815 | The lvm2 application library was removed upstream. | |
816 | ||
0b10ed0d FF |
817 | config BR2_PACKAGE_LVM2_LVMETAD |
818 | bool "lvm2 lvmetad removed" | |
819 | select BR2_LEGACY | |
820 | help | |
821 | The lvm2 lvmetad was removed upstream. | |
822 | ||
ac0cb278 FF |
823 | config BR2_PACKAGE_MONKEY |
824 | bool "monkey package removed" | |
825 | select BR2_LEGACY | |
826 | help | |
827 | This package has been removed as it has not seen any release | |
828 | since 2016 and because TLS is broken on master. | |
829 | ||
35af2bb8 CS |
830 | config BR2_PACKAGE_DOCKER_CONTAINERD |
831 | bool "docker-containerd package was renamed to containerd" | |
832 | select BR2_LEGACY | |
833 | select BR2_PACKAGE_CONTAINERD | |
834 | help | |
835 | The containerd project is now independent from Docker. | |
836 | The package was renamed to containerd accordingly. | |
837 | ||
281e5af3 | 838 | config BR2_PACKAGE_IOSTAT |
104df75e | 839 | bool "iostat package removed" |
281e5af3 FF |
840 | select BR2_LEGACY |
841 | help | |
842 | This package has been removed, use sysstat instead. | |
843 | ||
fdb6fc2b FF |
844 | config BR2_PACKAGE_SCONESERVER_HTTP_SCONESITE_IMAGE |
845 | bool "sconeserver http::sconesite::image removed" | |
0c4c7675 | 846 | select BR2_LEGACY |
fdb6fc2b FF |
847 | help |
848 | Sconeserver cannot be built with ImageMagick - it uses the | |
849 | "transofrm" function which is removed from public API. | |
850 | ||
553a1235 BK |
851 | config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_EVDEV |
852 | bool "KDrive/TinyX evdev input driver removed" | |
853 | select BR2_LEGACY | |
854 | help | |
855 | The evdev input driver in KDrive was removed. | |
856 | ||
eea0da85 BK |
857 | config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_KBD |
858 | bool "KDrive/TinyX kbd input driver removed" | |
859 | select BR2_LEGACY | |
860 | help | |
861 | The kbd input driver in KDrive was removed. | |
862 | ||
863 | config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_MOUSE | |
864 | bool "KDrive/TinyX mouse input driver removed" | |
865 | select BR2_LEGACY | |
866 | help | |
867 | The mouse input driver in KDrive was removed. | |
868 | ||
15a2f9b8 BK |
869 | config BR2_PACKAGE_MESA3D_OSMESA_CLASSIC |
870 | bool "mesa OSMesa (classic) option removed" | |
871 | select BR2_LEGACY | |
872 | select BR2_PACKAGE_MESA3D_OSMESA_GALLIUM | |
873 | help | |
874 | The OSMesa "classic" library option was removed upstream. | |
875 | Only the Gallium-based implementation remains. | |
876 | ||
877 | config BR2_PACKAGE_MESA3D_DRI_DRIVER_SWRAST | |
878 | bool "mesa DRI swrast driver removed" | |
879 | select BR2_LEGACY | |
880 | select BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_SWRAST | |
881 | help | |
882 | The DRI swrast driver was removed upstream. | |
883 | Only the Gallium-based implementation remains. | |
884 | ||
49eb73ca BK |
885 | config BR2_PACKAGE_KODI_SCREENSAVER_CRYSTALMORPH |
886 | bool "kodi-screensaver-crystalmorph removed" | |
887 | select BR2_LEGACY | |
888 | help | |
889 | The package received its last updates in 2017, is not part | |
890 | of the official Kodi github repo and its build is broken | |
891 | with Kodi 19.x, so it was removed. | |
892 | ||
a3f58a74 FF |
893 | comment "Legacy options removed in 2021.02" |
894 | ||
8d93a300 FF |
895 | config BR2_PACKAGE_MPD_AUDIOFILE |
896 | bool "mpd audiofile support removed" | |
897 | select BR2_LEGACY | |
898 | help | |
899 | The audiofile support was removed from mpd as audiofile is | |
900 | affected by multiple CVEs and is not maintained anymore (no | |
901 | release since 2013). | |
902 | ||
903 | config BR2_PACKAGE_AUDIOFILE | |
904 | bool "audiofile package removed" | |
905 | select BR2_LEGACY | |
906 | help | |
907 | The audiofile package was removed as it is affected by | |
908 | multiple CVEs and is not maintained anymore (no release since | |
909 | 2013). | |
910 | ||
ade5f503 TP |
911 | config BR2_BINUTILS_VERSION_2_33_X |
912 | bool "binutils 2.33.x has been removed" | |
913 | select BR2_LEGACY | |
914 | help | |
915 | binutils 2.33.x has been removed, use a newer version. | |
916 | ||
eddc9df9 FF |
917 | config BR2_PACKAGE_LIBUPNP18 |
918 | bool "libupnp18 package removed" | |
919 | select BR2_LEGACY | |
920 | select BR2_PACKAGE_LIBUPNP | |
921 | help | |
922 | Version 1.8.x of libupnp (i.e. libupnp18) has been removed | |
923 | because it will never be fixed against CallStranger a.k.a. | |
924 | CVE-2020-12695. The libupnp package (which has been updated to | |
925 | version 1.14.x) has been selected instead. | |
926 | ||
906a4668 FF |
927 | config BR2_PACKAGE_BOA |
928 | bool "boa package removed" | |
929 | select BR2_LEGACY | |
930 | help | |
931 | The boa package was removed as it is affected by multiple | |
932 | CVEs and is not maintained anymore (no release since 2005). | |
933 | ||
8d398f7f RN |
934 | config BR2_PACKAGE_LINUX_FIRMWARE_IMX_SDMA |
935 | bool "imx sdma firmware is provided by firmware-imx" | |
936 | select BR2_LEGACY | |
7e2d5aa2 | 937 | select BR2_PACKAGE_FREESCALE_IMX |
8d398f7f RN |
938 | select BR2_PACKAGE_FIRMWARE_IMX |
939 | help | |
940 | linux-firmware provide the same firmware as firmware-imx. | |
941 | We prefer using firmware-imx as the only provider. | |
942 | ||
86c779ee TP |
943 | config BR2_GDB_VERSION_8_2 |
944 | bool "gdb 8.2.x has been removed" | |
945 | select BR2_LEGACY | |
946 | help | |
947 | gdb 8.2 support has been removed, you can use a newer | |
948 | version such as 8.3 or more recent. | |
949 | ||
ad50d8a4 | 950 | config BR2_PACKAGE_HOST_RCW |
af6cbe07 | 951 | bool "rcw package was renamed to qoriq-rcw" |
ad50d8a4 CH |
952 | select BR2_PACKAGE_HOST_QORIQ_RCW |
953 | select BR2_LEGACY | |
954 | help | |
955 | The rcw package was specific to the QorIQ platform, so it has | |
956 | been renamed to qoriq-rcw, to leave room for other *-rcw | |
957 | packages for other platforms. | |
958 | ||
54584d23 PV |
959 | config BR2_KERNEL_HEADERS_5_9 |
960 | bool "kernel headers version 5.9.x are no longer supported" | |
961 | select BR2_LEGACY | |
962 | help | |
963 | Version 5.9.x of the Linux kernel headers are no longer | |
964 | maintained upstream and are now removed. | |
965 | ||
b829a60b PK |
966 | config BR2_KERNEL_HEADERS_5_8 |
967 | bool "kernel headers version 5.8.x are no longer supported" | |
968 | select BR2_LEGACY | |
969 | help | |
970 | Version 5.8.x of the Linux kernel headers are no longer | |
971 | maintained upstream and are now removed. | |
972 | ||
f33009bb MW |
973 | config BR2_powerpc_601 |
974 | bool "PowerPC 601 support removed" | |
975 | select BR2_LEGACY | |
976 | help | |
977 | The support for the PowerPC 601 processors has been removed. | |
978 | ||
814bfc5e AD |
979 | config BR2_PACKAGE_TI_SGX_LIBGBM |
980 | bool "ti-sgx-libgbm support removed" | |
981 | select BR2_LEGACY | |
982 | help | |
983 | TI has merged the ti-sgx-libgbm package with the ti-sgx-um | |
984 | package | |
985 | ||
a3f58a74 FF |
986 | config BR2_PACKAGE_IPSEC_TOOLS |
987 | bool "ipsec-tools package was removed" | |
988 | select BR2_LEGACY | |
989 | help | |
990 | This package has been removed as it has security issues and | |
991 | has been abandoned since 2014. | |
992 | ||
ed33cecb | 993 | comment "Legacy options removed in 2020.11" |
2a58ba89 | 994 | |
5b3e7213 OD |
995 | config BR2_PACKAGE_GPSD_FIXED_PORT_SPEED |
996 | bool "compile with fixed serial port speed" | |
997 | select BR2_LEGACY | |
998 | help | |
999 | Since gpsd 3.20, GPSD_FIXED_PORT_SPEED is replaced | |
1000 | by runtime option --speed. | |
1001 | ||
1002 | config BR2_PACKAGE_GPSD_RECONFIGURE | |
1003 | bool "allow gpsd to change device settings" | |
1004 | select BR2_LEGACY | |
1005 | help | |
1006 | Since gpsd 3.21, GPSD_RECONFIGURE is replaced | |
1007 | by runtime option --passive. | |
1008 | ||
1009 | config BR2_PACKAGE_GPSD_CONTROLSEND | |
1010 | bool "allow gpsctl/gpsmon to change device settings" | |
1011 | select BR2_LEGACY | |
1012 | help | |
1013 | Option removed in gpsd 3.21 | |
1014 | ||
c87c0b33 FF |
1015 | config BR2_PACKAGE_OPENCV |
1016 | bool "opencv package was removed" | |
1017 | select BR2_LEGACY | |
1018 | help | |
1019 | This package has been removed, use opencv3 instead. | |
1020 | ||
6fe9994c FF |
1021 | config BR2_PACKAGE_LIBCROCO |
1022 | bool "libcroco package was removed" | |
1023 | select BR2_LEGACY | |
1024 | help | |
1025 | This package has been removed as it is affected by several | |
1026 | security issues such as CVE-2020-12825 which will never be | |
1027 | fixed as libcroco has been archived. | |
1028 | ||
34f464e7 PS |
1029 | config BR2_PACKAGE_BELLAGIO |
1030 | bool "bellagio package was removed" | |
1031 | select BR2_LEGACY | |
1032 | help | |
1033 | This package has been removed as it is not maintained anymore | |
1034 | (no release since 2011). | |
1035 | ||
e46fe9a6 MN |
1036 | config BR2_PACKAGE_SYSTEMD_JOURNAL_GATEWAY |
1037 | bool "systemd-journal-gatewayd now in systemd-journal-remote" | |
1038 | select BR2_LEGACY | |
1039 | select BR2_PACKAGE_SYSTEMD_JOURNAL_REMOTE | |
1040 | help | |
1041 | All system journal remote programs are now enabled using | |
1042 | BR2_PACKAGE_SYSTEMD_JOURNAL_REMOTE. | |
1043 | ||
db2b6841 MW |
1044 | config BR2_TARGET_UBOOT_BOOT_SCRIPT |
1045 | bool "u-boot script generation was moved" | |
1046 | select BR2_LEGACY | |
1047 | select BR2_PACKAGE_HOST_UBOOT_TOOLS | |
1048 | select BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT | |
1049 | help | |
1050 | Migrated U-Boot script generation to uboot-tools | |
1051 | ||
1052 | # Note: BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE is still referenced from | |
1053 | # package/uboot-tools/Config.in | |
1054 | config BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE | |
1055 | string "The uboot script source string has been renamed" | |
1056 | depends on BR2_TARGET_UBOOT_BOOT_SCRIPT | |
1057 | help | |
1058 | Migrated U-Boot script generation to uboot-tools. | |
1059 | New option is named | |
1060 | BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT_SOURCE | |
1061 | ||
78559d69 MW |
1062 | config BR2_TARGET_UBOOT_ENVIMAGE |
1063 | bool "u-boot env generation was moved" | |
1064 | select BR2_LEGACY | |
1065 | select BR2_PACKAGE_HOST_UBOOT_TOOLS | |
1066 | select BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE | |
1067 | help | |
1068 | Migrated U-Boot env generation to uboot-tools | |
1069 | ||
1070 | # Note: BR2_TARGET_UBOOT_ENVIMAGE_SOURCE is still referenced from | |
1071 | # package/uboot-tools/Config.in | |
1072 | config BR2_TARGET_UBOOT_ENVIMAGE_SOURCE | |
1073 | string "The uboot env image source string has been renamed" | |
1074 | depends on BR2_TARGET_UBOOT_ENVIMAGE | |
1075 | help | |
1076 | Migrated U-Boot env generation to uboot-tools. | |
1077 | New option is named | |
1078 | BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_SOURCE | |
1079 | ||
1080 | # Note: BR2_TARGET_UBOOT_ENVIMAGE_SIZE is still referenced from | |
1081 | # package/uboot-tools/Config.in | |
1082 | config BR2_TARGET_UBOOT_ENVIMAGE_SIZE | |
1083 | string "The uboot env image size string has been renamed" | |
1084 | depends on BR2_TARGET_UBOOT_ENVIMAGE | |
1085 | help | |
1086 | Migrated U-Boot env generation to uboot-tools. | |
1087 | New option is named BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_SIZE | |
1088 | ||
1089 | config BR2_TARGET_UBOOT_ENVIMAGE_REDUNDANT | |
1090 | bool "u-boot env generation was moved" | |
1091 | depends on BR2_TARGET_UBOOT_ENVIMAGE | |
1092 | select BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_REDUNDANT | |
1093 | help | |
1094 | Migrated U-Boot env generation to uboot-tools | |
1095 | ||
3a92ce24 FF |
1096 | config BR2_PACKAGE_KISMET_CLIENT |
1097 | bool "kismet client support was removed" | |
1098 | select BR2_LEGACY | |
1099 | help | |
1100 | Kismet client support was removed since version 2019-04-R1. | |
1101 | ||
1102 | config BR2_PACKAGE_KISMET_DRONE | |
1103 | bool "kismet drone support was removed" | |
1104 | select BR2_LEGACY | |
1105 | help | |
1106 | Kismet drone support was removed since version 2019-04-R1. | |
1107 | ||
4504bf37 RN |
1108 | config BR2_GCC_VERSION_7_X |
1109 | bool "gcc 7.x support removed" | |
1110 | select BR2_LEGACY | |
1111 | help | |
1112 | Support for gcc version 7.x has been removed. The current | |
1113 | default version (9.x or later) has been selected instead. | |
1114 | ||
0e4be467 | 1115 | config BR2_PACKAGE_GST1_VALIDATE |
60b4e7a5 PS |
1116 | bool "gst1-validate was moved to gst1-devtools" |
1117 | select BR2_PACKAGE_GST1_DEVTOOLS | |
1118 | select BR2_LEGACY | |
1119 | help | |
1120 | This package has been removed, use gst1-devtools instead. | |
1121 | ||
f8a02bba PS |
1122 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_YADIF |
1123 | bool "gst1-plugins-bad yadif plugin was removed" | |
1124 | select BR2_LEGACY | |
1125 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_DEINTERLACE | |
1126 | help | |
1127 | This plugin was removed with gst1-plugins-bad-1.18.0, the | |
1128 | same functionality has moved to gst1-plugins-good | |
1129 | deinterlace plugin (method=yadif). | |
1130 | ||
8f639ffb FF |
1131 | config BR2_PACKAGE_GQVIEW |
1132 | bool "gqview package was removed" | |
1133 | select BR2_LEGACY | |
1134 | help | |
1135 | This package has been removed as it is not maintained anymore | |
1136 | (no release since 2006). | |
1137 | ||
3ef7160b GB |
1138 | config BR2_PACKAGE_WESTON_IMX |
1139 | bool "weston-imx package was removed" | |
1140 | select BR2_LEGACY | |
1141 | help | |
1142 | This package has been removed, use weston instead. | |
1143 | ||
6f593733 PK |
1144 | config BR2_KERNEL_HEADERS_5_7 |
1145 | bool "kernel headers version 5.7.x are no longer supported" | |
1146 | select BR2_LEGACY | |
1147 | help | |
1148 | Version 5.7.x of the Linux kernel headers are no longer | |
1149 | maintained upstream and are now removed. | |
1150 | ||
fa25e783 FF |
1151 | config BR2_PACKAGE_TINYHTTPD |
1152 | bool "tinyhttpd package removed" | |
1153 | select BR2_LEGACY | |
1154 | help | |
1155 | The tinyhttpd package was removed as it is affected by | |
1156 | CVE-2002-1819 and is not maintained anymore (no release since | |
1157 | 2001). | |
1158 | ||
e6dc4f18 BK |
1159 | config BR2_PACKAGE_XSERVER_XORG_SERVER_AIGLX |
1160 | bool "X.org Enable AIGLX Extension" | |
1161 | select BR2_LEGACY | |
1162 | help | |
1163 | AIGLX Extension was removed in X.org X server version 1.19.0 | |
1164 | ||
10097869 BK |
1165 | config BR2_PACKAGE_AMD_CATALYST |
1166 | bool "amd-catalyst" | |
1167 | select BR2_LEGACY | |
1168 | help | |
1169 | Current X.org server is incompatible with this driver. | |
1170 | ||
6b2355fe BK |
1171 | config BR2_PACKAGE_NVIDIA_TEGRA23 |
1172 | bool "nvidia-tegra23 package removed" | |
1173 | select BR2_LEGACY | |
1174 | help | |
1175 | Current X.org server is incompatible with this driver. | |
1176 | ||
a57e123b TP |
1177 | config BR2_GDB_VERSION_8_1 |
1178 | bool "gdb 8.1.x has been removed" | |
1179 | select BR2_LEGACY | |
1180 | help | |
1181 | The 8.1.x version of gdb has been removed. Use a newer | |
1182 | version instead. | |
1183 | ||
2a58ba89 BK |
1184 | comment "Legacy options removed in 2020.08" |
1185 | ||
d87e114a TP |
1186 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AMD64 |
1187 | bool "toolchain-external-codesourcery-amd64 removed" | |
1188 | select BR2_LEGACY | |
1189 | help | |
1190 | The CodeSourcery toolchain for AMD64, in version 2016.11 was | |
1191 | dropped, due to it using a too old gcc 6.2.0 compiler which | |
1192 | caused issues compiling a number of recent packages | |
1193 | (e.g. Boost). CodeSourcery has stopped making newer versions | |
1194 | of this toolchain publicly available, so it was not possible | |
1195 | to update it. | |
1196 | ||
6699d69d PK |
1197 | config BR2_KERNEL_HEADERS_5_6 |
1198 | bool "kernel headers version 5.6.x are no longer supported" | |
1199 | select BR2_LEGACY | |
1200 | help | |
1201 | Version 5.6.x of the Linux kernel headers are no longer | |
1202 | maintained upstream and are now removed. | |
1203 | ||
04c5da18 PK |
1204 | config BR2_KERNEL_HEADERS_5_5 |
1205 | bool "kernel headers version 5.5.x are no longer supported" | |
1206 | select BR2_LEGACY | |
1207 | help | |
1208 | Version 5.5.x of the Linux kernel headers are no longer | |
1209 | maintained upstream and are now removed. | |
1210 | ||
25129ad3 RN |
1211 | config BR2_BINUTILS_VERSION_2_31_X |
1212 | bool "binutils version 2.31.1 support removed" | |
1213 | select BR2_LEGACY | |
1214 | help | |
1215 | Support for binutils version 2.31.1 has been removed. The | |
1216 | current default version (2.33.1 or later) has been selected | |
1217 | instead. | |
1218 | ||
2a58ba89 BK |
1219 | config BR2_PACKAGE_KODI_PERIPHERAL_STEAMCONTROLLER |
1220 | bool "kodi-peripheral-steamcontroller package was removed" | |
1221 | select BR2_LEGACY | |
1222 | help | |
1223 | This package is broken. | |
1224 | ||
cf2074db RN |
1225 | comment "Legacy options removed in 2020.05" |
1226 | ||
90dd7803 YM |
1227 | config BR2_PACKAGE_WIRINGPI |
1228 | bool "wiringpi package removed" | |
1229 | select BR2_LEGACY | |
1230 | help | |
1231 | The author of wiringpi has deprecated the package, and | |
1232 | completely removed the git tree that was serving the | |
1233 | sources, with this message: | |
1234 | Please look for alternatives for wiringPi | |
1235 | ||
7ef76ed3 RN |
1236 | config BR2_PACKAGE_PYTHON_PYCRYPTO |
1237 | bool "python-pycrypto package removed" | |
1238 | select BR2_LEGACY | |
1239 | help | |
1240 | This package has been removed, use python-pycryptodomex | |
1241 | instead. | |
1242 | ||
64a2bfcf SH |
1243 | config BR2_PACKAGE_MTDEV2TUIO |
1244 | bool "mtdev2tuio package removed" | |
1245 | select BR2_LEGACY | |
1246 | help | |
1247 | The mtdev2tuio package was removed as it breaks the builds | |
1248 | every now and then and is not maintained upstream. | |
1249 | ||
94cb0cc7 FF |
1250 | config BR2_PACKAGE_EZXML |
1251 | bool "ezxml package removed" | |
1252 | select BR2_LEGACY | |
1253 | help | |
1254 | The ezXML package was removed as it is affected by several | |
1255 | CVEs and is not maintained anymore (no release since 2006). | |
1256 | ||
01192342 FF |
1257 | config BR2_PACKAGE_COLLECTD_LVM |
1258 | bool "lvm support in collectd was removed" | |
1259 | select BR2_LEGACY | |
1260 | help | |
1261 | collectd removed LVM plugin, liblvm2app has been deprecated | |
1262 | ||
9de136ff JH |
1263 | config BR2_PACKAGE_PYTHON_PYASN |
1264 | bool "duplicate python-pyasn1 package removed" | |
1265 | select BR2_LEGACY | |
1266 | select BR2_PACKAGE_PYTHON_PYASN1 | |
1267 | help | |
1268 | This package was a duplicate of python-pyasn1. | |
1269 | ||
5511c07f JH |
1270 | config BR2_PACKAGE_PYTHON_PYASN_MODULES |
1271 | bool "duplicate python-pyasn1-modules package removed" | |
1272 | select BR2_LEGACY | |
1273 | select BR2_PACKAGE_PYTHON_PYASN1_MODULES | |
1274 | help | |
1275 | This package was a duplicate of python-pyasn1-modules. | |
1276 | ||
b47da10b BS |
1277 | config BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_10K_QCA6174 |
1278 | bool "duplicate QCA6174 firmware symbol removed" | |
1279 | select BR2_LEGACY | |
1280 | select BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_6174 | |
1281 | help | |
1282 | This config symbol duplicates existing symbol for QCA6174 | |
1283 | firmware. | |
1284 | ||
fcae317d PS |
1285 | config BR2_PACKAGE_QT5CANVAS3D |
1286 | bool "qt5canvas3d was removed" | |
1287 | select BR2_LEGACY | |
1288 | help | |
1289 | This Qt5 module was removed by the upstream Qt project since | |
1290 | Qt 5.13, so the corresponding Buildroot package was removed | |
1291 | as well. | |
1292 | ||
2ba1fb9b BK |
1293 | config BR2_PACKAGE_KODI_LIBTHEORA |
1294 | bool "libtheora support in Kodi was removed" | |
1295 | select BR2_LEGACY | |
1296 | help | |
1297 | Kodi does not need libtheora | |
1298 | ||
662bc3c8 BB |
1299 | config BR2_PACKAGE_CEGUI06 |
1300 | bool "BR2_PACKAGE_CEGUI06 was renamed" | |
1301 | select BR2_PACKAGE_CEGUI | |
1302 | select BR2_LEGACY | |
1303 | help | |
1304 | The BR2_PACKAGE_CEGUI06 config symbol was renamed to | |
1305 | BR2_PACKAGE_CEGUI. | |
1306 | ||
cf2074db RN |
1307 | config BR2_GCC_VERSION_5_X |
1308 | bool "gcc 5.x support removed" | |
1309 | select BR2_LEGACY | |
1310 | help | |
1311 | Support for gcc version 5.x has been removed. The current | |
1312 | default version (8.x or later) has been selected instead. | |
1313 | ||
c4293d0e TP |
1314 | comment "Legacy options removed in 2020.02" |
1315 | ||
fcb7b2a5 JH |
1316 | config BR2_PACKAGE_JAMVM |
1317 | bool "jamvm removed" | |
1318 | select BR2_LEGACY | |
1319 | help | |
1320 | JamVM has not had a release since 2014 and is unmaintained. | |
1321 | ||
d8fd0b24 JH |
1322 | config BR2_PACKAGE_CLASSPATH |
1323 | bool "classpath removed" | |
1324 | select BR2_LEGACY | |
1325 | help | |
1326 | GNU Classpath package was removed. The last upstream | |
1327 | release was in 2012 and there hasn't been a commit | |
1328 | since 2016. | |
1329 | ||
a69df083 PK |
1330 | config BR2_PACKAGE_QT5_VERSION_5_6 |
1331 | bool "qt 5.6 support removed" | |
1332 | select BR2_LEGACY | |
1333 | help | |
1334 | Support for Qt 5.6 is EOL and has been removed. The current | |
1335 | version (5.12 or later) has been selected instead. | |
1336 | ||
2a057339 BS |
1337 | config BR2_PACKAGE_CURL |
1338 | bool "BR2_PACKAGE_CURL was renamed" | |
1339 | select BR2_PACKAGE_LIBCURL_CURL | |
1340 | select BR2_LEGACY | |
1341 | help | |
1342 | The BR2_PACKAGE_CURL config symbol was renamed to | |
1343 | BR2_PACKAGE_LIBCURL_CURL. | |
1344 | ||
fb49c7a2 PK |
1345 | config BR2_PACKAGE_GSTREAMER |
1346 | bool "gstreamer-0.10 removed" | |
1347 | select BR2_LEGACY | |
1348 | help | |
1349 | Gstreamer-0.10 package was removed. It has been deprecated | |
1350 | upstream since 2012, and is missing a lot of features and | |
1351 | fixes compared to gstreamer-1.x. | |
1352 | ||
602e9680 PK |
1353 | config BR2_PACKAGE_NVIDIA_TEGRA23_BINARIES_GSTREAMER_PLUGINS |
1354 | bool "nvidia-tegra23 binaries gstreamer 0.10.x support removed" | |
1355 | select BR2_LEGACY | |
1356 | help | |
1357 | Gstreamer 0.10.x is no longer available in Buildroot, so | |
1358 | neither is the support in nvidia-tegra23 binaries. | |
1359 | ||
1360 | config BR2_PACKAGE_NVIDIA_TEGRA23_BINARIES_NV_SAMPLE_APPS | |
1361 | bool "nvidia-tegra23 binaries sample apps removed" | |
1362 | select BR2_LEGACY | |
1363 | help | |
1364 | Gstreamer 0.10.x is no longer available in Buildroot, so | |
1365 | neither is the support in nvidia-tegra23 binaries. | |
1366 | ||
545ffdc1 PK |
1367 | config BR2_PACKAGE_FREERDP_GSTREAMER |
1368 | bool "freerdp gstreamer 0.10.x support removed" | |
1369 | select BR2_LEGACY | |
1370 | help | |
1371 | Gstreamer 0.10.x is no longer available in Buildroot, so | |
1372 | neither is the support in freerdp. | |
1373 | ||
ceb23e88 PK |
1374 | config BR2_PACKAGE_OPENCV3_WITH_GSTREAMER |
1375 | bool "opencv3 gstreamer 0.10.x support removed" | |
1376 | select BR2_LEGACY | |
1377 | help | |
1378 | Gstreamer 0.10.x is no longer available in Buildroot, so | |
1379 | neither is the support in opencv3. | |
1380 | ||
0220ad8b PK |
1381 | config BR2_PACKAGE_OPENCV_WITH_GSTREAMER |
1382 | bool "opencv gstreamer 0.10.x support removed" | |
1383 | select BR2_LEGACY | |
1384 | help | |
1385 | Gstreamer 0.10.x is no longer available in Buildroot, so | |
1386 | neither is the support in opencv. | |
1387 | ||
d89fa735 PK |
1388 | config BR2_PACKAGE_LIBPLAYER |
1389 | bool "libplayer package was removed" | |
1390 | select BR2_LEGACY | |
1391 | help | |
1392 | The libplayer package was removed. The latest release is | |
1393 | from 2010 and none of the backends are available in | |
1394 | Buildroot any more. | |
1395 | ||
f424b8af RN |
1396 | config BR2_GCC_VERSION_OR1K |
1397 | bool "gcc 5.x fork for or1k has been removed" | |
1398 | select BR2_LEGACY | |
1399 | help | |
1400 | Support for gcc 5.x for or1k has been removed. The current | |
1401 | default version (9.x or later) has been selected instead. | |
1402 | ||
61a81333 FF |
1403 | config BR2_PACKAGE_BLUEZ_UTILS |
1404 | bool "bluez-utils was removed" | |
1405 | select BR2_LEGACY | |
9a46a016 FF |
1406 | select BR2_PACKAGE_BLUEZ5_UTILS if BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 \ |
1407 | && BR2_TOOLCHAIN_HAS_SYNC_4 | |
61a81333 FF |
1408 | help |
1409 | The bluez-utils (BlueZ 4.x) package was removed as it is | |
1410 | deprecated since a long time. As an alternative, the | |
1411 | bluez5-utils (BlueZ 5.x) has been automatically selected in | |
1412 | your configuration. | |
1413 | ||
c4cf3e62 MC |
1414 | config BR2_PACKAGE_GADGETFS_TEST |
1415 | bool "gadgetfs-test was removed" | |
1416 | select BR2_LEGACY | |
1417 | help | |
1418 | The gadgetfs-test package was removed. Gadgetfs has been | |
1419 | deprecated in favour of functionfs. Consider using | |
1420 | gadget-tool (gt) instead. | |
1421 | ||
ce142f29 MC |
1422 | config BR2_PACKAGE_FIS |
1423 | bool "fis was removed" | |
1424 | select BR2_LEGACY | |
1425 | help | |
1426 | The fis package was removed. | |
1427 | ||
10e19b75 AD |
1428 | config BR2_PACKAGE_REFPOLICY_POLICY_VERSION |
1429 | string "refpolicy policy version" | |
1430 | help | |
1431 | The refpolicy policy version option has been moved to the | |
1432 | libsepol package. | |
1433 | ||
1434 | config BR2_PACKAGE_REFPOLICY_POLICY_VERSION_WRAP | |
1435 | bool | |
1436 | default y if BR2_PACKAGE_REFPOLICY_POLICY_VERSION != "" | |
1437 | select BR2_LEGACY | |
1438 | ||
b32efbdb FF |
1439 | config BR2_PACKAGE_CELT051 |
1440 | bool "celt051 package was removed" | |
1441 | select BR2_LEGACY | |
1442 | select BR2_PACKAGE_OPUS | |
1443 | help | |
1444 | The celt051 package was removed as it is now obsolete since | |
1445 | the CELT codec has been merged into the IETF Opus codec. As | |
1446 | a result, the opus package has been automatically selected | |
1447 | in your configuration. | |
1448 | ||
a269c49f PK |
1449 | config BR2_PACKAGE_WIREGUARD |
1450 | bool "wireguard package renamed" | |
1451 | depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10 | |
1452 | select BR2_LEGACY | |
de591c5c | 1453 | select BR2_PACKAGE_WIREGUARD_LINUX_COMPAT if BR2_LINUX_KERNEL |
a269c49f PK |
1454 | select BR2_PACKAGE_WIREGUARD_TOOLS |
1455 | help | |
de591c5c PK |
1456 | The wireguard package has been renamed to wireguard-tools |
1457 | for the userspace tooling and wireguard-linux-compat for the | |
1458 | kernel side for legacy (<5.6) kernels to match upstream. | |
a269c49f | 1459 | |
e1e54f71 FP |
1460 | config BR2_PACKAGE_PERL_NET_PING |
1461 | bool "perl-net-ping was removed" | |
1462 | select BR2_LEGACY | |
1463 | help | |
1464 | Net::Ping is a Perl core module (ie. bundled with perl). | |
1465 | ||
bdbc1dd5 FP |
1466 | config BR2_PACKAGE_PERL_MIME_BASE64 |
1467 | bool "perl-mime-base64 was removed" | |
1468 | select BR2_LEGACY | |
1469 | help | |
1470 | MIME::Base64 is a Perl core module (ie. bundled with perl). | |
1471 | ||
f3fbcfff FP |
1472 | config BR2_PACKAGE_PERL_DIGEST_MD5 |
1473 | bool "perl-digest-md5 was removed" | |
1474 | select BR2_LEGACY | |
1475 | help | |
1476 | Digest::MD5 is a Perl core module (ie. bundled with perl). | |
1477 | ||
48daa29c JO |
1478 | config BR2_PACKAGE_ERLANG_P1_ICONV |
1479 | bool "erlang-p1-iconv has been removed" | |
1480 | select BR2_LEGACY | |
1481 | help | |
1482 | The erlang-p1-iconv package was no longer used by ejabberd, | |
1483 | and was no longer maintained upstream, so it was removed. | |
1484 | ||
6343127e BK |
1485 | config BR2_KERNEL_HEADERS_5_3 |
1486 | bool "kernel headers version 5.3.x are no longer supported" | |
1487 | select BR2_LEGACY | |
1488 | help | |
1489 | Version 5.3.x of the Linux kernel headers are no longer | |
1490 | maintained upstream and are now removed. | |
1491 | ||
689ba599 GP |
1492 | config BR2_PACKAGE_PYTHON_SCAPY3K |
1493 | bool "python-scapy3k is replaced by python-scapy" | |
1494 | select BR2_LEGACY | |
1495 | select BR2_PACKAGE_PYTHON_SCAPY | |
1496 | help | |
1497 | python-scapy3k has been deprecated, since python-scapy has | |
1498 | gained Python 3 support. Use BR2_PACKAGE_PYTHON_SCAPY | |
1499 | instead. | |
1500 | ||
a4d38f02 RN |
1501 | config BR2_BINUTILS_VERSION_2_30_X |
1502 | bool "binutils version 2.30 support removed" | |
1503 | select BR2_LEGACY | |
1504 | help | |
1505 | Support for binutils version 2.30 has been removed. The | |
1506 | current default version (2.31 or later) has been selected | |
1507 | instead. | |
1508 | ||
ce10b1ef PS |
1509 | config BR2_PACKAGE_RPI_USERLAND_START_VCFILED |
1510 | bool "rpi-userland start vcfiled was removed" | |
1511 | select BR2_LEGACY | |
1512 | help | |
1513 | The vcfiled support was removed upstream. | |
1514 | ||
f2ffdbee BK |
1515 | comment "Legacy options removed in 2019.11" |
1516 | ||
6b663015 | 1517 | config BR2_PACKAGE_OPENVMTOOLS_PROCPS |
cf741893 | 1518 | bool "openvmtools' procps support was removed" |
6b663015 YM |
1519 | select BR2_LEGACY |
1520 | help | |
1521 | Upstream stopped supporting this option a while ago. | |
1522 | ||
4167c96a TC |
1523 | config BR2_PACKAGE_ALLJOYN |
1524 | bool "alljoyn was removed" | |
1525 | select BR2_LEGACY | |
1526 | help | |
1527 | The alljoyn framework is dead | |
1528 | ||
1529 | config BR2_PACKAGE_ALLJOYN_BASE | |
1530 | bool "alljoyn-base was removed" | |
1531 | select BR2_LEGACY | |
1532 | help | |
1533 | The alljoyn framework is dead | |
1534 | ||
1535 | config BR2_PACKAGE_ALLJOYN_BASE_CONTROLPANEL | |
1536 | bool "alljoyn-base control panel was removed" | |
1537 | select BR2_LEGACY | |
1538 | help | |
1539 | The alljoyn framework is dead | |
1540 | ||
1541 | config BR2_PACKAGE_ALLJOYN_BASE_NOTIFICATION | |
1542 | bool "alljoyn-base notification was removed" | |
1543 | select BR2_LEGACY | |
1544 | help | |
1545 | The alljoyn framework is dead | |
1546 | ||
1547 | config BR2_PACKAGE_ALLJOYN_BASE_ONBOARDING | |
1548 | bool "alljoyn-base onboarding was removed" | |
1549 | select BR2_LEGACY | |
1550 | help | |
1551 | The alljoyn framework is dead | |
1552 | ||
1553 | config BR2_PACKAGE_ALLJOYN_TCL_BASE | |
1554 | bool "alljoyn-tcl-base was removed" | |
1555 | select BR2_LEGACY | |
1556 | help | |
1557 | The alljoyn framework is dead | |
1558 | ||
1559 | config BR2_PACKAGE_ALLJOYN_TCL | |
1560 | bool "alljoyn-tcl was removed" | |
1561 | select BR2_LEGACY | |
1562 | help | |
1563 | The alljoyn framework is dead | |
1564 | ||
25a5b966 MW |
1565 | config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS |
1566 | string "toolchain-external extra libs option has been renamed" | |
1567 | help | |
1568 | The option BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS has | |
1569 | been renamed to BR2_TOOLCHAIN_EXTRA_LIBS. | |
1570 | ||
1571 | config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS_WRAP | |
1572 | bool | |
1573 | default y if BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS != "" | |
1574 | select BR2_LEGACY | |
1575 | ||
ae2781d7 AK |
1576 | config BR2_PACKAGE_PYTHON_PYSNMP_APPS |
1577 | bool "python-pysnmp-apps was removed" | |
1578 | select BR2_LEGACY | |
1579 | select BR2_PACKAGE_SNMPCLITOOLS | |
1580 | help | |
1581 | Following upstream changes, the python-pysnmp-apps package | |
1582 | has been removed, and snmpclitools should be used as a | |
1583 | replacement. | |
1584 | ||
29ada329 BK |
1585 | config BR2_KERNEL_HEADERS_5_2 |
1586 | bool "kernel headers version 5.2.x are no longer supported" | |
1587 | select BR2_LEGACY | |
1588 | help | |
1589 | Version 5.2.x of the Linux kernel headers are no longer | |
1590 | maintained upstream and are now removed. | |
1591 | ||
67cfae0f AF |
1592 | config BR2_TARGET_RISCV_PK |
1593 | bool "riscv-pk was removed" | |
1594 | select BR2_LEGACY | |
1595 | help | |
1596 | The RISC-V Proxy Kernel (pk) and Berkley Boot Loader (BBL) | |
1597 | have been replaced with OpenSBI. | |
1598 | ||
7ba88d0d BK |
1599 | config BR2_PACKAGE_SQLITE_STAT3 |
1600 | bool "sqlite stat3 support was removed" | |
1601 | select BR2_LEGACY | |
1602 | help | |
1603 | Upstream removed the support for stat3. | |
1604 | ||
1dc7e048 PK |
1605 | config BR2_KERNEL_HEADERS_5_1 |
1606 | bool "kernel headers version 5.1.x are no longer supported" | |
1607 | select BR2_LEGACY | |
1608 | help | |
1609 | Version 5.1.x of the Linux kernel headers are no longer | |
1610 | maintained upstream and are now removed. | |
1611 | ||
2b2579af CS |
1612 | config BR2_PACKAGE_DEVMEM2 |
1613 | bool "devmem2 package was removed" | |
1614 | select BR2_LEGACY | |
1615 | help | |
1616 | Use the the Busybox devmem utility, instead, which provides | |
1617 | the same functionality. | |
1618 | ||
5d13b7a6 TP |
1619 | config BR2_PACKAGE_USTR |
1620 | bool "ustr package removed" | |
1621 | select BR2_LEGACY | |
1622 | help | |
1623 | The 'ustr' package was only used by SELinux libsemanage, but | |
1624 | since SELinux 2.7, ustr is no longer used. Therefore, we | |
1625 | removed this package from Buildroot. | |
1626 | ||
64c9bc8e BK |
1627 | config BR2_PACKAGE_KODI_SCREENSAVER_PLANESTATE |
1628 | bool "kodi-screensaver-planestate package was removed" | |
1629 | select BR2_LEGACY | |
1630 | help | |
1631 | This package is incompatible with Kodi 18.x. | |
1632 | ||
eeb069f9 BK |
1633 | config BR2_PACKAGE_KODI_VISUALISATION_WAVEFORHUE |
1634 | bool "kodi-visualisation-waveforhue package was removed" | |
1635 | select BR2_LEGACY | |
1636 | help | |
1637 | This package is incompatible with Kodi 18.x. | |
1638 | ||
5e11f348 BK |
1639 | config BR2_PACKAGE_KODI_AUDIODECODER_OPUS |
1640 | bool "kodi-audiodecoder-opus package was removed" | |
1641 | select BR2_LEGACY | |
1642 | help | |
1643 | This package is incompatible with Kodi 18.x. | |
1644 | ||
46221537 RN |
1645 | config BR2_PACKAGE_MESA3D_OSMESA |
1646 | bool "mesa OSMesa option renamed" | |
c16f3e47 | 1647 | select BR2_PACKAGE_MESA3D_OSMESA_CLASSIC if BR2_PACKAGE_MESA3D_DRI_DRIVER_SWRAST |
46221537 RN |
1648 | select BR2_LEGACY |
1649 | help | |
1650 | The option was renamed in order to match the naming used | |
1651 | by the meson buildsystem. | |
1652 | ||
b35ac6fa AM |
1653 | config BR2_PACKAGE_HOSTAPD_DRIVER_RTW |
1654 | bool "hostapd rtl871xdrv driver removed" | |
1655 | select BR2_LEGACY | |
1656 | help | |
1657 | Since the update of hostapd to 2.9, the patch provided for | |
1658 | the rtl871xdrv no longer works, although it | |
1659 | applies. Moreover, AP support for Realtek chips is broken | |
1660 | anyway in kernels > 4.9. Therefore, this option has been | |
1661 | removed. | |
1662 | ||
f2ffdbee BK |
1663 | config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW |
1664 | bool "new dbus support option in wpa_supplicant was renamed" | |
1665 | select BR2_PACKAGE_WPA_SUPPLICANT_DBUS if BR2_TOOLCHAIN_HAS_THREADS | |
1666 | select BR2_LEGACY | |
1667 | help | |
1668 | The new dbus support option was renamed. | |
1669 | ||
1670 | config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_OLD | |
1671 | bool "old dbus support in wpa_supplicant was removed" | |
1672 | select BR2_LEGACY | |
1673 | help | |
1674 | The old dbus support was removed. | |
1675 | ||
7680f9ea RN |
1676 | comment "Legacy options removed in 2019.08" |
1677 | ||
aba1d2dc TP |
1678 | config BR2_TARGET_TS4800_MBRBOOT |
1679 | bool "ts4800-mbrboot package was removed" | |
1680 | select BR2_LEGACY | |
1681 | help | |
1682 | The defconfig for the TS4800 platform has been removed, so | |
1683 | the ts4800-mbrboot package, containing the boot code for | |
1684 | this specific platform has been removed as welL. | |
1685 | ||
d7e3f6da BK |
1686 | config BR2_PACKAGE_LIBAMCODEC |
1687 | bool "liamcodec package was removed" | |
1688 | select BR2_LEGACY | |
1689 | help | |
1690 | Support for odroidc2 based systems was removed, making the | |
1691 | libamcodec package useless. | |
1692 | ||
7d18f299 BK |
1693 | config BR2_PACKAGE_ODROID_SCRIPTS |
1694 | bool "odroid-scripts package was removed" | |
1695 | select BR2_LEGACY | |
1696 | help | |
1697 | Support for odroidc2 based systems was removed, making the | |
1698 | odroid-scripts package useless. | |
1699 | ||
336a47da BK |
1700 | config BR2_PACKAGE_ODROID_MALI |
1701 | bool "odroid-mali package was removed" | |
1702 | select BR2_LEGACY | |
1703 | help | |
1704 | Support for odroidc2 based systems was removed, making the | |
1705 | odroid-mali package useless. | |
1706 | ||
5a53cce3 BK |
1707 | config BR2_PACKAGE_KODI_PLATFORM_AML |
1708 | bool "Kodi AMLogic support was removed" | |
1709 | select BR2_LEGACY | |
1710 | help | |
1711 | Support for AMLogic was removed due to the removal of the | |
1712 | odroidc2 defconfig. | |
1713 | ||
983361ab RN |
1714 | config BR2_GCC_VERSION_6_X |
1715 | bool "gcc 6.x support removed" | |
1716 | select BR2_LEGACY | |
1717 | help | |
1718 | Support for gcc version 6.x has been removed. The current | |
1719 | default version (8.x or later) has been selected instead. | |
1720 | ||
baf17750 RN |
1721 | config BR2_GCC_VERSION_4_9_X |
1722 | bool "gcc 4.9.x support removed" | |
1723 | select BR2_LEGACY | |
1724 | help | |
1725 | Support for gcc version 4.9.x has been removed. The current | |
1726 | default version (8.x or later) has been selected instead. | |
1727 | ||
d36f2c73 RN |
1728 | config BR2_GDB_VERSION_7_12 |
1729 | bool "gdb 7.12.x has been removed" | |
1730 | select BR2_LEGACY | |
1731 | help | |
1732 | The 7.12.x version of gdb has been removed. Use a newer | |
1733 | version instead. | |
1734 | ||
ff74bb88 BK |
1735 | config BR2_PACKAGE_XAPP_MKFONTDIR |
1736 | bool "mkfontdir is now included in xapp_mkfontscale" | |
1737 | select BR2_PACKAGE_XAPP_MKFONTSCALE | |
1738 | select BR2_LEGACY | |
1739 | help | |
1740 | xapp_mkfontscale now includes the mkfontdir script previously | |
1741 | distributed separately for compatibility with older X11 | |
1742 | versions. | |
1743 | ||
7680f9ea RN |
1744 | config BR2_GDB_VERSION_8_0 |
1745 | bool "gdb 8.0.x has been removed" | |
1746 | select BR2_LEGACY | |
1747 | help | |
1748 | The 8.0.x version of gdb has been removed. Use a newer | |
1749 | version instead. | |
1750 | ||
8f60d308 PK |
1751 | config BR2_KERNEL_HEADERS_4_20 |
1752 | bool "kernel headers version 4.20.x are no longer supported" | |
1753 | select BR2_LEGACY | |
1754 | help | |
1755 | Version 4.20.x of the Linux kernel headers are no longer | |
1756 | maintained upstream and are now removed. | |
1757 | ||
9e9a480a PK |
1758 | config BR2_KERNEL_HEADERS_5_0 |
1759 | bool "kernel headers version 5.0.x are no longer supported" | |
1760 | select BR2_LEGACY | |
1761 | help | |
1762 | Version 5.0.x of the Linux kernel headers are no longer | |
1763 | maintained upstream and are now removed. | |
1764 | ||
c8421565 FF |
1765 | comment "Legacy options removed in 2019.05" |
1766 | ||
55c64228 GR |
1767 | config BR2_CSKY_DSP |
1768 | bool "C-SKY DSP support removed" | |
1769 | select BR2_LEGACY | |
1770 | help | |
d6295b1d TP |
1771 | C-SKY DSP instruction support for ck810 / ck807 was removed, |
1772 | as it was no longer supported in C-SKY gcc. Perhaps the VDSP | |
1773 | instructions should be used instead, using the BR2_CSKY_VDSP | |
1774 | option. | |
55c64228 | 1775 | |
8efabd14 AD |
1776 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_COMPOSITOR |
1777 | bool "compositor moved to gst1-plugins-base" | |
1778 | select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_COMPOSITOR | |
1779 | select BR2_LEGACY | |
1780 | help | |
1781 | The gst1-plugins-bad compositor plugin has moved | |
1782 | to gst1-plugins-base. | |
1783 | ||
1784 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA | |
8efabd14 | 1785 | bool "gst-plugins-bad IQA option was removed" |
950e081f | 1786 | select BR2_LEGACY |
8efabd14 AD |
1787 | help |
1788 | The gst1-plugins-bad IQA option was removed. | |
1789 | ||
1790 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_OPENCV | |
1791 | bool "gst-plugins-bad opencv option was removed" | |
1792 | select BR2_LEGACY | |
1793 | help | |
1794 | The gst1-plugins-bad opencv option was removed because | |
1795 | buildroot does not have the opencv_contrib package which | |
1796 | is required for the bgsegm module which gst1-plugins-bad | |
1797 | now requires along with opencv3. | |
1798 | ||
1799 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_STEREO | |
1800 | bool "stereo was merged into audiofx in gst1-plugins-good" | |
1801 | select BR2_LEGACY | |
1802 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_AUDIOFX | |
1803 | help | |
1804 | The gst1-plugins-bad stereo plugin has merged with the | |
1805 | gst1-plugins-base audiofx plugin. | |
1806 | ||
1807 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VCD | |
1808 | bool "gst-plugins-bad vcd plugin was removed." | |
1809 | select BR2_LEGACY | |
1810 | help | |
1811 | The gst1-plugins-bad vcd plugin was removed. | |
1812 | ||
1f33ec41 FP |
1813 | config BR2_PACKAGE_LUNIT |
1814 | bool "lunit package removed" | |
1815 | select BR2_LEGACY | |
1816 | select BR2_PACKAGE_LUA_LUNITX | |
1817 | help | |
1818 | The lunit package was removed in favor of its fork lunitx, | |
1819 | which supports all versions of Lua. | |
1820 | ||
93be7887 LPC |
1821 | config BR2_PACKAGE_FFMPEG_FFSERVER |
1822 | bool "ffmpeg ffserver removed" | |
1823 | select BR2_LEGACY | |
1824 | help | |
1825 | On July 10th, 2016, ffserver program has been dropped. | |
1826 | ||
b643a75b FP |
1827 | config BR2_PACKAGE_LIBUMP |
1828 | bool "libump package removed" | |
1829 | select BR2_LEGACY | |
1830 | help | |
1831 | The libump package was removed, it was only used as a | |
1832 | dependency of sunxi-mali, which itself was removed. | |
1833 | ||
732066a5 FP |
1834 | config BR2_PACKAGE_SUNXI_MALI |
1835 | bool "sunxi-mali package removed" | |
1836 | select BR2_LEGACY | |
6a7a652b | 1837 | select BR2_PACKAGE_SUNXI_MALI_UTGARD |
732066a5 FP |
1838 | help |
1839 | The sunxi-mali package was removed, as the | |
1840 | sunxi-mali-mainline package replaces it for mainline | |
1841 | kernels on Allwinner platforms. | |
1842 | ||
9a05759b RN |
1843 | config BR2_BINUTILS_VERSION_2_29_X |
1844 | bool "binutils version 2.29 support removed" | |
1845 | select BR2_LEGACY | |
1846 | help | |
1847 | Support for binutils version 2.29 has been removed. The | |
1848 | current default version (2.31 or later) has been selected | |
1849 | instead. | |
1850 | ||
dc5d9515 RN |
1851 | config BR2_BINUTILS_VERSION_2_28_X |
1852 | bool "binutils version 2.28 support removed" | |
1853 | select BR2_LEGACY | |
1854 | help | |
1855 | Support for binutils version 2.28 has been removed. The | |
1856 | current default version (2.31 or later) has been selected | |
1857 | instead. | |
1858 | ||
c8421565 FF |
1859 | config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK |
1860 | bool "gst-plugins-bad apexsink option removed" | |
1861 | select BR2_LEGACY | |
1862 | help | |
1863 | The gst-plugins-bad apexsink option was removed. | |
1864 | ||
297613f1 FP |
1865 | comment "Legacy options removed in 2019.02" |
1866 | ||
5a8bc808 PK |
1867 | config BR2_PACKAGE_QT |
1868 | bool "qt package removed" | |
1869 | select BR2_LEGACY | |
1870 | help | |
1871 | The qt package was removed. | |
1872 | ||
e228a9fe PK |
1873 | config BR2_PACKAGE_QTUIO |
1874 | bool "qtuio package removed" | |
1875 | select BR2_LEGACY | |
1876 | help | |
1877 | The qtuio package was removed. | |
1878 | ||
5de7c039 PK |
1879 | config BR2_PACKAGE_PINENTRY_QT4 |
1880 | bool "pinentry-qt4 option removed" | |
1881 | select BR2_LEGACY | |
1882 | help | |
1883 | The pinentry-qt4 option was removed. | |
1884 | ||
3f821fcc PK |
1885 | config BR2_PACKAGE_POPPLER_QT |
1886 | bool "poppler qt option removed" | |
1887 | select BR2_LEGACY | |
1888 | help | |
1889 | The poppler qt option was removed. | |
1890 | ||
3a3fdaeb PK |
1891 | config BR2_PACKAGE_OPENCV3_WITH_QT |
1892 | bool "opencv3 qt backend option removed" | |
1893 | select BR2_LEGACY | |
1894 | help | |
1895 | The opencv3 qt backend option was removed. | |
1896 | ||
882ab1c2 PK |
1897 | config BR2_PACKAGE_OPENCV_WITH_QT |
1898 | bool "opencv qt backend option removed" | |
1899 | select BR2_LEGACY | |
1900 | help | |
1901 | The opencv qt backend option was removed. | |
1902 | ||
ef842792 PK |
1903 | config BR2_PACKAGE_AMD_CATALYST_CCCLE |
1904 | bool "catalyst control center option removed" | |
1905 | select BR2_LEGACY | |
1906 | help | |
1907 | The AMD Catalyst Control Center option was removed. | |
1908 | ||
3a56bc5f PK |
1909 | config BR2_PACKAGE_SDL_QTOPIA |
1910 | bool "sdl qtopia video driver option removed" | |
1911 | select BR2_LEGACY | |
1912 | help | |
1913 | The SDL QTopia video driver option was removed. | |
1914 | ||
90bbfe58 PK |
1915 | config BR2_PACKAGE_PYTHON_PYQT |
1916 | bool "python-pyqt package removed" | |
1917 | select BR2_LEGACY | |
1918 | help | |
1919 | The python-pyqt package was removed. Consider python-pyqt5 | |
1920 | instead. | |
1921 | ||
e0d540bd PK |
1922 | config BR2_PACKAGE_LUACRYPTO |
1923 | bool "luacrypto package removed" | |
1924 | select BR2_LEGACY | |
1925 | help | |
1926 | The luacrypto package was removed. Consider luaossl instead. | |
1927 | ||
0478beaa PK |
1928 | config BR2_PACKAGE_TN5250 |
1929 | bool "tn5250 package removed" | |
1930 | select BR2_LEGACY | |
1931 | help | |
1932 | The tn5250 package was removed. | |
1933 | ||
428ed394 FF |
1934 | config BR2_PACKAGE_BOOST_SIGNALS |
1935 | bool "Boost signals removed" | |
1936 | select BR2_LEGACY | |
1937 | help | |
1938 | Its removal was announced in boost 1.68 and its deprecation | |
1939 | was announced in 1.54. Users are encouraged to use Signals2 | |
1940 | instead. | |
1941 | ||
7883e559 TP |
1942 | config BR2_PACKAGE_FFTW_PRECISION_SINGLE |
1943 | bool "single" | |
1944 | select BR2_LEGACY | |
1945 | select BR2_PACKAGE_FFTW_SINGLE | |
1946 | help | |
1947 | This option has been removed in favor of | |
1948 | BR2_PACKAGE_FFTW_SINGLE. | |
1949 | ||
1950 | config BR2_PACKAGE_FFTW_PRECISION_DOUBLE | |
1951 | bool "double" | |
1952 | select BR2_LEGACY | |
1953 | select BR2_PACKAGE_FFTW_DOUBLE | |
1954 | help | |
1955 | This option has been removed in favor of | |
1956 | BR2_PACKAGE_FFTW_DOUBLE. | |
1957 | ||
1958 | config BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE | |
1959 | bool "long double" | |
1960 | depends on !(BR2_TOOLCHAIN_BUILDROOT_UCLIBC && \ | |
1961 | (BR2_arm || BR2_mips || BR2_mipsel)) | |
1962 | select BR2_LEGACY | |
1963 | select BR2_PACKAGE_FFTW_LONG_DOUBLE | |
1964 | help | |
1965 | This option has been removed in favor of | |
1966 | BR2_PACKAGE_FFTW_LONG_DOUBLE. | |
1967 | ||
1968 | config BR2_PACKAGE_FFTW_PRECISION_QUAD | |
1969 | bool "quad" | |
1970 | depends on (BR2_i386 || BR2_x86_64) && BR2_USE_WCHAR | |
1971 | select BR2_LEGACY | |
1972 | select BR2_PACKAGE_FFTW_QUAD | |
1973 | help | |
1974 | This option has been removed in favor of | |
1975 | BR2_PACKAGE_FFTW_QUAD. | |
1976 | ||
297613f1 FP |
1977 | config BR2_PACKAGE_LUA_5_2 |
1978 | bool "Lua 5.2.x version removed" | |
1979 | select BR2_LEGACY | |
1980 | select BR2_PACKAGE_LUA_5_3 | |
1981 | help | |
1982 | The Lua 5.2.x version was removed. | |
1983 | ||
bf362600 MW |
1984 | config BR2_TARGET_GENERIC_PASSWD_MD5 |
1985 | bool "target passwd md5 format support has been removed" | |
1986 | select BR2_LEGACY | |
1987 | help | |
1988 | The default has been moved to SHA256 and all C libraries | |
1989 | now support that method by default | |
1990 | ||
a2d44ec6 BK |
1991 | comment "Legacy options removed in 2018.11" |
1992 | ||
070b183d MW |
1993 | config BR2_TARGET_XLOADER |
1994 | bool "xloader has been removed" | |
1995 | select BR2_LEGACY | |
1996 | help | |
1997 | The package has been removed as u-boot SPL provides | |
1998 | similar functionality | |
1999 | ||
5e8790d5 MW |
2000 | config BR2_PACKAGE_TIDSP_BINARIES |
2001 | bool "tidsp-binaries package removed" | |
2002 | select BR2_LEGACY | |
2003 | help | |
2004 | The tidsp-binaries package was removed. | |
2005 | ||
e8eb7f5b MW |
2006 | config BR2_PACKAGE_DSP_TOOLS |
2007 | bool "dsp-tools package removed" | |
2008 | select BR2_LEGACY | |
2009 | help | |
2010 | The dsp-tools package was removed. | |
2011 | ||
91542907 MW |
2012 | config BR2_PACKAGE_GST_DSP |
2013 | bool "gst-dsp package removed" | |
2014 | select BR2_LEGACY | |
2015 | help | |
2016 | The gst-dsp package was removed. | |
2017 | ||
2c3c7c4f FF |
2018 | config BR2_PACKAGE_BOOTUTILS |
2019 | bool "bootutils package removed" | |
2020 | select BR2_LEGACY | |
2021 | help | |
2022 | The bootutils package was removed. | |
2023 | ||
addcc393 RN |
2024 | config BR2_PACKAGE_EXPEDITE |
2025 | bool "expedite package has been removed" | |
2026 | select BR2_LEGACY | |
2027 | help | |
2028 | expedite is not actively maintained anymore. | |
2029 | https://sourceforge.net/p/enlightenment/mailman/message/36428571 | |
2030 | ||
3d3235f9 BK |
2031 | config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT |
2032 | bool "mesa3d opengl texture float option removed" | |
2033 | select BR2_LEGACY | |
2034 | help | |
2035 | mesa3d now unconditionally enables floating-point textures, | |
2036 | as the corresponding patent has expired. | |
2037 | ||
a2d44ec6 BK |
2038 | config BR2_KERNEL_HEADERS_4_10 |
2039 | bool "kernel headers version 4.10.x are no longer supported" | |
a2d44ec6 BK |
2040 | select BR2_LEGACY |
2041 | help | |
2042 | Version 4.10.x of the Linux kernel headers are no longer | |
1b3c43f7 | 2043 | maintained upstream and are now removed. |
a2d44ec6 BK |
2044 | |
2045 | config BR2_KERNEL_HEADERS_4_11 | |
2046 | bool "kernel headers version 4.11.x are no longer supported" | |
a2d44ec6 BK |
2047 | select BR2_LEGACY |
2048 | help | |
2049 | Version 4.11.x of the Linux kernel headers are no longer | |
1b3c43f7 | 2050 | maintained upstream and are now removed. |
a2d44ec6 BK |
2051 | |
2052 | config BR2_KERNEL_HEADERS_4_12 | |
2053 | bool "kernel headers version 4.12.x are no longer supported" | |
a2d44ec6 BK |
2054 | select BR2_LEGACY |
2055 | help | |
2056 | Version 4.12.x of the Linux kernel headers are no longer | |
1b3c43f7 | 2057 | maintained upstream and are now removed. |
a2d44ec6 BK |
2058 | |
2059 | config BR2_KERNEL_HEADERS_4_13 | |
2060 | bool "kernel headers version 4.13.x are no longer supported" | |
a2d44ec6 BK |
2061 | select BR2_LEGACY |
2062 | help | |
2063 | Version 4.13.x of the Linux kernel headers are no longer | |
1b3c43f7 | 2064 | maintained upstream and are now removed. |
a2d44ec6 BK |
2065 | |
2066 | config BR2_KERNEL_HEADERS_4_15 | |
2067 | bool "kernel headers version 4.15.x are no longer supported" | |
a2d44ec6 BK |
2068 | select BR2_LEGACY |
2069 | help | |
2070 | Version 4.15.x of the Linux kernel headers are no longer | |
1b3c43f7 | 2071 | maintained upstream and are now removed. |
a2d44ec6 | 2072 | |
d220ce6d YM |
2073 | config BR2_KERNEL_HEADERS_4_17 |
2074 | bool "kernel headers version 4.17.x are no longer supported" | |
2075 | select BR2_LEGACY | |
2076 | help | |
2077 | Version 4.17.x of the Linux kernel headers are no longer | |
2078 | maintained upstream and are now removed. | |
2079 | ||
00d63a15 BS |
2080 | config BR2_PACKAGE_LIBNFTNL_XML |
2081 | bool "libnftl no longer supports XML output" | |
2082 | select BR2_LEGACY | |
2083 | help | |
2084 | libnftnl removed integration with libmxml. | |
2085 | ||
ebee2c64 PK |
2086 | config BR2_KERNEL_HEADERS_3_2 |
2087 | bool "kernel headers version 3.2.x are no longer supported" | |
2088 | select BR2_LEGACY | |
2089 | help | |
2090 | Version 3.2.x of the Linux kernel headers are no longer | |
2091 | maintained upstream and are now removed. | |
2092 | ||
2093 | config BR2_KERNEL_HEADERS_4_1 | |
2094 | bool "kernel headers version 4.1.x are no longer supported" | |
2095 | select BR2_LEGACY | |
2096 | help | |
2097 | Version 4.1.x of the Linux kernel headers are no longer | |
2098 | maintained upstream and are now removed. | |
2099 | ||
2100 | config BR2_KERNEL_HEADERS_4_16 | |
2101 | bool "kernel headers version 4.16.x are no longer supported" | |
2102 | select BR2_LEGACY | |
2103 | help | |
2104 | Version 4.16.x of the Linux kernel headers are no longer | |
2105 | maintained upstream and are now removed. | |
2106 | ||
2107 | config BR2_KERNEL_HEADERS_4_18 | |
2108 | bool "kernel headers version 4.18.x are no longer supported" | |
2109 | select BR2_LEGACY | |
2110 | help | |
2111 | Version 4.18.x of the Linux kernel headers are no longer | |
2112 | maintained upstream and are now removed. | |
2113 | ||
54a2e7a3 RN |
2114 | ############################################################################### |
2115 | comment "Legacy options removed in 2018.08" | |
2116 | ||
de336584 CS |
2117 | config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT |
2118 | bool "docker-engine static client option renamed" | |
2119 | select BR2_LEGACY | |
2120 | select BR2_PACKAGE_DOCKER_CLI_STATIC | |
2121 | help | |
2122 | BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT has been renamed to | |
2123 | BR2_PACKAGE_DOCKER_CLI_STATIC, following the package split of | |
2124 | docker-engine and docker-cli. | |
2125 | ||
14c52533 BK |
2126 | config BR2_PACKAGE_XPROTO_APPLEWMPROTO |
2127 | bool "xproto-applewmproto package replaced by xorgproto" | |
2128 | select BR2_LEGACY | |
2129 | select BR2_PACKAGE_XORGPROTO | |
2130 | help | |
2131 | The xproto-applewmproto package has been replaced by the | |
2132 | xorgproto package, which combines all xproto_* packages. | |
2133 | ||
2134 | config BR2_PACKAGE_XPROTO_BIGREQSPROTO | |
2135 | bool "xproto-bigreqsproto package replaced by xorgproto" | |
2136 | select BR2_LEGACY | |
2137 | select BR2_PACKAGE_XORGPROTO | |
2138 | help | |
2139 | The xproto-bigreqsproto package has been replaced by the | |
2140 | xorgproto package, which combines all xproto_* packages. | |
2141 | ||
2142 | config BR2_PACKAGE_XPROTO_COMPOSITEPROTO | |
2143 | bool "xproto-compositeproto package replaced by xorgproto" | |
2144 | select BR2_LEGACY | |
2145 | select BR2_PACKAGE_XORGPROTO | |
2146 | help | |
2147 | The xproto-compositeproto package has been replaced by the | |
2148 | xorgproto package, which combines all xproto_* packages. | |
2149 | ||
2150 | config BR2_PACKAGE_XPROTO_DAMAGEPROTO | |
2151 | bool "xproto-dameproto package replaced by xorgproto" | |
2152 | select BR2_LEGACY | |
2153 | select BR2_PACKAGE_XORGPROTO | |
2154 | help | |
2155 | The xproto-dameproto package has been replaced by the | |
2156 | xorgproto package, which combines all xproto_* packages. | |
2157 | ||
2158 | config BR2_PACKAGE_XPROTO_DMXPROTO | |
2159 | bool "xproto-dmxproto package replaced by xorgproto" | |
2160 | select BR2_LEGACY | |
2161 | select BR2_PACKAGE_XORGPROTO | |
2162 | help | |
2163 | The xproto-dmxproto package has been replaced by the | |
2164 | xorgproto package, which combines all xproto_* packages. | |
2165 | ||
2166 | config BR2_PACKAGE_XPROTO_DRI2PROTO | |
2167 | bool "xproto-dri2proto package replaced by xorgproto" | |
2168 | select BR2_LEGACY | |
2169 | select BR2_PACKAGE_XORGPROTO | |
2170 | help | |
2171 | The xproto-dri2proto package has been replaced by the | |
2172 | xorgproto package, which combines all xproto_* packages. | |
2173 | ||
2174 | config BR2_PACKAGE_XPROTO_DRI3PROTO | |
2175 | bool "xproto-dri3proto package replaced by xorgproto" | |
2176 | select BR2_LEGACY | |
2177 | select BR2_PACKAGE_XORGPROTO | |
2178 | help | |
2179 | The xproto-dri3proto package has been replaced by the | |
2180 | xorgproto package, which combines all xproto_* packages. | |
2181 | ||
2182 | config BR2_PACKAGE_XPROTO_FIXESPROTO | |
2183 | bool "xproto-fixesproto package replaced by xorgproto" | |
2184 | select BR2_LEGACY | |
2185 | select BR2_PACKAGE_XORGPROTO | |
2186 | help | |
2187 | The xproto-fixesproto package has been replaced by the | |
2188 | xorgproto package, which combines all xproto_* packages. | |
2189 | ||
2190 | config BR2_PACKAGE_XPROTO_FONTCACHEPROTO | |
2191 | bool "xproto-fontcacheproto package replaced by xorgproto" | |
2192 | select BR2_LEGACY | |
2193 | select BR2_PACKAGE_XORGPROTO | |
2194 | help | |
2195 | The xproto-fontcacheproto package has been replaced by the | |
2196 | xorgproto package, which combines all xproto_* packages. | |
2197 | ||
2198 | config BR2_PACKAGE_XPROTO_FONTSPROTO | |
2199 | bool "xproto-fontsproto package replaced by xorgproto" | |
2200 | select BR2_LEGACY | |
2201 | select BR2_PACKAGE_XORGPROTO | |
2202 | help | |
2203 | The xproto-fontsproto package has been replaced by the | |
2204 | xorgproto package, which combines all xproto_* packages. | |
2205 | ||
2206 | config BR2_PACKAGE_XPROTO_GLPROTO | |
2207 | bool "xproto-glproto package replaced by xorgproto" | |
2208 | select BR2_LEGACY | |
2209 | select BR2_PACKAGE_XORGPROTO | |
2210 | help | |
2211 | The xproto-glproto package has been replaced by the | |
2212 | xorgproto package, which combines all xproto_* packages. | |
2213 | ||
2214 | config BR2_PACKAGE_XPROTO_INPUTPROTO | |
2215 | bool "xproto-inputproto package replaced by xorgproto" | |
2216 | select BR2_LEGACY | |
2217 | select BR2_PACKAGE_XORGPROTO | |
2218 | help | |
2219 | The xproto-inputproto package has been replaced by the | |
2220 | xorgproto package, which combines all xproto_* packages. | |
2221 | ||
2222 | config BR2_PACKAGE_XPROTO_KBPROTO | |
2223 | bool "xproto-kbproto package replaced by xorgproto" | |
2224 | select BR2_LEGACY | |
2225 | select BR2_PACKAGE_XORGPROTO | |
2226 | help | |
2227 | The xproto-kbproto package has been replaced by the | |
2228 | xorgproto package, which combines all xproto_* packages. | |
2229 | ||
2230 | config BR2_PACKAGE_XPROTO_PRESENTPROTO | |
2231 | bool "xproto-presentproto package replaced by xorgproto" | |
2232 | select BR2_LEGACY | |
2233 | select BR2_PACKAGE_XORGPROTO | |
2234 | help | |
2235 | The xproto-presentproto package has been replaced by the | |
2236 | xorgproto package, which combines all xproto_* packages. | |
2237 | ||
2238 | config BR2_PACKAGE_XPROTO_RANDRPROTO | |
2239 | bool "xproto-randrproto package replaced by xorgproto" | |
2240 | select BR2_LEGACY | |
2241 | select BR2_PACKAGE_XORGPROTO | |
2242 | help | |
2243 | The xproto-randrproto package has been replaced by the | |
2244 | xorgproto package, which combines all xproto_* packages. | |
2245 | ||
2246 | config BR2_PACKAGE_XPROTO_RECORDPROTO | |
2247 | bool "xproto-recordproto package replaced by xorgproto" | |
2248 | select BR2_LEGACY | |
2249 | select BR2_PACKAGE_XORGPROTO | |
2250 | help | |
2251 | The xproto-recordproto package has been replaced by the | |
2252 | xorgproto package, which combines all xproto_* packages. | |
2253 | ||
2254 | config BR2_PACKAGE_XPROTO_RENDERPROTO | |
2255 | bool "xproto-renderproto package replaced by xorgproto" | |
2256 | select BR2_LEGACY | |
2257 | select BR2_PACKAGE_XORGPROTO | |
2258 | help | |
2259 | The xproto-renderproto package has been replaced by the | |
2260 | xorgproto package, which combines all xproto_* packages. | |
2261 | ||
2262 | config BR2_PACKAGE_XPROTO_RESOURCEPROTO | |
2263 | bool "xproto-resourceproto package replaced by xorgproto" | |
2264 | select BR2_LEGACY | |
2265 | select BR2_PACKAGE_XORGPROTO | |
2266 | help | |
2267 | The xproto-resourceproto package has been replaced by the | |
2268 | xorgproto package, which combines all xproto_* packages. | |
2269 | ||
2270 | config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO | |
2271 | bool "xproto-scrnsaverprot package replaced by xorgproto" | |
2272 | select BR2_LEGACY | |
2273 | select BR2_PACKAGE_XORGPROTO | |
2274 | help | |
2275 | The xproto-scrnsaverprot package has been replaced by the | |
2276 | xorgproto package, which combines all xproto_* packages. | |
2277 | ||
2278 | config BR2_PACKAGE_XPROTO_VIDEOPROTO | |
2279 | bool "xproto-videoproto package replaced by xorgproto" | |
2280 | select BR2_LEGACY | |
2281 | select BR2_PACKAGE_XORGPROTO | |
2282 | help | |
2283 | The xproto-videoproto package has been replaced by the | |
2284 | xorgproto package, which combines all xproto_* packages. | |
2285 | ||
2286 | config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO | |
2287 | bool "xproto-windowswmproto package replaced by xorgproto" | |
2288 | select BR2_LEGACY | |
2289 | select BR2_PACKAGE_XORGPROTO | |
2290 | help | |
2291 | The xproto-windowswmproto package has been replaced by the | |
2292 | xorgproto package, which combines all xproto_* packages. | |
2293 | ||
2294 | config BR2_PACKAGE_XPROTO_XCMISCPROTO | |
2295 | bool "xproto-xcmiscproto package replaced by xorgproto" | |
2296 | select BR2_LEGACY | |
2297 | select BR2_PACKAGE_XORGPROTO | |
2298 | help | |
2299 | The xproto-xcmiscproto package has been replaced by the | |
2300 | xorgproto package, which combines all xproto_* packages. | |
2301 | ||
2302 | config BR2_PACKAGE_XPROTO_XEXTPROTO | |
2303 | bool "xproto-xextproto package replaced by xorgproto" | |
2304 | select BR2_LEGACY | |
2305 | select BR2_PACKAGE_XORGPROTO | |
2306 | help | |
2307 | The xproto-xextproto package has been replaced by the | |
2308 | xorgproto package, which combines all xproto_* packages. | |
2309 | ||
2310 | config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO | |
2311 | bool "xproto-xf86bigfontproto package replaced by xorgproto" | |
2312 | select BR2_LEGACY | |
2313 | select BR2_PACKAGE_XORGPROTO | |
2314 | help | |
2315 | The xproto-xf86bigfontproto package has been replaced by the | |
2316 | xorgproto package, which combines all xproto_* packages. | |
2317 | ||
2318 | config BR2_PACKAGE_XPROTO_XF86DGAPROTO | |
2319 | bool "xproto-xf86dgaproto package replaced by xorgproto" | |
2320 | select BR2_LEGACY | |
2321 | select BR2_PACKAGE_XORGPROTO | |
2322 | help | |
2323 | The xproto-xf86dgaproto package has been replaced by the | |
2324 | xorgproto package, which combines all xproto_* packages. | |
2325 | ||
2326 | config BR2_PACKAGE_XPROTO_XF86DRIPROTO | |
2327 | bool "xproto-xf86driproto package replaced by xorgproto" | |
2328 | select BR2_LEGACY | |
2329 | select BR2_PACKAGE_XORGPROTO | |
2330 | help | |
2331 | The xproto-xf86driproto package has been replaced by the | |
2332 | xorgproto package, which combines all xproto_* packages. | |
2333 | ||
2334 | config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO | |
2335 | bool "xproto-xf86vidmodeproto package replaced by xorgproto" | |
2336 | select BR2_LEGACY | |
2337 | select BR2_PACKAGE_XORGPROTO | |
2338 | help | |
2339 | The xproto-xf86vidmodeproto package has been replaced by the | |
2340 | xorgproto package, which combines all xproto_* packages. | |
2341 | ||
2342 | config BR2_PACKAGE_XPROTO_XINERAMAPROTO | |
2343 | bool "xproto-xineramaproto package replaced by xorgproto" | |
2344 | select BR2_LEGACY | |
2345 | select BR2_PACKAGE_XORGPROTO | |
2346 | help | |
2347 | The xproto-xineramaproto package has been replaced by the | |
2348 | xorgproto package, which combines all xproto_* packages. | |
2349 | ||
2350 | config BR2_PACKAGE_XPROTO_XPROTO | |
2351 | bool "xproto-xproto package replaced by xorgproto" | |
2352 | select BR2_LEGACY | |
2353 | select BR2_PACKAGE_XORGPROTO | |
2354 | help | |
2355 | The xproto-xproto package has been replaced by the | |
2356 | xorgproto package, which combines all xproto_* packages. | |
2357 | ||
2358 | config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL | |
2359 | bool "xproto-xproxymanagementprotocol package replaced by xorgproto" | |
2360 | select BR2_LEGACY | |
2361 | select BR2_PACKAGE_XORGPROTO | |
2362 | help | |
2363 | The xproto-xproxymanagementprotocol package has been | |
2364 | replaced by the xorgproto package, which combines all | |
2365 | xproto_* packages. | |
2366 | ||
3f2aef56 AD |
2367 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL |
2368 | bool "gst1-plugins-bad opengl option moved to gst1-plugins-base" | |
2369 | select BR2_LEGACY | |
2370 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL | |
2371 | help | |
2372 | The opengl option has been moved from gst1-plugins-bad to | |
2373 | gst1-plugins-base. | |
2374 | ||
2375 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2 | |
2376 | bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base" | |
2377 | select BR2_LEGACY | |
2378 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2 | |
2379 | help | |
2380 | The gles2 option has been moved from gst1-plugins-bad to | |
2381 | gst1-plugins-base. | |
2382 | ||
2383 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX | |
2384 | bool "gst1-plugins-bad glx option moved to gst1-plugins-base" | |
2385 | select BR2_LEGACY | |
2386 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX | |
2387 | help | |
2388 | The glx option has been moved from gst1-plugins-bad to | |
2389 | gst1-plugins-base. | |
2390 | ||
2391 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL | |
2392 | bool "gst1-plugins-bad egl option moved to gst1-plugins-base" | |
2393 | select BR2_LEGACY | |
2394 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL | |
2395 | help | |
2396 | The egl option has been moved from gst1-plugins-bad to | |
2397 | gst1-plugins-base. | |
2398 | ||
2399 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11 | |
2400 | bool "gst1-plugins-bad x11 option moved to gst1-plugins-base" | |
2401 | select BR2_LEGACY | |
2402 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11 | |
2403 | help | |
2404 | The x11 option has been moved from gst1-plugins-bad to | |
2405 | gst1-plugins-base. | |
2406 | ||
2407 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND | |
2408 | bool "gst1-plugins-bad wayland option moved to gst1-plugins-base" | |
2409 | select BR2_LEGACY | |
2410 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND | |
2411 | help | |
2412 | The wayland option has been moved from gst1-plugins-bad to | |
2413 | gst1-plugins-base. | |
2414 | ||
2415 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX | |
2416 | bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base" | |
2417 | select BR2_LEGACY | |
2418 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX | |
2419 | help | |
2420 | The dispmanx option has been moved from gst1-plugins-mad to | |
2421 | gst1-plugins-base. | |
2422 | ||
2423 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER | |
2424 | bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base" | |
2425 | select BR2_LEGACY | |
2426 | select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER | |
2427 | help | |
2428 | The audiomixer option has been moved from gst1-plugins-bad to | |
2429 | gst1-plugins-base. | |
2430 | ||
2431 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME | |
2432 | bool "gst1-plugins-ugly lame option moved to gst1-plugins-good" | |
2433 | select BR2_LEGACY | |
2434 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME | |
2435 | help | |
2436 | The lame option has been moved from gst1-plugins-ugly to | |
2437 | gst1-plugins-good. | |
2438 | ||
2439 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123 | |
2440 | bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good" | |
2441 | select BR2_LEGACY | |
2442 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123 | |
2443 | help | |
2444 | The mpg123 option has been moved from gst1-plugins-ugly to | |
2445 | gst1-plugins-good. | |
2446 | ||
bae35c80 RN |
2447 | config BR2_GDB_VERSION_7_11 |
2448 | bool "gdb 7.11 has been removed" | |
2449 | select BR2_LEGACY | |
2450 | help | |
2451 | The 7.11 version of gdb has been removed. Use a newer version | |
2452 | instead. | |
2453 | ||
54a2e7a3 RN |
2454 | config BR2_GDB_VERSION_7_10 |
2455 | bool "gdb 7.10 has been removed" | |
2456 | select BR2_LEGACY | |
2457 | help | |
2458 | The 7.10 version of gdb has been removed. Use a newer version | |
2459 | instead. | |
2460 | ||
86dfb429 | 2461 | ############################################################################### |
9657e964 BK |
2462 | comment "Legacy options removed in 2018.05" |
2463 | ||
8553b398 PV |
2464 | config BR2_PACKAGE_MEDIAART_BACKEND_NONE |
2465 | bool "libmediaart none backend option renamed" | |
2466 | select BR2_LEGACY | |
2467 | help | |
2468 | For consistency reasons, the option | |
2469 | BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to | |
2470 | BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE | |
2471 | ||
2472 | config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF | |
2473 | bool "libmediaart gdk-pixbuf backend option renamed" | |
2474 | select BR2_LEGACY | |
2475 | help | |
2476 | For consistency reasons, the option | |
2477 | BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to | |
2478 | BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF | |
2479 | ||
2480 | config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF | |
2481 | bool "libmediaart qt backend option renamed" | |
2482 | select BR2_LEGACY | |
2483 | help | |
2484 | For consistency reasons, the option | |
2485 | BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to | |
2486 | BR2_PACKAGE_LIBMEDIAART_BACKEND_QT | |
2487 | ||
4a03a66f YM |
2488 | # Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from |
2489 | # package/ti-sgx-km/Config.in | |
b54c5464 TP |
2490 | config BR2_PACKAGE_TI_SGX_AM335X |
2491 | bool "ti-sgx-km AM335X option renamed" | |
2492 | select BR2_LEGACY | |
2493 | help | |
2494 | For consistency reasons, the option | |
2495 | BR2_PACKAGE_TI_SGX_AM335X has been renamed to | |
2496 | BR2_PACKAGE_TI_SGX_KM_AM335X. | |
2497 | ||
4a03a66f YM |
2498 | # Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from |
2499 | # package/ti-sgx-km/Config.in | |
b54c5464 TP |
2500 | config BR2_PACKAGE_TI_SGX_AM437X |
2501 | bool "ti-sgx-km AM437X option renamed" | |
2502 | select BR2_LEGACY | |
2503 | help | |
2504 | For consistency reasons, the option | |
2505 | BR2_PACKAGE_TI_SGX_AM437X has been renamed to | |
2506 | BR2_PACKAGE_TI_SGX_KM_AM437X. | |
2507 | ||
4a03a66f YM |
2508 | # Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from |
2509 | # package/ti-sgx-km/Config.in | |
b54c5464 TP |
2510 | config BR2_PACKAGE_TI_SGX_AM4430 |
2511 | bool "ti-sgx-km AM4430 option renamed" | |
2512 | select BR2_LEGACY | |
2513 | help | |
2514 | For consistency reasons, the option | |
2515 | BR2_PACKAGE_TI_SGX_AM4430 has been renamed to | |
2516 | BR2_PACKAGE_TI_SGX_KM_AM4430. | |
2517 | ||
4a03a66f YM |
2518 | # Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from |
2519 | # package/ti-sgx-km/Config.in | |
b54c5464 TP |
2520 | config BR2_PACKAGE_TI_SGX_AM5430 |
2521 | bool "ti-sgx-km AM5430 option renamed" | |
2522 | select BR2_LEGACY | |
2523 | help | |
2524 | For consistency reasons, the option | |
2525 | BR2_PACKAGE_TI_SGX_AM5430 has been renamed to | |
2526 | BR2_PACKAGE_TI_SGX_KM_AM5430. | |
2527 | ||
a79df201 TP |
2528 | config BR2_PACKAGE_JANUS_AUDIO_BRIDGE |
2529 | bool "janus-gateway audio-bridge option renamed" | |
2530 | select BR2_LEGACY | |
2531 | select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE | |
2532 | help | |
2533 | For consistency reasons, the janus-gateway option | |
2534 | BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to | |
2535 | BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE. | |
2536 | ||
2537 | config BR2_PACKAGE_JANUS_ECHO_TEST | |
2538 | bool "janus-gateway echo-test option renamed" | |
2539 | select BR2_LEGACY | |
2540 | select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST | |
2541 | help | |
2542 | For consistency reasons, the janus-gateway option | |
2543 | BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to | |
2544 | BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST. | |
2545 | ||
2546 | config BR2_PACKAGE_JANUS_RECORDPLAY | |
2547 | bool "janus-gateway recordplay option renamed" | |
2548 | select BR2_LEGACY | |
2549 | select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY | |
2550 | help | |
2551 | For consistency reasons, the janus-gateway option | |
2552 | BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to | |
2553 | BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY. | |
2554 | ||
2555 | config BR2_PACKAGE_JANUS_SIP_GATEWAY | |
2556 | bool "janus-gateway sip-gateway option renamed" | |
2557 | select BR2_LEGACY | |
2558 | select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY | |
2559 | help | |
2560 | For consistency reasons, the janus-gateway option | |
2561 | BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to | |
2562 | BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY. | |
2563 | ||
2564 | config BR2_PACKAGE_JANUS_STREAMING | |
2565 | bool "janus-gateway streaming option renamed" | |
2566 | select BR2_LEGACY | |
2567 | select BR2_PACKAGE_JANUS_GATEWAY_STREAMING | |
2568 | help | |
2569 | For consistency reasons, the janus-gateway option | |
2570 | BR2_PACKAGE_JANUS_STREAMING has been renamed to | |
2571 | BR2_PACKAGE_JANUS_GATEWAY_STREAMING. | |
2572 | ||
2573 | config BR2_PACKAGE_JANUS_TEXT_ROOM | |
2574 | bool "janus-gateway text-room option renamed" | |
2575 | select BR2_LEGACY | |
2576 | select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM | |
2577 | help | |
2578 | For consistency reasons, the janus-gateway option | |
2579 | BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to | |
2580 | BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM. | |
2581 | ||
2582 | config BR2_PACKAGE_JANUS_VIDEO_CALL | |
2583 | bool "janus-gateway video-call option renamed" | |
2584 | select BR2_LEGACY | |
2585 | select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL | |
2586 | help | |
2587 | For consistency reasons, the janus-gateway option | |
2588 | BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to | |
2589 | BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL. | |
2590 | ||
2591 | config BR2_PACKAGE_JANUS_VIDEO_ROOM | |
2592 | bool "janus-gateway video-room option renamed" | |
2593 | select BR2_LEGACY | |
2594 | select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM | |
2595 | help | |
2596 | For consistency reasons, the janus-gateway option | |
2597 | BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to | |
2598 | BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM. | |
2599 | ||
2600 | config BR2_PACKAGE_JANUS_MQTT | |
2601 | bool "janus-gateway mqtt option renamed" | |
2602 | select BR2_LEGACY | |
2603 | select BR2_PACKAGE_JANUS_GATEWAY_MQTT | |
2604 | help | |
2605 | For consistency reasons, the janus-gateway option | |
2606 | BR2_PACKAGE_JANUS_MQTT has been renamed to | |
2607 | BR2_PACKAGE_JANUS_GATEWAY_MQTT. | |
2608 | ||
2609 | config BR2_PACKAGE_JANUS_RABBITMQ | |
2610 | bool "janus-gateway rabbitmq option renamed" | |
2611 | select BR2_LEGACY | |
2612 | select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ | |
2613 | help | |
2614 | For consistency reasons, the janus-gateway option | |
2615 | BR2_PACKAGE_JANUS_RABBITMQ has been renamed to | |
2616 | BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ. | |
2617 | ||
2618 | config BR2_PACKAGE_JANUS_REST | |
2619 | bool "janus-gateway rest option renamed" | |
2620 | select BR2_LEGACY | |
2621 | select BR2_PACKAGE_JANUS_GATEWAY_REST | |
2622 | help | |
2623 | For consistency reasons, the janus-gateway option | |
2624 | BR2_PACKAGE_JANUS_REST has been renamed to | |
2625 | BR2_PACKAGE_JANUS_GATEWAY_REST. | |
2626 | ||
2627 | config BR2_PACKAGE_JANUS_UNIX_SOCKETS | |
2628 | bool "janus-gateway unix-sockets option renamed" | |
2629 | select BR2_LEGACY | |
2630 | select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS | |
2631 | help | |
2632 | For consistency reasons, the janus-gateway option | |
2633 | BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to | |
2634 | BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS. | |
2635 | ||
2636 | config BR2_PACKAGE_JANUS_WEBSOCKETS | |
2637 | bool "janus-gateway websockets option renamed" | |
2638 | select BR2_LEGACY | |
2639 | select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS | |
2640 | help | |
2641 | For consistency reasons, the janus-gateway option | |
2642 | BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to | |
2643 | BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS. | |
2644 | ||
9d2c5c25 TP |
2645 | config BR2_PACKAGE_IPSEC_SECCTX_DISABLE |
2646 | bool "ipsec-tools security context disable option renamed" | |
2647 | select BR2_LEGACY | |
2648 | help | |
2649 | For consistency reasons, the option | |
2650 | BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to | |
2651 | BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE. | |
2652 | ||
2653 | config BR2_PACKAGE_IPSEC_SECCTX_ENABLE | |
2654 | bool "ipsec-tools SELinux security context enable option renamed" | |
2655 | select BR2_LEGACY | |
2656 | help | |
2657 | For consistency reasons, the option | |
2658 | BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to | |
2659 | BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE. | |
2660 | ||
2661 | config BR2_PACKAGE_IPSEC_SECCTX_KERNEL | |
2662 | bool "ipsec-tools kernel security context enable option renamed" | |
2663 | select BR2_LEGACY | |
2664 | help | |
2665 | For consistency reasons, the option | |
2666 | BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to | |
2667 | BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL. | |
2668 | ||
dc4e4aac TP |
2669 | config BR2_PACKAGE_LIBTFDI_CPP |
2670 | bool "libftdi C++ bindings option renamed" | |
2671 | select BR2_LEGACY | |
2672 | select BR2_PACKAGE_LIBFTDI_CPP | |
2673 | help | |
2674 | The option BR2_PACKAGE_LIBTFDI_CPP was renamed to | |
2675 | BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option | |
2676 | name. | |
2677 | ||
94c14628 TP |
2678 | config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE |
2679 | bool "jquery-ui-themes option black-tie renamed" | |
2680 | select BR2_LEGACY | |
2681 | help | |
2682 | For consistency reasons, the jquery-ui-themes option for the | |
2683 | black-tie theme has been renamed from | |
2684 | BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to | |
2685 | BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE. | |
2686 | ||
2687 | config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER | |
2688 | bool "jquery-ui-themes option blitzer renamed" | |
2689 | select BR2_LEGACY | |
2690 | help | |
2691 | For consistency reasons, the jquery-ui-themes option for the | |
2692 | blitzer theme has been renamed from | |
2693 | BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to | |
2694 | BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER. | |
2695 | ||
2696 | config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO | |
2697 | bool "jquery-ui-themes option cupertino renamed" | |
2698 | select BR2_LEGACY | |
2699 | help | |
2700 | For consistency reasons, the jquery-ui-themes option for the | |
2701 | cupertino theme has been renamed from | |
2702 | BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to | |
2703 | BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO. | |
2704 | ||
2705 | config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE | |
2706 | bool "jquery-ui-themes option dark-hive renamed" | |
2707 | select BR2_LEGACY | |
2708 | help | |
2709 | For consistency reasons, the jquery-ui-themes option for the | |
2710 | dark-hive theme has been renamed from | |
2711 | BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to | |
2712 | BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE. | |
2713 | ||
2714 | config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV | |
2715 | bool "jquery-ui-themes option dot-luv renamed" | |
2716 | select BR2_LEGACY | |
2717 | help | |
2718 | For consistency reasons, the jquery-ui-themes option for the | |
2719 | dot-luv theme has been renamed from | |
2720 | BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to | |
2721 | BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV. | |
2722 | ||
2723 | config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT | |
2724 | bool "jquery-ui-themes option eggplant renamed" | |
2725 | select BR2_LEGACY | |
2726 | help | |
2727 | For consistency reasons, the jquery-ui-themes option for the | |
2728 | eggplant theme has been renamed from | |
2729 | BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to | |
2730 | BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT. | |
2731 | ||
2732 | config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE | |
2733 | bool "jquery-ui-themes option excite-bike renamed" | |
2734 | select BR2_LEGACY | |
2735 | help | |
2736 | For consistency reasons, the jquery-ui-themes option for the | |
2737 | excite-bike theme has been renamed from | |
2738 | BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to | |
2739 | BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE. | |
2740 | ||
2741 | config BR2_PACKAGE_JQUERY_UI_THEME_FLICK | |
2742 | bool "jquery-ui-themes option flick renamed" | |
2743 | select BR2_LEGACY | |
2744 | help | |
2745 | For consistency reasons, the jquery-ui-themes option for the | |
2746 | flick theme has been renamed from | |
2747 | BR2_PACKAGE_JQUERY_UI_THEME_FLICK to | |
2748 | BR2_PACKAGE_JQUERY_UI_THEMES_FLICK. | |
2749 | ||
2750 | config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS | |
2751 | bool "jquery-ui-themes option hot-sneaks renamed" | |
2752 | select BR2_LEGACY | |
2753 | help | |
2754 | For consistency reasons, the jquery-ui-themes option for the | |
2755 | hot-sneaks theme has been renamed from | |
2756 | BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to | |
2757 | BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS. | |
2758 | ||
2759 | config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY | |
2760 | bool "jquery-ui-themes option humanity renamed" | |
2761 | select BR2_LEGACY | |
2762 | help | |
2763 | For consistency reasons, the jquery-ui-themes option for the | |
2764 | humanity theme has been renamed from | |
2765 | BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to | |
2766 | BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY. | |
2767 | ||
2768 | config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG | |
2769 | bool "jquery-ui-themes option le-frog renamed" | |
2770 | select BR2_LEGACY | |
2771 | help | |
2772 | For consistency reasons, the jquery-ui-themes option for the | |
2773 | le-frog theme has been renamed from | |
2774 | BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to | |
2775 | BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG. | |
2776 | ||
2777 | config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC | |
2778 | bool "jquery-ui-themes option mint-choc renamed" | |
2779 | select BR2_LEGACY | |
2780 | help | |
2781 | For consistency reasons, the jquery-ui-themes option for the | |
2782 | mint-choc theme has been renamed from | |
2783 | BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to | |
2784 | BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC. | |
2785 | ||
2786 | config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST | |
2787 | bool "jquery-ui-themes option overcast renamed" | |
2788 | select BR2_LEGACY | |
2789 | help | |
2790 | For consistency reasons, the jquery-ui-themes option for the | |
2791 | overcast theme has been renamed from | |
2792 | BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to | |
2793 | BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST. | |
2794 | ||
2795 | config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER | |
2796 | bool "jquery-ui-themes option pepper-grinder renamed" | |
2797 | select BR2_LEGACY | |
2798 | help | |
2799 | For consistency reasons, the jquery-ui-themes option for the | |
2800 | pepper-grinder theme has been renamed from | |
2801 | BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to | |
2802 | BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER. | |
2803 | ||
2804 | config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND | |
2805 | bool "jquery-ui-themes option redmond renamed" | |
2806 | select BR2_LEGACY | |
2807 | help | |
2808 | For consistency reasons, the jquery-ui-themes option for the | |
2809 | redmond theme has been renamed from | |
2810 | BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to | |
2811 | BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND. | |
2812 | ||
2813 | config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS | |
2814 | bool "jquery-ui-themes option smoothness renamed" | |
2815 | select BR2_LEGACY | |
2816 | help | |
2817 | For consistency reasons, the jquery-ui-themes option for the | |
2818 | smoothness theme has been renamed from | |
2819 | BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to | |
2820 | BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS. | |
2821 | ||
2822 | config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET | |
2823 | bool "jquery-ui-themes option south-street renamed" | |
2824 | select BR2_LEGACY | |
2825 | help | |
2826 | For consistency reasons, the jquery-ui-themes option for the | |
2827 | south-street theme has been renamed from | |
2828 | BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to | |
2829 | BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET. | |
2830 | ||
2831 | config BR2_PACKAGE_JQUERY_UI_THEME_START | |
2832 | bool "jquery-ui-themes option start renamed" | |
2833 | select BR2_LEGACY | |
2834 | help | |
2835 | For consistency reasons, the jquery-ui-themes option for the | |
2836 | start theme has been renamed from | |
2837 | BR2_PACKAGE_JQUERY_UI_THEME_START to | |
2838 | BR2_PACKAGE_JQUERY_UI_THEMES_START. | |
2839 | ||
2840 | config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY | |
2841 | bool "jquery-ui-themes option sunny renamed" | |
2842 | select BR2_LEGACY | |
2843 | help | |
2844 | For consistency reasons, the jquery-ui-themes option for the | |
2845 | sunny theme has been renamed from | |
2846 | BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to | |
2847 | BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY. | |
2848 | ||
2849 | config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE | |
2850 | bool "jquery-ui-themes option swanky-purse renamed" | |
2851 | select BR2_LEGACY | |
2852 | help | |
2853 | For consistency reasons, the jquery-ui-themes option for the | |
2854 | swanky-purse theme has been renamed from | |
2855 | BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to | |
2856 | BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE. | |
2857 | ||
2858 | config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC | |
2859 | bool "jquery-ui-themes option trontastic renamed" | |
2860 | select BR2_LEGACY | |
2861 | help | |
2862 | For consistency reasons, the jquery-ui-themes option for the | |
2863 | trontastic theme has been renamed from | |
2864 | BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to | |
2865 | BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC. | |
2866 | ||
2867 | config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS | |
2868 | bool "jquery-ui-themes option ui-darkness renamed" | |
2869 | select BR2_LEGACY | |
2870 | help | |
2871 | For consistency reasons, the jquery-ui-themes option for the | |
2872 | ui-darkness theme has been renamed from | |
2873 | BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to | |
2874 | BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS. | |
2875 | ||
2876 | config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS | |
2877 | bool "jquery-ui-themes option ui-lightness renamed" | |
2878 | select BR2_LEGACY | |
2879 | help | |
2880 | For consistency reasons, the jquery-ui-themes option for the | |
2881 | ui-lightness theme has been renamed from | |
2882 | BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to | |
2883 | BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS. | |
2884 | ||
2885 | config BR2_PACKAGE_JQUERY_UI_THEME_VADER | |
2886 | bool "jquery-ui-themes option vader renamed" | |
2887 | select BR2_LEGACY | |
2888 | help | |
2889 | For consistency reasons, the jquery-ui-themes option for the | |
2890 | vader theme has been renamed from | |
2891 | BR2_PACKAGE_JQUERY_UI_THEME_VADER to | |
2892 | BR2_PACKAGE_JQUERY_UI_THEMES_VADER. | |
2893 | ||
b2b874fe TP |
2894 | config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH |
2895 | bool "bluez5-utils health plugin option renamed" | |
2896 | select BR2_LEGACY | |
2897 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH | |
2898 | help | |
2899 | For consistency reasons, the option | |
2900 | BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to | |
2901 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH. | |
2902 | ||
2903 | config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI | |
2904 | bool "bluez5-utils midi plugin option renamed" | |
2905 | select BR2_LEGACY | |
2906 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI | |
2907 | help | |
2908 | For consistency reasons, the option | |
2909 | BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to | |
2910 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI. | |
2911 | ||
2912 | config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC | |
2913 | bool "bluez5-utils nfc plugin option renamed" | |
2914 | select BR2_LEGACY | |
2915 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC | |
2916 | help | |
2917 | For consistency reasons, the option | |
2918 | BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to | |
2919 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC. | |
2920 | ||
2921 | config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP | |
2922 | bool "bluez5-utils sap plugin option renamed" | |
2923 | select BR2_LEGACY | |
2924 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP | |
2925 | help | |
2926 | For consistency reasons, the option | |
2927 | BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to | |
2928 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP. | |
2929 | ||
2930 | config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS | |
2931 | bool "bluez5-utils sixaxis plugin option renamed" | |
2932 | select BR2_LEGACY | |
2933 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS | |
2934 | help | |
2935 | For consistency reasons, the option | |
2936 | BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to | |
2937 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS. | |
2938 | ||
79a678d7 BK |
2939 | config BR2_PACKAGE_TRANSMISSION_REMOTE |
2940 | bool "transmission remote tool option removed" | |
2941 | select BR2_LEGACY | |
2942 | select BR2_PACKAGE_TRANSMISSION_DAEMON | |
2943 | help | |
2944 | Upstream does not provide a separate configure option for | |
2945 | the tool transmission-remote, it is built when the | |
2946 | transmission daemon has been enabled. Therefore, Buildroot | |
2947 | has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON | |
2948 | for you. | |
2949 | ||
f6421150 FF |
2950 | config BR2_PACKAGE_LIBKCAPI_APPS |
2951 | bool "libkcapi test applications removed" | |
2952 | select BR2_LEGACY | |
2953 | select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS | |
2954 | select BR2_PACKAGE_LIBKCAPI_RNGAPP | |
2955 | select BR2_PACKAGE_LIBKCAPI_SPEED | |
2956 | select BR2_PACKAGE_LIBKCAPI_TEST | |
2957 | help | |
2958 | Test applications (hasher, rng read, speed-test, test) now | |
2959 | have their own configuration options in the libkcapi menu. | |
2960 | ||
dacb1765 BK |
2961 | config BR2_PACKAGE_MPLAYER |
2962 | bool "mplayer package removed" | |
2963 | select BR2_LEGACY | |
2964 | help | |
2965 | The mplayer package was removed. | |
2966 | ||
2967 | config BR2_PACKAGE_MPLAYER_MPLAYER | |
2968 | bool "mplayer package removed" | |
2969 | select BR2_LEGACY | |
2970 | help | |
2971 | The mplayer package was removed. | |
2972 | ||
2973 | config BR2_PACKAGE_MPLAYER_MENCODER | |
2974 | bool "mplayer package removed" | |
2975 | select BR2_LEGACY | |
2976 | help | |
2977 | The mplayer package was removed. | |
2978 | ||
3f449119 BK |
2979 | config BR2_PACKAGE_LIBPLAYER_MPLAYER |
2980 | bool "mplayer support in libplayer removed" | |
2981 | select BR2_LEGACY | |
2982 | help | |
2983 | The mplayer package was removed. | |
2984 | ||
46444ba0 TP |
2985 | config BR2_PACKAGE_IQVLINUX |
2986 | bool "iqvlinux package removed" | |
2987 | select BR2_LEGACY | |
2988 | help | |
2989 | This package contained a kernel module from Intel, which | |
2990 | could only be used together with Intel userspace tools | |
2991 | provided under NDA, which also come with the same kernel | |
2992 | module. The copy of the kernel module available on | |
2993 | SourceForge is provided only to comply with the GPLv2 | |
2994 | requirement. Intel engineers were even surprised it even | |
2995 | built and were not willing to make any effort to fix their | |
2996 | tarball naming to contain a version number. Therefore, it | |
2997 | does not make sense for Buildroot to provide such a package. | |
2998 | ||
2999 | See https://sourceforge.net/p/e1000/bugs/589/ for the | |
3000 | discussion. | |
3001 | ||
e2ea4157 TP |
3002 | config BR2_BINFMT_FLAT_SEP_DATA |
3003 | bool "binfmt FLAT with separate code and data removed" | |
3004 | select BR2_LEGACY | |
3005 | help | |
3006 | This FLAT binary format was only used on Blackfin, which has | |
3007 | been removed. | |
3008 | ||
325bb379 TP |
3009 | config BR2_bfin |
3010 | bool "Blackfin architecture support removed" | |
3011 | select BR2_LEGACY | |
3012 | help | |
3013 | Following the removal of Blackfin support for the upstream | |
3014 | Linux kernel, Buildroot has removed support for this CPU | |
3015 | architecture. | |
3016 | ||
9657e964 BK |
3017 | config BR2_PACKAGE_KODI_ADSP_BASIC |
3018 | bool "kodi-adsp-basic package removed" | |
3019 | select BR2_LEGACY | |
3020 | help | |
3021 | kodi-adsp-basic is unmaintained | |
3022 | ||
3023 | config BR2_PACKAGE_KODI_ADSP_FREESURROUND | |
3024 | bool "kodi-adsp-freesurround package removed" | |
3025 | select BR2_LEGACY | |
3026 | help | |
3027 | kodi-adsp-freesurround is unmaintained | |
3028 | ||
3029 | ############################################################################### | |
86dfb429 BS |
3030 | comment "Legacy options removed in 2018.02" |
3031 | ||
2a9b7b8a PK |
3032 | config BR2_KERNEL_HEADERS_3_4 |
3033 | bool "kernel headers version 3.4.x are no longer supported" | |
2a9b7b8a PK |
3034 | select BR2_LEGACY |
3035 | help | |
3036 | Version 3.4.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3037 | maintained upstream and are now removed. |
2a9b7b8a PK |
3038 | |
3039 | config BR2_KERNEL_HEADERS_3_10 | |
3040 | bool "kernel headers version 3.10.x are no longer supported" | |
2a9b7b8a PK |
3041 | select BR2_LEGACY |
3042 | help | |
3043 | Version 3.10.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3044 | maintained upstream and are now removed. |
2a9b7b8a PK |
3045 | |
3046 | config BR2_KERNEL_HEADERS_3_12 | |
3047 | bool "kernel headers version 3.12.x are no longer supported" | |
2a9b7b8a PK |
3048 | select BR2_LEGACY |
3049 | help | |
3050 | Version 3.12.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3051 | maintained upstream and are now removed. |
2a9b7b8a | 3052 | |
453d29f1 RN |
3053 | config BR2_BINUTILS_VERSION_2_27_X |
3054 | bool "binutils version 2.27 support removed" | |
3055 | select BR2_LEGACY | |
3056 | help | |
3057 | Support for binutils version 2.27 has been removed. The | |
3058 | current default version (2.29 or later) has been selected | |
3059 | instead. | |
3060 | ||
55d79ed9 BS |
3061 | config BR2_PACKAGE_EEPROG |
3062 | bool "eeprog package removed" | |
3063 | select BR2_LEGACY | |
3064 | select BR2_PACKAGE_I2C_TOOLS | |
3065 | select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS | |
3066 | help | |
3067 | The eeprog program is now provided by the i2c-tools package. | |
3068 | ||
86dfb429 BS |
3069 | config BR2_PACKAGE_GNUPG2_GPGV2 |
3070 | bool "gnupg2 gpgv2 option removed" | |
3071 | select BR2_LEGACY | |
3072 | select BR2_PACKAGE_GNUPG2_GPGV | |
3073 | help | |
3074 | The gpgv2 executable is now named gpgv. The config option | |
3075 | has been renamed accordingly. | |
3076 | ||
f7a7d948 GB |
3077 | config BR2_PACKAGE_IMX_GPU_VIV_APITRACE |
3078 | bool "Vivante apitrace tool option removed" | |
3079 | select BR2_LEGACY | |
3080 | help | |
3081 | The apitrace tool for Vivante is not provided by the | |
3082 | imx-gpu-viv package any longer. | |
3083 | ||
3084 | config BR2_PACKAGE_IMX_GPU_VIV_G2D | |
3085 | bool "Vivante G2D libraries from imx-gpu-viv removed" | |
3086 | select BR2_LEGACY | |
3087 | select BR2_PACKAGE_IMX_GPU_G2D | |
3088 | help | |
3089 | The G2D libraries are now provided by the imx-gpu-g2d package. | |
3090 | ||
f52af619 CS |
3091 | ############################################################################### |
3092 | comment "Legacy options removed in 2017.11" | |
3093 | ||
6c10e40d CS |
3094 | config BR2_PACKAGE_RFKILL |
3095 | bool "rfkill package removed" | |
3096 | select BR2_LEGACY | |
3097 | select BR2_PACKAGE_UTIL_LINUX | |
3098 | select BR2_PACKAGE_UTIL_LINUX_RFKILL | |
3099 | help | |
3100 | The rfkill program is now provided by the util-linux package. | |
3101 | ||
d4382005 CS |
3102 | config BR2_PACKAGE_UTIL_LINUX_RESET |
3103 | bool "util-linux reset option removed" | |
3104 | select BR2_LEGACY | |
3105 | help | |
3106 | The util-linux package no longer offers a "reset" command. Use | |
3107 | either the reset command provided by BusyBox or select ncurses | |
3108 | programs, which will install a symlink from "tset" to reset. | |
3109 | ||
9d6da7a2 AD |
3110 | config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW |
3111 | bool "policycoreutils audit2allow option removed" | |
3112 | select BR2_LEGACY | |
3113 | select BR2_PACKAGE_SELINUX_PYTHON | |
3114 | select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW | |
3115 | help | |
3116 | The policycoreutils package no longer offers audit2allow | |
3117 | as a option. This package has been moved into the | |
3118 | selinux-python package by the SELinux maintainers. | |
3119 | ||
3120 | config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND | |
3121 | bool "policycoreutils restorecond option removed" | |
3122 | select BR2_LEGACY | |
3123 | select BR2_PACKAGE_RESTORECOND | |
3124 | help | |
3125 | The policycoreutils package no longer offers restorecond | |
3126 | as a option. This package has been moved into a seperate | |
3127 | package maintained by the SELinux maintainers. | |
3128 | ||
3129 | config BR2_PACKAGE_SEPOLGEN | |
3130 | bool "sepolgen package has been removed" | |
3131 | select BR2_LEGACY | |
3132 | select BR2_PACKAGE_SELINUX_PYTHON | |
3133 | select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN | |
3134 | help | |
3135 | Sepolgen is no longer a individual package, but instead has | |
3136 | been moved into the selinux-python package by the SELinux | |
3137 | maintainers. | |
3138 | ||
49a9fb0f BK |
3139 | config BR2_PACKAGE_OPENOBEX_BLUEZ |
3140 | bool "openobex bluez option removed" | |
3141 | select BR2_LEGACY | |
3142 | select BR2_PACKAGE_BLUEZ_UTILS | |
3143 | help | |
3144 | The OpenOBEX package no longer offers an option to enable or | |
3145 | disable BlueZ support. Instead, BlueZ support is always | |
3146 | included when the bluez5_utils or bluez_utils package is | |
3147 | selected. | |
3148 | ||
3149 | config BR2_PACKAGE_OPENOBEX_LIBUSB | |
3150 | bool "openobex libusb option removed" | |
3151 | select BR2_LEGACY | |
3152 | select BR2_PACKAGE_LIBUSB | |
3153 | help | |
3154 | The OpenOBEX package no longer offers an option to enable or | |
3155 | disable libusb support. Instead, USB support is always | |
3156 | included when the libusb package is selected. | |
3157 | ||
3158 | config BR2_PACKAGE_OPENOBEX_APPS | |
3159 | bool "openobex apps option removed" | |
3160 | select BR2_LEGACY | |
3161 | help | |
3162 | The OpenOBEX package no longer offers an option to enable or | |
3163 | disable apps support. | |
3164 | ||
3165 | config BR2_PACKAGE_OPENOBEX_SYSLOG | |
3166 | bool "openobex syslog option removed" | |
3167 | select BR2_LEGACY | |
3168 | help | |
3169 | The OpenOBEX package no longer offers an option to enable or | |
3170 | disable syslog support. | |
3171 | ||
3172 | config BR2_PACKAGE_OPENOBEX_DUMP | |
3173 | bool "openobex dump option removed" | |
3174 | select BR2_LEGACY | |
3175 | help | |
3176 | The OpenOBEX package no longer offers an option to enable or | |
3177 | disable dump support. | |
3178 | ||
fca70389 AM |
3179 | config BR2_PACKAGE_AICCU |
3180 | bool "aiccu utility removed" | |
3181 | select BR2_LEGACY | |
3182 | help | |
3183 | As the SixXS project has ceased its operation on 2017-06-06, | |
3184 | the AICCU utility has no use anymore and has been removed. | |
3185 | ||
3186 | https://www.sixxs.net/sunset/ | |
3187 | ||
f52af619 CS |
3188 | config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS |
3189 | bool "util-linux login utilities option removed" | |
3190 | select BR2_LEGACY | |
3191 | select BR2_PACKAGE_UTIL_LINUX_LAST | |
3192 | select BR2_PACKAGE_UTIL_LINUX_LOGIN | |
3193 | select BR2_PACKAGE_UTIL_LINUX_RUNUSER | |
3194 | select BR2_PACKAGE_UTIL_LINUX_SU | |
3195 | select BR2_PACKAGE_UTIL_LINUX_SULOGIN | |
3196 | help | |
3197 | Login utilities (last, login, runuser, su, sulogin) now have | |
3198 | their own configuration options in the util-linux menu. | |
3199 | ||
f6695219 RN |
3200 | ############################################################################### |
3201 | comment "Legacy options removed in 2017.08" | |
3202 | ||
144dc9ca YM |
3203 | config BR2_TARGET_GRUB |
3204 | bool "grub (aka grub-legacy) has been removed" | |
3205 | select BR2_LEGACY | |
3206 | help | |
3207 | grub-legacy is no longer maintained, and no longer builds with | |
3208 | recent binutils versions. | |
3209 | ||
3210 | Use grub2 or syslinux instead. | |
3211 | ||
20db0989 BM |
3212 | config BR2_PACKAGE_SIMICSFS |
3213 | bool "simicsfs support removed" | |
3214 | select BR2_LEGACY | |
3215 | help | |
3216 | Support for simicsfs kernel driver that provides access to a | |
3217 | host computer's local filesystem when the target is | |
3218 | executing within a SIMICS simulation has been removed. | |
3219 | ||
3220 | Simics is now moving away from the simicsfs kernel module, | |
3221 | as the kernel module has required too much maintenance | |
3222 | work. Users should move to the user mode Simics agent | |
3223 | instead. | |
3224 | ||
0b5dc319 TP |
3225 | config BR2_BINUTILS_VERSION_2_26_X |
3226 | bool "binutils version 2.26 support removed" | |
3227 | select BR2_LEGACY | |
3228 | help | |
3229 | Support for binutils version 2.26 has been removed. The | |
3230 | current default version (2.28 or later) has been selected | |
3231 | instead. | |
3232 | ||
b3b60706 YM |
3233 | config BR2_XTENSA_OVERLAY_DIR |
3234 | string "The BR2_XTENSA_OVERLAY_DIR option has been removed" | |
3235 | help | |
3236 | The BR2_XTENSA_OVERLAY_DIR has been removed in favour of | |
3237 | BR2_XTENSA_OVERLAY_FILE. You must now pass the complete | |
3238 | path to the overlay file, not to the directory containing | |
3239 | it. | |
3240 | ||
3241 | config BR2_XTENSA_OVERLAY_DIR_WRAP | |
3242 | bool | |
3243 | default y if BR2_XTENSA_OVERLAY_DIR != "" | |
3244 | select BR2_LEGACY | |
3245 | ||
15a96d1a | 3246 | config BR2_XTENSA_CUSTOM_NAME |
b3b60706 | 3247 | string "The BR2_XTENSA_CUSTOM_NAME option has been removed" |
15a96d1a | 3248 | help |
b3b60706 | 3249 | The BR2_XTENSA_CUSTOM_NAME option has been removed. |
15a96d1a YM |
3250 | |
3251 | config BR2_XTENSA_CUSTOM_NAME_WRAP | |
3252 | bool | |
3253 | default y if BR2_XTENSA_CUSTOM_NAME != "" | |
3254 | select BR2_LEGACY | |
3255 | ||
f47fc957 SS |
3256 | config BR2_PACKAGE_HOST_MKE2IMG |
3257 | bool "host mke2img has been removed" | |
3258 | select BR2_LEGACY | |
3259 | help | |
3260 | We now call mkfs directly to generate ext2/3/4 filesystem | |
3261 | image, so mke2img is no longer necessary. | |
3262 | ||
bee9e881 SM |
3263 | config BR2_TARGET_ROOTFS_EXT2_BLOCKS |
3264 | int "exact size in blocks has been removed" | |
3265 | default 0 | |
3266 | help | |
3267 | This option has been removed in favor of | |
3268 | BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically | |
3269 | to the value you had before. Set to 0 here to remove the | |
3270 | warning. | |
3271 | ||
3272 | config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP | |
3273 | bool | |
3274 | default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \ | |
3275 | BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value | |
3276 | select BR2_LEGACY | |
3277 | ||
3278 | # Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in | |
3279 | ||
235b6f17 SM |
3280 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES |
3281 | int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0 | |
3282 | default 0 | |
3283 | help | |
3284 | Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4 | |
3285 | images. It now automatically selects the number of inodes | |
3286 | based on the image size. The extra number of inodes can no | |
3287 | longer be provided; instead, provide the total number of | |
3288 | inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES. | |
3289 | ||
3290 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP | |
3291 | bool | |
3292 | default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0 | |
3293 | select BR2_LEGACY | |
3294 | ||
e278d85e VOR |
3295 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE |
3296 | bool "cdxaparse removed" | |
3297 | select BR2_LEGACY | |
3298 | ||
3299 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC | |
3300 | bool "dataurisrc moved to gstreamer1" | |
3301 | select BR2_LEGACY | |
3302 | help | |
3303 | Dataurisrc has moved to gstreamer core and is always built. | |
3304 | ||
3305 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP | |
3306 | bool "dccp removed" | |
3307 | select BR2_LEGACY | |
3308 | ||
3309 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE | |
3310 | bool "hdvparse removed" | |
3311 | select BR2_LEGACY | |
3312 | ||
3313 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE | |
3314 | bool "mve removed" | |
3315 | select BR2_LEGACY | |
3316 | ||
3317 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX | |
3318 | bool "nuvdemux removed" | |
3319 | select BR2_LEGACY | |
3320 | ||
3321 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT | |
3322 | bool "patchdetect removed" | |
3323 | select BR2_LEGACY | |
3324 | ||
3325 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI | |
3326 | bool "sdi removed" | |
3327 | select BR2_LEGACY | |
3328 | ||
3329 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA | |
3330 | bool "tta removed" | |
3331 | select BR2_LEGACY | |
3332 | ||
3333 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE | |
3334 | bool "videomeasure removed" | |
6e3fa33f | 3335 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA |
e278d85e | 3336 | select BR2_LEGACY |
6e3fa33f VOR |
3337 | help |
3338 | videomeasure plugin has been removed and has been replaced by | |
3339 | iqa, which has automatically been enabled. | |
e278d85e VOR |
3340 | |
3341 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK | |
3342 | bool "apexsink removed" | |
3343 | select BR2_LEGACY | |
3344 | ||
3345 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL | |
3346 | bool "sdl removed" | |
3347 | select BR2_LEGACY | |
3348 | ||
b006fe1c VOR |
3349 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD |
3350 | bool "mad (*.mp3 audio) removed" | |
3351 | select BR2_LEGACY | |
3352 | ||
0d643fd3 YM |
3353 | config BR2_STRIP_none |
3354 | bool "Strip command 'none' has been removed" | |
3355 | select BR2_LEGACY | |
3356 | help | |
3357 | The strip command choice has been changed into a single | |
3358 | boolean option. Please check that the new setting is | |
3359 | correct (in the "Build options" sub-menu) | |
3360 | ||
dd4d3c18 BK |
3361 | config BR2_PACKAGE_BEECRYPT_CPP |
3362 | bool "C++ support removed in beecrypt" | |
3363 | select BR2_LEGACY | |
3364 | help | |
3365 | Support for C++ depends on icu. The beecrypt package is | |
3366 | incompatible with icu 59+. | |
3367 | ||
622ff3d6 PK |
3368 | config BR2_PACKAGE_SPICE_CLIENT |
3369 | bool "spice client support removed" | |
3370 | select BR2_LEGACY | |
3371 | help | |
3372 | Spice client support has been removed upstream. The | |
3373 | functionality now lives in the spice-gtk widget and | |
3374 | virt-viewer. | |
3375 | ||
3376 | config BR2_PACKAGE_SPICE_GUI | |
3377 | bool "spice gui support removed" | |
3378 | select BR2_LEGACY | |
3379 | help | |
3380 | Spice gui support has been removed upstream. The | |
3381 | functionality now lives in the spice-gtk widget and | |
3382 | virt-viewer. | |
3383 | ||
6f2c0220 PK |
3384 | config BR2_PACKAGE_SPICE_TUNNEL |
3385 | bool "spice network redirection removed" | |
3386 | select BR2_LEGACY | |
3387 | help | |
3388 | Spice network redirection, aka tunnelling has been removed | |
3389 | upstream. | |
3390 | ||
438b2d13 KM |
3391 | config BR2_PACKAGE_INPUT_TOOLS |
3392 | bool "input-tools removed" | |
3393 | select BR2_LEGACY | |
3394 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
3395 | help | |
3396 | input-tools has been removed, it is replaced by | |
3397 | linuxconsoletools, which has automatically been enabled. | |
3398 | ||
3399 | config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH | |
3400 | bool "inputattach moved to linuxconsoletools" | |
3401 | select BR2_LEGACY | |
3402 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
3403 | select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH | |
3404 | help | |
3405 | input-tools has been removed, inputattach is now part | |
3406 | of linuxconsoletools, which has automatically been | |
3407 | enabled. | |
3408 | ||
3409 | config BR2_PACKAGE_INPUT_TOOLS_JSCAL | |
3410 | bool "jscal moved to linuxconsoletools" | |
3411 | select BR2_LEGACY | |
3412 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
3413 | select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK | |
3414 | help | |
3415 | input-tools has been removed, jscal is now part | |
3416 | of linuxconsoletools, which has automatically been | |
3417 | enabled. | |
3418 | ||
3419 | config BR2_PACKAGE_INPUT_TOOLS_JSTEST | |
3420 | bool "jstest moved to linuxconsoletools" | |
3421 | select BR2_LEGACY | |
3422 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
3423 | select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK | |
3424 | help | |
3425 | input-tools has been removed, jstest is now part | |
3426 | of linuxconsoletools, which has automatically been | |
3427 | enabled. | |
3428 | ||
6510a826 BS |
3429 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH |
3430 | bool "SH Sourcery toolchain has been removed" | |
3431 | select BR2_LEGACY | |
3432 | help | |
3433 | The Sourcery CodeBench toolchain for the sh architecture has | |
d6109172 RM |
3434 | been removed, since it uses glibc older than 2.17 that |
3435 | requires -lrt to link executables using clock_* system calls. | |
3436 | This makes this toolchain difficult to maintain over time. | |
6510a826 | 3437 | |
06cac646 BS |
3438 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86 |
3439 | bool "x86 Sourcery toolchain has been removed" | |
3440 | select BR2_LEGACY | |
3441 | help | |
3442 | The Sourcery CodeBench toolchain for the x86 architecture has | |
d6109172 RM |
3443 | been removed, since it uses glibc older than 2.17 that |
3444 | requires -lrt to link executables using clock_* system calls. | |
3445 | This makes this toolchain difficult to maintain over time. | |
06cac646 | 3446 | |
f6695219 RN |
3447 | config BR2_GCC_VERSION_4_8_X |
3448 | bool "gcc 4.8.x support removed" | |
3449 | select BR2_LEGACY | |
3450 | help | |
3451 | Support for gcc version 4.8.x has been removed. The current | |
3452 | default version (5.x or later) has been selected instead. | |
3453 | ||
a75eeddd GZ |
3454 | ############################################################################### |
3455 | comment "Legacy options removed in 2017.05" | |
3456 | ||
95426afd RN |
3457 | config BR2_PACKAGE_SUNXI_MALI_R2P4 |
3458 | bool "sunxi-mali r2p4 removed" | |
3459 | select BR2_LEGACY | |
3460 | help | |
3461 | sunxi-mali libMali for r2p4 Mali kernel module has been | |
3462 | removed since the libump package only provides libUMP.so.3. | |
3463 | libMali for r2p4 Mali kernel module requires libUMP.so.2. | |
3464 | ||
d999a7f2 MB |
3465 | config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT |
3466 | bool "CoffeeScript option has been removed" | |
3467 | select BR2_LEGACY | |
3468 | help | |
3469 | The option to enable NodeJS CoffeeScript has been removed. | |
3470 | To continue using it, add "coffee-script" to | |
3471 | BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL. | |
3472 | ||
096f8b13 MB |
3473 | config BR2_PACKAGE_NODEJS_MODULES_EXPRESS |
3474 | bool "Express web application framework option has been removed" | |
3475 | select BR2_LEGACY | |
3476 | help | |
3477 | The option to enable the NodeJS Express web application | |
3478 | framework has been removed. To continue using it, add | |
3479 | "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL. | |
3480 | ||
0364d44f BS |
3481 | config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL |
3482 | bool "bluez5_utils gatttool install option removed" | |
3483 | select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED | |
3484 | help | |
3485 | The option to install gatttool specifically has been removed. | |
3486 | Since version 5.44 gatttool is in the list of deprecated | |
3487 | tools. The option to build and install deprecated tools has | |
3488 | been automatically enabled. | |
3489 | ||
3b6c74d7 CP |
3490 | config BR2_PACKAGE_OPENOCD_FT2XXX |
3491 | bool "openocd ft2232 support has been removed" | |
3492 | select BR2_PACKAGE_OPENOCD_FTDI | |
3493 | select BR2_LEGACY | |
3494 | help | |
3495 | FT2232 support in OpenOCD has been removed, it's replaced by | |
3496 | FDTI support, which has automatically been enabled. | |
3497 | ||
24a07d58 BK |
3498 | config BR2_PACKAGE_KODI_RTMPDUMP |
3499 | bool "kodi rtmp has been removed" | |
3500 | select BR2_LEGACY | |
c894267a | 3501 | select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP |
24a07d58 BK |
3502 | help |
3503 | Internal rtmp support was removed from Kodi. | |
3504 | ||
d393690f BK |
3505 | config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN |
3506 | bool "kodi-visualisation-fountain has been removed" | |
3507 | select BR2_LEGACY | |
3508 | help | |
3509 | According to upstream 'the visualization is not currently | |
3510 | in a working shape.' | |
3511 | ||
1ba88a0b WB |
3512 | config BR2_PACKAGE_PORTMAP |
3513 | bool "portmap has been removed" | |
3514 | select BR2_LEGACY | |
3515 | select BR2_PACKAGE_RPCBIND | |
3516 | help | |
3517 | The portmap upstream tarball is removed, no releases since | |
3518 | ten years and latest change in upstream git in 2014. | |
3519 | You should better use rpcbind as a RPC portmapper. | |
3520 | ||
5847291b TP |
3521 | config BR2_BINUTILS_VERSION_2_25_X |
3522 | bool "binutils version 2.25 support removed" | |
3523 | select BR2_LEGACY | |
3524 | help | |
3525 | Support for binutils version 2.25 has been removed. The | |
3526 | current default version (2.27 or later) has been selected | |
3527 | instead. | |
3528 | ||
98f7de87 WB |
3529 | config BR2_TOOLCHAIN_BUILDROOT_INET_RPC |
3530 | bool "uclibc RPC support has been removed" | |
3531 | select BR2_LEGACY | |
3532 | help | |
3533 | uClibc-ng removed internal RPC implementation in 1.0.23. You | |
3534 | should use libtirpc instead. | |
3535 | ||
c6bca8ce SS |
3536 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS |
3537 | int "extra size in blocks has been removed" | |
3538 | default 0 | |
3539 | help | |
d6109172 RM |
3540 | Since the support for auto calculation of the filesystem size |
3541 | has been removed, this option is now useless and must be 0. | |
3542 | You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS | |
3543 | matchs your needs. | |
c6bca8ce SS |
3544 | |
3545 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP | |
3546 | bool | |
3547 | default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0 | |
3548 | select BR2_LEGACY | |
3549 | ||
815f7137 VOR |
3550 | config BR2_PACKAGE_SYSTEMD_KDBUS |
3551 | bool "systemd-kdbus has been removed" | |
3552 | select BR2_LEGACY | |
3553 | help | |
3554 | --enable/disable-kdbus configure option has been removed since | |
3555 | systemd-231. | |
3556 | ||
d10b493e GZ |
3557 | config BR2_PACKAGE_POLARSSL |
3558 | bool "polarssl has been removed" | |
3559 | select BR2_LEGACY | |
3560 | help | |
3561 | The polarssl crypto library has been removed since the 1.2.x | |
3562 | release branch is no longer maintained. Newer upstream | |
3563 | branches/releases (mbedtls) have API changes so they're not | |
3564 | drop-in replacements. | |
3565 | ||
6155118f YM |
3566 | config BR2_NBD_CLIENT |
3567 | bool "nbd client option was renamed" | |
3568 | select BR2_LEGACY | |
3569 | select BR2_PACKAGE_NBD_CLIENT | |
3570 | help | |
d6109172 RM |
3571 | The nbd client option has been renamed to |
3572 | BR2_PACKAGE_NBD_CLIENT. | |
6155118f YM |
3573 | |
3574 | config BR2_NBD_SERVER | |
3575 | bool "nbd server option was renamed" | |
3576 | select BR2_LEGACY | |
3577 | select BR2_PACKAGE_NBD_SERVER | |
3578 | help | |
d6109172 RM |
3579 | The nbd server option has been renamed to |
3580 | BR2_PACKAGE_NBD_SERVER. | |
6155118f | 3581 | |
6a9c6311 CS |
3582 | config BR2_PACKAGE_GMOCK |
3583 | bool "gmock merged into gtest package" | |
3584 | select BR2_LEGACY | |
3585 | select BR2_PACKAGE_GTEST | |
3586 | select BR2_PACKAGE_GTEST_GMOCK | |
3587 | help | |
3588 | GMock is now a suboption of the GTest package. | |
3589 | ||
5f73ff53 GZ |
3590 | config BR2_KERNEL_HEADERS_4_8 |
3591 | bool "kernel headers version 4.8.x are no longer supported" | |
5f73ff53 GZ |
3592 | select BR2_LEGACY |
3593 | help | |
3594 | Version 4.8.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3595 | maintained upstream and are now removed. |
5f73ff53 GZ |
3596 | |
3597 | config BR2_KERNEL_HEADERS_3_18 | |
3598 | bool "kernel headers version 3.18.x are no longer supported" | |
5f73ff53 GZ |
3599 | select BR2_LEGACY |
3600 | help | |
3601 | Version 3.18.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3602 | maintained upstream and are now removed. |
5f73ff53 | 3603 | |
a75eeddd GZ |
3604 | config BR2_GLIBC_VERSION_2_22 |
3605 | bool "glibc 2.22 removed" | |
3606 | select BR2_LEGACY | |
3607 | help | |
3608 | Support for glibc version 2.22 has been removed. The current | |
3609 | default version has been selected instead. | |
3610 | ||
ed364d1e TP |
3611 | ############################################################################### |
3612 | comment "Legacy options removed in 2017.02" | |
3613 | ||
8546ff31 FP |
3614 | config BR2_PACKAGE_PERL_DB_FILE |
3615 | bool "perl-db-file removed" | |
3616 | select BR2_LEGACY | |
3617 | select BR2_PACKAGE_BERKELEYDB | |
3618 | select BR2_PACKAGE_PERL | |
3619 | help | |
3620 | DB_File can be built as a core Perl module, so the separate | |
3621 | perl-db-file package has been removed. | |
3622 | ||
6be22624 GZ |
3623 | config BR2_KERNEL_HEADERS_4_7 |
3624 | bool "kernel headers version 4.7.x are no longer supported" | |
6be22624 GZ |
3625 | select BR2_LEGACY |
3626 | help | |
3627 | Version 4.7.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3628 | maintained upstream and are now removed. |
6be22624 GZ |
3629 | |
3630 | config BR2_KERNEL_HEADERS_4_6 | |
3631 | bool "kernel headers version 4.6.x are no longer supported" | |
6be22624 GZ |
3632 | select BR2_LEGACY |
3633 | help | |
3634 | Version 4.6.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3635 | maintained upstream and are now removed. |
6be22624 GZ |
3636 | |
3637 | config BR2_KERNEL_HEADERS_4_5 | |
3638 | bool "kernel headers version 4.5.x are no longer supported" | |
6be22624 GZ |
3639 | select BR2_LEGACY |
3640 | help | |
3641 | Version 4.5.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3642 | maintained upstream and are now removed. |
6be22624 GZ |
3643 | |
3644 | config BR2_KERNEL_HEADERS_3_14 | |
3645 | bool "kernel headers version 3.14.x are no longer supported" | |
6be22624 GZ |
3646 | select BR2_LEGACY |
3647 | help | |
3648 | Version 3.14.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3649 | maintained upstream and are now removed. |
6be22624 | 3650 | |
63abbcce RN |
3651 | config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS |
3652 | bool "musl-cross 1.1.12 toolchain removed" | |
3653 | select BR2_LEGACY | |
3654 | help | |
3655 | The support for the prebuilt toolchain based on the Musl C | |
3656 | library provided by the musl-cross project has been removed. | |
d6109172 RM |
3657 | Upstream doesn't provide any prebuilt toolchain anymore, use |
3658 | the Buildroot toolchain instead. | |
63abbcce | 3659 | |
a44d7f2d WB |
3660 | config BR2_UCLIBC_INSTALL_TEST_SUITE |
3661 | bool "uClibc tests now in uclibc-ng-test" | |
3662 | select BR2_LEGACY | |
3663 | select BR2_PACKAGE_UCLIBC_NG_TEST | |
3664 | help | |
3665 | The test suite of the uClibc C library has been moved into a | |
3666 | separate package, uclibc-ng-test. | |
3667 | ||
311bc137 AV |
3668 | config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX |
3669 | bool "Blackfin.uclinux.org 2014R1 toolchain removed" | |
3670 | select BR2_LEGACY | |
3671 | help | |
3672 | The ADI Blackfin toolchain has many bugs which are fixed in | |
3673 | more recent gcc and uClibc-ng releases. Use the Buildroot | |
3674 | toolchain instead. | |
3675 | ||
207294ff AV |
3676 | config BR2_PACKAGE_MAKEDEVS |
3677 | bool "makedevs removed" | |
3678 | select BR2_LEGACY | |
3679 | help | |
3680 | The makedevs tool is part of busybox. The Buildroot fork | |
3681 | should not be used outside of the Buildroot infrastructure. | |
3682 | ||
b5c00f09 AV |
3683 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A |
3684 | bool "Arago ARMv7 2011.09 removed" | |
3685 | select BR2_LEGACY | |
3686 | help | |
3687 | The Arago toolchains are every old and not updated anymore. | |
3688 | ||
3689 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE | |
3690 | bool "Arago ARMv5 2011.09 removed" | |
3691 | select BR2_LEGACY | |
3692 | help | |
3693 | The Arago toolchains are every old and not updated anymore. | |
3694 | ||
ed364d1e TP |
3695 | config BR2_PACKAGE_SNOWBALL_HDMISERVICE |
3696 | bool "snowball-hdmiservice removed" | |
3697 | select BR2_LEGACY | |
3698 | help | |
3699 | We no longer have support for the Snowball platform in | |
3700 | Buildroot, so this package was no longer useful. | |
3701 | ||
3702 | config BR2_PACKAGE_SNOWBALL_INIT | |
3703 | bool "snowball-init removed" | |
3704 | select BR2_LEGACY | |
3705 | help | |
3706 | We no longer have support for the Snowball platform in | |
3707 | Buildroot, so this package was no longer useful. | |
3708 | ||
69aa0574 JK |
3709 | config BR2_GDB_VERSION_7_9 |
3710 | bool "gdb 7.9 has been removed" | |
3711 | select BR2_LEGACY | |
3712 | help | |
3713 | The 7.9 version of gdb has been removed. Use a newer version | |
3714 | instead. | |
3715 | ||
e782cd5b YM |
3716 | ############################################################################### |
3717 | comment "Legacy options removed in 2016.11" | |
3718 | ||
c457213f FF |
3719 | config BR2_PACKAGE_PHP_SAPI_CLI_CGI |
3720 | bool "PHP CGI and CLI options are now seperate" | |
3721 | select BR2_PACKAGE_PHP_SAPI_CLI | |
3722 | select BR2_PACKAGE_PHP_SAPI_CGI | |
c087cbe5 | 3723 | select BR2_LEGACY |
c457213f FF |
3724 | help |
3725 | The PHP Interface options have been split up into a | |
3726 | separate option for each interface. | |
3727 | ||
3728 | config BR2_PACKAGE_PHP_SAPI_CLI_FPM | |
3729 | bool "PHP CLI and FPM options are now separate" | |
3730 | select BR2_PACKAGE_PHP_SAPI_CLI | |
3731 | select BR2_PACKAGE_PHP_SAPI_FPM | |
c087cbe5 | 3732 | select BR2_LEGACY |
c457213f FF |
3733 | help |
3734 | The PHP Interface options have been split up into a | |
3735 | separate option for each interface. | |
3736 | ||
3534399d AV |
3737 | config BR2_PACKAGE_WVSTREAMS |
3738 | bool "wvstreams removed" | |
3739 | select BR2_LEGACY | |
3740 | help | |
3741 | wvstreams is not maintained anymore since about 2009. It also | |
3742 | doesn't build anymore with recent compilers (GCC 5+). | |
3743 | ||
152d4b66 AV |
3744 | config BR2_PACKAGE_WVDIAL |
3745 | bool "wvdial removed" | |
3746 | select BR2_LEGACY | |
3747 | help | |
3748 | wvdial is not maintained anymore since about 2009. It also | |
3749 | doesn't build anymore with recent compilers (GCC 5+). | |
3750 | ||
79c82a35 AV |
3751 | config BR2_PACKAGE_WEBKITGTK24 |
3752 | bool "webkitgtk 2.4.x removed" | |
3753 | select BR2_LEGACY | |
3754 | help | |
3755 | This legacy package only existed because some other packages | |
3756 | depended on that specific version of webkitgtk. However, the | |
3757 | other packages have been fixed. webkitgtk 2.4 is full of | |
3758 | security issues so it needs to be removed. | |
3759 | ||
ea3a7ee0 AV |
3760 | config BR2_PACKAGE_TORSMO |
3761 | bool "torsmo removed" | |
3762 | select BR2_LEGACY | |
3763 | help | |
3764 | torsmo has been unmaintained for a long time, and nobody | |
3765 | seems to be interested in it. | |
3766 | ||
290166f2 AV |
3767 | config BR2_PACKAGE_SSTRIP |
3768 | bool "sstrip removed" | |
3769 | select BR2_LEGACY | |
3770 | help | |
3771 | sstrip is unmaintained and potentially harmful. It doesn't | |
3772 | save so much compared to normal binutils strip, and there is | |
3773 | a big risk of binaries that don't work. Use normal strip | |
3774 | instead. | |
3775 | ||
133466f5 AV |
3776 | config BR2_KERNEL_HEADERS_4_3 |
3777 | bool "kernel headers version 4.3.x are no longer supported" | |
133466f5 AV |
3778 | select BR2_LEGACY |
3779 | help | |
3780 | Version 4.3.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3781 | maintained upstream and are now removed. |
133466f5 AV |
3782 | |
3783 | config BR2_KERNEL_HEADERS_4_2 | |
3784 | bool "kernel headers version 4.2.x are no longer supported" | |
133466f5 AV |
3785 | select BR2_LEGACY |
3786 | help | |
3787 | Version 4.2.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3788 | maintained upstream and are now removed. |
133466f5 | 3789 | |
1c2a63ad AV |
3790 | config BR2_PACKAGE_KODI_ADDON_XVDR |
3791 | bool "kodi-addon-xvdr removed" | |
3792 | select BR2_LEGACY | |
3793 | help | |
3794 | According to the github project page: | |
3795 | https://github.com/pipelka/xbmc-addon-xvdr | |
3796 | this package is discontinued. | |
3797 | ||
3b80ca89 AV |
3798 | config BR2_PACKAGE_IPKG |
3799 | bool "ipkg removed" | |
3800 | select BR2_LEGACY | |
3801 | help | |
3802 | ipkg dates back to the early 2000s when Compaq started the | |
d6109172 RM |
3803 | handhelds.org project and it hasn't seen development since |
3804 | 2006. Use opkg as a replacement. | |
3b80ca89 | 3805 | |
a7c13c1b AV |
3806 | config BR2_GCC_VERSION_4_7_X |
3807 | bool "gcc 4.7.x support removed" | |
3808 | select BR2_LEGACY | |
3809 | help | |
3810 | Support for gcc version 4.7.x has been removed. The current | |
3811 | default version (4.9.x or later) has been selected instead. | |
3812 | ||
d8878112 AV |
3813 | config BR2_BINUTILS_VERSION_2_24_X |
3814 | bool "binutils version 2.24 support removed" | |
3815 | select BR2_LEGACY | |
3816 | help | |
3817 | Support for binutils version 2.24 has been removed. The | |
3818 | current default version (2.26 or later) has been selected | |
3819 | instead. | |
3820 | ||
8c85a5f0 GZ |
3821 | config BR2_PACKAGE_WESTON_RPI |
3822 | bool "Weston propietary RPI support is gone" | |
3823 | select BR2_LEGACY | |
3824 | help | |
3825 | Upstream decided the propietary (rpi-userland) weston composer | |
3826 | support wasn't worth the effort so it was removed. Switch to | |
3827 | the open VC4 support. | |
3828 | ||
20b14466 YM |
3829 | config BR2_LINUX_KERNEL_TOOL_CPUPOWER |
3830 | bool "linux-tool cpupower" | |
3831 | depends on BR2_LINUX_KERNEL | |
3832 | select BR2_LEGACY | |
3833 | select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER | |
3834 | help | |
3835 | Linux tool cpupower option was renamed. | |
3836 | ||
3837 | config BR2_LINUX_KERNEL_TOOL_PERF | |
3838 | bool "linux-tool perf" | |
3839 | depends on BR2_LINUX_KERNEL | |
3840 | select BR2_LEGACY | |
3841 | select BR2_PACKAGE_LINUX_TOOLS_PERF | |
3842 | help | |
3843 | Linux tool perf option was renamed. | |
3844 | ||
3845 | config BR2_LINUX_KERNEL_TOOL_SELFTESTS | |
3846 | bool "linux-tool selftests" | |
3847 | depends on BR2_LINUX_KERNEL | |
3848 | select BR2_LEGACY | |
3849 | select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS | |
3850 | help | |
3851 | Linux tool selftests option was renamed. | |
3852 | ||
50332a53 TP |
3853 | config BR2_GCC_VERSION_4_8_ARC |
3854 | bool "gcc arc option renamed" | |
3855 | select BR2_LEGACY | |
3856 | select BR2_GCC_VERSION_ARC | |
3857 | help | |
3858 | The option that selects the gcc version for the ARC | |
3859 | architecture has been renamed to BR2_GCC_VERSION_ARC. | |
3860 | ||
3c590a3e GZ |
3861 | config BR2_KERNEL_HEADERS_4_0 |
3862 | bool "kernel headers version 4.0.x are no longer supported" | |
3c590a3e GZ |
3863 | select BR2_LEGACY |
3864 | help | |
3865 | Version 4.0.x of the Linux kernel headers have been deprecated | |
3866 | for more than four buildroot releases and are now removed. | |
3c590a3e GZ |
3867 | |
3868 | config BR2_KERNEL_HEADERS_3_19 | |
3869 | bool "kernel headers version 3.19.x are no longer supported" | |
3c590a3e GZ |
3870 | select BR2_LEGACY |
3871 | help | |
d6109172 RM |
3872 | Version 3.19.x of the Linux kernel headers have been |
3873 | deprecated for more than four buildroot releases and are now | |
3874 | removed. | |
3c590a3e | 3875 | |
0e517317 RN |
3876 | config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS |
3877 | bool "libevas-generic-loaders package removed" | |
3878 | select BR2_LEGACY | |
3879 | select BR2_PACKAGE_EFL | |
3880 | help | |
d6109172 RM |
3881 | With EFL 1.18, libevas-generic-loaders is now provided by the |
3882 | efl package. | |
0e517317 | 3883 | |
c22b7580 RN |
3884 | config BR2_PACKAGE_ELEMENTARY |
3885 | bool "elementary package removed" | |
3886 | select BR2_LEGACY | |
3887 | select BR2_PACKAGE_EFL | |
3888 | help | |
3889 | With EFL 1.18, elementary is now provided by the efl package. | |
3890 | ||
e782cd5b YM |
3891 | config BR2_LINUX_KERNEL_CUSTOM_LOCAL |
3892 | bool "Linux kernel local directory option removed" | |
3893 | help | |
d6109172 RM |
3894 | The option to select a local directory as the source of the |
3895 | Linux kernel has been removed. It hurts reproducibility of | |
3896 | builds. | |
e782cd5b YM |
3897 | |
3898 | In case you were using this option during development of your | |
3899 | Linux kernel, use the override mechanism instead. | |
3900 | ||
20ed897b TP |
3901 | ############################################################################### |
3902 | comment "Legacy options removed in 2016.08" | |
3903 | ||
ac191071 AV |
3904 | config BR2_PACKAGE_EFL_JP2K |
3905 | bool "libevas jp2k loader has been removed" | |
3906 | select BR2_LEGACY | |
5354a75e | 3907 | help |
ac191071 AV |
3908 | JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc) |
3909 | while Buildroot only packages openjpeg 2.x. Therefore, the | |
3910 | JP2K loader has been removed from EFL. | |
3911 | ||
638cfb5e MH |
3912 | config BR2_PACKAGE_SYSTEMD_COMPAT |
3913 | bool "systemd compatibility libraries have been removed" | |
d246b984 | 3914 | select BR2_LEGACY |
638cfb5e | 3915 | help |
17bccf17 | 3916 | The systemd option to enable the compatibility libraries has |
638cfb5e MH |
3917 | been removed. Theses libraries have been useless since a few |
3918 | version, and have been fully dropped from the source since | |
3919 | v230. | |
3920 | ||
5baa92b0 MN |
3921 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER |
3922 | bool "gst1-plugins-bad liveadder plugin removed" | |
3923 | select BR2_LEGACY | |
3924 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER | |
3925 | help | |
3926 | The functionality of the liveadder plugin of the | |
3927 | gst1-plugins-bad package has been merged into audiomixer. | |
3928 | ||
0f92b19d AW |
3929 | config BR2_PACKAGE_LIBFSLVPUWRAP |
3930 | bool "libfslvpuwrap has been renamed to imx-vpuwrap" | |
3931 | select BR2_LEGACY | |
3932 | select BR2_PACKAGE_IMX_VPUWRAP | |
3933 | help | |
d6109172 RM |
3934 | The libfslvpuwrap has been renamed to match the renamed |
3935 | package. | |
0f92b19d | 3936 | |
64998907 AW |
3937 | config BR2_PACKAGE_LIBFSLPARSER |
3938 | bool "libfslparser has been renamed to imx-parser" | |
3939 | select BR2_LEGACY | |
3940 | select BR2_PACKAGE_IMX_PARSER | |
3941 | help | |
d6109172 RM |
3942 | The libfslparser has been renamed to match the renamed |
3943 | package. | |
64998907 | 3944 | |
47e6203f AW |
3945 | config BR2_PACKAGE_LIBFSLCODEC |
3946 | bool "libfslcodec has been renamed to imx-codec" | |
3947 | select BR2_LEGACY | |
3948 | select BR2_PACKAGE_IMX_CODEC | |
3949 | help | |
3950 | The libfslcodec has been renamed to match the renamed package. | |
3951 | ||
b5d99008 CS |
3952 | config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT |
3953 | bool "FIT support in uboot-tools has been refactored" | |
3954 | select BR2_LEGACY | |
3955 | select BR2_PACKAGE_DTC | |
3956 | select BR2_PACKAGE_DTC_PROGRAMS | |
3957 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT | |
3958 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT | |
3959 | select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE | |
3960 | help | |
3961 | This option has been removed in favor of a more fine-grained | |
3962 | configuration, which is recommended. Selecting this option | |
3963 | enables FIT and FIT signature support for the target packages. | |
3964 | It will also select the dtc and openssl packages. | |
3965 | ||
f253c146 WB |
3966 | config BR2_PTHREADS_OLD |
3967 | bool "linuxthreads (stable/old)" | |
3968 | select BR2_LEGACY | |
3969 | help | |
3970 | Linuxthreads have been reworked, BR2_PTHREADS_OLD is now | |
3971 | BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed. | |
3972 | ||
ae466a60 TP |
3973 | config BR2_BINUTILS_VERSION_2_23_X |
3974 | bool "binutils 2.23 removed" | |
3975 | select BR2_LEGACY | |
3976 | help | |
3977 | Binutils 2.23 has been removed, using a newer version is | |
3978 | recommended. | |
3979 | ||
500de259 TP |
3980 | config BR2_TOOLCHAIN_BUILDROOT_EGLIBC |
3981 | bool "eglibc support has been removed" | |
3982 | select BR2_LEGACY | |
3983 | help | |
3984 | The eglibc project no longer exists, as it has been merged | |
3985 | back into the glibc project. Therefore, support for eglibc | |
3986 | has been removed, and glibc should be used instead. | |
3987 | ||
20ed897b TP |
3988 | config BR2_GDB_VERSION_7_8 |
3989 | bool "gdb 7.8 has been removed" | |
3990 | select BR2_LEGACY | |
3991 | help | |
3992 | The 7.8 version of gdb has been removed. Use a newer version | |
3993 | instead. | |
3994 | ||
f0c94704 | 3995 | ############################################################################### |
2661c4f1 | 3996 | comment "Legacy options removed in 2016.05" |
f0c94704 | 3997 | |
3380da69 GZ |
3998 | config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL |
3999 | bool "openvpn polarssl crypto backend removed" | |
4000 | select BR2_LEGACY | |
4001 | help | |
4002 | The OpenVPN polarssl crypto backend option has been removed. | |
4003 | Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't | |
4004 | compatible with mbedtls (polarssl) series 2.x which is the | |
4005 | version provided in buildroot. And both can't coexist. | |
4006 | It now uses OpenSSL as the only option. | |
4007 | ||
4dfc2cb5 MB |
4008 | config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE |
4009 | bool "nginx http spdy module removed" | |
4010 | select BR2_LEGACY | |
4011 | select BR2_PACKAGE_NGINX_HTTP_V2_MODULE | |
4012 | help | |
4013 | The ngx_http_spdy_module has been superseded by the | |
4014 | ngx_http_v2_module since nginx v1.9.5. The | |
4015 | ngx_http_v2_module modules has been automatically selected | |
4016 | in your configuration. | |
4017 | ||
0c956f2d GZ |
4018 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP |
4019 | bool "gst1-plugins-bad rtp plugin moved to good" | |
4020 | select BR2_LEGACY | |
4021 | help | |
4022 | The rtp plugin has been moved from gst1-plugins-base to | |
4023 | gst1-plugins-good. | |
4024 | ||
4196cf90 GZ |
4025 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123 |
4026 | bool "gst1-plugins-bad mpg123 plugin moved to ugly" | |
4027 | select BR2_LEGACY | |
4028 | help | |
4029 | The mpg123 plugin has been moved from gst1-plugins-bad to | |
4030 | gst1-plugins-ugly. | |
4031 | ||
8490e833 GZ |
4032 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC |
4033 | bool "PowerPC Sourcery toolchain has been removed" | |
4034 | select BR2_LEGACY | |
4035 | help | |
4036 | The Sourcery CodeBench toolchain for the PowerPC | |
4037 | architecture has been removed, as it was very old, not | |
4038 | maintained, and causing numerous build failures with modern | |
4039 | userspace packages. | |
4040 | ||
4041 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2 | |
4042 | bool "PowerPC Sourcery E500v2 toolchain has been removed" | |
4043 | select BR2_LEGACY | |
4044 | help | |
4045 | The Sourcery CodeBench toolchain for the PowerPC E500v2 | |
4046 | architecture has been removed, as it was very old, not | |
4047 | maintained, and causing numerous build failures with modern | |
4048 | userspace packages. | |
4049 | ||
6cb4814c TP |
4050 | config BR2_x86_i386 |
4051 | bool "x86 i386 support removed" | |
7aaa730c | 4052 | select BR2_LEGACY |
6cb4814c TP |
4053 | help |
4054 | The support for the i386 processors of the x86 architecture | |
4055 | has been removed. | |
4056 | ||
f75ee80d JC |
4057 | config BR2_PACKAGE_QT5QUICK1 |
4058 | bool "qt5quick1 package removed" | |
4059 | select BR2_LEGACY | |
4060 | help | |
4061 | The qt5quick1 package has been removed, since it was removed | |
4062 | from upstream starting from Qt 5.6. | |
4063 | ||
21b25d28 | 4064 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR |
f61583fc | 4065 | string "uboot custom patch dir has been removed" |
21b25d28 GZ |
4066 | help |
4067 | The uboot custom patch directory option has been removed. Use | |
4068 | the improved BR2_TARGET_UBOOT_PATCH option instead. | |
4069 | ||
f61583fc DM |
4070 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP |
4071 | bool | |
4072 | default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != "" | |
4073 | select BR2_LEGACY | |
4074 | ||
4075 | # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from | |
4076 | # boot/uboot/Config.in | |
4077 | ||
f80ad2fd GZ |
4078 | config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID |
4079 | bool "xf86-input-void removed" | |
4080 | select BR2_LEGACY | |
4081 | help | |
4082 | The xf86-input-void package has been removed, there's no need | |
4083 | for it in any modern (post-2007) xorg server. | |
4084 | ||
b8de1788 GZ |
4085 | config BR2_KERNEL_HEADERS_3_17 |
4086 | bool "kernel headers version 3.17.x are no longer supported" | |
b8de1788 GZ |
4087 | select BR2_LEGACY |
4088 | help | |
d6109172 RM |
4089 | Version 3.17.x of the Linux kernel headers have been |
4090 | deprecated for more than four buildroot releases and are now | |
4091 | removed. | |
b8de1788 | 4092 | |
ffc324ea GZ |
4093 | config BR2_GDB_VERSION_7_7 |
4094 | bool "gdb 7.7 has been removed" | |
4095 | select BR2_LEGACY | |
4096 | help | |
4097 | The 7.7 version of gdb has been removed. Use a newer version | |
4098 | instead. | |
4099 | ||
75945ddc GZ |
4100 | config BR2_PACKAGE_FOOMATIC_FILTERS |
4101 | bool "foomatic-filters" | |
4102 | select BR2_LEGACY | |
4103 | help | |
4104 | The foomatic-filters package was removed. | |
4105 | ||
7bd9dbc1 GZ |
4106 | config BR2_PACKAGE_SAMBA |
4107 | bool "samba" | |
4108 | select BR2_LEGACY | |
4109 | help | |
4110 | The samba package was removed in favour of samba4 since the | |
4111 | 3.x series isn't supported by upstream any longer. | |
4112 | ||
6922b41d BK |
4113 | config BR2_PACKAGE_KODI_WAVPACK |
4114 | bool "wavpack" | |
4115 | select BR2_LEGACY | |
4116 | help | |
4117 | wavpack support was removed in favour of ffmpeg: | |
4118 | https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4 | |
4119 | ||
75ce17d0 BK |
4120 | config BR2_PACKAGE_KODI_RSXS |
4121 | bool "rsxs support in Kodi was moved to an addon" | |
4122 | select BR2_LEGACY | |
4123 | select BR2_PACKAGE_KODI_SCREENSAVER_RSXS | |
4124 | help | |
4125 | rsxs support in Kodi was moved to an addon | |
4126 | ||
56b80ece BK |
4127 | config BR2_PACKAGE_KODI_GOOM |
4128 | bool "Goom support in Kodi was moved to an addon" | |
4129 | select BR2_LEGACY | |
4130 | select BR2_PACKAGE_KODI_VISUALISATION_GOOM | |
4131 | help | |
4132 | Goom support in Kodi was moved to an addon | |
4133 | ||
e5a073ac GE |
4134 | config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS |
4135 | bool "systemd all extras option has been removed" | |
4136 | select BR2_LEGACY | |
4137 | select BR2_PACKAGE_XZ | |
4138 | select BR2_PACKAGE_LIBGCRYPT | |
4139 | help | |
4140 | The systemd option to enable "all extras" has been | |
4141 | removed. To get the same features, the libgcrypt and xz | |
4142 | package should now be enabled. | |
4143 | ||
8c0a367d GZ |
4144 | config BR2_GCC_VERSION_4_5_X |
4145 | bool "gcc 4.5.x has been removed" | |
4146 | select BR2_LEGACY | |
4147 | help | |
4148 | The 4.5.x version of gcc has been removed. Use a newer | |
4149 | version instead. | |
4150 | ||
007c2ce9 | 4151 | config BR2_PACKAGE_SQLITE_READLINE |
62da71c9 | 4152 | bool "sqlite command-line editing support was updated" |
007c2ce9 BK |
4153 | select BR2_PACKAGE_NCURSES |
4154 | select BR2_PACKAGE_READLINE | |
4155 | select BR2_LEGACY | |
4156 | help | |
4157 | This option was removed in favour of the sqlite package | |
4158 | deciding itself depending on the enabled packages whether | |
4159 | command-line editing should be enabled, it also also takes | |
4160 | libedit into account. | |
4161 | ||
f0c94704 LC |
4162 | ############################################################################### |
4163 | comment "Legacy options removed in 2016.02" | |
4164 | ||
f39ac4d2 BK |
4165 | config BR2_PACKAGE_DOVECOT_BZIP2 |
4166 | bool "bzip2 support option has been removed" | |
4167 | select BR2_LEGACY | |
4168 | select BR2_PACKAGE_BZIP2 | |
4169 | help | |
4170 | Bzip2 support is built if the bzip2 package is selected. | |
4171 | ||
4172 | config BR2_PACKAGE_DOVECOT_ZLIB | |
4173 | bool "zlib support option has been removed" | |
4174 | select BR2_LEGACY | |
4175 | select BR2_PACKAGE_ZLIB | |
4176 | help | |
4177 | Zlib support is built if the zlib package is selected. | |
4178 | ||
ead1df42 JK |
4179 | config BR2_PACKAGE_E2FSPROGS_FINDFS |
4180 | bool "e2fsprogs findfs option has been removed" | |
4181 | select BR2_LEGACY | |
4182 | help | |
4183 | This option attempted to enable findfs capabilities from | |
4184 | e2fsprogs but has not worked since July 2015 (due to | |
4185 | packaging changes). One can use BusyBox's findfs support or | |
860020f3 | 4186 | enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option. |
ead1df42 | 4187 | |
b1063a01 RN |
4188 | config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL |
4189 | bool "openpowerlink debug option has been removed" | |
4190 | select BR2_LEGACY | |
4191 | help | |
d6109172 RM |
4192 | This option depends on BR2_ENABLE_DEBUG which should not be |
4193 | used by packages anymore. | |
b1063a01 RN |
4194 | |
4195 | config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE | |
4196 | bool "openpowerlink package has been updated" | |
4197 | select BR2_LEGACY | |
4198 | select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB | |
4199 | help | |
4200 | openpowerlink kernel modules are built if the | |
4201 | kernel stack library is selected. | |
4202 | ||
4203 | config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP | |
4204 | bool "openpowerlink package has been updated" | |
4205 | select BR2_LEGACY | |
4206 | select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB | |
4207 | help | |
4208 | The user space support has been split in two part: | |
4209 | - a monolitic user space library | |
4210 | - a user spae deamon driver | |
4211 | ||
e3e0583f YM |
4212 | config BR2_LINUX_KERNEL_SAME_AS_HEADERS |
4213 | bool "using the linux headers version for the kernel has been removed" | |
4214 | select BR2_LEGACY | |
4215 | help | |
4216 | The option to use the version of the kernel headers for the | |
4217 | kernel to build has been removed. | |
4218 | ||
4219 | There is now the converse, better-suited and more versatile | |
4220 | option to use the kernel version for the linux headers. | |
4221 | ||
d37ce8e1 OS |
4222 | config BR2_PACKAGE_CUPS_PDFTOPS |
4223 | bool "Pdftops support has been removed from Cups" | |
917de0f7 | 4224 | select BR2_PACKAGE_CUPS_FILTERS |
d37ce8e1 OS |
4225 | select BR2_LEGACY |
4226 | help | |
4227 | Pdftops support has been removed from the cups package | |
4228 | It is now part of the cups-filters package. | |
4229 | ||
d8da5f10 GZ |
4230 | config BR2_KERNEL_HEADERS_3_16 |
4231 | bool "kernel headers version 3.16.x are no longer supported" | |
d8da5f10 GZ |
4232 | select BR2_LEGACY |
4233 | help | |
d6109172 RM |
4234 | Version 3.16.x of the Linux kernel headers have been |
4235 | deprecated for more than four buildroot releases and are now | |
4236 | removed. | |
d8da5f10 | 4237 | |
af45a4f4 YY |
4238 | config BR2_PACKAGE_PYTHON_PYXML |
4239 | bool "python-pyxml package has been removed" | |
4240 | select BR2_LEGACY | |
4241 | help | |
4242 | PyXML is obsolete and its functionality is covered either via | |
4243 | native Python XML support or python-lxml package. | |
4244 | ||
d29c7196 SN |
4245 | # BR2_ENABLE_SSP is still referenced in Config.in (default in choice) |
4246 | config BR2_ENABLE_SSP | |
4247 | bool "Stack Smashing protection now has different levels" | |
4248 | help | |
d6109172 RM |
4249 | The protection offered by SSP can now be selected from |
4250 | different protection levels. Be sure to review the SSP level | |
4251 | in the build options menu. | |
d29c7196 | 4252 | |
1e3d2cad | 4253 | config BR2_PACKAGE_DIRECTFB_CLE266 |
e989ddbe | 4254 | bool "cle266 driver for directfb removed" |
1e3d2cad GZ |
4255 | select BR2_LEGACY |
4256 | help | |
4257 | The cle266 directfb driver support has been removed. | |
4258 | It doesn't build in the latest version and it's unlikely | |
4259 | anyone has any use for it. | |
4260 | ||
4261 | config BR2_PACKAGE_DIRECTFB_UNICHROME | |
e989ddbe | 4262 | bool "unichrome driver for directfb removed" |
1e3d2cad GZ |
4263 | select BR2_LEGACY |
4264 | help | |
4265 | The unichrome directfb driver support has been removed. | |
4266 | It doesn't build in the latest version and it's unlikely | |
4267 | anyone has any use for it. | |
4268 | ||
820e1685 RN |
4269 | config BR2_PACKAGE_LIBELEMENTARY |
4270 | bool "libelementary has been renamed to elementary" | |
4271 | select BR2_LEGACY | |
4272 | select BR2_PACKAGE_ELEMENTARY | |
4273 | help | |
d6109172 RM |
4274 | The libelementary package has been renamed to match the |
4275 | upstream name. | |
820e1685 | 4276 | |
a9d1f5f6 RN |
4277 | config BR2_PACKAGE_LIBEINA |
4278 | bool "libeina package has been removed" | |
4279 | select BR2_LEGACY | |
4280 | select BR2_PACKAGE_EFL | |
4281 | help | |
1f83a7a7 | 4282 | With EFL 1.15, libeina is now provided by the efl package. |
a9d1f5f6 | 4283 | |
49700f08 RN |
4284 | config BR2_PACKAGE_LIBEET |
4285 | bool "libeet package has been removed" | |
4286 | select BR2_LEGACY | |
4287 | select BR2_PACKAGE_EFL | |
4288 | help | |
1f83a7a7 | 4289 | With EFL 1.15, libeet is now provided by the efl package. |
49700f08 | 4290 | |
e5989d6c RN |
4291 | config BR2_PACKAGE_LIBEVAS |
4292 | bool "libevas package has been removed" | |
4293 | select BR2_LEGACY | |
4294 | select BR2_PACKAGE_EFL | |
4295 | help | |
1f83a7a7 | 4296 | With EFL 1.15, libevas is now provided by the efl package. |
e5989d6c | 4297 | |
1fe1b60b RN |
4298 | config BR2_PACKAGE_LIBECORE |
4299 | bool "libecore package has been removed" | |
4300 | select BR2_LEGACY | |
4301 | select BR2_PACKAGE_EFL | |
4302 | help | |
1f83a7a7 | 4303 | With EFL 1.15, libecore is now provided by the efl package. |
1fe1b60b | 4304 | |
8c05c38d RN |
4305 | config BR2_PACKAGE_LIBEDBUS |
4306 | bool "libedbus package has been removed" | |
4307 | select BR2_LEGACY | |
4308 | select BR2_PACKAGE_EFL | |
4309 | help | |
1f83a7a7 | 4310 | With EFL 1.15, libedbus is now provided by the efl package. |
8c05c38d | 4311 | |
d2b042c1 RN |
4312 | config BR2_PACKAGE_LIBEFREET |
4313 | bool "libefreet package has been removed" | |
4314 | select BR2_LEGACY | |
4315 | select BR2_PACKAGE_EFL | |
4316 | help | |
1f83a7a7 | 4317 | With EFL 1.15, libefreet is now provided by the efl package. |
d2b042c1 | 4318 | |
e155c957 RN |
4319 | config BR2_PACKAGE_LIBEIO |
4320 | bool "libeio package has been removed" | |
4321 | select BR2_LEGACY | |
4322 | select BR2_PACKAGE_EFL | |
4323 | help | |
1f83a7a7 | 4324 | With EFL 1.15, libeio is now provided by the efl package. |
e155c957 | 4325 | |
b728fb77 RN |
4326 | config BR2_PACKAGE_LIBEMBRYO |
4327 | bool "libembryo package has been removed" | |
4328 | select BR2_LEGACY | |
4329 | select BR2_PACKAGE_EFL | |
4330 | help | |
1f83a7a7 | 4331 | With EFL 1.15, libembryo is now provided by the efl package. |
b728fb77 | 4332 | |
4c93c107 RN |
4333 | config BR2_PACKAGE_LIBEDJE |
4334 | bool "libedje package has been removed" | |
4335 | select BR2_LEGACY | |
4336 | select BR2_PACKAGE_EFL | |
4337 | help | |
1f83a7a7 | 4338 | With EFL 1.15, libedje is now provided by the efl package. |
4c93c107 | 4339 | |
905dba10 RN |
4340 | config BR2_PACKAGE_LIBETHUMB |
4341 | bool "libethumb package has been removed" | |
4342 | select BR2_LEGACY | |
4343 | select BR2_PACKAGE_EFL | |
4344 | help | |
1f83a7a7 | 4345 | With EFL 1.15, libethumb is now provided by the efl package. |
905dba10 | 4346 | |
f0c94704 LC |
4347 | config BR2_PACKAGE_INFOZIP |
4348 | bool "infozip option has been renamed to zip" | |
4349 | select BR2_LEGACY | |
4350 | select BR2_PACKAGE_ZIP | |
4351 | help | |
4352 | Info-Zip's Zip package has been renamed from infozip to zip, | |
d6109172 RM |
4353 | to avoid ambiguities with Info-Zip's UnZip which has been |
4354 | added in the unzip package. | |
f0c94704 | 4355 | |
a2d16600 | 4356 | config BR2_BR2_PACKAGE_NODEJS_0_10_X |
75b70492 | 4357 | bool "nodejs 0.10.x option removed" |
a2d16600 MB |
4358 | select BR2_LEGACY |
4359 | select BR2_PACKAGE_NODEJS | |
4360 | help | |
75b70492 | 4361 | nodejs 0.10.x option has been removed. 0.10.x is now |
d6109172 RM |
4362 | automatically chosen for ARMv5 architectures only and the |
4363 | latest nodejs for all other supported architectures. The | |
4364 | correct nodejs version has been automatically selected in your | |
4365 | configuration. | |
a2d16600 | 4366 | |
a314b878 MB |
4367 | config BR2_BR2_PACKAGE_NODEJS_0_12_X |
4368 | bool "nodejs version 0.12.x has been removed" | |
4369 | select BR2_LEGACY | |
4370 | select BR2_PACKAGE_NODEJS | |
4371 | help | |
4372 | nodejs version 0.12.x has been removed. As an alternative, | |
4373 | the latest nodejs version has been automatically selected in | |
4374 | your configuration. | |
4375 | ||
90bf67c0 MB |
4376 | config BR2_BR2_PACKAGE_NODEJS_4_X |
4377 | bool "nodejs version 4.x has been removed" | |
4378 | select BR2_LEGACY | |
4379 | select BR2_PACKAGE_NODEJS | |
4380 | help | |
4381 | nodejs version 4.x has been removed. As an alternative, | |
4382 | the latest nodejs version has been automatically selected in | |
4383 | your configuration. | |
4384 | ||
16b8e813 | 4385 | ############################################################################### |
ae46e8f9 TP |
4386 | comment "Legacy options removed in 2015.11" |
4387 | ||
301e8ffb PS |
4388 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL |
4389 | bool "gst1-plugins-bad real plugin has been removed" | |
4390 | select BR2_LEGACY | |
4391 | help | |
4392 | The real plugin from GStreamer 1 bad plugins has been | |
4393 | removed. | |
4394 | ||
f7dd5cb2 PS |
4395 | config BR2_PACKAGE_MEDIA_CTL |
4396 | bool "media-ctl package has been removed" | |
4397 | select BR2_LEGACY | |
4398 | select BR2_PACKAGE_LIBV4L | |
4399 | select BR2_PACKAGE_LIBV4L_UTILS | |
4400 | help | |
d6109172 RM |
4401 | media-ctl source and developement have been moved to v4l-utils |
4402 | since June 2014. For an up-to-date media-ctl version select | |
4403 | BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS. | |
f7dd5cb2 | 4404 | |
f8031339 RN |
4405 | config BR2_PACKAGE_SCHIFRA |
4406 | bool "schifra package has been removed" | |
758c5c7f | 4407 | select BR2_LEGACY |
f8031339 | 4408 | help |
d6109172 RM |
4409 | Schifra package has been maked broken since 2014.11 release |
4410 | and haven't been fixed since then. | |
f8031339 | 4411 | |
7e5ddbcb MH |
4412 | config BR2_PACKAGE_ZXING |
4413 | bool "zxing option has been renamed" | |
4414 | select BR2_LEGACY | |
4415 | select BR2_PACKAGE_ZXING_CPP | |
4416 | help | |
d6109172 RM |
4417 | ZXing no longer provides the cpp bindings, it has been renamed |
4418 | to BR2_PACKAGE_ZXING_CPP which uses a new upstream. | |
7e5ddbcb | 4419 | |
4d131b4d YM |
4420 | # Since FreeRDP has new dependencies, protect this legacy to avoid the |
4421 | # infamous "unmet direct dependencies" kconfig error. | |
4422 | config BR2_PACKAGE_FREERDP_CLIENT | |
4423 | bool "freerdp client option renamed" | |
4424 | depends on BR2_PACKAGE_FREERDP | |
758c5c7f | 4425 | select BR2_LEGACY |
4d131b4d YM |
4426 | select BR2_PACKAGE_FREERDP_CLIENT_X11 |
4427 | ||
a658c4d1 GZ |
4428 | config BR2_PACKAGE_BLACKBOX |
4429 | bool "blackbox package has been removed" | |
4430 | select BR2_LEGACY | |
4431 | help | |
4432 | Upstream is dead and the package has been deprecated for | |
4433 | some time. There are other alternative maintained WMs. | |
4434 | ||
4ac4bc32 GZ |
4435 | config BR2_KERNEL_HEADERS_3_0 |
4436 | bool "kernel headers version 3.0.x are no longer supported" | |
4ac4bc32 GZ |
4437 | select BR2_LEGACY |
4438 | help | |
4439 | Version 3.0.x of the Linux kernel headers have been deprecated | |
4440 | for more than four buildroot releases and are now removed. | |
4ac4bc32 GZ |
4441 | |
4442 | config BR2_KERNEL_HEADERS_3_11 | |
4443 | bool "kernel headers version 3.11.x are no longer supported" | |
4ac4bc32 GZ |
4444 | select BR2_LEGACY |
4445 | help | |
d6109172 RM |
4446 | Version 3.11.x of the Linux kernel headers have been |
4447 | deprecated for more than four buildroot releases and are now | |
4448 | removed. | |
4ac4bc32 GZ |
4449 | |
4450 | config BR2_KERNEL_HEADERS_3_13 | |
4451 | bool "kernel headers version 3.13.x are no longer supported" | |
4ac4bc32 GZ |
4452 | select BR2_LEGACY |
4453 | help | |
d6109172 RM |
4454 | Version 3.13.x of the Linux kernel headers have been |
4455 | deprecated for more than four buildroot releases and are now | |
4456 | removed. | |
4ac4bc32 GZ |
4457 | |
4458 | config BR2_KERNEL_HEADERS_3_15 | |
4459 | bool "kernel headers version 3.15.x are no longer supported" | |
4ac4bc32 GZ |
4460 | select BR2_LEGACY |
4461 | help | |
d6109172 RM |
4462 | Version 3.15.x of the Linux kernel headers have been |
4463 | deprecated for more than four buildroot releases and are now | |
4464 | removed. | |
4ac4bc32 | 4465 | |
80404e8c TP |
4466 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI |
4467 | bool "DirectFB example df_andi has been removed" | |
758c5c7f | 4468 | select BR2_LEGACY |
80404e8c TP |
4469 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4470 | help | |
4471 | The per-DirectFB example options have been removed. The | |
4472 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4473 | examples. | |
4474 | ||
4475 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD | |
4476 | bool "DirectFB example df_bltload has been removed" | |
758c5c7f | 4477 | select BR2_LEGACY |
80404e8c TP |
4478 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4479 | help | |
4480 | The per-DirectFB example options have been removed. The | |
4481 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4482 | examples. | |
4483 | ||
4484 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD | |
4485 | bool "DirectFB example df_cpuload has been removed" | |
758c5c7f | 4486 | select BR2_LEGACY |
80404e8c TP |
4487 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4488 | help | |
4489 | The per-DirectFB example options have been removed. The | |
4490 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4491 | examples. | |
4492 | ||
4493 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER | |
4494 | bool "DirectFB example df_databuffer has been removed" | |
758c5c7f | 4495 | select BR2_LEGACY |
80404e8c TP |
4496 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4497 | help | |
4498 | The per-DirectFB example options have been removed. The | |
4499 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4500 | examples. | |
4501 | ||
4502 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD | |
4503 | bool "DirectFB example df_dioload has been removed" | |
758c5c7f | 4504 | select BR2_LEGACY |
80404e8c TP |
4505 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4506 | help | |
4507 | The per-DirectFB example options have been removed. The | |
4508 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4509 | examples. | |
4510 | ||
4511 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK | |
4512 | bool "DirectFB example df_dok has been removed" | |
758c5c7f | 4513 | select BR2_LEGACY |
80404e8c TP |
4514 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4515 | help | |
4516 | The per-DirectFB example options have been removed. The | |
4517 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4518 | examples. | |
4519 | ||
4520 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST | |
4521 | bool "DirectFB example df_drivertest has been removed" | |
758c5c7f | 4522 | select BR2_LEGACY |
80404e8c TP |
4523 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4524 | help | |
4525 | The per-DirectFB example options have been removed. The | |
4526 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4527 | examples. | |
4528 | ||
80404e8c TP |
4529 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE |
4530 | bool "DirectFB example df_fire has been removed" | |
758c5c7f | 4531 | select BR2_LEGACY |
80404e8c TP |
4532 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4533 | help | |
4534 | The per-DirectFB example options have been removed. The | |
4535 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4536 | examples. | |
4537 | ||
4538 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP | |
4539 | bool "DirectFB example df_flip has been removed" | |
758c5c7f | 4540 | select BR2_LEGACY |
80404e8c TP |
4541 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4542 | help | |
4543 | The per-DirectFB example options have been removed. The | |
4544 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4545 | examples. | |
4546 | ||
4547 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS | |
4548 | bool "DirectFB example df_fonts has been removed" | |
758c5c7f | 4549 | select BR2_LEGACY |
80404e8c TP |
4550 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4551 | help | |
4552 | The per-DirectFB example options have been removed. The | |
4553 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4554 | examples. | |
4555 | ||
4556 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT | |
4557 | bool "DirectFB example df_input has been removed" | |
758c5c7f | 4558 | select BR2_LEGACY |
80404e8c TP |
4559 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4560 | help | |
4561 | The per-DirectFB example options have been removed. The | |
4562 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4563 | examples. | |
4564 | ||
4565 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK | |
4566 | bool "DirectFB example df_joystick has been removed" | |
758c5c7f | 4567 | select BR2_LEGACY |
80404e8c TP |
4568 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4569 | help | |
4570 | The per-DirectFB example options have been removed. The | |
4571 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4572 | examples. | |
4573 | ||
4574 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES | |
4575 | bool "DirectFB example df_knuckles has been removed" | |
758c5c7f | 4576 | select BR2_LEGACY |
80404e8c TP |
4577 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4578 | help | |
4579 | The per-DirectFB example options have been removed. The | |
4580 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4581 | examples. | |
4582 | ||
4583 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER | |
4584 | bool "DirectFB example df_layer has been removed" | |
758c5c7f | 4585 | select BR2_LEGACY |
80404e8c TP |
4586 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4587 | help | |
4588 | The per-DirectFB example options have been removed. The | |
4589 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4590 | examples. | |
4591 | ||
4592 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX | |
4593 | bool "DirectFB example df_matrix has been removed" | |
758c5c7f | 4594 | select BR2_LEGACY |
80404e8c TP |
4595 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4596 | help | |
4597 | The per-DirectFB example options have been removed. The | |
4598 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4599 | examples. | |
4600 | ||
4601 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER | |
4602 | bool "DirectFB example df_matrix_water has been removed" | |
758c5c7f | 4603 | select BR2_LEGACY |
80404e8c TP |
4604 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4605 | help | |
4606 | The per-DirectFB example options have been removed. The | |
4607 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4608 | examples. | |
4609 | ||
4610 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO | |
4611 | bool "DirectFB example df_neo has been removed" | |
758c5c7f | 4612 | select BR2_LEGACY |
80404e8c TP |
4613 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4614 | help | |
4615 | The per-DirectFB example options have been removed. The | |
4616 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4617 | examples. | |
4618 | ||
4619 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD | |
4620 | bool "DirectFB example df_netload has been removed" | |
758c5c7f | 4621 | select BR2_LEGACY |
80404e8c TP |
4622 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4623 | help | |
4624 | The per-DirectFB example options have been removed. The | |
4625 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4626 | examples. | |
4627 | ||
4628 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE | |
4629 | bool "DirectFB example df_palette has been removed" | |
4630 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
4631 | help | |
4632 | The per-DirectFB example options have been removed. The | |
4633 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4634 | examples. | |
4635 | ||
4636 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE | |
4637 | bool "DirectFB example df_particle has been removed" | |
758c5c7f | 4638 | select BR2_LEGACY |
80404e8c TP |
4639 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4640 | help | |
4641 | The per-DirectFB example options have been removed. The | |
4642 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4643 | examples. | |
4644 | ||
4645 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER | |
4646 | bool "DirectFB example df_porter has been removed" | |
758c5c7f | 4647 | select BR2_LEGACY |
80404e8c TP |
4648 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4649 | help | |
4650 | The per-DirectFB example options have been removed. The | |
4651 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4652 | examples. | |
4653 | ||
4654 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS | |
4655 | bool "DirectFB example df_stress has been removed" | |
4656 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
4657 | help | |
4658 | The per-DirectFB example options have been removed. The | |
4659 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4660 | examples. | |
4661 | ||
4662 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE | |
4663 | bool "DirectFB example df_texture has been removed" | |
758c5c7f | 4664 | select BR2_LEGACY |
80404e8c TP |
4665 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4666 | help | |
4667 | The per-DirectFB example options have been removed. The | |
4668 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4669 | examples. | |
4670 | ||
4671 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO | |
4672 | bool "DirectFB example df_video has been removed" | |
758c5c7f | 4673 | select BR2_LEGACY |
80404e8c TP |
4674 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4675 | help | |
4676 | The per-DirectFB example options have been removed. The | |
4677 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4678 | examples. | |
4679 | ||
4680 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE | |
4681 | bool "DirectFB example df_video_particle has been removed" | |
758c5c7f | 4682 | select BR2_LEGACY |
80404e8c TP |
4683 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4684 | help | |
4685 | The per-DirectFB example options have been removed. The | |
4686 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4687 | examples. | |
4688 | ||
4689 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW | |
4690 | bool "DirectFB example df_window has been removed" | |
758c5c7f | 4691 | select BR2_LEGACY |
80404e8c TP |
4692 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
4693 | help | |
4694 | The per-DirectFB example options have been removed. The | |
4695 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
4696 | examples. | |
4697 | ||
2b78fb21 GB |
4698 | config BR2_PACKAGE_KOBS_NG |
4699 | bool "kobs-ng was replaced by imx-kobs" | |
4700 | select BR2_LEGACY | |
4701 | select BR2_PACKAGE_IMX_KOBS | |
4702 | help | |
4703 | The outdated kobs-ng has been replaced by the Freescale- | |
4704 | maintained imx-kobs package. | |
4705 | ||
11573f5a TP |
4706 | config BR2_PACKAGE_SAWMAN |
4707 | bool "sawman package removed" | |
4708 | select BR2_LEGACY | |
4709 | select BR2_PACKAGE_DIRECTFB_SAWMAN | |
4710 | help | |
4711 | This option has been removed because the sawman package no | |
4712 | longer exists: it was merged inside DirectFB itself. This | |
4713 | feature can now be enabled using the | |
4714 | BR2_PACKAGE_DIRECTFB_SAWMAN option. | |
4715 | ||
ae46e8f9 TP |
4716 | config BR2_PACKAGE_DIVINE |
4717 | bool "divine package removed" | |
4718 | select BR2_LEGACY | |
4719 | select BR2_PACKAGE_DIRECTFB_DIVINE | |
4720 | help | |
4721 | This option has been removed because the divine package no | |
4722 | longer exists: it was merged inside DirectFB itself. This | |
4723 | feature can now be enabled using the | |
4724 | BR2_PACKAGE_DIRECTFB_DIVINE option. | |
4725 | ||
4726 | ############################################################################### | |
16b8e813 GZ |
4727 | comment "Legacy options removed in 2015.08" |
4728 | ||
9d9f1a92 BK |
4729 | config BR2_PACKAGE_KODI_PVR_ADDONS |
4730 | bool "Kodi PVR addon was split" | |
4731 | select BR2_LEGACY | |
2579ec20 | 4732 | select BR2_PACKAGE_KODI_PVR_ARGUSTV |
a69eca43 | 4733 | select BR2_PACKAGE_KODI_PVR_DVBLINK |
6894c6c7 | 4734 | select BR2_PACKAGE_KODI_PVR_DVBVIEWER |
313e45cd | 4735 | select BR2_PACKAGE_KODI_PVR_FILMON |
6940d66a | 4736 | select BR2_PACKAGE_KODI_PVR_HTS |
8c326ff8 | 4737 | select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE |
a571287d | 4738 | select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER |
afb2f155 | 4739 | select BR2_PACKAGE_KODI_PVR_MYTHTV |
0757c7d3 | 4740 | select BR2_PACKAGE_KODI_PVR_NEXTPVR |
805e9c15 | 4741 | select BR2_PACKAGE_KODI_PVR_NJOY |
8776003d | 4742 | select BR2_PACKAGE_KODI_PVR_PCTV |
70cf949f | 4743 | select BR2_PACKAGE_KODI_PVR_STALKER |
610a3701 | 4744 | select BR2_PACKAGE_KODI_PVR_VBOX |
7457d487 | 4745 | select BR2_PACKAGE_KODI_PVR_VDR_VNSI |
eaf250c1 | 4746 | select BR2_PACKAGE_KODI_PVR_VUPLUS |
967a4e9a | 4747 | select BR2_PACKAGE_KODI_PVR_WMC |
9d9f1a92 BK |
4748 | help |
4749 | Kodi PVR addon was split into seperate modules | |
4750 | ||
f84cc202 GZ |
4751 | config BR2_BINUTILS_VERSION_2_23_2 |
4752 | bool "binutils 2.23 option renamed" | |
4753 | select BR2_LEGACY | |
f84cc202 | 4754 | help |
ae466a60 TP |
4755 | Binutils 2.23.2 has been removed, using a newer version is |
4756 | recommended. | |
f84cc202 GZ |
4757 | |
4758 | config BR2_BINUTILS_VERSION_2_24 | |
4759 | bool "binutils 2.24 option renamed" | |
4760 | select BR2_LEGACY | |
4761 | select BR2_BINUTILS_VERSION_2_24_X | |
4762 | help | |
4763 | The binutils version option has been renamed to match the | |
4764 | same patchlevel logic used by gcc. The new option is now | |
4765 | BR2_BINUTILS_VERSION_2_24_X. | |
4766 | ||
4767 | config BR2_BINUTILS_VERSION_2_25 | |
4768 | bool "binutils 2.25 option renamed" | |
4769 | select BR2_LEGACY | |
4770 | select BR2_BINUTILS_VERSION_2_25_X | |
4771 | help | |
4772 | The binutils version option has been renamed to match the | |
4773 | same patchlevel logic used by gcc. The new option is now | |
4774 | BR2_BINUTILS_VERSION_2_25_X. | |
4775 | ||
1326e761 RN |
4776 | config BR2_PACKAGE_PERF |
4777 | bool "perf option has been renamed" | |
4778 | select BR2_LEGACY | |
4779 | select BR2_LINUX_KERNEL_TOOL_PERF | |
4780 | help | |
4781 | The perf package has been moved as a Linux tools package, | |
4782 | and the option to enable it is now | |
4783 | BR2_LINUX_KERNEL_TOOL_PERF. | |
4784 | ||
2f845953 TP |
4785 | config BR2_BINUTILS_VERSION_2_22 |
4786 | bool "binutils 2.22 removed" | |
4787 | select BR2_LEGACY | |
4788 | help | |
4789 | Binutils 2.22 has been removed, using a newer version is | |
4790 | recommended. | |
4791 | ||
4c0613e7 GB |
4792 | config BR2_PACKAGE_GPU_VIV_BIN_MX6Q |
4793 | bool "gpu-viv-bin-mx6q" | |
4794 | select BR2_LEGACY | |
4795 | select BR2_PACKAGE_IMX_GPU_VIV | |
4796 | help | |
4797 | Vivante graphics libraries have been renamed to | |
4798 | BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package | |
4799 | name. | |
4800 | ||
7742abe0 | 4801 | config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS |
7742abe0 | 4802 | bool "libsemanage python bindings removed" |
a1264445 | 4803 | depends on BR2_PACKAGE_PYTHON |
758c5c7f | 4804 | select BR2_LEGACY |
7742abe0 MW |
4805 | help |
4806 | This option has been removed, since the libsemanage Python | |
4807 | bindings on the target were not useful. | |
4808 | ||
16b8e813 GZ |
4809 | config BR2_TARGET_UBOOT_NETWORK |
4810 | bool "U-Boot custom network settings removed" | |
4811 | select BR2_LEGACY | |
4812 | help | |
4813 | U-Boot's custom network settings options have been removed. | |
4814 | ||
a91a5c16 | 4815 | endmenu |
53903a15 AV |
4816 | |
4817 | endif # !SKIP_LEGACY |