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