blob: ea69f5a9241a53934ae61e5691b116c16d74147f [file] [log] [blame]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00001#
2# Config.in.legacy - support for backward compatibility
3#
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +02004# 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.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00007#
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.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020014#
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.
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010019# 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]
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020059#
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
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010065# 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.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020067#
68# [Example: renaming a string option from FOO to BAR]
69# original symbol:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010070# config BR2_FOO_STRING
71# string "Some foo string"
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020072#
73# becomes:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010074# config BR2_BAR_STRING
75# string "Some bar string"
76# default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020077#
78# and in Config.in.legacy:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010079# config BR2_FOO_STRING
80# string "The foo string has been renamed"
81# help
82# <suitable help text>
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020083#
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010084# config BR2_FOO_STRING_WRAP
85# bool
86# default y if BR2_FOO_STRING != ""
87# select BR2_LEGACY
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020088#
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010089# # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020090#
91# [End of example]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000092
Arnout Vandecappelle53903a12015-04-11 01:49:02 +020093config BR2_SKIP_LEGACY
94 bool
95 option env="SKIP_LEGACY"
96
97if !BR2_SKIP_LEGACY
98
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000099config BR2_LEGACY
100 bool
101 help
102 This option is selected automatically when your old .config uses an
103 option that no longer exists in current buildroot. In that case, the
104 build will fail. Look for config options which are selected in the
105 menu below: they no longer exist and should be replaced by something
106 else.
107
108# This comment fits exactly in a 80-column display
109comment "Legacy detected: check the content of the menu below"
110 depends on BR2_LEGACY
111
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000112menu "Legacy config options"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000113
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000114if BR2_LEGACY
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +0200115comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000116comment "Your old configuration uses legacy options that no "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +0200117comment "longer exist in buildroot, as indicated in the menu "
118comment "below. As long as these options stay selected, or in"
119comment "case of string options are non-empty, the build "
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000120comment "will fail. "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +0200121comment "* "
122comment "Where possible, an automatic conversion from old to "
123comment "new symbols has been performed. Before making any "
124comment "change in this legacy menu, make sure to exit the "
125comment "configuration editor a first time and save the "
126comment "configuration. Otherwise, the automatic conversion "
127comment "of symbols will be lost. "
128comment "* "
129comment "After this initial save, reopen the configuration "
130comment "editor, inspect the options selected below, read "
131comment "their help texts, and verify/update the new "
132comment "configuration in the corresponding configuration "
133comment "menus. When everything is ok, you can disable the "
134comment "legacy options in the menu below. Once you have "
135comment "disabled all legacy options, this text will "
136comment "disappear and you will be able to start the build. "
137comment "* "
Yann E. MORINd2e706c2013-06-30 00:38:13 +0200138comment "Note: at some point in the future, the oldest legacy"
139comment "options will be removed, and configuration files "
140comment "that still have those options set, will fail to "
141comment "build, or run, in unpredictable ways. "
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +0200142comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000143endif
144
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200145###############################################################################
Carlos Santosf52af612017-09-01 21:41:38 -0300146comment "Legacy options removed in 2017.11"
147
Adam Duskett9d6da7a2017-10-17 18:32:18 -0400148config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
149 bool "policycoreutils audit2allow option removed"
150 select BR2_LEGACY
151 select BR2_PACKAGE_SELINUX_PYTHON
152 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
153 help
154 The policycoreutils package no longer offers audit2allow
155 as a option. This package has been moved into the
156 selinux-python package by the SELinux maintainers.
157
158config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
159 bool "policycoreutils restorecond option removed"
160 select BR2_LEGACY
161 select BR2_PACKAGE_RESTORECOND
162 help
163 The policycoreutils package no longer offers restorecond
164 as a option. This package has been moved into a seperate
165 package maintained by the SELinux maintainers.
166
167config BR2_PACKAGE_SEPOLGEN
168 bool "sepolgen package has been removed"
169 select BR2_LEGACY
170 select BR2_PACKAGE_SELINUX_PYTHON
171 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
172 help
173 Sepolgen is no longer a individual package, but instead has
174 been moved into the selinux-python package by the SELinux
175 maintainers.
176
Bernd Kuhls49a9fb02017-09-16 17:15:35 +0200177config BR2_PACKAGE_OPENOBEX_BLUEZ
178 bool "openobex bluez option removed"
179 select BR2_LEGACY
180 select BR2_PACKAGE_BLUEZ_UTILS
181 help
182 The OpenOBEX package no longer offers an option to enable or
183 disable BlueZ support. Instead, BlueZ support is always
184 included when the bluez5_utils or bluez_utils package is
185 selected.
186
187config BR2_PACKAGE_OPENOBEX_LIBUSB
188 bool "openobex libusb option removed"
189 select BR2_LEGACY
190 select BR2_PACKAGE_LIBUSB
191 help
192 The OpenOBEX package no longer offers an option to enable or
193 disable libusb support. Instead, USB support is always
194 included when the libusb package is selected.
195
196config BR2_PACKAGE_OPENOBEX_APPS
197 bool "openobex apps option removed"
198 select BR2_LEGACY
199 help
200 The OpenOBEX package no longer offers an option to enable or
201 disable apps support.
202
203config BR2_PACKAGE_OPENOBEX_SYSLOG
204 bool "openobex syslog option removed"
205 select BR2_LEGACY
206 help
207 The OpenOBEX package no longer offers an option to enable or
208 disable syslog support.
209
210config BR2_PACKAGE_OPENOBEX_DUMP
211 bool "openobex dump option removed"
212 select BR2_LEGACY
213 help
214 The OpenOBEX package no longer offers an option to enable or
215 disable dump support.
216
Alexander Mukhinfca70382017-09-10 13:21:34 +0300217config BR2_PACKAGE_AICCU
218 bool "aiccu utility removed"
219 select BR2_LEGACY
220 help
221 As the SixXS project has ceased its operation on 2017-06-06,
222 the AICCU utility has no use anymore and has been removed.
223
224 https://www.sixxs.net/sunset/
225
Carlos Santosf52af612017-09-01 21:41:38 -0300226config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
227 bool "util-linux login utilities option removed"
228 select BR2_LEGACY
229 select BR2_PACKAGE_UTIL_LINUX_LAST
230 select BR2_PACKAGE_UTIL_LINUX_LOGIN
231 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
232 select BR2_PACKAGE_UTIL_LINUX_SU
233 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
234 help
235 Login utilities (last, login, runuser, su, sulogin) now have
236 their own configuration options in the util-linux menu.
237
238###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +0200239comment "Legacy options removed in 2017.08"
240
Yann E. MORIN144dc9c2017-08-11 18:05:08 +0200241config BR2_TARGET_GRUB
242 bool "grub (aka grub-legacy) has been removed"
243 select BR2_LEGACY
244 help
245 grub-legacy is no longer maintained, and no longer builds with
246 recent binutils versions.
247
248 Use grub2 or syslinux instead.
249
Bin Meng20db0982017-08-30 08:55:25 -0700250config BR2_PACKAGE_SIMICSFS
251 bool "simicsfs support removed"
252 select BR2_LEGACY
253 help
254 Support for simicsfs kernel driver that provides access to a
255 host computer's local filesystem when the target is
256 executing within a SIMICS simulation has been removed.
257
258 Simics is now moving away from the simicsfs kernel module,
259 as the kernel module has required too much maintenance
260 work. Users should move to the user mode Simics agent
261 instead.
262
Thomas Petazzoni0b5dc312017-07-29 15:09:06 +0200263config BR2_BINUTILS_VERSION_2_26_X
264 bool "binutils version 2.26 support removed"
265 select BR2_LEGACY
266 help
267 Support for binutils version 2.26 has been removed. The
268 current default version (2.28 or later) has been selected
269 instead.
270
Yann E. MORINb3b60702017-07-09 05:21:56 -0700271config BR2_XTENSA_OVERLAY_DIR
272 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
Yann E. MORIN15a96d12017-07-09 05:21:55 -0700273 help
Yann E. MORINb3b60702017-07-09 05:21:56 -0700274 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
275 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
276 path to the overlay file, not to the directory containing
277 it.
278
279config BR2_XTENSA_OVERLAY_DIR_WRAP
280 bool
281 default y if BR2_XTENSA_OVERLAY_DIR != ""
282 select BR2_LEGACY
283
284config BR2_XTENSA_CUSTOM_NAME
285 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
286 help
287 The BR2_XTENSA_CUSTOM_NAME option has been removed.
Yann E. MORIN15a96d12017-07-09 05:21:55 -0700288
289config BR2_XTENSA_CUSTOM_NAME_WRAP
290 bool
291 default y if BR2_XTENSA_CUSTOM_NAME != ""
292 select BR2_LEGACY
293
Sébastien Szymanskif47fc952017-07-04 16:47:29 +0200294config BR2_PACKAGE_HOST_MKE2IMG
295 bool "host mke2img has been removed"
296 select BR2_LEGACY
297 help
298 We now call mkfs directly to generate ext2/3/4 filesystem
299 image, so mke2img is no longer necessary.
300
Samuel Martinbee9e882017-07-09 07:00:38 +0200301config BR2_TARGET_ROOTFS_EXT2_BLOCKS
302 int "exact size in blocks has been removed"
303 default 0
304 help
305 This option has been removed in favor of
306 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
307 to the value you had before. Set to 0 here to remove the
308 warning.
309
310config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
311 bool
312 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
313 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
314 select BR2_LEGACY
315
316# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
317
Samuel Martin235b6f12017-07-04 16:47:25 +0200318config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
319 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
320 default 0
321 help
322 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
323 images. It now automatically selects the number of inodes
324 based on the image size. The extra number of inodes can no
325 longer be provided; instead, provide the total number of
326 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
327
328config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
329 bool
330 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
331 select BR2_LEGACY
332
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100333config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
334 bool "cdxaparse removed"
335 select BR2_LEGACY
336
337config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
338 bool "dataurisrc moved to gstreamer1"
339 select BR2_LEGACY
340 help
341 Dataurisrc has moved to gstreamer core and is always built.
342
343config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
344 bool "dccp removed"
345 select BR2_LEGACY
346
347config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
348 bool "hdvparse removed"
349 select BR2_LEGACY
350
351config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
352 bool "mve removed"
353 select BR2_LEGACY
354
355config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
356 bool "nuvdemux removed"
357 select BR2_LEGACY
358
359config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
360 bool "patchdetect removed"
361 select BR2_LEGACY
362
363config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
364 bool "sdi removed"
365 select BR2_LEGACY
366
367config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
368 bool "tta removed"
369 select BR2_LEGACY
370
371config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
372 bool "videomeasure removed"
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +0100373 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100374 select BR2_LEGACY
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +0100375 help
376 videomeasure plugin has been removed and has been replaced by
377 iqa, which has automatically been enabled.
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100378
379config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
380 bool "apexsink removed"
381 select BR2_LEGACY
382
383config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
384 bool "sdl removed"
385 select BR2_LEGACY
386
Vicente Olivert Rierab006fe12017-05-12 11:18:05 +0100387config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
388 bool "mad (*.mp3 audio) removed"
389 select BR2_LEGACY
390
Thomas Petazzoni4c06d242017-07-04 10:11:54 +0200391config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
392 bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
393 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
394 select BR2_LEGACY
395 help
396 The WebRTC plugin in GStreamer 1.x has always been named
397 webrtcdsp, but was wrongly introduced in Buildroot under the
398 name webrtc. Therefore, we have renamed the option to match
399 the actual name of the GStreamer plugin.
400
Yann E. MORIN0d643fd2017-07-01 14:51:21 +0200401config BR2_STRIP_none
402 bool "Strip command 'none' has been removed"
403 select BR2_LEGACY
404 help
405 The strip command choice has been changed into a single
406 boolean option. Please check that the new setting is
407 correct (in the "Build options" sub-menu)
408
Bernd Kuhlsdd4d3c12017-06-11 14:48:51 +0200409config BR2_PACKAGE_BEECRYPT_CPP
410 bool "C++ support removed in beecrypt"
411 select BR2_LEGACY
412 help
413 Support for C++ depends on icu. The beecrypt package is
414 incompatible with icu 59+.
415
Peter Korsgaard622ff3d2017-06-22 00:07:42 +0200416config BR2_PACKAGE_SPICE_CLIENT
417 bool "spice client support removed"
418 select BR2_LEGACY
419 help
420 Spice client support has been removed upstream. The
421 functionality now lives in the spice-gtk widget and
422 virt-viewer.
423
424config BR2_PACKAGE_SPICE_GUI
425 bool "spice gui support removed"
426 select BR2_LEGACY
427 help
428 Spice gui support has been removed upstream. The
429 functionality now lives in the spice-gtk widget and
430 virt-viewer.
431
Peter Korsgaard6f2c0222017-06-22 00:07:41 +0200432config BR2_PACKAGE_SPICE_TUNNEL
433 bool "spice network redirection removed"
434 select BR2_LEGACY
435 help
436 Spice network redirection, aka tunnelling has been removed
437 upstream.
438
Koen Martens438b2d12017-06-20 20:54:49 +0200439config BR2_PACKAGE_INPUT_TOOLS
440 bool "input-tools removed"
441 select BR2_LEGACY
442 select BR2_PACKAGE_LINUXCONSOLETOOLS
443 help
444 input-tools has been removed, it is replaced by
445 linuxconsoletools, which has automatically been enabled.
446
447config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
448 bool "inputattach moved to linuxconsoletools"
449 select BR2_LEGACY
450 select BR2_PACKAGE_LINUXCONSOLETOOLS
451 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
452 help
453 input-tools has been removed, inputattach is now part
454 of linuxconsoletools, which has automatically been
455 enabled.
456
457config BR2_PACKAGE_INPUT_TOOLS_JSCAL
458 bool "jscal moved to linuxconsoletools"
459 select BR2_LEGACY
460 select BR2_PACKAGE_LINUXCONSOLETOOLS
461 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
462 help
463 input-tools has been removed, jscal is now part
464 of linuxconsoletools, which has automatically been
465 enabled.
466
467config BR2_PACKAGE_INPUT_TOOLS_JSTEST
468 bool "jstest moved to linuxconsoletools"
469 select BR2_LEGACY
470 select BR2_PACKAGE_LINUXCONSOLETOOLS
471 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
472 help
473 input-tools has been removed, jstest is now part
474 of linuxconsoletools, which has automatically been
475 enabled.
476
Baruch Siach6510a822017-06-16 06:32:48 +0300477config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
478 bool "SH Sourcery toolchain has been removed"
479 select BR2_LEGACY
480 help
481 The Sourcery CodeBench toolchain for the sh architecture has
482 been removed, since it uses glibc older than 2.17 that requires
483 -lrt to link executables using clock_* system calls. This makes
484 this toolchain difficult to maintain over time.
485
Baruch Siach06cac642017-06-16 06:32:47 +0300486config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
487 bool "x86 Sourcery toolchain has been removed"
488 select BR2_LEGACY
489 help
490 The Sourcery CodeBench toolchain for the x86 architecture has
491 been removed, since it uses glibc older than 2.17 that requires
492 -lrt to link executables using clock_* system calls. This makes
493 this toolchain difficult to maintain over time.
494
Romain Naourf6695212017-05-23 22:24:40 +0200495config BR2_GCC_VERSION_4_8_X
496 bool "gcc 4.8.x support removed"
497 select BR2_LEGACY
498 help
499 Support for gcc version 4.8.x has been removed. The current
500 default version (5.x or later) has been selected instead.
501
502###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300503comment "Legacy options removed in 2017.05"
504
Romain Naour95426af2017-02-21 22:43:16 +0100505config BR2_PACKAGE_SUNXI_MALI_R2P4
506 bool "sunxi-mali r2p4 removed"
507 select BR2_LEGACY
508 help
509 sunxi-mali libMali for r2p4 Mali kernel module has been
510 removed since the libump package only provides libUMP.so.3.
511 libMali for r2p4 Mali kernel module requires libUMP.so.2.
512
Martin Barkd999a7f2017-05-06 14:19:13 +0100513config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
514 bool "CoffeeScript option has been removed"
515 select BR2_LEGACY
516 help
517 The option to enable NodeJS CoffeeScript has been removed.
518 To continue using it, add "coffee-script" to
519 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
520
Martin Bark096f8b12017-05-06 14:19:12 +0100521config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
522 bool "Express web application framework option has been removed"
523 select BR2_LEGACY
524 help
525 The option to enable the NodeJS Express web application
526 framework has been removed. To continue using it, add
527 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
528
Baruch Siach0364d442017-05-01 15:59:41 +0300529config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
530 bool "bluez5_utils gatttool install option removed"
531 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
532 help
533 The option to install gatttool specifically has been removed.
534 Since version 5.44 gatttool is in the list of deprecated
535 tools. The option to build and install deprecated tools has
536 been automatically enabled.
537
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +0000538config BR2_PACKAGE_OPENOCD_FT2XXX
539 bool "openocd ft2232 support has been removed"
540 select BR2_PACKAGE_OPENOCD_FTDI
541 select BR2_LEGACY
542 help
543 FT2232 support in OpenOCD has been removed, it's replaced by
544 FDTI support, which has automatically been enabled.
545
Bernd Kuhls24a07d52017-04-29 10:37:28 +0200546config BR2_PACKAGE_KODI_RTMPDUMP
547 bool "kodi rtmp has been removed"
548 select BR2_LEGACY
Bernd Kuhlsc8942672017-07-16 16:35:17 +0200549 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
Bernd Kuhls24a07d52017-04-29 10:37:28 +0200550 help
551 Internal rtmp support was removed from Kodi.
552
Bernd Kuhlsd3936902017-04-29 10:37:21 +0200553config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
554 bool "kodi-visualisation-fountain has been removed"
555 select BR2_LEGACY
556 help
557 According to upstream 'the visualization is not currently
558 in a working shape.'
559
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +0200560config BR2_PACKAGE_PORTMAP
561 bool "portmap has been removed"
562 select BR2_LEGACY
563 select BR2_PACKAGE_RPCBIND
564 help
565 The portmap upstream tarball is removed, no releases since
566 ten years and latest change in upstream git in 2014.
567 You should better use rpcbind as a RPC portmapper.
568
Thomas Petazzoni58472912017-04-03 22:28:21 +0200569config BR2_BINUTILS_VERSION_2_25_X
570 bool "binutils version 2.25 support removed"
571 select BR2_LEGACY
572 help
573 Support for binutils version 2.25 has been removed. The
574 current default version (2.27 or later) has been selected
575 instead.
576
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +0200577config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
578 bool "uclibc RPC support has been removed"
579 select BR2_LEGACY
580 help
581 uClibc-ng removed internal RPC implementation in 1.0.23. You
582 should use libtirpc instead.
583
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +0100584config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
585 int "extra size in blocks has been removed"
586 default 0
587 help
588 Since the support for auto calculation of the filesystem size has been
589 removed, this option is now useless and must be 0.
590 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS matchs
591 your needs.
592
593config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
594 bool
595 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
596 select BR2_LEGACY
597
Vicente Olivert Riera815f7132017-03-22 11:39:13 +0000598config BR2_PACKAGE_SYSTEMD_KDBUS
599 bool "systemd-kdbus has been removed"
600 select BR2_LEGACY
601 help
602 --enable/disable-kdbus configure option has been removed since
603 systemd-231.
604
Gustavo Zacariasd10b4932017-03-16 10:04:34 -0300605config BR2_PACKAGE_POLARSSL
606 bool "polarssl has been removed"
607 select BR2_LEGACY
608 help
609 The polarssl crypto library has been removed since the 1.2.x
610 release branch is no longer maintained. Newer upstream
611 branches/releases (mbedtls) have API changes so they're not
612 drop-in replacements.
613
Yann E. MORIN61551182017-03-12 10:58:15 +0100614config BR2_NBD_CLIENT
615 bool "nbd client option was renamed"
616 select BR2_LEGACY
617 select BR2_PACKAGE_NBD_CLIENT
618 help
619 The nbd client option has been renamed to BR2_PACKAGE_NBD_CLIENT.
620
621config BR2_NBD_SERVER
622 bool "nbd server option was renamed"
623 select BR2_LEGACY
624 select BR2_PACKAGE_NBD_SERVER
625 help
626 The nbd server option has been renamed to BR2_PACKAGE_NBD_SERVER.
627
Carlos Santos6a9c6312017-02-14 09:05:16 -0200628config BR2_PACKAGE_GMOCK
629 bool "gmock merged into gtest package"
630 select BR2_LEGACY
631 select BR2_PACKAGE_GTEST
632 select BR2_PACKAGE_GTEST_GMOCK
633 help
634 GMock is now a suboption of the GTest package.
635
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300636config BR2_KERNEL_HEADERS_4_8
637 bool "kernel headers version 4.8.x are no longer supported"
638 select BR2_KERNEL_HEADERS_4_4
639 select BR2_LEGACY
640 help
641 Version 4.8.x of the Linux kernel headers are no longer
642 maintained upstream and are now removed. As an alternative,
643 version 4.4.x of the headers have been automatically
644 selected in your configuration.
645
646config BR2_KERNEL_HEADERS_3_18
647 bool "kernel headers version 3.18.x are no longer supported"
648 select BR2_KERNEL_HEADERS_3_12
649 select BR2_LEGACY
650 help
651 Version 3.18.x of the Linux kernel headers are no longer
652 maintained upstream and are now removed. As an alternative,
653 version 3.12.x of the headers have been automatically
654 selected in your configuration.
655
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300656config BR2_GLIBC_VERSION_2_22
657 bool "glibc 2.22 removed"
658 select BR2_LEGACY
659 help
660 Support for glibc version 2.22 has been removed. The current
661 default version has been selected instead.
662
663###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +0100664comment "Legacy options removed in 2017.02"
665
Francois Perrad8546ff32016-12-26 15:50:35 +0100666config BR2_PACKAGE_PERL_DB_FILE
667 bool "perl-db-file removed"
668 select BR2_LEGACY
669 select BR2_PACKAGE_BERKELEYDB
670 select BR2_PACKAGE_PERL
671 help
672 DB_File can be built as a core Perl module, so the separate
673 perl-db-file package has been removed.
674
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300675config BR2_KERNEL_HEADERS_4_7
676 bool "kernel headers version 4.7.x are no longer supported"
677 select BR2_KERNEL_HEADERS_4_4
678 select BR2_LEGACY
679 help
680 Version 4.7.x of the Linux kernel headers are no longer
681 maintained upstream and are now removed. As an alternative,
682 version 4.4.x of the headers have been automatically
683 selected in your configuration.
684
685config BR2_KERNEL_HEADERS_4_6
686 bool "kernel headers version 4.6.x are no longer supported"
687 select BR2_KERNEL_HEADERS_4_4
688 select BR2_LEGACY
689 help
690 Version 4.6.x of the Linux kernel headers are no longer
691 maintained upstream and are now removed. As an alternative,
692 version 4.4.x of the headers have been automatically
693 selected in your configuration.
694
695config BR2_KERNEL_HEADERS_4_5
696 bool "kernel headers version 4.5.x are no longer supported"
697 select BR2_KERNEL_HEADERS_4_4
698 select BR2_LEGACY
699 help
700 Version 4.5.x of the Linux kernel headers are no longer
701 maintained upstream and are now removed. As an alternative,
702 version 4.4.x of the headers have been automatically
703 selected in your configuration.
704
705config BR2_KERNEL_HEADERS_3_14
706 bool "kernel headers version 3.14.x are no longer supported"
707 select BR2_KERNEL_HEADERS_3_12
708 select BR2_LEGACY
709 help
710 Version 3.14.x of the Linux kernel headers are no longer
711 maintained upstream and are now removed. As an alternative,
712 version 3.12.x of the headers have been automatically
713 selected in your configuration.
714
Romain Naour63abbcc2016-12-16 16:29:45 +0100715config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
716 bool "musl-cross 1.1.12 toolchain removed"
717 select BR2_LEGACY
718 help
719 The support for the prebuilt toolchain based on the Musl C
720 library provided by the musl-cross project has been removed.
721 Upstream doesn't provide any prebuilt toolchain anymore, use the
722 Buildroot toolchain instead.
723
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +0100724config BR2_UCLIBC_INSTALL_TEST_SUITE
725 bool "uClibc tests now in uclibc-ng-test"
726 select BR2_LEGACY
727 select BR2_PACKAGE_UCLIBC_NG_TEST
728 help
729 The test suite of the uClibc C library has been moved into a
730 separate package, uclibc-ng-test.
731
Arnout Vandecappelle311bc132016-11-24 00:40:35 +0100732config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
733 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
734 select BR2_LEGACY
735 help
736 The ADI Blackfin toolchain has many bugs which are fixed in
737 more recent gcc and uClibc-ng releases. Use the Buildroot
738 toolchain instead.
739
Arnout Vandecappelle207294f2016-11-23 15:14:04 +0100740config BR2_PACKAGE_MAKEDEVS
741 bool "makedevs removed"
742 select BR2_LEGACY
743 help
744 The makedevs tool is part of busybox. The Buildroot fork
745 should not be used outside of the Buildroot infrastructure.
746
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +0100747config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
748 bool "Arago ARMv7 2011.09 removed"
749 select BR2_LEGACY
750 help
751 The Arago toolchains are every old and not updated anymore.
752
753config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
754 bool "Arago ARMv5 2011.09 removed"
755 select BR2_LEGACY
756 help
757 The Arago toolchains are every old and not updated anymore.
758
Thomas Petazzonied364d12016-11-05 14:32:38 +0100759config BR2_PACKAGE_SNOWBALL_HDMISERVICE
760 bool "snowball-hdmiservice removed"
761 select BR2_LEGACY
762 help
763 We no longer have support for the Snowball platform in
764 Buildroot, so this package was no longer useful.
765
766config BR2_PACKAGE_SNOWBALL_INIT
767 bool "snowball-init removed"
768 select BR2_LEGACY
769 help
770 We no longer have support for the Snowball platform in
771 Buildroot, so this package was no longer useful.
772
Jörg Krause69aa0572016-12-14 14:40:58 +0100773config BR2_GDB_VERSION_7_9
774 bool "gdb 7.9 has been removed"
775 select BR2_LEGACY
776 help
777 The 7.9 version of gdb has been removed. Use a newer version
778 instead.
779
Thomas Petazzonied364d12016-11-05 14:32:38 +0100780###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +0200781comment "Legacy options removed in 2016.11"
782
Fabrice Fontainec4572132016-09-12 23:31:07 +0200783config BR2_PACKAGE_PHP_SAPI_CLI_CGI
784 bool "PHP CGI and CLI options are now seperate"
785 select BR2_PACKAGE_PHP_SAPI_CLI
786 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200787 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200788 help
789 The PHP Interface options have been split up into a
790 separate option for each interface.
791
792config BR2_PACKAGE_PHP_SAPI_CLI_FPM
793 bool "PHP CLI and FPM options are now separate"
794 select BR2_PACKAGE_PHP_SAPI_CLI
795 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200796 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200797 help
798 The PHP Interface options have been split up into a
799 separate option for each interface.
800
Arnout Vandecappelle35343992016-10-15 16:51:06 +0200801config BR2_PACKAGE_WVSTREAMS
802 bool "wvstreams removed"
803 select BR2_LEGACY
804 help
805 wvstreams is not maintained anymore since about 2009. It also
806 doesn't build anymore with recent compilers (GCC 5+).
807
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +0200808config BR2_PACKAGE_WVDIAL
809 bool "wvdial removed"
810 select BR2_LEGACY
811 help
812 wvdial is not maintained anymore since about 2009. It also
813 doesn't build anymore with recent compilers (GCC 5+).
814
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +0200815config BR2_PACKAGE_WEBKITGTK24
816 bool "webkitgtk 2.4.x removed"
817 select BR2_LEGACY
818 help
819 This legacy package only existed because some other packages
820 depended on that specific version of webkitgtk. However, the
821 other packages have been fixed. webkitgtk 2.4 is full of
822 security issues so it needs to be removed.
823
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +0200824config BR2_PACKAGE_TORSMO
825 bool "torsmo removed"
826 select BR2_LEGACY
827 help
828 torsmo has been unmaintained for a long time, and nobody
829 seems to be interested in it.
830
Arnout Vandecappelle290166f2016-10-15 16:51:02 +0200831config BR2_PACKAGE_SSTRIP
832 bool "sstrip removed"
833 select BR2_LEGACY
834 help
835 sstrip is unmaintained and potentially harmful. It doesn't
836 save so much compared to normal binutils strip, and there is
837 a big risk of binaries that don't work. Use normal strip
838 instead.
839
Arnout Vandecappelle133466f2016-10-15 16:51:01 +0200840config BR2_KERNEL_HEADERS_4_3
841 bool "kernel headers version 4.3.x are no longer supported"
842 select BR2_KERNEL_HEADERS_4_1
843 select BR2_LEGACY
844 help
845 Version 4.3.x of the Linux kernel headers are no longer
846 maintained upstream and are now removed. As an alternative,
847 version 4.1.x of the headers have been automatically
848 selected in your configuration.
849
850config BR2_KERNEL_HEADERS_4_2
851 bool "kernel headers version 4.2.x are no longer supported"
852 select BR2_KERNEL_HEADERS_4_1
853 select BR2_LEGACY
854 help
855 Version 4.2.x of the Linux kernel headers are no longer
856 maintained upstream and are now removed. As an alternative,
857 version 4.1.x of the headers have been automatically
858 selected in your configuration.
859
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +0200860config BR2_PACKAGE_KODI_ADDON_XVDR
861 bool "kodi-addon-xvdr removed"
862 select BR2_LEGACY
863 help
864 According to the github project page:
865 https://github.com/pipelka/xbmc-addon-xvdr
866 this package is discontinued.
867
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +0200868config BR2_PACKAGE_IPKG
869 bool "ipkg removed"
870 select BR2_LEGACY
871 help
872 ipkg dates back to the early 2000s when Compaq started the
873 handhelds.org project and it hasn't seen development since 2006.
874 Use opkg as a replacement.
875
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +0200876config BR2_GCC_VERSION_4_7_X
877 bool "gcc 4.7.x support removed"
878 select BR2_LEGACY
879 help
880 Support for gcc version 4.7.x has been removed. The current
881 default version (4.9.x or later) has been selected instead.
882
Arnout Vandecappelled8878112016-10-15 16:50:57 +0200883config BR2_BINUTILS_VERSION_2_24_X
884 bool "binutils version 2.24 support removed"
885 select BR2_LEGACY
886 help
887 Support for binutils version 2.24 has been removed. The
888 current default version (2.26 or later) has been selected
889 instead.
890
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -0300891config BR2_PACKAGE_WESTON_RPI
892 bool "Weston propietary RPI support is gone"
893 select BR2_LEGACY
894 help
895 Upstream decided the propietary (rpi-userland) weston composer
896 support wasn't worth the effort so it was removed. Switch to
897 the open VC4 support.
898
Yann E. MORIN20b14462016-09-06 16:29:14 +0200899config BR2_LINUX_KERNEL_TOOL_CPUPOWER
900 bool "linux-tool cpupower"
901 depends on BR2_LINUX_KERNEL
902 select BR2_LEGACY
903 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
904 help
905 Linux tool cpupower option was renamed.
906
907config BR2_LINUX_KERNEL_TOOL_PERF
908 bool "linux-tool perf"
909 depends on BR2_LINUX_KERNEL
910 select BR2_LEGACY
911 select BR2_PACKAGE_LINUX_TOOLS_PERF
912 help
913 Linux tool perf option was renamed.
914
915config BR2_LINUX_KERNEL_TOOL_SELFTESTS
916 bool "linux-tool selftests"
917 depends on BR2_LINUX_KERNEL
918 select BR2_LEGACY
919 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
920 help
921 Linux tool selftests option was renamed.
922
Thomas Petazzoni50332a52016-08-11 15:25:38 +0200923config BR2_GCC_VERSION_4_8_ARC
924 bool "gcc arc option renamed"
925 select BR2_LEGACY
926 select BR2_GCC_VERSION_ARC
927 help
928 The option that selects the gcc version for the ARC
929 architecture has been renamed to BR2_GCC_VERSION_ARC.
930
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300931config BR2_KERNEL_HEADERS_4_0
932 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300933 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300934 select BR2_LEGACY
935 help
936 Version 4.0.x of the Linux kernel headers have been deprecated
937 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300938 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300939 automatically selected in your configuration.
940
941config BR2_KERNEL_HEADERS_3_19
942 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300943 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300944 select BR2_LEGACY
945 help
946 Version 3.19.x of the Linux kernel headers have been deprecated
947 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300948 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300949 automatically selected in your configuration.
950
Romain Naour0e517312016-09-02 22:31:32 +0200951config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
952 bool "libevas-generic-loaders package removed"
953 select BR2_LEGACY
954 select BR2_PACKAGE_EFL
955 help
956 With EFL 1.18, libevas-generic-loaders is now provided by the efl
957 package.
958
Romain Naourc22b7582016-09-02 22:31:31 +0200959config BR2_PACKAGE_ELEMENTARY
960 bool "elementary package removed"
961 select BR2_LEGACY
962 select BR2_PACKAGE_EFL
963 help
964 With EFL 1.18, elementary is now provided by the efl package.
965
Yann E. MORINe782cd52016-08-28 01:03:04 +0200966config BR2_LINUX_KERNEL_CUSTOM_LOCAL
967 bool "Linux kernel local directory option removed"
968 help
969 The option to select a local directory as the source of the Linux
970 kernel has been removed. It hurts reproducibility of builds.
971
972 In case you were using this option during development of your
973 Linux kernel, use the override mechanism instead.
974
975###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200976comment "Legacy options removed in 2016.08"
977
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100978config BR2_PACKAGE_EFL_JP2K
979 bool "libevas jp2k loader has been removed"
980 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +0100981 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100982 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
983 while Buildroot only packages openjpeg 2.x. Therefore, the
984 JP2K loader has been removed from EFL.
985
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200986config BR2_PACKAGE_SYSTEMD_COMPAT
987 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +0200988 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200989 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +0200990 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200991 been removed. Theses libraries have been useless since a few
992 version, and have been fully dropped from the source since
993 v230.
994
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +0200995config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
996 bool "gst1-plugins-bad liveadder plugin removed"
997 select BR2_LEGACY
998 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
999 help
1000 The functionality of the liveadder plugin of the
1001 gst1-plugins-bad package has been merged into audiomixer.
1002
Andrew Webster0f92b192016-06-10 14:13:29 -04001003config BR2_PACKAGE_LIBFSLVPUWRAP
1004 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
1005 select BR2_LEGACY
1006 select BR2_PACKAGE_IMX_VPUWRAP
1007 help
1008 The libfslvpuwrap has been renamed to match the renamed package.
1009
Andrew Webster64998902016-06-10 14:13:18 -04001010config BR2_PACKAGE_LIBFSLPARSER
1011 bool "libfslparser has been renamed to imx-parser"
1012 select BR2_LEGACY
1013 select BR2_PACKAGE_IMX_PARSER
1014 help
1015 The libfslparser has been renamed to match the renamed package.
1016
Andrew Webster47e62032016-06-10 14:13:05 -04001017config BR2_PACKAGE_LIBFSLCODEC
1018 bool "libfslcodec has been renamed to imx-codec"
1019 select BR2_LEGACY
1020 select BR2_PACKAGE_IMX_CODEC
1021 help
1022 The libfslcodec has been renamed to match the renamed package.
1023
Carlos Santosb5d99002016-06-03 16:35:39 -03001024config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
1025 bool "FIT support in uboot-tools has been refactored"
1026 select BR2_LEGACY
1027 select BR2_PACKAGE_DTC
1028 select BR2_PACKAGE_DTC_PROGRAMS
1029 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
1030 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
1031 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
1032 help
1033 This option has been removed in favor of a more fine-grained
1034 configuration, which is recommended. Selecting this option
1035 enables FIT and FIT signature support for the target packages.
1036 It will also select the dtc and openssl packages.
1037
Waldemar Brodkorbf253c142016-06-01 20:40:25 +02001038config BR2_PTHREADS_OLD
1039 bool "linuxthreads (stable/old)"
1040 select BR2_LEGACY
1041 help
1042 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
1043 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
1044
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001045config BR2_BINUTILS_VERSION_2_23_X
1046 bool "binutils 2.23 removed"
1047 select BR2_LEGACY
1048 help
1049 Binutils 2.23 has been removed, using a newer version is
1050 recommended.
1051
Thomas Petazzoni500de252016-05-17 00:13:00 +02001052config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
1053 bool "eglibc support has been removed"
1054 select BR2_LEGACY
1055 help
1056 The eglibc project no longer exists, as it has been merged
1057 back into the glibc project. Therefore, support for eglibc
1058 has been removed, and glibc should be used instead.
1059
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02001060config BR2_GDB_VERSION_7_8
1061 bool "gdb 7.8 has been removed"
1062 select BR2_LEGACY
1063 help
1064 The 7.8 version of gdb has been removed. Use a newer version
1065 instead.
1066
1067###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01001068comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +01001069
Gustavo Zacarias3380da62016-05-14 10:33:47 -03001070config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
1071 bool "openvpn polarssl crypto backend removed"
1072 select BR2_LEGACY
1073 help
1074 The OpenVPN polarssl crypto backend option has been removed.
1075 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
1076 compatible with mbedtls (polarssl) series 2.x which is the
1077 version provided in buildroot. And both can't coexist.
1078 It now uses OpenSSL as the only option.
1079
1080
Martin Bark4dfc2cb2016-05-03 10:36:54 +01001081config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
1082 bool "nginx http spdy module removed"
1083 select BR2_LEGACY
1084 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
1085 help
1086 The ngx_http_spdy_module has been superseded by the
1087 ngx_http_v2_module since nginx v1.9.5. The
1088 ngx_http_v2_module modules has been automatically selected
1089 in your configuration.
1090
Gustavo Zacarias0c956f22016-05-03 16:44:15 -03001091config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
1092 bool "gst1-plugins-bad rtp plugin moved to good"
1093 select BR2_LEGACY
1094 help
1095 The rtp plugin has been moved from gst1-plugins-base to
1096 gst1-plugins-good.
1097
Gustavo Zacarias4196cf92016-05-03 16:44:14 -03001098config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
1099 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
1100 select BR2_LEGACY
1101 help
1102 The mpg123 plugin has been moved from gst1-plugins-bad to
1103 gst1-plugins-ugly.
1104
Gustavo Zacarias8490e832016-04-29 10:18:56 -03001105config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
1106 bool "PowerPC Sourcery toolchain has been removed"
1107 select BR2_LEGACY
1108 help
1109 The Sourcery CodeBench toolchain for the PowerPC
1110 architecture has been removed, as it was very old, not
1111 maintained, and causing numerous build failures with modern
1112 userspace packages.
1113
1114config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
1115 bool "PowerPC Sourcery E500v2 toolchain has been removed"
1116 select BR2_LEGACY
1117 help
1118 The Sourcery CodeBench toolchain for the PowerPC E500v2
1119 architecture has been removed, as it was very old, not
1120 maintained, and causing numerous build failures with modern
1121 userspace packages.
1122
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02001123config BR2_x86_i386
1124 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +02001125 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02001126 help
1127 The support for the i386 processors of the x86 architecture
1128 has been removed.
1129
Julien CORJON940bfe22016-03-17 10:42:27 +01001130config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
1131 bool "qt5webkit-examples package removed"
1132 select BR2_LEGACY
1133 help
1134 The qt5webkit-examples package has been removed, since it
1135 was removed from upstream starting from Qt 5.6.
1136
Julien CORJONf75ee802016-03-17 10:42:25 +01001137config BR2_PACKAGE_QT5QUICK1
1138 bool "qt5quick1 package removed"
1139 select BR2_LEGACY
1140 help
1141 The qt5quick1 package has been removed, since it was removed
1142 from upstream starting from Qt 5.6.
1143
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03001144config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -05001145 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03001146 help
1147 The uboot custom patch directory option has been removed. Use
1148 the improved BR2_TARGET_UBOOT_PATCH option instead.
1149
Danomi Manchegof61583f2016-12-19 22:10:12 -05001150config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
1151 bool
1152 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
1153 select BR2_LEGACY
1154
1155# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
1156# boot/uboot/Config.in
1157
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -03001158config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
1159 bool "xf86-input-void removed"
1160 select BR2_LEGACY
1161 help
1162 The xf86-input-void package has been removed, there's no need
1163 for it in any modern (post-2007) xorg server.
1164
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001165config BR2_KERNEL_HEADERS_3_17
1166 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001167 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001168 select BR2_LEGACY
1169 help
1170 Version 3.17.x of the Linux kernel headers have been deprecated
1171 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001172 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001173 automatically selected in your configuration.
1174
Gustavo Zacariasffc324e2016-03-11 11:32:21 -03001175config BR2_GDB_VERSION_7_7
1176 bool "gdb 7.7 has been removed"
1177 select BR2_LEGACY
1178 help
1179 The 7.7 version of gdb has been removed. Use a newer version
1180 instead.
1181
Gustavo Zacarias75945dd2016-03-11 11:32:20 -03001182config BR2_PACKAGE_FOOMATIC_FILTERS
1183 bool "foomatic-filters"
1184 select BR2_LEGACY
1185 help
1186 The foomatic-filters package was removed.
1187
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -03001188config BR2_PACKAGE_SAMBA
1189 bool "samba"
1190 select BR2_LEGACY
1191 help
1192 The samba package was removed in favour of samba4 since the
1193 3.x series isn't supported by upstream any longer.
1194
Bernd Kuhls6922b412016-02-20 23:09:11 +01001195config BR2_PACKAGE_KODI_WAVPACK
1196 bool "wavpack"
1197 select BR2_LEGACY
1198 help
1199 wavpack support was removed in favour of ffmpeg:
1200 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
1201
Bernd Kuhls75ce17d2016-02-20 23:09:07 +01001202config BR2_PACKAGE_KODI_RSXS
1203 bool "rsxs support in Kodi was moved to an addon"
1204 select BR2_LEGACY
1205 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
1206 help
1207 rsxs support in Kodi was moved to an addon
1208
Bernd Kuhls56b80ec2016-02-20 23:09:06 +01001209config BR2_PACKAGE_KODI_GOOM
1210 bool "Goom support in Kodi was moved to an addon"
1211 select BR2_LEGACY
1212 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
1213 help
1214 Goom support in Kodi was moved to an addon
1215
Gabe Evanse5a073a2016-02-25 21:55:11 +00001216config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
1217 bool "systemd all extras option has been removed"
1218 select BR2_LEGACY
1219 select BR2_PACKAGE_XZ
1220 select BR2_PACKAGE_LIBGCRYPT
1221 help
1222 The systemd option to enable "all extras" has been
1223 removed. To get the same features, the libgcrypt and xz
1224 package should now be enabled.
1225
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -03001226config BR2_GCC_VERSION_4_5_X
1227 bool "gcc 4.5.x has been removed"
1228 select BR2_LEGACY
1229 help
1230 The 4.5.x version of gcc has been removed. Use a newer
1231 version instead.
1232
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01001233config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -05001234 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01001235 select BR2_PACKAGE_NCURSES
1236 select BR2_PACKAGE_READLINE
1237 select BR2_LEGACY
1238 help
1239 This option was removed in favour of the sqlite package
1240 deciding itself depending on the enabled packages whether
1241 command-line editing should be enabled, it also also takes
1242 libedit into account.
1243
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01001244###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +01001245comment "Legacy options removed in 2016.02"
1246
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +01001247config BR2_PACKAGE_DOVECOT_BZIP2
1248 bool "bzip2 support option has been removed"
1249 select BR2_LEGACY
1250 select BR2_PACKAGE_BZIP2
1251 help
1252 Bzip2 support is built if the bzip2 package is selected.
1253
1254config BR2_PACKAGE_DOVECOT_ZLIB
1255 bool "zlib support option has been removed"
1256 select BR2_LEGACY
1257 select BR2_PACKAGE_ZLIB
1258 help
1259 Zlib support is built if the zlib package is selected.
1260
James Knightead1df42016-02-12 11:40:05 -05001261config BR2_PACKAGE_E2FSPROGS_FINDFS
1262 bool "e2fsprogs findfs option has been removed"
1263 select BR2_LEGACY
1264 help
1265 This option attempted to enable findfs capabilities from
1266 e2fsprogs but has not worked since July 2015 (due to
1267 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +01001268 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -05001269
Romain Naourb1063a02016-02-07 17:56:56 +01001270config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
1271 bool "openpowerlink debug option has been removed"
1272 select BR2_LEGACY
1273 help
1274 This option depends on BR2_ENABLE_DEBUG which should not be used
1275 by packages anymore.
1276
1277config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
1278 bool "openpowerlink package has been updated"
1279 select BR2_LEGACY
1280 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
1281 help
1282 openpowerlink kernel modules are built if the
1283 kernel stack library is selected.
1284
1285config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
1286 bool "openpowerlink package has been updated"
1287 select BR2_LEGACY
1288 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
1289 help
1290 The user space support has been split in two part:
1291 - a monolitic user space library
1292 - a user spae deamon driver
1293
Yann E. MORINe3e05832016-02-06 00:06:17 +01001294config BR2_LINUX_KERNEL_SAME_AS_HEADERS
1295 bool "using the linux headers version for the kernel has been removed"
1296 select BR2_LEGACY
1297 help
1298 The option to use the version of the kernel headers for the
1299 kernel to build has been removed.
1300
1301 There is now the converse, better-suited and more versatile
1302 option to use the kernel version for the linux headers.
1303
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02001304config BR2_PACKAGE_CUPS_PDFTOPS
1305 bool "Pdftops support has been removed from Cups"
1306 select BR2_LEGACY
1307 help
1308 Pdftops support has been removed from the cups package
1309 It is now part of the cups-filters package.
1310
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001311config BR2_KERNEL_HEADERS_3_16
1312 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001313 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001314 select BR2_LEGACY
1315 help
1316 Version 3.16.x of the Linux kernel headers have been deprecated
1317 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001318 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001319 automatically selected in your configuration.
1320
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01001321config BR2_PACKAGE_PYTHON_PYXML
1322 bool "python-pyxml package has been removed"
1323 select BR2_LEGACY
1324 help
1325 PyXML is obsolete and its functionality is covered either via
1326 native Python XML support or python-lxml package.
1327
Steven Noonand29c7192015-12-27 12:07:31 +01001328# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
1329config BR2_ENABLE_SSP
1330 bool "Stack Smashing protection now has different levels"
1331 help
1332 The protection offered by SSP can now be selected from different
1333 protection levels. Be sure to review the SSP level in the build
1334 options menu.
1335
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001336config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03001337 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001338 select BR2_LEGACY
1339 help
1340 The cle266 directfb driver support has been removed.
1341 It doesn't build in the latest version and it's unlikely
1342 anyone has any use for it.
1343
1344config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03001345 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001346 select BR2_LEGACY
1347 help
1348 The unichrome directfb driver support has been removed.
1349 It doesn't build in the latest version and it's unlikely
1350 anyone has any use for it.
1351
Romain Naour820e1682015-12-19 17:39:14 +01001352config BR2_PACKAGE_LIBELEMENTARY
1353 bool "libelementary has been renamed to elementary"
1354 select BR2_LEGACY
1355 select BR2_PACKAGE_ELEMENTARY
1356 help
1357 The libelementary package has been renamed to match the upstream
1358 name.
1359
Romain Naoura9d1f5f2015-12-15 23:40:38 +01001360config BR2_PACKAGE_LIBEINA
1361 bool "libeina package has been removed"
1362 select BR2_LEGACY
1363 select BR2_PACKAGE_EFL
1364 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001365 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01001366
Romain Naour49700f02015-12-15 23:40:37 +01001367config BR2_PACKAGE_LIBEET
1368 bool "libeet package has been removed"
1369 select BR2_LEGACY
1370 select BR2_PACKAGE_EFL
1371 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001372 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01001373
Romain Naoure5989d62015-12-15 23:40:36 +01001374config BR2_PACKAGE_LIBEVAS
1375 bool "libevas package has been removed"
1376 select BR2_LEGACY
1377 select BR2_PACKAGE_EFL
1378 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001379 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01001380
Romain Naour1fe1b602015-12-15 23:40:35 +01001381config BR2_PACKAGE_LIBECORE
1382 bool "libecore package has been removed"
1383 select BR2_LEGACY
1384 select BR2_PACKAGE_EFL
1385 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001386 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01001387
Romain Naour8c05c382015-12-15 23:40:34 +01001388config BR2_PACKAGE_LIBEDBUS
1389 bool "libedbus package has been removed"
1390 select BR2_LEGACY
1391 select BR2_PACKAGE_EFL
1392 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001393 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01001394
Romain Naourd2b042c2015-12-15 23:40:33 +01001395config BR2_PACKAGE_LIBEFREET
1396 bool "libefreet package has been removed"
1397 select BR2_LEGACY
1398 select BR2_PACKAGE_EFL
1399 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001400 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01001401
Romain Naoure155c952015-12-15 23:40:32 +01001402config BR2_PACKAGE_LIBEIO
1403 bool "libeio package has been removed"
1404 select BR2_LEGACY
1405 select BR2_PACKAGE_EFL
1406 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001407 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01001408
Romain Naourb728fb72015-12-15 23:40:31 +01001409config BR2_PACKAGE_LIBEMBRYO
1410 bool "libembryo package has been removed"
1411 select BR2_LEGACY
1412 select BR2_PACKAGE_EFL
1413 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001414 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01001415
Romain Naour4c93c102015-12-15 23:40:30 +01001416config BR2_PACKAGE_LIBEDJE
1417 bool "libedje package has been removed"
1418 select BR2_LEGACY
1419 select BR2_PACKAGE_EFL
1420 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001421 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01001422
Romain Naour905dba12015-12-15 23:40:29 +01001423config BR2_PACKAGE_LIBETHUMB
1424 bool "libethumb package has been removed"
1425 select BR2_LEGACY
1426 select BR2_PACKAGE_EFL
1427 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001428 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01001429
Luca Ceresolif0c94702015-11-27 18:38:00 +01001430config BR2_PACKAGE_INFOZIP
1431 bool "infozip option has been renamed to zip"
1432 select BR2_LEGACY
1433 select BR2_PACKAGE_ZIP
1434 help
1435 Info-Zip's Zip package has been renamed from infozip to zip,
1436 to avoid ambiguities with Info-Zip's UnZip which has been added
1437 in the unzip package.
1438
Martin Barka2d16602015-12-23 12:16:04 +00001439config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00001440 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00001441 select BR2_LEGACY
1442 select BR2_PACKAGE_NODEJS
1443 help
Martin Bark75b70492016-01-30 14:51:00 +00001444 nodejs 0.10.x option has been removed. 0.10.x is now
1445 automatically chosen for ARMv5 architectures only and the latest
1446 nodejs for all other supported architectures. The correct nodejs
1447 version has been automatically selected in your configuration.
Martin Barka2d16602015-12-23 12:16:04 +00001448
Martin Barka314b872015-12-23 12:16:03 +00001449config BR2_BR2_PACKAGE_NODEJS_0_12_X
1450 bool "nodejs version 0.12.x has been removed"
1451 select BR2_LEGACY
1452 select BR2_PACKAGE_NODEJS
1453 help
1454 nodejs version 0.12.x has been removed. As an alternative,
1455 the latest nodejs version has been automatically selected in
1456 your configuration.
1457
Martin Bark90bf67c2015-12-23 12:16:02 +00001458config BR2_BR2_PACKAGE_NODEJS_4_X
1459 bool "nodejs version 4.x has been removed"
1460 select BR2_LEGACY
1461 select BR2_PACKAGE_NODEJS
1462 help
1463 nodejs version 4.x has been removed. As an alternative,
1464 the latest nodejs version has been automatically selected in
1465 your configuration.
1466
Luca Ceresolif0c94702015-11-27 18:38:00 +01001467###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001468comment "Legacy options removed in 2015.11"
1469
Peter Seiderer301e8ff2015-10-15 21:42:43 +02001470config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
1471 bool "gst1-plugins-bad real plugin has been removed"
1472 select BR2_LEGACY
1473 help
1474 The real plugin from GStreamer 1 bad plugins has been
1475 removed.
1476
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02001477config BR2_PACKAGE_MEDIA_CTL
1478 bool "media-ctl package has been removed"
1479 select BR2_LEGACY
1480 select BR2_PACKAGE_LIBV4L
1481 select BR2_PACKAGE_LIBV4L_UTILS
1482 help
1483 media-ctl source and developement have been moved to
1484 v4l-utils since June 2014. For an up-to-date media-ctl
1485 version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
1486
Romain Naourf8031332015-10-03 18:35:05 +02001487config BR2_PACKAGE_SCHIFRA
1488 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001489 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02001490 help
1491 Schifra package has been maked broken since 2014.11 release and
1492 haven't been fixed since then.
1493
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02001494config BR2_PACKAGE_ZXING
1495 bool "zxing option has been renamed"
1496 select BR2_LEGACY
1497 select BR2_PACKAGE_ZXING_CPP
1498 help
1499 ZXing no longer provides the cpp bindings, it has been renamed to
1500 BR2_PACKAGE_ZXING_CPP which uses a new upstream.
1501
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001502# Since FreeRDP has new dependencies, protect this legacy to avoid the
1503# infamous "unmet direct dependencies" kconfig error.
1504config BR2_PACKAGE_FREERDP_CLIENT
1505 bool "freerdp client option renamed"
1506 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02001507 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001508 select BR2_PACKAGE_FREERDP_CLIENT_X11
1509
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03001510config BR2_PACKAGE_BLACKBOX
1511 bool "blackbox package has been removed"
1512 select BR2_LEGACY
1513 help
1514 Upstream is dead and the package has been deprecated for
1515 some time. There are other alternative maintained WMs.
1516
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001517config BR2_KERNEL_HEADERS_3_0
1518 bool "kernel headers version 3.0.x are no longer supported"
1519 select BR2_KERNEL_HEADERS_3_2
1520 select BR2_LEGACY
1521 help
1522 Version 3.0.x of the Linux kernel headers have been deprecated
1523 for more than four buildroot releases and are now removed.
1524 As an alternative, version 3.2.x of the headers have been
1525 automatically selected in your configuration.
1526
1527config BR2_KERNEL_HEADERS_3_11
1528 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001529 select BR2_KERNEL_HEADERS_3_10
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001530 select BR2_LEGACY
1531 help
1532 Version 3.11.x of the Linux kernel headers have been deprecated
1533 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001534 As an alternative, version 3.10.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001535 automatically selected in your configuration.
1536
1537config BR2_KERNEL_HEADERS_3_13
1538 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001539 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001540 select BR2_LEGACY
1541 help
1542 Version 3.13.x of the Linux kernel headers have been deprecated
1543 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001544 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001545 automatically selected in your configuration.
1546
1547config BR2_KERNEL_HEADERS_3_15
1548 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001549 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001550 select BR2_LEGACY
1551 help
1552 Version 3.15.x of the Linux kernel headers have been deprecated
1553 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001554 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001555 automatically selected in your configuration.
1556
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001557config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
1558 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001559 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001560 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1561 help
1562 The per-DirectFB example options have been removed. The
1563 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1564 examples.
1565
1566config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
1567 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001568 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001569 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1570 help
1571 The per-DirectFB example options have been removed. The
1572 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1573 examples.
1574
1575config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
1576 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001577 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001578 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1579 help
1580 The per-DirectFB example options have been removed. The
1581 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1582 examples.
1583
1584config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
1585 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001586 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001587 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1588 help
1589 The per-DirectFB example options have been removed. The
1590 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1591 examples.
1592
1593config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
1594 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001595 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001596 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1597 help
1598 The per-DirectFB example options have been removed. The
1599 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1600 examples.
1601
1602config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
1603 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001604 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001605 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1606 help
1607 The per-DirectFB example options have been removed. The
1608 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1609 examples.
1610
1611config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
1612 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001613 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001614 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1615 help
1616 The per-DirectFB example options have been removed. The
1617 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1618 examples.
1619
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001620config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
1621 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001622 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001623 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1624 help
1625 The per-DirectFB example options have been removed. The
1626 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1627 examples.
1628
1629config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
1630 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001631 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001632 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1633 help
1634 The per-DirectFB example options have been removed. The
1635 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1636 examples.
1637
1638config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
1639 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001640 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001641 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1642 help
1643 The per-DirectFB example options have been removed. The
1644 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1645 examples.
1646
1647config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
1648 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001649 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001650 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1651 help
1652 The per-DirectFB example options have been removed. The
1653 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1654 examples.
1655
1656config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
1657 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001658 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001659 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1660 help
1661 The per-DirectFB example options have been removed. The
1662 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1663 examples.
1664
1665config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
1666 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001667 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001668 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1669 help
1670 The per-DirectFB example options have been removed. The
1671 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1672 examples.
1673
1674config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
1675 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001676 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001677 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1678 help
1679 The per-DirectFB example options have been removed. The
1680 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1681 examples.
1682
1683config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
1684 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001685 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001686 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1687 help
1688 The per-DirectFB example options have been removed. The
1689 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1690 examples.
1691
1692config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
1693 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001694 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001695 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1696 help
1697 The per-DirectFB example options have been removed. The
1698 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1699 examples.
1700
1701config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
1702 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001703 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001704 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1705 help
1706 The per-DirectFB example options have been removed. The
1707 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1708 examples.
1709
1710config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
1711 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001712 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001713 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1714 help
1715 The per-DirectFB example options have been removed. The
1716 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1717 examples.
1718
1719config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
1720 bool "DirectFB example df_palette has been removed"
1721 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1722 help
1723 The per-DirectFB example options have been removed. The
1724 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1725 examples.
1726
1727config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
1728 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001729 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001730 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1731 help
1732 The per-DirectFB example options have been removed. The
1733 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1734 examples.
1735
1736config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
1737 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001738 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001739 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1740 help
1741 The per-DirectFB example options have been removed. The
1742 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1743 examples.
1744
1745config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
1746 bool "DirectFB example df_stress has been removed"
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
1753config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
1754 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001755 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001756 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
1762config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
1763 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001764 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001765 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
1771config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1772 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001773 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001774 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
1780config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1781 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001782 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001783 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
Gary Bisson2b78fb22015-09-23 15:39:27 +02001789config BR2_PACKAGE_KOBS_NG
1790 bool "kobs-ng was replaced by imx-kobs"
1791 select BR2_LEGACY
1792 select BR2_PACKAGE_IMX_KOBS
1793 help
1794 The outdated kobs-ng has been replaced by the Freescale-
1795 maintained imx-kobs package.
1796
Thomas Petazzoni11573f52015-09-02 00:01:11 +02001797config BR2_PACKAGE_SAWMAN
1798 bool "sawman package removed"
1799 select BR2_LEGACY
1800 select BR2_PACKAGE_DIRECTFB_SAWMAN
1801 help
1802 This option has been removed because the sawman package no
1803 longer exists: it was merged inside DirectFB itself. This
1804 feature can now be enabled using the
1805 BR2_PACKAGE_DIRECTFB_SAWMAN option.
1806
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001807config BR2_PACKAGE_DIVINE
1808 bool "divine package removed"
1809 select BR2_LEGACY
1810 select BR2_PACKAGE_DIRECTFB_DIVINE
1811 help
1812 This option has been removed because the divine package no
1813 longer exists: it was merged inside DirectFB itself. This
1814 feature can now be enabled using the
1815 BR2_PACKAGE_DIRECTFB_DIVINE option.
1816
1817###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001818comment "Legacy options removed in 2015.08"
1819
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001820config BR2_PACKAGE_KODI_PVR_ADDONS
1821 bool "Kodi PVR addon was split"
1822 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02001823 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02001824 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02001825 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02001826 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02001827 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02001828 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02001829 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02001830 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02001831 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02001832 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02001833 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02001834 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02001835 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02001836 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02001837 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02001838 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001839 help
1840 Kodi PVR addon was split into seperate modules
1841
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001842config BR2_BINUTILS_VERSION_2_23_2
1843 bool "binutils 2.23 option renamed"
1844 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001845 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001846 Binutils 2.23.2 has been removed, using a newer version is
1847 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001848
1849config BR2_BINUTILS_VERSION_2_24
1850 bool "binutils 2.24 option renamed"
1851 select BR2_LEGACY
1852 select BR2_BINUTILS_VERSION_2_24_X
1853 help
1854 The binutils version option has been renamed to match the
1855 same patchlevel logic used by gcc. The new option is now
1856 BR2_BINUTILS_VERSION_2_24_X.
1857
1858config BR2_BINUTILS_VERSION_2_25
1859 bool "binutils 2.25 option renamed"
1860 select BR2_LEGACY
1861 select BR2_BINUTILS_VERSION_2_25_X
1862 help
1863 The binutils version option has been renamed to match the
1864 same patchlevel logic used by gcc. The new option is now
1865 BR2_BINUTILS_VERSION_2_25_X.
1866
Romain Naour1326e762015-07-14 19:35:14 +02001867config BR2_PACKAGE_PERF
1868 bool "perf option has been renamed"
1869 select BR2_LEGACY
1870 select BR2_LINUX_KERNEL_TOOL_PERF
1871 help
1872 The perf package has been moved as a Linux tools package,
1873 and the option to enable it is now
1874 BR2_LINUX_KERNEL_TOOL_PERF.
1875
Thomas Petazzoni2f845952015-07-11 14:52:53 +02001876config BR2_BINUTILS_VERSION_2_22
1877 bool "binutils 2.22 removed"
1878 select BR2_LEGACY
1879 help
1880 Binutils 2.22 has been removed, using a newer version is
1881 recommended.
1882
Gary Bisson4c0613e2015-05-26 10:19:37 +02001883config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1884 bool "gpu-viv-bin-mx6q"
1885 select BR2_LEGACY
1886 select BR2_PACKAGE_IMX_GPU_VIV
1887 help
1888 Vivante graphics libraries have been renamed to
1889 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1890 name.
1891
Matt Weber7742abe2015-06-02 08:28:35 -05001892config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
1893 depends on BR2_PACKAGE_PYTHON
1894 bool "libsemanage python bindings removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001895 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05001896 help
1897 This option has been removed, since the libsemanage Python
1898 bindings on the target were not useful.
1899
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001900config BR2_TARGET_UBOOT_NETWORK
1901 bool "U-Boot custom network settings removed"
1902 select BR2_LEGACY
1903 help
1904 U-Boot's custom network settings options have been removed.
1905
1906###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001907comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001908
Michał Leśniewskie3904a82015-05-19 20:26:30 +02001909config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1910 bool "jffs2 16kB erasesize NAND flash option renamed"
1911 select BR2_LEGACY
1912 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1913 help
1914 The JFFS2 NAND flash options now longer include the page
1915 size.
1916
1917config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1918 bool "jffs2 128kB erasesize NAND flash option renamed"
1919 select BR2_LEGACY
1920 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
1921 help
1922 The JFFS2 NAND flash options now longer include the page
1923 size.
1924
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02001925config BR2_PACKAGE_MONO_20
1926 bool "2.0/3.5 .Net Runtime"
1927 select BR2_LEGACY
1928 help
1929 This option no longer exists, all versions of the .Net
1930 runtime are now installed.
1931
1932config BR2_PACKAGE_MONO_40
1933 bool "4.0 .Net Runtime"
1934 select BR2_LEGACY
1935 help
1936 This option no longer exists, all versions of the .Net
1937 runtime are now installed.
1938
1939config BR2_PACKAGE_MONO_45
1940 bool "4.5 .Net Runtime"
1941 select BR2_LEGACY
1942 help
1943 This option no longer exists, all versions of the .Net
1944 runtime are now installed.
1945
Peter Korsgaardefd49e32015-04-27 22:29:05 +02001946config BR2_CIVETWEB_WITH_LUA
1947 bool "civetweb lua option renamed"
1948 select BR2_LEGACY
1949 select BR2_PACKAGE_CIVETWEB_WITH_LUA
1950 help
1951 civetweb's lua option has been renamed to
1952 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
1953 packages name options.
1954
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02001955config BR2_PACKAGE_TIFF_TIFF2PDF
1956 bool "tiff utility-specific option removed"
1957 select BR2_LEGACY
1958 select BR2_PACKAGE_TIFF_UTILITIES
1959 help
1960 utility-specific options have been removed in favour of
1961 the new option BR2_PACKAGE_TIFF_UTILITIES.
1962
1963config BR2_PACKAGE_TIFF_TIFFCP
1964 bool "tiff utility-specific option removed"
1965 select BR2_LEGACY
1966 select BR2_PACKAGE_TIFF_UTILITIES
1967 help
1968 utility-specific options have been removed in favour of
1969 the new option BR2_PACKAGE_TIFF_UTILITIES.
1970
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001971config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
1972 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001973 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001974 help
1975 This option has never worked, so it has been removed.
1976
Yann E. MORIN02917962015-03-24 19:54:15 +01001977config BR2_TARGET_GENERIC_PASSWD_DES
1978 bool "Encoding passwords with DES has been removed"
1979 select BR2_LEGACY
1980 help
1981 Paswords can now only be encoded with either of md5, sha256 or sha512.
1982 The default is md5, which is stronger that DES (but still pretty weak).
1983
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03001984config BR2_PACKAGE_GTK2_THEME_HICOLOR
1985 bool "hicolor (default theme) is a duplicate"
1986 select BR2_LEGACY
1987 select BR2_PACKAGE_HICOLOR_ICON_THEME
1988 help
1989 The option was just a duplicate of hicolor icon theme.
1990
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001991config BR2_PACKAGE_VALGRIND_PTRCHECK
1992 bool "valgrind's PTRCheck was renamed to SGCheck"
1993 select BR2_LEGACY
1994 select BR2_PACKAGE_VALGRIND_SGCHECK
1995 help
1996 PTRCheck was renamed to SGCheck in valgrind
1997
1998###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001999comment "Legacy options removed in 2015.02"
2000
Pedro Aguilar10900c02015-02-27 06:38:07 +02002001config BR2_PACKAGE_LIBGC
2002 bool "libgc package removed"
2003 select BR2_LEGACY
2004 select BR2_PACKAGE_BDWGC
2005 help
2006 libgc has been removed because we have the same package under a
2007 different name, bdwgc.
2008
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01002009config BR2_PACKAGE_WDCTL
2010 bool "util-linux' wdctl option has been renamed"
2011 select BR2_LEGACY
2012 select BR2_PACKAGE_UTIL_LINUX_WDCTL
2013 help
2014 util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
2015 to be aligned with how the other options are named.
2016
Danomi Manchegoe44edb82015-07-13 22:57:06 -04002017config BR2_PACKAGE_UTIL_LINUX_ARCH
2018 bool "util-linux' arch option has been removed"
2019 select BR2_LEGACY
2020 help
2021 util-linux' arch was dropped in util-linux 2.23, in favor of
2022 the coreutils version.
2023
2024config BR2_PACKAGE_UTIL_LINUX_DDATE
2025 bool "util-linux' ddate option has been removed"
2026 select BR2_LEGACY
2027 help
2028 util-linux' ddate was dropped in util-linux 2.23.
2029
Romain Naour3c476542015-01-18 20:53:08 +01002030config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
2031 bool "rpm's bzip2 payloads option has been removed"
2032 select BR2_LEGACY
2033 select BR2_PACKAGE_BZIP2
2034 help
2035 The bzip2 payloads option rely entirely on the dependant package bzip2.
2036 So, you need to select it to enable this feature.
2037
2038config BR2_PACKAGE_RPM_XZ_PAYLOADS
2039 bool "rpm's xz payloads option has been removed"
2040 select BR2_LEGACY
2041 select BR2_PACKAGE_XZ
2042 help
2043 The xz payloads option rely entirely on the dependant package xz.
2044 So, you need to select it to enable this feature.
2045
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03002046config BR2_PACKAGE_M4
2047 bool "m4 target package removed"
2048 select BR2_LEGACY
2049 help
2050 The m4 target package has been removed, it's been
2051 deprecated for some time now.
2052
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03002053config BR2_PACKAGE_FLEX_BINARY
2054 bool "flex binary in target option removed"
2055 select BR2_LEGACY
2056 help
2057 The flex binary in the target option has been removed.
2058 It's been deprecated for some time now and is essentially a
2059 development tool which isn't very useful in the target.
2060
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03002061config BR2_PACKAGE_BISON
2062 bool "bison target package removed"
2063 select BR2_LEGACY
2064 help
2065 The bison target package has been removed, it's been
2066 deprecated for some time now and is essentially a development
2067 tool which isn't very useful in the target.
2068
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03002069config BR2_PACKAGE_GOB2
2070 bool "gob2 target package removed"
2071 select BR2_LEGACY
2072 help
2073 The gob2 target package has been removed, it's been
2074 deprecated for some time now and was essentially useless
2075 without a target toolchain.
2076
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03002077config BR2_PACKAGE_DISTCC
2078 bool "distcc target package removed"
2079 select BR2_LEGACY
2080 help
2081 The distcc target package has been removed, it's been
2082 deprecated for some time now and was essentially useless
2083 without a target toolchain.
2084
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03002085config BR2_PACKAGE_HASERL_VERSION_0_8_X
2086 bool "haserl 0.8.x version removed"
2087 select BR2_LEGACY
2088 help
2089 The 0.8.x version option for haserl has been removed since it
2090 has been deprecated for some time now.
2091 You should be able to use the 0.9.x version without issues.
2092
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03002093config BR2_PACKAGE_STRONGSWAN_TOOLS
2094 bool "strongswan option has been removed"
2095 select BR2_LEGACY
2096 select BR2_PACKAGE_STRONGSWAN_PKI
2097 select BR2_PACKAGE_STRONGSWAN_SCEP
2098 help
2099 The tools option has been removed upstream and the different tools
2100 have been split between the pki and scep options, with others
2101 deprecated.
2102
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002103config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002104 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002105 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002106 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002107 According to the github project page:
2108 https://github.com/pipelka/xbmc-addon-xvdr
2109 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002110
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01002111config BR2_PACKAGE_XBMC_PVR_ADDONS
2112 bool "xbmc options have been renamed"
2113 select BR2_LEGACY
2114 select BR2_PACKAGE_KODI_PVR_ADDONS
2115 help
2116 The XBMC media center project was renamed to Kodi entertainment center
2117
Bernd Kuhls35784592014-12-23 18:46:27 +01002118config BR2_PACKAGE_XBMC
2119 bool "xbmc options have been renamed"
2120 select BR2_LEGACY
2121 select BR2_PACKAGE_KODI
2122 help
2123 The XBMC media center project was renamed to Kodi entertainment center
2124
2125config BR2_PACKAGE_XBMC_ALSA_LIB
2126 bool "xbmc options have been renamed"
2127 select BR2_LEGACY
2128 select BR2_PACKAGE_KODI_ALSA_LIB
2129 help
2130 The XBMC media center project was renamed to Kodi entertainment center
2131
2132config BR2_PACKAGE_XBMC_AVAHI
2133 bool "xbmc options have been renamed"
2134 select BR2_LEGACY
2135 select BR2_PACKAGE_KODI_AVAHI
2136 help
2137 The XBMC media center project was renamed to Kodi entertainment center
2138
2139config BR2_PACKAGE_XBMC_DBUS
2140 bool "xbmc options have been renamed"
2141 select BR2_LEGACY
2142 select BR2_PACKAGE_KODI_DBUS
2143 help
2144 The XBMC media center project was renamed to Kodi entertainment center
2145
2146config BR2_PACKAGE_XBMC_LIBBLURAY
2147 bool "xbmc options have been renamed"
2148 select BR2_LEGACY
2149 select BR2_PACKAGE_KODI_LIBBLURAY
2150 help
2151 The XBMC media center project was renamed to Kodi entertainment center
2152
2153config BR2_PACKAGE_XBMC_GOOM
2154 bool "xbmc options have been renamed"
2155 select BR2_LEGACY
2156 select BR2_PACKAGE_KODI_GOOM
2157 help
2158 The XBMC media center project was renamed to Kodi entertainment center
2159
2160config BR2_PACKAGE_XBMC_RSXS
2161 bool "xbmc options have been renamed"
2162 select BR2_LEGACY
2163 select BR2_PACKAGE_KODI_RSXS
2164 help
2165 The XBMC media center project was renamed to Kodi entertainment center
2166
2167config BR2_PACKAGE_XBMC_LIBCEC
2168 bool "xbmc options have been renamed"
2169 select BR2_LEGACY
2170 select BR2_PACKAGE_KODI_LIBCEC
2171 help
2172 The XBMC media center project was renamed to Kodi entertainment center
2173
2174config BR2_PACKAGE_XBMC_LIBMICROHTTPD
2175 bool "xbmc options have been renamed"
2176 select BR2_LEGACY
2177 select BR2_PACKAGE_KODI_LIBMICROHTTPD
2178 help
2179 The XBMC media center project was renamed to Kodi entertainment center
2180
2181config BR2_PACKAGE_XBMC_LIBNFS
2182 bool "xbmc options have been renamed"
2183 select BR2_LEGACY
2184 select BR2_PACKAGE_KODI_LIBNFS
2185 help
2186 The XBMC media center project was renamed to Kodi entertainment center
2187
2188config BR2_PACKAGE_XBMC_RTMPDUMP
2189 bool "xbmc options have been renamed"
2190 select BR2_LEGACY
2191 select BR2_PACKAGE_KODI_RTMPDUMP
2192 help
2193 The XBMC media center project was renamed to Kodi entertainment center
2194
2195config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
2196 bool "xbmc options have been renamed"
2197 select BR2_LEGACY
2198 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
2199 help
2200 The XBMC media center project was renamed to Kodi entertainment center
2201
2202config BR2_PACKAGE_XBMC_LIBSMBCLIENT
2203 bool "xbmc options have been renamed"
2204 select BR2_LEGACY
2205 select BR2_PACKAGE_KODI_LIBSMBCLIENT
2206 help
2207 The XBMC media center project was renamed to Kodi entertainment center
2208
2209config BR2_PACKAGE_XBMC_LIBTHEORA
2210 bool "xbmc options have been renamed"
2211 select BR2_LEGACY
2212 select BR2_PACKAGE_KODI_LIBTHEORA
2213 help
2214 The XBMC media center project was renamed to Kodi entertainment center
2215
2216config BR2_PACKAGE_XBMC_LIBUSB
2217 bool "xbmc options have been renamed"
2218 select BR2_LEGACY
2219 select BR2_PACKAGE_KODI_LIBUSB
2220 help
2221 The XBMC media center project was renamed to Kodi entertainment center
2222
2223config BR2_PACKAGE_XBMC_LIBVA
2224 bool "xbmc options have been renamed"
2225 select BR2_LEGACY
2226 select BR2_PACKAGE_KODI_LIBVA
2227 help
2228 The XBMC media center project was renamed to Kodi entertainment center
2229
2230config BR2_PACKAGE_XBMC_WAVPACK
2231 bool "xbmc options have been renamed"
2232 select BR2_LEGACY
2233 select BR2_PACKAGE_KODI_WAVPACK
2234 help
2235 The XBMC media center project was renamed to Kodi entertainment center
2236
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002237config BR2_PREFER_STATIC_LIB
2238 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01002239 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002240 help
2241 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
2242 highlights the fact that the option no longer "prefers"
2243 static libraries, but "enforces" static libraries (i.e
2244 shared libraries are completely unused).
2245
Samuel Martina44b1c12014-12-14 17:24:24 +01002246 Take care of updating the type of libraries you want under the
2247 "Build options" menu.
2248
Bernd Kuhls35784592014-12-23 18:46:27 +01002249###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02002250comment "Legacy options removed in 2014.11"
2251
Peter Korsgaarda52bad82014-11-09 00:15:24 +01002252config BR2_x86_generic
2253 bool "x86 generic variant has been removed"
2254 select BR2_LEGACY
2255 help
2256 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02002257 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01002258
Andreas Larsson40e18f22014-10-30 09:29:36 +01002259config BR2_GCC_VERSION_4_4_X
2260 bool "gcc 4.4.x has been removed"
2261 select BR2_LEGACY
2262 help
2263 The 4.4.x version of gcc has been removed. Use a newer
2264 version instead.
2265
Andreas Larsson43b78e72014-10-30 09:29:35 +01002266config BR2_sparc_sparchfleon
2267 bool "sparchfleon CPU has been removed"
2268 select BR2_LEGACY
2269 help
2270 The sparchfleon CPU was only supported in a patched gcc 4.4
2271 version. Its support has been removed in favor of the leon3
2272 CPU starting from gcc 4.8.x.
2273
2274config BR2_sparc_sparchfleonv8
2275 bool "sparchfleonv8 CPU has been removed"
2276 select BR2_LEGACY
2277 help
2278 The sparchfleonv8 CPU was only supported in a patched gcc
2279 4.4 version. Its support has been removed in favor of the
2280 leon3 CPU starting from gcc 4.8.x.
2281
2282config BR2_sparc_sparcsfleon
2283 bool "sparcsfleon CPU has been removed"
2284 select BR2_LEGACY
2285 help
2286 The sparcsfleon CPU was only supported in a patched gcc 4.4
2287 version. Its support has been removed in favor of the leon3
2288 CPU starting from gcc 4.8.x.
2289
2290config BR2_sparc_sparcsfleonv8
2291 bool "sparcsfleonv8 CPU has been removed"
2292 select BR2_LEGACY
2293 help
2294 The sparcsfleonv8 CPU was only supported in a patched gcc
2295 4.4 version. Its support has been removed in favor of the
2296 leon3 CPU starting from gcc 4.8.x.
2297
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02002298config BR2_PACKAGE_XLIB_LIBPCIACCESS
2299 bool "xlib-libpciaccess option has been renamed"
2300 depends on BR2_PACKAGE_XORG7
2301 select BR2_LEGACY
2302 select BR2_PACKAGE_LIBPCIACCESS
2303 help
2304 libpciaccess neither depends on X11 nor Xlib. Thus the
2305 package has been renamed BR2_PACKAGE_LIBPCIACCESS
2306
Yann E. MORINb581bba2014-09-21 20:38:13 +02002307config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
2308 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002309 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02002310 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
2311 help
2312 The Xceive xc5000 option now also handles older firmwares from
2313 Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
2314 from Cresta, who bought Xceive.
2315
Yann E. MORINdac546e2014-09-21 20:38:12 +02002316config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2317 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002318 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02002319 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2320 help
2321 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2322 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2323 to better account for the fact that a T5 variant exists.
2324
Yann E. MORIN120136e2014-09-21 20:38:09 +02002325config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
2326 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002327 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02002328 help
2329 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
2330 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
2331 select it in:
2332 Target packages -> Hardware handling ->
2333 Firmware -> linux-firmware -> WiFi firmware ->
2334 iwlwifi 3160/726x revision to use (revision 7)
2335
2336config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
2337 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002338 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02002339 help
2340 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
2341 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
2342 select it in:
2343 Target packages -> Hardware handling ->
2344 Firmware -> linux-firmware -> WiFi firmware ->
2345 iwlwifi 3160/726x revision to use (revision 8)
2346
2347###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002348comment "Legacy options removed in 2014.08"
2349
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02002350config BR2_PACKAGE_LIBELF
2351 bool "libelf has been removed"
2352 select BR2_PACKAGE_ELFUTILS
2353 select BR2_LEGACY
2354 help
2355 The libelf package provided an old version of the libelf library
2356 and is deprecated. The libelf library is now provided by the
2357 elfutils package.
2358
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002359config BR2_KERNEL_HEADERS_3_8
2360 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002361 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002362 select BR2_LEGACY
2363 help
2364 Version 3.8.x of the Linux kernel headers have been deprecated
2365 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002366 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002367 automatically selected in your configuration.
2368
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02002369config BR2_PACKAGE_GETTEXT_TOOLS
2370 bool "support for gettext-tools on target has been removed"
2371 select BR2_LEGACY
2372 help
2373 The option to install the gettext utilities on the target
2374 has been removed. This is not necessary as Buildroot is not
2375 designed to provide a full development environment on the
2376 target. gettext tools should be used on the build machine
2377 instead.
2378
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002379config BR2_PACKAGE_PROCPS
2380 bool "procps has been replaced by procps-ng"
2381 select BR2_PACKAGE_PROCPS_NG
2382 select BR2_LEGACY
2383 help
2384 The procps package has been replaced by the equivalent procps-ng.
2385
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02002386config BR2_BINUTILS_VERSION_2_20_1
2387 bool "binutils 2.20.1 has been removed"
2388 select BR2_LEGACY
2389 help
2390 The 2.20.1 version of binutils has been removed. Use a newer
2391 version instead.
2392
2393config BR2_BINUTILS_VERSION_2_21
2394 bool "binutils 2.21 has been removed"
2395 select BR2_LEGACY
2396 help
2397 The 2.21 version of binutils has been removed. Use a newer
2398 version instead.
2399
2400config BR2_BINUTILS_VERSION_2_23_1
2401 bool "binutils 2.23.1 has been removed"
2402 select BR2_LEGACY
2403 help
2404 The 2.23.1 version of binutils has been removed. Use a newer
2405 version instead.
2406
Thomas Petazzoni506b9642014-07-01 20:03:03 +02002407config BR2_UCLIBC_VERSION_0_9_32
2408 bool "uclibc 0.9.32 has been removed"
2409 select BR2_LEGACY
2410 help
2411 The 0.9.32 version of uClibc has been removed. Use a newer
2412 version instead.
2413
Thomas Petazzonid10e0802014-07-01 20:03:06 +02002414config BR2_GCC_VERSION_4_3_X
2415 bool "gcc 4.3.x has been removed"
2416 select BR2_LEGACY
2417 help
2418 The 4.3.x version of gcc has been removed. Use a newer
2419 version instead.
2420
2421config BR2_GCC_VERSION_4_6_X
2422 bool "gcc 4.6.x has been removed"
2423 select BR2_LEGACY
2424 help
2425 The 4.6.x version of gcc has been removed. Use a newer
2426 version instead.
2427
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002428config BR2_GDB_VERSION_7_4
2429 bool "gdb 7.4 has been removed"
2430 select BR2_LEGACY
2431 help
2432 The 7.4 version of gdb has been removed. Use a newer version
2433 instead.
2434
2435config BR2_GDB_VERSION_7_5
2436 bool "gdb 7.5 has been removed"
2437 select BR2_LEGACY
2438 help
2439 The 7.5 version of gdb has been removed. Use a newer version
2440 instead.
2441
Thomas Petazzonib18dca02014-07-01 20:03:09 +02002442config BR2_BUSYBOX_VERSION_1_19_X
2443 bool "busybox version selection has been removed"
2444 select BR2_LEGACY
2445 help
2446 The possibility of selecting the Busybox version has been
2447 removed. Use the latest version provided by the Busybox
2448 package instead.
2449
2450config BR2_BUSYBOX_VERSION_1_20_X
2451 bool "busybox version selection has been removed"
2452 select BR2_LEGACY
2453 help
2454 The possibility of selecting the Busybox version has been
2455 removed. Use the latest version provided by the Busybox
2456 package instead.
2457
2458config BR2_BUSYBOX_VERSION_1_21_X
2459 bool "busybox version selection has been removed"
2460 select BR2_LEGACY
2461 help
2462 The possibility of selecting the Busybox version has been
2463 removed. Use the latest version provided by the Busybox
2464 package instead.
2465
Ezequiel García07ac0452014-07-05 18:07:40 -03002466config BR2_PACKAGE_LIBV4L_DECODE_TM6000
2467 bool "decode_tm6000"
2468 select BR2_PACKAGE_LIBV4L_UTILS
2469 select BR2_LEGACY
2470 help
2471 This libv4l option has been deprecated and replaced by a single
2472 option to build all the libv4l utilities.
2473
2474config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
2475 bool "ir-keytable"
2476 select BR2_PACKAGE_LIBV4L_UTILS
2477 select BR2_LEGACY
2478 help
2479 This libv4l option has been deprecated and replaced by a single
2480 option to build all the libv4l utilities.
2481
2482config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
2483 bool "v4l2-compliance"
2484 select BR2_PACKAGE_LIBV4L_UTILS
2485 select BR2_LEGACY
2486 help
2487 This libv4l option has been deprecated and replaced by a single
2488 option to build all the libv4l utilities.
2489
2490config BR2_PACKAGE_LIBV4L_V4L2_CTL
2491 bool "v4l2-ctl"
2492 select BR2_PACKAGE_LIBV4L_UTILS
2493 select BR2_LEGACY
2494 help
2495 This libv4l option has been deprecated and replaced by a single
2496 option to build all the libv4l utilities.
2497
2498config BR2_PACKAGE_LIBV4L_V4L2_DBG
2499 bool "v4l2-dbg"
2500 select BR2_PACKAGE_LIBV4L_UTILS
2501 select BR2_LEGACY
2502 help
2503 This libv4l option has been deprecated and replaced by a single
2504 option to build all the libv4l utilities.
2505
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002506###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002507comment "Legacy options removed in 2014.05"
2508
Peter Seiderer4990a382014-04-23 00:12:23 +02002509config BR2_PACKAGE_EVTEST_CAPTURE
2510 bool "evtest-capture support removed (dropped since evtest 1.31)"
2511 select BR2_LEGACY
2512 help
2513 Support for evtest-capture has been removed (dropped from
2514 evtest package since version 1.31), use evemu package
2515 instead.
2516
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002517config BR2_KERNEL_HEADERS_3_6
2518 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002519 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002520 select BR2_LEGACY
2521 help
2522 Version 3.6.x of the Linux kernel headers have been deprecated
2523 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002524 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002525 automatically selected in your configuration.
2526
2527config BR2_KERNEL_HEADERS_3_7
2528 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002529 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002530 select BR2_LEGACY
2531 help
2532 Version 3.7.x of the Linux kernel headers have been deprecated
2533 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002534 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002535 automatically selected in your configuration.
2536
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02002537config BR2_PACKAGE_VALA
2538 bool "vala target package has been removed"
2539 select BR2_LEGACY
2540 help
2541 The 'vala' target package has been removed since it has been
2542 deprecated for more than four buildroot releases.
2543 Note: the host vala package still exists.
2544
Yann E. MORINd6a37912014-04-07 21:58:03 +02002545config BR2_TARGET_TZ_ZONELIST
2546 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
2547
2548config BR2_PACKAGE_TZDATA_ZONELIST
2549 string "tzdata: the timezone list option has been renamed"
2550 help
2551 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
2552 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
2553 menu. You'll need to select BR2_TARGET_TZ_INFO.
2554
2555config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
2556 bool
2557 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
2558 select BR2_LEGACY
2559
Yann E. MORINc97aeb72014-04-05 17:21:43 +02002560config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
2561 bool "Lua command-line editing none has been renamed"
2562 select BR2_LEGACY
2563 help
2564 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
2565 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
2566 it in the corresponding choice.
2567
2568config BR2_PACKAGE_LUA_INTERPRETER_READLINE
2569 bool "Lua command-line editing using readline has been renamed"
2570 select BR2_LEGACY
2571 help
2572 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
2573 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
2574 it in the corresponding choice.
2575
2576config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
2577 bool "Lua command-line editing using linenoise has been renamed"
2578 select BR2_LEGACY
2579 help
2580 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
2581 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
2582 it in the corresponding choice.
2583
Yann E. MORIN365ae612014-03-28 01:00:24 +01002584config BR2_PACKAGE_DVB_APPS_UTILS
2585 bool "dvb-apps utilities now built by default"
2586 select BR2_LEGACY
2587 help
2588 The dvb-apps utilities are now always built when the dvb-apps
2589 package is selected.
2590
Yann E. MORIN971e3312014-03-01 15:52:56 +01002591config BR2_KERNEL_HEADERS_SNAP
2592 bool "Local Linux snapshot support removed"
2593 select BR2_LEGACY
2594 help
2595 Support for using a custom snapshot to install the Linux
2596 kernel headers has been removed.
2597
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002598config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
2599 bool "/dev management by udev removed"
2600 select BR2_LEGACY
2601 help
2602 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002603 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002604
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002605 Therefore, if you are not using 'systemd' as init system, you
2606 must choose 'Dynamic using eudev' in the '/dev management'
2607 menu to get the same behaviour as in your old configuration.
2608
2609 If you are using 'systemd', its internal implementation of
2610 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002611
2612 You must also check the packages depending on 'udev' are still
2613 selected.
2614
2615config BR2_PACKAGE_UDEV
2616 bool "udev is now a virtual package"
2617 select BR2_LEGACY
2618 select BR2_PACKAGE_HAS_UDEV
2619 help
2620 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002621 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002622
2623 Your old configuration refers to packages depending on 'udev',
2624 either for build or at runtime.
2625
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002626 Check that a 'udev' provider is selected. If you are not using
2627 'systemd' as init system, 'eudev' should be selected, which is
2628 the case if '/dev management' is set to 'Dynamic using eudev'.
2629
2630 If you are using 'systemd', its internal implementation of 'udev'
2631 is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002632
2633config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002634 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002635 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002636 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
2637 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002638 help
2639 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002640 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002641
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002642 If you are not using 'systemd' as init system, udev rules
2643 generation will be handled by 'eudev'. Check that
2644 '/dev management' is set to 'Dynamic using eudev' to get
2645 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002646
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002647 If you are using 'systemd', it internal implementation of 'udev'
2648 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002649
2650config BR2_PACKAGE_UDEV_ALL_EXTRAS
2651 bool "udev extras removed"
2652 select BR2_LEGACY
2653 help
2654 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002655 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002656
2657 The option to enable the extra features of 'udev' (gudev, ...)
2658 has been removed. These features are automatically enabled in
2659 the 'udev' providers if the dependencies are selected. For
2660 example, selecting 'libglib2' will trigger the build of gudev.
2661
Bernd Kuhls5562be12014-03-01 16:41:10 +01002662config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
2663 bool "xlib-libpthread-stubs option has been renamed"
2664 depends on BR2_PACKAGE_XORG7
2665 select BR2_LEGACY
2666 select BR2_PACKAGE_LIBPTHREAD_STUBS
2667 help
2668 The pthread stubs neither depend on X11 nor Xlib. Thus the
2669 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
2670
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002671###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01002672comment "Legacy options removed in 2014.02"
2673
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002674config BR2_sh2
2675 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002676 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002677 help
2678 Due to an inexistent user base and generally poor Linux
2679 support, the support for the SH2 architecture was removed.
2680
2681config BR2_sh3
2682 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002683 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002684 help
2685 Due to an inexistent user base and generally poor Linux
2686 support, the support for the SH3 architecture was removed.
2687
2688config BR2_sh3eb
2689 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002690 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002691 help
2692 Due to an inexistent user base and generally poor Linux
2693 support, the support for the SH3eb architecture was removed.
2694
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002695config BR2_KERNEL_HEADERS_3_1
2696 bool "kernel headers version 3.1.x are no longer supported"
2697 select BR2_KERNEL_HEADERS_3_2
2698 select BR2_LEGACY
2699 help
2700 Version 3.1.x of the Linux kernel headers have been deprecated
2701 for more than four buildroot releases and are now removed.
2702 As an alternative, version 3.2.x of the headers have been
2703 automatically selected in your configuration.
2704
2705config BR2_KERNEL_HEADERS_3_3
2706 bool "kernel headers version 3.3.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002707 select BR2_KERNEL_HEADERS_3_2
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002708 select BR2_LEGACY
2709 help
2710 Version 3.3.x of the Linux kernel headers have been deprecated
2711 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002712 As an alternative, version 3.2.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002713 automatically selected in your configuration.
2714
2715config BR2_KERNEL_HEADERS_3_5
2716 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002717 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002718 select BR2_LEGACY
2719 help
2720 Version 3.5.x of the Linux kernel headers have been deprecated
2721 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002722 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002723 automatically selected in your configuration.
2724
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002725config BR2_GDB_VERSION_7_2
2726 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002727 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002728 select BR2_LEGACY
2729 help
2730 Version 7.2.x of gdb has been deprecated for more than four
2731 buildroot releases and is now removed. As an alternative, gdb
2732 7.5.x has been automatically selected in your configuration.
2733
2734config BR2_GDB_VERSION_7_3
2735 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002736 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002737 select BR2_LEGACY
2738 help
2739 Version 7.3.x of gdb has been deprecated for more than four
2740 buildroot releases and is now removed. As an alternative, gdb
2741 7.5.x has been automatically selected in your configuration.
2742
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01002743config BR2_PACKAGE_CCACHE
2744 bool "ccache target package has been removed"
2745 select BR2_LEGACY
2746 help
2747 The 'ccache' target package has been removed since it has been
2748 deprecated for more than four buildroot releases.
2749 Note: using ccache for speeding up builds is still supported.
2750
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01002751config BR2_HAVE_DOCUMENTATION
2752 bool "support for documentation on target has been removed"
2753 select BR2_LEGACY
2754 help
2755 Support for documentation on target has been removed since it has
2756 been deprecated for more than four buildroot releases.
2757
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01002758config BR2_PACKAGE_AUTOMAKE
2759 bool "automake target package has been removed"
2760 select BR2_LEGACY
2761 help
2762 The 'automake' target package has been removed since it has been
2763 deprecated for more than four buildroot releases.
2764 Note: the host automake still exists.
2765
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01002766config BR2_PACKAGE_AUTOCONF
2767 bool "autoconf target package has been removed"
2768 select BR2_LEGACY
2769 help
2770 The 'autoconf' target package has been removed since it has been
2771 deprecated for more than four buildroot releases.
2772 Note: the host autoconf still exists.
2773
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01002774config BR2_PACKAGE_XSTROKE
2775 bool "xstroke has been removed"
2776 select BR2_LEGACY
2777 help
2778 The 'xstroke' package has been removed since it has been
2779 deprecated for more than four buildroot releases.
2780
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01002781config BR2_PACKAGE_LZMA
2782 bool "lzma target package has been removed"
2783 select BR2_LEGACY
2784 help
2785 The 'lzma' target package has been removed since it has been
2786 deprecated for more than four buildroot releases.
2787 Note: generating lzma-compressed rootfs images is still supported.
2788
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01002789config BR2_PACKAGE_TTCP
2790 bool "ttcp has been removed"
2791 select BR2_LEGACY
2792 help
2793 The 'ttcp' package has been removed since it has been
2794 deprecated for more than four buildroot releases.
2795
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002796config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002797 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002798 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002799 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002800 help
2801 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002802 to 'libllcp'. We have added a new package for 'libllcp' and bumped
2803 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002804
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00002805config BR2_PACKAGE_MYSQL_CLIENT
2806 bool "MySQL client renamed to MySQL"
2807 select BR2_LEGACY
2808 select BR2_PACKAGE_MYSQL
2809 help
2810 The option has been renamed BR2_PACKAGE_MYSQL
2811
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01002812config BR2_PACKAGE_SQUASHFS3
2813 bool "squashfs3 has been removed"
2814 select BR2_LEGACY
2815 select BR2_PACKAGE_SQUASHFS
2816 help
2817 The 'squashfs3' package has been removed since it has been
2818 deprecated for more than four buildroot releases. Package
2819 'squashfs' (4) has been selected automatically as replacement.
2820
2821config BR2_TARGET_ROOTFS_SQUASHFS3
2822 bool "squashfs3 rootfs support has been removed"
2823 select BR2_LEGACY
2824 help
2825 Together with the removal of the squashfs3 package, support
2826 for squashfs3 root filesystems has been removed too. Squashfs
2827 root filesystems will automatically use squashfs4 now.
2828
Arnaud Aujon560fe852013-12-15 20:23:12 +01002829config BR2_PACKAGE_NETKITBASE
2830 bool "netkitbase has been removed"
2831 select BR2_LEGACY
2832 help
2833 The 'netkitbase' package has been removed since it has been
2834 deprecated since 2012.11. This package provided 'inetd'
2835 which is replaced by 'xinet' and 'ping' which is replaced by
2836 'busybox' or 'fping'.
2837
2838config BR2_PACKAGE_NETKITTELNET
2839 bool "netkittelnet has been removed"
2840 select BR2_LEGACY
2841 help
2842 The 'netkittelnet' package has been removed since it has
2843 been deprecated since 2012.11. 'busybox' provides a telnet
2844 client and should be used instead.
2845
Francois Perrad63058f82014-01-11 16:42:09 +01002846config BR2_PACKAGE_LUASQL
2847 bool "luasql has been replaced by luasql-sqlite3"
2848 select BR2_PACKAGE_LUASQL_SQLITE3
2849 select BR2_LEGACY
2850 help
2851 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2852
Francois Perrada6c53472014-01-11 16:42:08 +01002853config BR2_PACKAGE_LUACJSON
2854 bool "luacjson has been replaced by lua-cjson"
2855 select BR2_PACKAGE_LUA_CJSON
2856 select BR2_LEGACY
2857 help
2858 The option has been renamed BR2_PACKAGE_LUA_CJSON.
2859
Arnaud Aujon560fe852013-12-15 20:23:12 +01002860###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002861comment "Legacy options removed in 2013.11"
2862
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01002863config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2864 bool "lvm2's 'dmsetup only' option removed"
2865 select BR2_LEGACY
2866 help
2867 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2868 led to problems with other packages that need the full lvm2
2869 suite. Therefore, the option has been replaced with the positive
2870 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2871
2872# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2873# in order to automatically propagate old configs
2874
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01002875config BR2_PACKAGE_QT_JAVASCRIPTCORE
2876 bool "qt javascriptcore option removed"
2877 select BR2_LEGACY
2878 help
2879 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2880 force the activation or disabling of the JIT compiler in the
2881 Qt Javascript interpreter. However, the JIT compiler is not
2882 available for all architectures, so forcing its activation
2883 does not always work. Moreover, Qt knows by itself for which
2884 architectures JIT support is possible, and will
2885 automatically enable it if possible.
2886
2887 Therefore, this option was in fact useless, and causing
2888 build problems when enabled on architectures for which the
2889 JIT support was not available. It has been removed, and
2890 there is no replacement: Qt will enable JIT at compile time
2891 when possible.
2892
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002893config BR2_PACKAGE_MODULE_INIT_TOOLS
2894 bool "module-init-tools replaced by kmod"
2895 select BR2_PACKAGE_KMOD
2896 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01002897 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002898 help
2899 The 'module-init-tools' package has been removed, since it
2900 has been depracated upstream and replaced by 'kmod'.
2901
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02002902config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2903 string "u-boot: the git repository URL option has been renamed"
2904 help
2905 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2906 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2907
2908config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2909 bool
2910 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2911 select BR2_LEGACY
2912
2913# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2914# boot/uboot/Config.in
2915
2916config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2917 string "u-boot: the git repository version option has been renamed"
2918 help
2919 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
2920 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
2921
2922config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
2923 bool
2924 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
2925 select BR2_LEGACY
2926
2927# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
2928# boot/uboot/Config.in
2929
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02002930config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
2931 string "linux: the git repository URL option has been renamed"
2932 help
2933 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
2934 been renamed to
2935 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
2936
2937config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
2938 bool
2939 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
2940 select BR2_LEGACY
2941
2942# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
2943# linux/Config.in
2944
2945config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
2946 string "linux: the git repository version option has been renamed"
2947 help
2948 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
2949 been renamed to
2950 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
2951
2952config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
2953 bool
2954 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
2955 select BR2_LEGACY
2956
2957# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
2958# linux/Config.in
2959
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002960###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002961comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002962
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02002963config BR2_ARM_OABI
2964 bool "ARM OABI support has been removed"
2965 select BR2_LEGACY
2966 help
2967 The support for the ARM OABI was deprecated since a while,
2968 and has been removed completely from Buildroot. It is also
2969 deprecated in upstream gcc, since gcc 4.7. People should
2970 switch to EABI instead, which should not be a problem as
2971 long as you don't have pre-built OABI binaries in your
2972 system that you can't recompile.
2973
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002974config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
2975 bool "dosfstools dosfsck renamed to fsck.fat"
2976 select BR2_LEGACY
2977 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
2978 help
2979 dosfsck was renamed upstream to fsck.fat for consistency.
2980
2981config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
2982 bool "dosfstools dosfslabel renamed to fatlabel"
2983 select BR2_LEGACY
2984 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
2985 help
2986 doslabel was renamed upstream to fatlabel for consistency.
2987
2988config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
2989 bool "dosfstools mkdosfs renamed to mkfs.fat"
2990 select BR2_LEGACY
2991 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
2992 help
2993 mkdosfs was renamed upstream to mkfs.fat for consistency.
2994
Thomas Petazzonie21db002013-06-30 21:28:57 +02002995config BR2_ELF2FLT
2996 bool "the elf2flt option has been renamed"
2997 select BR2_LEGACY
2998 help
2999 The BR2_ELF2FLT option has been renamed to
3000 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
3001 the package infrastructure.
3002
Thomas Petazzonid8060052013-07-16 10:03:17 +02003003config BR2_VFP_FLOAT
3004 bool "the ARM VFP floating point option has been renamed"
3005 select BR2_LEGACY
3006 help
3007 Due to a major refactoring of the floating-point handling of
3008 the ARM architecture support, the BR2_VFP_FLOAT option has
3009 been replaced with a choice of options that allows to select
3010 between various VFP versions/capabilities.
3011
Samuel Martinba8f82b2013-08-30 06:08:59 +02003012config BR2_PACKAGE_GCC_TARGET
3013 bool "gcc on the target filesystem has been removed"
3014 select BR2_LEGACY
3015 help
3016 The support for gcc in the target filesystem was deprecated
3017 since a while, and has been removed completely from Buildroot.
3018 See Buildroot's documentation for more explanations.
3019
3020config BR2_HAVE_DEVFILES
3021 bool "development files in target filesystem has been removed"
3022 select BR2_LEGACY
3023 help
3024 The installation of the development files in the target
3025 filesystem was deprecated since a while, and has been removed
3026 completely from Buildroot.
3027 See Buildroot's documentation for more explanations.
3028
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003029###############################################################################
3030comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +00003031
3032config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
3033 bool "Realtek 8192 replaced by Realtek 81xx"
3034 select BR2_LEGACY
3035 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
3036 help
3037 Now covers the whole Realtek 81xx familly: 8188/8192.
3038
3039config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
3040 bool "Realtek 8712 replaced by Realtek 87xx"
3041 select BR2_LEGACY
3042 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
3043 help
3044 Now covers the whole Realtek 87xx familly: 8712/8723.
3045
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003046###############################################################################
3047comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00003048
Gustavo Zacarias94744212013-04-04 07:29:45 +00003049config BR2_sa110
3050 bool "sa110 ARM target switched to strongarm"
3051 select BR2_LEGACY
3052 select BR2_strongarm
3053 help
3054 The SA110 is the same as a generic StrongARM, it just differs
3055 in speed, peripherals and cache.
3056
3057config BR2_sa1100
3058 bool "sa1100 ARM target switched to strongarm"
3059 select BR2_LEGACY
3060 select BR2_strongarm
3061 help
3062 The SA1100 is the same as a generic StrongARM, it just differs
3063 in speed, peripherals and cache.
3064
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00003065config BR2_PACKAGE_GDISK
3066 bool "gdisk has been replaced by gptfdisk"
3067 select BR2_LEGACY
3068 select BR2_PACKAGE_GPTFDISK
3069 help
3070 The option has been renamed BR2_PACKAGE_GPTFDISK.
3071
3072config BR2_PACKAGE_GDISK_GDISK
3073 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
3074 select BR2_LEGACY
3075 select BR2_PACKAGE_GPTFDISK
3076 select BR2_PACKAGE_GPTFDISK_GDISK
3077 help
3078 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
3079
3080config BR2_PACKAGE_GDISK_SGDISK
3081 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
3082 select BR2_LEGACY
3083 select BR2_PACKAGE_GPTFDISK
3084 select BR2_PACKAGE_GPTFDISK_SGDISK
3085 help
3086 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00003087
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +00003088config BR2_PACKAGE_GDB_HOST
3089 bool "gdb for the host option has been renamed"
3090 select BR2_PACKAGE_HOST_GDB
3091 select BR2_LEGACY
3092 help
3093 Due to the conversion of gdb to the package infrastructure,
3094 the BR2_PACKAGE_GDB_HOST option has been renamed
3095 BR2_PACKAGE_HOST_GDB.
3096
Carsten Schoenert76de0f82013-03-10 08:32:46 +00003097config BR2_PACKAGE_DIRECTB_DITHER_RGB16
3098 bool "DirectFB RGB16 dithering option has been renamed"
3099 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
3100 select BR2_LEGACY
3101 help
3102 The option has been renamed
3103 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
3104
3105config BR2_PACKAGE_DIRECTB_TESTS
3106 bool "DirectFB Tests option has been renamed"
3107 select BR2_PACKAGE_DIRECTFB_TESTS
3108 select BR2_LEGACY
3109 help
3110 The option has been renamed
3111 BR2_PACKAGE_DIRECTFB_TESTS.
3112
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003113###############################################################################
3114comment "Legacy options removed in 2012.11"
3115
Thomas Petazzoni12ccc432013-02-07 11:58:45 +00003116config BR2_PACKAGE_CUSTOMIZE
3117 bool "customize package has been removed"
3118 select BR2_LEGACY
3119 help
3120 The 'customize' special package has been removed. Instead,
3121 we recommend to create either your own packages, or use a
3122 post-build script to customize your root filesystem. See
3123 Buildroot's documentation for more details.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00003124
3125config BR2_PACKAGE_XSERVER_xorg
3126 bool "X.org modular server"
3127 select BR2_LEGACY
3128 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
3129 help
3130 The option has been renamed
3131 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
3132
3133config BR2_PACKAGE_XSERVER_tinyx
3134 bool "KDrive / TinyX server"
3135 select BR2_LEGACY
3136 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
3137 help
3138 The option has been renamed
3139 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
3140
3141config BR2_PACKAGE_PTHREAD_STUBS
3142 bool "pthread-stubs option has been renamed"
3143 select BR2_LEGACY
Bernd Kuhls5562be12014-03-01 16:41:10 +01003144 select BR2_PACKAGE_LIBPTHREAD_STUBS
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00003145 help
3146 For consistency reason, the pthread-stubs package has been
Bernd Kuhls5562be12014-03-01 16:41:10 +01003147 renamed to libpthread-stubs.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00003148
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003149###############################################################################
3150comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00003151
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +00003152config BR2_PACKAGE_GETTEXT_STATIC
3153 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
3154 select BR2_LEGACY
3155 help
3156 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
3157
3158
3159config BR2_PACKAGE_LIBINTL
3160 bool "libintl"
3161 select BR2_LEGACY
3162 select BR2_PACKAGE_GETTEXT
3163 help
3164 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
3165 only installs the library, not the executables.
3166
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +00003167config BR2_PACKAGE_INPUT_TOOLS_EVTEST
3168 bool "input-tools evtest is now a separate package evtest"
3169 select BR2_LEGACY
3170 select BR2_PACKAGE_EVTEST
3171 help
3172 The evtest program from input-tools is now a separate package.
3173
Sonic Zhang57133822013-05-03 00:39:34 +00003174config BR2_BFIN_FDPIC
3175 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
3176 select BR2_BINFMT_FDPIC
3177 select BR2_LEGACY
3178
3179config BR2_BFIN_FLAT
3180 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
3181 select BR2_BINFMT_FLAT
3182 select BR2_LEGACY
3183
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00003184endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02003185
3186endif # !SKIP_LEGACY