]>
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 | |
86dfb429 | 145 | ############################################################################### |
9657e964 BK |
146 | comment "Legacy options removed in 2018.05" |
147 | ||
46444ba0 TP |
148 | config BR2_PACKAGE_IQVLINUX |
149 | bool "iqvlinux package removed" | |
150 | select BR2_LEGACY | |
151 | help | |
152 | This package contained a kernel module from Intel, which | |
153 | could only be used together with Intel userspace tools | |
154 | provided under NDA, which also come with the same kernel | |
155 | module. The copy of the kernel module available on | |
156 | SourceForge is provided only to comply with the GPLv2 | |
157 | requirement. Intel engineers were even surprised it even | |
158 | built and were not willing to make any effort to fix their | |
159 | tarball naming to contain a version number. Therefore, it | |
160 | does not make sense for Buildroot to provide such a package. | |
161 | ||
162 | See https://sourceforge.net/p/e1000/bugs/589/ for the | |
163 | discussion. | |
164 | ||
9657e964 BK |
165 | config BR2_PACKAGE_KODI_ADSP_BASIC |
166 | bool "kodi-adsp-basic package removed" | |
167 | select BR2_LEGACY | |
168 | help | |
169 | kodi-adsp-basic is unmaintained | |
170 | ||
171 | config BR2_PACKAGE_KODI_ADSP_FREESURROUND | |
172 | bool "kodi-adsp-freesurround package removed" | |
173 | select BR2_LEGACY | |
174 | help | |
175 | kodi-adsp-freesurround is unmaintained | |
176 | ||
177 | ############################################################################### | |
86dfb429 BS |
178 | comment "Legacy options removed in 2018.02" |
179 | ||
2a9b7b8a PK |
180 | config BR2_KERNEL_HEADERS_3_4 |
181 | bool "kernel headers version 3.4.x are no longer supported" | |
182 | select BR2_KERNEL_HEADERS_4_1 | |
183 | select BR2_LEGACY | |
184 | help | |
185 | Version 3.4.x of the Linux kernel headers are no longer | |
186 | maintained upstream and are now removed. As an alternative, | |
187 | version 4.1.x of the headers have been automatically | |
188 | selected in your configuration. | |
189 | ||
190 | config BR2_KERNEL_HEADERS_3_10 | |
191 | bool "kernel headers version 3.10.x are no longer supported" | |
192 | select BR2_KERNEL_HEADERS_4_1 | |
193 | select BR2_LEGACY | |
194 | help | |
195 | Version 3.10.x of the Linux kernel headers are no longer | |
196 | maintained upstream and are now removed. As an alternative, | |
197 | version 4.1.x of the headers have been automatically | |
198 | selected in your configuration. | |
199 | ||
200 | config BR2_KERNEL_HEADERS_3_12 | |
201 | bool "kernel headers version 3.12.x are no longer supported" | |
202 | select BR2_KERNEL_HEADERS_4_1 | |
203 | select BR2_LEGACY | |
204 | help | |
205 | Version 3.12.x of the Linux kernel headers are no longer | |
206 | maintained upstream and are now removed. As an alternative, | |
207 | version 4.1.x of the headers have been automatically | |
208 | selected in your configuration. | |
209 | ||
453d29f1 RN |
210 | config BR2_BINUTILS_VERSION_2_27_X |
211 | bool "binutils version 2.27 support removed" | |
212 | select BR2_LEGACY | |
213 | help | |
214 | Support for binutils version 2.27 has been removed. The | |
215 | current default version (2.29 or later) has been selected | |
216 | instead. | |
217 | ||
55d79ed9 BS |
218 | config BR2_PACKAGE_EEPROG |
219 | bool "eeprog package removed" | |
220 | select BR2_LEGACY | |
221 | select BR2_PACKAGE_I2C_TOOLS | |
222 | select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS | |
223 | help | |
224 | The eeprog program is now provided by the i2c-tools package. | |
225 | ||
86dfb429 BS |
226 | config BR2_PACKAGE_GNUPG2_GPGV2 |
227 | bool "gnupg2 gpgv2 option removed" | |
228 | select BR2_LEGACY | |
229 | select BR2_PACKAGE_GNUPG2_GPGV | |
230 | help | |
231 | The gpgv2 executable is now named gpgv. The config option | |
232 | has been renamed accordingly. | |
233 | ||
f7a7d948 GB |
234 | config BR2_PACKAGE_IMX_GPU_VIV_APITRACE |
235 | bool "Vivante apitrace tool option removed" | |
236 | select BR2_LEGACY | |
237 | help | |
238 | The apitrace tool for Vivante is not provided by the | |
239 | imx-gpu-viv package any longer. | |
240 | ||
241 | config BR2_PACKAGE_IMX_GPU_VIV_G2D | |
242 | bool "Vivante G2D libraries from imx-gpu-viv removed" | |
243 | select BR2_LEGACY | |
244 | select BR2_PACKAGE_IMX_GPU_G2D | |
245 | help | |
246 | The G2D libraries are now provided by the imx-gpu-g2d package. | |
247 | ||
f52af619 CS |
248 | ############################################################################### |
249 | comment "Legacy options removed in 2017.11" | |
250 | ||
6c10e40d CS |
251 | config BR2_PACKAGE_RFKILL |
252 | bool "rfkill package removed" | |
253 | select BR2_LEGACY | |
254 | select BR2_PACKAGE_UTIL_LINUX | |
255 | select BR2_PACKAGE_UTIL_LINUX_RFKILL | |
256 | help | |
257 | The rfkill program is now provided by the util-linux package. | |
258 | ||
d4382005 CS |
259 | config BR2_PACKAGE_UTIL_LINUX_RESET |
260 | bool "util-linux reset option removed" | |
261 | select BR2_LEGACY | |
262 | help | |
263 | The util-linux package no longer offers a "reset" command. Use | |
264 | either the reset command provided by BusyBox or select ncurses | |
265 | programs, which will install a symlink from "tset" to reset. | |
266 | ||
9d6da7a2 AD |
267 | config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW |
268 | bool "policycoreutils audit2allow option removed" | |
269 | select BR2_LEGACY | |
270 | select BR2_PACKAGE_SELINUX_PYTHON | |
271 | select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW | |
272 | help | |
273 | The policycoreutils package no longer offers audit2allow | |
274 | as a option. This package has been moved into the | |
275 | selinux-python package by the SELinux maintainers. | |
276 | ||
277 | config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND | |
278 | bool "policycoreutils restorecond option removed" | |
279 | select BR2_LEGACY | |
280 | select BR2_PACKAGE_RESTORECOND | |
281 | help | |
282 | The policycoreutils package no longer offers restorecond | |
283 | as a option. This package has been moved into a seperate | |
284 | package maintained by the SELinux maintainers. | |
285 | ||
286 | config BR2_PACKAGE_SEPOLGEN | |
287 | bool "sepolgen package has been removed" | |
288 | select BR2_LEGACY | |
289 | select BR2_PACKAGE_SELINUX_PYTHON | |
290 | select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN | |
291 | help | |
292 | Sepolgen is no longer a individual package, but instead has | |
293 | been moved into the selinux-python package by the SELinux | |
294 | maintainers. | |
295 | ||
49a9fb0f BK |
296 | config BR2_PACKAGE_OPENOBEX_BLUEZ |
297 | bool "openobex bluez option removed" | |
298 | select BR2_LEGACY | |
299 | select BR2_PACKAGE_BLUEZ_UTILS | |
300 | help | |
301 | The OpenOBEX package no longer offers an option to enable or | |
302 | disable BlueZ support. Instead, BlueZ support is always | |
303 | included when the bluez5_utils or bluez_utils package is | |
304 | selected. | |
305 | ||
306 | config BR2_PACKAGE_OPENOBEX_LIBUSB | |
307 | bool "openobex libusb option removed" | |
308 | select BR2_LEGACY | |
309 | select BR2_PACKAGE_LIBUSB | |
310 | help | |
311 | The OpenOBEX package no longer offers an option to enable or | |
312 | disable libusb support. Instead, USB support is always | |
313 | included when the libusb package is selected. | |
314 | ||
315 | config BR2_PACKAGE_OPENOBEX_APPS | |
316 | bool "openobex apps option removed" | |
317 | select BR2_LEGACY | |
318 | help | |
319 | The OpenOBEX package no longer offers an option to enable or | |
320 | disable apps support. | |
321 | ||
322 | config BR2_PACKAGE_OPENOBEX_SYSLOG | |
323 | bool "openobex syslog option removed" | |
324 | select BR2_LEGACY | |
325 | help | |
326 | The OpenOBEX package no longer offers an option to enable or | |
327 | disable syslog support. | |
328 | ||
329 | config BR2_PACKAGE_OPENOBEX_DUMP | |
330 | bool "openobex dump option removed" | |
331 | select BR2_LEGACY | |
332 | help | |
333 | The OpenOBEX package no longer offers an option to enable or | |
334 | disable dump support. | |
335 | ||
fca70389 AM |
336 | config BR2_PACKAGE_AICCU |
337 | bool "aiccu utility removed" | |
338 | select BR2_LEGACY | |
339 | help | |
340 | As the SixXS project has ceased its operation on 2017-06-06, | |
341 | the AICCU utility has no use anymore and has been removed. | |
342 | ||
343 | https://www.sixxs.net/sunset/ | |
344 | ||
f52af619 CS |
345 | config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS |
346 | bool "util-linux login utilities option removed" | |
347 | select BR2_LEGACY | |
348 | select BR2_PACKAGE_UTIL_LINUX_LAST | |
349 | select BR2_PACKAGE_UTIL_LINUX_LOGIN | |
350 | select BR2_PACKAGE_UTIL_LINUX_RUNUSER | |
351 | select BR2_PACKAGE_UTIL_LINUX_SU | |
352 | select BR2_PACKAGE_UTIL_LINUX_SULOGIN | |
353 | help | |
354 | Login utilities (last, login, runuser, su, sulogin) now have | |
355 | their own configuration options in the util-linux menu. | |
356 | ||
f6695219 RN |
357 | ############################################################################### |
358 | comment "Legacy options removed in 2017.08" | |
359 | ||
144dc9ca YM |
360 | config BR2_TARGET_GRUB |
361 | bool "grub (aka grub-legacy) has been removed" | |
362 | select BR2_LEGACY | |
363 | help | |
364 | grub-legacy is no longer maintained, and no longer builds with | |
365 | recent binutils versions. | |
366 | ||
367 | Use grub2 or syslinux instead. | |
368 | ||
20db0989 BM |
369 | config BR2_PACKAGE_SIMICSFS |
370 | bool "simicsfs support removed" | |
371 | select BR2_LEGACY | |
372 | help | |
373 | Support for simicsfs kernel driver that provides access to a | |
374 | host computer's local filesystem when the target is | |
375 | executing within a SIMICS simulation has been removed. | |
376 | ||
377 | Simics is now moving away from the simicsfs kernel module, | |
378 | as the kernel module has required too much maintenance | |
379 | work. Users should move to the user mode Simics agent | |
380 | instead. | |
381 | ||
0b5dc319 TP |
382 | config BR2_BINUTILS_VERSION_2_26_X |
383 | bool "binutils version 2.26 support removed" | |
384 | select BR2_LEGACY | |
385 | help | |
386 | Support for binutils version 2.26 has been removed. The | |
387 | current default version (2.28 or later) has been selected | |
388 | instead. | |
389 | ||
b3b60706 YM |
390 | config BR2_XTENSA_OVERLAY_DIR |
391 | string "The BR2_XTENSA_OVERLAY_DIR option has been removed" | |
392 | help | |
393 | The BR2_XTENSA_OVERLAY_DIR has been removed in favour of | |
394 | BR2_XTENSA_OVERLAY_FILE. You must now pass the complete | |
395 | path to the overlay file, not to the directory containing | |
396 | it. | |
397 | ||
398 | config BR2_XTENSA_OVERLAY_DIR_WRAP | |
399 | bool | |
400 | default y if BR2_XTENSA_OVERLAY_DIR != "" | |
401 | select BR2_LEGACY | |
402 | ||
15a96d1a | 403 | config BR2_XTENSA_CUSTOM_NAME |
b3b60706 | 404 | string "The BR2_XTENSA_CUSTOM_NAME option has been removed" |
15a96d1a | 405 | help |
b3b60706 | 406 | The BR2_XTENSA_CUSTOM_NAME option has been removed. |
15a96d1a YM |
407 | |
408 | config BR2_XTENSA_CUSTOM_NAME_WRAP | |
409 | bool | |
410 | default y if BR2_XTENSA_CUSTOM_NAME != "" | |
411 | select BR2_LEGACY | |
412 | ||
f47fc957 SS |
413 | config BR2_PACKAGE_HOST_MKE2IMG |
414 | bool "host mke2img has been removed" | |
415 | select BR2_LEGACY | |
416 | help | |
417 | We now call mkfs directly to generate ext2/3/4 filesystem | |
418 | image, so mke2img is no longer necessary. | |
419 | ||
bee9e881 SM |
420 | config BR2_TARGET_ROOTFS_EXT2_BLOCKS |
421 | int "exact size in blocks has been removed" | |
422 | default 0 | |
423 | help | |
424 | This option has been removed in favor of | |
425 | BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically | |
426 | to the value you had before. Set to 0 here to remove the | |
427 | warning. | |
428 | ||
429 | config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP | |
430 | bool | |
431 | default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \ | |
432 | BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value | |
433 | select BR2_LEGACY | |
434 | ||
435 | # Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in | |
436 | ||
235b6f17 SM |
437 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES |
438 | int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0 | |
439 | default 0 | |
440 | help | |
441 | Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4 | |
442 | images. It now automatically selects the number of inodes | |
443 | based on the image size. The extra number of inodes can no | |
444 | longer be provided; instead, provide the total number of | |
445 | inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES. | |
446 | ||
447 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP | |
448 | bool | |
449 | default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0 | |
450 | select BR2_LEGACY | |
451 | ||
e278d85e VOR |
452 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE |
453 | bool "cdxaparse removed" | |
454 | select BR2_LEGACY | |
455 | ||
456 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC | |
457 | bool "dataurisrc moved to gstreamer1" | |
458 | select BR2_LEGACY | |
459 | help | |
460 | Dataurisrc has moved to gstreamer core and is always built. | |
461 | ||
462 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP | |
463 | bool "dccp removed" | |
464 | select BR2_LEGACY | |
465 | ||
466 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE | |
467 | bool "hdvparse removed" | |
468 | select BR2_LEGACY | |
469 | ||
470 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE | |
471 | bool "mve removed" | |
472 | select BR2_LEGACY | |
473 | ||
474 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX | |
475 | bool "nuvdemux removed" | |
476 | select BR2_LEGACY | |
477 | ||
478 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT | |
479 | bool "patchdetect removed" | |
480 | select BR2_LEGACY | |
481 | ||
482 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI | |
483 | bool "sdi removed" | |
484 | select BR2_LEGACY | |
485 | ||
486 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA | |
487 | bool "tta removed" | |
488 | select BR2_LEGACY | |
489 | ||
490 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE | |
491 | bool "videomeasure removed" | |
6e3fa33f | 492 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA |
e278d85e | 493 | select BR2_LEGACY |
6e3fa33f VOR |
494 | help |
495 | videomeasure plugin has been removed and has been replaced by | |
496 | iqa, which has automatically been enabled. | |
e278d85e VOR |
497 | |
498 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK | |
499 | bool "apexsink removed" | |
500 | select BR2_LEGACY | |
501 | ||
502 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL | |
503 | bool "sdl removed" | |
504 | select BR2_LEGACY | |
505 | ||
b006fe1c VOR |
506 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD |
507 | bool "mad (*.mp3 audio) removed" | |
508 | select BR2_LEGACY | |
509 | ||
4c06d249 TP |
510 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC |
511 | bool "gst1-plugins-bad webrtc renamed to webrtcdsp" | |
512 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP | |
513 | select BR2_LEGACY | |
514 | help | |
515 | The WebRTC plugin in GStreamer 1.x has always been named | |
516 | webrtcdsp, but was wrongly introduced in Buildroot under the | |
517 | name webrtc. Therefore, we have renamed the option to match | |
518 | the actual name of the GStreamer plugin. | |
519 | ||
0d643fd3 YM |
520 | config BR2_STRIP_none |
521 | bool "Strip command 'none' has been removed" | |
522 | select BR2_LEGACY | |
523 | help | |
524 | The strip command choice has been changed into a single | |
525 | boolean option. Please check that the new setting is | |
526 | correct (in the "Build options" sub-menu) | |
527 | ||
dd4d3c18 BK |
528 | config BR2_PACKAGE_BEECRYPT_CPP |
529 | bool "C++ support removed in beecrypt" | |
530 | select BR2_LEGACY | |
531 | help | |
532 | Support for C++ depends on icu. The beecrypt package is | |
533 | incompatible with icu 59+. | |
534 | ||
622ff3d6 PK |
535 | config BR2_PACKAGE_SPICE_CLIENT |
536 | bool "spice client support removed" | |
537 | select BR2_LEGACY | |
538 | help | |
539 | Spice client support has been removed upstream. The | |
540 | functionality now lives in the spice-gtk widget and | |
541 | virt-viewer. | |
542 | ||
543 | config BR2_PACKAGE_SPICE_GUI | |
544 | bool "spice gui support removed" | |
545 | select BR2_LEGACY | |
546 | help | |
547 | Spice gui support has been removed upstream. The | |
548 | functionality now lives in the spice-gtk widget and | |
549 | virt-viewer. | |
550 | ||
6f2c0220 PK |
551 | config BR2_PACKAGE_SPICE_TUNNEL |
552 | bool "spice network redirection removed" | |
553 | select BR2_LEGACY | |
554 | help | |
555 | Spice network redirection, aka tunnelling has been removed | |
556 | upstream. | |
557 | ||
438b2d13 KM |
558 | config BR2_PACKAGE_INPUT_TOOLS |
559 | bool "input-tools removed" | |
560 | select BR2_LEGACY | |
561 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
562 | help | |
563 | input-tools has been removed, it is replaced by | |
564 | linuxconsoletools, which has automatically been enabled. | |
565 | ||
566 | config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH | |
567 | bool "inputattach moved to linuxconsoletools" | |
568 | select BR2_LEGACY | |
569 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
570 | select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH | |
571 | help | |
572 | input-tools has been removed, inputattach is now part | |
573 | of linuxconsoletools, which has automatically been | |
574 | enabled. | |
575 | ||
576 | config BR2_PACKAGE_INPUT_TOOLS_JSCAL | |
577 | bool "jscal moved to linuxconsoletools" | |
578 | select BR2_LEGACY | |
579 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
580 | select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK | |
581 | help | |
582 | input-tools has been removed, jscal is now part | |
583 | of linuxconsoletools, which has automatically been | |
584 | enabled. | |
585 | ||
586 | config BR2_PACKAGE_INPUT_TOOLS_JSTEST | |
587 | bool "jstest moved to linuxconsoletools" | |
588 | select BR2_LEGACY | |
589 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
590 | select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK | |
591 | help | |
592 | input-tools has been removed, jstest is now part | |
593 | of linuxconsoletools, which has automatically been | |
594 | enabled. | |
595 | ||
6510a826 BS |
596 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH |
597 | bool "SH Sourcery toolchain has been removed" | |
598 | select BR2_LEGACY | |
599 | help | |
600 | The Sourcery CodeBench toolchain for the sh architecture has | |
d6109172 RM |
601 | been removed, since it uses glibc older than 2.17 that |
602 | requires -lrt to link executables using clock_* system calls. | |
603 | This makes this toolchain difficult to maintain over time. | |
6510a826 | 604 | |
06cac646 BS |
605 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86 |
606 | bool "x86 Sourcery toolchain has been removed" | |
607 | select BR2_LEGACY | |
608 | help | |
609 | The Sourcery CodeBench toolchain for the x86 architecture has | |
d6109172 RM |
610 | been removed, since it uses glibc older than 2.17 that |
611 | requires -lrt to link executables using clock_* system calls. | |
612 | This makes this toolchain difficult to maintain over time. | |
06cac646 | 613 | |
f6695219 RN |
614 | config BR2_GCC_VERSION_4_8_X |
615 | bool "gcc 4.8.x support removed" | |
616 | select BR2_LEGACY | |
617 | help | |
618 | Support for gcc version 4.8.x has been removed. The current | |
619 | default version (5.x or later) has been selected instead. | |
620 | ||
a75eeddd GZ |
621 | ############################################################################### |
622 | comment "Legacy options removed in 2017.05" | |
623 | ||
95426afd RN |
624 | config BR2_PACKAGE_SUNXI_MALI_R2P4 |
625 | bool "sunxi-mali r2p4 removed" | |
626 | select BR2_LEGACY | |
627 | help | |
628 | sunxi-mali libMali for r2p4 Mali kernel module has been | |
629 | removed since the libump package only provides libUMP.so.3. | |
630 | libMali for r2p4 Mali kernel module requires libUMP.so.2. | |
631 | ||
d999a7f2 MB |
632 | config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT |
633 | bool "CoffeeScript option has been removed" | |
634 | select BR2_LEGACY | |
635 | help | |
636 | The option to enable NodeJS CoffeeScript has been removed. | |
637 | To continue using it, add "coffee-script" to | |
638 | BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL. | |
639 | ||
096f8b13 MB |
640 | config BR2_PACKAGE_NODEJS_MODULES_EXPRESS |
641 | bool "Express web application framework option has been removed" | |
642 | select BR2_LEGACY | |
643 | help | |
644 | The option to enable the NodeJS Express web application | |
645 | framework has been removed. To continue using it, add | |
646 | "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL. | |
647 | ||
0364d44f BS |
648 | config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL |
649 | bool "bluez5_utils gatttool install option removed" | |
650 | select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED | |
651 | help | |
652 | The option to install gatttool specifically has been removed. | |
653 | Since version 5.44 gatttool is in the list of deprecated | |
654 | tools. The option to build and install deprecated tools has | |
655 | been automatically enabled. | |
656 | ||
3b6c74d7 CP |
657 | config BR2_PACKAGE_OPENOCD_FT2XXX |
658 | bool "openocd ft2232 support has been removed" | |
659 | select BR2_PACKAGE_OPENOCD_FTDI | |
660 | select BR2_LEGACY | |
661 | help | |
662 | FT2232 support in OpenOCD has been removed, it's replaced by | |
663 | FDTI support, which has automatically been enabled. | |
664 | ||
24a07d58 BK |
665 | config BR2_PACKAGE_KODI_RTMPDUMP |
666 | bool "kodi rtmp has been removed" | |
667 | select BR2_LEGACY | |
c894267a | 668 | select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP |
24a07d58 BK |
669 | help |
670 | Internal rtmp support was removed from Kodi. | |
671 | ||
d393690f BK |
672 | config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN |
673 | bool "kodi-visualisation-fountain has been removed" | |
674 | select BR2_LEGACY | |
675 | help | |
676 | According to upstream 'the visualization is not currently | |
677 | in a working shape.' | |
678 | ||
1ba88a0b WB |
679 | config BR2_PACKAGE_PORTMAP |
680 | bool "portmap has been removed" | |
681 | select BR2_LEGACY | |
682 | select BR2_PACKAGE_RPCBIND | |
683 | help | |
684 | The portmap upstream tarball is removed, no releases since | |
685 | ten years and latest change in upstream git in 2014. | |
686 | You should better use rpcbind as a RPC portmapper. | |
687 | ||
5847291b TP |
688 | config BR2_BINUTILS_VERSION_2_25_X |
689 | bool "binutils version 2.25 support removed" | |
690 | select BR2_LEGACY | |
691 | help | |
692 | Support for binutils version 2.25 has been removed. The | |
693 | current default version (2.27 or later) has been selected | |
694 | instead. | |
695 | ||
98f7de87 WB |
696 | config BR2_TOOLCHAIN_BUILDROOT_INET_RPC |
697 | bool "uclibc RPC support has been removed" | |
698 | select BR2_LEGACY | |
699 | help | |
700 | uClibc-ng removed internal RPC implementation in 1.0.23. You | |
701 | should use libtirpc instead. | |
702 | ||
c6bca8ce SS |
703 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS |
704 | int "extra size in blocks has been removed" | |
705 | default 0 | |
706 | help | |
d6109172 RM |
707 | Since the support for auto calculation of the filesystem size |
708 | has been removed, this option is now useless and must be 0. | |
709 | You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS | |
710 | matchs your needs. | |
c6bca8ce SS |
711 | |
712 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP | |
713 | bool | |
714 | default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0 | |
715 | select BR2_LEGACY | |
716 | ||
815f7137 VOR |
717 | config BR2_PACKAGE_SYSTEMD_KDBUS |
718 | bool "systemd-kdbus has been removed" | |
719 | select BR2_LEGACY | |
720 | help | |
721 | --enable/disable-kdbus configure option has been removed since | |
722 | systemd-231. | |
723 | ||
d10b493e GZ |
724 | config BR2_PACKAGE_POLARSSL |
725 | bool "polarssl has been removed" | |
726 | select BR2_LEGACY | |
727 | help | |
728 | The polarssl crypto library has been removed since the 1.2.x | |
729 | release branch is no longer maintained. Newer upstream | |
730 | branches/releases (mbedtls) have API changes so they're not | |
731 | drop-in replacements. | |
732 | ||
6155118f YM |
733 | config BR2_NBD_CLIENT |
734 | bool "nbd client option was renamed" | |
735 | select BR2_LEGACY | |
736 | select BR2_PACKAGE_NBD_CLIENT | |
737 | help | |
d6109172 RM |
738 | The nbd client option has been renamed to |
739 | BR2_PACKAGE_NBD_CLIENT. | |
6155118f YM |
740 | |
741 | config BR2_NBD_SERVER | |
742 | bool "nbd server option was renamed" | |
743 | select BR2_LEGACY | |
744 | select BR2_PACKAGE_NBD_SERVER | |
745 | help | |
d6109172 RM |
746 | The nbd server option has been renamed to |
747 | BR2_PACKAGE_NBD_SERVER. | |
6155118f | 748 | |
6a9c6311 CS |
749 | config BR2_PACKAGE_GMOCK |
750 | bool "gmock merged into gtest package" | |
751 | select BR2_LEGACY | |
752 | select BR2_PACKAGE_GTEST | |
753 | select BR2_PACKAGE_GTEST_GMOCK | |
754 | help | |
755 | GMock is now a suboption of the GTest package. | |
756 | ||
5f73ff53 GZ |
757 | config BR2_KERNEL_HEADERS_4_8 |
758 | bool "kernel headers version 4.8.x are no longer supported" | |
759 | select BR2_KERNEL_HEADERS_4_4 | |
760 | select BR2_LEGACY | |
761 | help | |
762 | Version 4.8.x of the Linux kernel headers are no longer | |
763 | maintained upstream and are now removed. As an alternative, | |
764 | version 4.4.x of the headers have been automatically | |
765 | selected in your configuration. | |
766 | ||
767 | config BR2_KERNEL_HEADERS_3_18 | |
768 | bool "kernel headers version 3.18.x are no longer supported" | |
769 | select BR2_KERNEL_HEADERS_3_12 | |
770 | select BR2_LEGACY | |
771 | help | |
772 | Version 3.18.x of the Linux kernel headers are no longer | |
773 | maintained upstream and are now removed. As an alternative, | |
774 | version 3.12.x of the headers have been automatically | |
775 | selected in your configuration. | |
776 | ||
a75eeddd GZ |
777 | config BR2_GLIBC_VERSION_2_22 |
778 | bool "glibc 2.22 removed" | |
779 | select BR2_LEGACY | |
780 | help | |
781 | Support for glibc version 2.22 has been removed. The current | |
782 | default version has been selected instead. | |
783 | ||
ed364d1e TP |
784 | ############################################################################### |
785 | comment "Legacy options removed in 2017.02" | |
786 | ||
8546ff31 FP |
787 | config BR2_PACKAGE_PERL_DB_FILE |
788 | bool "perl-db-file removed" | |
789 | select BR2_LEGACY | |
790 | select BR2_PACKAGE_BERKELEYDB | |
791 | select BR2_PACKAGE_PERL | |
792 | help | |
793 | DB_File can be built as a core Perl module, so the separate | |
794 | perl-db-file package has been removed. | |
795 | ||
6be22624 GZ |
796 | config BR2_KERNEL_HEADERS_4_7 |
797 | bool "kernel headers version 4.7.x are no longer supported" | |
798 | select BR2_KERNEL_HEADERS_4_4 | |
799 | select BR2_LEGACY | |
800 | help | |
801 | Version 4.7.x of the Linux kernel headers are no longer | |
802 | maintained upstream and are now removed. As an alternative, | |
803 | version 4.4.x of the headers have been automatically | |
804 | selected in your configuration. | |
805 | ||
806 | config BR2_KERNEL_HEADERS_4_6 | |
807 | bool "kernel headers version 4.6.x are no longer supported" | |
808 | select BR2_KERNEL_HEADERS_4_4 | |
809 | select BR2_LEGACY | |
810 | help | |
811 | Version 4.6.x of the Linux kernel headers are no longer | |
812 | maintained upstream and are now removed. As an alternative, | |
813 | version 4.4.x of the headers have been automatically | |
814 | selected in your configuration. | |
815 | ||
816 | config BR2_KERNEL_HEADERS_4_5 | |
817 | bool "kernel headers version 4.5.x are no longer supported" | |
818 | select BR2_KERNEL_HEADERS_4_4 | |
819 | select BR2_LEGACY | |
820 | help | |
821 | Version 4.5.x of the Linux kernel headers are no longer | |
822 | maintained upstream and are now removed. As an alternative, | |
823 | version 4.4.x of the headers have been automatically | |
824 | selected in your configuration. | |
825 | ||
826 | config BR2_KERNEL_HEADERS_3_14 | |
827 | bool "kernel headers version 3.14.x are no longer supported" | |
828 | select BR2_KERNEL_HEADERS_3_12 | |
829 | select BR2_LEGACY | |
830 | help | |
831 | Version 3.14.x of the Linux kernel headers are no longer | |
832 | maintained upstream and are now removed. As an alternative, | |
833 | version 3.12.x of the headers have been automatically | |
834 | selected in your configuration. | |
835 | ||
63abbcce RN |
836 | config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS |
837 | bool "musl-cross 1.1.12 toolchain removed" | |
838 | select BR2_LEGACY | |
839 | help | |
840 | The support for the prebuilt toolchain based on the Musl C | |
841 | library provided by the musl-cross project has been removed. | |
d6109172 RM |
842 | Upstream doesn't provide any prebuilt toolchain anymore, use |
843 | the Buildroot toolchain instead. | |
63abbcce | 844 | |
a44d7f2d WB |
845 | config BR2_UCLIBC_INSTALL_TEST_SUITE |
846 | bool "uClibc tests now in uclibc-ng-test" | |
847 | select BR2_LEGACY | |
848 | select BR2_PACKAGE_UCLIBC_NG_TEST | |
849 | help | |
850 | The test suite of the uClibc C library has been moved into a | |
851 | separate package, uclibc-ng-test. | |
852 | ||
311bc137 AV |
853 | config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX |
854 | bool "Blackfin.uclinux.org 2014R1 toolchain removed" | |
855 | select BR2_LEGACY | |
856 | help | |
857 | The ADI Blackfin toolchain has many bugs which are fixed in | |
858 | more recent gcc and uClibc-ng releases. Use the Buildroot | |
859 | toolchain instead. | |
860 | ||
207294ff AV |
861 | config BR2_PACKAGE_MAKEDEVS |
862 | bool "makedevs removed" | |
863 | select BR2_LEGACY | |
864 | help | |
865 | The makedevs tool is part of busybox. The Buildroot fork | |
866 | should not be used outside of the Buildroot infrastructure. | |
867 | ||
b5c00f09 AV |
868 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A |
869 | bool "Arago ARMv7 2011.09 removed" | |
870 | select BR2_LEGACY | |
871 | help | |
872 | The Arago toolchains are every old and not updated anymore. | |
873 | ||
874 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE | |
875 | bool "Arago ARMv5 2011.09 removed" | |
876 | select BR2_LEGACY | |
877 | help | |
878 | The Arago toolchains are every old and not updated anymore. | |
879 | ||
ed364d1e TP |
880 | config BR2_PACKAGE_SNOWBALL_HDMISERVICE |
881 | bool "snowball-hdmiservice removed" | |
882 | select BR2_LEGACY | |
883 | help | |
884 | We no longer have support for the Snowball platform in | |
885 | Buildroot, so this package was no longer useful. | |
886 | ||
887 | config BR2_PACKAGE_SNOWBALL_INIT | |
888 | bool "snowball-init removed" | |
889 | select BR2_LEGACY | |
890 | help | |
891 | We no longer have support for the Snowball platform in | |
892 | Buildroot, so this package was no longer useful. | |
893 | ||
69aa0574 JK |
894 | config BR2_GDB_VERSION_7_9 |
895 | bool "gdb 7.9 has been removed" | |
896 | select BR2_LEGACY | |
897 | help | |
898 | The 7.9 version of gdb has been removed. Use a newer version | |
899 | instead. | |
900 | ||
e782cd5b YM |
901 | ############################################################################### |
902 | comment "Legacy options removed in 2016.11" | |
903 | ||
c457213f FF |
904 | config BR2_PACKAGE_PHP_SAPI_CLI_CGI |
905 | bool "PHP CGI and CLI options are now seperate" | |
906 | select BR2_PACKAGE_PHP_SAPI_CLI | |
907 | select BR2_PACKAGE_PHP_SAPI_CGI | |
c087cbe5 | 908 | select BR2_LEGACY |
c457213f FF |
909 | help |
910 | The PHP Interface options have been split up into a | |
911 | separate option for each interface. | |
912 | ||
913 | config BR2_PACKAGE_PHP_SAPI_CLI_FPM | |
914 | bool "PHP CLI and FPM options are now separate" | |
915 | select BR2_PACKAGE_PHP_SAPI_CLI | |
916 | select BR2_PACKAGE_PHP_SAPI_FPM | |
c087cbe5 | 917 | select BR2_LEGACY |
c457213f FF |
918 | help |
919 | The PHP Interface options have been split up into a | |
920 | separate option for each interface. | |
921 | ||
3534399d AV |
922 | config BR2_PACKAGE_WVSTREAMS |
923 | bool "wvstreams removed" | |
924 | select BR2_LEGACY | |
925 | help | |
926 | wvstreams is not maintained anymore since about 2009. It also | |
927 | doesn't build anymore with recent compilers (GCC 5+). | |
928 | ||
152d4b66 AV |
929 | config BR2_PACKAGE_WVDIAL |
930 | bool "wvdial removed" | |
931 | select BR2_LEGACY | |
932 | help | |
933 | wvdial is not maintained anymore since about 2009. It also | |
934 | doesn't build anymore with recent compilers (GCC 5+). | |
935 | ||
79c82a35 AV |
936 | config BR2_PACKAGE_WEBKITGTK24 |
937 | bool "webkitgtk 2.4.x removed" | |
938 | select BR2_LEGACY | |
939 | help | |
940 | This legacy package only existed because some other packages | |
941 | depended on that specific version of webkitgtk. However, the | |
942 | other packages have been fixed. webkitgtk 2.4 is full of | |
943 | security issues so it needs to be removed. | |
944 | ||
ea3a7ee0 AV |
945 | config BR2_PACKAGE_TORSMO |
946 | bool "torsmo removed" | |
947 | select BR2_LEGACY | |
948 | help | |
949 | torsmo has been unmaintained for a long time, and nobody | |
950 | seems to be interested in it. | |
951 | ||
290166f2 AV |
952 | config BR2_PACKAGE_SSTRIP |
953 | bool "sstrip removed" | |
954 | select BR2_LEGACY | |
955 | help | |
956 | sstrip is unmaintained and potentially harmful. It doesn't | |
957 | save so much compared to normal binutils strip, and there is | |
958 | a big risk of binaries that don't work. Use normal strip | |
959 | instead. | |
960 | ||
133466f5 AV |
961 | config BR2_KERNEL_HEADERS_4_3 |
962 | bool "kernel headers version 4.3.x are no longer supported" | |
963 | select BR2_KERNEL_HEADERS_4_1 | |
964 | select BR2_LEGACY | |
965 | help | |
966 | Version 4.3.x of the Linux kernel headers are no longer | |
967 | maintained upstream and are now removed. As an alternative, | |
968 | version 4.1.x of the headers have been automatically | |
969 | selected in your configuration. | |
970 | ||
971 | config BR2_KERNEL_HEADERS_4_2 | |
972 | bool "kernel headers version 4.2.x are no longer supported" | |
973 | select BR2_KERNEL_HEADERS_4_1 | |
974 | select BR2_LEGACY | |
975 | help | |
976 | Version 4.2.x of the Linux kernel headers are no longer | |
977 | maintained upstream and are now removed. As an alternative, | |
978 | version 4.1.x of the headers have been automatically | |
979 | selected in your configuration. | |
980 | ||
1c2a63ad AV |
981 | config BR2_PACKAGE_KODI_ADDON_XVDR |
982 | bool "kodi-addon-xvdr removed" | |
983 | select BR2_LEGACY | |
984 | help | |
985 | According to the github project page: | |
986 | https://github.com/pipelka/xbmc-addon-xvdr | |
987 | this package is discontinued. | |
988 | ||
3b80ca89 AV |
989 | config BR2_PACKAGE_IPKG |
990 | bool "ipkg removed" | |
991 | select BR2_LEGACY | |
992 | help | |
993 | ipkg dates back to the early 2000s when Compaq started the | |
d6109172 RM |
994 | handhelds.org project and it hasn't seen development since |
995 | 2006. Use opkg as a replacement. | |
3b80ca89 | 996 | |
a7c13c1b AV |
997 | config BR2_GCC_VERSION_4_7_X |
998 | bool "gcc 4.7.x support removed" | |
999 | select BR2_LEGACY | |
1000 | help | |
1001 | Support for gcc version 4.7.x has been removed. The current | |
1002 | default version (4.9.x or later) has been selected instead. | |
1003 | ||
d8878112 AV |
1004 | config BR2_BINUTILS_VERSION_2_24_X |
1005 | bool "binutils version 2.24 support removed" | |
1006 | select BR2_LEGACY | |
1007 | help | |
1008 | Support for binutils version 2.24 has been removed. The | |
1009 | current default version (2.26 or later) has been selected | |
1010 | instead. | |
1011 | ||
8c85a5f0 GZ |
1012 | config BR2_PACKAGE_WESTON_RPI |
1013 | bool "Weston propietary RPI support is gone" | |
1014 | select BR2_LEGACY | |
1015 | help | |
1016 | Upstream decided the propietary (rpi-userland) weston composer | |
1017 | support wasn't worth the effort so it was removed. Switch to | |
1018 | the open VC4 support. | |
1019 | ||
20b14466 YM |
1020 | config BR2_LINUX_KERNEL_TOOL_CPUPOWER |
1021 | bool "linux-tool cpupower" | |
1022 | depends on BR2_LINUX_KERNEL | |
1023 | select BR2_LEGACY | |
1024 | select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER | |
1025 | help | |
1026 | Linux tool cpupower option was renamed. | |
1027 | ||
1028 | config BR2_LINUX_KERNEL_TOOL_PERF | |
1029 | bool "linux-tool perf" | |
1030 | depends on BR2_LINUX_KERNEL | |
1031 | select BR2_LEGACY | |
1032 | select BR2_PACKAGE_LINUX_TOOLS_PERF | |
1033 | help | |
1034 | Linux tool perf option was renamed. | |
1035 | ||
1036 | config BR2_LINUX_KERNEL_TOOL_SELFTESTS | |
1037 | bool "linux-tool selftests" | |
1038 | depends on BR2_LINUX_KERNEL | |
1039 | select BR2_LEGACY | |
1040 | select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS | |
1041 | help | |
1042 | Linux tool selftests option was renamed. | |
1043 | ||
50332a53 TP |
1044 | config BR2_GCC_VERSION_4_8_ARC |
1045 | bool "gcc arc option renamed" | |
1046 | select BR2_LEGACY | |
1047 | select BR2_GCC_VERSION_ARC | |
1048 | help | |
1049 | The option that selects the gcc version for the ARC | |
1050 | architecture has been renamed to BR2_GCC_VERSION_ARC. | |
1051 | ||
3c590a3e GZ |
1052 | config BR2_KERNEL_HEADERS_4_0 |
1053 | bool "kernel headers version 4.0.x are no longer supported" | |
5f73ff53 | 1054 | select BR2_KERNEL_HEADERS_3_12 |
3c590a3e GZ |
1055 | select BR2_LEGACY |
1056 | help | |
1057 | Version 4.0.x of the Linux kernel headers have been deprecated | |
1058 | for more than four buildroot releases and are now removed. | |
5f73ff53 | 1059 | As an alternative, version 3.12.x of the headers have been |
3c590a3e GZ |
1060 | automatically selected in your configuration. |
1061 | ||
1062 | config BR2_KERNEL_HEADERS_3_19 | |
1063 | bool "kernel headers version 3.19.x are no longer supported" | |
5f73ff53 | 1064 | select BR2_KERNEL_HEADERS_3_12 |
3c590a3e GZ |
1065 | select BR2_LEGACY |
1066 | help | |
d6109172 RM |
1067 | Version 3.19.x of the Linux kernel headers have been |
1068 | deprecated for more than four buildroot releases and are now | |
1069 | removed. | |
5f73ff53 | 1070 | As an alternative, version 3.12.x of the headers have been |
3c590a3e GZ |
1071 | automatically selected in your configuration. |
1072 | ||
0e517317 RN |
1073 | config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS |
1074 | bool "libevas-generic-loaders package removed" | |
1075 | select BR2_LEGACY | |
1076 | select BR2_PACKAGE_EFL | |
1077 | help | |
d6109172 RM |
1078 | With EFL 1.18, libevas-generic-loaders is now provided by the |
1079 | efl package. | |
0e517317 | 1080 | |
c22b7580 RN |
1081 | config BR2_PACKAGE_ELEMENTARY |
1082 | bool "elementary package removed" | |
1083 | select BR2_LEGACY | |
1084 | select BR2_PACKAGE_EFL | |
1085 | help | |
1086 | With EFL 1.18, elementary is now provided by the efl package. | |
1087 | ||
e782cd5b YM |
1088 | config BR2_LINUX_KERNEL_CUSTOM_LOCAL |
1089 | bool "Linux kernel local directory option removed" | |
1090 | help | |
d6109172 RM |
1091 | The option to select a local directory as the source of the |
1092 | Linux kernel has been removed. It hurts reproducibility of | |
1093 | builds. | |
e782cd5b YM |
1094 | |
1095 | In case you were using this option during development of your | |
1096 | Linux kernel, use the override mechanism instead. | |
1097 | ||
20ed897b TP |
1098 | ############################################################################### |
1099 | comment "Legacy options removed in 2016.08" | |
1100 | ||
ac191071 AV |
1101 | config BR2_PACKAGE_EFL_JP2K |
1102 | bool "libevas jp2k loader has been removed" | |
1103 | select BR2_LEGACY | |
5354a75e | 1104 | help |
ac191071 AV |
1105 | JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc) |
1106 | while Buildroot only packages openjpeg 2.x. Therefore, the | |
1107 | JP2K loader has been removed from EFL. | |
1108 | ||
638cfb5e MH |
1109 | config BR2_PACKAGE_SYSTEMD_COMPAT |
1110 | bool "systemd compatibility libraries have been removed" | |
d246b984 | 1111 | select BR2_LEGACY |
638cfb5e | 1112 | help |
17bccf17 | 1113 | The systemd option to enable the compatibility libraries has |
638cfb5e MH |
1114 | been removed. Theses libraries have been useless since a few |
1115 | version, and have been fully dropped from the source since | |
1116 | v230. | |
1117 | ||
5baa92b0 MN |
1118 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER |
1119 | bool "gst1-plugins-bad liveadder plugin removed" | |
1120 | select BR2_LEGACY | |
1121 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER | |
1122 | help | |
1123 | The functionality of the liveadder plugin of the | |
1124 | gst1-plugins-bad package has been merged into audiomixer. | |
1125 | ||
0f92b19d AW |
1126 | config BR2_PACKAGE_LIBFSLVPUWRAP |
1127 | bool "libfslvpuwrap has been renamed to imx-vpuwrap" | |
1128 | select BR2_LEGACY | |
1129 | select BR2_PACKAGE_IMX_VPUWRAP | |
1130 | help | |
d6109172 RM |
1131 | The libfslvpuwrap has been renamed to match the renamed |
1132 | package. | |
0f92b19d | 1133 | |
64998907 AW |
1134 | config BR2_PACKAGE_LIBFSLPARSER |
1135 | bool "libfslparser has been renamed to imx-parser" | |
1136 | select BR2_LEGACY | |
1137 | select BR2_PACKAGE_IMX_PARSER | |
1138 | help | |
d6109172 RM |
1139 | The libfslparser has been renamed to match the renamed |
1140 | package. | |
64998907 | 1141 | |
47e6203f AW |
1142 | config BR2_PACKAGE_LIBFSLCODEC |
1143 | bool "libfslcodec has been renamed to imx-codec" | |
1144 | select BR2_LEGACY | |
1145 | select BR2_PACKAGE_IMX_CODEC | |
1146 | help | |
1147 | The libfslcodec has been renamed to match the renamed package. | |
1148 | ||
b5d99008 CS |
1149 | config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT |
1150 | bool "FIT support in uboot-tools has been refactored" | |
1151 | select BR2_LEGACY | |
1152 | select BR2_PACKAGE_DTC | |
1153 | select BR2_PACKAGE_DTC_PROGRAMS | |
1154 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT | |
1155 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT | |
1156 | select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE | |
1157 | help | |
1158 | This option has been removed in favor of a more fine-grained | |
1159 | configuration, which is recommended. Selecting this option | |
1160 | enables FIT and FIT signature support for the target packages. | |
1161 | It will also select the dtc and openssl packages. | |
1162 | ||
f253c146 WB |
1163 | config BR2_PTHREADS_OLD |
1164 | bool "linuxthreads (stable/old)" | |
1165 | select BR2_LEGACY | |
1166 | help | |
1167 | Linuxthreads have been reworked, BR2_PTHREADS_OLD is now | |
1168 | BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed. | |
1169 | ||
ae466a60 TP |
1170 | config BR2_BINUTILS_VERSION_2_23_X |
1171 | bool "binutils 2.23 removed" | |
1172 | select BR2_LEGACY | |
1173 | help | |
1174 | Binutils 2.23 has been removed, using a newer version is | |
1175 | recommended. | |
1176 | ||
500de259 TP |
1177 | config BR2_TOOLCHAIN_BUILDROOT_EGLIBC |
1178 | bool "eglibc support has been removed" | |
1179 | select BR2_LEGACY | |
1180 | help | |
1181 | The eglibc project no longer exists, as it has been merged | |
1182 | back into the glibc project. Therefore, support for eglibc | |
1183 | has been removed, and glibc should be used instead. | |
1184 | ||
20ed897b TP |
1185 | config BR2_GDB_VERSION_7_8 |
1186 | bool "gdb 7.8 has been removed" | |
1187 | select BR2_LEGACY | |
1188 | help | |
1189 | The 7.8 version of gdb has been removed. Use a newer version | |
1190 | instead. | |
1191 | ||
f0c94704 | 1192 | ############################################################################### |
2661c4f1 | 1193 | comment "Legacy options removed in 2016.05" |
f0c94704 | 1194 | |
3380da69 GZ |
1195 | config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL |
1196 | bool "openvpn polarssl crypto backend removed" | |
1197 | select BR2_LEGACY | |
1198 | help | |
1199 | The OpenVPN polarssl crypto backend option has been removed. | |
1200 | Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't | |
1201 | compatible with mbedtls (polarssl) series 2.x which is the | |
1202 | version provided in buildroot. And both can't coexist. | |
1203 | It now uses OpenSSL as the only option. | |
1204 | ||
4dfc2cb5 MB |
1205 | config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE |
1206 | bool "nginx http spdy module removed" | |
1207 | select BR2_LEGACY | |
1208 | select BR2_PACKAGE_NGINX_HTTP_V2_MODULE | |
1209 | help | |
1210 | The ngx_http_spdy_module has been superseded by the | |
1211 | ngx_http_v2_module since nginx v1.9.5. The | |
1212 | ngx_http_v2_module modules has been automatically selected | |
1213 | in your configuration. | |
1214 | ||
0c956f2d GZ |
1215 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP |
1216 | bool "gst1-plugins-bad rtp plugin moved to good" | |
1217 | select BR2_LEGACY | |
1218 | help | |
1219 | The rtp plugin has been moved from gst1-plugins-base to | |
1220 | gst1-plugins-good. | |
1221 | ||
4196cf90 GZ |
1222 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123 |
1223 | bool "gst1-plugins-bad mpg123 plugin moved to ugly" | |
1224 | select BR2_LEGACY | |
1225 | help | |
1226 | The mpg123 plugin has been moved from gst1-plugins-bad to | |
1227 | gst1-plugins-ugly. | |
1228 | ||
8490e833 GZ |
1229 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC |
1230 | bool "PowerPC Sourcery toolchain has been removed" | |
1231 | select BR2_LEGACY | |
1232 | help | |
1233 | The Sourcery CodeBench toolchain for the PowerPC | |
1234 | architecture has been removed, as it was very old, not | |
1235 | maintained, and causing numerous build failures with modern | |
1236 | userspace packages. | |
1237 | ||
1238 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2 | |
1239 | bool "PowerPC Sourcery E500v2 toolchain has been removed" | |
1240 | select BR2_LEGACY | |
1241 | help | |
1242 | The Sourcery CodeBench toolchain for the PowerPC E500v2 | |
1243 | architecture has been removed, as it was very old, not | |
1244 | maintained, and causing numerous build failures with modern | |
1245 | userspace packages. | |
1246 | ||
6cb4814c TP |
1247 | config BR2_x86_i386 |
1248 | bool "x86 i386 support removed" | |
7aaa730c | 1249 | select BR2_LEGACY |
6cb4814c TP |
1250 | help |
1251 | The support for the i386 processors of the x86 architecture | |
1252 | has been removed. | |
1253 | ||
f75ee80d JC |
1254 | config BR2_PACKAGE_QT5QUICK1 |
1255 | bool "qt5quick1 package removed" | |
1256 | select BR2_LEGACY | |
1257 | help | |
1258 | The qt5quick1 package has been removed, since it was removed | |
1259 | from upstream starting from Qt 5.6. | |
1260 | ||
21b25d28 | 1261 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR |
f61583fc | 1262 | string "uboot custom patch dir has been removed" |
21b25d28 GZ |
1263 | help |
1264 | The uboot custom patch directory option has been removed. Use | |
1265 | the improved BR2_TARGET_UBOOT_PATCH option instead. | |
1266 | ||
f61583fc DM |
1267 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP |
1268 | bool | |
1269 | default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != "" | |
1270 | select BR2_LEGACY | |
1271 | ||
1272 | # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from | |
1273 | # boot/uboot/Config.in | |
1274 | ||
f80ad2fd GZ |
1275 | config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID |
1276 | bool "xf86-input-void removed" | |
1277 | select BR2_LEGACY | |
1278 | help | |
1279 | The xf86-input-void package has been removed, there's no need | |
1280 | for it in any modern (post-2007) xorg server. | |
1281 | ||
b8de1788 GZ |
1282 | config BR2_KERNEL_HEADERS_3_17 |
1283 | bool "kernel headers version 3.17.x are no longer supported" | |
6be22624 | 1284 | select BR2_KERNEL_HEADERS_3_12 |
b8de1788 GZ |
1285 | select BR2_LEGACY |
1286 | help | |
d6109172 RM |
1287 | Version 3.17.x of the Linux kernel headers have been |
1288 | deprecated for more than four buildroot releases and are now | |
1289 | removed. | |
6be22624 | 1290 | As an alternative, version 3.12.x of the headers have been |
b8de1788 GZ |
1291 | automatically selected in your configuration. |
1292 | ||
ffc324ea GZ |
1293 | config BR2_GDB_VERSION_7_7 |
1294 | bool "gdb 7.7 has been removed" | |
1295 | select BR2_LEGACY | |
1296 | help | |
1297 | The 7.7 version of gdb has been removed. Use a newer version | |
1298 | instead. | |
1299 | ||
75945ddc GZ |
1300 | config BR2_PACKAGE_FOOMATIC_FILTERS |
1301 | bool "foomatic-filters" | |
1302 | select BR2_LEGACY | |
1303 | help | |
1304 | The foomatic-filters package was removed. | |
1305 | ||
7bd9dbc1 GZ |
1306 | config BR2_PACKAGE_SAMBA |
1307 | bool "samba" | |
1308 | select BR2_LEGACY | |
1309 | help | |
1310 | The samba package was removed in favour of samba4 since the | |
1311 | 3.x series isn't supported by upstream any longer. | |
1312 | ||
6922b41d BK |
1313 | config BR2_PACKAGE_KODI_WAVPACK |
1314 | bool "wavpack" | |
1315 | select BR2_LEGACY | |
1316 | help | |
1317 | wavpack support was removed in favour of ffmpeg: | |
1318 | https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4 | |
1319 | ||
75ce17d0 BK |
1320 | config BR2_PACKAGE_KODI_RSXS |
1321 | bool "rsxs support in Kodi was moved to an addon" | |
1322 | select BR2_LEGACY | |
1323 | select BR2_PACKAGE_KODI_SCREENSAVER_RSXS | |
1324 | help | |
1325 | rsxs support in Kodi was moved to an addon | |
1326 | ||
56b80ece BK |
1327 | config BR2_PACKAGE_KODI_GOOM |
1328 | bool "Goom support in Kodi was moved to an addon" | |
1329 | select BR2_LEGACY | |
1330 | select BR2_PACKAGE_KODI_VISUALISATION_GOOM | |
1331 | help | |
1332 | Goom support in Kodi was moved to an addon | |
1333 | ||
e5a073ac GE |
1334 | config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS |
1335 | bool "systemd all extras option has been removed" | |
1336 | select BR2_LEGACY | |
1337 | select BR2_PACKAGE_XZ | |
1338 | select BR2_PACKAGE_LIBGCRYPT | |
1339 | help | |
1340 | The systemd option to enable "all extras" has been | |
1341 | removed. To get the same features, the libgcrypt and xz | |
1342 | package should now be enabled. | |
1343 | ||
8c0a367d GZ |
1344 | config BR2_GCC_VERSION_4_5_X |
1345 | bool "gcc 4.5.x has been removed" | |
1346 | select BR2_LEGACY | |
1347 | help | |
1348 | The 4.5.x version of gcc has been removed. Use a newer | |
1349 | version instead. | |
1350 | ||
007c2ce9 | 1351 | config BR2_PACKAGE_SQLITE_READLINE |
62da71c9 | 1352 | bool "sqlite command-line editing support was updated" |
007c2ce9 BK |
1353 | select BR2_PACKAGE_NCURSES |
1354 | select BR2_PACKAGE_READLINE | |
1355 | select BR2_LEGACY | |
1356 | help | |
1357 | This option was removed in favour of the sqlite package | |
1358 | deciding itself depending on the enabled packages whether | |
1359 | command-line editing should be enabled, it also also takes | |
1360 | libedit into account. | |
1361 | ||
f0c94704 LC |
1362 | ############################################################################### |
1363 | comment "Legacy options removed in 2016.02" | |
1364 | ||
f39ac4d2 BK |
1365 | config BR2_PACKAGE_DOVECOT_BZIP2 |
1366 | bool "bzip2 support option has been removed" | |
1367 | select BR2_LEGACY | |
1368 | select BR2_PACKAGE_BZIP2 | |
1369 | help | |
1370 | Bzip2 support is built if the bzip2 package is selected. | |
1371 | ||
1372 | config BR2_PACKAGE_DOVECOT_ZLIB | |
1373 | bool "zlib support option has been removed" | |
1374 | select BR2_LEGACY | |
1375 | select BR2_PACKAGE_ZLIB | |
1376 | help | |
1377 | Zlib support is built if the zlib package is selected. | |
1378 | ||
ead1df42 JK |
1379 | config BR2_PACKAGE_E2FSPROGS_FINDFS |
1380 | bool "e2fsprogs findfs option has been removed" | |
1381 | select BR2_LEGACY | |
1382 | help | |
1383 | This option attempted to enable findfs capabilities from | |
1384 | e2fsprogs but has not worked since July 2015 (due to | |
1385 | packaging changes). One can use BusyBox's findfs support or | |
860020f3 | 1386 | enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option. |
ead1df42 | 1387 | |
b1063a01 RN |
1388 | config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL |
1389 | bool "openpowerlink debug option has been removed" | |
1390 | select BR2_LEGACY | |
1391 | help | |
d6109172 RM |
1392 | This option depends on BR2_ENABLE_DEBUG which should not be |
1393 | used by packages anymore. | |
b1063a01 RN |
1394 | |
1395 | config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE | |
1396 | bool "openpowerlink package has been updated" | |
1397 | select BR2_LEGACY | |
1398 | select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB | |
1399 | help | |
1400 | openpowerlink kernel modules are built if the | |
1401 | kernel stack library is selected. | |
1402 | ||
1403 | config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP | |
1404 | bool "openpowerlink package has been updated" | |
1405 | select BR2_LEGACY | |
1406 | select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB | |
1407 | help | |
1408 | The user space support has been split in two part: | |
1409 | - a monolitic user space library | |
1410 | - a user spae deamon driver | |
1411 | ||
e3e0583f YM |
1412 | config BR2_LINUX_KERNEL_SAME_AS_HEADERS |
1413 | bool "using the linux headers version for the kernel has been removed" | |
1414 | select BR2_LEGACY | |
1415 | help | |
1416 | The option to use the version of the kernel headers for the | |
1417 | kernel to build has been removed. | |
1418 | ||
1419 | There is now the converse, better-suited and more versatile | |
1420 | option to use the kernel version for the linux headers. | |
1421 | ||
d37ce8e1 OS |
1422 | config BR2_PACKAGE_CUPS_PDFTOPS |
1423 | bool "Pdftops support has been removed from Cups" | |
917de0f7 | 1424 | select BR2_PACKAGE_CUPS_FILTERS |
d37ce8e1 OS |
1425 | select BR2_LEGACY |
1426 | help | |
1427 | Pdftops support has been removed from the cups package | |
1428 | It is now part of the cups-filters package. | |
1429 | ||
d8da5f10 GZ |
1430 | config BR2_KERNEL_HEADERS_3_16 |
1431 | bool "kernel headers version 3.16.x are no longer supported" | |
6be22624 | 1432 | select BR2_KERNEL_HEADERS_3_12 |
d8da5f10 GZ |
1433 | select BR2_LEGACY |
1434 | help | |
d6109172 RM |
1435 | Version 3.16.x of the Linux kernel headers have been |
1436 | deprecated for more than four buildroot releases and are now | |
1437 | removed. | |
1438 | As an alternative, version 3.12.x of the headers have been | |
1439 | automatically selected in your configuration. | |
d8da5f10 | 1440 | |
af45a4f4 YY |
1441 | config BR2_PACKAGE_PYTHON_PYXML |
1442 | bool "python-pyxml package has been removed" | |
1443 | select BR2_LEGACY | |
1444 | help | |
1445 | PyXML is obsolete and its functionality is covered either via | |
1446 | native Python XML support or python-lxml package. | |
1447 | ||
d29c7196 SN |
1448 | # BR2_ENABLE_SSP is still referenced in Config.in (default in choice) |
1449 | config BR2_ENABLE_SSP | |
1450 | bool "Stack Smashing protection now has different levels" | |
1451 | help | |
d6109172 RM |
1452 | The protection offered by SSP can now be selected from |
1453 | different protection levels. Be sure to review the SSP level | |
1454 | in the build options menu. | |
d29c7196 | 1455 | |
1e3d2cad | 1456 | config BR2_PACKAGE_DIRECTFB_CLE266 |
e989ddbe | 1457 | bool "cle266 driver for directfb removed" |
1e3d2cad GZ |
1458 | select BR2_LEGACY |
1459 | help | |
1460 | The cle266 directfb driver support has been removed. | |
1461 | It doesn't build in the latest version and it's unlikely | |
1462 | anyone has any use for it. | |
1463 | ||
1464 | config BR2_PACKAGE_DIRECTFB_UNICHROME | |
e989ddbe | 1465 | bool "unichrome driver for directfb removed" |
1e3d2cad GZ |
1466 | select BR2_LEGACY |
1467 | help | |
1468 | The unichrome directfb driver support has been removed. | |
1469 | It doesn't build in the latest version and it's unlikely | |
1470 | anyone has any use for it. | |
1471 | ||
820e1685 RN |
1472 | config BR2_PACKAGE_LIBELEMENTARY |
1473 | bool "libelementary has been renamed to elementary" | |
1474 | select BR2_LEGACY | |
1475 | select BR2_PACKAGE_ELEMENTARY | |
1476 | help | |
d6109172 RM |
1477 | The libelementary package has been renamed to match the |
1478 | upstream name. | |
820e1685 | 1479 | |
a9d1f5f6 RN |
1480 | config BR2_PACKAGE_LIBEINA |
1481 | bool "libeina package has been removed" | |
1482 | select BR2_LEGACY | |
1483 | select BR2_PACKAGE_EFL | |
1484 | help | |
1f83a7a7 | 1485 | With EFL 1.15, libeina is now provided by the efl package. |
a9d1f5f6 | 1486 | |
49700f08 RN |
1487 | config BR2_PACKAGE_LIBEET |
1488 | bool "libeet package has been removed" | |
1489 | select BR2_LEGACY | |
1490 | select BR2_PACKAGE_EFL | |
1491 | help | |
1f83a7a7 | 1492 | With EFL 1.15, libeet is now provided by the efl package. |
49700f08 | 1493 | |
e5989d6c RN |
1494 | config BR2_PACKAGE_LIBEVAS |
1495 | bool "libevas package has been removed" | |
1496 | select BR2_LEGACY | |
1497 | select BR2_PACKAGE_EFL | |
1498 | help | |
1f83a7a7 | 1499 | With EFL 1.15, libevas is now provided by the efl package. |
e5989d6c | 1500 | |
1fe1b60b RN |
1501 | config BR2_PACKAGE_LIBECORE |
1502 | bool "libecore package has been removed" | |
1503 | select BR2_LEGACY | |
1504 | select BR2_PACKAGE_EFL | |
1505 | help | |
1f83a7a7 | 1506 | With EFL 1.15, libecore is now provided by the efl package. |
1fe1b60b | 1507 | |
8c05c38d RN |
1508 | config BR2_PACKAGE_LIBEDBUS |
1509 | bool "libedbus package has been removed" | |
1510 | select BR2_LEGACY | |
1511 | select BR2_PACKAGE_EFL | |
1512 | help | |
1f83a7a7 | 1513 | With EFL 1.15, libedbus is now provided by the efl package. |
8c05c38d | 1514 | |
d2b042c1 RN |
1515 | config BR2_PACKAGE_LIBEFREET |
1516 | bool "libefreet package has been removed" | |
1517 | select BR2_LEGACY | |
1518 | select BR2_PACKAGE_EFL | |
1519 | help | |
1f83a7a7 | 1520 | With EFL 1.15, libefreet is now provided by the efl package. |
d2b042c1 | 1521 | |
e155c957 RN |
1522 | config BR2_PACKAGE_LIBEIO |
1523 | bool "libeio package has been removed" | |
1524 | select BR2_LEGACY | |
1525 | select BR2_PACKAGE_EFL | |
1526 | help | |
1f83a7a7 | 1527 | With EFL 1.15, libeio is now provided by the efl package. |
e155c957 | 1528 | |
b728fb77 RN |
1529 | config BR2_PACKAGE_LIBEMBRYO |
1530 | bool "libembryo package has been removed" | |
1531 | select BR2_LEGACY | |
1532 | select BR2_PACKAGE_EFL | |
1533 | help | |
1f83a7a7 | 1534 | With EFL 1.15, libembryo is now provided by the efl package. |
b728fb77 | 1535 | |
4c93c107 RN |
1536 | config BR2_PACKAGE_LIBEDJE |
1537 | bool "libedje package has been removed" | |
1538 | select BR2_LEGACY | |
1539 | select BR2_PACKAGE_EFL | |
1540 | help | |
1f83a7a7 | 1541 | With EFL 1.15, libedje is now provided by the efl package. |
4c93c107 | 1542 | |
905dba10 RN |
1543 | config BR2_PACKAGE_LIBETHUMB |
1544 | bool "libethumb package has been removed" | |
1545 | select BR2_LEGACY | |
1546 | select BR2_PACKAGE_EFL | |
1547 | help | |
1f83a7a7 | 1548 | With EFL 1.15, libethumb is now provided by the efl package. |
905dba10 | 1549 | |
f0c94704 LC |
1550 | config BR2_PACKAGE_INFOZIP |
1551 | bool "infozip option has been renamed to zip" | |
1552 | select BR2_LEGACY | |
1553 | select BR2_PACKAGE_ZIP | |
1554 | help | |
1555 | Info-Zip's Zip package has been renamed from infozip to zip, | |
d6109172 RM |
1556 | to avoid ambiguities with Info-Zip's UnZip which has been |
1557 | added in the unzip package. | |
f0c94704 | 1558 | |
a2d16600 | 1559 | config BR2_BR2_PACKAGE_NODEJS_0_10_X |
75b70492 | 1560 | bool "nodejs 0.10.x option removed" |
a2d16600 MB |
1561 | select BR2_LEGACY |
1562 | select BR2_PACKAGE_NODEJS | |
1563 | help | |
75b70492 | 1564 | nodejs 0.10.x option has been removed. 0.10.x is now |
d6109172 RM |
1565 | automatically chosen for ARMv5 architectures only and the |
1566 | latest nodejs for all other supported architectures. The | |
1567 | correct nodejs version has been automatically selected in your | |
1568 | configuration. | |
a2d16600 | 1569 | |
a314b878 MB |
1570 | config BR2_BR2_PACKAGE_NODEJS_0_12_X |
1571 | bool "nodejs version 0.12.x has been removed" | |
1572 | select BR2_LEGACY | |
1573 | select BR2_PACKAGE_NODEJS | |
1574 | help | |
1575 | nodejs version 0.12.x has been removed. As an alternative, | |
1576 | the latest nodejs version has been automatically selected in | |
1577 | your configuration. | |
1578 | ||
90bf67c0 MB |
1579 | config BR2_BR2_PACKAGE_NODEJS_4_X |
1580 | bool "nodejs version 4.x has been removed" | |
1581 | select BR2_LEGACY | |
1582 | select BR2_PACKAGE_NODEJS | |
1583 | help | |
1584 | nodejs version 4.x has been removed. As an alternative, | |
1585 | the latest nodejs version has been automatically selected in | |
1586 | your configuration. | |
1587 | ||
16b8e813 | 1588 | ############################################################################### |
ae46e8f9 TP |
1589 | comment "Legacy options removed in 2015.11" |
1590 | ||
301e8ffb PS |
1591 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL |
1592 | bool "gst1-plugins-bad real plugin has been removed" | |
1593 | select BR2_LEGACY | |
1594 | help | |
1595 | The real plugin from GStreamer 1 bad plugins has been | |
1596 | removed. | |
1597 | ||
f7dd5cb2 PS |
1598 | config BR2_PACKAGE_MEDIA_CTL |
1599 | bool "media-ctl package has been removed" | |
1600 | select BR2_LEGACY | |
1601 | select BR2_PACKAGE_LIBV4L | |
1602 | select BR2_PACKAGE_LIBV4L_UTILS | |
1603 | help | |
d6109172 RM |
1604 | media-ctl source and developement have been moved to v4l-utils |
1605 | since June 2014. For an up-to-date media-ctl version select | |
1606 | BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS. | |
f7dd5cb2 | 1607 | |
f8031339 RN |
1608 | config BR2_PACKAGE_SCHIFRA |
1609 | bool "schifra package has been removed" | |
758c5c7f | 1610 | select BR2_LEGACY |
f8031339 | 1611 | help |
d6109172 RM |
1612 | Schifra package has been maked broken since 2014.11 release |
1613 | and haven't been fixed since then. | |
f8031339 | 1614 | |
7e5ddbcb MH |
1615 | config BR2_PACKAGE_ZXING |
1616 | bool "zxing option has been renamed" | |
1617 | select BR2_LEGACY | |
1618 | select BR2_PACKAGE_ZXING_CPP | |
1619 | help | |
d6109172 RM |
1620 | ZXing no longer provides the cpp bindings, it has been renamed |
1621 | to BR2_PACKAGE_ZXING_CPP which uses a new upstream. | |
7e5ddbcb | 1622 | |
4d131b4d YM |
1623 | # Since FreeRDP has new dependencies, protect this legacy to avoid the |
1624 | # infamous "unmet direct dependencies" kconfig error. | |
1625 | config BR2_PACKAGE_FREERDP_CLIENT | |
1626 | bool "freerdp client option renamed" | |
1627 | depends on BR2_PACKAGE_FREERDP | |
758c5c7f | 1628 | select BR2_LEGACY |
4d131b4d YM |
1629 | select BR2_PACKAGE_FREERDP_CLIENT_X11 |
1630 | ||
a658c4d1 GZ |
1631 | config BR2_PACKAGE_BLACKBOX |
1632 | bool "blackbox package has been removed" | |
1633 | select BR2_LEGACY | |
1634 | help | |
1635 | Upstream is dead and the package has been deprecated for | |
1636 | some time. There are other alternative maintained WMs. | |
1637 | ||
4ac4bc32 GZ |
1638 | config BR2_KERNEL_HEADERS_3_0 |
1639 | bool "kernel headers version 3.0.x are no longer supported" | |
1640 | select BR2_KERNEL_HEADERS_3_2 | |
1641 | select BR2_LEGACY | |
1642 | help | |
1643 | Version 3.0.x of the Linux kernel headers have been deprecated | |
1644 | for more than four buildroot releases and are now removed. | |
1645 | As an alternative, version 3.2.x of the headers have been | |
1646 | automatically selected in your configuration. | |
1647 | ||
1648 | config BR2_KERNEL_HEADERS_3_11 | |
1649 | bool "kernel headers version 3.11.x are no longer supported" | |
a26aa968 | 1650 | select BR2_KERNEL_HEADERS_3_10 |
4ac4bc32 GZ |
1651 | select BR2_LEGACY |
1652 | help | |
d6109172 RM |
1653 | Version 3.11.x of the Linux kernel headers have been |
1654 | deprecated for more than four buildroot releases and are now | |
1655 | removed. | |
a26aa968 | 1656 | As an alternative, version 3.10.x of the headers have been |
4ac4bc32 GZ |
1657 | automatically selected in your configuration. |
1658 | ||
1659 | config BR2_KERNEL_HEADERS_3_13 | |
1660 | bool "kernel headers version 3.13.x are no longer supported" | |
a26aa968 | 1661 | select BR2_KERNEL_HEADERS_3_12 |
4ac4bc32 GZ |
1662 | select BR2_LEGACY |
1663 | help | |
d6109172 RM |
1664 | Version 3.13.x of the Linux kernel headers have been |
1665 | deprecated for more than four buildroot releases and are now | |
1666 | removed. | |
a26aa968 | 1667 | As an alternative, version 3.12.x of the headers have been |
4ac4bc32 GZ |
1668 | automatically selected in your configuration. |
1669 | ||
1670 | config BR2_KERNEL_HEADERS_3_15 | |
1671 | bool "kernel headers version 3.15.x are no longer supported" | |
6be22624 | 1672 | select BR2_KERNEL_HEADERS_3_12 |
4ac4bc32 GZ |
1673 | select BR2_LEGACY |
1674 | help | |
d6109172 RM |
1675 | Version 3.15.x of the Linux kernel headers have been |
1676 | deprecated for more than four buildroot releases and are now | |
1677 | removed. | |
6be22624 | 1678 | As an alternative, version 3.12.x of the headers have been |
4ac4bc32 GZ |
1679 | automatically selected in your configuration. |
1680 | ||
80404e8c TP |
1681 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI |
1682 | bool "DirectFB example df_andi has been removed" | |
758c5c7f | 1683 | select BR2_LEGACY |
80404e8c TP |
1684 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1685 | help | |
1686 | The per-DirectFB example options have been removed. The | |
1687 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1688 | examples. | |
1689 | ||
1690 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD | |
1691 | bool "DirectFB example df_bltload has been removed" | |
758c5c7f | 1692 | select BR2_LEGACY |
80404e8c TP |
1693 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1694 | help | |
1695 | The per-DirectFB example options have been removed. The | |
1696 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1697 | examples. | |
1698 | ||
1699 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD | |
1700 | bool "DirectFB example df_cpuload has been removed" | |
758c5c7f | 1701 | select BR2_LEGACY |
80404e8c TP |
1702 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1703 | help | |
1704 | The per-DirectFB example options have been removed. The | |
1705 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1706 | examples. | |
1707 | ||
1708 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER | |
1709 | bool "DirectFB example df_databuffer has been removed" | |
758c5c7f | 1710 | select BR2_LEGACY |
80404e8c TP |
1711 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1712 | help | |
1713 | The per-DirectFB example options have been removed. The | |
1714 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1715 | examples. | |
1716 | ||
1717 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD | |
1718 | bool "DirectFB example df_dioload has been removed" | |
758c5c7f | 1719 | select BR2_LEGACY |
80404e8c TP |
1720 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1721 | help | |
1722 | The per-DirectFB example options have been removed. The | |
1723 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1724 | examples. | |
1725 | ||
1726 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK | |
1727 | bool "DirectFB example df_dok has been removed" | |
758c5c7f | 1728 | select BR2_LEGACY |
80404e8c TP |
1729 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1730 | help | |
1731 | The per-DirectFB example options have been removed. The | |
1732 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1733 | examples. | |
1734 | ||
1735 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST | |
1736 | bool "DirectFB example df_drivertest has been removed" | |
758c5c7f | 1737 | select BR2_LEGACY |
80404e8c TP |
1738 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1739 | help | |
1740 | The per-DirectFB example options have been removed. The | |
1741 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1742 | examples. | |
1743 | ||
80404e8c TP |
1744 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE |
1745 | bool "DirectFB example df_fire has been removed" | |
758c5c7f | 1746 | select BR2_LEGACY |
80404e8c TP |
1747 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1748 | help | |
1749 | The per-DirectFB example options have been removed. The | |
1750 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1751 | examples. | |
1752 | ||
1753 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP | |
1754 | bool "DirectFB example df_flip has been removed" | |
758c5c7f | 1755 | select BR2_LEGACY |
80404e8c TP |
1756 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1757 | help | |
1758 | The per-DirectFB example options have been removed. The | |
1759 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1760 | examples. | |
1761 | ||
1762 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS | |
1763 | bool "DirectFB example df_fonts has been removed" | |
758c5c7f | 1764 | select BR2_LEGACY |
80404e8c TP |
1765 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1766 | help | |
1767 | The per-DirectFB example options have been removed. The | |
1768 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1769 | examples. | |
1770 | ||
1771 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT | |
1772 | bool "DirectFB example df_input has been removed" | |
758c5c7f | 1773 | select BR2_LEGACY |
80404e8c TP |
1774 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1775 | help | |
1776 | The per-DirectFB example options have been removed. The | |
1777 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1778 | examples. | |
1779 | ||
1780 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK | |
1781 | bool "DirectFB example df_joystick has been removed" | |
758c5c7f | 1782 | select BR2_LEGACY |
80404e8c TP |
1783 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1784 | help | |
1785 | The per-DirectFB example options have been removed. The | |
1786 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1787 | examples. | |
1788 | ||
1789 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES | |
1790 | bool "DirectFB example df_knuckles has been removed" | |
758c5c7f | 1791 | select BR2_LEGACY |
80404e8c TP |
1792 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1793 | help | |
1794 | The per-DirectFB example options have been removed. The | |
1795 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1796 | examples. | |
1797 | ||
1798 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER | |
1799 | bool "DirectFB example df_layer has been removed" | |
758c5c7f | 1800 | select BR2_LEGACY |
80404e8c TP |
1801 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1802 | help | |
1803 | The per-DirectFB example options have been removed. The | |
1804 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1805 | examples. | |
1806 | ||
1807 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX | |
1808 | bool "DirectFB example df_matrix has been removed" | |
758c5c7f | 1809 | select BR2_LEGACY |
80404e8c TP |
1810 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1811 | help | |
1812 | The per-DirectFB example options have been removed. The | |
1813 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1814 | examples. | |
1815 | ||
1816 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER | |
1817 | bool "DirectFB example df_matrix_water has been removed" | |
758c5c7f | 1818 | select BR2_LEGACY |
80404e8c TP |
1819 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1820 | help | |
1821 | The per-DirectFB example options have been removed. The | |
1822 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1823 | examples. | |
1824 | ||
1825 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO | |
1826 | bool "DirectFB example df_neo has been removed" | |
758c5c7f | 1827 | select BR2_LEGACY |
80404e8c TP |
1828 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1829 | help | |
1830 | The per-DirectFB example options have been removed. The | |
1831 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1832 | examples. | |
1833 | ||
1834 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD | |
1835 | bool "DirectFB example df_netload has been removed" | |
758c5c7f | 1836 | select BR2_LEGACY |
80404e8c TP |
1837 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1838 | help | |
1839 | The per-DirectFB example options have been removed. The | |
1840 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1841 | examples. | |
1842 | ||
1843 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE | |
1844 | bool "DirectFB example df_palette has been removed" | |
1845 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
1846 | help | |
1847 | The per-DirectFB example options have been removed. The | |
1848 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1849 | examples. | |
1850 | ||
1851 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE | |
1852 | bool "DirectFB example df_particle has been removed" | |
758c5c7f | 1853 | select BR2_LEGACY |
80404e8c TP |
1854 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1855 | help | |
1856 | The per-DirectFB example options have been removed. The | |
1857 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1858 | examples. | |
1859 | ||
1860 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER | |
1861 | bool "DirectFB example df_porter has been removed" | |
758c5c7f | 1862 | select BR2_LEGACY |
80404e8c TP |
1863 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1864 | help | |
1865 | The per-DirectFB example options have been removed. The | |
1866 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1867 | examples. | |
1868 | ||
1869 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS | |
1870 | bool "DirectFB example df_stress has been removed" | |
1871 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
1872 | help | |
1873 | The per-DirectFB example options have been removed. The | |
1874 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1875 | examples. | |
1876 | ||
1877 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE | |
1878 | bool "DirectFB example df_texture has been removed" | |
758c5c7f | 1879 | select BR2_LEGACY |
80404e8c TP |
1880 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1881 | help | |
1882 | The per-DirectFB example options have been removed. The | |
1883 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1884 | examples. | |
1885 | ||
1886 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO | |
1887 | bool "DirectFB example df_video has been removed" | |
758c5c7f | 1888 | select BR2_LEGACY |
80404e8c TP |
1889 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1890 | help | |
1891 | The per-DirectFB example options have been removed. The | |
1892 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1893 | examples. | |
1894 | ||
1895 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE | |
1896 | bool "DirectFB example df_video_particle has been removed" | |
758c5c7f | 1897 | select BR2_LEGACY |
80404e8c TP |
1898 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1899 | help | |
1900 | The per-DirectFB example options have been removed. The | |
1901 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1902 | examples. | |
1903 | ||
1904 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW | |
1905 | bool "DirectFB example df_window has been removed" | |
758c5c7f | 1906 | select BR2_LEGACY |
80404e8c TP |
1907 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
1908 | help | |
1909 | The per-DirectFB example options have been removed. The | |
1910 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
1911 | examples. | |
1912 | ||
2b78fb21 GB |
1913 | config BR2_PACKAGE_KOBS_NG |
1914 | bool "kobs-ng was replaced by imx-kobs" | |
1915 | select BR2_LEGACY | |
1916 | select BR2_PACKAGE_IMX_KOBS | |
1917 | help | |
1918 | The outdated kobs-ng has been replaced by the Freescale- | |
1919 | maintained imx-kobs package. | |
1920 | ||
11573f5a TP |
1921 | config BR2_PACKAGE_SAWMAN |
1922 | bool "sawman package removed" | |
1923 | select BR2_LEGACY | |
1924 | select BR2_PACKAGE_DIRECTFB_SAWMAN | |
1925 | help | |
1926 | This option has been removed because the sawman package no | |
1927 | longer exists: it was merged inside DirectFB itself. This | |
1928 | feature can now be enabled using the | |
1929 | BR2_PACKAGE_DIRECTFB_SAWMAN option. | |
1930 | ||
ae46e8f9 TP |
1931 | config BR2_PACKAGE_DIVINE |
1932 | bool "divine package removed" | |
1933 | select BR2_LEGACY | |
1934 | select BR2_PACKAGE_DIRECTFB_DIVINE | |
1935 | help | |
1936 | This option has been removed because the divine package no | |
1937 | longer exists: it was merged inside DirectFB itself. This | |
1938 | feature can now be enabled using the | |
1939 | BR2_PACKAGE_DIRECTFB_DIVINE option. | |
1940 | ||
1941 | ############################################################################### | |
16b8e813 GZ |
1942 | comment "Legacy options removed in 2015.08" |
1943 | ||
9d9f1a92 BK |
1944 | config BR2_PACKAGE_KODI_PVR_ADDONS |
1945 | bool "Kodi PVR addon was split" | |
1946 | select BR2_LEGACY | |
2579ec20 | 1947 | select BR2_PACKAGE_KODI_PVR_ARGUSTV |
a69eca43 | 1948 | select BR2_PACKAGE_KODI_PVR_DVBLINK |
6894c6c7 | 1949 | select BR2_PACKAGE_KODI_PVR_DVBVIEWER |
313e45cd | 1950 | select BR2_PACKAGE_KODI_PVR_FILMON |
6940d66a | 1951 | select BR2_PACKAGE_KODI_PVR_HTS |
8c326ff8 | 1952 | select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE |
a571287d | 1953 | select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER |
afb2f155 | 1954 | select BR2_PACKAGE_KODI_PVR_MYTHTV |
0757c7d3 | 1955 | select BR2_PACKAGE_KODI_PVR_NEXTPVR |
805e9c15 | 1956 | select BR2_PACKAGE_KODI_PVR_NJOY |
8776003d | 1957 | select BR2_PACKAGE_KODI_PVR_PCTV |
70cf949f | 1958 | select BR2_PACKAGE_KODI_PVR_STALKER |
610a3701 | 1959 | select BR2_PACKAGE_KODI_PVR_VBOX |
7457d487 | 1960 | select BR2_PACKAGE_KODI_PVR_VDR_VNSI |
eaf250c1 | 1961 | select BR2_PACKAGE_KODI_PVR_VUPLUS |
967a4e9a | 1962 | select BR2_PACKAGE_KODI_PVR_WMC |
9d9f1a92 BK |
1963 | help |
1964 | Kodi PVR addon was split into seperate modules | |
1965 | ||
f84cc202 GZ |
1966 | config BR2_BINUTILS_VERSION_2_23_2 |
1967 | bool "binutils 2.23 option renamed" | |
1968 | select BR2_LEGACY | |
f84cc202 | 1969 | help |
ae466a60 TP |
1970 | Binutils 2.23.2 has been removed, using a newer version is |
1971 | recommended. | |
f84cc202 GZ |
1972 | |
1973 | config BR2_BINUTILS_VERSION_2_24 | |
1974 | bool "binutils 2.24 option renamed" | |
1975 | select BR2_LEGACY | |
1976 | select BR2_BINUTILS_VERSION_2_24_X | |
1977 | help | |
1978 | The binutils version option has been renamed to match the | |
1979 | same patchlevel logic used by gcc. The new option is now | |
1980 | BR2_BINUTILS_VERSION_2_24_X. | |
1981 | ||
1982 | config BR2_BINUTILS_VERSION_2_25 | |
1983 | bool "binutils 2.25 option renamed" | |
1984 | select BR2_LEGACY | |
1985 | select BR2_BINUTILS_VERSION_2_25_X | |
1986 | help | |
1987 | The binutils version option has been renamed to match the | |
1988 | same patchlevel logic used by gcc. The new option is now | |
1989 | BR2_BINUTILS_VERSION_2_25_X. | |
1990 | ||
1326e761 RN |
1991 | config BR2_PACKAGE_PERF |
1992 | bool "perf option has been renamed" | |
1993 | select BR2_LEGACY | |
1994 | select BR2_LINUX_KERNEL_TOOL_PERF | |
1995 | help | |
1996 | The perf package has been moved as a Linux tools package, | |
1997 | and the option to enable it is now | |
1998 | BR2_LINUX_KERNEL_TOOL_PERF. | |
1999 | ||
2f845953 TP |
2000 | config BR2_BINUTILS_VERSION_2_22 |
2001 | bool "binutils 2.22 removed" | |
2002 | select BR2_LEGACY | |
2003 | help | |
2004 | Binutils 2.22 has been removed, using a newer version is | |
2005 | recommended. | |
2006 | ||
4c0613e7 GB |
2007 | config BR2_PACKAGE_GPU_VIV_BIN_MX6Q |
2008 | bool "gpu-viv-bin-mx6q" | |
2009 | select BR2_LEGACY | |
2010 | select BR2_PACKAGE_IMX_GPU_VIV | |
2011 | help | |
2012 | Vivante graphics libraries have been renamed to | |
2013 | BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package | |
2014 | name. | |
2015 | ||
7742abe0 | 2016 | config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS |
7742abe0 | 2017 | bool "libsemanage python bindings removed" |
a1264445 | 2018 | depends on BR2_PACKAGE_PYTHON |
758c5c7f | 2019 | select BR2_LEGACY |
7742abe0 MW |
2020 | help |
2021 | This option has been removed, since the libsemanage Python | |
2022 | bindings on the target were not useful. | |
2023 | ||
16b8e813 GZ |
2024 | config BR2_TARGET_UBOOT_NETWORK |
2025 | bool "U-Boot custom network settings removed" | |
2026 | select BR2_LEGACY | |
2027 | help | |
2028 | U-Boot's custom network settings options have been removed. | |
2029 | ||
120136ee | 2030 | ############################################################################### |
fd0e5f6b | 2031 | comment "Legacy options removed in 2015.05" |
665e13c8 | 2032 | |
e3904a89 ML |
2033 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K |
2034 | bool "jffs2 16kB erasesize NAND flash option renamed" | |
2035 | select BR2_LEGACY | |
2036 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K | |
2037 | help | |
2038 | The JFFS2 NAND flash options now longer include the page | |
2039 | size. | |
2040 | ||
2041 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K | |
2042 | bool "jffs2 128kB erasesize NAND flash option renamed" | |
2043 | select BR2_LEGACY | |
2044 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K | |
2045 | help | |
2046 | The JFFS2 NAND flash options now longer include the page | |
2047 | size. | |
2048 | ||
eff7c144 AC |
2049 | config BR2_PACKAGE_MONO_20 |
2050 | bool "2.0/3.5 .Net Runtime" | |
2051 | select BR2_LEGACY | |
2052 | help | |
2053 | This option no longer exists, all versions of the .Net | |
2054 | runtime are now installed. | |
2055 | ||
2056 | config BR2_PACKAGE_MONO_40 | |
2057 | bool "4.0 .Net Runtime" | |
2058 | select BR2_LEGACY | |
2059 | help | |
2060 | This option no longer exists, all versions of the .Net | |
2061 | runtime are now installed. | |
2062 | ||
2063 | config BR2_PACKAGE_MONO_45 | |
2064 | bool "4.5 .Net Runtime" | |
2065 | select BR2_LEGACY | |
2066 | help | |
2067 | This option no longer exists, all versions of the .Net | |
2068 | runtime are now installed. | |
2069 | ||
efd49e33 PK |
2070 | config BR2_CIVETWEB_WITH_LUA |
2071 | bool "civetweb lua option renamed" | |
2072 | select BR2_LEGACY | |
2073 | select BR2_PACKAGE_CIVETWEB_WITH_LUA | |
2074 | help | |
2075 | civetweb's lua option has been renamed to | |
2076 | BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other | |
2077 | packages name options. | |
2078 | ||
e6c7ad17 BK |
2079 | config BR2_PACKAGE_TIFF_TIFF2PDF |
2080 | bool "tiff utility-specific option removed" | |
2081 | select BR2_LEGACY | |
2082 | select BR2_PACKAGE_TIFF_UTILITIES | |
2083 | help | |
2084 | utility-specific options have been removed in favour of | |
2085 | the new option BR2_PACKAGE_TIFF_UTILITIES. | |
2086 | ||
2087 | config BR2_PACKAGE_TIFF_TIFFCP | |
2088 | bool "tiff utility-specific option removed" | |
2089 | select BR2_LEGACY | |
2090 | select BR2_PACKAGE_TIFF_UTILITIES | |
2091 | help | |
2092 | utility-specific options have been removed in favour of | |
2093 | the new option BR2_PACKAGE_TIFF_UTILITIES. | |
2094 | ||
e7035d4e TP |
2095 | config BR2_LINUX_KERNEL_EXT_RTAI_PATCH |
2096 | bool "RTAI patch file path has been removed" | |
758c5c7f | 2097 | select BR2_LEGACY |
e7035d4e TP |
2098 | help |
2099 | This option has never worked, so it has been removed. | |
2100 | ||
02917961 YM |
2101 | config BR2_TARGET_GENERIC_PASSWD_DES |
2102 | bool "Encoding passwords with DES has been removed" | |
2103 | select BR2_LEGACY | |
2104 | help | |
d6109172 RM |
2105 | Paswords can now only be encoded with either of md5, sha256 or |
2106 | sha512. The default is md5, which is stronger that DES (but | |
2107 | still pretty weak). | |
02917961 | 2108 | |
0d31b5e4 GZ |
2109 | config BR2_PACKAGE_GTK2_THEME_HICOLOR |
2110 | bool "hicolor (default theme) is a duplicate" | |
2111 | select BR2_LEGACY | |
2112 | select BR2_PACKAGE_HICOLOR_ICON_THEME | |
2113 | help | |
2114 | The option was just a duplicate of hicolor icon theme. | |
2115 | ||
fd0e5f6b MW |
2116 | config BR2_PACKAGE_VALGRIND_PTRCHECK |
2117 | bool "valgrind's PTRCheck was renamed to SGCheck" | |
2118 | select BR2_LEGACY | |
2119 | select BR2_PACKAGE_VALGRIND_SGCHECK | |
2120 | help | |
2121 | PTRCheck was renamed to SGCheck in valgrind | |
2122 | ||
2123 | ############################################################################### | |
665e13c8 TP |
2124 | comment "Legacy options removed in 2015.02" |
2125 | ||
10900c07 PA |
2126 | config BR2_PACKAGE_LIBGC |
2127 | bool "libgc package removed" | |
2128 | select BR2_LEGACY | |
2129 | select BR2_PACKAGE_BDWGC | |
2130 | help | |
d6109172 RM |
2131 | libgc has been removed because we have the same package under |
2132 | a different name, bdwgc. | |
10900c07 | 2133 | |
8d702aca YM |
2134 | config BR2_PACKAGE_WDCTL |
2135 | bool "util-linux' wdctl option has been renamed" | |
2136 | select BR2_LEGACY | |
2137 | select BR2_PACKAGE_UTIL_LINUX_WDCTL | |
2138 | help | |
d6109172 RM |
2139 | util-linux' wdctl option has been renamed to |
2140 | BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other | |
2141 | options are named. | |
8d702aca | 2142 | |
e44edb82 DM |
2143 | config BR2_PACKAGE_UTIL_LINUX_ARCH |
2144 | bool "util-linux' arch option has been removed" | |
2145 | select BR2_LEGACY | |
2146 | help | |
2147 | util-linux' arch was dropped in util-linux 2.23, in favor of | |
2148 | the coreutils version. | |
2149 | ||
2150 | config BR2_PACKAGE_UTIL_LINUX_DDATE | |
2151 | bool "util-linux' ddate option has been removed" | |
2152 | select BR2_LEGACY | |
2153 | help | |
2154 | util-linux' ddate was dropped in util-linux 2.23. | |
2155 | ||
3c476540 RN |
2156 | config BR2_PACKAGE_RPM_BZIP2_PAYLOADS |
2157 | bool "rpm's bzip2 payloads option has been removed" | |
2158 | select BR2_LEGACY | |
2159 | select BR2_PACKAGE_BZIP2 | |
2160 | help | |
d6109172 RM |
2161 | The bzip2 payloads option rely entirely on the dependant |
2162 | package bzip2. So, you need to select it to enable this | |
2163 | feature. | |
3c476540 RN |
2164 | |
2165 | config BR2_PACKAGE_RPM_XZ_PAYLOADS | |
2166 | bool "rpm's xz payloads option has been removed" | |
2167 | select BR2_LEGACY | |
2168 | select BR2_PACKAGE_XZ | |
2169 | help | |
d6109172 RM |
2170 | The xz payloads option rely entirely on the dependant package |
2171 | xz. So, you need to select it to enable this feature. | |
3c476540 | 2172 | |
6927bc91 GZ |
2173 | config BR2_PACKAGE_M4 |
2174 | bool "m4 target package removed" | |
2175 | select BR2_LEGACY | |
2176 | help | |
2177 | The m4 target package has been removed, it's been | |
2178 | deprecated for some time now. | |
2179 | ||
aa6ea7ab GZ |
2180 | config BR2_PACKAGE_FLEX_BINARY |
2181 | bool "flex binary in target option removed" | |
2182 | select BR2_LEGACY | |
2183 | help | |
2184 | The flex binary in the target option has been removed. | |
2185 | It's been deprecated for some time now and is essentially a | |
2186 | development tool which isn't very useful in the target. | |
2187 | ||
38dabc6e GZ |
2188 | config BR2_PACKAGE_BISON |
2189 | bool "bison target package removed" | |
2190 | select BR2_LEGACY | |
2191 | help | |
2192 | The bison target package has been removed, it's been | |
2193 | deprecated for some time now and is essentially a development | |
2194 | tool which isn't very useful in the target. | |
2195 | ||
7f9d4441 GZ |
2196 | config BR2_PACKAGE_GOB2 |
2197 | bool "gob2 target package removed" | |
2198 | select BR2_LEGACY | |
2199 | help | |
2200 | The gob2 target package has been removed, it's been | |
2201 | deprecated for some time now and was essentially useless | |
2202 | without a target toolchain. | |
2203 | ||
c2e3d0be GZ |
2204 | config BR2_PACKAGE_DISTCC |
2205 | bool "distcc target package removed" | |
2206 | select BR2_LEGACY | |
2207 | help | |
2208 | The distcc target package has been removed, it's been | |
2209 | deprecated for some time now and was essentially useless | |
2210 | without a target toolchain. | |
2211 | ||
b64cde60 GZ |
2212 | config BR2_PACKAGE_HASERL_VERSION_0_8_X |
2213 | bool "haserl 0.8.x version removed" | |
2214 | select BR2_LEGACY | |
2215 | help | |
2216 | The 0.8.x version option for haserl has been removed since it | |
2217 | has been deprecated for some time now. | |
2218 | You should be able to use the 0.9.x version without issues. | |
2219 | ||
0120d9f3 GZ |
2220 | config BR2_PACKAGE_STRONGSWAN_TOOLS |
2221 | bool "strongswan option has been removed" | |
2222 | select BR2_LEGACY | |
2223 | select BR2_PACKAGE_STRONGSWAN_PKI | |
2224 | select BR2_PACKAGE_STRONGSWAN_SCEP | |
2225 | help | |
d6109172 RM |
2226 | The tools option has been removed upstream and the different |
2227 | tools have been split between the pki and scep options, with | |
2228 | others deprecated. | |
0120d9f3 | 2229 | |
db78eb07 | 2230 | config BR2_PACKAGE_XBMC_ADDON_XVDR |
1c2a63ad | 2231 | bool "xbmc-addon-xvdr removed" |
db78eb07 | 2232 | select BR2_LEGACY |
db78eb07 | 2233 | help |
1c2a63ad AV |
2234 | According to the github project page: |
2235 | https://github.com/pipelka/xbmc-addon-xvdr | |
2236 | this package is discontinued. | |
db78eb07 | 2237 | |
b3df2a35 BK |
2238 | config BR2_PACKAGE_XBMC_PVR_ADDONS |
2239 | bool "xbmc options have been renamed" | |
2240 | select BR2_LEGACY | |
2241 | select BR2_PACKAGE_KODI_PVR_ADDONS | |
2242 | help | |
d6109172 RM |
2243 | The XBMC media center project was renamed to Kodi |
2244 | entertainment center | |
b3df2a35 | 2245 | |
35784597 BK |
2246 | config BR2_PACKAGE_XBMC |
2247 | bool "xbmc options have been renamed" | |
2248 | select BR2_LEGACY | |
2249 | select BR2_PACKAGE_KODI | |
2250 | help | |
d6109172 RM |
2251 | The XBMC media center project was renamed to Kodi |
2252 | entertainment center | |
35784597 BK |
2253 | |
2254 | config BR2_PACKAGE_XBMC_ALSA_LIB | |
2255 | bool "xbmc options have been renamed" | |
2256 | select BR2_LEGACY | |
2257 | select BR2_PACKAGE_KODI_ALSA_LIB | |
2258 | help | |
d6109172 RM |
2259 | The XBMC media center project was renamed to Kodi |
2260 | entertainment center | |
35784597 BK |
2261 | |
2262 | config BR2_PACKAGE_XBMC_AVAHI | |
2263 | bool "xbmc options have been renamed" | |
2264 | select BR2_LEGACY | |
2265 | select BR2_PACKAGE_KODI_AVAHI | |
2266 | help | |
d6109172 RM |
2267 | The XBMC media center project was renamed to Kodi |
2268 | entertainment center | |
35784597 BK |
2269 | |
2270 | config BR2_PACKAGE_XBMC_DBUS | |
2271 | bool "xbmc options have been renamed" | |
2272 | select BR2_LEGACY | |
2273 | select BR2_PACKAGE_KODI_DBUS | |
2274 | help | |
d6109172 RM |
2275 | The XBMC media center project was renamed to Kodi |
2276 | entertainment center | |
35784597 BK |
2277 | |
2278 | config BR2_PACKAGE_XBMC_LIBBLURAY | |
2279 | bool "xbmc options have been renamed" | |
2280 | select BR2_LEGACY | |
2281 | select BR2_PACKAGE_KODI_LIBBLURAY | |
2282 | help | |
d6109172 RM |
2283 | The XBMC media center project was renamed to Kodi |
2284 | entertainment center | |
35784597 BK |
2285 | |
2286 | config BR2_PACKAGE_XBMC_GOOM | |
2287 | bool "xbmc options have been renamed" | |
2288 | select BR2_LEGACY | |
2289 | select BR2_PACKAGE_KODI_GOOM | |
2290 | help | |
d6109172 RM |
2291 | The XBMC media center project was renamed to Kodi |
2292 | entertainment center | |
35784597 BK |
2293 | |
2294 | config BR2_PACKAGE_XBMC_RSXS | |
2295 | bool "xbmc options have been renamed" | |
2296 | select BR2_LEGACY | |
2297 | select BR2_PACKAGE_KODI_RSXS | |
2298 | help | |
d6109172 RM |
2299 | The XBMC media center project was renamed to Kodi |
2300 | entertainment center | |
35784597 BK |
2301 | |
2302 | config BR2_PACKAGE_XBMC_LIBCEC | |
2303 | bool "xbmc options have been renamed" | |
2304 | select BR2_LEGACY | |
2305 | select BR2_PACKAGE_KODI_LIBCEC | |
2306 | help | |
d6109172 RM |
2307 | The XBMC media center project was renamed to Kodi |
2308 | entertainment center | |
35784597 BK |
2309 | |
2310 | config BR2_PACKAGE_XBMC_LIBMICROHTTPD | |
2311 | bool "xbmc options have been renamed" | |
2312 | select BR2_LEGACY | |
2313 | select BR2_PACKAGE_KODI_LIBMICROHTTPD | |
2314 | help | |
d6109172 RM |
2315 | The XBMC media center project was renamed to Kodi |
2316 | entertainment center | |
35784597 BK |
2317 | |
2318 | config BR2_PACKAGE_XBMC_LIBNFS | |
2319 | bool "xbmc options have been renamed" | |
2320 | select BR2_LEGACY | |
2321 | select BR2_PACKAGE_KODI_LIBNFS | |
2322 | help | |
d6109172 RM |
2323 | The XBMC media center project was renamed to Kodi |
2324 | entertainment center | |
35784597 BK |
2325 | |
2326 | config BR2_PACKAGE_XBMC_RTMPDUMP | |
2327 | bool "xbmc options have been renamed" | |
2328 | select BR2_LEGACY | |
2329 | select BR2_PACKAGE_KODI_RTMPDUMP | |
2330 | help | |
d6109172 RM |
2331 | The XBMC media center project was renamed to Kodi |
2332 | entertainment center | |
35784597 BK |
2333 | |
2334 | config BR2_PACKAGE_XBMC_LIBSHAIRPLAY | |
2335 | bool "xbmc options have been renamed" | |
2336 | select BR2_LEGACY | |
2337 | select BR2_PACKAGE_KODI_LIBSHAIRPLAY | |
2338 | help | |
d6109172 RM |
2339 | The XBMC media center project was renamed to Kodi |
2340 | entertainment center | |
35784597 BK |
2341 | |
2342 | config BR2_PACKAGE_XBMC_LIBSMBCLIENT | |
2343 | bool "xbmc options have been renamed" | |
2344 | select BR2_LEGACY | |
2345 | select BR2_PACKAGE_KODI_LIBSMBCLIENT | |
2346 | help | |
d6109172 RM |
2347 | The XBMC media center project was renamed to Kodi |
2348 | entertainment center | |
35784597 BK |
2349 | |
2350 | config BR2_PACKAGE_XBMC_LIBTHEORA | |
2351 | bool "xbmc options have been renamed" | |
2352 | select BR2_LEGACY | |
2353 | select BR2_PACKAGE_KODI_LIBTHEORA | |
2354 | help | |
d6109172 RM |
2355 | The XBMC media center project was renamed to Kodi |
2356 | entertainment center | |
35784597 BK |
2357 | |
2358 | config BR2_PACKAGE_XBMC_LIBUSB | |
2359 | bool "xbmc options have been renamed" | |
2360 | select BR2_LEGACY | |
2361 | select BR2_PACKAGE_KODI_LIBUSB | |
2362 | help | |
d6109172 RM |
2363 | The XBMC media center project was renamed to Kodi |
2364 | entertainment center | |
35784597 BK |
2365 | |
2366 | config BR2_PACKAGE_XBMC_LIBVA | |
2367 | bool "xbmc options have been renamed" | |
2368 | select BR2_LEGACY | |
2369 | select BR2_PACKAGE_KODI_LIBVA | |
2370 | help | |
d6109172 RM |
2371 | The XBMC media center project was renamed to Kodi |
2372 | entertainment center | |
35784597 BK |
2373 | |
2374 | config BR2_PACKAGE_XBMC_WAVPACK | |
2375 | bool "xbmc options have been renamed" | |
2376 | select BR2_LEGACY | |
2377 | select BR2_PACKAGE_KODI_WAVPACK | |
2378 | help | |
d6109172 RM |
2379 | The XBMC media center project was renamed to Kodi |
2380 | entertainment center | |
35784597 | 2381 | |
665e13c8 TP |
2382 | config BR2_PREFER_STATIC_LIB |
2383 | bool "static library option renamed" | |
a44b1c14 | 2384 | select BR2_LEGACY |
665e13c8 TP |
2385 | help |
2386 | The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It | |
2387 | highlights the fact that the option no longer "prefers" | |
2388 | static libraries, but "enforces" static libraries (i.e | |
2389 | shared libraries are completely unused). | |
2390 | ||
a44b1c14 SM |
2391 | Take care of updating the type of libraries you want under the |
2392 | "Build options" menu. | |
2393 | ||
35784597 | 2394 | ############################################################################### |
120136ee YM |
2395 | comment "Legacy options removed in 2014.11" |
2396 | ||
a52bad85 PK |
2397 | config BR2_x86_generic |
2398 | bool "x86 generic variant has been removed" | |
2399 | select BR2_LEGACY | |
2400 | help | |
2401 | The generic x86 CPU variant has been removed. Use another | |
a95e98c0 | 2402 | CPU variant instead. |
a52bad85 | 2403 | |
40e18f29 AL |
2404 | config BR2_GCC_VERSION_4_4_X |
2405 | bool "gcc 4.4.x has been removed" | |
2406 | select BR2_LEGACY | |
2407 | help | |
2408 | The 4.4.x version of gcc has been removed. Use a newer | |
2409 | version instead. | |
2410 | ||
43b78e72 AL |
2411 | config BR2_sparc_sparchfleon |
2412 | bool "sparchfleon CPU has been removed" | |
2413 | select BR2_LEGACY | |
2414 | help | |
2415 | The sparchfleon CPU was only supported in a patched gcc 4.4 | |
2416 | version. Its support has been removed in favor of the leon3 | |
2417 | CPU starting from gcc 4.8.x. | |
2418 | ||
2419 | config BR2_sparc_sparchfleonv8 | |
2420 | bool "sparchfleonv8 CPU has been removed" | |
2421 | select BR2_LEGACY | |
2422 | help | |
2423 | The sparchfleonv8 CPU was only supported in a patched gcc | |
2424 | 4.4 version. Its support has been removed in favor of the | |
2425 | leon3 CPU starting from gcc 4.8.x. | |
2426 | ||
2427 | config BR2_sparc_sparcsfleon | |
2428 | bool "sparcsfleon CPU has been removed" | |
2429 | select BR2_LEGACY | |
2430 | help | |
2431 | The sparcsfleon CPU was only supported in a patched gcc 4.4 | |
2432 | version. Its support has been removed in favor of the leon3 | |
2433 | CPU starting from gcc 4.8.x. | |
2434 | ||
2435 | config BR2_sparc_sparcsfleonv8 | |
2436 | bool "sparcsfleonv8 CPU has been removed" | |
2437 | select BR2_LEGACY | |
2438 | help | |
2439 | The sparcsfleonv8 CPU was only supported in a patched gcc | |
2440 | 4.4 version. Its support has been removed in favor of the | |
2441 | leon3 CPU starting from gcc 4.8.x. | |
2442 | ||
bfd87877 BK |
2443 | config BR2_PACKAGE_XLIB_LIBPCIACCESS |
2444 | bool "xlib-libpciaccess option has been renamed" | |
2445 | depends on BR2_PACKAGE_XORG7 | |
2446 | select BR2_LEGACY | |
2447 | select BR2_PACKAGE_LIBPCIACCESS | |
2448 | help | |
2449 | libpciaccess neither depends on X11 nor Xlib. Thus the | |
2450 | package has been renamed BR2_PACKAGE_LIBPCIACCESS | |
2451 | ||
b581bba9 YM |
2452 | config BR2_PACKAGE_LINUX_FIRMWARE_XC5000 |
2453 | bool "Xceive xc5000 option has been renamed" | |
758c5c7f | 2454 | select BR2_LEGACY |
b581bba9 YM |
2455 | select BR2_PACKAGE_LINUX_FIRMWARE_XCx000 |
2456 | help | |
2457 | The Xceive xc5000 option now also handles older firmwares from | |
d6109172 RM |
2458 | Xceive (the xc4000 series), as well as new firmwares (the |
2459 | xc5000c) from Cresta, who bought Xceive. | |
b581bba9 | 2460 | |
dac546e9 YM |
2461 | config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 |
2462 | bool "Chelsio T4 option has been renamed" | |
758c5c7f | 2463 | select BR2_LEGACY |
dac546e9 YM |
2464 | select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 |
2465 | help | |
2466 | The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 | |
2467 | has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 | |
2468 | to better account for the fact that a T5 variant exists. | |
2469 | ||
120136ee YM |
2470 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 |
2471 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed" | |
758c5c7f | 2472 | select BR2_LEGACY |
120136ee YM |
2473 | help |
2474 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was | |
2475 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must | |
2476 | select it in: | |
2477 | Target packages -> Hardware handling -> | |
2478 | Firmware -> linux-firmware -> WiFi firmware -> | |
2479 | iwlwifi 3160/726x revision to use (revision 7) | |
2480 | ||
2481 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 | |
2482 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed" | |
758c5c7f | 2483 | select BR2_LEGACY |
120136ee YM |
2484 | help |
2485 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was | |
2486 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must | |
2487 | select it in: | |
2488 | Target packages -> Hardware handling -> | |
2489 | Firmware -> linux-firmware -> WiFi firmware -> | |
2490 | iwlwifi 3160/726x revision to use (revision 8) | |
2491 | ||
5cd1c4fe YM |
2492 | ############################################################################### |
2493 | comment "Legacy options removed in 2014.08" | |
2494 | ||
52fac6a2 GC |
2495 | config BR2_PACKAGE_LIBELF |
2496 | bool "libelf has been removed" | |
2497 | select BR2_PACKAGE_ELFUTILS | |
2498 | select BR2_LEGACY | |
2499 | help | |
d6109172 RM |
2500 | The libelf package provided an old version of the libelf |
2501 | library and is deprecated. The libelf library is now provided | |
2502 | by the elfutils package. | |
52fac6a2 | 2503 | |
dfae6f67 TDS |
2504 | config BR2_KERNEL_HEADERS_3_8 |
2505 | bool "kernel headers version 3.8.x are no longer supported" | |
a26aa968 | 2506 | select BR2_KERNEL_HEADERS_3_4 |
dfae6f67 TDS |
2507 | select BR2_LEGACY |
2508 | help | |
2509 | Version 3.8.x of the Linux kernel headers have been deprecated | |
2510 | for more than four buildroot releases and are now removed. | |
a26aa968 | 2511 | As an alternative, version 3.4.x of the headers have been |
dfae6f67 TDS |
2512 | automatically selected in your configuration. |
2513 | ||
187b4d68 TP |
2514 | config BR2_PACKAGE_GETTEXT_TOOLS |
2515 | bool "support for gettext-tools on target has been removed" | |
2516 | select BR2_LEGACY | |
2517 | help | |
2518 | The option to install the gettext utilities on the target | |
2519 | has been removed. This is not necessary as Buildroot is not | |
2520 | designed to provide a full development environment on the | |
2521 | target. gettext tools should be used on the build machine | |
2522 | instead. | |
2523 | ||
5cd1c4fe YM |
2524 | config BR2_PACKAGE_PROCPS |
2525 | bool "procps has been replaced by procps-ng" | |
2526 | select BR2_PACKAGE_PROCPS_NG | |
2527 | select BR2_LEGACY | |
2528 | help | |
d6109172 RM |
2529 | The procps package has been replaced by the equivalent |
2530 | procps-ng. | |
5cd1c4fe | 2531 | |
d4839ffc TP |
2532 | config BR2_BINUTILS_VERSION_2_20_1 |
2533 | bool "binutils 2.20.1 has been removed" | |
2534 | select BR2_LEGACY | |
2535 | help | |
2536 | The 2.20.1 version of binutils has been removed. Use a newer | |
2537 | version instead. | |
2538 | ||
2539 | config BR2_BINUTILS_VERSION_2_21 | |
2540 | bool "binutils 2.21 has been removed" | |
2541 | select BR2_LEGACY | |
2542 | help | |
2543 | The 2.21 version of binutils has been removed. Use a newer | |
2544 | version instead. | |
2545 | ||
2546 | config BR2_BINUTILS_VERSION_2_23_1 | |
2547 | bool "binutils 2.23.1 has been removed" | |
2548 | select BR2_LEGACY | |
2549 | help | |
2550 | The 2.23.1 version of binutils has been removed. Use a newer | |
2551 | version instead. | |
2552 | ||
506b964d TP |
2553 | config BR2_UCLIBC_VERSION_0_9_32 |
2554 | bool "uclibc 0.9.32 has been removed" | |
2555 | select BR2_LEGACY | |
2556 | help | |
2557 | The 0.9.32 version of uClibc has been removed. Use a newer | |
2558 | version instead. | |
2559 | ||
d10e0805 TP |
2560 | config BR2_GCC_VERSION_4_3_X |
2561 | bool "gcc 4.3.x has been removed" | |
2562 | select BR2_LEGACY | |
2563 | help | |
2564 | The 4.3.x version of gcc has been removed. Use a newer | |
2565 | version instead. | |
2566 | ||
2567 | config BR2_GCC_VERSION_4_6_X | |
2568 | bool "gcc 4.6.x has been removed" | |
2569 | select BR2_LEGACY | |
2570 | help | |
2571 | The 4.6.x version of gcc has been removed. Use a newer | |
2572 | version instead. | |
2573 | ||
02d85f65 TP |
2574 | config BR2_GDB_VERSION_7_4 |
2575 | bool "gdb 7.4 has been removed" | |
2576 | select BR2_LEGACY | |
2577 | help | |
2578 | The 7.4 version of gdb has been removed. Use a newer version | |
2579 | instead. | |
2580 | ||
2581 | config BR2_GDB_VERSION_7_5 | |
2582 | bool "gdb 7.5 has been removed" | |
2583 | select BR2_LEGACY | |
2584 | help | |
2585 | The 7.5 version of gdb has been removed. Use a newer version | |
2586 | instead. | |
2587 | ||
b18dca0d TP |
2588 | config BR2_BUSYBOX_VERSION_1_19_X |
2589 | bool "busybox version selection has been removed" | |
2590 | select BR2_LEGACY | |
2591 | help | |
2592 | The possibility of selecting the Busybox version has been | |
2593 | removed. Use the latest version provided by the Busybox | |
2594 | package instead. | |
2595 | ||
2596 | config BR2_BUSYBOX_VERSION_1_20_X | |
2597 | bool "busybox version selection has been removed" | |
2598 | select BR2_LEGACY | |
2599 | help | |
2600 | The possibility of selecting the Busybox version has been | |
2601 | removed. Use the latest version provided by the Busybox | |
2602 | package instead. | |
2603 | ||
2604 | config BR2_BUSYBOX_VERSION_1_21_X | |
2605 | bool "busybox version selection has been removed" | |
2606 | select BR2_LEGACY | |
2607 | help | |
2608 | The possibility of selecting the Busybox version has been | |
2609 | removed. Use the latest version provided by the Busybox | |
2610 | package instead. | |
2611 | ||
07ac0456 EG |
2612 | config BR2_PACKAGE_LIBV4L_DECODE_TM6000 |
2613 | bool "decode_tm6000" | |
2614 | select BR2_PACKAGE_LIBV4L_UTILS | |
2615 | select BR2_LEGACY | |
2616 | help | |
d6109172 RM |
2617 | This libv4l option has been deprecated and replaced by a |
2618 | single option to build all the libv4l utilities. | |
07ac0456 EG |
2619 | |
2620 | config BR2_PACKAGE_LIBV4L_IR_KEYTABLE | |
2621 | bool "ir-keytable" | |
2622 | select BR2_PACKAGE_LIBV4L_UTILS | |
2623 | select BR2_LEGACY | |
2624 | help | |
d6109172 RM |
2625 | This libv4l option has been deprecated and replaced by a |
2626 | single option to build all the libv4l utilities. | |
07ac0456 EG |
2627 | |
2628 | config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE | |
2629 | bool "v4l2-compliance" | |
2630 | select BR2_PACKAGE_LIBV4L_UTILS | |
2631 | select BR2_LEGACY | |
2632 | help | |
d6109172 RM |
2633 | This libv4l option has been deprecated and replaced by a |
2634 | single option to build all the libv4l utilities. | |
07ac0456 EG |
2635 | |
2636 | config BR2_PACKAGE_LIBV4L_V4L2_CTL | |
2637 | bool "v4l2-ctl" | |
2638 | select BR2_PACKAGE_LIBV4L_UTILS | |
2639 | select BR2_LEGACY | |
2640 | help | |
d6109172 RM |
2641 | This libv4l option has been deprecated and replaced by a |
2642 | single option to build all the libv4l utilities. | |
07ac0456 EG |
2643 | |
2644 | config BR2_PACKAGE_LIBV4L_V4L2_DBG | |
2645 | bool "v4l2-dbg" | |
2646 | select BR2_PACKAGE_LIBV4L_UTILS | |
2647 | select BR2_LEGACY | |
2648 | help | |
d6109172 RM |
2649 | This libv4l option has been deprecated and replaced by a |
2650 | single option to build all the libv4l utilities. | |
07ac0456 | 2651 | |
fabcb119 | 2652 | ############################################################################### |
2653 | comment "Legacy options removed in 2014.05" | |
2654 | ||
4990a381 PS |
2655 | config BR2_PACKAGE_EVTEST_CAPTURE |
2656 | bool "evtest-capture support removed (dropped since evtest 1.31)" | |
2657 | select BR2_LEGACY | |
2658 | help | |
2659 | Support for evtest-capture has been removed (dropped from | |
2660 | evtest package since version 1.31), use evemu package | |
2661 | instead. | |
2662 | ||
47c2d1b4 TDS |
2663 | config BR2_KERNEL_HEADERS_3_6 |
2664 | bool "kernel headers version 3.6.x are no longer supported" | |
a26aa968 | 2665 | select BR2_KERNEL_HEADERS_3_4 |
47c2d1b4 TDS |
2666 | select BR2_LEGACY |
2667 | help | |
2668 | Version 3.6.x of the Linux kernel headers have been deprecated | |
2669 | for more than four buildroot releases and are now removed. | |
a26aa968 | 2670 | As an alternative, version 3.4.x of the headers have been |
47c2d1b4 TDS |
2671 | automatically selected in your configuration. |
2672 | ||
2673 | config BR2_KERNEL_HEADERS_3_7 | |
2674 | bool "kernel headers version 3.7.x are no longer supported" | |
a26aa968 | 2675 | select BR2_KERNEL_HEADERS_3_4 |
47c2d1b4 TDS |
2676 | select BR2_LEGACY |
2677 | help | |
2678 | Version 3.7.x of the Linux kernel headers have been deprecated | |
2679 | for more than four buildroot releases and are now removed. | |
a26aa968 | 2680 | As an alternative, version 3.4.x of the headers have been |
47c2d1b4 TDS |
2681 | automatically selected in your configuration. |
2682 | ||
947ca9e1 TDS |
2683 | config BR2_PACKAGE_VALA |
2684 | bool "vala target package has been removed" | |
2685 | select BR2_LEGACY | |
2686 | help | |
2687 | The 'vala' target package has been removed since it has been | |
2688 | deprecated for more than four buildroot releases. | |
2689 | Note: the host vala package still exists. | |
2690 | ||
d6a37917 YM |
2691 | config BR2_TARGET_TZ_ZONELIST |
2692 | default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != "" | |
2693 | ||
2694 | config BR2_PACKAGE_TZDATA_ZONELIST | |
2695 | string "tzdata: the timezone list option has been renamed" | |
2696 | help | |
2697 | The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to | |
d6109172 RM |
2698 | BR2_TARGET_TZ_ZONELIST, and moved to the "System |
2699 | configuration" menu. You'll need to select BR2_TARGET_TZ_INFO. | |
d6a37917 YM |
2700 | |
2701 | config BR2_PACKAGE_TZDATA_ZONELIST_WRAP | |
2702 | bool | |
2703 | default y if BR2_PACKAGE_TZDATA_ZONELIST != "" | |
2704 | select BR2_LEGACY | |
2705 | ||
c97aeb7e YM |
2706 | config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE |
2707 | bool "Lua command-line editing none has been renamed" | |
2708 | select BR2_LEGACY | |
2709 | help | |
2710 | The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been | |
d6109172 RM |
2711 | renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to |
2712 | select it in the corresponding choice. | |
c97aeb7e YM |
2713 | |
2714 | config BR2_PACKAGE_LUA_INTERPRETER_READLINE | |
2715 | bool "Lua command-line editing using readline has been renamed" | |
2716 | select BR2_LEGACY | |
2717 | help | |
2718 | The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been | |
2719 | renamed to BR2_PACKAGE_LUA_READLINE. You will have to select | |
2720 | it in the corresponding choice. | |
2721 | ||
2722 | config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE | |
2723 | bool "Lua command-line editing using linenoise has been renamed" | |
2724 | select BR2_LEGACY | |
2725 | help | |
2726 | The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been | |
2727 | renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select | |
2728 | it in the corresponding choice. | |
2729 | ||
365ae61c YM |
2730 | config BR2_PACKAGE_DVB_APPS_UTILS |
2731 | bool "dvb-apps utilities now built by default" | |
2732 | select BR2_LEGACY | |
2733 | help | |
2734 | The dvb-apps utilities are now always built when the dvb-apps | |
2735 | package is selected. | |
2736 | ||
971e331c YM |
2737 | config BR2_KERNEL_HEADERS_SNAP |
2738 | bool "Local Linux snapshot support removed" | |
2739 | select BR2_LEGACY | |
2740 | help | |
2741 | Support for using a custom snapshot to install the Linux | |
2742 | kernel headers has been removed. | |
2743 | ||
fabcb119 | 2744 | config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV |
2745 | bool "/dev management by udev removed" | |
2746 | select BR2_LEGACY | |
2747 | help | |
2748 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 2749 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 2750 | |
2c66e442 | 2751 | Therefore, if you are not using 'systemd' as init system, you |
2752 | must choose 'Dynamic using eudev' in the '/dev management' | |
2753 | menu to get the same behaviour as in your old configuration. | |
2754 | ||
2755 | If you are using 'systemd', its internal implementation of | |
2756 | 'udev' will be used automatically. | |
fabcb119 | 2757 | |
2758 | You must also check the packages depending on 'udev' are still | |
2759 | selected. | |
2760 | ||
2761 | config BR2_PACKAGE_UDEV | |
2762 | bool "udev is now a virtual package" | |
2763 | select BR2_LEGACY | |
2764 | select BR2_PACKAGE_HAS_UDEV | |
2765 | help | |
2766 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 2767 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 2768 | |
2769 | Your old configuration refers to packages depending on 'udev', | |
2770 | either for build or at runtime. | |
2771 | ||
2c66e442 | 2772 | Check that a 'udev' provider is selected. If you are not using |
2773 | 'systemd' as init system, 'eudev' should be selected, which is | |
2774 | the case if '/dev management' is set to 'Dynamic using eudev'. | |
2775 | ||
d6109172 RM |
2776 | If you are using 'systemd', its internal implementation of |
2777 | 'udev' is used. | |
fabcb119 | 2778 | |
2779 | config BR2_PACKAGE_UDEV_RULES_GEN | |
2c66e442 | 2780 | bool "udev rules generation handled by provider" |
fabcb119 | 2781 | select BR2_LEGACY |
2c66e442 | 2782 | select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD |
2783 | select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD | |
fabcb119 | 2784 | help |
2785 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 2786 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 2787 | |
2c66e442 | 2788 | If you are not using 'systemd' as init system, udev rules |
2789 | generation will be handled by 'eudev'. Check that | |
2790 | '/dev management' is set to 'Dynamic using eudev' to get | |
2791 | the same behaviour as in your old configuration. | |
fabcb119 | 2792 | |
d6109172 RM |
2793 | If you are using 'systemd', it internal implementation of |
2794 | 'udev' will generate the rules. | |
fabcb119 | 2795 | |
2796 | config BR2_PACKAGE_UDEV_ALL_EXTRAS | |
2797 | bool "udev extras removed" | |
2798 | select BR2_LEGACY | |
2799 | help | |
2800 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 2801 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 2802 | |
2803 | The option to enable the extra features of 'udev' (gudev, ...) | |
2804 | has been removed. These features are automatically enabled in | |
2805 | the 'udev' providers if the dependencies are selected. For | |
2806 | example, selecting 'libglib2' will trigger the build of gudev. | |
2807 | ||
5562be13 BK |
2808 | config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS |
2809 | bool "xlib-libpthread-stubs option has been renamed" | |
2810 | depends on BR2_PACKAGE_XORG7 | |
2811 | select BR2_LEGACY | |
2812 | select BR2_PACKAGE_LIBPTHREAD_STUBS | |
2813 | help | |
2814 | The pthread stubs neither depend on X11 nor Xlib. Thus the | |
2815 | package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS | |
2816 | ||
8b2e2357 | 2817 | ############################################################################### |
f169e5e1 YM |
2818 | comment "Legacy options removed in 2014.02" |
2819 | ||
e543f5a1 TP |
2820 | config BR2_sh2 |
2821 | bool "sh2 support removed" | |
758c5c7f | 2822 | select BR2_LEGACY |
e543f5a1 TP |
2823 | help |
2824 | Due to an inexistent user base and generally poor Linux | |
2825 | support, the support for the SH2 architecture was removed. | |
2826 | ||
2827 | config BR2_sh3 | |
2828 | bool "sh3 support removed" | |
758c5c7f | 2829 | select BR2_LEGACY |
e543f5a1 TP |
2830 | help |
2831 | Due to an inexistent user base and generally poor Linux | |
2832 | support, the support for the SH3 architecture was removed. | |
2833 | ||
2834 | config BR2_sh3eb | |
2835 | bool "sh3eb support removed" | |
758c5c7f | 2836 | select BR2_LEGACY |
e543f5a1 TP |
2837 | help |
2838 | Due to an inexistent user base and generally poor Linux | |
2839 | support, the support for the SH3eb architecture was removed. | |
2840 | ||
334dca61 TDS |
2841 | config BR2_KERNEL_HEADERS_3_1 |
2842 | bool "kernel headers version 3.1.x are no longer supported" | |
2843 | select BR2_KERNEL_HEADERS_3_2 | |
2844 | select BR2_LEGACY | |
2845 | help | |
2846 | Version 3.1.x of the Linux kernel headers have been deprecated | |
2847 | for more than four buildroot releases and are now removed. | |
2848 | As an alternative, version 3.2.x of the headers have been | |
2849 | automatically selected in your configuration. | |
2850 | ||
2851 | config BR2_KERNEL_HEADERS_3_3 | |
2852 | bool "kernel headers version 3.3.x are no longer supported" | |
a26aa968 | 2853 | select BR2_KERNEL_HEADERS_3_2 |
334dca61 TDS |
2854 | select BR2_LEGACY |
2855 | help | |
2856 | Version 3.3.x of the Linux kernel headers have been deprecated | |
2857 | for more than four buildroot releases and are now removed. | |
a26aa968 | 2858 | As an alternative, version 3.2.x of the headers have been |
334dca61 TDS |
2859 | automatically selected in your configuration. |
2860 | ||
2861 | config BR2_KERNEL_HEADERS_3_5 | |
2862 | bool "kernel headers version 3.5.x are no longer supported" | |
a26aa968 | 2863 | select BR2_KERNEL_HEADERS_3_4 |
334dca61 TDS |
2864 | select BR2_LEGACY |
2865 | help | |
2866 | Version 3.5.x of the Linux kernel headers have been deprecated | |
2867 | for more than four buildroot releases and are now removed. | |
a26aa968 | 2868 | As an alternative, version 3.4.x of the headers have been |
334dca61 TDS |
2869 | automatically selected in your configuration. |
2870 | ||
348060f9 TDS |
2871 | config BR2_GDB_VERSION_7_2 |
2872 | bool "gdb 7.2.x is no longer supported" | |
02d85f65 | 2873 | select BR2_GDB_VERSION_7_6 |
348060f9 TDS |
2874 | select BR2_LEGACY |
2875 | help | |
2876 | Version 7.2.x of gdb has been deprecated for more than four | |
2877 | buildroot releases and is now removed. As an alternative, gdb | |
2878 | 7.5.x has been automatically selected in your configuration. | |
2879 | ||
2880 | config BR2_GDB_VERSION_7_3 | |
2881 | bool "gdb 7.3.x is no longer supported" | |
02d85f65 | 2882 | select BR2_GDB_VERSION_7_6 |
348060f9 TDS |
2883 | select BR2_LEGACY |
2884 | help | |
2885 | Version 7.3.x of gdb has been deprecated for more than four | |
2886 | buildroot releases and is now removed. As an alternative, gdb | |
2887 | 7.5.x has been automatically selected in your configuration. | |
2888 | ||
831624c4 TDS |
2889 | config BR2_PACKAGE_CCACHE |
2890 | bool "ccache target package has been removed" | |
2891 | select BR2_LEGACY | |
2892 | help | |
2893 | The 'ccache' target package has been removed since it has been | |
2894 | deprecated for more than four buildroot releases. | |
2895 | Note: using ccache for speeding up builds is still supported. | |
2896 | ||
7164a326 TDS |
2897 | config BR2_HAVE_DOCUMENTATION |
2898 | bool "support for documentation on target has been removed" | |
2899 | select BR2_LEGACY | |
2900 | help | |
d6109172 RM |
2901 | Support for documentation on target has been removed since it |
2902 | has been deprecated for more than four buildroot releases. | |
7164a326 | 2903 | |
f75245d9 TDS |
2904 | config BR2_PACKAGE_AUTOMAKE |
2905 | bool "automake target package has been removed" | |
2906 | select BR2_LEGACY | |
2907 | help | |
d6109172 RM |
2908 | The 'automake' target package has been removed since it has |
2909 | been deprecated for more than four buildroot releases. | |
f75245d9 TDS |
2910 | Note: the host automake still exists. |
2911 | ||
e7af2ac6 TDS |
2912 | config BR2_PACKAGE_AUTOCONF |
2913 | bool "autoconf target package has been removed" | |
2914 | select BR2_LEGACY | |
2915 | help | |
d6109172 RM |
2916 | The 'autoconf' target package has been removed since it has |
2917 | been deprecated for more than four buildroot releases. | |
e7af2ac6 TDS |
2918 | Note: the host autoconf still exists. |
2919 | ||
ddf5424f TDS |
2920 | config BR2_PACKAGE_XSTROKE |
2921 | bool "xstroke has been removed" | |
2922 | select BR2_LEGACY | |
2923 | help | |
2924 | The 'xstroke' package has been removed since it has been | |
2925 | deprecated for more than four buildroot releases. | |
2926 | ||
0a077319 TDS |
2927 | config BR2_PACKAGE_LZMA |
2928 | bool "lzma target package has been removed" | |
2929 | select BR2_LEGACY | |
2930 | help | |
2931 | The 'lzma' target package has been removed since it has been | |
2932 | deprecated for more than four buildroot releases. | |
d6109172 RM |
2933 | Note: generating lzma-compressed rootfs images is still |
2934 | supported. | |
0a077319 | 2935 | |
7ef5c3a5 TDS |
2936 | config BR2_PACKAGE_TTCP |
2937 | bool "ttcp has been removed" | |
2938 | select BR2_LEGACY | |
2939 | help | |
2940 | The 'ttcp' package has been removed since it has been | |
2941 | deprecated for more than four buildroot releases. | |
2942 | ||
8b2e2357 | 2943 | config BR2_PACKAGE_LIBNFC_LLCP |
93341046 | 2944 | bool "libnfc-llcp has been replaced by libllcp" |
8b2e2357 | 2945 | select BR2_LEGACY |
93341046 | 2946 | select BR2_PACKAGE_LIBLLCP |
8b2e2357 | 2947 | help |
d6109172 RM |
2948 | The 'libnfc-llcp' package has been removed since upstream |
2949 | renamed to 'libllcp'. We have added a new package for | |
2950 | 'libllcp' and bumped the version at the same time. | |
8b2e2357 | 2951 | |
06c82128 MGUF |
2952 | config BR2_PACKAGE_MYSQL_CLIENT |
2953 | bool "MySQL client renamed to MySQL" | |
2954 | select BR2_LEGACY | |
2955 | select BR2_PACKAGE_MYSQL | |
2956 | help | |
2957 | The option has been renamed BR2_PACKAGE_MYSQL | |
2958 | ||
2f7a53ee TDS |
2959 | config BR2_PACKAGE_SQUASHFS3 |
2960 | bool "squashfs3 has been removed" | |
2961 | select BR2_LEGACY | |
2962 | select BR2_PACKAGE_SQUASHFS | |
2963 | help | |
2964 | The 'squashfs3' package has been removed since it has been | |
2965 | deprecated for more than four buildroot releases. Package | |
2966 | 'squashfs' (4) has been selected automatically as replacement. | |
2967 | ||
2968 | config BR2_TARGET_ROOTFS_SQUASHFS3 | |
2969 | bool "squashfs3 rootfs support has been removed" | |
2970 | select BR2_LEGACY | |
2971 | help | |
2972 | Together with the removal of the squashfs3 package, support | |
2973 | for squashfs3 root filesystems has been removed too. Squashfs | |
2974 | root filesystems will automatically use squashfs4 now. | |
2975 | ||
560fe85b AA |
2976 | config BR2_PACKAGE_NETKITBASE |
2977 | bool "netkitbase has been removed" | |
2978 | select BR2_LEGACY | |
2979 | help | |
2980 | The 'netkitbase' package has been removed since it has been | |
2981 | deprecated since 2012.11. This package provided 'inetd' | |
2982 | which is replaced by 'xinet' and 'ping' which is replaced by | |
2983 | 'busybox' or 'fping'. | |
2984 | ||
2985 | config BR2_PACKAGE_NETKITTELNET | |
2986 | bool "netkittelnet has been removed" | |
2987 | select BR2_LEGACY | |
2988 | help | |
2989 | The 'netkittelnet' package has been removed since it has | |
2990 | been deprecated since 2012.11. 'busybox' provides a telnet | |
2991 | client and should be used instead. | |
2992 | ||
63058f8b FP |
2993 | config BR2_PACKAGE_LUASQL |
2994 | bool "luasql has been replaced by luasql-sqlite3" | |
2995 | select BR2_PACKAGE_LUASQL_SQLITE3 | |
2996 | select BR2_LEGACY | |
2997 | help | |
2998 | The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3. | |
2999 | ||
a6c53478 FP |
3000 | config BR2_PACKAGE_LUACJSON |
3001 | bool "luacjson has been replaced by lua-cjson" | |
3002 | select BR2_PACKAGE_LUA_CJSON | |
3003 | select BR2_LEGACY | |
3004 | help | |
3005 | The option has been renamed BR2_PACKAGE_LUA_CJSON. | |
3006 | ||
94c72087 TP |
3007 | ############################################################################### |
3008 | comment "Legacy options removed in 2013.11" | |
3009 | ||
ff0f55e3 AV |
3010 | config BR2_PACKAGE_LVM2_DMSETUP_ONLY |
3011 | bool "lvm2's 'dmsetup only' option removed" | |
3012 | select BR2_LEGACY | |
3013 | help | |
3014 | The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which | |
3015 | led to problems with other packages that need the full lvm2 | |
d6109172 RM |
3016 | suite. Therefore, the option has been replaced with the |
3017 | positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option. | |
ff0f55e3 AV |
3018 | |
3019 | # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in | |
3020 | # in order to automatically propagate old configs | |
3021 | ||
1f9c04f6 TP |
3022 | config BR2_PACKAGE_QT_JAVASCRIPTCORE |
3023 | bool "qt javascriptcore option removed" | |
3024 | select BR2_LEGACY | |
3025 | help | |
3026 | The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to | |
3027 | force the activation or disabling of the JIT compiler in the | |
3028 | Qt Javascript interpreter. However, the JIT compiler is not | |
3029 | available for all architectures, so forcing its activation | |
3030 | does not always work. Moreover, Qt knows by itself for which | |
3031 | architectures JIT support is possible, and will | |
3032 | automatically enable it if possible. | |
3033 | ||
3034 | Therefore, this option was in fact useless, and causing | |
3035 | build problems when enabled on architectures for which the | |
3036 | JIT support was not available. It has been removed, and | |
3037 | there is no replacement: Qt will enable JIT at compile time | |
3038 | when possible. | |
3039 | ||
94c72087 TP |
3040 | config BR2_PACKAGE_MODULE_INIT_TOOLS |
3041 | bool "module-init-tools replaced by kmod" | |
3042 | select BR2_PACKAGE_KMOD | |
3043 | select BR2_PACKAGE_KMOD_TOOLS | |
0f401f91 | 3044 | select BR2_LEGACY |
94c72087 TP |
3045 | help |
3046 | The 'module-init-tools' package has been removed, since it | |
3047 | has been depracated upstream and replaced by 'kmod'. | |
3048 | ||
f2c2193b TDS |
3049 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL |
3050 | string "u-boot: the git repository URL option has been renamed" | |
3051 | help | |
3052 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has | |
3053 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL. | |
3054 | ||
3055 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP | |
3056 | bool | |
3057 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != "" | |
3058 | select BR2_LEGACY | |
3059 | ||
3060 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from | |
3061 | # boot/uboot/Config.in | |
3062 | ||
3063 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION | |
3064 | string "u-boot: the git repository version option has been renamed" | |
3065 | help | |
3066 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has | |
3067 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION. | |
3068 | ||
3069 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP | |
3070 | bool | |
3071 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" | |
3072 | select BR2_LEGACY | |
3073 | ||
3074 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from | |
3075 | # boot/uboot/Config.in | |
3076 | ||
63ecded2 TDS |
3077 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL |
3078 | string "linux: the git repository URL option has been renamed" | |
3079 | help | |
3080 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has | |
3081 | been renamed to | |
3082 | BR2_LINUX_KERNEL_CUSTOM_REPO_URL. | |
3083 | ||
3084 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP | |
3085 | bool | |
3086 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != "" | |
3087 | select BR2_LEGACY | |
3088 | ||
3089 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from | |
3090 | # linux/Config.in | |
3091 | ||
3092 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION | |
3093 | string "linux: the git repository version option has been renamed" | |
3094 | help | |
3095 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has | |
3096 | been renamed to | |
3097 | BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION. | |
3098 | ||
3099 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP | |
3100 | bool | |
3101 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" | |
3102 | select BR2_LEGACY | |
3103 | ||
3104 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from | |
3105 | # linux/Config.in | |
3106 | ||
67eaf705 YM |
3107 | ############################################################################### |
3108 | comment "Legacy options removed in 2013.08" | |
c6e4fcb1 | 3109 | |
1f3078b1 TP |
3110 | config BR2_ARM_OABI |
3111 | bool "ARM OABI support has been removed" | |
3112 | select BR2_LEGACY | |
3113 | help | |
3114 | The support for the ARM OABI was deprecated since a while, | |
3115 | and has been removed completely from Buildroot. It is also | |
3116 | deprecated in upstream gcc, since gcc 4.7. People should | |
3117 | switch to EABI instead, which should not be a problem as | |
3118 | long as you don't have pre-built OABI binaries in your | |
3119 | system that you can't recompile. | |
3120 | ||
c6e4fcb1 GZ |
3121 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK |
3122 | bool "dosfstools dosfsck renamed to fsck.fat" | |
3123 | select BR2_LEGACY | |
3124 | select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT | |
3125 | help | |
3126 | dosfsck was renamed upstream to fsck.fat for consistency. | |
3127 | ||
3128 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL | |
3129 | bool "dosfstools dosfslabel renamed to fatlabel" | |
3130 | select BR2_LEGACY | |
3131 | select BR2_PACKAGE_DOSFSTOOLS_FATLABEL | |
3132 | help | |
3133 | doslabel was renamed upstream to fatlabel for consistency. | |
3134 | ||
3135 | config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS | |
3136 | bool "dosfstools mkdosfs renamed to mkfs.fat" | |
3137 | select BR2_LEGACY | |
3138 | select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT | |
3139 | help | |
3140 | mkdosfs was renamed upstream to mkfs.fat for consistency. | |
3141 | ||
e21db000 TP |
3142 | config BR2_ELF2FLT |
3143 | bool "the elf2flt option has been renamed" | |
3144 | select BR2_LEGACY | |
3145 | help | |
3146 | The BR2_ELF2FLT option has been renamed to | |
3147 | BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to | |
3148 | the package infrastructure. | |
3149 | ||
d806005b TP |
3150 | config BR2_VFP_FLOAT |
3151 | bool "the ARM VFP floating point option has been renamed" | |
3152 | select BR2_LEGACY | |
3153 | help | |
3154 | Due to a major refactoring of the floating-point handling of | |
3155 | the ARM architecture support, the BR2_VFP_FLOAT option has | |
3156 | been replaced with a choice of options that allows to select | |
3157 | between various VFP versions/capabilities. | |
3158 | ||
ba8f82b0 SM |
3159 | config BR2_PACKAGE_GCC_TARGET |
3160 | bool "gcc on the target filesystem has been removed" | |
3161 | select BR2_LEGACY | |
3162 | help | |
3163 | The support for gcc in the target filesystem was deprecated | |
3164 | since a while, and has been removed completely from Buildroot. | |
3165 | See Buildroot's documentation for more explanations. | |
3166 | ||
3167 | config BR2_HAVE_DEVFILES | |
3168 | bool "development files in target filesystem has been removed" | |
3169 | select BR2_LEGACY | |
3170 | help | |
3171 | The installation of the development files in the target | |
3172 | filesystem was deprecated since a while, and has been removed | |
3173 | completely from Buildroot. | |
3174 | See Buildroot's documentation for more explanations. | |
3175 | ||
67eaf705 YM |
3176 | ############################################################################### |
3177 | comment "Legacy options removed in 2013.05" | |
860d37a2 YM |
3178 | |
3179 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192 | |
3180 | bool "Realtek 8192 replaced by Realtek 81xx" | |
3181 | select BR2_LEGACY | |
3182 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX | |
3183 | help | |
3184 | Now covers the whole Realtek 81xx familly: 8188/8192. | |
3185 | ||
3186 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712 | |
3187 | bool "Realtek 8712 replaced by Realtek 87xx" | |
3188 | select BR2_LEGACY | |
3189 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX | |
3190 | help | |
3191 | Now covers the whole Realtek 87xx familly: 8712/8723. | |
3192 | ||
a91a5c16 | 3193 | endmenu |
53903a15 AV |
3194 | |
3195 | endif # !SKIP_LEGACY |