blob: c9300831febce4fc450a0e9c0b6aab6afcb30318 [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
Carlos Santosd4382002017-10-31 08:47:51 -0200148config BR2_PACKAGE_UTIL_LINUX_RESET
149 bool "util-linux reset option removed"
150 select BR2_LEGACY
151 help
152 The util-linux package no longer offers a "reset" command. Use
153 either the reset command provided by BusyBox or select ncurses
154 programs, which will install a symlink from "tset" to reset.
155
Adam Duskett9d6da7a2017-10-17 18:32:18 -0400156config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
157 bool "policycoreutils audit2allow option removed"
158 select BR2_LEGACY
159 select BR2_PACKAGE_SELINUX_PYTHON
160 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
161 help
162 The policycoreutils package no longer offers audit2allow
163 as a option. This package has been moved into the
164 selinux-python package by the SELinux maintainers.
165
166config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
167 bool "policycoreutils restorecond option removed"
168 select BR2_LEGACY
169 select BR2_PACKAGE_RESTORECOND
170 help
171 The policycoreutils package no longer offers restorecond
172 as a option. This package has been moved into a seperate
173 package maintained by the SELinux maintainers.
174
175config BR2_PACKAGE_SEPOLGEN
176 bool "sepolgen package has been removed"
177 select BR2_LEGACY
178 select BR2_PACKAGE_SELINUX_PYTHON
179 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
180 help
181 Sepolgen is no longer a individual package, but instead has
182 been moved into the selinux-python package by the SELinux
183 maintainers.
184
Bernd Kuhls49a9fb02017-09-16 17:15:35 +0200185config BR2_PACKAGE_OPENOBEX_BLUEZ
186 bool "openobex bluez option removed"
187 select BR2_LEGACY
188 select BR2_PACKAGE_BLUEZ_UTILS
189 help
190 The OpenOBEX package no longer offers an option to enable or
191 disable BlueZ support. Instead, BlueZ support is always
192 included when the bluez5_utils or bluez_utils package is
193 selected.
194
195config BR2_PACKAGE_OPENOBEX_LIBUSB
196 bool "openobex libusb option removed"
197 select BR2_LEGACY
198 select BR2_PACKAGE_LIBUSB
199 help
200 The OpenOBEX package no longer offers an option to enable or
201 disable libusb support. Instead, USB support is always
202 included when the libusb package is selected.
203
204config BR2_PACKAGE_OPENOBEX_APPS
205 bool "openobex apps option removed"
206 select BR2_LEGACY
207 help
208 The OpenOBEX package no longer offers an option to enable or
209 disable apps support.
210
211config BR2_PACKAGE_OPENOBEX_SYSLOG
212 bool "openobex syslog option removed"
213 select BR2_LEGACY
214 help
215 The OpenOBEX package no longer offers an option to enable or
216 disable syslog support.
217
218config BR2_PACKAGE_OPENOBEX_DUMP
219 bool "openobex dump option removed"
220 select BR2_LEGACY
221 help
222 The OpenOBEX package no longer offers an option to enable or
223 disable dump support.
224
Alexander Mukhinfca70382017-09-10 13:21:34 +0300225config BR2_PACKAGE_AICCU
226 bool "aiccu utility removed"
227 select BR2_LEGACY
228 help
229 As the SixXS project has ceased its operation on 2017-06-06,
230 the AICCU utility has no use anymore and has been removed.
231
232 https://www.sixxs.net/sunset/
233
Carlos Santosf52af612017-09-01 21:41:38 -0300234config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
235 bool "util-linux login utilities option removed"
236 select BR2_LEGACY
237 select BR2_PACKAGE_UTIL_LINUX_LAST
238 select BR2_PACKAGE_UTIL_LINUX_LOGIN
239 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
240 select BR2_PACKAGE_UTIL_LINUX_SU
241 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
242 help
243 Login utilities (last, login, runuser, su, sulogin) now have
244 their own configuration options in the util-linux menu.
245
246###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +0200247comment "Legacy options removed in 2017.08"
248
Yann E. MORIN144dc9c2017-08-11 18:05:08 +0200249config BR2_TARGET_GRUB
250 bool "grub (aka grub-legacy) has been removed"
251 select BR2_LEGACY
252 help
253 grub-legacy is no longer maintained, and no longer builds with
254 recent binutils versions.
255
256 Use grub2 or syslinux instead.
257
Bin Meng20db0982017-08-30 08:55:25 -0700258config BR2_PACKAGE_SIMICSFS
259 bool "simicsfs support removed"
260 select BR2_LEGACY
261 help
262 Support for simicsfs kernel driver that provides access to a
263 host computer's local filesystem when the target is
264 executing within a SIMICS simulation has been removed.
265
266 Simics is now moving away from the simicsfs kernel module,
267 as the kernel module has required too much maintenance
268 work. Users should move to the user mode Simics agent
269 instead.
270
Thomas Petazzoni0b5dc312017-07-29 15:09:06 +0200271config BR2_BINUTILS_VERSION_2_26_X
272 bool "binutils version 2.26 support removed"
273 select BR2_LEGACY
274 help
275 Support for binutils version 2.26 has been removed. The
276 current default version (2.28 or later) has been selected
277 instead.
278
Yann E. MORINb3b60702017-07-09 05:21:56 -0700279config BR2_XTENSA_OVERLAY_DIR
280 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
Yann E. MORIN15a96d12017-07-09 05:21:55 -0700281 help
Yann E. MORINb3b60702017-07-09 05:21:56 -0700282 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
283 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
284 path to the overlay file, not to the directory containing
285 it.
286
287config BR2_XTENSA_OVERLAY_DIR_WRAP
288 bool
289 default y if BR2_XTENSA_OVERLAY_DIR != ""
290 select BR2_LEGACY
291
292config BR2_XTENSA_CUSTOM_NAME
293 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
294 help
295 The BR2_XTENSA_CUSTOM_NAME option has been removed.
Yann E. MORIN15a96d12017-07-09 05:21:55 -0700296
297config BR2_XTENSA_CUSTOM_NAME_WRAP
298 bool
299 default y if BR2_XTENSA_CUSTOM_NAME != ""
300 select BR2_LEGACY
301
Sébastien Szymanskif47fc952017-07-04 16:47:29 +0200302config BR2_PACKAGE_HOST_MKE2IMG
303 bool "host mke2img has been removed"
304 select BR2_LEGACY
305 help
306 We now call mkfs directly to generate ext2/3/4 filesystem
307 image, so mke2img is no longer necessary.
308
Samuel Martinbee9e882017-07-09 07:00:38 +0200309config BR2_TARGET_ROOTFS_EXT2_BLOCKS
310 int "exact size in blocks has been removed"
311 default 0
312 help
313 This option has been removed in favor of
314 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
315 to the value you had before. Set to 0 here to remove the
316 warning.
317
318config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
319 bool
320 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
321 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
322 select BR2_LEGACY
323
324# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
325
Samuel Martin235b6f12017-07-04 16:47:25 +0200326config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
327 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
328 default 0
329 help
330 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
331 images. It now automatically selects the number of inodes
332 based on the image size. The extra number of inodes can no
333 longer be provided; instead, provide the total number of
334 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
335
336config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
337 bool
338 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
339 select BR2_LEGACY
340
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100341config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
342 bool "cdxaparse removed"
343 select BR2_LEGACY
344
345config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
346 bool "dataurisrc moved to gstreamer1"
347 select BR2_LEGACY
348 help
349 Dataurisrc has moved to gstreamer core and is always built.
350
351config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
352 bool "dccp removed"
353 select BR2_LEGACY
354
355config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
356 bool "hdvparse removed"
357 select BR2_LEGACY
358
359config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
360 bool "mve removed"
361 select BR2_LEGACY
362
363config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
364 bool "nuvdemux removed"
365 select BR2_LEGACY
366
367config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
368 bool "patchdetect removed"
369 select BR2_LEGACY
370
371config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
372 bool "sdi removed"
373 select BR2_LEGACY
374
375config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
376 bool "tta removed"
377 select BR2_LEGACY
378
379config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
380 bool "videomeasure removed"
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +0100381 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100382 select BR2_LEGACY
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +0100383 help
384 videomeasure plugin has been removed and has been replaced by
385 iqa, which has automatically been enabled.
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100386
387config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
388 bool "apexsink removed"
389 select BR2_LEGACY
390
391config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
392 bool "sdl removed"
393 select BR2_LEGACY
394
Vicente Olivert Rierab006fe12017-05-12 11:18:05 +0100395config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
396 bool "mad (*.mp3 audio) removed"
397 select BR2_LEGACY
398
Thomas Petazzoni4c06d242017-07-04 10:11:54 +0200399config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
400 bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
401 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
402 select BR2_LEGACY
403 help
404 The WebRTC plugin in GStreamer 1.x has always been named
405 webrtcdsp, but was wrongly introduced in Buildroot under the
406 name webrtc. Therefore, we have renamed the option to match
407 the actual name of the GStreamer plugin.
408
Yann E. MORIN0d643fd2017-07-01 14:51:21 +0200409config BR2_STRIP_none
410 bool "Strip command 'none' has been removed"
411 select BR2_LEGACY
412 help
413 The strip command choice has been changed into a single
414 boolean option. Please check that the new setting is
415 correct (in the "Build options" sub-menu)
416
Bernd Kuhlsdd4d3c12017-06-11 14:48:51 +0200417config BR2_PACKAGE_BEECRYPT_CPP
418 bool "C++ support removed in beecrypt"
419 select BR2_LEGACY
420 help
421 Support for C++ depends on icu. The beecrypt package is
422 incompatible with icu 59+.
423
Peter Korsgaard622ff3d2017-06-22 00:07:42 +0200424config BR2_PACKAGE_SPICE_CLIENT
425 bool "spice client support removed"
426 select BR2_LEGACY
427 help
428 Spice client support has been removed upstream. The
429 functionality now lives in the spice-gtk widget and
430 virt-viewer.
431
432config BR2_PACKAGE_SPICE_GUI
433 bool "spice gui support removed"
434 select BR2_LEGACY
435 help
436 Spice gui support has been removed upstream. The
437 functionality now lives in the spice-gtk widget and
438 virt-viewer.
439
Peter Korsgaard6f2c0222017-06-22 00:07:41 +0200440config BR2_PACKAGE_SPICE_TUNNEL
441 bool "spice network redirection removed"
442 select BR2_LEGACY
443 help
444 Spice network redirection, aka tunnelling has been removed
445 upstream.
446
Koen Martens438b2d12017-06-20 20:54:49 +0200447config BR2_PACKAGE_INPUT_TOOLS
448 bool "input-tools removed"
449 select BR2_LEGACY
450 select BR2_PACKAGE_LINUXCONSOLETOOLS
451 help
452 input-tools has been removed, it is replaced by
453 linuxconsoletools, which has automatically been enabled.
454
455config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
456 bool "inputattach moved to linuxconsoletools"
457 select BR2_LEGACY
458 select BR2_PACKAGE_LINUXCONSOLETOOLS
459 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
460 help
461 input-tools has been removed, inputattach is now part
462 of linuxconsoletools, which has automatically been
463 enabled.
464
465config BR2_PACKAGE_INPUT_TOOLS_JSCAL
466 bool "jscal moved to linuxconsoletools"
467 select BR2_LEGACY
468 select BR2_PACKAGE_LINUXCONSOLETOOLS
469 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
470 help
471 input-tools has been removed, jscal is now part
472 of linuxconsoletools, which has automatically been
473 enabled.
474
475config BR2_PACKAGE_INPUT_TOOLS_JSTEST
476 bool "jstest moved to linuxconsoletools"
477 select BR2_LEGACY
478 select BR2_PACKAGE_LINUXCONSOLETOOLS
479 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
480 help
481 input-tools has been removed, jstest is now part
482 of linuxconsoletools, which has automatically been
483 enabled.
484
Baruch Siach6510a822017-06-16 06:32:48 +0300485config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
486 bool "SH Sourcery toolchain has been removed"
487 select BR2_LEGACY
488 help
489 The Sourcery CodeBench toolchain for the sh architecture has
490 been removed, since it uses glibc older than 2.17 that requires
491 -lrt to link executables using clock_* system calls. This makes
492 this toolchain difficult to maintain over time.
493
Baruch Siach06cac642017-06-16 06:32:47 +0300494config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
495 bool "x86 Sourcery toolchain has been removed"
496 select BR2_LEGACY
497 help
498 The Sourcery CodeBench toolchain for the x86 architecture has
499 been removed, since it uses glibc older than 2.17 that requires
500 -lrt to link executables using clock_* system calls. This makes
501 this toolchain difficult to maintain over time.
502
Romain Naourf6695212017-05-23 22:24:40 +0200503config BR2_GCC_VERSION_4_8_X
504 bool "gcc 4.8.x support removed"
505 select BR2_LEGACY
506 help
507 Support for gcc version 4.8.x has been removed. The current
508 default version (5.x or later) has been selected instead.
509
510###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300511comment "Legacy options removed in 2017.05"
512
Romain Naour95426af2017-02-21 22:43:16 +0100513config BR2_PACKAGE_SUNXI_MALI_R2P4
514 bool "sunxi-mali r2p4 removed"
515 select BR2_LEGACY
516 help
517 sunxi-mali libMali for r2p4 Mali kernel module has been
518 removed since the libump package only provides libUMP.so.3.
519 libMali for r2p4 Mali kernel module requires libUMP.so.2.
520
Martin Barkd999a7f2017-05-06 14:19:13 +0100521config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
522 bool "CoffeeScript option has been removed"
523 select BR2_LEGACY
524 help
525 The option to enable NodeJS CoffeeScript has been removed.
526 To continue using it, add "coffee-script" to
527 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
528
Martin Bark096f8b12017-05-06 14:19:12 +0100529config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
530 bool "Express web application framework option has been removed"
531 select BR2_LEGACY
532 help
533 The option to enable the NodeJS Express web application
534 framework has been removed. To continue using it, add
535 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
536
Baruch Siach0364d442017-05-01 15:59:41 +0300537config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
538 bool "bluez5_utils gatttool install option removed"
539 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
540 help
541 The option to install gatttool specifically has been removed.
542 Since version 5.44 gatttool is in the list of deprecated
543 tools. The option to build and install deprecated tools has
544 been automatically enabled.
545
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +0000546config BR2_PACKAGE_OPENOCD_FT2XXX
547 bool "openocd ft2232 support has been removed"
548 select BR2_PACKAGE_OPENOCD_FTDI
549 select BR2_LEGACY
550 help
551 FT2232 support in OpenOCD has been removed, it's replaced by
552 FDTI support, which has automatically been enabled.
553
Bernd Kuhls24a07d52017-04-29 10:37:28 +0200554config BR2_PACKAGE_KODI_RTMPDUMP
555 bool "kodi rtmp has been removed"
556 select BR2_LEGACY
Bernd Kuhlsc8942672017-07-16 16:35:17 +0200557 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
Bernd Kuhls24a07d52017-04-29 10:37:28 +0200558 help
559 Internal rtmp support was removed from Kodi.
560
Bernd Kuhlsd3936902017-04-29 10:37:21 +0200561config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
562 bool "kodi-visualisation-fountain has been removed"
563 select BR2_LEGACY
564 help
565 According to upstream 'the visualization is not currently
566 in a working shape.'
567
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +0200568config BR2_PACKAGE_PORTMAP
569 bool "portmap has been removed"
570 select BR2_LEGACY
571 select BR2_PACKAGE_RPCBIND
572 help
573 The portmap upstream tarball is removed, no releases since
574 ten years and latest change in upstream git in 2014.
575 You should better use rpcbind as a RPC portmapper.
576
Thomas Petazzoni58472912017-04-03 22:28:21 +0200577config BR2_BINUTILS_VERSION_2_25_X
578 bool "binutils version 2.25 support removed"
579 select BR2_LEGACY
580 help
581 Support for binutils version 2.25 has been removed. The
582 current default version (2.27 or later) has been selected
583 instead.
584
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +0200585config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
586 bool "uclibc RPC support has been removed"
587 select BR2_LEGACY
588 help
589 uClibc-ng removed internal RPC implementation in 1.0.23. You
590 should use libtirpc instead.
591
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +0100592config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
593 int "extra size in blocks has been removed"
594 default 0
595 help
596 Since the support for auto calculation of the filesystem size has been
597 removed, this option is now useless and must be 0.
598 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS matchs
599 your needs.
600
601config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
602 bool
603 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
604 select BR2_LEGACY
605
Vicente Olivert Riera815f7132017-03-22 11:39:13 +0000606config BR2_PACKAGE_SYSTEMD_KDBUS
607 bool "systemd-kdbus has been removed"
608 select BR2_LEGACY
609 help
610 --enable/disable-kdbus configure option has been removed since
611 systemd-231.
612
Gustavo Zacariasd10b4932017-03-16 10:04:34 -0300613config BR2_PACKAGE_POLARSSL
614 bool "polarssl has been removed"
615 select BR2_LEGACY
616 help
617 The polarssl crypto library has been removed since the 1.2.x
618 release branch is no longer maintained. Newer upstream
619 branches/releases (mbedtls) have API changes so they're not
620 drop-in replacements.
621
Yann E. MORIN61551182017-03-12 10:58:15 +0100622config BR2_NBD_CLIENT
623 bool "nbd client option was renamed"
624 select BR2_LEGACY
625 select BR2_PACKAGE_NBD_CLIENT
626 help
627 The nbd client option has been renamed to BR2_PACKAGE_NBD_CLIENT.
628
629config BR2_NBD_SERVER
630 bool "nbd server option was renamed"
631 select BR2_LEGACY
632 select BR2_PACKAGE_NBD_SERVER
633 help
634 The nbd server option has been renamed to BR2_PACKAGE_NBD_SERVER.
635
Carlos Santos6a9c6312017-02-14 09:05:16 -0200636config BR2_PACKAGE_GMOCK
637 bool "gmock merged into gtest package"
638 select BR2_LEGACY
639 select BR2_PACKAGE_GTEST
640 select BR2_PACKAGE_GTEST_GMOCK
641 help
642 GMock is now a suboption of the GTest package.
643
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300644config BR2_KERNEL_HEADERS_4_8
645 bool "kernel headers version 4.8.x are no longer supported"
646 select BR2_KERNEL_HEADERS_4_4
647 select BR2_LEGACY
648 help
649 Version 4.8.x of the Linux kernel headers are no longer
650 maintained upstream and are now removed. As an alternative,
651 version 4.4.x of the headers have been automatically
652 selected in your configuration.
653
654config BR2_KERNEL_HEADERS_3_18
655 bool "kernel headers version 3.18.x are no longer supported"
656 select BR2_KERNEL_HEADERS_3_12
657 select BR2_LEGACY
658 help
659 Version 3.18.x of the Linux kernel headers are no longer
660 maintained upstream and are now removed. As an alternative,
661 version 3.12.x of the headers have been automatically
662 selected in your configuration.
663
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300664config BR2_GLIBC_VERSION_2_22
665 bool "glibc 2.22 removed"
666 select BR2_LEGACY
667 help
668 Support for glibc version 2.22 has been removed. The current
669 default version has been selected instead.
670
671###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +0100672comment "Legacy options removed in 2017.02"
673
Francois Perrad8546ff32016-12-26 15:50:35 +0100674config BR2_PACKAGE_PERL_DB_FILE
675 bool "perl-db-file removed"
676 select BR2_LEGACY
677 select BR2_PACKAGE_BERKELEYDB
678 select BR2_PACKAGE_PERL
679 help
680 DB_File can be built as a core Perl module, so the separate
681 perl-db-file package has been removed.
682
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300683config BR2_KERNEL_HEADERS_4_7
684 bool "kernel headers version 4.7.x are no longer supported"
685 select BR2_KERNEL_HEADERS_4_4
686 select BR2_LEGACY
687 help
688 Version 4.7.x of the Linux kernel headers are no longer
689 maintained upstream and are now removed. As an alternative,
690 version 4.4.x of the headers have been automatically
691 selected in your configuration.
692
693config BR2_KERNEL_HEADERS_4_6
694 bool "kernel headers version 4.6.x are no longer supported"
695 select BR2_KERNEL_HEADERS_4_4
696 select BR2_LEGACY
697 help
698 Version 4.6.x of the Linux kernel headers are no longer
699 maintained upstream and are now removed. As an alternative,
700 version 4.4.x of the headers have been automatically
701 selected in your configuration.
702
703config BR2_KERNEL_HEADERS_4_5
704 bool "kernel headers version 4.5.x are no longer supported"
705 select BR2_KERNEL_HEADERS_4_4
706 select BR2_LEGACY
707 help
708 Version 4.5.x of the Linux kernel headers are no longer
709 maintained upstream and are now removed. As an alternative,
710 version 4.4.x of the headers have been automatically
711 selected in your configuration.
712
713config BR2_KERNEL_HEADERS_3_14
714 bool "kernel headers version 3.14.x are no longer supported"
715 select BR2_KERNEL_HEADERS_3_12
716 select BR2_LEGACY
717 help
718 Version 3.14.x of the Linux kernel headers are no longer
719 maintained upstream and are now removed. As an alternative,
720 version 3.12.x of the headers have been automatically
721 selected in your configuration.
722
Romain Naour63abbcc2016-12-16 16:29:45 +0100723config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
724 bool "musl-cross 1.1.12 toolchain removed"
725 select BR2_LEGACY
726 help
727 The support for the prebuilt toolchain based on the Musl C
728 library provided by the musl-cross project has been removed.
729 Upstream doesn't provide any prebuilt toolchain anymore, use the
730 Buildroot toolchain instead.
731
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +0100732config BR2_UCLIBC_INSTALL_TEST_SUITE
733 bool "uClibc tests now in uclibc-ng-test"
734 select BR2_LEGACY
735 select BR2_PACKAGE_UCLIBC_NG_TEST
736 help
737 The test suite of the uClibc C library has been moved into a
738 separate package, uclibc-ng-test.
739
Arnout Vandecappelle311bc132016-11-24 00:40:35 +0100740config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
741 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
742 select BR2_LEGACY
743 help
744 The ADI Blackfin toolchain has many bugs which are fixed in
745 more recent gcc and uClibc-ng releases. Use the Buildroot
746 toolchain instead.
747
Arnout Vandecappelle207294f2016-11-23 15:14:04 +0100748config BR2_PACKAGE_MAKEDEVS
749 bool "makedevs removed"
750 select BR2_LEGACY
751 help
752 The makedevs tool is part of busybox. The Buildroot fork
753 should not be used outside of the Buildroot infrastructure.
754
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +0100755config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
756 bool "Arago ARMv7 2011.09 removed"
757 select BR2_LEGACY
758 help
759 The Arago toolchains are every old and not updated anymore.
760
761config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
762 bool "Arago ARMv5 2011.09 removed"
763 select BR2_LEGACY
764 help
765 The Arago toolchains are every old and not updated anymore.
766
Thomas Petazzonied364d12016-11-05 14:32:38 +0100767config BR2_PACKAGE_SNOWBALL_HDMISERVICE
768 bool "snowball-hdmiservice removed"
769 select BR2_LEGACY
770 help
771 We no longer have support for the Snowball platform in
772 Buildroot, so this package was no longer useful.
773
774config BR2_PACKAGE_SNOWBALL_INIT
775 bool "snowball-init removed"
776 select BR2_LEGACY
777 help
778 We no longer have support for the Snowball platform in
779 Buildroot, so this package was no longer useful.
780
Jörg Krause69aa0572016-12-14 14:40:58 +0100781config BR2_GDB_VERSION_7_9
782 bool "gdb 7.9 has been removed"
783 select BR2_LEGACY
784 help
785 The 7.9 version of gdb has been removed. Use a newer version
786 instead.
787
Thomas Petazzonied364d12016-11-05 14:32:38 +0100788###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +0200789comment "Legacy options removed in 2016.11"
790
Fabrice Fontainec4572132016-09-12 23:31:07 +0200791config BR2_PACKAGE_PHP_SAPI_CLI_CGI
792 bool "PHP CGI and CLI options are now seperate"
793 select BR2_PACKAGE_PHP_SAPI_CLI
794 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200795 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200796 help
797 The PHP Interface options have been split up into a
798 separate option for each interface.
799
800config BR2_PACKAGE_PHP_SAPI_CLI_FPM
801 bool "PHP CLI and FPM options are now separate"
802 select BR2_PACKAGE_PHP_SAPI_CLI
803 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200804 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200805 help
806 The PHP Interface options have been split up into a
807 separate option for each interface.
808
Arnout Vandecappelle35343992016-10-15 16:51:06 +0200809config BR2_PACKAGE_WVSTREAMS
810 bool "wvstreams removed"
811 select BR2_LEGACY
812 help
813 wvstreams is not maintained anymore since about 2009. It also
814 doesn't build anymore with recent compilers (GCC 5+).
815
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +0200816config BR2_PACKAGE_WVDIAL
817 bool "wvdial removed"
818 select BR2_LEGACY
819 help
820 wvdial is not maintained anymore since about 2009. It also
821 doesn't build anymore with recent compilers (GCC 5+).
822
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +0200823config BR2_PACKAGE_WEBKITGTK24
824 bool "webkitgtk 2.4.x removed"
825 select BR2_LEGACY
826 help
827 This legacy package only existed because some other packages
828 depended on that specific version of webkitgtk. However, the
829 other packages have been fixed. webkitgtk 2.4 is full of
830 security issues so it needs to be removed.
831
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +0200832config BR2_PACKAGE_TORSMO
833 bool "torsmo removed"
834 select BR2_LEGACY
835 help
836 torsmo has been unmaintained for a long time, and nobody
837 seems to be interested in it.
838
Arnout Vandecappelle290166f2016-10-15 16:51:02 +0200839config BR2_PACKAGE_SSTRIP
840 bool "sstrip removed"
841 select BR2_LEGACY
842 help
843 sstrip is unmaintained and potentially harmful. It doesn't
844 save so much compared to normal binutils strip, and there is
845 a big risk of binaries that don't work. Use normal strip
846 instead.
847
Arnout Vandecappelle133466f2016-10-15 16:51:01 +0200848config BR2_KERNEL_HEADERS_4_3
849 bool "kernel headers version 4.3.x are no longer supported"
850 select BR2_KERNEL_HEADERS_4_1
851 select BR2_LEGACY
852 help
853 Version 4.3.x of the Linux kernel headers are no longer
854 maintained upstream and are now removed. As an alternative,
855 version 4.1.x of the headers have been automatically
856 selected in your configuration.
857
858config BR2_KERNEL_HEADERS_4_2
859 bool "kernel headers version 4.2.x are no longer supported"
860 select BR2_KERNEL_HEADERS_4_1
861 select BR2_LEGACY
862 help
863 Version 4.2.x of the Linux kernel headers are no longer
864 maintained upstream and are now removed. As an alternative,
865 version 4.1.x of the headers have been automatically
866 selected in your configuration.
867
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +0200868config BR2_PACKAGE_KODI_ADDON_XVDR
869 bool "kodi-addon-xvdr removed"
870 select BR2_LEGACY
871 help
872 According to the github project page:
873 https://github.com/pipelka/xbmc-addon-xvdr
874 this package is discontinued.
875
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +0200876config BR2_PACKAGE_IPKG
877 bool "ipkg removed"
878 select BR2_LEGACY
879 help
880 ipkg dates back to the early 2000s when Compaq started the
881 handhelds.org project and it hasn't seen development since 2006.
882 Use opkg as a replacement.
883
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +0200884config BR2_GCC_VERSION_4_7_X
885 bool "gcc 4.7.x support removed"
886 select BR2_LEGACY
887 help
888 Support for gcc version 4.7.x has been removed. The current
889 default version (4.9.x or later) has been selected instead.
890
Arnout Vandecappelled8878112016-10-15 16:50:57 +0200891config BR2_BINUTILS_VERSION_2_24_X
892 bool "binutils version 2.24 support removed"
893 select BR2_LEGACY
894 help
895 Support for binutils version 2.24 has been removed. The
896 current default version (2.26 or later) has been selected
897 instead.
898
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -0300899config BR2_PACKAGE_WESTON_RPI
900 bool "Weston propietary RPI support is gone"
901 select BR2_LEGACY
902 help
903 Upstream decided the propietary (rpi-userland) weston composer
904 support wasn't worth the effort so it was removed. Switch to
905 the open VC4 support.
906
Yann E. MORIN20b14462016-09-06 16:29:14 +0200907config BR2_LINUX_KERNEL_TOOL_CPUPOWER
908 bool "linux-tool cpupower"
909 depends on BR2_LINUX_KERNEL
910 select BR2_LEGACY
911 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
912 help
913 Linux tool cpupower option was renamed.
914
915config BR2_LINUX_KERNEL_TOOL_PERF
916 bool "linux-tool perf"
917 depends on BR2_LINUX_KERNEL
918 select BR2_LEGACY
919 select BR2_PACKAGE_LINUX_TOOLS_PERF
920 help
921 Linux tool perf option was renamed.
922
923config BR2_LINUX_KERNEL_TOOL_SELFTESTS
924 bool "linux-tool selftests"
925 depends on BR2_LINUX_KERNEL
926 select BR2_LEGACY
927 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
928 help
929 Linux tool selftests option was renamed.
930
Thomas Petazzoni50332a52016-08-11 15:25:38 +0200931config BR2_GCC_VERSION_4_8_ARC
932 bool "gcc arc option renamed"
933 select BR2_LEGACY
934 select BR2_GCC_VERSION_ARC
935 help
936 The option that selects the gcc version for the ARC
937 architecture has been renamed to BR2_GCC_VERSION_ARC.
938
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300939config BR2_KERNEL_HEADERS_4_0
940 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300941 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300942 select BR2_LEGACY
943 help
944 Version 4.0.x of the Linux kernel headers have been deprecated
945 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300946 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300947 automatically selected in your configuration.
948
949config BR2_KERNEL_HEADERS_3_19
950 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300951 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300952 select BR2_LEGACY
953 help
954 Version 3.19.x of the Linux kernel headers have been deprecated
955 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300956 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300957 automatically selected in your configuration.
958
Romain Naour0e517312016-09-02 22:31:32 +0200959config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
960 bool "libevas-generic-loaders package removed"
961 select BR2_LEGACY
962 select BR2_PACKAGE_EFL
963 help
964 With EFL 1.18, libevas-generic-loaders is now provided by the efl
965 package.
966
Romain Naourc22b7582016-09-02 22:31:31 +0200967config BR2_PACKAGE_ELEMENTARY
968 bool "elementary package removed"
969 select BR2_LEGACY
970 select BR2_PACKAGE_EFL
971 help
972 With EFL 1.18, elementary is now provided by the efl package.
973
Yann E. MORINe782cd52016-08-28 01:03:04 +0200974config BR2_LINUX_KERNEL_CUSTOM_LOCAL
975 bool "Linux kernel local directory option removed"
976 help
977 The option to select a local directory as the source of the Linux
978 kernel has been removed. It hurts reproducibility of builds.
979
980 In case you were using this option during development of your
981 Linux kernel, use the override mechanism instead.
982
983###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200984comment "Legacy options removed in 2016.08"
985
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100986config BR2_PACKAGE_EFL_JP2K
987 bool "libevas jp2k loader has been removed"
988 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +0100989 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100990 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
991 while Buildroot only packages openjpeg 2.x. Therefore, the
992 JP2K loader has been removed from EFL.
993
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200994config BR2_PACKAGE_SYSTEMD_COMPAT
995 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +0200996 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200997 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +0200998 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200999 been removed. Theses libraries have been useless since a few
1000 version, and have been fully dropped from the source since
1001 v230.
1002
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +02001003config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
1004 bool "gst1-plugins-bad liveadder plugin removed"
1005 select BR2_LEGACY
1006 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
1007 help
1008 The functionality of the liveadder plugin of the
1009 gst1-plugins-bad package has been merged into audiomixer.
1010
Andrew Webster0f92b192016-06-10 14:13:29 -04001011config BR2_PACKAGE_LIBFSLVPUWRAP
1012 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
1013 select BR2_LEGACY
1014 select BR2_PACKAGE_IMX_VPUWRAP
1015 help
1016 The libfslvpuwrap has been renamed to match the renamed package.
1017
Andrew Webster64998902016-06-10 14:13:18 -04001018config BR2_PACKAGE_LIBFSLPARSER
1019 bool "libfslparser has been renamed to imx-parser"
1020 select BR2_LEGACY
1021 select BR2_PACKAGE_IMX_PARSER
1022 help
1023 The libfslparser has been renamed to match the renamed package.
1024
Andrew Webster47e62032016-06-10 14:13:05 -04001025config BR2_PACKAGE_LIBFSLCODEC
1026 bool "libfslcodec has been renamed to imx-codec"
1027 select BR2_LEGACY
1028 select BR2_PACKAGE_IMX_CODEC
1029 help
1030 The libfslcodec has been renamed to match the renamed package.
1031
Carlos Santosb5d99002016-06-03 16:35:39 -03001032config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
1033 bool "FIT support in uboot-tools has been refactored"
1034 select BR2_LEGACY
1035 select BR2_PACKAGE_DTC
1036 select BR2_PACKAGE_DTC_PROGRAMS
1037 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
1038 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
1039 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
1040 help
1041 This option has been removed in favor of a more fine-grained
1042 configuration, which is recommended. Selecting this option
1043 enables FIT and FIT signature support for the target packages.
1044 It will also select the dtc and openssl packages.
1045
Waldemar Brodkorbf253c142016-06-01 20:40:25 +02001046config BR2_PTHREADS_OLD
1047 bool "linuxthreads (stable/old)"
1048 select BR2_LEGACY
1049 help
1050 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
1051 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
1052
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001053config BR2_BINUTILS_VERSION_2_23_X
1054 bool "binutils 2.23 removed"
1055 select BR2_LEGACY
1056 help
1057 Binutils 2.23 has been removed, using a newer version is
1058 recommended.
1059
Thomas Petazzoni500de252016-05-17 00:13:00 +02001060config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
1061 bool "eglibc support has been removed"
1062 select BR2_LEGACY
1063 help
1064 The eglibc project no longer exists, as it has been merged
1065 back into the glibc project. Therefore, support for eglibc
1066 has been removed, and glibc should be used instead.
1067
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02001068config BR2_GDB_VERSION_7_8
1069 bool "gdb 7.8 has been removed"
1070 select BR2_LEGACY
1071 help
1072 The 7.8 version of gdb has been removed. Use a newer version
1073 instead.
1074
1075###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01001076comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +01001077
Gustavo Zacarias3380da62016-05-14 10:33:47 -03001078config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
1079 bool "openvpn polarssl crypto backend removed"
1080 select BR2_LEGACY
1081 help
1082 The OpenVPN polarssl crypto backend option has been removed.
1083 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
1084 compatible with mbedtls (polarssl) series 2.x which is the
1085 version provided in buildroot. And both can't coexist.
1086 It now uses OpenSSL as the only option.
1087
1088
Martin Bark4dfc2cb2016-05-03 10:36:54 +01001089config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
1090 bool "nginx http spdy module removed"
1091 select BR2_LEGACY
1092 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
1093 help
1094 The ngx_http_spdy_module has been superseded by the
1095 ngx_http_v2_module since nginx v1.9.5. The
1096 ngx_http_v2_module modules has been automatically selected
1097 in your configuration.
1098
Gustavo Zacarias0c956f22016-05-03 16:44:15 -03001099config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
1100 bool "gst1-plugins-bad rtp plugin moved to good"
1101 select BR2_LEGACY
1102 help
1103 The rtp plugin has been moved from gst1-plugins-base to
1104 gst1-plugins-good.
1105
Gustavo Zacarias4196cf92016-05-03 16:44:14 -03001106config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
1107 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
1108 select BR2_LEGACY
1109 help
1110 The mpg123 plugin has been moved from gst1-plugins-bad to
1111 gst1-plugins-ugly.
1112
Gustavo Zacarias8490e832016-04-29 10:18:56 -03001113config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
1114 bool "PowerPC Sourcery toolchain has been removed"
1115 select BR2_LEGACY
1116 help
1117 The Sourcery CodeBench toolchain for the PowerPC
1118 architecture has been removed, as it was very old, not
1119 maintained, and causing numerous build failures with modern
1120 userspace packages.
1121
1122config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
1123 bool "PowerPC Sourcery E500v2 toolchain has been removed"
1124 select BR2_LEGACY
1125 help
1126 The Sourcery CodeBench toolchain for the PowerPC E500v2
1127 architecture has been removed, as it was very old, not
1128 maintained, and causing numerous build failures with modern
1129 userspace packages.
1130
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02001131config BR2_x86_i386
1132 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +02001133 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02001134 help
1135 The support for the i386 processors of the x86 architecture
1136 has been removed.
1137
Julien CORJON940bfe22016-03-17 10:42:27 +01001138config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
1139 bool "qt5webkit-examples package removed"
1140 select BR2_LEGACY
1141 help
1142 The qt5webkit-examples package has been removed, since it
1143 was removed from upstream starting from Qt 5.6.
1144
Julien CORJONf75ee802016-03-17 10:42:25 +01001145config BR2_PACKAGE_QT5QUICK1
1146 bool "qt5quick1 package removed"
1147 select BR2_LEGACY
1148 help
1149 The qt5quick1 package has been removed, since it was removed
1150 from upstream starting from Qt 5.6.
1151
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03001152config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -05001153 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03001154 help
1155 The uboot custom patch directory option has been removed. Use
1156 the improved BR2_TARGET_UBOOT_PATCH option instead.
1157
Danomi Manchegof61583f2016-12-19 22:10:12 -05001158config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
1159 bool
1160 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
1161 select BR2_LEGACY
1162
1163# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
1164# boot/uboot/Config.in
1165
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -03001166config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
1167 bool "xf86-input-void removed"
1168 select BR2_LEGACY
1169 help
1170 The xf86-input-void package has been removed, there's no need
1171 for it in any modern (post-2007) xorg server.
1172
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001173config BR2_KERNEL_HEADERS_3_17
1174 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001175 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001176 select BR2_LEGACY
1177 help
1178 Version 3.17.x of the Linux kernel headers have been deprecated
1179 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001180 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001181 automatically selected in your configuration.
1182
Gustavo Zacariasffc324e2016-03-11 11:32:21 -03001183config BR2_GDB_VERSION_7_7
1184 bool "gdb 7.7 has been removed"
1185 select BR2_LEGACY
1186 help
1187 The 7.7 version of gdb has been removed. Use a newer version
1188 instead.
1189
Gustavo Zacarias75945dd2016-03-11 11:32:20 -03001190config BR2_PACKAGE_FOOMATIC_FILTERS
1191 bool "foomatic-filters"
1192 select BR2_LEGACY
1193 help
1194 The foomatic-filters package was removed.
1195
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -03001196config BR2_PACKAGE_SAMBA
1197 bool "samba"
1198 select BR2_LEGACY
1199 help
1200 The samba package was removed in favour of samba4 since the
1201 3.x series isn't supported by upstream any longer.
1202
Bernd Kuhls6922b412016-02-20 23:09:11 +01001203config BR2_PACKAGE_KODI_WAVPACK
1204 bool "wavpack"
1205 select BR2_LEGACY
1206 help
1207 wavpack support was removed in favour of ffmpeg:
1208 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
1209
Bernd Kuhls75ce17d2016-02-20 23:09:07 +01001210config BR2_PACKAGE_KODI_RSXS
1211 bool "rsxs support in Kodi was moved to an addon"
1212 select BR2_LEGACY
1213 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
1214 help
1215 rsxs support in Kodi was moved to an addon
1216
Bernd Kuhls56b80ec2016-02-20 23:09:06 +01001217config BR2_PACKAGE_KODI_GOOM
1218 bool "Goom support in Kodi was moved to an addon"
1219 select BR2_LEGACY
1220 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
1221 help
1222 Goom support in Kodi was moved to an addon
1223
Gabe Evanse5a073a2016-02-25 21:55:11 +00001224config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
1225 bool "systemd all extras option has been removed"
1226 select BR2_LEGACY
1227 select BR2_PACKAGE_XZ
1228 select BR2_PACKAGE_LIBGCRYPT
1229 help
1230 The systemd option to enable "all extras" has been
1231 removed. To get the same features, the libgcrypt and xz
1232 package should now be enabled.
1233
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -03001234config BR2_GCC_VERSION_4_5_X
1235 bool "gcc 4.5.x has been removed"
1236 select BR2_LEGACY
1237 help
1238 The 4.5.x version of gcc has been removed. Use a newer
1239 version instead.
1240
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01001241config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -05001242 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01001243 select BR2_PACKAGE_NCURSES
1244 select BR2_PACKAGE_READLINE
1245 select BR2_LEGACY
1246 help
1247 This option was removed in favour of the sqlite package
1248 deciding itself depending on the enabled packages whether
1249 command-line editing should be enabled, it also also takes
1250 libedit into account.
1251
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01001252###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +01001253comment "Legacy options removed in 2016.02"
1254
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +01001255config BR2_PACKAGE_DOVECOT_BZIP2
1256 bool "bzip2 support option has been removed"
1257 select BR2_LEGACY
1258 select BR2_PACKAGE_BZIP2
1259 help
1260 Bzip2 support is built if the bzip2 package is selected.
1261
1262config BR2_PACKAGE_DOVECOT_ZLIB
1263 bool "zlib support option has been removed"
1264 select BR2_LEGACY
1265 select BR2_PACKAGE_ZLIB
1266 help
1267 Zlib support is built if the zlib package is selected.
1268
James Knightead1df42016-02-12 11:40:05 -05001269config BR2_PACKAGE_E2FSPROGS_FINDFS
1270 bool "e2fsprogs findfs option has been removed"
1271 select BR2_LEGACY
1272 help
1273 This option attempted to enable findfs capabilities from
1274 e2fsprogs but has not worked since July 2015 (due to
1275 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +01001276 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -05001277
Romain Naourb1063a02016-02-07 17:56:56 +01001278config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
1279 bool "openpowerlink debug option has been removed"
1280 select BR2_LEGACY
1281 help
1282 This option depends on BR2_ENABLE_DEBUG which should not be used
1283 by packages anymore.
1284
1285config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
1286 bool "openpowerlink package has been updated"
1287 select BR2_LEGACY
1288 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
1289 help
1290 openpowerlink kernel modules are built if the
1291 kernel stack library is selected.
1292
1293config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
1294 bool "openpowerlink package has been updated"
1295 select BR2_LEGACY
1296 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
1297 help
1298 The user space support has been split in two part:
1299 - a monolitic user space library
1300 - a user spae deamon driver
1301
Yann E. MORINe3e05832016-02-06 00:06:17 +01001302config BR2_LINUX_KERNEL_SAME_AS_HEADERS
1303 bool "using the linux headers version for the kernel has been removed"
1304 select BR2_LEGACY
1305 help
1306 The option to use the version of the kernel headers for the
1307 kernel to build has been removed.
1308
1309 There is now the converse, better-suited and more versatile
1310 option to use the kernel version for the linux headers.
1311
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02001312config BR2_PACKAGE_CUPS_PDFTOPS
1313 bool "Pdftops support has been removed from Cups"
1314 select BR2_LEGACY
1315 help
1316 Pdftops support has been removed from the cups package
1317 It is now part of the cups-filters package.
1318
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001319config BR2_KERNEL_HEADERS_3_16
1320 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001321 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001322 select BR2_LEGACY
1323 help
1324 Version 3.16.x of the Linux kernel headers have been deprecated
1325 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001326 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001327 automatically selected in your configuration.
1328
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01001329config BR2_PACKAGE_PYTHON_PYXML
1330 bool "python-pyxml package has been removed"
1331 select BR2_LEGACY
1332 help
1333 PyXML is obsolete and its functionality is covered either via
1334 native Python XML support or python-lxml package.
1335
Steven Noonand29c7192015-12-27 12:07:31 +01001336# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
1337config BR2_ENABLE_SSP
1338 bool "Stack Smashing protection now has different levels"
1339 help
1340 The protection offered by SSP can now be selected from different
1341 protection levels. Be sure to review the SSP level in the build
1342 options menu.
1343
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001344config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03001345 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001346 select BR2_LEGACY
1347 help
1348 The cle266 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
1352config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03001353 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001354 select BR2_LEGACY
1355 help
1356 The unichrome directfb driver support has been removed.
1357 It doesn't build in the latest version and it's unlikely
1358 anyone has any use for it.
1359
Romain Naour820e1682015-12-19 17:39:14 +01001360config BR2_PACKAGE_LIBELEMENTARY
1361 bool "libelementary has been renamed to elementary"
1362 select BR2_LEGACY
1363 select BR2_PACKAGE_ELEMENTARY
1364 help
1365 The libelementary package has been renamed to match the upstream
1366 name.
1367
Romain Naoura9d1f5f2015-12-15 23:40:38 +01001368config BR2_PACKAGE_LIBEINA
1369 bool "libeina package has been removed"
1370 select BR2_LEGACY
1371 select BR2_PACKAGE_EFL
1372 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001373 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01001374
Romain Naour49700f02015-12-15 23:40:37 +01001375config BR2_PACKAGE_LIBEET
1376 bool "libeet package has been removed"
1377 select BR2_LEGACY
1378 select BR2_PACKAGE_EFL
1379 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001380 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01001381
Romain Naoure5989d62015-12-15 23:40:36 +01001382config BR2_PACKAGE_LIBEVAS
1383 bool "libevas package has been removed"
1384 select BR2_LEGACY
1385 select BR2_PACKAGE_EFL
1386 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001387 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01001388
Romain Naour1fe1b602015-12-15 23:40:35 +01001389config BR2_PACKAGE_LIBECORE
1390 bool "libecore package has been removed"
1391 select BR2_LEGACY
1392 select BR2_PACKAGE_EFL
1393 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001394 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01001395
Romain Naour8c05c382015-12-15 23:40:34 +01001396config BR2_PACKAGE_LIBEDBUS
1397 bool "libedbus package has been removed"
1398 select BR2_LEGACY
1399 select BR2_PACKAGE_EFL
1400 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001401 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01001402
Romain Naourd2b042c2015-12-15 23:40:33 +01001403config BR2_PACKAGE_LIBEFREET
1404 bool "libefreet package has been removed"
1405 select BR2_LEGACY
1406 select BR2_PACKAGE_EFL
1407 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001408 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01001409
Romain Naoure155c952015-12-15 23:40:32 +01001410config BR2_PACKAGE_LIBEIO
1411 bool "libeio package has been removed"
1412 select BR2_LEGACY
1413 select BR2_PACKAGE_EFL
1414 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001415 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01001416
Romain Naourb728fb72015-12-15 23:40:31 +01001417config BR2_PACKAGE_LIBEMBRYO
1418 bool "libembryo package has been removed"
1419 select BR2_LEGACY
1420 select BR2_PACKAGE_EFL
1421 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001422 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01001423
Romain Naour4c93c102015-12-15 23:40:30 +01001424config BR2_PACKAGE_LIBEDJE
1425 bool "libedje package has been removed"
1426 select BR2_LEGACY
1427 select BR2_PACKAGE_EFL
1428 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001429 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01001430
Romain Naour905dba12015-12-15 23:40:29 +01001431config BR2_PACKAGE_LIBETHUMB
1432 bool "libethumb package has been removed"
1433 select BR2_LEGACY
1434 select BR2_PACKAGE_EFL
1435 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001436 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01001437
Luca Ceresolif0c94702015-11-27 18:38:00 +01001438config BR2_PACKAGE_INFOZIP
1439 bool "infozip option has been renamed to zip"
1440 select BR2_LEGACY
1441 select BR2_PACKAGE_ZIP
1442 help
1443 Info-Zip's Zip package has been renamed from infozip to zip,
1444 to avoid ambiguities with Info-Zip's UnZip which has been added
1445 in the unzip package.
1446
Martin Barka2d16602015-12-23 12:16:04 +00001447config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00001448 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00001449 select BR2_LEGACY
1450 select BR2_PACKAGE_NODEJS
1451 help
Martin Bark75b70492016-01-30 14:51:00 +00001452 nodejs 0.10.x option has been removed. 0.10.x is now
1453 automatically chosen for ARMv5 architectures only and the latest
1454 nodejs for all other supported architectures. The correct nodejs
1455 version has been automatically selected in your configuration.
Martin Barka2d16602015-12-23 12:16:04 +00001456
Martin Barka314b872015-12-23 12:16:03 +00001457config BR2_BR2_PACKAGE_NODEJS_0_12_X
1458 bool "nodejs version 0.12.x has been removed"
1459 select BR2_LEGACY
1460 select BR2_PACKAGE_NODEJS
1461 help
1462 nodejs version 0.12.x has been removed. As an alternative,
1463 the latest nodejs version has been automatically selected in
1464 your configuration.
1465
Martin Bark90bf67c2015-12-23 12:16:02 +00001466config BR2_BR2_PACKAGE_NODEJS_4_X
1467 bool "nodejs version 4.x has been removed"
1468 select BR2_LEGACY
1469 select BR2_PACKAGE_NODEJS
1470 help
1471 nodejs version 4.x has been removed. As an alternative,
1472 the latest nodejs version has been automatically selected in
1473 your configuration.
1474
Luca Ceresolif0c94702015-11-27 18:38:00 +01001475###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001476comment "Legacy options removed in 2015.11"
1477
Peter Seiderer301e8ff2015-10-15 21:42:43 +02001478config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
1479 bool "gst1-plugins-bad real plugin has been removed"
1480 select BR2_LEGACY
1481 help
1482 The real plugin from GStreamer 1 bad plugins has been
1483 removed.
1484
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02001485config BR2_PACKAGE_MEDIA_CTL
1486 bool "media-ctl package has been removed"
1487 select BR2_LEGACY
1488 select BR2_PACKAGE_LIBV4L
1489 select BR2_PACKAGE_LIBV4L_UTILS
1490 help
1491 media-ctl source and developement have been moved to
1492 v4l-utils since June 2014. For an up-to-date media-ctl
1493 version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
1494
Romain Naourf8031332015-10-03 18:35:05 +02001495config BR2_PACKAGE_SCHIFRA
1496 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001497 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02001498 help
1499 Schifra package has been maked broken since 2014.11 release and
1500 haven't been fixed since then.
1501
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02001502config BR2_PACKAGE_ZXING
1503 bool "zxing option has been renamed"
1504 select BR2_LEGACY
1505 select BR2_PACKAGE_ZXING_CPP
1506 help
1507 ZXing no longer provides the cpp bindings, it has been renamed to
1508 BR2_PACKAGE_ZXING_CPP which uses a new upstream.
1509
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001510# Since FreeRDP has new dependencies, protect this legacy to avoid the
1511# infamous "unmet direct dependencies" kconfig error.
1512config BR2_PACKAGE_FREERDP_CLIENT
1513 bool "freerdp client option renamed"
1514 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02001515 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001516 select BR2_PACKAGE_FREERDP_CLIENT_X11
1517
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03001518config BR2_PACKAGE_BLACKBOX
1519 bool "blackbox package has been removed"
1520 select BR2_LEGACY
1521 help
1522 Upstream is dead and the package has been deprecated for
1523 some time. There are other alternative maintained WMs.
1524
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001525config BR2_KERNEL_HEADERS_3_0
1526 bool "kernel headers version 3.0.x are no longer supported"
1527 select BR2_KERNEL_HEADERS_3_2
1528 select BR2_LEGACY
1529 help
1530 Version 3.0.x of the Linux kernel headers have been deprecated
1531 for more than four buildroot releases and are now removed.
1532 As an alternative, version 3.2.x of the headers have been
1533 automatically selected in your configuration.
1534
1535config BR2_KERNEL_HEADERS_3_11
1536 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001537 select BR2_KERNEL_HEADERS_3_10
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001538 select BR2_LEGACY
1539 help
1540 Version 3.11.x of the Linux kernel headers have been deprecated
1541 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001542 As an alternative, version 3.10.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001543 automatically selected in your configuration.
1544
1545config BR2_KERNEL_HEADERS_3_13
1546 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001547 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001548 select BR2_LEGACY
1549 help
1550 Version 3.13.x of the Linux kernel headers have been deprecated
1551 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001552 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001553 automatically selected in your configuration.
1554
1555config BR2_KERNEL_HEADERS_3_15
1556 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001557 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001558 select BR2_LEGACY
1559 help
1560 Version 3.15.x of the Linux kernel headers have been deprecated
1561 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001562 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001563 automatically selected in your configuration.
1564
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001565config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
1566 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001567 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001568 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1569 help
1570 The per-DirectFB example options have been removed. The
1571 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1572 examples.
1573
1574config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
1575 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001576 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001577 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1578 help
1579 The per-DirectFB example options have been removed. The
1580 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1581 examples.
1582
1583config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
1584 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001585 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001586 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1587 help
1588 The per-DirectFB example options have been removed. The
1589 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1590 examples.
1591
1592config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
1593 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001594 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001595 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1596 help
1597 The per-DirectFB example options have been removed. The
1598 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1599 examples.
1600
1601config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
1602 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001603 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001604 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1605 help
1606 The per-DirectFB example options have been removed. The
1607 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1608 examples.
1609
1610config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
1611 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001612 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001613 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1614 help
1615 The per-DirectFB example options have been removed. The
1616 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1617 examples.
1618
1619config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
1620 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001621 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001622 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1623 help
1624 The per-DirectFB example options have been removed. The
1625 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1626 examples.
1627
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001628config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
1629 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001630 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001631 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1632 help
1633 The per-DirectFB example options have been removed. The
1634 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1635 examples.
1636
1637config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
1638 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001639 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001640 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1641 help
1642 The per-DirectFB example options have been removed. The
1643 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1644 examples.
1645
1646config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
1647 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001648 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001649 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1650 help
1651 The per-DirectFB example options have been removed. The
1652 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1653 examples.
1654
1655config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
1656 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001657 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001658 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1659 help
1660 The per-DirectFB example options have been removed. The
1661 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1662 examples.
1663
1664config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
1665 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001666 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001667 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1668 help
1669 The per-DirectFB example options have been removed. The
1670 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1671 examples.
1672
1673config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
1674 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001675 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001676 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1677 help
1678 The per-DirectFB example options have been removed. The
1679 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1680 examples.
1681
1682config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
1683 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001684 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001685 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1686 help
1687 The per-DirectFB example options have been removed. The
1688 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1689 examples.
1690
1691config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
1692 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001693 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001694 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1695 help
1696 The per-DirectFB example options have been removed. The
1697 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1698 examples.
1699
1700config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
1701 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001702 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001703 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1704 help
1705 The per-DirectFB example options have been removed. The
1706 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1707 examples.
1708
1709config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
1710 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001711 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001712 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1713 help
1714 The per-DirectFB example options have been removed. The
1715 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1716 examples.
1717
1718config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
1719 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001720 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001721 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_PALETTE
1728 bool "DirectFB example df_palette has been removed"
1729 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1730 help
1731 The per-DirectFB example options have been removed. The
1732 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1733 examples.
1734
1735config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
1736 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001737 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001738 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1739 help
1740 The per-DirectFB example options have been removed. The
1741 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1742 examples.
1743
1744config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
1745 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001746 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001747 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_STRESS
1754 bool "DirectFB example df_stress has been removed"
1755 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1756 help
1757 The per-DirectFB example options have been removed. The
1758 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1759 examples.
1760
1761config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
1762 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001763 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001764 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1765 help
1766 The per-DirectFB example options have been removed. The
1767 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1768 examples.
1769
1770config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
1771 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001772 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001773 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1774 help
1775 The per-DirectFB example options have been removed. The
1776 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1777 examples.
1778
1779config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1780 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001781 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001782 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1783 help
1784 The per-DirectFB example options have been removed. The
1785 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1786 examples.
1787
1788config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1789 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001790 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001791 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1792 help
1793 The per-DirectFB example options have been removed. The
1794 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1795 examples.
1796
Gary Bisson2b78fb22015-09-23 15:39:27 +02001797config BR2_PACKAGE_KOBS_NG
1798 bool "kobs-ng was replaced by imx-kobs"
1799 select BR2_LEGACY
1800 select BR2_PACKAGE_IMX_KOBS
1801 help
1802 The outdated kobs-ng has been replaced by the Freescale-
1803 maintained imx-kobs package.
1804
Thomas Petazzoni11573f52015-09-02 00:01:11 +02001805config BR2_PACKAGE_SAWMAN
1806 bool "sawman package removed"
1807 select BR2_LEGACY
1808 select BR2_PACKAGE_DIRECTFB_SAWMAN
1809 help
1810 This option has been removed because the sawman package no
1811 longer exists: it was merged inside DirectFB itself. This
1812 feature can now be enabled using the
1813 BR2_PACKAGE_DIRECTFB_SAWMAN option.
1814
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001815config BR2_PACKAGE_DIVINE
1816 bool "divine package removed"
1817 select BR2_LEGACY
1818 select BR2_PACKAGE_DIRECTFB_DIVINE
1819 help
1820 This option has been removed because the divine package no
1821 longer exists: it was merged inside DirectFB itself. This
1822 feature can now be enabled using the
1823 BR2_PACKAGE_DIRECTFB_DIVINE option.
1824
1825###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001826comment "Legacy options removed in 2015.08"
1827
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001828config BR2_PACKAGE_KODI_PVR_ADDONS
1829 bool "Kodi PVR addon was split"
1830 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02001831 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02001832 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02001833 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02001834 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02001835 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02001836 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02001837 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02001838 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02001839 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02001840 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02001841 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02001842 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02001843 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02001844 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02001845 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02001846 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001847 help
1848 Kodi PVR addon was split into seperate modules
1849
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001850config BR2_BINUTILS_VERSION_2_23_2
1851 bool "binutils 2.23 option renamed"
1852 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001853 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001854 Binutils 2.23.2 has been removed, using a newer version is
1855 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001856
1857config BR2_BINUTILS_VERSION_2_24
1858 bool "binutils 2.24 option renamed"
1859 select BR2_LEGACY
1860 select BR2_BINUTILS_VERSION_2_24_X
1861 help
1862 The binutils version option has been renamed to match the
1863 same patchlevel logic used by gcc. The new option is now
1864 BR2_BINUTILS_VERSION_2_24_X.
1865
1866config BR2_BINUTILS_VERSION_2_25
1867 bool "binutils 2.25 option renamed"
1868 select BR2_LEGACY
1869 select BR2_BINUTILS_VERSION_2_25_X
1870 help
1871 The binutils version option has been renamed to match the
1872 same patchlevel logic used by gcc. The new option is now
1873 BR2_BINUTILS_VERSION_2_25_X.
1874
Romain Naour1326e762015-07-14 19:35:14 +02001875config BR2_PACKAGE_PERF
1876 bool "perf option has been renamed"
1877 select BR2_LEGACY
1878 select BR2_LINUX_KERNEL_TOOL_PERF
1879 help
1880 The perf package has been moved as a Linux tools package,
1881 and the option to enable it is now
1882 BR2_LINUX_KERNEL_TOOL_PERF.
1883
Thomas Petazzoni2f845952015-07-11 14:52:53 +02001884config BR2_BINUTILS_VERSION_2_22
1885 bool "binutils 2.22 removed"
1886 select BR2_LEGACY
1887 help
1888 Binutils 2.22 has been removed, using a newer version is
1889 recommended.
1890
Gary Bisson4c0613e2015-05-26 10:19:37 +02001891config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1892 bool "gpu-viv-bin-mx6q"
1893 select BR2_LEGACY
1894 select BR2_PACKAGE_IMX_GPU_VIV
1895 help
1896 Vivante graphics libraries have been renamed to
1897 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1898 name.
1899
Matt Weber7742abe2015-06-02 08:28:35 -05001900config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
1901 depends on BR2_PACKAGE_PYTHON
1902 bool "libsemanage python bindings removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001903 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05001904 help
1905 This option has been removed, since the libsemanage Python
1906 bindings on the target were not useful.
1907
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001908config BR2_TARGET_UBOOT_NETWORK
1909 bool "U-Boot custom network settings removed"
1910 select BR2_LEGACY
1911 help
1912 U-Boot's custom network settings options have been removed.
1913
1914###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001915comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001916
Michał Leśniewskie3904a82015-05-19 20:26:30 +02001917config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1918 bool "jffs2 16kB erasesize NAND flash option renamed"
1919 select BR2_LEGACY
1920 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1921 help
1922 The JFFS2 NAND flash options now longer include the page
1923 size.
1924
1925config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1926 bool "jffs2 128kB erasesize NAND flash option renamed"
1927 select BR2_LEGACY
1928 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
1929 help
1930 The JFFS2 NAND flash options now longer include the page
1931 size.
1932
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02001933config BR2_PACKAGE_MONO_20
1934 bool "2.0/3.5 .Net Runtime"
1935 select BR2_LEGACY
1936 help
1937 This option no longer exists, all versions of the .Net
1938 runtime are now installed.
1939
1940config BR2_PACKAGE_MONO_40
1941 bool "4.0 .Net Runtime"
1942 select BR2_LEGACY
1943 help
1944 This option no longer exists, all versions of the .Net
1945 runtime are now installed.
1946
1947config BR2_PACKAGE_MONO_45
1948 bool "4.5 .Net Runtime"
1949 select BR2_LEGACY
1950 help
1951 This option no longer exists, all versions of the .Net
1952 runtime are now installed.
1953
Peter Korsgaardefd49e32015-04-27 22:29:05 +02001954config BR2_CIVETWEB_WITH_LUA
1955 bool "civetweb lua option renamed"
1956 select BR2_LEGACY
1957 select BR2_PACKAGE_CIVETWEB_WITH_LUA
1958 help
1959 civetweb's lua option has been renamed to
1960 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
1961 packages name options.
1962
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02001963config BR2_PACKAGE_TIFF_TIFF2PDF
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
1971config BR2_PACKAGE_TIFF_TIFFCP
1972 bool "tiff utility-specific option removed"
1973 select BR2_LEGACY
1974 select BR2_PACKAGE_TIFF_UTILITIES
1975 help
1976 utility-specific options have been removed in favour of
1977 the new option BR2_PACKAGE_TIFF_UTILITIES.
1978
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001979config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
1980 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001981 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001982 help
1983 This option has never worked, so it has been removed.
1984
Yann E. MORIN02917962015-03-24 19:54:15 +01001985config BR2_TARGET_GENERIC_PASSWD_DES
1986 bool "Encoding passwords with DES has been removed"
1987 select BR2_LEGACY
1988 help
1989 Paswords can now only be encoded with either of md5, sha256 or sha512.
1990 The default is md5, which is stronger that DES (but still pretty weak).
1991
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03001992config BR2_PACKAGE_GTK2_THEME_HICOLOR
1993 bool "hicolor (default theme) is a duplicate"
1994 select BR2_LEGACY
1995 select BR2_PACKAGE_HICOLOR_ICON_THEME
1996 help
1997 The option was just a duplicate of hicolor icon theme.
1998
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001999config BR2_PACKAGE_VALGRIND_PTRCHECK
2000 bool "valgrind's PTRCheck was renamed to SGCheck"
2001 select BR2_LEGACY
2002 select BR2_PACKAGE_VALGRIND_SGCHECK
2003 help
2004 PTRCheck was renamed to SGCheck in valgrind
2005
2006###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002007comment "Legacy options removed in 2015.02"
2008
Pedro Aguilar10900c02015-02-27 06:38:07 +02002009config BR2_PACKAGE_LIBGC
2010 bool "libgc package removed"
2011 select BR2_LEGACY
2012 select BR2_PACKAGE_BDWGC
2013 help
2014 libgc has been removed because we have the same package under a
2015 different name, bdwgc.
2016
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01002017config BR2_PACKAGE_WDCTL
2018 bool "util-linux' wdctl option has been renamed"
2019 select BR2_LEGACY
2020 select BR2_PACKAGE_UTIL_LINUX_WDCTL
2021 help
2022 util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
2023 to be aligned with how the other options are named.
2024
Danomi Manchegoe44edb82015-07-13 22:57:06 -04002025config BR2_PACKAGE_UTIL_LINUX_ARCH
2026 bool "util-linux' arch option has been removed"
2027 select BR2_LEGACY
2028 help
2029 util-linux' arch was dropped in util-linux 2.23, in favor of
2030 the coreutils version.
2031
2032config BR2_PACKAGE_UTIL_LINUX_DDATE
2033 bool "util-linux' ddate option has been removed"
2034 select BR2_LEGACY
2035 help
2036 util-linux' ddate was dropped in util-linux 2.23.
2037
Romain Naour3c476542015-01-18 20:53:08 +01002038config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
2039 bool "rpm's bzip2 payloads option has been removed"
2040 select BR2_LEGACY
2041 select BR2_PACKAGE_BZIP2
2042 help
2043 The bzip2 payloads option rely entirely on the dependant package bzip2.
2044 So, you need to select it to enable this feature.
2045
2046config BR2_PACKAGE_RPM_XZ_PAYLOADS
2047 bool "rpm's xz payloads option has been removed"
2048 select BR2_LEGACY
2049 select BR2_PACKAGE_XZ
2050 help
2051 The xz payloads option rely entirely on the dependant package xz.
2052 So, you need to select it to enable this feature.
2053
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03002054config BR2_PACKAGE_M4
2055 bool "m4 target package removed"
2056 select BR2_LEGACY
2057 help
2058 The m4 target package has been removed, it's been
2059 deprecated for some time now.
2060
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03002061config BR2_PACKAGE_FLEX_BINARY
2062 bool "flex binary in target option removed"
2063 select BR2_LEGACY
2064 help
2065 The flex binary in the target option has been removed.
2066 It's been deprecated for some time now and is essentially a
2067 development tool which isn't very useful in the target.
2068
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03002069config BR2_PACKAGE_BISON
2070 bool "bison target package removed"
2071 select BR2_LEGACY
2072 help
2073 The bison target package has been removed, it's been
2074 deprecated for some time now and is essentially a development
2075 tool which isn't very useful in the target.
2076
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03002077config BR2_PACKAGE_GOB2
2078 bool "gob2 target package removed"
2079 select BR2_LEGACY
2080 help
2081 The gob2 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 Zacariasc2e3d0b2015-01-15 11:30:17 -03002085config BR2_PACKAGE_DISTCC
2086 bool "distcc target package removed"
2087 select BR2_LEGACY
2088 help
2089 The distcc target package has been removed, it's been
2090 deprecated for some time now and was essentially useless
2091 without a target toolchain.
2092
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03002093config BR2_PACKAGE_HASERL_VERSION_0_8_X
2094 bool "haserl 0.8.x version removed"
2095 select BR2_LEGACY
2096 help
2097 The 0.8.x version option for haserl has been removed since it
2098 has been deprecated for some time now.
2099 You should be able to use the 0.9.x version without issues.
2100
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03002101config BR2_PACKAGE_STRONGSWAN_TOOLS
2102 bool "strongswan option has been removed"
2103 select BR2_LEGACY
2104 select BR2_PACKAGE_STRONGSWAN_PKI
2105 select BR2_PACKAGE_STRONGSWAN_SCEP
2106 help
2107 The tools option has been removed upstream and the different tools
2108 have been split between the pki and scep options, with others
2109 deprecated.
2110
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002111config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002112 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002113 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002114 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002115 According to the github project page:
2116 https://github.com/pipelka/xbmc-addon-xvdr
2117 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002118
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01002119config BR2_PACKAGE_XBMC_PVR_ADDONS
2120 bool "xbmc options have been renamed"
2121 select BR2_LEGACY
2122 select BR2_PACKAGE_KODI_PVR_ADDONS
2123 help
2124 The XBMC media center project was renamed to Kodi entertainment center
2125
Bernd Kuhls35784592014-12-23 18:46:27 +01002126config BR2_PACKAGE_XBMC
2127 bool "xbmc options have been renamed"
2128 select BR2_LEGACY
2129 select BR2_PACKAGE_KODI
2130 help
2131 The XBMC media center project was renamed to Kodi entertainment center
2132
2133config BR2_PACKAGE_XBMC_ALSA_LIB
2134 bool "xbmc options have been renamed"
2135 select BR2_LEGACY
2136 select BR2_PACKAGE_KODI_ALSA_LIB
2137 help
2138 The XBMC media center project was renamed to Kodi entertainment center
2139
2140config BR2_PACKAGE_XBMC_AVAHI
2141 bool "xbmc options have been renamed"
2142 select BR2_LEGACY
2143 select BR2_PACKAGE_KODI_AVAHI
2144 help
2145 The XBMC media center project was renamed to Kodi entertainment center
2146
2147config BR2_PACKAGE_XBMC_DBUS
2148 bool "xbmc options have been renamed"
2149 select BR2_LEGACY
2150 select BR2_PACKAGE_KODI_DBUS
2151 help
2152 The XBMC media center project was renamed to Kodi entertainment center
2153
2154config BR2_PACKAGE_XBMC_LIBBLURAY
2155 bool "xbmc options have been renamed"
2156 select BR2_LEGACY
2157 select BR2_PACKAGE_KODI_LIBBLURAY
2158 help
2159 The XBMC media center project was renamed to Kodi entertainment center
2160
2161config BR2_PACKAGE_XBMC_GOOM
2162 bool "xbmc options have been renamed"
2163 select BR2_LEGACY
2164 select BR2_PACKAGE_KODI_GOOM
2165 help
2166 The XBMC media center project was renamed to Kodi entertainment center
2167
2168config BR2_PACKAGE_XBMC_RSXS
2169 bool "xbmc options have been renamed"
2170 select BR2_LEGACY
2171 select BR2_PACKAGE_KODI_RSXS
2172 help
2173 The XBMC media center project was renamed to Kodi entertainment center
2174
2175config BR2_PACKAGE_XBMC_LIBCEC
2176 bool "xbmc options have been renamed"
2177 select BR2_LEGACY
2178 select BR2_PACKAGE_KODI_LIBCEC
2179 help
2180 The XBMC media center project was renamed to Kodi entertainment center
2181
2182config BR2_PACKAGE_XBMC_LIBMICROHTTPD
2183 bool "xbmc options have been renamed"
2184 select BR2_LEGACY
2185 select BR2_PACKAGE_KODI_LIBMICROHTTPD
2186 help
2187 The XBMC media center project was renamed to Kodi entertainment center
2188
2189config BR2_PACKAGE_XBMC_LIBNFS
2190 bool "xbmc options have been renamed"
2191 select BR2_LEGACY
2192 select BR2_PACKAGE_KODI_LIBNFS
2193 help
2194 The XBMC media center project was renamed to Kodi entertainment center
2195
2196config BR2_PACKAGE_XBMC_RTMPDUMP
2197 bool "xbmc options have been renamed"
2198 select BR2_LEGACY
2199 select BR2_PACKAGE_KODI_RTMPDUMP
2200 help
2201 The XBMC media center project was renamed to Kodi entertainment center
2202
2203config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
2204 bool "xbmc options have been renamed"
2205 select BR2_LEGACY
2206 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
2207 help
2208 The XBMC media center project was renamed to Kodi entertainment center
2209
2210config BR2_PACKAGE_XBMC_LIBSMBCLIENT
2211 bool "xbmc options have been renamed"
2212 select BR2_LEGACY
2213 select BR2_PACKAGE_KODI_LIBSMBCLIENT
2214 help
2215 The XBMC media center project was renamed to Kodi entertainment center
2216
2217config BR2_PACKAGE_XBMC_LIBTHEORA
2218 bool "xbmc options have been renamed"
2219 select BR2_LEGACY
2220 select BR2_PACKAGE_KODI_LIBTHEORA
2221 help
2222 The XBMC media center project was renamed to Kodi entertainment center
2223
2224config BR2_PACKAGE_XBMC_LIBUSB
2225 bool "xbmc options have been renamed"
2226 select BR2_LEGACY
2227 select BR2_PACKAGE_KODI_LIBUSB
2228 help
2229 The XBMC media center project was renamed to Kodi entertainment center
2230
2231config BR2_PACKAGE_XBMC_LIBVA
2232 bool "xbmc options have been renamed"
2233 select BR2_LEGACY
2234 select BR2_PACKAGE_KODI_LIBVA
2235 help
2236 The XBMC media center project was renamed to Kodi entertainment center
2237
2238config BR2_PACKAGE_XBMC_WAVPACK
2239 bool "xbmc options have been renamed"
2240 select BR2_LEGACY
2241 select BR2_PACKAGE_KODI_WAVPACK
2242 help
2243 The XBMC media center project was renamed to Kodi entertainment center
2244
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002245config BR2_PREFER_STATIC_LIB
2246 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01002247 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002248 help
2249 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
2250 highlights the fact that the option no longer "prefers"
2251 static libraries, but "enforces" static libraries (i.e
2252 shared libraries are completely unused).
2253
Samuel Martina44b1c12014-12-14 17:24:24 +01002254 Take care of updating the type of libraries you want under the
2255 "Build options" menu.
2256
Bernd Kuhls35784592014-12-23 18:46:27 +01002257###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02002258comment "Legacy options removed in 2014.11"
2259
Peter Korsgaarda52bad82014-11-09 00:15:24 +01002260config BR2_x86_generic
2261 bool "x86 generic variant has been removed"
2262 select BR2_LEGACY
2263 help
2264 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02002265 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01002266
Andreas Larsson40e18f22014-10-30 09:29:36 +01002267config BR2_GCC_VERSION_4_4_X
2268 bool "gcc 4.4.x has been removed"
2269 select BR2_LEGACY
2270 help
2271 The 4.4.x version of gcc has been removed. Use a newer
2272 version instead.
2273
Andreas Larsson43b78e72014-10-30 09:29:35 +01002274config BR2_sparc_sparchfleon
2275 bool "sparchfleon CPU has been removed"
2276 select BR2_LEGACY
2277 help
2278 The sparchfleon CPU was only supported in a patched gcc 4.4
2279 version. Its support has been removed in favor of the leon3
2280 CPU starting from gcc 4.8.x.
2281
2282config BR2_sparc_sparchfleonv8
2283 bool "sparchfleonv8 CPU has been removed"
2284 select BR2_LEGACY
2285 help
2286 The sparchfleonv8 CPU was only supported in a patched gcc
2287 4.4 version. Its support has been removed in favor of the
2288 leon3 CPU starting from gcc 4.8.x.
2289
2290config BR2_sparc_sparcsfleon
2291 bool "sparcsfleon CPU has been removed"
2292 select BR2_LEGACY
2293 help
2294 The sparcsfleon CPU was only supported in a patched gcc 4.4
2295 version. Its support has been removed in favor of the leon3
2296 CPU starting from gcc 4.8.x.
2297
2298config BR2_sparc_sparcsfleonv8
2299 bool "sparcsfleonv8 CPU has been removed"
2300 select BR2_LEGACY
2301 help
2302 The sparcsfleonv8 CPU was only supported in a patched gcc
2303 4.4 version. Its support has been removed in favor of the
2304 leon3 CPU starting from gcc 4.8.x.
2305
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02002306config BR2_PACKAGE_XLIB_LIBPCIACCESS
2307 bool "xlib-libpciaccess option has been renamed"
2308 depends on BR2_PACKAGE_XORG7
2309 select BR2_LEGACY
2310 select BR2_PACKAGE_LIBPCIACCESS
2311 help
2312 libpciaccess neither depends on X11 nor Xlib. Thus the
2313 package has been renamed BR2_PACKAGE_LIBPCIACCESS
2314
Yann E. MORINb581bba2014-09-21 20:38:13 +02002315config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
2316 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002317 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02002318 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
2319 help
2320 The Xceive xc5000 option now also handles older firmwares from
2321 Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
2322 from Cresta, who bought Xceive.
2323
Yann E. MORINdac546e2014-09-21 20:38:12 +02002324config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2325 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002326 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02002327 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2328 help
2329 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2330 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2331 to better account for the fact that a T5 variant exists.
2332
Yann E. MORIN120136e2014-09-21 20:38:09 +02002333config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
2334 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002335 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02002336 help
2337 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
2338 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
2339 select it in:
2340 Target packages -> Hardware handling ->
2341 Firmware -> linux-firmware -> WiFi firmware ->
2342 iwlwifi 3160/726x revision to use (revision 7)
2343
2344config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
2345 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002346 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02002347 help
2348 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
2349 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
2350 select it in:
2351 Target packages -> Hardware handling ->
2352 Firmware -> linux-firmware -> WiFi firmware ->
2353 iwlwifi 3160/726x revision to use (revision 8)
2354
2355###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002356comment "Legacy options removed in 2014.08"
2357
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02002358config BR2_PACKAGE_LIBELF
2359 bool "libelf has been removed"
2360 select BR2_PACKAGE_ELFUTILS
2361 select BR2_LEGACY
2362 help
2363 The libelf package provided an old version of the libelf library
2364 and is deprecated. The libelf library is now provided by the
2365 elfutils package.
2366
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002367config BR2_KERNEL_HEADERS_3_8
2368 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002369 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002370 select BR2_LEGACY
2371 help
2372 Version 3.8.x of the Linux kernel headers have been deprecated
2373 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002374 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002375 automatically selected in your configuration.
2376
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02002377config BR2_PACKAGE_GETTEXT_TOOLS
2378 bool "support for gettext-tools on target has been removed"
2379 select BR2_LEGACY
2380 help
2381 The option to install the gettext utilities on the target
2382 has been removed. This is not necessary as Buildroot is not
2383 designed to provide a full development environment on the
2384 target. gettext tools should be used on the build machine
2385 instead.
2386
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002387config BR2_PACKAGE_PROCPS
2388 bool "procps has been replaced by procps-ng"
2389 select BR2_PACKAGE_PROCPS_NG
2390 select BR2_LEGACY
2391 help
2392 The procps package has been replaced by the equivalent procps-ng.
2393
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02002394config BR2_BINUTILS_VERSION_2_20_1
2395 bool "binutils 2.20.1 has been removed"
2396 select BR2_LEGACY
2397 help
2398 The 2.20.1 version of binutils has been removed. Use a newer
2399 version instead.
2400
2401config BR2_BINUTILS_VERSION_2_21
2402 bool "binutils 2.21 has been removed"
2403 select BR2_LEGACY
2404 help
2405 The 2.21 version of binutils has been removed. Use a newer
2406 version instead.
2407
2408config BR2_BINUTILS_VERSION_2_23_1
2409 bool "binutils 2.23.1 has been removed"
2410 select BR2_LEGACY
2411 help
2412 The 2.23.1 version of binutils has been removed. Use a newer
2413 version instead.
2414
Thomas Petazzoni506b9642014-07-01 20:03:03 +02002415config BR2_UCLIBC_VERSION_0_9_32
2416 bool "uclibc 0.9.32 has been removed"
2417 select BR2_LEGACY
2418 help
2419 The 0.9.32 version of uClibc has been removed. Use a newer
2420 version instead.
2421
Thomas Petazzonid10e0802014-07-01 20:03:06 +02002422config BR2_GCC_VERSION_4_3_X
2423 bool "gcc 4.3.x has been removed"
2424 select BR2_LEGACY
2425 help
2426 The 4.3.x version of gcc has been removed. Use a newer
2427 version instead.
2428
2429config BR2_GCC_VERSION_4_6_X
2430 bool "gcc 4.6.x has been removed"
2431 select BR2_LEGACY
2432 help
2433 The 4.6.x version of gcc has been removed. Use a newer
2434 version instead.
2435
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002436config BR2_GDB_VERSION_7_4
2437 bool "gdb 7.4 has been removed"
2438 select BR2_LEGACY
2439 help
2440 The 7.4 version of gdb has been removed. Use a newer version
2441 instead.
2442
2443config BR2_GDB_VERSION_7_5
2444 bool "gdb 7.5 has been removed"
2445 select BR2_LEGACY
2446 help
2447 The 7.5 version of gdb has been removed. Use a newer version
2448 instead.
2449
Thomas Petazzonib18dca02014-07-01 20:03:09 +02002450config BR2_BUSYBOX_VERSION_1_19_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_20_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
2466config BR2_BUSYBOX_VERSION_1_21_X
2467 bool "busybox version selection has been removed"
2468 select BR2_LEGACY
2469 help
2470 The possibility of selecting the Busybox version has been
2471 removed. Use the latest version provided by the Busybox
2472 package instead.
2473
Ezequiel García07ac0452014-07-05 18:07:40 -03002474config BR2_PACKAGE_LIBV4L_DECODE_TM6000
2475 bool "decode_tm6000"
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_IR_KEYTABLE
2483 bool "ir-keytable"
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_COMPLIANCE
2491 bool "v4l2-compliance"
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_CTL
2499 bool "v4l2-ctl"
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
2506config BR2_PACKAGE_LIBV4L_V4L2_DBG
2507 bool "v4l2-dbg"
2508 select BR2_PACKAGE_LIBV4L_UTILS
2509 select BR2_LEGACY
2510 help
2511 This libv4l option has been deprecated and replaced by a single
2512 option to build all the libv4l utilities.
2513
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002514###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002515comment "Legacy options removed in 2014.05"
2516
Peter Seiderer4990a382014-04-23 00:12:23 +02002517config BR2_PACKAGE_EVTEST_CAPTURE
2518 bool "evtest-capture support removed (dropped since evtest 1.31)"
2519 select BR2_LEGACY
2520 help
2521 Support for evtest-capture has been removed (dropped from
2522 evtest package since version 1.31), use evemu package
2523 instead.
2524
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002525config BR2_KERNEL_HEADERS_3_6
2526 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002527 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002528 select BR2_LEGACY
2529 help
2530 Version 3.6.x of the Linux kernel headers have been deprecated
2531 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002532 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002533 automatically selected in your configuration.
2534
2535config BR2_KERNEL_HEADERS_3_7
2536 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002537 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002538 select BR2_LEGACY
2539 help
2540 Version 3.7.x of the Linux kernel headers have been deprecated
2541 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002542 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002543 automatically selected in your configuration.
2544
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02002545config BR2_PACKAGE_VALA
2546 bool "vala target package has been removed"
2547 select BR2_LEGACY
2548 help
2549 The 'vala' target package has been removed since it has been
2550 deprecated for more than four buildroot releases.
2551 Note: the host vala package still exists.
2552
Yann E. MORINd6a37912014-04-07 21:58:03 +02002553config BR2_TARGET_TZ_ZONELIST
2554 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
2555
2556config BR2_PACKAGE_TZDATA_ZONELIST
2557 string "tzdata: the timezone list option has been renamed"
2558 help
2559 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
2560 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
2561 menu. You'll need to select BR2_TARGET_TZ_INFO.
2562
2563config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
2564 bool
2565 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
2566 select BR2_LEGACY
2567
Yann E. MORINc97aeb72014-04-05 17:21:43 +02002568config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
2569 bool "Lua command-line editing none has been renamed"
2570 select BR2_LEGACY
2571 help
2572 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
2573 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
2574 it in the corresponding choice.
2575
2576config BR2_PACKAGE_LUA_INTERPRETER_READLINE
2577 bool "Lua command-line editing using readline has been renamed"
2578 select BR2_LEGACY
2579 help
2580 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
2581 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
2582 it in the corresponding choice.
2583
2584config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
2585 bool "Lua command-line editing using linenoise has been renamed"
2586 select BR2_LEGACY
2587 help
2588 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
2589 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
2590 it in the corresponding choice.
2591
Yann E. MORIN365ae612014-03-28 01:00:24 +01002592config BR2_PACKAGE_DVB_APPS_UTILS
2593 bool "dvb-apps utilities now built by default"
2594 select BR2_LEGACY
2595 help
2596 The dvb-apps utilities are now always built when the dvb-apps
2597 package is selected.
2598
Yann E. MORIN971e3312014-03-01 15:52:56 +01002599config BR2_KERNEL_HEADERS_SNAP
2600 bool "Local Linux snapshot support removed"
2601 select BR2_LEGACY
2602 help
2603 Support for using a custom snapshot to install the Linux
2604 kernel headers has been removed.
2605
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002606config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
2607 bool "/dev management by udev removed"
2608 select BR2_LEGACY
2609 help
2610 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002611 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002612
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002613 Therefore, if you are not using 'systemd' as init system, you
2614 must choose 'Dynamic using eudev' in the '/dev management'
2615 menu to get the same behaviour as in your old configuration.
2616
2617 If you are using 'systemd', its internal implementation of
2618 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002619
2620 You must also check the packages depending on 'udev' are still
2621 selected.
2622
2623config BR2_PACKAGE_UDEV
2624 bool "udev is now a virtual package"
2625 select BR2_LEGACY
2626 select BR2_PACKAGE_HAS_UDEV
2627 help
2628 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002629 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002630
2631 Your old configuration refers to packages depending on 'udev',
2632 either for build or at runtime.
2633
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002634 Check that a 'udev' provider is selected. If you are not using
2635 'systemd' as init system, 'eudev' should be selected, which is
2636 the case if '/dev management' is set to 'Dynamic using eudev'.
2637
2638 If you are using 'systemd', its internal implementation of 'udev'
2639 is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002640
2641config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002642 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002643 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002644 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
2645 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002646 help
2647 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002648 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002649
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002650 If you are not using 'systemd' as init system, udev rules
2651 generation will be handled by 'eudev'. Check that
2652 '/dev management' is set to 'Dynamic using eudev' to get
2653 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002654
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002655 If you are using 'systemd', it internal implementation of 'udev'
2656 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002657
2658config BR2_PACKAGE_UDEV_ALL_EXTRAS
2659 bool "udev extras removed"
2660 select BR2_LEGACY
2661 help
2662 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002663 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002664
2665 The option to enable the extra features of 'udev' (gudev, ...)
2666 has been removed. These features are automatically enabled in
2667 the 'udev' providers if the dependencies are selected. For
2668 example, selecting 'libglib2' will trigger the build of gudev.
2669
Bernd Kuhls5562be12014-03-01 16:41:10 +01002670config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
2671 bool "xlib-libpthread-stubs option has been renamed"
2672 depends on BR2_PACKAGE_XORG7
2673 select BR2_LEGACY
2674 select BR2_PACKAGE_LIBPTHREAD_STUBS
2675 help
2676 The pthread stubs neither depend on X11 nor Xlib. Thus the
2677 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
2678
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002679###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01002680comment "Legacy options removed in 2014.02"
2681
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002682config BR2_sh2
2683 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002684 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002685 help
2686 Due to an inexistent user base and generally poor Linux
2687 support, the support for the SH2 architecture was removed.
2688
2689config BR2_sh3
2690 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002691 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002692 help
2693 Due to an inexistent user base and generally poor Linux
2694 support, the support for the SH3 architecture was removed.
2695
2696config BR2_sh3eb
2697 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002698 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002699 help
2700 Due to an inexistent user base and generally poor Linux
2701 support, the support for the SH3eb architecture was removed.
2702
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002703config BR2_KERNEL_HEADERS_3_1
2704 bool "kernel headers version 3.1.x are no longer supported"
2705 select BR2_KERNEL_HEADERS_3_2
2706 select BR2_LEGACY
2707 help
2708 Version 3.1.x of the Linux kernel headers have been deprecated
2709 for more than four buildroot releases and are now removed.
2710 As an alternative, version 3.2.x of the headers have been
2711 automatically selected in your configuration.
2712
2713config BR2_KERNEL_HEADERS_3_3
2714 bool "kernel headers version 3.3.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002715 select BR2_KERNEL_HEADERS_3_2
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002716 select BR2_LEGACY
2717 help
2718 Version 3.3.x of the Linux kernel headers have been deprecated
2719 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002720 As an alternative, version 3.2.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002721 automatically selected in your configuration.
2722
2723config BR2_KERNEL_HEADERS_3_5
2724 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002725 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002726 select BR2_LEGACY
2727 help
2728 Version 3.5.x of the Linux kernel headers have been deprecated
2729 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002730 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002731 automatically selected in your configuration.
2732
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002733config BR2_GDB_VERSION_7_2
2734 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002735 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002736 select BR2_LEGACY
2737 help
2738 Version 7.2.x of gdb has been deprecated for more than four
2739 buildroot releases and is now removed. As an alternative, gdb
2740 7.5.x has been automatically selected in your configuration.
2741
2742config BR2_GDB_VERSION_7_3
2743 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002744 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002745 select BR2_LEGACY
2746 help
2747 Version 7.3.x of gdb has been deprecated for more than four
2748 buildroot releases and is now removed. As an alternative, gdb
2749 7.5.x has been automatically selected in your configuration.
2750
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01002751config BR2_PACKAGE_CCACHE
2752 bool "ccache target package has been removed"
2753 select BR2_LEGACY
2754 help
2755 The 'ccache' target package has been removed since it has been
2756 deprecated for more than four buildroot releases.
2757 Note: using ccache for speeding up builds is still supported.
2758
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01002759config BR2_HAVE_DOCUMENTATION
2760 bool "support for documentation on target has been removed"
2761 select BR2_LEGACY
2762 help
2763 Support for documentation on target has been removed since it has
2764 been deprecated for more than four buildroot releases.
2765
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01002766config BR2_PACKAGE_AUTOMAKE
2767 bool "automake target package has been removed"
2768 select BR2_LEGACY
2769 help
2770 The 'automake' target package has been removed since it has been
2771 deprecated for more than four buildroot releases.
2772 Note: the host automake still exists.
2773
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01002774config BR2_PACKAGE_AUTOCONF
2775 bool "autoconf target package has been removed"
2776 select BR2_LEGACY
2777 help
2778 The 'autoconf' target package has been removed since it has been
2779 deprecated for more than four buildroot releases.
2780 Note: the host autoconf still exists.
2781
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01002782config BR2_PACKAGE_XSTROKE
2783 bool "xstroke has been removed"
2784 select BR2_LEGACY
2785 help
2786 The 'xstroke' package has been removed since it has been
2787 deprecated for more than four buildroot releases.
2788
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01002789config BR2_PACKAGE_LZMA
2790 bool "lzma target package has been removed"
2791 select BR2_LEGACY
2792 help
2793 The 'lzma' target package has been removed since it has been
2794 deprecated for more than four buildroot releases.
2795 Note: generating lzma-compressed rootfs images is still supported.
2796
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01002797config BR2_PACKAGE_TTCP
2798 bool "ttcp has been removed"
2799 select BR2_LEGACY
2800 help
2801 The 'ttcp' package has been removed since it has been
2802 deprecated for more than four buildroot releases.
2803
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002804config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002805 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002806 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002807 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002808 help
2809 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002810 to 'libllcp'. We have added a new package for 'libllcp' and bumped
2811 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002812
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00002813config BR2_PACKAGE_MYSQL_CLIENT
2814 bool "MySQL client renamed to MySQL"
2815 select BR2_LEGACY
2816 select BR2_PACKAGE_MYSQL
2817 help
2818 The option has been renamed BR2_PACKAGE_MYSQL
2819
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01002820config BR2_PACKAGE_SQUASHFS3
2821 bool "squashfs3 has been removed"
2822 select BR2_LEGACY
2823 select BR2_PACKAGE_SQUASHFS
2824 help
2825 The 'squashfs3' package has been removed since it has been
2826 deprecated for more than four buildroot releases. Package
2827 'squashfs' (4) has been selected automatically as replacement.
2828
2829config BR2_TARGET_ROOTFS_SQUASHFS3
2830 bool "squashfs3 rootfs support has been removed"
2831 select BR2_LEGACY
2832 help
2833 Together with the removal of the squashfs3 package, support
2834 for squashfs3 root filesystems has been removed too. Squashfs
2835 root filesystems will automatically use squashfs4 now.
2836
Arnaud Aujon560fe852013-12-15 20:23:12 +01002837config BR2_PACKAGE_NETKITBASE
2838 bool "netkitbase has been removed"
2839 select BR2_LEGACY
2840 help
2841 The 'netkitbase' package has been removed since it has been
2842 deprecated since 2012.11. This package provided 'inetd'
2843 which is replaced by 'xinet' and 'ping' which is replaced by
2844 'busybox' or 'fping'.
2845
2846config BR2_PACKAGE_NETKITTELNET
2847 bool "netkittelnet has been removed"
2848 select BR2_LEGACY
2849 help
2850 The 'netkittelnet' package has been removed since it has
2851 been deprecated since 2012.11. 'busybox' provides a telnet
2852 client and should be used instead.
2853
Francois Perrad63058f82014-01-11 16:42:09 +01002854config BR2_PACKAGE_LUASQL
2855 bool "luasql has been replaced by luasql-sqlite3"
2856 select BR2_PACKAGE_LUASQL_SQLITE3
2857 select BR2_LEGACY
2858 help
2859 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2860
Francois Perrada6c53472014-01-11 16:42:08 +01002861config BR2_PACKAGE_LUACJSON
2862 bool "luacjson has been replaced by lua-cjson"
2863 select BR2_PACKAGE_LUA_CJSON
2864 select BR2_LEGACY
2865 help
2866 The option has been renamed BR2_PACKAGE_LUA_CJSON.
2867
Arnaud Aujon560fe852013-12-15 20:23:12 +01002868###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002869comment "Legacy options removed in 2013.11"
2870
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01002871config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2872 bool "lvm2's 'dmsetup only' option removed"
2873 select BR2_LEGACY
2874 help
2875 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2876 led to problems with other packages that need the full lvm2
2877 suite. Therefore, the option has been replaced with the positive
2878 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2879
2880# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2881# in order to automatically propagate old configs
2882
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01002883config BR2_PACKAGE_QT_JAVASCRIPTCORE
2884 bool "qt javascriptcore option removed"
2885 select BR2_LEGACY
2886 help
2887 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2888 force the activation or disabling of the JIT compiler in the
2889 Qt Javascript interpreter. However, the JIT compiler is not
2890 available for all architectures, so forcing its activation
2891 does not always work. Moreover, Qt knows by itself for which
2892 architectures JIT support is possible, and will
2893 automatically enable it if possible.
2894
2895 Therefore, this option was in fact useless, and causing
2896 build problems when enabled on architectures for which the
2897 JIT support was not available. It has been removed, and
2898 there is no replacement: Qt will enable JIT at compile time
2899 when possible.
2900
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002901config BR2_PACKAGE_MODULE_INIT_TOOLS
2902 bool "module-init-tools replaced by kmod"
2903 select BR2_PACKAGE_KMOD
2904 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01002905 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002906 help
2907 The 'module-init-tools' package has been removed, since it
2908 has been depracated upstream and replaced by 'kmod'.
2909
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02002910config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2911 string "u-boot: the git repository URL option has been renamed"
2912 help
2913 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2914 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2915
2916config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2917 bool
2918 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2919 select BR2_LEGACY
2920
2921# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2922# boot/uboot/Config.in
2923
2924config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2925 string "u-boot: the git repository version option has been renamed"
2926 help
2927 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
2928 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
2929
2930config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
2931 bool
2932 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
2933 select BR2_LEGACY
2934
2935# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
2936# boot/uboot/Config.in
2937
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02002938config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
2939 string "linux: the git repository URL option has been renamed"
2940 help
2941 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
2942 been renamed to
2943 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
2944
2945config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
2946 bool
2947 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
2948 select BR2_LEGACY
2949
2950# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
2951# linux/Config.in
2952
2953config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
2954 string "linux: the git repository version option has been renamed"
2955 help
2956 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
2957 been renamed to
2958 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
2959
2960config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
2961 bool
2962 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
2963 select BR2_LEGACY
2964
2965# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
2966# linux/Config.in
2967
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002968###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002969comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002970
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02002971config BR2_ARM_OABI
2972 bool "ARM OABI support has been removed"
2973 select BR2_LEGACY
2974 help
2975 The support for the ARM OABI was deprecated since a while,
2976 and has been removed completely from Buildroot. It is also
2977 deprecated in upstream gcc, since gcc 4.7. People should
2978 switch to EABI instead, which should not be a problem as
2979 long as you don't have pre-built OABI binaries in your
2980 system that you can't recompile.
2981
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002982config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
2983 bool "dosfstools dosfsck renamed to fsck.fat"
2984 select BR2_LEGACY
2985 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
2986 help
2987 dosfsck was renamed upstream to fsck.fat for consistency.
2988
2989config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
2990 bool "dosfstools dosfslabel renamed to fatlabel"
2991 select BR2_LEGACY
2992 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
2993 help
2994 doslabel was renamed upstream to fatlabel for consistency.
2995
2996config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
2997 bool "dosfstools mkdosfs renamed to mkfs.fat"
2998 select BR2_LEGACY
2999 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
3000 help
3001 mkdosfs was renamed upstream to mkfs.fat for consistency.
3002
Thomas Petazzonie21db002013-06-30 21:28:57 +02003003config BR2_ELF2FLT
3004 bool "the elf2flt option has been renamed"
3005 select BR2_LEGACY
3006 help
3007 The BR2_ELF2FLT option has been renamed to
3008 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
3009 the package infrastructure.
3010
Thomas Petazzonid8060052013-07-16 10:03:17 +02003011config BR2_VFP_FLOAT
3012 bool "the ARM VFP floating point option has been renamed"
3013 select BR2_LEGACY
3014 help
3015 Due to a major refactoring of the floating-point handling of
3016 the ARM architecture support, the BR2_VFP_FLOAT option has
3017 been replaced with a choice of options that allows to select
3018 between various VFP versions/capabilities.
3019
Samuel Martinba8f82b2013-08-30 06:08:59 +02003020config BR2_PACKAGE_GCC_TARGET
3021 bool "gcc on the target filesystem has been removed"
3022 select BR2_LEGACY
3023 help
3024 The support for gcc in the target filesystem was deprecated
3025 since a while, and has been removed completely from Buildroot.
3026 See Buildroot's documentation for more explanations.
3027
3028config BR2_HAVE_DEVFILES
3029 bool "development files in target filesystem has been removed"
3030 select BR2_LEGACY
3031 help
3032 The installation of the development files in the target
3033 filesystem was deprecated since a while, and has been removed
3034 completely from Buildroot.
3035 See Buildroot's documentation for more explanations.
3036
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003037###############################################################################
3038comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +00003039
3040config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
3041 bool "Realtek 8192 replaced by Realtek 81xx"
3042 select BR2_LEGACY
3043 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
3044 help
3045 Now covers the whole Realtek 81xx familly: 8188/8192.
3046
3047config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
3048 bool "Realtek 8712 replaced by Realtek 87xx"
3049 select BR2_LEGACY
3050 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
3051 help
3052 Now covers the whole Realtek 87xx familly: 8712/8723.
3053
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003054###############################################################################
3055comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00003056
Gustavo Zacarias94744212013-04-04 07:29:45 +00003057config BR2_sa110
3058 bool "sa110 ARM target switched to strongarm"
3059 select BR2_LEGACY
3060 select BR2_strongarm
3061 help
3062 The SA110 is the same as a generic StrongARM, it just differs
3063 in speed, peripherals and cache.
3064
3065config BR2_sa1100
3066 bool "sa1100 ARM target switched to strongarm"
3067 select BR2_LEGACY
3068 select BR2_strongarm
3069 help
3070 The SA1100 is the same as a generic StrongARM, it just differs
3071 in speed, peripherals and cache.
3072
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00003073config BR2_PACKAGE_GDISK
3074 bool "gdisk has been replaced by gptfdisk"
3075 select BR2_LEGACY
3076 select BR2_PACKAGE_GPTFDISK
3077 help
3078 The option has been renamed BR2_PACKAGE_GPTFDISK.
3079
3080config BR2_PACKAGE_GDISK_GDISK
3081 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
3082 select BR2_LEGACY
3083 select BR2_PACKAGE_GPTFDISK
3084 select BR2_PACKAGE_GPTFDISK_GDISK
3085 help
3086 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
3087
3088config BR2_PACKAGE_GDISK_SGDISK
3089 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
3090 select BR2_LEGACY
3091 select BR2_PACKAGE_GPTFDISK
3092 select BR2_PACKAGE_GPTFDISK_SGDISK
3093 help
3094 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00003095
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +00003096config BR2_PACKAGE_GDB_HOST
3097 bool "gdb for the host option has been renamed"
3098 select BR2_PACKAGE_HOST_GDB
3099 select BR2_LEGACY
3100 help
3101 Due to the conversion of gdb to the package infrastructure,
3102 the BR2_PACKAGE_GDB_HOST option has been renamed
3103 BR2_PACKAGE_HOST_GDB.
3104
Carsten Schoenert76de0f82013-03-10 08:32:46 +00003105config BR2_PACKAGE_DIRECTB_DITHER_RGB16
3106 bool "DirectFB RGB16 dithering option has been renamed"
3107 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
3108 select BR2_LEGACY
3109 help
3110 The option has been renamed
3111 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
3112
3113config BR2_PACKAGE_DIRECTB_TESTS
3114 bool "DirectFB Tests option has been renamed"
3115 select BR2_PACKAGE_DIRECTFB_TESTS
3116 select BR2_LEGACY
3117 help
3118 The option has been renamed
3119 BR2_PACKAGE_DIRECTFB_TESTS.
3120
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003121###############################################################################
3122comment "Legacy options removed in 2012.11"
3123
Thomas Petazzoni12ccc432013-02-07 11:58:45 +00003124config BR2_PACKAGE_CUSTOMIZE
3125 bool "customize package has been removed"
3126 select BR2_LEGACY
3127 help
3128 The 'customize' special package has been removed. Instead,
3129 we recommend to create either your own packages, or use a
3130 post-build script to customize your root filesystem. See
3131 Buildroot's documentation for more details.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00003132
3133config BR2_PACKAGE_XSERVER_xorg
3134 bool "X.org modular server"
3135 select BR2_LEGACY
3136 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
3137 help
3138 The option has been renamed
3139 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
3140
3141config BR2_PACKAGE_XSERVER_tinyx
3142 bool "KDrive / TinyX server"
3143 select BR2_LEGACY
3144 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
3145 help
3146 The option has been renamed
3147 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
3148
3149config BR2_PACKAGE_PTHREAD_STUBS
3150 bool "pthread-stubs option has been renamed"
3151 select BR2_LEGACY
Bernd Kuhls5562be12014-03-01 16:41:10 +01003152 select BR2_PACKAGE_LIBPTHREAD_STUBS
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00003153 help
3154 For consistency reason, the pthread-stubs package has been
Bernd Kuhls5562be12014-03-01 16:41:10 +01003155 renamed to libpthread-stubs.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00003156
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003157###############################################################################
3158comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00003159
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +00003160config BR2_PACKAGE_GETTEXT_STATIC
3161 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
3162 select BR2_LEGACY
3163 help
3164 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
3165
3166
3167config BR2_PACKAGE_LIBINTL
3168 bool "libintl"
3169 select BR2_LEGACY
3170 select BR2_PACKAGE_GETTEXT
3171 help
3172 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
3173 only installs the library, not the executables.
3174
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +00003175config BR2_PACKAGE_INPUT_TOOLS_EVTEST
3176 bool "input-tools evtest is now a separate package evtest"
3177 select BR2_LEGACY
3178 select BR2_PACKAGE_EVTEST
3179 help
3180 The evtest program from input-tools is now a separate package.
3181
Sonic Zhang57133822013-05-03 00:39:34 +00003182config BR2_BFIN_FDPIC
3183 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
3184 select BR2_BINFMT_FDPIC
3185 select BR2_LEGACY
3186
3187config BR2_BFIN_FLAT
3188 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
3189 select BR2_BINFMT_FLAT
3190 select BR2_LEGACY
3191
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00003192endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02003193
3194endif # !SKIP_LEGACY