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