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