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