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