blob: 08a129106c112c5d497fd93d9ce35fa0f007d637 [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. MORIN0b39b142017-12-27 00:39:04 +0100138comment "Note: legacy options older than 5 years have been "
139comment "removed, and configuration files that still have "
140comment "those options set, will fail to build, or run in "
141comment "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###############################################################################
Baruch Siach86dfb422017-11-14 14:02:38 +0200146comment "Legacy options removed in 2018.02"
147
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +0100148config BR2_KERNEL_HEADERS_3_4
149 bool "kernel headers version 3.4.x are no longer supported"
150 select BR2_KERNEL_HEADERS_4_1
151 select BR2_LEGACY
152 help
153 Version 3.4.x of the Linux kernel headers are no longer
154 maintained upstream and are now removed. As an alternative,
155 version 4.1.x of the headers have been automatically
156 selected in your configuration.
157
158config BR2_KERNEL_HEADERS_3_10
159 bool "kernel headers version 3.10.x are no longer supported"
160 select BR2_KERNEL_HEADERS_4_1
161 select BR2_LEGACY
162 help
163 Version 3.10.x of the Linux kernel headers are no longer
164 maintained upstream and are now removed. As an alternative,
165 version 4.1.x of the headers have been automatically
166 selected in your configuration.
167
168config BR2_KERNEL_HEADERS_3_12
169 bool "kernel headers version 3.12.x are no longer supported"
170 select BR2_KERNEL_HEADERS_4_1
171 select BR2_LEGACY
172 help
173 Version 3.12.x of the Linux kernel headers are no longer
174 maintained upstream and are now removed. As an alternative,
175 version 4.1.x of the headers have been automatically
176 selected in your configuration.
177
Romain Naour453d29f2018-01-29 23:39:41 +0100178config BR2_BINUTILS_VERSION_2_27_X
179 bool "binutils version 2.27 support removed"
180 select BR2_LEGACY
181 help
182 Support for binutils version 2.27 has been removed. The
183 current default version (2.29 or later) has been selected
184 instead.
185
Baruch Siach55d79ed2018-01-02 08:16:01 +0200186config BR2_PACKAGE_EEPROG
187 bool "eeprog package removed"
188 select BR2_LEGACY
189 select BR2_PACKAGE_I2C_TOOLS
190 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
191 help
192 The eeprog program is now provided by the i2c-tools package.
193
Baruch Siach86dfb422017-11-14 14:02:38 +0200194config BR2_PACKAGE_GNUPG2_GPGV2
195 bool "gnupg2 gpgv2 option removed"
196 select BR2_LEGACY
197 select BR2_PACKAGE_GNUPG2_GPGV
198 help
199 The gpgv2 executable is now named gpgv. The config option
200 has been renamed accordingly.
201
Gary Bissonf7a7d942018-01-05 15:39:36 +0100202config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
203 bool "Vivante apitrace tool option removed"
204 select BR2_LEGACY
205 help
206 The apitrace tool for Vivante is not provided by the
207 imx-gpu-viv package any longer.
208
209config BR2_PACKAGE_IMX_GPU_VIV_G2D
210 bool "Vivante G2D libraries from imx-gpu-viv removed"
211 select BR2_LEGACY
212 select BR2_PACKAGE_IMX_GPU_G2D
213 help
214 The G2D libraries are now provided by the imx-gpu-g2d package.
215
Baruch Siach86dfb422017-11-14 14:02:38 +0200216###############################################################################
Carlos Santosf52af612017-09-01 21:41:38 -0300217comment "Legacy options removed in 2017.11"
218
Carlos Santos6c10e402017-10-21 20:30:18 -0200219config BR2_PACKAGE_RFKILL
220 bool "rfkill package removed"
221 select BR2_LEGACY
222 select BR2_PACKAGE_UTIL_LINUX
223 select BR2_PACKAGE_UTIL_LINUX_RFKILL
224 help
225 The rfkill program is now provided by the util-linux package.
226
Carlos Santosd4382002017-10-31 08:47:51 -0200227config BR2_PACKAGE_UTIL_LINUX_RESET
228 bool "util-linux reset option removed"
229 select BR2_LEGACY
230 help
231 The util-linux package no longer offers a "reset" command. Use
232 either the reset command provided by BusyBox or select ncurses
233 programs, which will install a symlink from "tset" to reset.
234
Adam Duskett9d6da7a2017-10-17 18:32:18 -0400235config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
236 bool "policycoreutils audit2allow option removed"
237 select BR2_LEGACY
238 select BR2_PACKAGE_SELINUX_PYTHON
239 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
240 help
241 The policycoreutils package no longer offers audit2allow
242 as a option. This package has been moved into the
243 selinux-python package by the SELinux maintainers.
244
245config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
246 bool "policycoreutils restorecond option removed"
247 select BR2_LEGACY
248 select BR2_PACKAGE_RESTORECOND
249 help
250 The policycoreutils package no longer offers restorecond
251 as a option. This package has been moved into a seperate
252 package maintained by the SELinux maintainers.
253
254config BR2_PACKAGE_SEPOLGEN
255 bool "sepolgen package has been removed"
256 select BR2_LEGACY
257 select BR2_PACKAGE_SELINUX_PYTHON
258 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
259 help
260 Sepolgen is no longer a individual package, but instead has
261 been moved into the selinux-python package by the SELinux
262 maintainers.
263
Bernd Kuhls49a9fb02017-09-16 17:15:35 +0200264config BR2_PACKAGE_OPENOBEX_BLUEZ
265 bool "openobex bluez option removed"
266 select BR2_LEGACY
267 select BR2_PACKAGE_BLUEZ_UTILS
268 help
269 The OpenOBEX package no longer offers an option to enable or
270 disable BlueZ support. Instead, BlueZ support is always
271 included when the bluez5_utils or bluez_utils package is
272 selected.
273
274config BR2_PACKAGE_OPENOBEX_LIBUSB
275 bool "openobex libusb option removed"
276 select BR2_LEGACY
277 select BR2_PACKAGE_LIBUSB
278 help
279 The OpenOBEX package no longer offers an option to enable or
280 disable libusb support. Instead, USB support is always
281 included when the libusb package is selected.
282
283config BR2_PACKAGE_OPENOBEX_APPS
284 bool "openobex apps option removed"
285 select BR2_LEGACY
286 help
287 The OpenOBEX package no longer offers an option to enable or
288 disable apps support.
289
290config BR2_PACKAGE_OPENOBEX_SYSLOG
291 bool "openobex syslog option removed"
292 select BR2_LEGACY
293 help
294 The OpenOBEX package no longer offers an option to enable or
295 disable syslog support.
296
297config BR2_PACKAGE_OPENOBEX_DUMP
298 bool "openobex dump option removed"
299 select BR2_LEGACY
300 help
301 The OpenOBEX package no longer offers an option to enable or
302 disable dump support.
303
Alexander Mukhinfca70382017-09-10 13:21:34 +0300304config BR2_PACKAGE_AICCU
305 bool "aiccu utility removed"
306 select BR2_LEGACY
307 help
308 As the SixXS project has ceased its operation on 2017-06-06,
309 the AICCU utility has no use anymore and has been removed.
310
311 https://www.sixxs.net/sunset/
312
Carlos Santosf52af612017-09-01 21:41:38 -0300313config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
314 bool "util-linux login utilities option removed"
315 select BR2_LEGACY
316 select BR2_PACKAGE_UTIL_LINUX_LAST
317 select BR2_PACKAGE_UTIL_LINUX_LOGIN
318 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
319 select BR2_PACKAGE_UTIL_LINUX_SU
320 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
321 help
322 Login utilities (last, login, runuser, su, sulogin) now have
323 their own configuration options in the util-linux menu.
324
325###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +0200326comment "Legacy options removed in 2017.08"
327
Yann E. MORIN144dc9c2017-08-11 18:05:08 +0200328config BR2_TARGET_GRUB
329 bool "grub (aka grub-legacy) has been removed"
330 select BR2_LEGACY
331 help
332 grub-legacy is no longer maintained, and no longer builds with
333 recent binutils versions.
334
335 Use grub2 or syslinux instead.
336
Bin Meng20db0982017-08-30 08:55:25 -0700337config BR2_PACKAGE_SIMICSFS
338 bool "simicsfs support removed"
339 select BR2_LEGACY
340 help
341 Support for simicsfs kernel driver that provides access to a
342 host computer's local filesystem when the target is
343 executing within a SIMICS simulation has been removed.
344
345 Simics is now moving away from the simicsfs kernel module,
346 as the kernel module has required too much maintenance
347 work. Users should move to the user mode Simics agent
348 instead.
349
Thomas Petazzoni0b5dc312017-07-29 15:09:06 +0200350config BR2_BINUTILS_VERSION_2_26_X
351 bool "binutils version 2.26 support removed"
352 select BR2_LEGACY
353 help
354 Support for binutils version 2.26 has been removed. The
355 current default version (2.28 or later) has been selected
356 instead.
357
Yann E. MORINb3b60702017-07-09 05:21:56 -0700358config BR2_XTENSA_OVERLAY_DIR
359 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
Yann E. MORIN15a96d12017-07-09 05:21:55 -0700360 help
Yann E. MORINb3b60702017-07-09 05:21:56 -0700361 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
362 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
363 path to the overlay file, not to the directory containing
364 it.
365
366config BR2_XTENSA_OVERLAY_DIR_WRAP
367 bool
368 default y if BR2_XTENSA_OVERLAY_DIR != ""
369 select BR2_LEGACY
370
371config BR2_XTENSA_CUSTOM_NAME
372 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
373 help
374 The BR2_XTENSA_CUSTOM_NAME option has been removed.
Yann E. MORIN15a96d12017-07-09 05:21:55 -0700375
376config BR2_XTENSA_CUSTOM_NAME_WRAP
377 bool
378 default y if BR2_XTENSA_CUSTOM_NAME != ""
379 select BR2_LEGACY
380
Sébastien Szymanskif47fc952017-07-04 16:47:29 +0200381config BR2_PACKAGE_HOST_MKE2IMG
382 bool "host mke2img has been removed"
383 select BR2_LEGACY
384 help
385 We now call mkfs directly to generate ext2/3/4 filesystem
386 image, so mke2img is no longer necessary.
387
Samuel Martinbee9e882017-07-09 07:00:38 +0200388config BR2_TARGET_ROOTFS_EXT2_BLOCKS
389 int "exact size in blocks has been removed"
390 default 0
391 help
392 This option has been removed in favor of
393 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
394 to the value you had before. Set to 0 here to remove the
395 warning.
396
397config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
398 bool
399 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
400 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
401 select BR2_LEGACY
402
403# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
404
Samuel Martin235b6f12017-07-04 16:47:25 +0200405config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
406 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
407 default 0
408 help
409 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
410 images. It now automatically selects the number of inodes
411 based on the image size. The extra number of inodes can no
412 longer be provided; instead, provide the total number of
413 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
414
415config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
416 bool
417 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
418 select BR2_LEGACY
419
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100420config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
421 bool "cdxaparse removed"
422 select BR2_LEGACY
423
424config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
425 bool "dataurisrc moved to gstreamer1"
426 select BR2_LEGACY
427 help
428 Dataurisrc has moved to gstreamer core and is always built.
429
430config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
431 bool "dccp removed"
432 select BR2_LEGACY
433
434config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
435 bool "hdvparse removed"
436 select BR2_LEGACY
437
438config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
439 bool "mve removed"
440 select BR2_LEGACY
441
442config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
443 bool "nuvdemux removed"
444 select BR2_LEGACY
445
446config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
447 bool "patchdetect removed"
448 select BR2_LEGACY
449
450config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
451 bool "sdi removed"
452 select BR2_LEGACY
453
454config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
455 bool "tta removed"
456 select BR2_LEGACY
457
458config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
459 bool "videomeasure removed"
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +0100460 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100461 select BR2_LEGACY
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +0100462 help
463 videomeasure plugin has been removed and has been replaced by
464 iqa, which has automatically been enabled.
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100465
466config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
467 bool "apexsink removed"
468 select BR2_LEGACY
469
470config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
471 bool "sdl removed"
472 select BR2_LEGACY
473
Vicente Olivert Rierab006fe12017-05-12 11:18:05 +0100474config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
475 bool "mad (*.mp3 audio) removed"
476 select BR2_LEGACY
477
Thomas Petazzoni4c06d242017-07-04 10:11:54 +0200478config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
479 bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
480 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
481 select BR2_LEGACY
482 help
483 The WebRTC plugin in GStreamer 1.x has always been named
484 webrtcdsp, but was wrongly introduced in Buildroot under the
485 name webrtc. Therefore, we have renamed the option to match
486 the actual name of the GStreamer plugin.
487
Yann E. MORIN0d643fd2017-07-01 14:51:21 +0200488config BR2_STRIP_none
489 bool "Strip command 'none' has been removed"
490 select BR2_LEGACY
491 help
492 The strip command choice has been changed into a single
493 boolean option. Please check that the new setting is
494 correct (in the "Build options" sub-menu)
495
Bernd Kuhlsdd4d3c12017-06-11 14:48:51 +0200496config BR2_PACKAGE_BEECRYPT_CPP
497 bool "C++ support removed in beecrypt"
498 select BR2_LEGACY
499 help
500 Support for C++ depends on icu. The beecrypt package is
501 incompatible with icu 59+.
502
Peter Korsgaard622ff3d2017-06-22 00:07:42 +0200503config BR2_PACKAGE_SPICE_CLIENT
504 bool "spice client support removed"
505 select BR2_LEGACY
506 help
507 Spice client support has been removed upstream. The
508 functionality now lives in the spice-gtk widget and
509 virt-viewer.
510
511config BR2_PACKAGE_SPICE_GUI
512 bool "spice gui support removed"
513 select BR2_LEGACY
514 help
515 Spice gui support has been removed upstream. The
516 functionality now lives in the spice-gtk widget and
517 virt-viewer.
518
Peter Korsgaard6f2c0222017-06-22 00:07:41 +0200519config BR2_PACKAGE_SPICE_TUNNEL
520 bool "spice network redirection removed"
521 select BR2_LEGACY
522 help
523 Spice network redirection, aka tunnelling has been removed
524 upstream.
525
Koen Martens438b2d12017-06-20 20:54:49 +0200526config BR2_PACKAGE_INPUT_TOOLS
527 bool "input-tools removed"
528 select BR2_LEGACY
529 select BR2_PACKAGE_LINUXCONSOLETOOLS
530 help
531 input-tools has been removed, it is replaced by
532 linuxconsoletools, which has automatically been enabled.
533
534config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
535 bool "inputattach moved to linuxconsoletools"
536 select BR2_LEGACY
537 select BR2_PACKAGE_LINUXCONSOLETOOLS
538 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
539 help
540 input-tools has been removed, inputattach is now part
541 of linuxconsoletools, which has automatically been
542 enabled.
543
544config BR2_PACKAGE_INPUT_TOOLS_JSCAL
545 bool "jscal moved to linuxconsoletools"
546 select BR2_LEGACY
547 select BR2_PACKAGE_LINUXCONSOLETOOLS
548 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
549 help
550 input-tools has been removed, jscal is now part
551 of linuxconsoletools, which has automatically been
552 enabled.
553
554config BR2_PACKAGE_INPUT_TOOLS_JSTEST
555 bool "jstest moved to linuxconsoletools"
556 select BR2_LEGACY
557 select BR2_PACKAGE_LINUXCONSOLETOOLS
558 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
559 help
560 input-tools has been removed, jstest is now part
561 of linuxconsoletools, which has automatically been
562 enabled.
563
Baruch Siach6510a822017-06-16 06:32:48 +0300564config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
565 bool "SH Sourcery toolchain has been removed"
566 select BR2_LEGACY
567 help
568 The Sourcery CodeBench toolchain for the sh architecture has
569 been removed, since it uses glibc older than 2.17 that requires
570 -lrt to link executables using clock_* system calls. This makes
571 this toolchain difficult to maintain over time.
572
Baruch Siach06cac642017-06-16 06:32:47 +0300573config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
574 bool "x86 Sourcery toolchain has been removed"
575 select BR2_LEGACY
576 help
577 The Sourcery CodeBench toolchain for the x86 architecture has
578 been removed, since it uses glibc older than 2.17 that requires
579 -lrt to link executables using clock_* system calls. This makes
580 this toolchain difficult to maintain over time.
581
Romain Naourf6695212017-05-23 22:24:40 +0200582config BR2_GCC_VERSION_4_8_X
583 bool "gcc 4.8.x support removed"
584 select BR2_LEGACY
585 help
586 Support for gcc version 4.8.x has been removed. The current
587 default version (5.x or later) has been selected instead.
588
589###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300590comment "Legacy options removed in 2017.05"
591
Romain Naour95426af2017-02-21 22:43:16 +0100592config BR2_PACKAGE_SUNXI_MALI_R2P4
593 bool "sunxi-mali r2p4 removed"
594 select BR2_LEGACY
595 help
596 sunxi-mali libMali for r2p4 Mali kernel module has been
597 removed since the libump package only provides libUMP.so.3.
598 libMali for r2p4 Mali kernel module requires libUMP.so.2.
599
Martin Barkd999a7f2017-05-06 14:19:13 +0100600config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
601 bool "CoffeeScript option has been removed"
602 select BR2_LEGACY
603 help
604 The option to enable NodeJS CoffeeScript has been removed.
605 To continue using it, add "coffee-script" to
606 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
607
Martin Bark096f8b12017-05-06 14:19:12 +0100608config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
609 bool "Express web application framework option has been removed"
610 select BR2_LEGACY
611 help
612 The option to enable the NodeJS Express web application
613 framework has been removed. To continue using it, add
614 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
615
Baruch Siach0364d442017-05-01 15:59:41 +0300616config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
617 bool "bluez5_utils gatttool install option removed"
618 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
619 help
620 The option to install gatttool specifically has been removed.
621 Since version 5.44 gatttool is in the list of deprecated
622 tools. The option to build and install deprecated tools has
623 been automatically enabled.
624
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +0000625config BR2_PACKAGE_OPENOCD_FT2XXX
626 bool "openocd ft2232 support has been removed"
627 select BR2_PACKAGE_OPENOCD_FTDI
628 select BR2_LEGACY
629 help
630 FT2232 support in OpenOCD has been removed, it's replaced by
631 FDTI support, which has automatically been enabled.
632
Bernd Kuhls24a07d52017-04-29 10:37:28 +0200633config BR2_PACKAGE_KODI_RTMPDUMP
634 bool "kodi rtmp has been removed"
635 select BR2_LEGACY
Bernd Kuhlsc8942672017-07-16 16:35:17 +0200636 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
Bernd Kuhls24a07d52017-04-29 10:37:28 +0200637 help
638 Internal rtmp support was removed from Kodi.
639
Bernd Kuhlsd3936902017-04-29 10:37:21 +0200640config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
641 bool "kodi-visualisation-fountain has been removed"
642 select BR2_LEGACY
643 help
644 According to upstream 'the visualization is not currently
645 in a working shape.'
646
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +0200647config BR2_PACKAGE_PORTMAP
648 bool "portmap has been removed"
649 select BR2_LEGACY
650 select BR2_PACKAGE_RPCBIND
651 help
652 The portmap upstream tarball is removed, no releases since
653 ten years and latest change in upstream git in 2014.
654 You should better use rpcbind as a RPC portmapper.
655
Thomas Petazzoni58472912017-04-03 22:28:21 +0200656config BR2_BINUTILS_VERSION_2_25_X
657 bool "binutils version 2.25 support removed"
658 select BR2_LEGACY
659 help
660 Support for binutils version 2.25 has been removed. The
661 current default version (2.27 or later) has been selected
662 instead.
663
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +0200664config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
665 bool "uclibc RPC support has been removed"
666 select BR2_LEGACY
667 help
668 uClibc-ng removed internal RPC implementation in 1.0.23. You
669 should use libtirpc instead.
670
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +0100671config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
672 int "extra size in blocks has been removed"
673 default 0
674 help
675 Since the support for auto calculation of the filesystem size has been
676 removed, this option is now useless and must be 0.
677 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS matchs
678 your needs.
679
680config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
681 bool
682 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
683 select BR2_LEGACY
684
Vicente Olivert Riera815f7132017-03-22 11:39:13 +0000685config BR2_PACKAGE_SYSTEMD_KDBUS
686 bool "systemd-kdbus has been removed"
687 select BR2_LEGACY
688 help
689 --enable/disable-kdbus configure option has been removed since
690 systemd-231.
691
Gustavo Zacariasd10b4932017-03-16 10:04:34 -0300692config BR2_PACKAGE_POLARSSL
693 bool "polarssl has been removed"
694 select BR2_LEGACY
695 help
696 The polarssl crypto library has been removed since the 1.2.x
697 release branch is no longer maintained. Newer upstream
698 branches/releases (mbedtls) have API changes so they're not
699 drop-in replacements.
700
Yann E. MORIN61551182017-03-12 10:58:15 +0100701config BR2_NBD_CLIENT
702 bool "nbd client option was renamed"
703 select BR2_LEGACY
704 select BR2_PACKAGE_NBD_CLIENT
705 help
706 The nbd client option has been renamed to BR2_PACKAGE_NBD_CLIENT.
707
708config BR2_NBD_SERVER
709 bool "nbd server option was renamed"
710 select BR2_LEGACY
711 select BR2_PACKAGE_NBD_SERVER
712 help
713 The nbd server option has been renamed to BR2_PACKAGE_NBD_SERVER.
714
Carlos Santos6a9c6312017-02-14 09:05:16 -0200715config BR2_PACKAGE_GMOCK
716 bool "gmock merged into gtest package"
717 select BR2_LEGACY
718 select BR2_PACKAGE_GTEST
719 select BR2_PACKAGE_GTEST_GMOCK
720 help
721 GMock is now a suboption of the GTest package.
722
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300723config BR2_KERNEL_HEADERS_4_8
724 bool "kernel headers version 4.8.x are no longer supported"
725 select BR2_KERNEL_HEADERS_4_4
726 select BR2_LEGACY
727 help
728 Version 4.8.x of the Linux kernel headers are no longer
729 maintained upstream and are now removed. As an alternative,
730 version 4.4.x of the headers have been automatically
731 selected in your configuration.
732
733config BR2_KERNEL_HEADERS_3_18
734 bool "kernel headers version 3.18.x are no longer supported"
735 select BR2_KERNEL_HEADERS_3_12
736 select BR2_LEGACY
737 help
738 Version 3.18.x of the Linux kernel headers are no longer
739 maintained upstream and are now removed. As an alternative,
740 version 3.12.x of the headers have been automatically
741 selected in your configuration.
742
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300743config BR2_GLIBC_VERSION_2_22
744 bool "glibc 2.22 removed"
745 select BR2_LEGACY
746 help
747 Support for glibc version 2.22 has been removed. The current
748 default version has been selected instead.
749
750###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +0100751comment "Legacy options removed in 2017.02"
752
Francois Perrad8546ff32016-12-26 15:50:35 +0100753config BR2_PACKAGE_PERL_DB_FILE
754 bool "perl-db-file removed"
755 select BR2_LEGACY
756 select BR2_PACKAGE_BERKELEYDB
757 select BR2_PACKAGE_PERL
758 help
759 DB_File can be built as a core Perl module, so the separate
760 perl-db-file package has been removed.
761
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300762config BR2_KERNEL_HEADERS_4_7
763 bool "kernel headers version 4.7.x are no longer supported"
764 select BR2_KERNEL_HEADERS_4_4
765 select BR2_LEGACY
766 help
767 Version 4.7.x of the Linux kernel headers are no longer
768 maintained upstream and are now removed. As an alternative,
769 version 4.4.x of the headers have been automatically
770 selected in your configuration.
771
772config BR2_KERNEL_HEADERS_4_6
773 bool "kernel headers version 4.6.x are no longer supported"
774 select BR2_KERNEL_HEADERS_4_4
775 select BR2_LEGACY
776 help
777 Version 4.6.x of the Linux kernel headers are no longer
778 maintained upstream and are now removed. As an alternative,
779 version 4.4.x of the headers have been automatically
780 selected in your configuration.
781
782config BR2_KERNEL_HEADERS_4_5
783 bool "kernel headers version 4.5.x are no longer supported"
784 select BR2_KERNEL_HEADERS_4_4
785 select BR2_LEGACY
786 help
787 Version 4.5.x of the Linux kernel headers are no longer
788 maintained upstream and are now removed. As an alternative,
789 version 4.4.x of the headers have been automatically
790 selected in your configuration.
791
792config BR2_KERNEL_HEADERS_3_14
793 bool "kernel headers version 3.14.x are no longer supported"
794 select BR2_KERNEL_HEADERS_3_12
795 select BR2_LEGACY
796 help
797 Version 3.14.x of the Linux kernel headers are no longer
798 maintained upstream and are now removed. As an alternative,
799 version 3.12.x of the headers have been automatically
800 selected in your configuration.
801
Romain Naour63abbcc2016-12-16 16:29:45 +0100802config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
803 bool "musl-cross 1.1.12 toolchain removed"
804 select BR2_LEGACY
805 help
806 The support for the prebuilt toolchain based on the Musl C
807 library provided by the musl-cross project has been removed.
808 Upstream doesn't provide any prebuilt toolchain anymore, use the
809 Buildroot toolchain instead.
810
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +0100811config BR2_UCLIBC_INSTALL_TEST_SUITE
812 bool "uClibc tests now in uclibc-ng-test"
813 select BR2_LEGACY
814 select BR2_PACKAGE_UCLIBC_NG_TEST
815 help
816 The test suite of the uClibc C library has been moved into a
817 separate package, uclibc-ng-test.
818
Arnout Vandecappelle311bc132016-11-24 00:40:35 +0100819config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
820 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
821 select BR2_LEGACY
822 help
823 The ADI Blackfin toolchain has many bugs which are fixed in
824 more recent gcc and uClibc-ng releases. Use the Buildroot
825 toolchain instead.
826
Arnout Vandecappelle207294f2016-11-23 15:14:04 +0100827config BR2_PACKAGE_MAKEDEVS
828 bool "makedevs removed"
829 select BR2_LEGACY
830 help
831 The makedevs tool is part of busybox. The Buildroot fork
832 should not be used outside of the Buildroot infrastructure.
833
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +0100834config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
835 bool "Arago ARMv7 2011.09 removed"
836 select BR2_LEGACY
837 help
838 The Arago toolchains are every old and not updated anymore.
839
840config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
841 bool "Arago ARMv5 2011.09 removed"
842 select BR2_LEGACY
843 help
844 The Arago toolchains are every old and not updated anymore.
845
Thomas Petazzonied364d12016-11-05 14:32:38 +0100846config BR2_PACKAGE_SNOWBALL_HDMISERVICE
847 bool "snowball-hdmiservice removed"
848 select BR2_LEGACY
849 help
850 We no longer have support for the Snowball platform in
851 Buildroot, so this package was no longer useful.
852
853config BR2_PACKAGE_SNOWBALL_INIT
854 bool "snowball-init removed"
855 select BR2_LEGACY
856 help
857 We no longer have support for the Snowball platform in
858 Buildroot, so this package was no longer useful.
859
Jörg Krause69aa0572016-12-14 14:40:58 +0100860config BR2_GDB_VERSION_7_9
861 bool "gdb 7.9 has been removed"
862 select BR2_LEGACY
863 help
864 The 7.9 version of gdb has been removed. Use a newer version
865 instead.
866
Thomas Petazzonied364d12016-11-05 14:32:38 +0100867###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +0200868comment "Legacy options removed in 2016.11"
869
Fabrice Fontainec4572132016-09-12 23:31:07 +0200870config BR2_PACKAGE_PHP_SAPI_CLI_CGI
871 bool "PHP CGI and CLI options are now seperate"
872 select BR2_PACKAGE_PHP_SAPI_CLI
873 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200874 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200875 help
876 The PHP Interface options have been split up into a
877 separate option for each interface.
878
879config BR2_PACKAGE_PHP_SAPI_CLI_FPM
880 bool "PHP CLI and FPM options are now separate"
881 select BR2_PACKAGE_PHP_SAPI_CLI
882 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200883 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200884 help
885 The PHP Interface options have been split up into a
886 separate option for each interface.
887
Arnout Vandecappelle35343992016-10-15 16:51:06 +0200888config BR2_PACKAGE_WVSTREAMS
889 bool "wvstreams removed"
890 select BR2_LEGACY
891 help
892 wvstreams is not maintained anymore since about 2009. It also
893 doesn't build anymore with recent compilers (GCC 5+).
894
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +0200895config BR2_PACKAGE_WVDIAL
896 bool "wvdial removed"
897 select BR2_LEGACY
898 help
899 wvdial is not maintained anymore since about 2009. It also
900 doesn't build anymore with recent compilers (GCC 5+).
901
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +0200902config BR2_PACKAGE_WEBKITGTK24
903 bool "webkitgtk 2.4.x removed"
904 select BR2_LEGACY
905 help
906 This legacy package only existed because some other packages
907 depended on that specific version of webkitgtk. However, the
908 other packages have been fixed. webkitgtk 2.4 is full of
909 security issues so it needs to be removed.
910
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +0200911config BR2_PACKAGE_TORSMO
912 bool "torsmo removed"
913 select BR2_LEGACY
914 help
915 torsmo has been unmaintained for a long time, and nobody
916 seems to be interested in it.
917
Arnout Vandecappelle290166f2016-10-15 16:51:02 +0200918config BR2_PACKAGE_SSTRIP
919 bool "sstrip removed"
920 select BR2_LEGACY
921 help
922 sstrip is unmaintained and potentially harmful. It doesn't
923 save so much compared to normal binutils strip, and there is
924 a big risk of binaries that don't work. Use normal strip
925 instead.
926
Arnout Vandecappelle133466f2016-10-15 16:51:01 +0200927config BR2_KERNEL_HEADERS_4_3
928 bool "kernel headers version 4.3.x are no longer supported"
929 select BR2_KERNEL_HEADERS_4_1
930 select BR2_LEGACY
931 help
932 Version 4.3.x of the Linux kernel headers are no longer
933 maintained upstream and are now removed. As an alternative,
934 version 4.1.x of the headers have been automatically
935 selected in your configuration.
936
937config BR2_KERNEL_HEADERS_4_2
938 bool "kernel headers version 4.2.x are no longer supported"
939 select BR2_KERNEL_HEADERS_4_1
940 select BR2_LEGACY
941 help
942 Version 4.2.x of the Linux kernel headers are no longer
943 maintained upstream and are now removed. As an alternative,
944 version 4.1.x of the headers have been automatically
945 selected in your configuration.
946
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +0200947config BR2_PACKAGE_KODI_ADDON_XVDR
948 bool "kodi-addon-xvdr removed"
949 select BR2_LEGACY
950 help
951 According to the github project page:
952 https://github.com/pipelka/xbmc-addon-xvdr
953 this package is discontinued.
954
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +0200955config BR2_PACKAGE_IPKG
956 bool "ipkg removed"
957 select BR2_LEGACY
958 help
959 ipkg dates back to the early 2000s when Compaq started the
960 handhelds.org project and it hasn't seen development since 2006.
961 Use opkg as a replacement.
962
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +0200963config BR2_GCC_VERSION_4_7_X
964 bool "gcc 4.7.x support removed"
965 select BR2_LEGACY
966 help
967 Support for gcc version 4.7.x has been removed. The current
968 default version (4.9.x or later) has been selected instead.
969
Arnout Vandecappelled8878112016-10-15 16:50:57 +0200970config BR2_BINUTILS_VERSION_2_24_X
971 bool "binutils version 2.24 support removed"
972 select BR2_LEGACY
973 help
974 Support for binutils version 2.24 has been removed. The
975 current default version (2.26 or later) has been selected
976 instead.
977
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -0300978config BR2_PACKAGE_WESTON_RPI
979 bool "Weston propietary RPI support is gone"
980 select BR2_LEGACY
981 help
982 Upstream decided the propietary (rpi-userland) weston composer
983 support wasn't worth the effort so it was removed. Switch to
984 the open VC4 support.
985
Yann E. MORIN20b14462016-09-06 16:29:14 +0200986config BR2_LINUX_KERNEL_TOOL_CPUPOWER
987 bool "linux-tool cpupower"
988 depends on BR2_LINUX_KERNEL
989 select BR2_LEGACY
990 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
991 help
992 Linux tool cpupower option was renamed.
993
994config BR2_LINUX_KERNEL_TOOL_PERF
995 bool "linux-tool perf"
996 depends on BR2_LINUX_KERNEL
997 select BR2_LEGACY
998 select BR2_PACKAGE_LINUX_TOOLS_PERF
999 help
1000 Linux tool perf option was renamed.
1001
1002config BR2_LINUX_KERNEL_TOOL_SELFTESTS
1003 bool "linux-tool selftests"
1004 depends on BR2_LINUX_KERNEL
1005 select BR2_LEGACY
1006 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
1007 help
1008 Linux tool selftests option was renamed.
1009
Thomas Petazzoni50332a52016-08-11 15:25:38 +02001010config BR2_GCC_VERSION_4_8_ARC
1011 bool "gcc arc option renamed"
1012 select BR2_LEGACY
1013 select BR2_GCC_VERSION_ARC
1014 help
1015 The option that selects the gcc version for the ARC
1016 architecture has been renamed to BR2_GCC_VERSION_ARC.
1017
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001018config BR2_KERNEL_HEADERS_4_0
1019 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001020 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001021 select BR2_LEGACY
1022 help
1023 Version 4.0.x of the Linux kernel headers have been deprecated
1024 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001025 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001026 automatically selected in your configuration.
1027
1028config BR2_KERNEL_HEADERS_3_19
1029 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001030 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001031 select BR2_LEGACY
1032 help
1033 Version 3.19.x of the Linux kernel headers have been deprecated
1034 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001035 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001036 automatically selected in your configuration.
1037
Romain Naour0e517312016-09-02 22:31:32 +02001038config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
1039 bool "libevas-generic-loaders package removed"
1040 select BR2_LEGACY
1041 select BR2_PACKAGE_EFL
1042 help
1043 With EFL 1.18, libevas-generic-loaders is now provided by the efl
1044 package.
1045
Romain Naourc22b7582016-09-02 22:31:31 +02001046config BR2_PACKAGE_ELEMENTARY
1047 bool "elementary package removed"
1048 select BR2_LEGACY
1049 select BR2_PACKAGE_EFL
1050 help
1051 With EFL 1.18, elementary is now provided by the efl package.
1052
Yann E. MORINe782cd52016-08-28 01:03:04 +02001053config BR2_LINUX_KERNEL_CUSTOM_LOCAL
1054 bool "Linux kernel local directory option removed"
1055 help
1056 The option to select a local directory as the source of the Linux
1057 kernel has been removed. It hurts reproducibility of builds.
1058
1059 In case you were using this option during development of your
1060 Linux kernel, use the override mechanism instead.
1061
1062###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02001063comment "Legacy options removed in 2016.08"
1064
Arnout Vandecappelleac191072017-03-08 00:50:54 +01001065config BR2_PACKAGE_EFL_JP2K
1066 bool "libevas jp2k loader has been removed"
1067 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +01001068 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +01001069 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
1070 while Buildroot only packages openjpeg 2.x. Therefore, the
1071 JP2K loader has been removed from EFL.
1072
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02001073config BR2_PACKAGE_SYSTEMD_COMPAT
1074 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +02001075 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02001076 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +02001077 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02001078 been removed. Theses libraries have been useless since a few
1079 version, and have been fully dropped from the source since
1080 v230.
1081
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +02001082config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
1083 bool "gst1-plugins-bad liveadder plugin removed"
1084 select BR2_LEGACY
1085 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
1086 help
1087 The functionality of the liveadder plugin of the
1088 gst1-plugins-bad package has been merged into audiomixer.
1089
Andrew Webster0f92b192016-06-10 14:13:29 -04001090config BR2_PACKAGE_LIBFSLVPUWRAP
1091 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
1092 select BR2_LEGACY
1093 select BR2_PACKAGE_IMX_VPUWRAP
1094 help
1095 The libfslvpuwrap has been renamed to match the renamed package.
1096
Andrew Webster64998902016-06-10 14:13:18 -04001097config BR2_PACKAGE_LIBFSLPARSER
1098 bool "libfslparser has been renamed to imx-parser"
1099 select BR2_LEGACY
1100 select BR2_PACKAGE_IMX_PARSER
1101 help
1102 The libfslparser has been renamed to match the renamed package.
1103
Andrew Webster47e62032016-06-10 14:13:05 -04001104config BR2_PACKAGE_LIBFSLCODEC
1105 bool "libfslcodec has been renamed to imx-codec"
1106 select BR2_LEGACY
1107 select BR2_PACKAGE_IMX_CODEC
1108 help
1109 The libfslcodec has been renamed to match the renamed package.
1110
Carlos Santosb5d99002016-06-03 16:35:39 -03001111config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
1112 bool "FIT support in uboot-tools has been refactored"
1113 select BR2_LEGACY
1114 select BR2_PACKAGE_DTC
1115 select BR2_PACKAGE_DTC_PROGRAMS
1116 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
1117 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
1118 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
1119 help
1120 This option has been removed in favor of a more fine-grained
1121 configuration, which is recommended. Selecting this option
1122 enables FIT and FIT signature support for the target packages.
1123 It will also select the dtc and openssl packages.
1124
Waldemar Brodkorbf253c142016-06-01 20:40:25 +02001125config BR2_PTHREADS_OLD
1126 bool "linuxthreads (stable/old)"
1127 select BR2_LEGACY
1128 help
1129 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
1130 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
1131
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001132config BR2_BINUTILS_VERSION_2_23_X
1133 bool "binutils 2.23 removed"
1134 select BR2_LEGACY
1135 help
1136 Binutils 2.23 has been removed, using a newer version is
1137 recommended.
1138
Thomas Petazzoni500de252016-05-17 00:13:00 +02001139config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
1140 bool "eglibc support has been removed"
1141 select BR2_LEGACY
1142 help
1143 The eglibc project no longer exists, as it has been merged
1144 back into the glibc project. Therefore, support for eglibc
1145 has been removed, and glibc should be used instead.
1146
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02001147config BR2_GDB_VERSION_7_8
1148 bool "gdb 7.8 has been removed"
1149 select BR2_LEGACY
1150 help
1151 The 7.8 version of gdb has been removed. Use a newer version
1152 instead.
1153
1154###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01001155comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +01001156
Gustavo Zacarias3380da62016-05-14 10:33:47 -03001157config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
1158 bool "openvpn polarssl crypto backend removed"
1159 select BR2_LEGACY
1160 help
1161 The OpenVPN polarssl crypto backend option has been removed.
1162 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
1163 compatible with mbedtls (polarssl) series 2.x which is the
1164 version provided in buildroot. And both can't coexist.
1165 It now uses OpenSSL as the only option.
1166
Martin Bark4dfc2cb2016-05-03 10:36:54 +01001167config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
1168 bool "nginx http spdy module removed"
1169 select BR2_LEGACY
1170 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
1171 help
1172 The ngx_http_spdy_module has been superseded by the
1173 ngx_http_v2_module since nginx v1.9.5. The
1174 ngx_http_v2_module modules has been automatically selected
1175 in your configuration.
1176
Gustavo Zacarias0c956f22016-05-03 16:44:15 -03001177config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
1178 bool "gst1-plugins-bad rtp plugin moved to good"
1179 select BR2_LEGACY
1180 help
1181 The rtp plugin has been moved from gst1-plugins-base to
1182 gst1-plugins-good.
1183
Gustavo Zacarias4196cf92016-05-03 16:44:14 -03001184config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
1185 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
1186 select BR2_LEGACY
1187 help
1188 The mpg123 plugin has been moved from gst1-plugins-bad to
1189 gst1-plugins-ugly.
1190
Gustavo Zacarias8490e832016-04-29 10:18:56 -03001191config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
1192 bool "PowerPC Sourcery toolchain has been removed"
1193 select BR2_LEGACY
1194 help
1195 The Sourcery CodeBench toolchain for the PowerPC
1196 architecture has been removed, as it was very old, not
1197 maintained, and causing numerous build failures with modern
1198 userspace packages.
1199
1200config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
1201 bool "PowerPC Sourcery E500v2 toolchain has been removed"
1202 select BR2_LEGACY
1203 help
1204 The Sourcery CodeBench toolchain for the PowerPC E500v2
1205 architecture has been removed, as it was very old, not
1206 maintained, and causing numerous build failures with modern
1207 userspace packages.
1208
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02001209config BR2_x86_i386
1210 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +02001211 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02001212 help
1213 The support for the i386 processors of the x86 architecture
1214 has been removed.
1215
Julien CORJONf75ee802016-03-17 10:42:25 +01001216config BR2_PACKAGE_QT5QUICK1
1217 bool "qt5quick1 package removed"
1218 select BR2_LEGACY
1219 help
1220 The qt5quick1 package has been removed, since it was removed
1221 from upstream starting from Qt 5.6.
1222
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03001223config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -05001224 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03001225 help
1226 The uboot custom patch directory option has been removed. Use
1227 the improved BR2_TARGET_UBOOT_PATCH option instead.
1228
Danomi Manchegof61583f2016-12-19 22:10:12 -05001229config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
1230 bool
1231 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
1232 select BR2_LEGACY
1233
1234# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
1235# boot/uboot/Config.in
1236
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -03001237config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
1238 bool "xf86-input-void removed"
1239 select BR2_LEGACY
1240 help
1241 The xf86-input-void package has been removed, there's no need
1242 for it in any modern (post-2007) xorg server.
1243
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001244config BR2_KERNEL_HEADERS_3_17
1245 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001246 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001247 select BR2_LEGACY
1248 help
1249 Version 3.17.x of the Linux kernel headers have been deprecated
1250 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001251 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001252 automatically selected in your configuration.
1253
Gustavo Zacariasffc324e2016-03-11 11:32:21 -03001254config BR2_GDB_VERSION_7_7
1255 bool "gdb 7.7 has been removed"
1256 select BR2_LEGACY
1257 help
1258 The 7.7 version of gdb has been removed. Use a newer version
1259 instead.
1260
Gustavo Zacarias75945dd2016-03-11 11:32:20 -03001261config BR2_PACKAGE_FOOMATIC_FILTERS
1262 bool "foomatic-filters"
1263 select BR2_LEGACY
1264 help
1265 The foomatic-filters package was removed.
1266
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -03001267config BR2_PACKAGE_SAMBA
1268 bool "samba"
1269 select BR2_LEGACY
1270 help
1271 The samba package was removed in favour of samba4 since the
1272 3.x series isn't supported by upstream any longer.
1273
Bernd Kuhls6922b412016-02-20 23:09:11 +01001274config BR2_PACKAGE_KODI_WAVPACK
1275 bool "wavpack"
1276 select BR2_LEGACY
1277 help
1278 wavpack support was removed in favour of ffmpeg:
1279 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
1280
Bernd Kuhls75ce17d2016-02-20 23:09:07 +01001281config BR2_PACKAGE_KODI_RSXS
1282 bool "rsxs support in Kodi was moved to an addon"
1283 select BR2_LEGACY
1284 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
1285 help
1286 rsxs support in Kodi was moved to an addon
1287
Bernd Kuhls56b80ec2016-02-20 23:09:06 +01001288config BR2_PACKAGE_KODI_GOOM
1289 bool "Goom support in Kodi was moved to an addon"
1290 select BR2_LEGACY
1291 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
1292 help
1293 Goom support in Kodi was moved to an addon
1294
Gabe Evanse5a073a2016-02-25 21:55:11 +00001295config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
1296 bool "systemd all extras option has been removed"
1297 select BR2_LEGACY
1298 select BR2_PACKAGE_XZ
1299 select BR2_PACKAGE_LIBGCRYPT
1300 help
1301 The systemd option to enable "all extras" has been
1302 removed. To get the same features, the libgcrypt and xz
1303 package should now be enabled.
1304
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -03001305config BR2_GCC_VERSION_4_5_X
1306 bool "gcc 4.5.x has been removed"
1307 select BR2_LEGACY
1308 help
1309 The 4.5.x version of gcc has been removed. Use a newer
1310 version instead.
1311
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01001312config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -05001313 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01001314 select BR2_PACKAGE_NCURSES
1315 select BR2_PACKAGE_READLINE
1316 select BR2_LEGACY
1317 help
1318 This option was removed in favour of the sqlite package
1319 deciding itself depending on the enabled packages whether
1320 command-line editing should be enabled, it also also takes
1321 libedit into account.
1322
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01001323###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +01001324comment "Legacy options removed in 2016.02"
1325
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +01001326config BR2_PACKAGE_DOVECOT_BZIP2
1327 bool "bzip2 support option has been removed"
1328 select BR2_LEGACY
1329 select BR2_PACKAGE_BZIP2
1330 help
1331 Bzip2 support is built if the bzip2 package is selected.
1332
1333config BR2_PACKAGE_DOVECOT_ZLIB
1334 bool "zlib support option has been removed"
1335 select BR2_LEGACY
1336 select BR2_PACKAGE_ZLIB
1337 help
1338 Zlib support is built if the zlib package is selected.
1339
James Knightead1df42016-02-12 11:40:05 -05001340config BR2_PACKAGE_E2FSPROGS_FINDFS
1341 bool "e2fsprogs findfs option has been removed"
1342 select BR2_LEGACY
1343 help
1344 This option attempted to enable findfs capabilities from
1345 e2fsprogs but has not worked since July 2015 (due to
1346 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +01001347 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -05001348
Romain Naourb1063a02016-02-07 17:56:56 +01001349config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
1350 bool "openpowerlink debug option has been removed"
1351 select BR2_LEGACY
1352 help
1353 This option depends on BR2_ENABLE_DEBUG which should not be used
1354 by packages anymore.
1355
1356config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
1357 bool "openpowerlink package has been updated"
1358 select BR2_LEGACY
1359 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
1360 help
1361 openpowerlink kernel modules are built if the
1362 kernel stack library is selected.
1363
1364config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
1365 bool "openpowerlink package has been updated"
1366 select BR2_LEGACY
1367 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
1368 help
1369 The user space support has been split in two part:
1370 - a monolitic user space library
1371 - a user spae deamon driver
1372
Yann E. MORINe3e05832016-02-06 00:06:17 +01001373config BR2_LINUX_KERNEL_SAME_AS_HEADERS
1374 bool "using the linux headers version for the kernel has been removed"
1375 select BR2_LEGACY
1376 help
1377 The option to use the version of the kernel headers for the
1378 kernel to build has been removed.
1379
1380 There is now the converse, better-suited and more versatile
1381 option to use the kernel version for the linux headers.
1382
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02001383config BR2_PACKAGE_CUPS_PDFTOPS
1384 bool "Pdftops support has been removed from Cups"
Olivier Schonken917de0f2017-10-23 15:26:11 +02001385 select BR2_PACKAGE_CUPS_FILTERS
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02001386 select BR2_LEGACY
1387 help
1388 Pdftops support has been removed from the cups package
1389 It is now part of the cups-filters package.
1390
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001391config BR2_KERNEL_HEADERS_3_16
1392 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001393 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001394 select BR2_LEGACY
1395 help
1396 Version 3.16.x of the Linux kernel headers have been deprecated
1397 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001398 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001399 automatically selected in your configuration.
1400
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01001401config BR2_PACKAGE_PYTHON_PYXML
1402 bool "python-pyxml package has been removed"
1403 select BR2_LEGACY
1404 help
1405 PyXML is obsolete and its functionality is covered either via
1406 native Python XML support or python-lxml package.
1407
Steven Noonand29c7192015-12-27 12:07:31 +01001408# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
1409config BR2_ENABLE_SSP
1410 bool "Stack Smashing protection now has different levels"
1411 help
1412 The protection offered by SSP can now be selected from different
1413 protection levels. Be sure to review the SSP level in the build
1414 options menu.
1415
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001416config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03001417 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001418 select BR2_LEGACY
1419 help
1420 The cle266 directfb driver support has been removed.
1421 It doesn't build in the latest version and it's unlikely
1422 anyone has any use for it.
1423
1424config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03001425 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001426 select BR2_LEGACY
1427 help
1428 The unichrome directfb driver support has been removed.
1429 It doesn't build in the latest version and it's unlikely
1430 anyone has any use for it.
1431
Romain Naour820e1682015-12-19 17:39:14 +01001432config BR2_PACKAGE_LIBELEMENTARY
1433 bool "libelementary has been renamed to elementary"
1434 select BR2_LEGACY
1435 select BR2_PACKAGE_ELEMENTARY
1436 help
1437 The libelementary package has been renamed to match the upstream
1438 name.
1439
Romain Naoura9d1f5f2015-12-15 23:40:38 +01001440config BR2_PACKAGE_LIBEINA
1441 bool "libeina package has been removed"
1442 select BR2_LEGACY
1443 select BR2_PACKAGE_EFL
1444 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001445 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01001446
Romain Naour49700f02015-12-15 23:40:37 +01001447config BR2_PACKAGE_LIBEET
1448 bool "libeet package has been removed"
1449 select BR2_LEGACY
1450 select BR2_PACKAGE_EFL
1451 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001452 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01001453
Romain Naoure5989d62015-12-15 23:40:36 +01001454config BR2_PACKAGE_LIBEVAS
1455 bool "libevas package has been removed"
1456 select BR2_LEGACY
1457 select BR2_PACKAGE_EFL
1458 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001459 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01001460
Romain Naour1fe1b602015-12-15 23:40:35 +01001461config BR2_PACKAGE_LIBECORE
1462 bool "libecore package has been removed"
1463 select BR2_LEGACY
1464 select BR2_PACKAGE_EFL
1465 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001466 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01001467
Romain Naour8c05c382015-12-15 23:40:34 +01001468config BR2_PACKAGE_LIBEDBUS
1469 bool "libedbus package has been removed"
1470 select BR2_LEGACY
1471 select BR2_PACKAGE_EFL
1472 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001473 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01001474
Romain Naourd2b042c2015-12-15 23:40:33 +01001475config BR2_PACKAGE_LIBEFREET
1476 bool "libefreet package has been removed"
1477 select BR2_LEGACY
1478 select BR2_PACKAGE_EFL
1479 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001480 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01001481
Romain Naoure155c952015-12-15 23:40:32 +01001482config BR2_PACKAGE_LIBEIO
1483 bool "libeio package has been removed"
1484 select BR2_LEGACY
1485 select BR2_PACKAGE_EFL
1486 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001487 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01001488
Romain Naourb728fb72015-12-15 23:40:31 +01001489config BR2_PACKAGE_LIBEMBRYO
1490 bool "libembryo package has been removed"
1491 select BR2_LEGACY
1492 select BR2_PACKAGE_EFL
1493 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001494 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01001495
Romain Naour4c93c102015-12-15 23:40:30 +01001496config BR2_PACKAGE_LIBEDJE
1497 bool "libedje package has been removed"
1498 select BR2_LEGACY
1499 select BR2_PACKAGE_EFL
1500 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001501 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01001502
Romain Naour905dba12015-12-15 23:40:29 +01001503config BR2_PACKAGE_LIBETHUMB
1504 bool "libethumb package has been removed"
1505 select BR2_LEGACY
1506 select BR2_PACKAGE_EFL
1507 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001508 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01001509
Luca Ceresolif0c94702015-11-27 18:38:00 +01001510config BR2_PACKAGE_INFOZIP
1511 bool "infozip option has been renamed to zip"
1512 select BR2_LEGACY
1513 select BR2_PACKAGE_ZIP
1514 help
1515 Info-Zip's Zip package has been renamed from infozip to zip,
1516 to avoid ambiguities with Info-Zip's UnZip which has been added
1517 in the unzip package.
1518
Martin Barka2d16602015-12-23 12:16:04 +00001519config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00001520 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00001521 select BR2_LEGACY
1522 select BR2_PACKAGE_NODEJS
1523 help
Martin Bark75b70492016-01-30 14:51:00 +00001524 nodejs 0.10.x option has been removed. 0.10.x is now
1525 automatically chosen for ARMv5 architectures only and the latest
1526 nodejs for all other supported architectures. The correct nodejs
1527 version has been automatically selected in your configuration.
Martin Barka2d16602015-12-23 12:16:04 +00001528
Martin Barka314b872015-12-23 12:16:03 +00001529config BR2_BR2_PACKAGE_NODEJS_0_12_X
1530 bool "nodejs version 0.12.x has been removed"
1531 select BR2_LEGACY
1532 select BR2_PACKAGE_NODEJS
1533 help
1534 nodejs version 0.12.x has been removed. As an alternative,
1535 the latest nodejs version has been automatically selected in
1536 your configuration.
1537
Martin Bark90bf67c2015-12-23 12:16:02 +00001538config BR2_BR2_PACKAGE_NODEJS_4_X
1539 bool "nodejs version 4.x has been removed"
1540 select BR2_LEGACY
1541 select BR2_PACKAGE_NODEJS
1542 help
1543 nodejs version 4.x has been removed. As an alternative,
1544 the latest nodejs version has been automatically selected in
1545 your configuration.
1546
Luca Ceresolif0c94702015-11-27 18:38:00 +01001547###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001548comment "Legacy options removed in 2015.11"
1549
Peter Seiderer301e8ff2015-10-15 21:42:43 +02001550config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
1551 bool "gst1-plugins-bad real plugin has been removed"
1552 select BR2_LEGACY
1553 help
1554 The real plugin from GStreamer 1 bad plugins has been
1555 removed.
1556
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02001557config BR2_PACKAGE_MEDIA_CTL
1558 bool "media-ctl package has been removed"
1559 select BR2_LEGACY
1560 select BR2_PACKAGE_LIBV4L
1561 select BR2_PACKAGE_LIBV4L_UTILS
1562 help
1563 media-ctl source and developement have been moved to
1564 v4l-utils since June 2014. For an up-to-date media-ctl
1565 version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
1566
Romain Naourf8031332015-10-03 18:35:05 +02001567config BR2_PACKAGE_SCHIFRA
1568 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001569 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02001570 help
1571 Schifra package has been maked broken since 2014.11 release and
1572 haven't been fixed since then.
1573
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02001574config BR2_PACKAGE_ZXING
1575 bool "zxing option has been renamed"
1576 select BR2_LEGACY
1577 select BR2_PACKAGE_ZXING_CPP
1578 help
1579 ZXing no longer provides the cpp bindings, it has been renamed to
1580 BR2_PACKAGE_ZXING_CPP which uses a new upstream.
1581
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001582# Since FreeRDP has new dependencies, protect this legacy to avoid the
1583# infamous "unmet direct dependencies" kconfig error.
1584config BR2_PACKAGE_FREERDP_CLIENT
1585 bool "freerdp client option renamed"
1586 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02001587 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001588 select BR2_PACKAGE_FREERDP_CLIENT_X11
1589
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03001590config BR2_PACKAGE_BLACKBOX
1591 bool "blackbox package has been removed"
1592 select BR2_LEGACY
1593 help
1594 Upstream is dead and the package has been deprecated for
1595 some time. There are other alternative maintained WMs.
1596
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001597config BR2_KERNEL_HEADERS_3_0
1598 bool "kernel headers version 3.0.x are no longer supported"
1599 select BR2_KERNEL_HEADERS_3_2
1600 select BR2_LEGACY
1601 help
1602 Version 3.0.x of the Linux kernel headers have been deprecated
1603 for more than four buildroot releases and are now removed.
1604 As an alternative, version 3.2.x of the headers have been
1605 automatically selected in your configuration.
1606
1607config BR2_KERNEL_HEADERS_3_11
1608 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001609 select BR2_KERNEL_HEADERS_3_10
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001610 select BR2_LEGACY
1611 help
1612 Version 3.11.x of the Linux kernel headers have been deprecated
1613 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001614 As an alternative, version 3.10.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001615 automatically selected in your configuration.
1616
1617config BR2_KERNEL_HEADERS_3_13
1618 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001619 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001620 select BR2_LEGACY
1621 help
1622 Version 3.13.x of the Linux kernel headers have been deprecated
1623 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001624 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001625 automatically selected in your configuration.
1626
1627config BR2_KERNEL_HEADERS_3_15
1628 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001629 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001630 select BR2_LEGACY
1631 help
1632 Version 3.15.x of the Linux kernel headers have been deprecated
1633 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001634 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001635 automatically selected in your configuration.
1636
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001637config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
1638 bool "DirectFB example df_andi 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_BLTLOAD
1647 bool "DirectFB example df_bltload 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_CPULOAD
1656 bool "DirectFB example df_cpuload 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_DATABUFFER
1665 bool "DirectFB example df_databuffer 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_DIOLOAD
1674 bool "DirectFB example df_dioload 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_DOK
1683 bool "DirectFB example df_dok 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_DRIVERTEST
1692 bool "DirectFB example df_drivertest 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
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001700config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
1701 bool "DirectFB example df_fire 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_FLIP
1710 bool "DirectFB example df_flip 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_FONTS
1719 bool "DirectFB example df_fonts 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_INPUT
1728 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001729 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001730 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1731 help
1732 The per-DirectFB example options have been removed. The
1733 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1734 examples.
1735
1736config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
1737 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001738 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001739 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1740 help
1741 The per-DirectFB example options have been removed. The
1742 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1743 examples.
1744
1745config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
1746 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001747 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001748 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1749 help
1750 The per-DirectFB example options have been removed. The
1751 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1752 examples.
1753
1754config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
1755 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001756 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001757 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1758 help
1759 The per-DirectFB example options have been removed. The
1760 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1761 examples.
1762
1763config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
1764 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001765 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001766 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1767 help
1768 The per-DirectFB example options have been removed. The
1769 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1770 examples.
1771
1772config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
1773 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001774 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001775 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1776 help
1777 The per-DirectFB example options have been removed. The
1778 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1779 examples.
1780
1781config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
1782 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001783 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001784 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1785 help
1786 The per-DirectFB example options have been removed. The
1787 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1788 examples.
1789
1790config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
1791 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001792 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001793 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1794 help
1795 The per-DirectFB example options have been removed. The
1796 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1797 examples.
1798
1799config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
1800 bool "DirectFB example df_palette has been removed"
1801 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1802 help
1803 The per-DirectFB example options have been removed. The
1804 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1805 examples.
1806
1807config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
1808 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001809 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001810 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1811 help
1812 The per-DirectFB example options have been removed. The
1813 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1814 examples.
1815
1816config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
1817 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001818 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001819 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1820 help
1821 The per-DirectFB example options have been removed. The
1822 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1823 examples.
1824
1825config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
1826 bool "DirectFB example df_stress has been removed"
1827 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1828 help
1829 The per-DirectFB example options have been removed. The
1830 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1831 examples.
1832
1833config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
1834 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001835 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001836 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1837 help
1838 The per-DirectFB example options have been removed. The
1839 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1840 examples.
1841
1842config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
1843 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001844 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001845 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1846 help
1847 The per-DirectFB example options have been removed. The
1848 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1849 examples.
1850
1851config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1852 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001853 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001854 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1855 help
1856 The per-DirectFB example options have been removed. The
1857 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1858 examples.
1859
1860config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1861 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001862 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001863 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1864 help
1865 The per-DirectFB example options have been removed. The
1866 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1867 examples.
1868
Gary Bisson2b78fb22015-09-23 15:39:27 +02001869config BR2_PACKAGE_KOBS_NG
1870 bool "kobs-ng was replaced by imx-kobs"
1871 select BR2_LEGACY
1872 select BR2_PACKAGE_IMX_KOBS
1873 help
1874 The outdated kobs-ng has been replaced by the Freescale-
1875 maintained imx-kobs package.
1876
Thomas Petazzoni11573f52015-09-02 00:01:11 +02001877config BR2_PACKAGE_SAWMAN
1878 bool "sawman package removed"
1879 select BR2_LEGACY
1880 select BR2_PACKAGE_DIRECTFB_SAWMAN
1881 help
1882 This option has been removed because the sawman package no
1883 longer exists: it was merged inside DirectFB itself. This
1884 feature can now be enabled using the
1885 BR2_PACKAGE_DIRECTFB_SAWMAN option.
1886
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001887config BR2_PACKAGE_DIVINE
1888 bool "divine package removed"
1889 select BR2_LEGACY
1890 select BR2_PACKAGE_DIRECTFB_DIVINE
1891 help
1892 This option has been removed because the divine package no
1893 longer exists: it was merged inside DirectFB itself. This
1894 feature can now be enabled using the
1895 BR2_PACKAGE_DIRECTFB_DIVINE option.
1896
1897###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001898comment "Legacy options removed in 2015.08"
1899
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001900config BR2_PACKAGE_KODI_PVR_ADDONS
1901 bool "Kodi PVR addon was split"
1902 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02001903 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02001904 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02001905 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02001906 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02001907 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02001908 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02001909 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02001910 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02001911 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02001912 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02001913 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02001914 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02001915 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02001916 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02001917 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02001918 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001919 help
1920 Kodi PVR addon was split into seperate modules
1921
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001922config BR2_BINUTILS_VERSION_2_23_2
1923 bool "binutils 2.23 option renamed"
1924 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001925 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001926 Binutils 2.23.2 has been removed, using a newer version is
1927 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001928
1929config BR2_BINUTILS_VERSION_2_24
1930 bool "binutils 2.24 option renamed"
1931 select BR2_LEGACY
1932 select BR2_BINUTILS_VERSION_2_24_X
1933 help
1934 The binutils version option has been renamed to match the
1935 same patchlevel logic used by gcc. The new option is now
1936 BR2_BINUTILS_VERSION_2_24_X.
1937
1938config BR2_BINUTILS_VERSION_2_25
1939 bool "binutils 2.25 option renamed"
1940 select BR2_LEGACY
1941 select BR2_BINUTILS_VERSION_2_25_X
1942 help
1943 The binutils version option has been renamed to match the
1944 same patchlevel logic used by gcc. The new option is now
1945 BR2_BINUTILS_VERSION_2_25_X.
1946
Romain Naour1326e762015-07-14 19:35:14 +02001947config BR2_PACKAGE_PERF
1948 bool "perf option has been renamed"
1949 select BR2_LEGACY
1950 select BR2_LINUX_KERNEL_TOOL_PERF
1951 help
1952 The perf package has been moved as a Linux tools package,
1953 and the option to enable it is now
1954 BR2_LINUX_KERNEL_TOOL_PERF.
1955
Thomas Petazzoni2f845952015-07-11 14:52:53 +02001956config BR2_BINUTILS_VERSION_2_22
1957 bool "binutils 2.22 removed"
1958 select BR2_LEGACY
1959 help
1960 Binutils 2.22 has been removed, using a newer version is
1961 recommended.
1962
Gary Bisson4c0613e2015-05-26 10:19:37 +02001963config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1964 bool "gpu-viv-bin-mx6q"
1965 select BR2_LEGACY
1966 select BR2_PACKAGE_IMX_GPU_VIV
1967 help
1968 Vivante graphics libraries have been renamed to
1969 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1970 name.
1971
Matt Weber7742abe2015-06-02 08:28:35 -05001972config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
Matt Weber7742abe2015-06-02 08:28:35 -05001973 bool "libsemanage python bindings removed"
Ricardo Martincoskia1264442018-04-01 02:08:33 -03001974 depends on BR2_PACKAGE_PYTHON
Peter Seiderer758c5c72015-10-07 23:56:49 +02001975 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05001976 help
1977 This option has been removed, since the libsemanage Python
1978 bindings on the target were not useful.
1979
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001980config BR2_TARGET_UBOOT_NETWORK
1981 bool "U-Boot custom network settings removed"
1982 select BR2_LEGACY
1983 help
1984 U-Boot's custom network settings options have been removed.
1985
1986###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001987comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001988
Michał Leśniewskie3904a82015-05-19 20:26:30 +02001989config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1990 bool "jffs2 16kB erasesize NAND flash option renamed"
1991 select BR2_LEGACY
1992 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1993 help
1994 The JFFS2 NAND flash options now longer include the page
1995 size.
1996
1997config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1998 bool "jffs2 128kB erasesize NAND flash option renamed"
1999 select BR2_LEGACY
2000 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
2001 help
2002 The JFFS2 NAND flash options now longer include the page
2003 size.
2004
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02002005config BR2_PACKAGE_MONO_20
2006 bool "2.0/3.5 .Net Runtime"
2007 select BR2_LEGACY
2008 help
2009 This option no longer exists, all versions of the .Net
2010 runtime are now installed.
2011
2012config BR2_PACKAGE_MONO_40
2013 bool "4.0 .Net Runtime"
2014 select BR2_LEGACY
2015 help
2016 This option no longer exists, all versions of the .Net
2017 runtime are now installed.
2018
2019config BR2_PACKAGE_MONO_45
2020 bool "4.5 .Net Runtime"
2021 select BR2_LEGACY
2022 help
2023 This option no longer exists, all versions of the .Net
2024 runtime are now installed.
2025
Peter Korsgaardefd49e32015-04-27 22:29:05 +02002026config BR2_CIVETWEB_WITH_LUA
2027 bool "civetweb lua option renamed"
2028 select BR2_LEGACY
2029 select BR2_PACKAGE_CIVETWEB_WITH_LUA
2030 help
2031 civetweb's lua option has been renamed to
2032 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
2033 packages name options.
2034
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02002035config BR2_PACKAGE_TIFF_TIFF2PDF
2036 bool "tiff utility-specific option removed"
2037 select BR2_LEGACY
2038 select BR2_PACKAGE_TIFF_UTILITIES
2039 help
2040 utility-specific options have been removed in favour of
2041 the new option BR2_PACKAGE_TIFF_UTILITIES.
2042
2043config BR2_PACKAGE_TIFF_TIFFCP
2044 bool "tiff utility-specific option removed"
2045 select BR2_LEGACY
2046 select BR2_PACKAGE_TIFF_UTILITIES
2047 help
2048 utility-specific options have been removed in favour of
2049 the new option BR2_PACKAGE_TIFF_UTILITIES.
2050
Thomas Petazzonie7035d42015-04-21 23:36:28 +02002051config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
2052 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002053 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02002054 help
2055 This option has never worked, so it has been removed.
2056
Yann E. MORIN02917962015-03-24 19:54:15 +01002057config BR2_TARGET_GENERIC_PASSWD_DES
2058 bool "Encoding passwords with DES has been removed"
2059 select BR2_LEGACY
2060 help
2061 Paswords can now only be encoded with either of md5, sha256 or sha512.
2062 The default is md5, which is stronger that DES (but still pretty weak).
2063
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03002064config BR2_PACKAGE_GTK2_THEME_HICOLOR
2065 bool "hicolor (default theme) is a duplicate"
2066 select BR2_LEGACY
2067 select BR2_PACKAGE_HICOLOR_ICON_THEME
2068 help
2069 The option was just a duplicate of hicolor icon theme.
2070
Mike Williamsfd0e5f62015-03-06 12:17:45 -05002071config BR2_PACKAGE_VALGRIND_PTRCHECK
2072 bool "valgrind's PTRCheck was renamed to SGCheck"
2073 select BR2_LEGACY
2074 select BR2_PACKAGE_VALGRIND_SGCHECK
2075 help
2076 PTRCheck was renamed to SGCheck in valgrind
2077
2078###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002079comment "Legacy options removed in 2015.02"
2080
Pedro Aguilar10900c02015-02-27 06:38:07 +02002081config BR2_PACKAGE_LIBGC
2082 bool "libgc package removed"
2083 select BR2_LEGACY
2084 select BR2_PACKAGE_BDWGC
2085 help
2086 libgc has been removed because we have the same package under a
2087 different name, bdwgc.
2088
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01002089config BR2_PACKAGE_WDCTL
2090 bool "util-linux' wdctl option has been renamed"
2091 select BR2_LEGACY
2092 select BR2_PACKAGE_UTIL_LINUX_WDCTL
2093 help
2094 util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
2095 to be aligned with how the other options are named.
2096
Danomi Manchegoe44edb82015-07-13 22:57:06 -04002097config BR2_PACKAGE_UTIL_LINUX_ARCH
2098 bool "util-linux' arch option has been removed"
2099 select BR2_LEGACY
2100 help
2101 util-linux' arch was dropped in util-linux 2.23, in favor of
2102 the coreutils version.
2103
2104config BR2_PACKAGE_UTIL_LINUX_DDATE
2105 bool "util-linux' ddate option has been removed"
2106 select BR2_LEGACY
2107 help
2108 util-linux' ddate was dropped in util-linux 2.23.
2109
Romain Naour3c476542015-01-18 20:53:08 +01002110config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
2111 bool "rpm's bzip2 payloads option has been removed"
2112 select BR2_LEGACY
2113 select BR2_PACKAGE_BZIP2
2114 help
2115 The bzip2 payloads option rely entirely on the dependant package bzip2.
2116 So, you need to select it to enable this feature.
2117
2118config BR2_PACKAGE_RPM_XZ_PAYLOADS
2119 bool "rpm's xz payloads option has been removed"
2120 select BR2_LEGACY
2121 select BR2_PACKAGE_XZ
2122 help
2123 The xz payloads option rely entirely on the dependant package xz.
2124 So, you need to select it to enable this feature.
2125
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03002126config BR2_PACKAGE_M4
2127 bool "m4 target package removed"
2128 select BR2_LEGACY
2129 help
2130 The m4 target package has been removed, it's been
2131 deprecated for some time now.
2132
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03002133config BR2_PACKAGE_FLEX_BINARY
2134 bool "flex binary in target option removed"
2135 select BR2_LEGACY
2136 help
2137 The flex binary in the target option has been removed.
2138 It's been deprecated for some time now and is essentially a
2139 development tool which isn't very useful in the target.
2140
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03002141config BR2_PACKAGE_BISON
2142 bool "bison target package removed"
2143 select BR2_LEGACY
2144 help
2145 The bison target package has been removed, it's been
2146 deprecated for some time now and is essentially a development
2147 tool which isn't very useful in the target.
2148
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03002149config BR2_PACKAGE_GOB2
2150 bool "gob2 target package removed"
2151 select BR2_LEGACY
2152 help
2153 The gob2 target package has been removed, it's been
2154 deprecated for some time now and was essentially useless
2155 without a target toolchain.
2156
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03002157config BR2_PACKAGE_DISTCC
2158 bool "distcc target package removed"
2159 select BR2_LEGACY
2160 help
2161 The distcc target package has been removed, it's been
2162 deprecated for some time now and was essentially useless
2163 without a target toolchain.
2164
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03002165config BR2_PACKAGE_HASERL_VERSION_0_8_X
2166 bool "haserl 0.8.x version removed"
2167 select BR2_LEGACY
2168 help
2169 The 0.8.x version option for haserl has been removed since it
2170 has been deprecated for some time now.
2171 You should be able to use the 0.9.x version without issues.
2172
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03002173config BR2_PACKAGE_STRONGSWAN_TOOLS
2174 bool "strongswan option has been removed"
2175 select BR2_LEGACY
2176 select BR2_PACKAGE_STRONGSWAN_PKI
2177 select BR2_PACKAGE_STRONGSWAN_SCEP
2178 help
2179 The tools option has been removed upstream and the different tools
2180 have been split between the pki and scep options, with others
2181 deprecated.
2182
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002183config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002184 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002185 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002186 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002187 According to the github project page:
2188 https://github.com/pipelka/xbmc-addon-xvdr
2189 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002190
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01002191config BR2_PACKAGE_XBMC_PVR_ADDONS
2192 bool "xbmc options have been renamed"
2193 select BR2_LEGACY
2194 select BR2_PACKAGE_KODI_PVR_ADDONS
2195 help
2196 The XBMC media center project was renamed to Kodi entertainment center
2197
Bernd Kuhls35784592014-12-23 18:46:27 +01002198config BR2_PACKAGE_XBMC
2199 bool "xbmc options have been renamed"
2200 select BR2_LEGACY
2201 select BR2_PACKAGE_KODI
2202 help
2203 The XBMC media center project was renamed to Kodi entertainment center
2204
2205config BR2_PACKAGE_XBMC_ALSA_LIB
2206 bool "xbmc options have been renamed"
2207 select BR2_LEGACY
2208 select BR2_PACKAGE_KODI_ALSA_LIB
2209 help
2210 The XBMC media center project was renamed to Kodi entertainment center
2211
2212config BR2_PACKAGE_XBMC_AVAHI
2213 bool "xbmc options have been renamed"
2214 select BR2_LEGACY
2215 select BR2_PACKAGE_KODI_AVAHI
2216 help
2217 The XBMC media center project was renamed to Kodi entertainment center
2218
2219config BR2_PACKAGE_XBMC_DBUS
2220 bool "xbmc options have been renamed"
2221 select BR2_LEGACY
2222 select BR2_PACKAGE_KODI_DBUS
2223 help
2224 The XBMC media center project was renamed to Kodi entertainment center
2225
2226config BR2_PACKAGE_XBMC_LIBBLURAY
2227 bool "xbmc options have been renamed"
2228 select BR2_LEGACY
2229 select BR2_PACKAGE_KODI_LIBBLURAY
2230 help
2231 The XBMC media center project was renamed to Kodi entertainment center
2232
2233config BR2_PACKAGE_XBMC_GOOM
2234 bool "xbmc options have been renamed"
2235 select BR2_LEGACY
2236 select BR2_PACKAGE_KODI_GOOM
2237 help
2238 The XBMC media center project was renamed to Kodi entertainment center
2239
2240config BR2_PACKAGE_XBMC_RSXS
2241 bool "xbmc options have been renamed"
2242 select BR2_LEGACY
2243 select BR2_PACKAGE_KODI_RSXS
2244 help
2245 The XBMC media center project was renamed to Kodi entertainment center
2246
2247config BR2_PACKAGE_XBMC_LIBCEC
2248 bool "xbmc options have been renamed"
2249 select BR2_LEGACY
2250 select BR2_PACKAGE_KODI_LIBCEC
2251 help
2252 The XBMC media center project was renamed to Kodi entertainment center
2253
2254config BR2_PACKAGE_XBMC_LIBMICROHTTPD
2255 bool "xbmc options have been renamed"
2256 select BR2_LEGACY
2257 select BR2_PACKAGE_KODI_LIBMICROHTTPD
2258 help
2259 The XBMC media center project was renamed to Kodi entertainment center
2260
2261config BR2_PACKAGE_XBMC_LIBNFS
2262 bool "xbmc options have been renamed"
2263 select BR2_LEGACY
2264 select BR2_PACKAGE_KODI_LIBNFS
2265 help
2266 The XBMC media center project was renamed to Kodi entertainment center
2267
2268config BR2_PACKAGE_XBMC_RTMPDUMP
2269 bool "xbmc options have been renamed"
2270 select BR2_LEGACY
2271 select BR2_PACKAGE_KODI_RTMPDUMP
2272 help
2273 The XBMC media center project was renamed to Kodi entertainment center
2274
2275config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
2276 bool "xbmc options have been renamed"
2277 select BR2_LEGACY
2278 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
2279 help
2280 The XBMC media center project was renamed to Kodi entertainment center
2281
2282config BR2_PACKAGE_XBMC_LIBSMBCLIENT
2283 bool "xbmc options have been renamed"
2284 select BR2_LEGACY
2285 select BR2_PACKAGE_KODI_LIBSMBCLIENT
2286 help
2287 The XBMC media center project was renamed to Kodi entertainment center
2288
2289config BR2_PACKAGE_XBMC_LIBTHEORA
2290 bool "xbmc options have been renamed"
2291 select BR2_LEGACY
2292 select BR2_PACKAGE_KODI_LIBTHEORA
2293 help
2294 The XBMC media center project was renamed to Kodi entertainment center
2295
2296config BR2_PACKAGE_XBMC_LIBUSB
2297 bool "xbmc options have been renamed"
2298 select BR2_LEGACY
2299 select BR2_PACKAGE_KODI_LIBUSB
2300 help
2301 The XBMC media center project was renamed to Kodi entertainment center
2302
2303config BR2_PACKAGE_XBMC_LIBVA
2304 bool "xbmc options have been renamed"
2305 select BR2_LEGACY
2306 select BR2_PACKAGE_KODI_LIBVA
2307 help
2308 The XBMC media center project was renamed to Kodi entertainment center
2309
2310config BR2_PACKAGE_XBMC_WAVPACK
2311 bool "xbmc options have been renamed"
2312 select BR2_LEGACY
2313 select BR2_PACKAGE_KODI_WAVPACK
2314 help
2315 The XBMC media center project was renamed to Kodi entertainment center
2316
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002317config BR2_PREFER_STATIC_LIB
2318 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01002319 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002320 help
2321 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
2322 highlights the fact that the option no longer "prefers"
2323 static libraries, but "enforces" static libraries (i.e
2324 shared libraries are completely unused).
2325
Samuel Martina44b1c12014-12-14 17:24:24 +01002326 Take care of updating the type of libraries you want under the
2327 "Build options" menu.
2328
Bernd Kuhls35784592014-12-23 18:46:27 +01002329###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02002330comment "Legacy options removed in 2014.11"
2331
Peter Korsgaarda52bad82014-11-09 00:15:24 +01002332config BR2_x86_generic
2333 bool "x86 generic variant has been removed"
2334 select BR2_LEGACY
2335 help
2336 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02002337 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01002338
Andreas Larsson40e18f22014-10-30 09:29:36 +01002339config BR2_GCC_VERSION_4_4_X
2340 bool "gcc 4.4.x has been removed"
2341 select BR2_LEGACY
2342 help
2343 The 4.4.x version of gcc has been removed. Use a newer
2344 version instead.
2345
Andreas Larsson43b78e72014-10-30 09:29:35 +01002346config BR2_sparc_sparchfleon
2347 bool "sparchfleon CPU has been removed"
2348 select BR2_LEGACY
2349 help
2350 The sparchfleon CPU was only supported in a patched gcc 4.4
2351 version. Its support has been removed in favor of the leon3
2352 CPU starting from gcc 4.8.x.
2353
2354config BR2_sparc_sparchfleonv8
2355 bool "sparchfleonv8 CPU has been removed"
2356 select BR2_LEGACY
2357 help
2358 The sparchfleonv8 CPU was only supported in a patched gcc
2359 4.4 version. Its support has been removed in favor of the
2360 leon3 CPU starting from gcc 4.8.x.
2361
2362config BR2_sparc_sparcsfleon
2363 bool "sparcsfleon CPU has been removed"
2364 select BR2_LEGACY
2365 help
2366 The sparcsfleon CPU was only supported in a patched gcc 4.4
2367 version. Its support has been removed in favor of the leon3
2368 CPU starting from gcc 4.8.x.
2369
2370config BR2_sparc_sparcsfleonv8
2371 bool "sparcsfleonv8 CPU has been removed"
2372 select BR2_LEGACY
2373 help
2374 The sparcsfleonv8 CPU was only supported in a patched gcc
2375 4.4 version. Its support has been removed in favor of the
2376 leon3 CPU starting from gcc 4.8.x.
2377
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02002378config BR2_PACKAGE_XLIB_LIBPCIACCESS
2379 bool "xlib-libpciaccess option has been renamed"
2380 depends on BR2_PACKAGE_XORG7
2381 select BR2_LEGACY
2382 select BR2_PACKAGE_LIBPCIACCESS
2383 help
2384 libpciaccess neither depends on X11 nor Xlib. Thus the
2385 package has been renamed BR2_PACKAGE_LIBPCIACCESS
2386
Yann E. MORINb581bba2014-09-21 20:38:13 +02002387config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
2388 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002389 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02002390 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
2391 help
2392 The Xceive xc5000 option now also handles older firmwares from
2393 Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
2394 from Cresta, who bought Xceive.
2395
Yann E. MORINdac546e2014-09-21 20:38:12 +02002396config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2397 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002398 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02002399 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2400 help
2401 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2402 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2403 to better account for the fact that a T5 variant exists.
2404
Yann E. MORIN120136e2014-09-21 20:38:09 +02002405config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
2406 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002407 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02002408 help
2409 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
2410 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
2411 select it in:
2412 Target packages -> Hardware handling ->
2413 Firmware -> linux-firmware -> WiFi firmware ->
2414 iwlwifi 3160/726x revision to use (revision 7)
2415
2416config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
2417 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002418 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02002419 help
2420 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
2421 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
2422 select it in:
2423 Target packages -> Hardware handling ->
2424 Firmware -> linux-firmware -> WiFi firmware ->
2425 iwlwifi 3160/726x revision to use (revision 8)
2426
2427###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002428comment "Legacy options removed in 2014.08"
2429
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02002430config BR2_PACKAGE_LIBELF
2431 bool "libelf has been removed"
2432 select BR2_PACKAGE_ELFUTILS
2433 select BR2_LEGACY
2434 help
2435 The libelf package provided an old version of the libelf library
2436 and is deprecated. The libelf library is now provided by the
2437 elfutils package.
2438
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002439config BR2_KERNEL_HEADERS_3_8
2440 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002441 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002442 select BR2_LEGACY
2443 help
2444 Version 3.8.x of the Linux kernel headers have been deprecated
2445 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002446 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002447 automatically selected in your configuration.
2448
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02002449config BR2_PACKAGE_GETTEXT_TOOLS
2450 bool "support for gettext-tools on target has been removed"
2451 select BR2_LEGACY
2452 help
2453 The option to install the gettext utilities on the target
2454 has been removed. This is not necessary as Buildroot is not
2455 designed to provide a full development environment on the
2456 target. gettext tools should be used on the build machine
2457 instead.
2458
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002459config BR2_PACKAGE_PROCPS
2460 bool "procps has been replaced by procps-ng"
2461 select BR2_PACKAGE_PROCPS_NG
2462 select BR2_LEGACY
2463 help
2464 The procps package has been replaced by the equivalent procps-ng.
2465
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02002466config BR2_BINUTILS_VERSION_2_20_1
2467 bool "binutils 2.20.1 has been removed"
2468 select BR2_LEGACY
2469 help
2470 The 2.20.1 version of binutils has been removed. Use a newer
2471 version instead.
2472
2473config BR2_BINUTILS_VERSION_2_21
2474 bool "binutils 2.21 has been removed"
2475 select BR2_LEGACY
2476 help
2477 The 2.21 version of binutils has been removed. Use a newer
2478 version instead.
2479
2480config BR2_BINUTILS_VERSION_2_23_1
2481 bool "binutils 2.23.1 has been removed"
2482 select BR2_LEGACY
2483 help
2484 The 2.23.1 version of binutils has been removed. Use a newer
2485 version instead.
2486
Thomas Petazzoni506b9642014-07-01 20:03:03 +02002487config BR2_UCLIBC_VERSION_0_9_32
2488 bool "uclibc 0.9.32 has been removed"
2489 select BR2_LEGACY
2490 help
2491 The 0.9.32 version of uClibc has been removed. Use a newer
2492 version instead.
2493
Thomas Petazzonid10e0802014-07-01 20:03:06 +02002494config BR2_GCC_VERSION_4_3_X
2495 bool "gcc 4.3.x has been removed"
2496 select BR2_LEGACY
2497 help
2498 The 4.3.x version of gcc has been removed. Use a newer
2499 version instead.
2500
2501config BR2_GCC_VERSION_4_6_X
2502 bool "gcc 4.6.x has been removed"
2503 select BR2_LEGACY
2504 help
2505 The 4.6.x version of gcc has been removed. Use a newer
2506 version instead.
2507
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002508config BR2_GDB_VERSION_7_4
2509 bool "gdb 7.4 has been removed"
2510 select BR2_LEGACY
2511 help
2512 The 7.4 version of gdb has been removed. Use a newer version
2513 instead.
2514
2515config BR2_GDB_VERSION_7_5
2516 bool "gdb 7.5 has been removed"
2517 select BR2_LEGACY
2518 help
2519 The 7.5 version of gdb has been removed. Use a newer version
2520 instead.
2521
Thomas Petazzonib18dca02014-07-01 20:03:09 +02002522config BR2_BUSYBOX_VERSION_1_19_X
2523 bool "busybox version selection has been removed"
2524 select BR2_LEGACY
2525 help
2526 The possibility of selecting the Busybox version has been
2527 removed. Use the latest version provided by the Busybox
2528 package instead.
2529
2530config BR2_BUSYBOX_VERSION_1_20_X
2531 bool "busybox version selection has been removed"
2532 select BR2_LEGACY
2533 help
2534 The possibility of selecting the Busybox version has been
2535 removed. Use the latest version provided by the Busybox
2536 package instead.
2537
2538config BR2_BUSYBOX_VERSION_1_21_X
2539 bool "busybox version selection has been removed"
2540 select BR2_LEGACY
2541 help
2542 The possibility of selecting the Busybox version has been
2543 removed. Use the latest version provided by the Busybox
2544 package instead.
2545
Ezequiel García07ac0452014-07-05 18:07:40 -03002546config BR2_PACKAGE_LIBV4L_DECODE_TM6000
2547 bool "decode_tm6000"
2548 select BR2_PACKAGE_LIBV4L_UTILS
2549 select BR2_LEGACY
2550 help
2551 This libv4l option has been deprecated and replaced by a single
2552 option to build all the libv4l utilities.
2553
2554config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
2555 bool "ir-keytable"
2556 select BR2_PACKAGE_LIBV4L_UTILS
2557 select BR2_LEGACY
2558 help
2559 This libv4l option has been deprecated and replaced by a single
2560 option to build all the libv4l utilities.
2561
2562config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
2563 bool "v4l2-compliance"
2564 select BR2_PACKAGE_LIBV4L_UTILS
2565 select BR2_LEGACY
2566 help
2567 This libv4l option has been deprecated and replaced by a single
2568 option to build all the libv4l utilities.
2569
2570config BR2_PACKAGE_LIBV4L_V4L2_CTL
2571 bool "v4l2-ctl"
2572 select BR2_PACKAGE_LIBV4L_UTILS
2573 select BR2_LEGACY
2574 help
2575 This libv4l option has been deprecated and replaced by a single
2576 option to build all the libv4l utilities.
2577
2578config BR2_PACKAGE_LIBV4L_V4L2_DBG
2579 bool "v4l2-dbg"
2580 select BR2_PACKAGE_LIBV4L_UTILS
2581 select BR2_LEGACY
2582 help
2583 This libv4l option has been deprecated and replaced by a single
2584 option to build all the libv4l utilities.
2585
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002586###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002587comment "Legacy options removed in 2014.05"
2588
Peter Seiderer4990a382014-04-23 00:12:23 +02002589config BR2_PACKAGE_EVTEST_CAPTURE
2590 bool "evtest-capture support removed (dropped since evtest 1.31)"
2591 select BR2_LEGACY
2592 help
2593 Support for evtest-capture has been removed (dropped from
2594 evtest package since version 1.31), use evemu package
2595 instead.
2596
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002597config BR2_KERNEL_HEADERS_3_6
2598 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002599 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002600 select BR2_LEGACY
2601 help
2602 Version 3.6.x of the Linux kernel headers have been deprecated
2603 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002604 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002605 automatically selected in your configuration.
2606
2607config BR2_KERNEL_HEADERS_3_7
2608 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002609 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002610 select BR2_LEGACY
2611 help
2612 Version 3.7.x of the Linux kernel headers have been deprecated
2613 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002614 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002615 automatically selected in your configuration.
2616
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02002617config BR2_PACKAGE_VALA
2618 bool "vala target package has been removed"
2619 select BR2_LEGACY
2620 help
2621 The 'vala' target package has been removed since it has been
2622 deprecated for more than four buildroot releases.
2623 Note: the host vala package still exists.
2624
Yann E. MORINd6a37912014-04-07 21:58:03 +02002625config BR2_TARGET_TZ_ZONELIST
2626 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
2627
2628config BR2_PACKAGE_TZDATA_ZONELIST
2629 string "tzdata: the timezone list option has been renamed"
2630 help
2631 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
2632 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
2633 menu. You'll need to select BR2_TARGET_TZ_INFO.
2634
2635config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
2636 bool
2637 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
2638 select BR2_LEGACY
2639
Yann E. MORINc97aeb72014-04-05 17:21:43 +02002640config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
2641 bool "Lua command-line editing none has been renamed"
2642 select BR2_LEGACY
2643 help
2644 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
2645 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
2646 it in the corresponding choice.
2647
2648config BR2_PACKAGE_LUA_INTERPRETER_READLINE
2649 bool "Lua command-line editing using readline has been renamed"
2650 select BR2_LEGACY
2651 help
2652 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
2653 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
2654 it in the corresponding choice.
2655
2656config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
2657 bool "Lua command-line editing using linenoise has been renamed"
2658 select BR2_LEGACY
2659 help
2660 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
2661 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
2662 it in the corresponding choice.
2663
Yann E. MORIN365ae612014-03-28 01:00:24 +01002664config BR2_PACKAGE_DVB_APPS_UTILS
2665 bool "dvb-apps utilities now built by default"
2666 select BR2_LEGACY
2667 help
2668 The dvb-apps utilities are now always built when the dvb-apps
2669 package is selected.
2670
Yann E. MORIN971e3312014-03-01 15:52:56 +01002671config BR2_KERNEL_HEADERS_SNAP
2672 bool "Local Linux snapshot support removed"
2673 select BR2_LEGACY
2674 help
2675 Support for using a custom snapshot to install the Linux
2676 kernel headers has been removed.
2677
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002678config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
2679 bool "/dev management by udev removed"
2680 select BR2_LEGACY
2681 help
2682 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002683 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002684
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002685 Therefore, if you are not using 'systemd' as init system, you
2686 must choose 'Dynamic using eudev' in the '/dev management'
2687 menu to get the same behaviour as in your old configuration.
2688
2689 If you are using 'systemd', its internal implementation of
2690 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002691
2692 You must also check the packages depending on 'udev' are still
2693 selected.
2694
2695config BR2_PACKAGE_UDEV
2696 bool "udev is now a virtual package"
2697 select BR2_LEGACY
2698 select BR2_PACKAGE_HAS_UDEV
2699 help
2700 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002701 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002702
2703 Your old configuration refers to packages depending on 'udev',
2704 either for build or at runtime.
2705
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002706 Check that a 'udev' provider is selected. If you are not using
2707 'systemd' as init system, 'eudev' should be selected, which is
2708 the case if '/dev management' is set to 'Dynamic using eudev'.
2709
2710 If you are using 'systemd', its internal implementation of 'udev'
2711 is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002712
2713config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002714 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002715 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002716 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
2717 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002718 help
2719 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002720 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002721
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002722 If you are not using 'systemd' as init system, udev rules
2723 generation will be handled by 'eudev'. Check that
2724 '/dev management' is set to 'Dynamic using eudev' to get
2725 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002726
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002727 If you are using 'systemd', it internal implementation of 'udev'
2728 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002729
2730config BR2_PACKAGE_UDEV_ALL_EXTRAS
2731 bool "udev extras removed"
2732 select BR2_LEGACY
2733 help
2734 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002735 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002736
2737 The option to enable the extra features of 'udev' (gudev, ...)
2738 has been removed. These features are automatically enabled in
2739 the 'udev' providers if the dependencies are selected. For
2740 example, selecting 'libglib2' will trigger the build of gudev.
2741
Bernd Kuhls5562be12014-03-01 16:41:10 +01002742config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
2743 bool "xlib-libpthread-stubs option has been renamed"
2744 depends on BR2_PACKAGE_XORG7
2745 select BR2_LEGACY
2746 select BR2_PACKAGE_LIBPTHREAD_STUBS
2747 help
2748 The pthread stubs neither depend on X11 nor Xlib. Thus the
2749 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
2750
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002751###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01002752comment "Legacy options removed in 2014.02"
2753
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002754config BR2_sh2
2755 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002756 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002757 help
2758 Due to an inexistent user base and generally poor Linux
2759 support, the support for the SH2 architecture was removed.
2760
2761config BR2_sh3
2762 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002763 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002764 help
2765 Due to an inexistent user base and generally poor Linux
2766 support, the support for the SH3 architecture was removed.
2767
2768config BR2_sh3eb
2769 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002770 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002771 help
2772 Due to an inexistent user base and generally poor Linux
2773 support, the support for the SH3eb architecture was removed.
2774
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002775config BR2_KERNEL_HEADERS_3_1
2776 bool "kernel headers version 3.1.x are no longer supported"
2777 select BR2_KERNEL_HEADERS_3_2
2778 select BR2_LEGACY
2779 help
2780 Version 3.1.x of the Linux kernel headers have been deprecated
2781 for more than four buildroot releases and are now removed.
2782 As an alternative, version 3.2.x of the headers have been
2783 automatically selected in your configuration.
2784
2785config BR2_KERNEL_HEADERS_3_3
2786 bool "kernel headers version 3.3.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002787 select BR2_KERNEL_HEADERS_3_2
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002788 select BR2_LEGACY
2789 help
2790 Version 3.3.x of the Linux kernel headers have been deprecated
2791 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002792 As an alternative, version 3.2.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002793 automatically selected in your configuration.
2794
2795config BR2_KERNEL_HEADERS_3_5
2796 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002797 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002798 select BR2_LEGACY
2799 help
2800 Version 3.5.x of the Linux kernel headers have been deprecated
2801 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002802 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002803 automatically selected in your configuration.
2804
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002805config BR2_GDB_VERSION_7_2
2806 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002807 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002808 select BR2_LEGACY
2809 help
2810 Version 7.2.x of gdb has been deprecated for more than four
2811 buildroot releases and is now removed. As an alternative, gdb
2812 7.5.x has been automatically selected in your configuration.
2813
2814config BR2_GDB_VERSION_7_3
2815 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002816 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002817 select BR2_LEGACY
2818 help
2819 Version 7.3.x of gdb has been deprecated for more than four
2820 buildroot releases and is now removed. As an alternative, gdb
2821 7.5.x has been automatically selected in your configuration.
2822
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01002823config BR2_PACKAGE_CCACHE
2824 bool "ccache target package has been removed"
2825 select BR2_LEGACY
2826 help
2827 The 'ccache' target package has been removed since it has been
2828 deprecated for more than four buildroot releases.
2829 Note: using ccache for speeding up builds is still supported.
2830
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01002831config BR2_HAVE_DOCUMENTATION
2832 bool "support for documentation on target has been removed"
2833 select BR2_LEGACY
2834 help
2835 Support for documentation on target has been removed since it has
2836 been deprecated for more than four buildroot releases.
2837
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01002838config BR2_PACKAGE_AUTOMAKE
2839 bool "automake target package has been removed"
2840 select BR2_LEGACY
2841 help
2842 The 'automake' target package has been removed since it has been
2843 deprecated for more than four buildroot releases.
2844 Note: the host automake still exists.
2845
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01002846config BR2_PACKAGE_AUTOCONF
2847 bool "autoconf target package has been removed"
2848 select BR2_LEGACY
2849 help
2850 The 'autoconf' target package has been removed since it has been
2851 deprecated for more than four buildroot releases.
2852 Note: the host autoconf still exists.
2853
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01002854config BR2_PACKAGE_XSTROKE
2855 bool "xstroke has been removed"
2856 select BR2_LEGACY
2857 help
2858 The 'xstroke' package has been removed since it has been
2859 deprecated for more than four buildroot releases.
2860
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01002861config BR2_PACKAGE_LZMA
2862 bool "lzma target package has been removed"
2863 select BR2_LEGACY
2864 help
2865 The 'lzma' target package has been removed since it has been
2866 deprecated for more than four buildroot releases.
2867 Note: generating lzma-compressed rootfs images is still supported.
2868
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01002869config BR2_PACKAGE_TTCP
2870 bool "ttcp has been removed"
2871 select BR2_LEGACY
2872 help
2873 The 'ttcp' package has been removed since it has been
2874 deprecated for more than four buildroot releases.
2875
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002876config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002877 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002878 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002879 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002880 help
2881 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002882 to 'libllcp'. We have added a new package for 'libllcp' and bumped
2883 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002884
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00002885config BR2_PACKAGE_MYSQL_CLIENT
2886 bool "MySQL client renamed to MySQL"
2887 select BR2_LEGACY
2888 select BR2_PACKAGE_MYSQL
2889 help
2890 The option has been renamed BR2_PACKAGE_MYSQL
2891
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01002892config BR2_PACKAGE_SQUASHFS3
2893 bool "squashfs3 has been removed"
2894 select BR2_LEGACY
2895 select BR2_PACKAGE_SQUASHFS
2896 help
2897 The 'squashfs3' package has been removed since it has been
2898 deprecated for more than four buildroot releases. Package
2899 'squashfs' (4) has been selected automatically as replacement.
2900
2901config BR2_TARGET_ROOTFS_SQUASHFS3
2902 bool "squashfs3 rootfs support has been removed"
2903 select BR2_LEGACY
2904 help
2905 Together with the removal of the squashfs3 package, support
2906 for squashfs3 root filesystems has been removed too. Squashfs
2907 root filesystems will automatically use squashfs4 now.
2908
Arnaud Aujon560fe852013-12-15 20:23:12 +01002909config BR2_PACKAGE_NETKITBASE
2910 bool "netkitbase has been removed"
2911 select BR2_LEGACY
2912 help
2913 The 'netkitbase' package has been removed since it has been
2914 deprecated since 2012.11. This package provided 'inetd'
2915 which is replaced by 'xinet' and 'ping' which is replaced by
2916 'busybox' or 'fping'.
2917
2918config BR2_PACKAGE_NETKITTELNET
2919 bool "netkittelnet has been removed"
2920 select BR2_LEGACY
2921 help
2922 The 'netkittelnet' package has been removed since it has
2923 been deprecated since 2012.11. 'busybox' provides a telnet
2924 client and should be used instead.
2925
Francois Perrad63058f82014-01-11 16:42:09 +01002926config BR2_PACKAGE_LUASQL
2927 bool "luasql has been replaced by luasql-sqlite3"
2928 select BR2_PACKAGE_LUASQL_SQLITE3
2929 select BR2_LEGACY
2930 help
2931 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2932
Francois Perrada6c53472014-01-11 16:42:08 +01002933config BR2_PACKAGE_LUACJSON
2934 bool "luacjson has been replaced by lua-cjson"
2935 select BR2_PACKAGE_LUA_CJSON
2936 select BR2_LEGACY
2937 help
2938 The option has been renamed BR2_PACKAGE_LUA_CJSON.
2939
Arnaud Aujon560fe852013-12-15 20:23:12 +01002940###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002941comment "Legacy options removed in 2013.11"
2942
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01002943config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2944 bool "lvm2's 'dmsetup only' option removed"
2945 select BR2_LEGACY
2946 help
2947 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2948 led to problems with other packages that need the full lvm2
2949 suite. Therefore, the option has been replaced with the positive
2950 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2951
2952# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2953# in order to automatically propagate old configs
2954
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01002955config BR2_PACKAGE_QT_JAVASCRIPTCORE
2956 bool "qt javascriptcore option removed"
2957 select BR2_LEGACY
2958 help
2959 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2960 force the activation or disabling of the JIT compiler in the
2961 Qt Javascript interpreter. However, the JIT compiler is not
2962 available for all architectures, so forcing its activation
2963 does not always work. Moreover, Qt knows by itself for which
2964 architectures JIT support is possible, and will
2965 automatically enable it if possible.
2966
2967 Therefore, this option was in fact useless, and causing
2968 build problems when enabled on architectures for which the
2969 JIT support was not available. It has been removed, and
2970 there is no replacement: Qt will enable JIT at compile time
2971 when possible.
2972
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002973config BR2_PACKAGE_MODULE_INIT_TOOLS
2974 bool "module-init-tools replaced by kmod"
2975 select BR2_PACKAGE_KMOD
2976 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01002977 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002978 help
2979 The 'module-init-tools' package has been removed, since it
2980 has been depracated upstream and replaced by 'kmod'.
2981
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02002982config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2983 string "u-boot: the git repository URL option has been renamed"
2984 help
2985 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2986 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2987
2988config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2989 bool
2990 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2991 select BR2_LEGACY
2992
2993# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2994# boot/uboot/Config.in
2995
2996config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2997 string "u-boot: the git repository version option has been renamed"
2998 help
2999 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
3000 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
3001
3002config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
3003 bool
3004 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
3005 select BR2_LEGACY
3006
3007# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
3008# boot/uboot/Config.in
3009
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02003010config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
3011 string "linux: the git repository URL option has been renamed"
3012 help
3013 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
3014 been renamed to
3015 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
3016
3017config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
3018 bool
3019 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
3020 select BR2_LEGACY
3021
3022# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
3023# linux/Config.in
3024
3025config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
3026 string "linux: the git repository version option has been renamed"
3027 help
3028 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
3029 been renamed to
3030 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
3031
3032config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
3033 bool
3034 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
3035 select BR2_LEGACY
3036
3037# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
3038# linux/Config.in
3039
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003040###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003041comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03003042
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02003043config BR2_ARM_OABI
3044 bool "ARM OABI support has been removed"
3045 select BR2_LEGACY
3046 help
3047 The support for the ARM OABI was deprecated since a while,
3048 and has been removed completely from Buildroot. It is also
3049 deprecated in upstream gcc, since gcc 4.7. People should
3050 switch to EABI instead, which should not be a problem as
3051 long as you don't have pre-built OABI binaries in your
3052 system that you can't recompile.
3053
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03003054config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
3055 bool "dosfstools dosfsck renamed to fsck.fat"
3056 select BR2_LEGACY
3057 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
3058 help
3059 dosfsck was renamed upstream to fsck.fat for consistency.
3060
3061config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
3062 bool "dosfstools dosfslabel renamed to fatlabel"
3063 select BR2_LEGACY
3064 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
3065 help
3066 doslabel was renamed upstream to fatlabel for consistency.
3067
3068config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
3069 bool "dosfstools mkdosfs renamed to mkfs.fat"
3070 select BR2_LEGACY
3071 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
3072 help
3073 mkdosfs was renamed upstream to mkfs.fat for consistency.
3074
Thomas Petazzonie21db002013-06-30 21:28:57 +02003075config BR2_ELF2FLT
3076 bool "the elf2flt option has been renamed"
3077 select BR2_LEGACY
3078 help
3079 The BR2_ELF2FLT option has been renamed to
3080 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
3081 the package infrastructure.
3082
Thomas Petazzonid8060052013-07-16 10:03:17 +02003083config BR2_VFP_FLOAT
3084 bool "the ARM VFP floating point option has been renamed"
3085 select BR2_LEGACY
3086 help
3087 Due to a major refactoring of the floating-point handling of
3088 the ARM architecture support, the BR2_VFP_FLOAT option has
3089 been replaced with a choice of options that allows to select
3090 between various VFP versions/capabilities.
3091
Samuel Martinba8f82b2013-08-30 06:08:59 +02003092config BR2_PACKAGE_GCC_TARGET
3093 bool "gcc on the target filesystem has been removed"
3094 select BR2_LEGACY
3095 help
3096 The support for gcc in the target filesystem was deprecated
3097 since a while, and has been removed completely from Buildroot.
3098 See Buildroot's documentation for more explanations.
3099
3100config BR2_HAVE_DEVFILES
3101 bool "development files in target filesystem has been removed"
3102 select BR2_LEGACY
3103 help
3104 The installation of the development files in the target
3105 filesystem was deprecated since a while, and has been removed
3106 completely from Buildroot.
3107 See Buildroot's documentation for more explanations.
3108
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003109###############################################################################
3110comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +00003111
3112config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
3113 bool "Realtek 8192 replaced by Realtek 81xx"
3114 select BR2_LEGACY
3115 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
3116 help
3117 Now covers the whole Realtek 81xx familly: 8188/8192.
3118
3119config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
3120 bool "Realtek 8712 replaced by Realtek 87xx"
3121 select BR2_LEGACY
3122 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
3123 help
3124 Now covers the whole Realtek 87xx familly: 8712/8723.
3125
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00003126endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02003127
3128endif # !SKIP_LEGACY