blob: 44303a42bc929e4011ad57f665961480ba1b833f [file] [log] [blame]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00001#
2# Config.in.legacy - support for backward compatibility
3#
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +02004# When an existing Config.in symbol is removed, it should be added again in
5# this file, and take appropriate action to approximate backward compatibility.
6# This will make the transition for the user more convenient.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00007#
8# When adding legacy symbols to this file, add them to the front. The oldest
9# symbols will be removed again after about two years.
10#
11# The symbol should be copied as-is from the place where it was previously
12# defined, but the help text should be removed or replaced with something that
13# explains how to fix it.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020014#
15# For bool options, the old symbol should select BR2_LEGACY, so that the user
16# is informed at build-time about selected legacy options.
17# If there is an equivalent (set of) new symbols, these should be select'ed by
18# the old symbol for backwards compatibility.
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010019# It is not possible to select an option that is part of a choice. In that
20# case, the new option should use the old symbol as default. This requires a
21# change outside of Config.in.legacy, and this should be clearly marked as such
22# in a comment, so that removal of legacy options also include the removal of
23# these external references.
24#
25# [Example: renaming a bool option that is part of a choice from FOO to BAR]
26# original choice:
27# choice
28# prompt "Choose foobar"
29# config BR2_FOO_1
30# bool "foobar 1"
31# config BR2_FOO_2
32# bool "foobar 2"
33# endchoice
34#
35# becomes:
36# choice
37# prompt "Choose foobar"
38# default BR2_BAR_1 if BR2_FOO_1 # legacy
39# default BR2_BAR_2 if BR2_FOO_2 # legacy
40# config BR2_BAR_1
41# bool "foobar 1"
42# config BR2_BAR_2
43# bool "foobar 2"
44# endchoice
45#
46# and in Config.in.legacy:
47# config BR2_FOO_1
48# bool "foobar 1 has been renamed"
49# help
50# <suitable help text>
51# # Note: BR2_FOO_1 is still referenced from package/foo/Config.in
52# config BR2_FOO_2
53# bool "foobar 2 has been renamed"
54# help
55# <suitable help text>
56# # Note: BR2_FOO_2 is still referenced from package/foo/Config.in
57#
58# [End of example]
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020059#
60# For string options, it is not possible to directly select another symbol. In
61# this case, a hidden wrap bool option has to be added, that defaults to y if
62# the old string is not set at its default value. The wrap symbol should select
63# BR2_LEGACY.
64# If the original symbol has been renamed, the new symbol should use the value
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010065# of the old symbol as default. Like for choice options, a comment should be
66# added to flag that the symbol is still used in another file.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020067#
68# [Example: renaming a string option from FOO to BAR]
69# original symbol:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010070# config BR2_FOO_STRING
71# string "Some foo string"
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020072#
73# becomes:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010074# config BR2_BAR_STRING
75# string "Some bar string"
76# default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020077#
78# and in Config.in.legacy:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010079# config BR2_FOO_STRING
80# string "The foo string has been renamed"
81# help
82# <suitable help text>
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020083#
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010084# config BR2_FOO_STRING_WRAP
85# bool
86# default y if BR2_FOO_STRING != ""
87# select BR2_LEGACY
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020088#
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010089# # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020090#
91# [End of example]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000092
Arnout Vandecappelle53903a12015-04-11 01:49:02 +020093config BR2_SKIP_LEGACY
94 bool
95 option env="SKIP_LEGACY"
96
97if !BR2_SKIP_LEGACY
98
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000099config BR2_LEGACY
100 bool
101 help
102 This option is selected automatically when your old .config uses an
103 option that no longer exists in current buildroot. In that case, the
104 build will fail. Look for config options which are selected in the
105 menu below: they no longer exist and should be replaced by something
106 else.
107
108# This comment fits exactly in a 80-column display
109comment "Legacy detected: check the content of the menu below"
110 depends on BR2_LEGACY
111
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000112menu "Legacy config options"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000113
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000114if BR2_LEGACY
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +0200115comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000116comment "Your old configuration uses legacy options that no "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +0200117comment "longer exist in buildroot, as indicated in the menu "
118comment "below. As long as these options stay selected, or in"
119comment "case of string options are non-empty, the build "
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000120comment "will fail. "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +0200121comment "* "
122comment "Where possible, an automatic conversion from old to "
123comment "new symbols has been performed. Before making any "
124comment "change in this legacy menu, make sure to exit the "
125comment "configuration editor a first time and save the "
126comment "configuration. Otherwise, the automatic conversion "
127comment "of symbols will be lost. "
128comment "* "
129comment "After this initial save, reopen the configuration "
130comment "editor, inspect the options selected below, read "
131comment "their help texts, and verify/update the new "
132comment "configuration in the corresponding configuration "
133comment "menus. When everything is ok, you can disable the "
134comment "legacy options in the menu below. Once you have "
135comment "disabled all legacy options, this text will "
136comment "disappear and you will be able to start the build. "
137comment "* "
Yann E. MORINd2e706c2013-06-30 00:38:13 +0200138comment "Note: at some point in the future, the oldest legacy"
139comment "options will be removed, and configuration files "
140comment "that still have those options set, will fail to "
141comment "build, or run, in unpredictable ways. "
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +0200142comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000143endif
144
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200145###############################################################################
Carlos Santosf52af612017-09-01 21:41:38 -0300146comment "Legacy options removed in 2017.11"
147
148config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
149 bool "util-linux login utilities option removed"
150 select BR2_LEGACY
151 select BR2_PACKAGE_UTIL_LINUX_LAST
152 select BR2_PACKAGE_UTIL_LINUX_LOGIN
153 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
154 select BR2_PACKAGE_UTIL_LINUX_SU
155 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
156 help
157 Login utilities (last, login, runuser, su, sulogin) now have
158 their own configuration options in the util-linux menu.
159
160###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +0200161comment "Legacy options removed in 2017.08"
162
Bin Meng20db0982017-08-30 08:55:25 -0700163config BR2_PACKAGE_SIMICSFS
164 bool "simicsfs support removed"
165 select BR2_LEGACY
166 help
167 Support for simicsfs kernel driver that provides access to a
168 host computer's local filesystem when the target is
169 executing within a SIMICS simulation has been removed.
170
171 Simics is now moving away from the simicsfs kernel module,
172 as the kernel module has required too much maintenance
173 work. Users should move to the user mode Simics agent
174 instead.
175
Thomas Petazzoni0b5dc312017-07-29 15:09:06 +0200176config BR2_BINUTILS_VERSION_2_26_X
177 bool "binutils version 2.26 support removed"
178 select BR2_LEGACY
179 help
180 Support for binutils version 2.26 has been removed. The
181 current default version (2.28 or later) has been selected
182 instead.
183
Yann E. MORINb3b60702017-07-09 05:21:56 -0700184config BR2_XTENSA_OVERLAY_DIR
185 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
Yann E. MORIN15a96d12017-07-09 05:21:55 -0700186 help
Yann E. MORINb3b60702017-07-09 05:21:56 -0700187 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
188 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
189 path to the overlay file, not to the directory containing
190 it.
191
192config BR2_XTENSA_OVERLAY_DIR_WRAP
193 bool
194 default y if BR2_XTENSA_OVERLAY_DIR != ""
195 select BR2_LEGACY
196
197config BR2_XTENSA_CUSTOM_NAME
198 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
199 help
200 The BR2_XTENSA_CUSTOM_NAME option has been removed.
Yann E. MORIN15a96d12017-07-09 05:21:55 -0700201
202config BR2_XTENSA_CUSTOM_NAME_WRAP
203 bool
204 default y if BR2_XTENSA_CUSTOM_NAME != ""
205 select BR2_LEGACY
206
Sébastien Szymanskif47fc952017-07-04 16:47:29 +0200207config BR2_PACKAGE_HOST_MKE2IMG
208 bool "host mke2img has been removed"
209 select BR2_LEGACY
210 help
211 We now call mkfs directly to generate ext2/3/4 filesystem
212 image, so mke2img is no longer necessary.
213
Samuel Martinbee9e882017-07-09 07:00:38 +0200214config BR2_TARGET_ROOTFS_EXT2_BLOCKS
215 int "exact size in blocks has been removed"
216 default 0
217 help
218 This option has been removed in favor of
219 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
220 to the value you had before. Set to 0 here to remove the
221 warning.
222
223config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
224 bool
225 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
226 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
227 select BR2_LEGACY
228
229# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
230
Samuel Martin235b6f12017-07-04 16:47:25 +0200231config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
232 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
233 default 0
234 help
235 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
236 images. It now automatically selects the number of inodes
237 based on the image size. The extra number of inodes can no
238 longer be provided; instead, provide the total number of
239 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
240
241config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
242 bool
243 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
244 select BR2_LEGACY
245
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100246config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
247 bool "cdxaparse removed"
248 select BR2_LEGACY
249
250config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
251 bool "dataurisrc moved to gstreamer1"
252 select BR2_LEGACY
253 help
254 Dataurisrc has moved to gstreamer core and is always built.
255
256config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
257 bool "dccp removed"
258 select BR2_LEGACY
259
260config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
261 bool "hdvparse removed"
262 select BR2_LEGACY
263
264config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
265 bool "mve removed"
266 select BR2_LEGACY
267
268config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
269 bool "nuvdemux removed"
270 select BR2_LEGACY
271
272config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
273 bool "patchdetect removed"
274 select BR2_LEGACY
275
276config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
277 bool "sdi removed"
278 select BR2_LEGACY
279
280config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
281 bool "tta removed"
282 select BR2_LEGACY
283
284config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
285 bool "videomeasure removed"
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +0100286 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100287 select BR2_LEGACY
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +0100288 help
289 videomeasure plugin has been removed and has been replaced by
290 iqa, which has automatically been enabled.
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100291
292config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
293 bool "apexsink removed"
294 select BR2_LEGACY
295
296config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
297 bool "sdl removed"
298 select BR2_LEGACY
299
Vicente Olivert Rierab006fe12017-05-12 11:18:05 +0100300config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
301 bool "mad (*.mp3 audio) removed"
302 select BR2_LEGACY
303
Thomas Petazzoni4c06d242017-07-04 10:11:54 +0200304config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
305 bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
306 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
307 select BR2_LEGACY
308 help
309 The WebRTC plugin in GStreamer 1.x has always been named
310 webrtcdsp, but was wrongly introduced in Buildroot under the
311 name webrtc. Therefore, we have renamed the option to match
312 the actual name of the GStreamer plugin.
313
Yann E. MORIN0d643fd2017-07-01 14:51:21 +0200314config BR2_STRIP_none
315 bool "Strip command 'none' has been removed"
316 select BR2_LEGACY
317 help
318 The strip command choice has been changed into a single
319 boolean option. Please check that the new setting is
320 correct (in the "Build options" sub-menu)
321
Bernd Kuhlsdd4d3c12017-06-11 14:48:51 +0200322config BR2_PACKAGE_BEECRYPT_CPP
323 bool "C++ support removed in beecrypt"
324 select BR2_LEGACY
325 help
326 Support for C++ depends on icu. The beecrypt package is
327 incompatible with icu 59+.
328
Peter Korsgaard622ff3d2017-06-22 00:07:42 +0200329config BR2_PACKAGE_SPICE_CLIENT
330 bool "spice client support removed"
331 select BR2_LEGACY
332 help
333 Spice client support has been removed upstream. The
334 functionality now lives in the spice-gtk widget and
335 virt-viewer.
336
337config BR2_PACKAGE_SPICE_GUI
338 bool "spice gui support removed"
339 select BR2_LEGACY
340 help
341 Spice gui support has been removed upstream. The
342 functionality now lives in the spice-gtk widget and
343 virt-viewer.
344
Peter Korsgaard6f2c0222017-06-22 00:07:41 +0200345config BR2_PACKAGE_SPICE_TUNNEL
346 bool "spice network redirection removed"
347 select BR2_LEGACY
348 help
349 Spice network redirection, aka tunnelling has been removed
350 upstream.
351
Koen Martens438b2d12017-06-20 20:54:49 +0200352config BR2_PACKAGE_INPUT_TOOLS
353 bool "input-tools removed"
354 select BR2_LEGACY
355 select BR2_PACKAGE_LINUXCONSOLETOOLS
356 help
357 input-tools has been removed, it is replaced by
358 linuxconsoletools, which has automatically been enabled.
359
360config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
361 bool "inputattach moved to linuxconsoletools"
362 select BR2_LEGACY
363 select BR2_PACKAGE_LINUXCONSOLETOOLS
364 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
365 help
366 input-tools has been removed, inputattach is now part
367 of linuxconsoletools, which has automatically been
368 enabled.
369
370config BR2_PACKAGE_INPUT_TOOLS_JSCAL
371 bool "jscal moved to linuxconsoletools"
372 select BR2_LEGACY
373 select BR2_PACKAGE_LINUXCONSOLETOOLS
374 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
375 help
376 input-tools has been removed, jscal is now part
377 of linuxconsoletools, which has automatically been
378 enabled.
379
380config BR2_PACKAGE_INPUT_TOOLS_JSTEST
381 bool "jstest moved to linuxconsoletools"
382 select BR2_LEGACY
383 select BR2_PACKAGE_LINUXCONSOLETOOLS
384 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
385 help
386 input-tools has been removed, jstest is now part
387 of linuxconsoletools, which has automatically been
388 enabled.
389
Baruch Siach6510a822017-06-16 06:32:48 +0300390config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
391 bool "SH Sourcery toolchain has been removed"
392 select BR2_LEGACY
393 help
394 The Sourcery CodeBench toolchain for the sh architecture has
395 been removed, since it uses glibc older than 2.17 that requires
396 -lrt to link executables using clock_* system calls. This makes
397 this toolchain difficult to maintain over time.
398
Baruch Siach06cac642017-06-16 06:32:47 +0300399config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
400 bool "x86 Sourcery toolchain has been removed"
401 select BR2_LEGACY
402 help
403 The Sourcery CodeBench toolchain for the x86 architecture has
404 been removed, since it uses glibc older than 2.17 that requires
405 -lrt to link executables using clock_* system calls. This makes
406 this toolchain difficult to maintain over time.
407
Romain Naourf6695212017-05-23 22:24:40 +0200408config BR2_GCC_VERSION_4_8_X
409 bool "gcc 4.8.x support removed"
410 select BR2_LEGACY
411 help
412 Support for gcc version 4.8.x has been removed. The current
413 default version (5.x or later) has been selected instead.
414
415###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300416comment "Legacy options removed in 2017.05"
417
Romain Naour95426af2017-02-21 22:43:16 +0100418config BR2_PACKAGE_SUNXI_MALI_R2P4
419 bool "sunxi-mali r2p4 removed"
420 select BR2_LEGACY
421 help
422 sunxi-mali libMali for r2p4 Mali kernel module has been
423 removed since the libump package only provides libUMP.so.3.
424 libMali for r2p4 Mali kernel module requires libUMP.so.2.
425
Martin Barkd999a7f2017-05-06 14:19:13 +0100426config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
427 bool "CoffeeScript option has been removed"
428 select BR2_LEGACY
429 help
430 The option to enable NodeJS CoffeeScript has been removed.
431 To continue using it, add "coffee-script" to
432 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
433
Martin Bark096f8b12017-05-06 14:19:12 +0100434config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
435 bool "Express web application framework option has been removed"
436 select BR2_LEGACY
437 help
438 The option to enable the NodeJS Express web application
439 framework has been removed. To continue using it, add
440 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
441
Baruch Siach0364d442017-05-01 15:59:41 +0300442config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
443 bool "bluez5_utils gatttool install option removed"
444 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
445 help
446 The option to install gatttool specifically has been removed.
447 Since version 5.44 gatttool is in the list of deprecated
448 tools. The option to build and install deprecated tools has
449 been automatically enabled.
450
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +0000451config BR2_PACKAGE_OPENOCD_FT2XXX
452 bool "openocd ft2232 support has been removed"
453 select BR2_PACKAGE_OPENOCD_FTDI
454 select BR2_LEGACY
455 help
456 FT2232 support in OpenOCD has been removed, it's replaced by
457 FDTI support, which has automatically been enabled.
458
Bernd Kuhls24a07d52017-04-29 10:37:28 +0200459config BR2_PACKAGE_KODI_RTMPDUMP
460 bool "kodi rtmp has been removed"
461 select BR2_LEGACY
Bernd Kuhlsc8942672017-07-16 16:35:17 +0200462 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
Bernd Kuhls24a07d52017-04-29 10:37:28 +0200463 help
464 Internal rtmp support was removed from Kodi.
465
Bernd Kuhlsd3936902017-04-29 10:37:21 +0200466config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
467 bool "kodi-visualisation-fountain has been removed"
468 select BR2_LEGACY
469 help
470 According to upstream 'the visualization is not currently
471 in a working shape.'
472
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +0200473config BR2_PACKAGE_PORTMAP
474 bool "portmap has been removed"
475 select BR2_LEGACY
476 select BR2_PACKAGE_RPCBIND
477 help
478 The portmap upstream tarball is removed, no releases since
479 ten years and latest change in upstream git in 2014.
480 You should better use rpcbind as a RPC portmapper.
481
Thomas Petazzoni58472912017-04-03 22:28:21 +0200482config BR2_BINUTILS_VERSION_2_25_X
483 bool "binutils version 2.25 support removed"
484 select BR2_LEGACY
485 help
486 Support for binutils version 2.25 has been removed. The
487 current default version (2.27 or later) has been selected
488 instead.
489
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +0200490config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
491 bool "uclibc RPC support has been removed"
492 select BR2_LEGACY
493 help
494 uClibc-ng removed internal RPC implementation in 1.0.23. You
495 should use libtirpc instead.
496
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +0100497config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
498 int "extra size in blocks has been removed"
499 default 0
500 help
501 Since the support for auto calculation of the filesystem size has been
502 removed, this option is now useless and must be 0.
503 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS matchs
504 your needs.
505
506config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
507 bool
508 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
509 select BR2_LEGACY
510
Vicente Olivert Riera815f7132017-03-22 11:39:13 +0000511config BR2_PACKAGE_SYSTEMD_KDBUS
512 bool "systemd-kdbus has been removed"
513 select BR2_LEGACY
514 help
515 --enable/disable-kdbus configure option has been removed since
516 systemd-231.
517
Gustavo Zacariasd10b4932017-03-16 10:04:34 -0300518config BR2_PACKAGE_POLARSSL
519 bool "polarssl has been removed"
520 select BR2_LEGACY
521 help
522 The polarssl crypto library has been removed since the 1.2.x
523 release branch is no longer maintained. Newer upstream
524 branches/releases (mbedtls) have API changes so they're not
525 drop-in replacements.
526
Yann E. MORIN61551182017-03-12 10:58:15 +0100527config BR2_NBD_CLIENT
528 bool "nbd client option was renamed"
529 select BR2_LEGACY
530 select BR2_PACKAGE_NBD_CLIENT
531 help
532 The nbd client option has been renamed to BR2_PACKAGE_NBD_CLIENT.
533
534config BR2_NBD_SERVER
535 bool "nbd server option was renamed"
536 select BR2_LEGACY
537 select BR2_PACKAGE_NBD_SERVER
538 help
539 The nbd server option has been renamed to BR2_PACKAGE_NBD_SERVER.
540
Carlos Santos6a9c6312017-02-14 09:05:16 -0200541config BR2_PACKAGE_GMOCK
542 bool "gmock merged into gtest package"
543 select BR2_LEGACY
544 select BR2_PACKAGE_GTEST
545 select BR2_PACKAGE_GTEST_GMOCK
546 help
547 GMock is now a suboption of the GTest package.
548
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300549config BR2_KERNEL_HEADERS_4_8
550 bool "kernel headers version 4.8.x are no longer supported"
551 select BR2_KERNEL_HEADERS_4_4
552 select BR2_LEGACY
553 help
554 Version 4.8.x of the Linux kernel headers are no longer
555 maintained upstream and are now removed. As an alternative,
556 version 4.4.x of the headers have been automatically
557 selected in your configuration.
558
559config BR2_KERNEL_HEADERS_3_18
560 bool "kernel headers version 3.18.x are no longer supported"
561 select BR2_KERNEL_HEADERS_3_12
562 select BR2_LEGACY
563 help
564 Version 3.18.x of the Linux kernel headers are no longer
565 maintained upstream and are now removed. As an alternative,
566 version 3.12.x of the headers have been automatically
567 selected in your configuration.
568
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300569config BR2_GLIBC_VERSION_2_22
570 bool "glibc 2.22 removed"
571 select BR2_LEGACY
572 help
573 Support for glibc version 2.22 has been removed. The current
574 default version has been selected instead.
575
576###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +0100577comment "Legacy options removed in 2017.02"
578
Francois Perrad8546ff32016-12-26 15:50:35 +0100579config BR2_PACKAGE_PERL_DB_FILE
580 bool "perl-db-file removed"
581 select BR2_LEGACY
582 select BR2_PACKAGE_BERKELEYDB
583 select BR2_PACKAGE_PERL
584 help
585 DB_File can be built as a core Perl module, so the separate
586 perl-db-file package has been removed.
587
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300588config BR2_KERNEL_HEADERS_4_7
589 bool "kernel headers version 4.7.x are no longer supported"
590 select BR2_KERNEL_HEADERS_4_4
591 select BR2_LEGACY
592 help
593 Version 4.7.x of the Linux kernel headers are no longer
594 maintained upstream and are now removed. As an alternative,
595 version 4.4.x of the headers have been automatically
596 selected in your configuration.
597
598config BR2_KERNEL_HEADERS_4_6
599 bool "kernel headers version 4.6.x are no longer supported"
600 select BR2_KERNEL_HEADERS_4_4
601 select BR2_LEGACY
602 help
603 Version 4.6.x of the Linux kernel headers are no longer
604 maintained upstream and are now removed. As an alternative,
605 version 4.4.x of the headers have been automatically
606 selected in your configuration.
607
608config BR2_KERNEL_HEADERS_4_5
609 bool "kernel headers version 4.5.x are no longer supported"
610 select BR2_KERNEL_HEADERS_4_4
611 select BR2_LEGACY
612 help
613 Version 4.5.x of the Linux kernel headers are no longer
614 maintained upstream and are now removed. As an alternative,
615 version 4.4.x of the headers have been automatically
616 selected in your configuration.
617
618config BR2_KERNEL_HEADERS_3_14
619 bool "kernel headers version 3.14.x are no longer supported"
620 select BR2_KERNEL_HEADERS_3_12
621 select BR2_LEGACY
622 help
623 Version 3.14.x of the Linux kernel headers are no longer
624 maintained upstream and are now removed. As an alternative,
625 version 3.12.x of the headers have been automatically
626 selected in your configuration.
627
Romain Naour63abbcc2016-12-16 16:29:45 +0100628config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
629 bool "musl-cross 1.1.12 toolchain removed"
630 select BR2_LEGACY
631 help
632 The support for the prebuilt toolchain based on the Musl C
633 library provided by the musl-cross project has been removed.
634 Upstream doesn't provide any prebuilt toolchain anymore, use the
635 Buildroot toolchain instead.
636
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +0100637config BR2_UCLIBC_INSTALL_TEST_SUITE
638 bool "uClibc tests now in uclibc-ng-test"
639 select BR2_LEGACY
640 select BR2_PACKAGE_UCLIBC_NG_TEST
641 help
642 The test suite of the uClibc C library has been moved into a
643 separate package, uclibc-ng-test.
644
Arnout Vandecappelle311bc132016-11-24 00:40:35 +0100645config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
646 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
647 select BR2_LEGACY
648 help
649 The ADI Blackfin toolchain has many bugs which are fixed in
650 more recent gcc and uClibc-ng releases. Use the Buildroot
651 toolchain instead.
652
Arnout Vandecappelle207294f2016-11-23 15:14:04 +0100653config BR2_PACKAGE_MAKEDEVS
654 bool "makedevs removed"
655 select BR2_LEGACY
656 help
657 The makedevs tool is part of busybox. The Buildroot fork
658 should not be used outside of the Buildroot infrastructure.
659
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +0100660config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
661 bool "Arago ARMv7 2011.09 removed"
662 select BR2_LEGACY
663 help
664 The Arago toolchains are every old and not updated anymore.
665
666config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
667 bool "Arago ARMv5 2011.09 removed"
668 select BR2_LEGACY
669 help
670 The Arago toolchains are every old and not updated anymore.
671
Thomas Petazzonied364d12016-11-05 14:32:38 +0100672config BR2_PACKAGE_SNOWBALL_HDMISERVICE
673 bool "snowball-hdmiservice removed"
674 select BR2_LEGACY
675 help
676 We no longer have support for the Snowball platform in
677 Buildroot, so this package was no longer useful.
678
679config BR2_PACKAGE_SNOWBALL_INIT
680 bool "snowball-init removed"
681 select BR2_LEGACY
682 help
683 We no longer have support for the Snowball platform in
684 Buildroot, so this package was no longer useful.
685
Jörg Krause69aa0572016-12-14 14:40:58 +0100686config BR2_GDB_VERSION_7_9
687 bool "gdb 7.9 has been removed"
688 select BR2_LEGACY
689 help
690 The 7.9 version of gdb has been removed. Use a newer version
691 instead.
692
Thomas Petazzonied364d12016-11-05 14:32:38 +0100693###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +0200694comment "Legacy options removed in 2016.11"
695
Fabrice Fontainec4572132016-09-12 23:31:07 +0200696config BR2_PACKAGE_PHP_SAPI_CLI_CGI
697 bool "PHP CGI and CLI options are now seperate"
698 select BR2_PACKAGE_PHP_SAPI_CLI
699 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200700 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200701 help
702 The PHP Interface options have been split up into a
703 separate option for each interface.
704
705config BR2_PACKAGE_PHP_SAPI_CLI_FPM
706 bool "PHP CLI and FPM options are now separate"
707 select BR2_PACKAGE_PHP_SAPI_CLI
708 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200709 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200710 help
711 The PHP Interface options have been split up into a
712 separate option for each interface.
713
Arnout Vandecappelle35343992016-10-15 16:51:06 +0200714config BR2_PACKAGE_WVSTREAMS
715 bool "wvstreams removed"
716 select BR2_LEGACY
717 help
718 wvstreams is not maintained anymore since about 2009. It also
719 doesn't build anymore with recent compilers (GCC 5+).
720
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +0200721config BR2_PACKAGE_WVDIAL
722 bool "wvdial removed"
723 select BR2_LEGACY
724 help
725 wvdial is not maintained anymore since about 2009. It also
726 doesn't build anymore with recent compilers (GCC 5+).
727
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +0200728config BR2_PACKAGE_WEBKITGTK24
729 bool "webkitgtk 2.4.x removed"
730 select BR2_LEGACY
731 help
732 This legacy package only existed because some other packages
733 depended on that specific version of webkitgtk. However, the
734 other packages have been fixed. webkitgtk 2.4 is full of
735 security issues so it needs to be removed.
736
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +0200737config BR2_PACKAGE_TORSMO
738 bool "torsmo removed"
739 select BR2_LEGACY
740 help
741 torsmo has been unmaintained for a long time, and nobody
742 seems to be interested in it.
743
Arnout Vandecappelle290166f2016-10-15 16:51:02 +0200744config BR2_PACKAGE_SSTRIP
745 bool "sstrip removed"
746 select BR2_LEGACY
747 help
748 sstrip is unmaintained and potentially harmful. It doesn't
749 save so much compared to normal binutils strip, and there is
750 a big risk of binaries that don't work. Use normal strip
751 instead.
752
Arnout Vandecappelle133466f2016-10-15 16:51:01 +0200753config BR2_KERNEL_HEADERS_4_3
754 bool "kernel headers version 4.3.x are no longer supported"
755 select BR2_KERNEL_HEADERS_4_1
756 select BR2_LEGACY
757 help
758 Version 4.3.x of the Linux kernel headers are no longer
759 maintained upstream and are now removed. As an alternative,
760 version 4.1.x of the headers have been automatically
761 selected in your configuration.
762
763config BR2_KERNEL_HEADERS_4_2
764 bool "kernel headers version 4.2.x are no longer supported"
765 select BR2_KERNEL_HEADERS_4_1
766 select BR2_LEGACY
767 help
768 Version 4.2.x of the Linux kernel headers are no longer
769 maintained upstream and are now removed. As an alternative,
770 version 4.1.x of the headers have been automatically
771 selected in your configuration.
772
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +0200773config BR2_PACKAGE_KODI_ADDON_XVDR
774 bool "kodi-addon-xvdr removed"
775 select BR2_LEGACY
776 help
777 According to the github project page:
778 https://github.com/pipelka/xbmc-addon-xvdr
779 this package is discontinued.
780
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +0200781config BR2_PACKAGE_IPKG
782 bool "ipkg removed"
783 select BR2_LEGACY
784 help
785 ipkg dates back to the early 2000s when Compaq started the
786 handhelds.org project and it hasn't seen development since 2006.
787 Use opkg as a replacement.
788
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +0200789config BR2_GCC_VERSION_4_7_X
790 bool "gcc 4.7.x support removed"
791 select BR2_LEGACY
792 help
793 Support for gcc version 4.7.x has been removed. The current
794 default version (4.9.x or later) has been selected instead.
795
Arnout Vandecappelled8878112016-10-15 16:50:57 +0200796config BR2_BINUTILS_VERSION_2_24_X
797 bool "binutils version 2.24 support removed"
798 select BR2_LEGACY
799 help
800 Support for binutils version 2.24 has been removed. The
801 current default version (2.26 or later) has been selected
802 instead.
803
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -0300804config BR2_PACKAGE_WESTON_RPI
805 bool "Weston propietary RPI support is gone"
806 select BR2_LEGACY
807 help
808 Upstream decided the propietary (rpi-userland) weston composer
809 support wasn't worth the effort so it was removed. Switch to
810 the open VC4 support.
811
Yann E. MORIN20b14462016-09-06 16:29:14 +0200812config BR2_LINUX_KERNEL_TOOL_CPUPOWER
813 bool "linux-tool cpupower"
814 depends on BR2_LINUX_KERNEL
815 select BR2_LEGACY
816 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
817 help
818 Linux tool cpupower option was renamed.
819
820config BR2_LINUX_KERNEL_TOOL_PERF
821 bool "linux-tool perf"
822 depends on BR2_LINUX_KERNEL
823 select BR2_LEGACY
824 select BR2_PACKAGE_LINUX_TOOLS_PERF
825 help
826 Linux tool perf option was renamed.
827
828config BR2_LINUX_KERNEL_TOOL_SELFTESTS
829 bool "linux-tool selftests"
830 depends on BR2_LINUX_KERNEL
831 select BR2_LEGACY
832 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
833 help
834 Linux tool selftests option was renamed.
835
Thomas Petazzoni50332a52016-08-11 15:25:38 +0200836config BR2_GCC_VERSION_4_8_ARC
837 bool "gcc arc option renamed"
838 select BR2_LEGACY
839 select BR2_GCC_VERSION_ARC
840 help
841 The option that selects the gcc version for the ARC
842 architecture has been renamed to BR2_GCC_VERSION_ARC.
843
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300844config BR2_KERNEL_HEADERS_4_0
845 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300846 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300847 select BR2_LEGACY
848 help
849 Version 4.0.x of the Linux kernel headers have been deprecated
850 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300851 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300852 automatically selected in your configuration.
853
854config BR2_KERNEL_HEADERS_3_19
855 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300856 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300857 select BR2_LEGACY
858 help
859 Version 3.19.x of the Linux kernel headers have been deprecated
860 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300861 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300862 automatically selected in your configuration.
863
Romain Naour0e517312016-09-02 22:31:32 +0200864config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
865 bool "libevas-generic-loaders package removed"
866 select BR2_LEGACY
867 select BR2_PACKAGE_EFL
868 help
869 With EFL 1.18, libevas-generic-loaders is now provided by the efl
870 package.
871
Romain Naourc22b7582016-09-02 22:31:31 +0200872config BR2_PACKAGE_ELEMENTARY
873 bool "elementary package removed"
874 select BR2_LEGACY
875 select BR2_PACKAGE_EFL
876 help
877 With EFL 1.18, elementary is now provided by the efl package.
878
Yann E. MORINe782cd52016-08-28 01:03:04 +0200879config BR2_LINUX_KERNEL_CUSTOM_LOCAL
880 bool "Linux kernel local directory option removed"
881 help
882 The option to select a local directory as the source of the Linux
883 kernel has been removed. It hurts reproducibility of builds.
884
885 In case you were using this option during development of your
886 Linux kernel, use the override mechanism instead.
887
888###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200889comment "Legacy options removed in 2016.08"
890
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100891config BR2_PACKAGE_EFL_JP2K
892 bool "libevas jp2k loader has been removed"
893 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +0100894 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100895 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
896 while Buildroot only packages openjpeg 2.x. Therefore, the
897 JP2K loader has been removed from EFL.
898
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200899config BR2_PACKAGE_SYSTEMD_COMPAT
900 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +0200901 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200902 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +0200903 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200904 been removed. Theses libraries have been useless since a few
905 version, and have been fully dropped from the source since
906 v230.
907
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +0200908config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
909 bool "gst1-plugins-bad liveadder plugin removed"
910 select BR2_LEGACY
911 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
912 help
913 The functionality of the liveadder plugin of the
914 gst1-plugins-bad package has been merged into audiomixer.
915
Andrew Webster0f92b192016-06-10 14:13:29 -0400916config BR2_PACKAGE_LIBFSLVPUWRAP
917 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
918 select BR2_LEGACY
919 select BR2_PACKAGE_IMX_VPUWRAP
920 help
921 The libfslvpuwrap has been renamed to match the renamed package.
922
Andrew Webster64998902016-06-10 14:13:18 -0400923config BR2_PACKAGE_LIBFSLPARSER
924 bool "libfslparser has been renamed to imx-parser"
925 select BR2_LEGACY
926 select BR2_PACKAGE_IMX_PARSER
927 help
928 The libfslparser has been renamed to match the renamed package.
929
Andrew Webster47e62032016-06-10 14:13:05 -0400930config BR2_PACKAGE_LIBFSLCODEC
931 bool "libfslcodec has been renamed to imx-codec"
932 select BR2_LEGACY
933 select BR2_PACKAGE_IMX_CODEC
934 help
935 The libfslcodec has been renamed to match the renamed package.
936
Carlos Santosb5d99002016-06-03 16:35:39 -0300937config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
938 bool "FIT support in uboot-tools has been refactored"
939 select BR2_LEGACY
940 select BR2_PACKAGE_DTC
941 select BR2_PACKAGE_DTC_PROGRAMS
942 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
943 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
944 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
945 help
946 This option has been removed in favor of a more fine-grained
947 configuration, which is recommended. Selecting this option
948 enables FIT and FIT signature support for the target packages.
949 It will also select the dtc and openssl packages.
950
Waldemar Brodkorbf253c142016-06-01 20:40:25 +0200951config BR2_PTHREADS_OLD
952 bool "linuxthreads (stable/old)"
953 select BR2_LEGACY
954 help
955 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
956 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
957
Thomas Petazzoniae466a62016-05-17 00:13:01 +0200958config BR2_BINUTILS_VERSION_2_23_X
959 bool "binutils 2.23 removed"
960 select BR2_LEGACY
961 help
962 Binutils 2.23 has been removed, using a newer version is
963 recommended.
964
Thomas Petazzoni500de252016-05-17 00:13:00 +0200965config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
966 bool "eglibc support has been removed"
967 select BR2_LEGACY
968 help
969 The eglibc project no longer exists, as it has been merged
970 back into the glibc project. Therefore, support for eglibc
971 has been removed, and glibc should be used instead.
972
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200973config BR2_GDB_VERSION_7_8
974 bool "gdb 7.8 has been removed"
975 select BR2_LEGACY
976 help
977 The 7.8 version of gdb has been removed. Use a newer version
978 instead.
979
980###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100981comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +0100982
Gustavo Zacarias3380da62016-05-14 10:33:47 -0300983config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
984 bool "openvpn polarssl crypto backend removed"
985 select BR2_LEGACY
986 help
987 The OpenVPN polarssl crypto backend option has been removed.
988 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
989 compatible with mbedtls (polarssl) series 2.x which is the
990 version provided in buildroot. And both can't coexist.
991 It now uses OpenSSL as the only option.
992
993
Martin Bark4dfc2cb2016-05-03 10:36:54 +0100994config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
995 bool "nginx http spdy module removed"
996 select BR2_LEGACY
997 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
998 help
999 The ngx_http_spdy_module has been superseded by the
1000 ngx_http_v2_module since nginx v1.9.5. The
1001 ngx_http_v2_module modules has been automatically selected
1002 in your configuration.
1003
Gustavo Zacarias0c956f22016-05-03 16:44:15 -03001004config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
1005 bool "gst1-plugins-bad rtp plugin moved to good"
1006 select BR2_LEGACY
1007 help
1008 The rtp plugin has been moved from gst1-plugins-base to
1009 gst1-plugins-good.
1010
Gustavo Zacarias4196cf92016-05-03 16:44:14 -03001011config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
1012 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
1013 select BR2_LEGACY
1014 help
1015 The mpg123 plugin has been moved from gst1-plugins-bad to
1016 gst1-plugins-ugly.
1017
Gustavo Zacarias8490e832016-04-29 10:18:56 -03001018config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
1019 bool "PowerPC Sourcery toolchain has been removed"
1020 select BR2_LEGACY
1021 help
1022 The Sourcery CodeBench toolchain for the PowerPC
1023 architecture has been removed, as it was very old, not
1024 maintained, and causing numerous build failures with modern
1025 userspace packages.
1026
1027config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
1028 bool "PowerPC Sourcery E500v2 toolchain has been removed"
1029 select BR2_LEGACY
1030 help
1031 The Sourcery CodeBench toolchain for the PowerPC E500v2
1032 architecture has been removed, as it was very old, not
1033 maintained, and causing numerous build failures with modern
1034 userspace packages.
1035
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02001036config BR2_x86_i386
1037 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +02001038 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02001039 help
1040 The support for the i386 processors of the x86 architecture
1041 has been removed.
1042
Julien CORJON940bfe22016-03-17 10:42:27 +01001043config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
1044 bool "qt5webkit-examples package removed"
1045 select BR2_LEGACY
1046 help
1047 The qt5webkit-examples package has been removed, since it
1048 was removed from upstream starting from Qt 5.6.
1049
Julien CORJONf75ee802016-03-17 10:42:25 +01001050config BR2_PACKAGE_QT5QUICK1
1051 bool "qt5quick1 package removed"
1052 select BR2_LEGACY
1053 help
1054 The qt5quick1 package has been removed, since it was removed
1055 from upstream starting from Qt 5.6.
1056
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03001057config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -05001058 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03001059 help
1060 The uboot custom patch directory option has been removed. Use
1061 the improved BR2_TARGET_UBOOT_PATCH option instead.
1062
Danomi Manchegof61583f2016-12-19 22:10:12 -05001063config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
1064 bool
1065 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
1066 select BR2_LEGACY
1067
1068# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
1069# boot/uboot/Config.in
1070
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -03001071config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
1072 bool "xf86-input-void removed"
1073 select BR2_LEGACY
1074 help
1075 The xf86-input-void package has been removed, there's no need
1076 for it in any modern (post-2007) xorg server.
1077
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001078config BR2_KERNEL_HEADERS_3_17
1079 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001080 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001081 select BR2_LEGACY
1082 help
1083 Version 3.17.x of the Linux kernel headers have been deprecated
1084 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001085 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001086 automatically selected in your configuration.
1087
Gustavo Zacariasffc324e2016-03-11 11:32:21 -03001088config BR2_GDB_VERSION_7_7
1089 bool "gdb 7.7 has been removed"
1090 select BR2_LEGACY
1091 help
1092 The 7.7 version of gdb has been removed. Use a newer version
1093 instead.
1094
Gustavo Zacarias75945dd2016-03-11 11:32:20 -03001095config BR2_PACKAGE_FOOMATIC_FILTERS
1096 bool "foomatic-filters"
1097 select BR2_LEGACY
1098 help
1099 The foomatic-filters package was removed.
1100
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -03001101config BR2_PACKAGE_SAMBA
1102 bool "samba"
1103 select BR2_LEGACY
1104 help
1105 The samba package was removed in favour of samba4 since the
1106 3.x series isn't supported by upstream any longer.
1107
Bernd Kuhls6922b412016-02-20 23:09:11 +01001108config BR2_PACKAGE_KODI_WAVPACK
1109 bool "wavpack"
1110 select BR2_LEGACY
1111 help
1112 wavpack support was removed in favour of ffmpeg:
1113 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
1114
Bernd Kuhls75ce17d2016-02-20 23:09:07 +01001115config BR2_PACKAGE_KODI_RSXS
1116 bool "rsxs support in Kodi was moved to an addon"
1117 select BR2_LEGACY
1118 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
1119 help
1120 rsxs support in Kodi was moved to an addon
1121
Bernd Kuhls56b80ec2016-02-20 23:09:06 +01001122config BR2_PACKAGE_KODI_GOOM
1123 bool "Goom support in Kodi was moved to an addon"
1124 select BR2_LEGACY
1125 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
1126 help
1127 Goom support in Kodi was moved to an addon
1128
Gabe Evanse5a073a2016-02-25 21:55:11 +00001129config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
1130 bool "systemd all extras option has been removed"
1131 select BR2_LEGACY
1132 select BR2_PACKAGE_XZ
1133 select BR2_PACKAGE_LIBGCRYPT
1134 help
1135 The systemd option to enable "all extras" has been
1136 removed. To get the same features, the libgcrypt and xz
1137 package should now be enabled.
1138
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -03001139config BR2_GCC_VERSION_4_5_X
1140 bool "gcc 4.5.x has been removed"
1141 select BR2_LEGACY
1142 help
1143 The 4.5.x version of gcc has been removed. Use a newer
1144 version instead.
1145
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01001146config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -05001147 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01001148 select BR2_PACKAGE_NCURSES
1149 select BR2_PACKAGE_READLINE
1150 select BR2_LEGACY
1151 help
1152 This option was removed in favour of the sqlite package
1153 deciding itself depending on the enabled packages whether
1154 command-line editing should be enabled, it also also takes
1155 libedit into account.
1156
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01001157###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +01001158comment "Legacy options removed in 2016.02"
1159
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +01001160config BR2_PACKAGE_DOVECOT_BZIP2
1161 bool "bzip2 support option has been removed"
1162 select BR2_LEGACY
1163 select BR2_PACKAGE_BZIP2
1164 help
1165 Bzip2 support is built if the bzip2 package is selected.
1166
1167config BR2_PACKAGE_DOVECOT_ZLIB
1168 bool "zlib support option has been removed"
1169 select BR2_LEGACY
1170 select BR2_PACKAGE_ZLIB
1171 help
1172 Zlib support is built if the zlib package is selected.
1173
James Knightead1df42016-02-12 11:40:05 -05001174config BR2_PACKAGE_E2FSPROGS_FINDFS
1175 bool "e2fsprogs findfs option has been removed"
1176 select BR2_LEGACY
1177 help
1178 This option attempted to enable findfs capabilities from
1179 e2fsprogs but has not worked since July 2015 (due to
1180 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +01001181 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -05001182
Romain Naourb1063a02016-02-07 17:56:56 +01001183config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
1184 bool "openpowerlink debug option has been removed"
1185 select BR2_LEGACY
1186 help
1187 This option depends on BR2_ENABLE_DEBUG which should not be used
1188 by packages anymore.
1189
1190config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
1191 bool "openpowerlink package has been updated"
1192 select BR2_LEGACY
1193 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
1194 help
1195 openpowerlink kernel modules are built if the
1196 kernel stack library is selected.
1197
1198config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
1199 bool "openpowerlink package has been updated"
1200 select BR2_LEGACY
1201 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
1202 help
1203 The user space support has been split in two part:
1204 - a monolitic user space library
1205 - a user spae deamon driver
1206
Yann E. MORINe3e05832016-02-06 00:06:17 +01001207config BR2_LINUX_KERNEL_SAME_AS_HEADERS
1208 bool "using the linux headers version for the kernel has been removed"
1209 select BR2_LEGACY
1210 help
1211 The option to use the version of the kernel headers for the
1212 kernel to build has been removed.
1213
1214 There is now the converse, better-suited and more versatile
1215 option to use the kernel version for the linux headers.
1216
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02001217config BR2_PACKAGE_CUPS_PDFTOPS
1218 bool "Pdftops support has been removed from Cups"
1219 select BR2_LEGACY
1220 help
1221 Pdftops support has been removed from the cups package
1222 It is now part of the cups-filters package.
1223
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001224config BR2_KERNEL_HEADERS_3_16
1225 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001226 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001227 select BR2_LEGACY
1228 help
1229 Version 3.16.x of the Linux kernel headers have been deprecated
1230 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001231 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001232 automatically selected in your configuration.
1233
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01001234config BR2_PACKAGE_PYTHON_PYXML
1235 bool "python-pyxml package has been removed"
1236 select BR2_LEGACY
1237 help
1238 PyXML is obsolete and its functionality is covered either via
1239 native Python XML support or python-lxml package.
1240
Steven Noonand29c7192015-12-27 12:07:31 +01001241# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
1242config BR2_ENABLE_SSP
1243 bool "Stack Smashing protection now has different levels"
1244 help
1245 The protection offered by SSP can now be selected from different
1246 protection levels. Be sure to review the SSP level in the build
1247 options menu.
1248
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001249config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03001250 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001251 select BR2_LEGACY
1252 help
1253 The cle266 directfb driver support has been removed.
1254 It doesn't build in the latest version and it's unlikely
1255 anyone has any use for it.
1256
1257config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03001258 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001259 select BR2_LEGACY
1260 help
1261 The unichrome directfb driver support has been removed.
1262 It doesn't build in the latest version and it's unlikely
1263 anyone has any use for it.
1264
Romain Naour820e1682015-12-19 17:39:14 +01001265config BR2_PACKAGE_LIBELEMENTARY
1266 bool "libelementary has been renamed to elementary"
1267 select BR2_LEGACY
1268 select BR2_PACKAGE_ELEMENTARY
1269 help
1270 The libelementary package has been renamed to match the upstream
1271 name.
1272
Romain Naoura9d1f5f2015-12-15 23:40:38 +01001273config BR2_PACKAGE_LIBEINA
1274 bool "libeina package has been removed"
1275 select BR2_LEGACY
1276 select BR2_PACKAGE_EFL
1277 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001278 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01001279
Romain Naour49700f02015-12-15 23:40:37 +01001280config BR2_PACKAGE_LIBEET
1281 bool "libeet package has been removed"
1282 select BR2_LEGACY
1283 select BR2_PACKAGE_EFL
1284 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001285 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01001286
Romain Naoure5989d62015-12-15 23:40:36 +01001287config BR2_PACKAGE_LIBEVAS
1288 bool "libevas package has been removed"
1289 select BR2_LEGACY
1290 select BR2_PACKAGE_EFL
1291 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001292 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01001293
Romain Naour1fe1b602015-12-15 23:40:35 +01001294config BR2_PACKAGE_LIBECORE
1295 bool "libecore package has been removed"
1296 select BR2_LEGACY
1297 select BR2_PACKAGE_EFL
1298 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001299 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01001300
Romain Naour8c05c382015-12-15 23:40:34 +01001301config BR2_PACKAGE_LIBEDBUS
1302 bool "libedbus package has been removed"
1303 select BR2_LEGACY
1304 select BR2_PACKAGE_EFL
1305 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001306 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01001307
Romain Naourd2b042c2015-12-15 23:40:33 +01001308config BR2_PACKAGE_LIBEFREET
1309 bool "libefreet package has been removed"
1310 select BR2_LEGACY
1311 select BR2_PACKAGE_EFL
1312 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001313 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01001314
Romain Naoure155c952015-12-15 23:40:32 +01001315config BR2_PACKAGE_LIBEIO
1316 bool "libeio package has been removed"
1317 select BR2_LEGACY
1318 select BR2_PACKAGE_EFL
1319 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001320 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01001321
Romain Naourb728fb72015-12-15 23:40:31 +01001322config BR2_PACKAGE_LIBEMBRYO
1323 bool "libembryo package has been removed"
1324 select BR2_LEGACY
1325 select BR2_PACKAGE_EFL
1326 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001327 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01001328
Romain Naour4c93c102015-12-15 23:40:30 +01001329config BR2_PACKAGE_LIBEDJE
1330 bool "libedje package has been removed"
1331 select BR2_LEGACY
1332 select BR2_PACKAGE_EFL
1333 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001334 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01001335
Romain Naour905dba12015-12-15 23:40:29 +01001336config BR2_PACKAGE_LIBETHUMB
1337 bool "libethumb package has been removed"
1338 select BR2_LEGACY
1339 select BR2_PACKAGE_EFL
1340 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001341 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01001342
Luca Ceresolif0c94702015-11-27 18:38:00 +01001343config BR2_PACKAGE_INFOZIP
1344 bool "infozip option has been renamed to zip"
1345 select BR2_LEGACY
1346 select BR2_PACKAGE_ZIP
1347 help
1348 Info-Zip's Zip package has been renamed from infozip to zip,
1349 to avoid ambiguities with Info-Zip's UnZip which has been added
1350 in the unzip package.
1351
Martin Barka2d16602015-12-23 12:16:04 +00001352config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00001353 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00001354 select BR2_LEGACY
1355 select BR2_PACKAGE_NODEJS
1356 help
Martin Bark75b70492016-01-30 14:51:00 +00001357 nodejs 0.10.x option has been removed. 0.10.x is now
1358 automatically chosen for ARMv5 architectures only and the latest
1359 nodejs for all other supported architectures. The correct nodejs
1360 version has been automatically selected in your configuration.
Martin Barka2d16602015-12-23 12:16:04 +00001361
Martin Barka314b872015-12-23 12:16:03 +00001362config BR2_BR2_PACKAGE_NODEJS_0_12_X
1363 bool "nodejs version 0.12.x has been removed"
1364 select BR2_LEGACY
1365 select BR2_PACKAGE_NODEJS
1366 help
1367 nodejs version 0.12.x has been removed. As an alternative,
1368 the latest nodejs version has been automatically selected in
1369 your configuration.
1370
Martin Bark90bf67c2015-12-23 12:16:02 +00001371config BR2_BR2_PACKAGE_NODEJS_4_X
1372 bool "nodejs version 4.x has been removed"
1373 select BR2_LEGACY
1374 select BR2_PACKAGE_NODEJS
1375 help
1376 nodejs version 4.x has been removed. As an alternative,
1377 the latest nodejs version has been automatically selected in
1378 your configuration.
1379
Luca Ceresolif0c94702015-11-27 18:38:00 +01001380###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001381comment "Legacy options removed in 2015.11"
1382
Peter Seiderer301e8ff2015-10-15 21:42:43 +02001383config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
1384 bool "gst1-plugins-bad real plugin has been removed"
1385 select BR2_LEGACY
1386 help
1387 The real plugin from GStreamer 1 bad plugins has been
1388 removed.
1389
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02001390config BR2_PACKAGE_MEDIA_CTL
1391 bool "media-ctl package has been removed"
1392 select BR2_LEGACY
1393 select BR2_PACKAGE_LIBV4L
1394 select BR2_PACKAGE_LIBV4L_UTILS
1395 help
1396 media-ctl source and developement have been moved to
1397 v4l-utils since June 2014. For an up-to-date media-ctl
1398 version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
1399
Romain Naourf8031332015-10-03 18:35:05 +02001400config BR2_PACKAGE_SCHIFRA
1401 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001402 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02001403 help
1404 Schifra package has been maked broken since 2014.11 release and
1405 haven't been fixed since then.
1406
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02001407config BR2_PACKAGE_ZXING
1408 bool "zxing option has been renamed"
1409 select BR2_LEGACY
1410 select BR2_PACKAGE_ZXING_CPP
1411 help
1412 ZXing no longer provides the cpp bindings, it has been renamed to
1413 BR2_PACKAGE_ZXING_CPP which uses a new upstream.
1414
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001415# Since FreeRDP has new dependencies, protect this legacy to avoid the
1416# infamous "unmet direct dependencies" kconfig error.
1417config BR2_PACKAGE_FREERDP_CLIENT
1418 bool "freerdp client option renamed"
1419 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02001420 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001421 select BR2_PACKAGE_FREERDP_CLIENT_X11
1422
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03001423config BR2_PACKAGE_BLACKBOX
1424 bool "blackbox package has been removed"
1425 select BR2_LEGACY
1426 help
1427 Upstream is dead and the package has been deprecated for
1428 some time. There are other alternative maintained WMs.
1429
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001430config BR2_KERNEL_HEADERS_3_0
1431 bool "kernel headers version 3.0.x are no longer supported"
1432 select BR2_KERNEL_HEADERS_3_2
1433 select BR2_LEGACY
1434 help
1435 Version 3.0.x of the Linux kernel headers have been deprecated
1436 for more than four buildroot releases and are now removed.
1437 As an alternative, version 3.2.x of the headers have been
1438 automatically selected in your configuration.
1439
1440config BR2_KERNEL_HEADERS_3_11
1441 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001442 select BR2_KERNEL_HEADERS_3_10
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001443 select BR2_LEGACY
1444 help
1445 Version 3.11.x of the Linux kernel headers have been deprecated
1446 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001447 As an alternative, version 3.10.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001448 automatically selected in your configuration.
1449
1450config BR2_KERNEL_HEADERS_3_13
1451 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001452 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001453 select BR2_LEGACY
1454 help
1455 Version 3.13.x of the Linux kernel headers have been deprecated
1456 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001457 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001458 automatically selected in your configuration.
1459
1460config BR2_KERNEL_HEADERS_3_15
1461 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001462 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001463 select BR2_LEGACY
1464 help
1465 Version 3.15.x of the Linux kernel headers have been deprecated
1466 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001467 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001468 automatically selected in your configuration.
1469
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001470config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
1471 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001472 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001473 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1474 help
1475 The per-DirectFB example options have been removed. The
1476 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1477 examples.
1478
1479config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
1480 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001481 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001482 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1483 help
1484 The per-DirectFB example options have been removed. The
1485 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1486 examples.
1487
1488config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
1489 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001490 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001491 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1492 help
1493 The per-DirectFB example options have been removed. The
1494 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1495 examples.
1496
1497config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
1498 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001499 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001500 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1501 help
1502 The per-DirectFB example options have been removed. The
1503 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1504 examples.
1505
1506config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
1507 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001508 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001509 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1510 help
1511 The per-DirectFB example options have been removed. The
1512 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1513 examples.
1514
1515config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
1516 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001517 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001518 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1519 help
1520 The per-DirectFB example options have been removed. The
1521 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1522 examples.
1523
1524config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
1525 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001526 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001527 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1528 help
1529 The per-DirectFB example options have been removed. The
1530 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1531 examples.
1532
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001533config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
1534 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001535 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001536 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1537 help
1538 The per-DirectFB example options have been removed. The
1539 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1540 examples.
1541
1542config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
1543 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001544 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001545 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1546 help
1547 The per-DirectFB example options have been removed. The
1548 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1549 examples.
1550
1551config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
1552 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001553 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001554 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1555 help
1556 The per-DirectFB example options have been removed. The
1557 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1558 examples.
1559
1560config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
1561 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001562 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001563 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1564 help
1565 The per-DirectFB example options have been removed. The
1566 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1567 examples.
1568
1569config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
1570 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001571 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001572 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1573 help
1574 The per-DirectFB example options have been removed. The
1575 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1576 examples.
1577
1578config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
1579 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001580 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001581 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1582 help
1583 The per-DirectFB example options have been removed. The
1584 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1585 examples.
1586
1587config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
1588 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001589 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001590 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1591 help
1592 The per-DirectFB example options have been removed. The
1593 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1594 examples.
1595
1596config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
1597 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001598 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001599 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1600 help
1601 The per-DirectFB example options have been removed. The
1602 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1603 examples.
1604
1605config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
1606 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001607 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001608 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1609 help
1610 The per-DirectFB example options have been removed. The
1611 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1612 examples.
1613
1614config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
1615 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001616 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001617 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1618 help
1619 The per-DirectFB example options have been removed. The
1620 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1621 examples.
1622
1623config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
1624 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001625 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001626 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1627 help
1628 The per-DirectFB example options have been removed. The
1629 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1630 examples.
1631
1632config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
1633 bool "DirectFB example df_palette has been removed"
1634 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1635 help
1636 The per-DirectFB example options have been removed. The
1637 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1638 examples.
1639
1640config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
1641 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001642 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001643 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1644 help
1645 The per-DirectFB example options have been removed. The
1646 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1647 examples.
1648
1649config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
1650 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001651 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001652 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1653 help
1654 The per-DirectFB example options have been removed. The
1655 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1656 examples.
1657
1658config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
1659 bool "DirectFB example df_stress has been removed"
1660 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1661 help
1662 The per-DirectFB example options have been removed. The
1663 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1664 examples.
1665
1666config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
1667 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001668 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001669 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1670 help
1671 The per-DirectFB example options have been removed. The
1672 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1673 examples.
1674
1675config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
1676 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001677 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001678 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1679 help
1680 The per-DirectFB example options have been removed. The
1681 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1682 examples.
1683
1684config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1685 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001686 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001687 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1688 help
1689 The per-DirectFB example options have been removed. The
1690 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1691 examples.
1692
1693config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1694 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001695 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001696 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1697 help
1698 The per-DirectFB example options have been removed. The
1699 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1700 examples.
1701
Gary Bisson2b78fb22015-09-23 15:39:27 +02001702config BR2_PACKAGE_KOBS_NG
1703 bool "kobs-ng was replaced by imx-kobs"
1704 select BR2_LEGACY
1705 select BR2_PACKAGE_IMX_KOBS
1706 help
1707 The outdated kobs-ng has been replaced by the Freescale-
1708 maintained imx-kobs package.
1709
Thomas Petazzoni11573f52015-09-02 00:01:11 +02001710config BR2_PACKAGE_SAWMAN
1711 bool "sawman package removed"
1712 select BR2_LEGACY
1713 select BR2_PACKAGE_DIRECTFB_SAWMAN
1714 help
1715 This option has been removed because the sawman package no
1716 longer exists: it was merged inside DirectFB itself. This
1717 feature can now be enabled using the
1718 BR2_PACKAGE_DIRECTFB_SAWMAN option.
1719
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001720config BR2_PACKAGE_DIVINE
1721 bool "divine package removed"
1722 select BR2_LEGACY
1723 select BR2_PACKAGE_DIRECTFB_DIVINE
1724 help
1725 This option has been removed because the divine package no
1726 longer exists: it was merged inside DirectFB itself. This
1727 feature can now be enabled using the
1728 BR2_PACKAGE_DIRECTFB_DIVINE option.
1729
1730###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001731comment "Legacy options removed in 2015.08"
1732
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001733config BR2_PACKAGE_KODI_PVR_ADDONS
1734 bool "Kodi PVR addon was split"
1735 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02001736 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02001737 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02001738 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02001739 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02001740 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02001741 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02001742 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02001743 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02001744 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02001745 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02001746 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02001747 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02001748 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02001749 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02001750 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02001751 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001752 help
1753 Kodi PVR addon was split into seperate modules
1754
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001755config BR2_BINUTILS_VERSION_2_23_2
1756 bool "binutils 2.23 option renamed"
1757 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001758 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001759 Binutils 2.23.2 has been removed, using a newer version is
1760 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001761
1762config BR2_BINUTILS_VERSION_2_24
1763 bool "binutils 2.24 option renamed"
1764 select BR2_LEGACY
1765 select BR2_BINUTILS_VERSION_2_24_X
1766 help
1767 The binutils version option has been renamed to match the
1768 same patchlevel logic used by gcc. The new option is now
1769 BR2_BINUTILS_VERSION_2_24_X.
1770
1771config BR2_BINUTILS_VERSION_2_25
1772 bool "binutils 2.25 option renamed"
1773 select BR2_LEGACY
1774 select BR2_BINUTILS_VERSION_2_25_X
1775 help
1776 The binutils version option has been renamed to match the
1777 same patchlevel logic used by gcc. The new option is now
1778 BR2_BINUTILS_VERSION_2_25_X.
1779
Romain Naour1326e762015-07-14 19:35:14 +02001780config BR2_PACKAGE_PERF
1781 bool "perf option has been renamed"
1782 select BR2_LEGACY
1783 select BR2_LINUX_KERNEL_TOOL_PERF
1784 help
1785 The perf package has been moved as a Linux tools package,
1786 and the option to enable it is now
1787 BR2_LINUX_KERNEL_TOOL_PERF.
1788
Thomas Petazzoni2f845952015-07-11 14:52:53 +02001789config BR2_BINUTILS_VERSION_2_22
1790 bool "binutils 2.22 removed"
1791 select BR2_LEGACY
1792 help
1793 Binutils 2.22 has been removed, using a newer version is
1794 recommended.
1795
Gary Bisson4c0613e2015-05-26 10:19:37 +02001796config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1797 bool "gpu-viv-bin-mx6q"
1798 select BR2_LEGACY
1799 select BR2_PACKAGE_IMX_GPU_VIV
1800 help
1801 Vivante graphics libraries have been renamed to
1802 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1803 name.
1804
Matt Weber7742abe2015-06-02 08:28:35 -05001805config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
1806 depends on BR2_PACKAGE_PYTHON
1807 bool "libsemanage python bindings removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001808 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05001809 help
1810 This option has been removed, since the libsemanage Python
1811 bindings on the target were not useful.
1812
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001813config BR2_TARGET_UBOOT_NETWORK
1814 bool "U-Boot custom network settings removed"
1815 select BR2_LEGACY
1816 help
1817 U-Boot's custom network settings options have been removed.
1818
1819###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001820comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001821
Michał Leśniewskie3904a82015-05-19 20:26:30 +02001822config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1823 bool "jffs2 16kB erasesize NAND flash option renamed"
1824 select BR2_LEGACY
1825 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1826 help
1827 The JFFS2 NAND flash options now longer include the page
1828 size.
1829
1830config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1831 bool "jffs2 128kB erasesize NAND flash option renamed"
1832 select BR2_LEGACY
1833 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
1834 help
1835 The JFFS2 NAND flash options now longer include the page
1836 size.
1837
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02001838config BR2_PACKAGE_MONO_20
1839 bool "2.0/3.5 .Net Runtime"
1840 select BR2_LEGACY
1841 help
1842 This option no longer exists, all versions of the .Net
1843 runtime are now installed.
1844
1845config BR2_PACKAGE_MONO_40
1846 bool "4.0 .Net Runtime"
1847 select BR2_LEGACY
1848 help
1849 This option no longer exists, all versions of the .Net
1850 runtime are now installed.
1851
1852config BR2_PACKAGE_MONO_45
1853 bool "4.5 .Net Runtime"
1854 select BR2_LEGACY
1855 help
1856 This option no longer exists, all versions of the .Net
1857 runtime are now installed.
1858
Peter Korsgaardefd49e32015-04-27 22:29:05 +02001859config BR2_CIVETWEB_WITH_LUA
1860 bool "civetweb lua option renamed"
1861 select BR2_LEGACY
1862 select BR2_PACKAGE_CIVETWEB_WITH_LUA
1863 help
1864 civetweb's lua option has been renamed to
1865 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
1866 packages name options.
1867
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02001868config BR2_PACKAGE_TIFF_TIFF2PDF
1869 bool "tiff utility-specific option removed"
1870 select BR2_LEGACY
1871 select BR2_PACKAGE_TIFF_UTILITIES
1872 help
1873 utility-specific options have been removed in favour of
1874 the new option BR2_PACKAGE_TIFF_UTILITIES.
1875
1876config BR2_PACKAGE_TIFF_TIFFCP
1877 bool "tiff utility-specific option removed"
1878 select BR2_LEGACY
1879 select BR2_PACKAGE_TIFF_UTILITIES
1880 help
1881 utility-specific options have been removed in favour of
1882 the new option BR2_PACKAGE_TIFF_UTILITIES.
1883
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001884config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
1885 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001886 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001887 help
1888 This option has never worked, so it has been removed.
1889
Yann E. MORIN02917962015-03-24 19:54:15 +01001890config BR2_TARGET_GENERIC_PASSWD_DES
1891 bool "Encoding passwords with DES has been removed"
1892 select BR2_LEGACY
1893 help
1894 Paswords can now only be encoded with either of md5, sha256 or sha512.
1895 The default is md5, which is stronger that DES (but still pretty weak).
1896
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03001897config BR2_PACKAGE_GTK2_THEME_HICOLOR
1898 bool "hicolor (default theme) is a duplicate"
1899 select BR2_LEGACY
1900 select BR2_PACKAGE_HICOLOR_ICON_THEME
1901 help
1902 The option was just a duplicate of hicolor icon theme.
1903
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001904config BR2_PACKAGE_VALGRIND_PTRCHECK
1905 bool "valgrind's PTRCheck was renamed to SGCheck"
1906 select BR2_LEGACY
1907 select BR2_PACKAGE_VALGRIND_SGCHECK
1908 help
1909 PTRCheck was renamed to SGCheck in valgrind
1910
1911###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001912comment "Legacy options removed in 2015.02"
1913
Pedro Aguilar10900c02015-02-27 06:38:07 +02001914config BR2_PACKAGE_LIBGC
1915 bool "libgc package removed"
1916 select BR2_LEGACY
1917 select BR2_PACKAGE_BDWGC
1918 help
1919 libgc has been removed because we have the same package under a
1920 different name, bdwgc.
1921
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01001922config BR2_PACKAGE_WDCTL
1923 bool "util-linux' wdctl option has been renamed"
1924 select BR2_LEGACY
1925 select BR2_PACKAGE_UTIL_LINUX_WDCTL
1926 help
1927 util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
1928 to be aligned with how the other options are named.
1929
Danomi Manchegoe44edb82015-07-13 22:57:06 -04001930config BR2_PACKAGE_UTIL_LINUX_ARCH
1931 bool "util-linux' arch option has been removed"
1932 select BR2_LEGACY
1933 help
1934 util-linux' arch was dropped in util-linux 2.23, in favor of
1935 the coreutils version.
1936
1937config BR2_PACKAGE_UTIL_LINUX_DDATE
1938 bool "util-linux' ddate option has been removed"
1939 select BR2_LEGACY
1940 help
1941 util-linux' ddate was dropped in util-linux 2.23.
1942
Romain Naour3c476542015-01-18 20:53:08 +01001943config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
1944 bool "rpm's bzip2 payloads option has been removed"
1945 select BR2_LEGACY
1946 select BR2_PACKAGE_BZIP2
1947 help
1948 The bzip2 payloads option rely entirely on the dependant package bzip2.
1949 So, you need to select it to enable this feature.
1950
1951config BR2_PACKAGE_RPM_XZ_PAYLOADS
1952 bool "rpm's xz payloads option has been removed"
1953 select BR2_LEGACY
1954 select BR2_PACKAGE_XZ
1955 help
1956 The xz payloads option rely entirely on the dependant package xz.
1957 So, you need to select it to enable this feature.
1958
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03001959config BR2_PACKAGE_M4
1960 bool "m4 target package removed"
1961 select BR2_LEGACY
1962 help
1963 The m4 target package has been removed, it's been
1964 deprecated for some time now.
1965
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03001966config BR2_PACKAGE_FLEX_BINARY
1967 bool "flex binary in target option removed"
1968 select BR2_LEGACY
1969 help
1970 The flex binary in the target option has been removed.
1971 It's been deprecated for some time now and is essentially a
1972 development tool which isn't very useful in the target.
1973
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03001974config BR2_PACKAGE_BISON
1975 bool "bison target package removed"
1976 select BR2_LEGACY
1977 help
1978 The bison target package has been removed, it's been
1979 deprecated for some time now and is essentially a development
1980 tool which isn't very useful in the target.
1981
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03001982config BR2_PACKAGE_GOB2
1983 bool "gob2 target package removed"
1984 select BR2_LEGACY
1985 help
1986 The gob2 target package has been removed, it's been
1987 deprecated for some time now and was essentially useless
1988 without a target toolchain.
1989
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03001990config BR2_PACKAGE_DISTCC
1991 bool "distcc target package removed"
1992 select BR2_LEGACY
1993 help
1994 The distcc target package has been removed, it's been
1995 deprecated for some time now and was essentially useless
1996 without a target toolchain.
1997
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03001998config BR2_PACKAGE_HASERL_VERSION_0_8_X
1999 bool "haserl 0.8.x version removed"
2000 select BR2_LEGACY
2001 help
2002 The 0.8.x version option for haserl has been removed since it
2003 has been deprecated for some time now.
2004 You should be able to use the 0.9.x version without issues.
2005
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03002006config BR2_PACKAGE_STRONGSWAN_TOOLS
2007 bool "strongswan option has been removed"
2008 select BR2_LEGACY
2009 select BR2_PACKAGE_STRONGSWAN_PKI
2010 select BR2_PACKAGE_STRONGSWAN_SCEP
2011 help
2012 The tools option has been removed upstream and the different tools
2013 have been split between the pki and scep options, with others
2014 deprecated.
2015
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002016config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002017 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002018 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002019 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002020 According to the github project page:
2021 https://github.com/pipelka/xbmc-addon-xvdr
2022 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002023
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01002024config BR2_PACKAGE_XBMC_PVR_ADDONS
2025 bool "xbmc options have been renamed"
2026 select BR2_LEGACY
2027 select BR2_PACKAGE_KODI_PVR_ADDONS
2028 help
2029 The XBMC media center project was renamed to Kodi entertainment center
2030
Bernd Kuhls35784592014-12-23 18:46:27 +01002031config BR2_PACKAGE_XBMC
2032 bool "xbmc options have been renamed"
2033 select BR2_LEGACY
2034 select BR2_PACKAGE_KODI
2035 help
2036 The XBMC media center project was renamed to Kodi entertainment center
2037
2038config BR2_PACKAGE_XBMC_ALSA_LIB
2039 bool "xbmc options have been renamed"
2040 select BR2_LEGACY
2041 select BR2_PACKAGE_KODI_ALSA_LIB
2042 help
2043 The XBMC media center project was renamed to Kodi entertainment center
2044
2045config BR2_PACKAGE_XBMC_AVAHI
2046 bool "xbmc options have been renamed"
2047 select BR2_LEGACY
2048 select BR2_PACKAGE_KODI_AVAHI
2049 help
2050 The XBMC media center project was renamed to Kodi entertainment center
2051
2052config BR2_PACKAGE_XBMC_DBUS
2053 bool "xbmc options have been renamed"
2054 select BR2_LEGACY
2055 select BR2_PACKAGE_KODI_DBUS
2056 help
2057 The XBMC media center project was renamed to Kodi entertainment center
2058
2059config BR2_PACKAGE_XBMC_LIBBLURAY
2060 bool "xbmc options have been renamed"
2061 select BR2_LEGACY
2062 select BR2_PACKAGE_KODI_LIBBLURAY
2063 help
2064 The XBMC media center project was renamed to Kodi entertainment center
2065
2066config BR2_PACKAGE_XBMC_GOOM
2067 bool "xbmc options have been renamed"
2068 select BR2_LEGACY
2069 select BR2_PACKAGE_KODI_GOOM
2070 help
2071 The XBMC media center project was renamed to Kodi entertainment center
2072
2073config BR2_PACKAGE_XBMC_RSXS
2074 bool "xbmc options have been renamed"
2075 select BR2_LEGACY
2076 select BR2_PACKAGE_KODI_RSXS
2077 help
2078 The XBMC media center project was renamed to Kodi entertainment center
2079
2080config BR2_PACKAGE_XBMC_LIBCEC
2081 bool "xbmc options have been renamed"
2082 select BR2_LEGACY
2083 select BR2_PACKAGE_KODI_LIBCEC
2084 help
2085 The XBMC media center project was renamed to Kodi entertainment center
2086
2087config BR2_PACKAGE_XBMC_LIBMICROHTTPD
2088 bool "xbmc options have been renamed"
2089 select BR2_LEGACY
2090 select BR2_PACKAGE_KODI_LIBMICROHTTPD
2091 help
2092 The XBMC media center project was renamed to Kodi entertainment center
2093
2094config BR2_PACKAGE_XBMC_LIBNFS
2095 bool "xbmc options have been renamed"
2096 select BR2_LEGACY
2097 select BR2_PACKAGE_KODI_LIBNFS
2098 help
2099 The XBMC media center project was renamed to Kodi entertainment center
2100
2101config BR2_PACKAGE_XBMC_RTMPDUMP
2102 bool "xbmc options have been renamed"
2103 select BR2_LEGACY
2104 select BR2_PACKAGE_KODI_RTMPDUMP
2105 help
2106 The XBMC media center project was renamed to Kodi entertainment center
2107
2108config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
2109 bool "xbmc options have been renamed"
2110 select BR2_LEGACY
2111 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
2112 help
2113 The XBMC media center project was renamed to Kodi entertainment center
2114
2115config BR2_PACKAGE_XBMC_LIBSMBCLIENT
2116 bool "xbmc options have been renamed"
2117 select BR2_LEGACY
2118 select BR2_PACKAGE_KODI_LIBSMBCLIENT
2119 help
2120 The XBMC media center project was renamed to Kodi entertainment center
2121
2122config BR2_PACKAGE_XBMC_LIBTHEORA
2123 bool "xbmc options have been renamed"
2124 select BR2_LEGACY
2125 select BR2_PACKAGE_KODI_LIBTHEORA
2126 help
2127 The XBMC media center project was renamed to Kodi entertainment center
2128
2129config BR2_PACKAGE_XBMC_LIBUSB
2130 bool "xbmc options have been renamed"
2131 select BR2_LEGACY
2132 select BR2_PACKAGE_KODI_LIBUSB
2133 help
2134 The XBMC media center project was renamed to Kodi entertainment center
2135
2136config BR2_PACKAGE_XBMC_LIBVA
2137 bool "xbmc options have been renamed"
2138 select BR2_LEGACY
2139 select BR2_PACKAGE_KODI_LIBVA
2140 help
2141 The XBMC media center project was renamed to Kodi entertainment center
2142
2143config BR2_PACKAGE_XBMC_WAVPACK
2144 bool "xbmc options have been renamed"
2145 select BR2_LEGACY
2146 select BR2_PACKAGE_KODI_WAVPACK
2147 help
2148 The XBMC media center project was renamed to Kodi entertainment center
2149
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002150config BR2_PREFER_STATIC_LIB
2151 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01002152 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002153 help
2154 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
2155 highlights the fact that the option no longer "prefers"
2156 static libraries, but "enforces" static libraries (i.e
2157 shared libraries are completely unused).
2158
Samuel Martina44b1c12014-12-14 17:24:24 +01002159 Take care of updating the type of libraries you want under the
2160 "Build options" menu.
2161
Bernd Kuhls35784592014-12-23 18:46:27 +01002162###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02002163comment "Legacy options removed in 2014.11"
2164
Peter Korsgaarda52bad82014-11-09 00:15:24 +01002165config BR2_x86_generic
2166 bool "x86 generic variant has been removed"
2167 select BR2_LEGACY
2168 help
2169 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02002170 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01002171
Andreas Larsson40e18f22014-10-30 09:29:36 +01002172config BR2_GCC_VERSION_4_4_X
2173 bool "gcc 4.4.x has been removed"
2174 select BR2_LEGACY
2175 help
2176 The 4.4.x version of gcc has been removed. Use a newer
2177 version instead.
2178
Andreas Larsson43b78e72014-10-30 09:29:35 +01002179config BR2_sparc_sparchfleon
2180 bool "sparchfleon CPU has been removed"
2181 select BR2_LEGACY
2182 help
2183 The sparchfleon CPU was only supported in a patched gcc 4.4
2184 version. Its support has been removed in favor of the leon3
2185 CPU starting from gcc 4.8.x.
2186
2187config BR2_sparc_sparchfleonv8
2188 bool "sparchfleonv8 CPU has been removed"
2189 select BR2_LEGACY
2190 help
2191 The sparchfleonv8 CPU was only supported in a patched gcc
2192 4.4 version. Its support has been removed in favor of the
2193 leon3 CPU starting from gcc 4.8.x.
2194
2195config BR2_sparc_sparcsfleon
2196 bool "sparcsfleon CPU has been removed"
2197 select BR2_LEGACY
2198 help
2199 The sparcsfleon CPU was only supported in a patched gcc 4.4
2200 version. Its support has been removed in favor of the leon3
2201 CPU starting from gcc 4.8.x.
2202
2203config BR2_sparc_sparcsfleonv8
2204 bool "sparcsfleonv8 CPU has been removed"
2205 select BR2_LEGACY
2206 help
2207 The sparcsfleonv8 CPU was only supported in a patched gcc
2208 4.4 version. Its support has been removed in favor of the
2209 leon3 CPU starting from gcc 4.8.x.
2210
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02002211config BR2_PACKAGE_XLIB_LIBPCIACCESS
2212 bool "xlib-libpciaccess option has been renamed"
2213 depends on BR2_PACKAGE_XORG7
2214 select BR2_LEGACY
2215 select BR2_PACKAGE_LIBPCIACCESS
2216 help
2217 libpciaccess neither depends on X11 nor Xlib. Thus the
2218 package has been renamed BR2_PACKAGE_LIBPCIACCESS
2219
Yann E. MORINb581bba2014-09-21 20:38:13 +02002220config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
2221 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002222 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02002223 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
2224 help
2225 The Xceive xc5000 option now also handles older firmwares from
2226 Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
2227 from Cresta, who bought Xceive.
2228
Yann E. MORINdac546e2014-09-21 20:38:12 +02002229config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2230 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002231 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02002232 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2233 help
2234 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2235 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2236 to better account for the fact that a T5 variant exists.
2237
Yann E. MORIN120136e2014-09-21 20:38:09 +02002238config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
2239 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002240 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02002241 help
2242 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
2243 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
2244 select it in:
2245 Target packages -> Hardware handling ->
2246 Firmware -> linux-firmware -> WiFi firmware ->
2247 iwlwifi 3160/726x revision to use (revision 7)
2248
2249config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
2250 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002251 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02002252 help
2253 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
2254 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
2255 select it in:
2256 Target packages -> Hardware handling ->
2257 Firmware -> linux-firmware -> WiFi firmware ->
2258 iwlwifi 3160/726x revision to use (revision 8)
2259
2260###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002261comment "Legacy options removed in 2014.08"
2262
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02002263config BR2_PACKAGE_LIBELF
2264 bool "libelf has been removed"
2265 select BR2_PACKAGE_ELFUTILS
2266 select BR2_LEGACY
2267 help
2268 The libelf package provided an old version of the libelf library
2269 and is deprecated. The libelf library is now provided by the
2270 elfutils package.
2271
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002272config BR2_KERNEL_HEADERS_3_8
2273 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002274 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002275 select BR2_LEGACY
2276 help
2277 Version 3.8.x of the Linux kernel headers have been deprecated
2278 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002279 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002280 automatically selected in your configuration.
2281
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02002282config BR2_PACKAGE_GETTEXT_TOOLS
2283 bool "support for gettext-tools on target has been removed"
2284 select BR2_LEGACY
2285 help
2286 The option to install the gettext utilities on the target
2287 has been removed. This is not necessary as Buildroot is not
2288 designed to provide a full development environment on the
2289 target. gettext tools should be used on the build machine
2290 instead.
2291
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002292config BR2_PACKAGE_PROCPS
2293 bool "procps has been replaced by procps-ng"
2294 select BR2_PACKAGE_PROCPS_NG
2295 select BR2_LEGACY
2296 help
2297 The procps package has been replaced by the equivalent procps-ng.
2298
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02002299config BR2_BINUTILS_VERSION_2_20_1
2300 bool "binutils 2.20.1 has been removed"
2301 select BR2_LEGACY
2302 help
2303 The 2.20.1 version of binutils has been removed. Use a newer
2304 version instead.
2305
2306config BR2_BINUTILS_VERSION_2_21
2307 bool "binutils 2.21 has been removed"
2308 select BR2_LEGACY
2309 help
2310 The 2.21 version of binutils has been removed. Use a newer
2311 version instead.
2312
2313config BR2_BINUTILS_VERSION_2_23_1
2314 bool "binutils 2.23.1 has been removed"
2315 select BR2_LEGACY
2316 help
2317 The 2.23.1 version of binutils has been removed. Use a newer
2318 version instead.
2319
Thomas Petazzoni506b9642014-07-01 20:03:03 +02002320config BR2_UCLIBC_VERSION_0_9_32
2321 bool "uclibc 0.9.32 has been removed"
2322 select BR2_LEGACY
2323 help
2324 The 0.9.32 version of uClibc has been removed. Use a newer
2325 version instead.
2326
Thomas Petazzonid10e0802014-07-01 20:03:06 +02002327config BR2_GCC_VERSION_4_3_X
2328 bool "gcc 4.3.x has been removed"
2329 select BR2_LEGACY
2330 help
2331 The 4.3.x version of gcc has been removed. Use a newer
2332 version instead.
2333
2334config BR2_GCC_VERSION_4_6_X
2335 bool "gcc 4.6.x has been removed"
2336 select BR2_LEGACY
2337 help
2338 The 4.6.x version of gcc has been removed. Use a newer
2339 version instead.
2340
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002341config BR2_GDB_VERSION_7_4
2342 bool "gdb 7.4 has been removed"
2343 select BR2_LEGACY
2344 help
2345 The 7.4 version of gdb has been removed. Use a newer version
2346 instead.
2347
2348config BR2_GDB_VERSION_7_5
2349 bool "gdb 7.5 has been removed"
2350 select BR2_LEGACY
2351 help
2352 The 7.5 version of gdb has been removed. Use a newer version
2353 instead.
2354
Thomas Petazzonib18dca02014-07-01 20:03:09 +02002355config BR2_BUSYBOX_VERSION_1_19_X
2356 bool "busybox version selection has been removed"
2357 select BR2_LEGACY
2358 help
2359 The possibility of selecting the Busybox version has been
2360 removed. Use the latest version provided by the Busybox
2361 package instead.
2362
2363config BR2_BUSYBOX_VERSION_1_20_X
2364 bool "busybox version selection has been removed"
2365 select BR2_LEGACY
2366 help
2367 The possibility of selecting the Busybox version has been
2368 removed. Use the latest version provided by the Busybox
2369 package instead.
2370
2371config BR2_BUSYBOX_VERSION_1_21_X
2372 bool "busybox version selection has been removed"
2373 select BR2_LEGACY
2374 help
2375 The possibility of selecting the Busybox version has been
2376 removed. Use the latest version provided by the Busybox
2377 package instead.
2378
Ezequiel García07ac0452014-07-05 18:07:40 -03002379config BR2_PACKAGE_LIBV4L_DECODE_TM6000
2380 bool "decode_tm6000"
2381 select BR2_PACKAGE_LIBV4L_UTILS
2382 select BR2_LEGACY
2383 help
2384 This libv4l option has been deprecated and replaced by a single
2385 option to build all the libv4l utilities.
2386
2387config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
2388 bool "ir-keytable"
2389 select BR2_PACKAGE_LIBV4L_UTILS
2390 select BR2_LEGACY
2391 help
2392 This libv4l option has been deprecated and replaced by a single
2393 option to build all the libv4l utilities.
2394
2395config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
2396 bool "v4l2-compliance"
2397 select BR2_PACKAGE_LIBV4L_UTILS
2398 select BR2_LEGACY
2399 help
2400 This libv4l option has been deprecated and replaced by a single
2401 option to build all the libv4l utilities.
2402
2403config BR2_PACKAGE_LIBV4L_V4L2_CTL
2404 bool "v4l2-ctl"
2405 select BR2_PACKAGE_LIBV4L_UTILS
2406 select BR2_LEGACY
2407 help
2408 This libv4l option has been deprecated and replaced by a single
2409 option to build all the libv4l utilities.
2410
2411config BR2_PACKAGE_LIBV4L_V4L2_DBG
2412 bool "v4l2-dbg"
2413 select BR2_PACKAGE_LIBV4L_UTILS
2414 select BR2_LEGACY
2415 help
2416 This libv4l option has been deprecated and replaced by a single
2417 option to build all the libv4l utilities.
2418
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002419###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002420comment "Legacy options removed in 2014.05"
2421
Peter Seiderer4990a382014-04-23 00:12:23 +02002422config BR2_PACKAGE_EVTEST_CAPTURE
2423 bool "evtest-capture support removed (dropped since evtest 1.31)"
2424 select BR2_LEGACY
2425 help
2426 Support for evtest-capture has been removed (dropped from
2427 evtest package since version 1.31), use evemu package
2428 instead.
2429
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002430config BR2_KERNEL_HEADERS_3_6
2431 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002432 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002433 select BR2_LEGACY
2434 help
2435 Version 3.6.x of the Linux kernel headers have been deprecated
2436 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002437 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002438 automatically selected in your configuration.
2439
2440config BR2_KERNEL_HEADERS_3_7
2441 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002442 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002443 select BR2_LEGACY
2444 help
2445 Version 3.7.x of the Linux kernel headers have been deprecated
2446 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002447 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002448 automatically selected in your configuration.
2449
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02002450config BR2_PACKAGE_VALA
2451 bool "vala target package has been removed"
2452 select BR2_LEGACY
2453 help
2454 The 'vala' target package has been removed since it has been
2455 deprecated for more than four buildroot releases.
2456 Note: the host vala package still exists.
2457
Yann E. MORINd6a37912014-04-07 21:58:03 +02002458config BR2_TARGET_TZ_ZONELIST
2459 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
2460
2461config BR2_PACKAGE_TZDATA_ZONELIST
2462 string "tzdata: the timezone list option has been renamed"
2463 help
2464 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
2465 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
2466 menu. You'll need to select BR2_TARGET_TZ_INFO.
2467
2468config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
2469 bool
2470 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
2471 select BR2_LEGACY
2472
Yann E. MORINc97aeb72014-04-05 17:21:43 +02002473config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
2474 bool "Lua command-line editing none has been renamed"
2475 select BR2_LEGACY
2476 help
2477 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
2478 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
2479 it in the corresponding choice.
2480
2481config BR2_PACKAGE_LUA_INTERPRETER_READLINE
2482 bool "Lua command-line editing using readline has been renamed"
2483 select BR2_LEGACY
2484 help
2485 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
2486 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
2487 it in the corresponding choice.
2488
2489config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
2490 bool "Lua command-line editing using linenoise has been renamed"
2491 select BR2_LEGACY
2492 help
2493 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
2494 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
2495 it in the corresponding choice.
2496
Yann E. MORIN365ae612014-03-28 01:00:24 +01002497config BR2_PACKAGE_DVB_APPS_UTILS
2498 bool "dvb-apps utilities now built by default"
2499 select BR2_LEGACY
2500 help
2501 The dvb-apps utilities are now always built when the dvb-apps
2502 package is selected.
2503
Yann E. MORIN971e3312014-03-01 15:52:56 +01002504config BR2_KERNEL_HEADERS_SNAP
2505 bool "Local Linux snapshot support removed"
2506 select BR2_LEGACY
2507 help
2508 Support for using a custom snapshot to install the Linux
2509 kernel headers has been removed.
2510
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002511config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
2512 bool "/dev management by udev removed"
2513 select BR2_LEGACY
2514 help
2515 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002516 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002517
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002518 Therefore, if you are not using 'systemd' as init system, you
2519 must choose 'Dynamic using eudev' in the '/dev management'
2520 menu to get the same behaviour as in your old configuration.
2521
2522 If you are using 'systemd', its internal implementation of
2523 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002524
2525 You must also check the packages depending on 'udev' are still
2526 selected.
2527
2528config BR2_PACKAGE_UDEV
2529 bool "udev is now a virtual package"
2530 select BR2_LEGACY
2531 select BR2_PACKAGE_HAS_UDEV
2532 help
2533 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002534 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002535
2536 Your old configuration refers to packages depending on 'udev',
2537 either for build or at runtime.
2538
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002539 Check that a 'udev' provider is selected. If you are not using
2540 'systemd' as init system, 'eudev' should be selected, which is
2541 the case if '/dev management' is set to 'Dynamic using eudev'.
2542
2543 If you are using 'systemd', its internal implementation of 'udev'
2544 is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002545
2546config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002547 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002548 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002549 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
2550 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002551 help
2552 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002553 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002554
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002555 If you are not using 'systemd' as init system, udev rules
2556 generation will be handled by 'eudev'. Check that
2557 '/dev management' is set to 'Dynamic using eudev' to get
2558 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002559
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002560 If you are using 'systemd', it internal implementation of 'udev'
2561 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002562
2563config BR2_PACKAGE_UDEV_ALL_EXTRAS
2564 bool "udev extras removed"
2565 select BR2_LEGACY
2566 help
2567 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002568 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002569
2570 The option to enable the extra features of 'udev' (gudev, ...)
2571 has been removed. These features are automatically enabled in
2572 the 'udev' providers if the dependencies are selected. For
2573 example, selecting 'libglib2' will trigger the build of gudev.
2574
Bernd Kuhls5562be12014-03-01 16:41:10 +01002575config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
2576 bool "xlib-libpthread-stubs option has been renamed"
2577 depends on BR2_PACKAGE_XORG7
2578 select BR2_LEGACY
2579 select BR2_PACKAGE_LIBPTHREAD_STUBS
2580 help
2581 The pthread stubs neither depend on X11 nor Xlib. Thus the
2582 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
2583
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002584###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01002585comment "Legacy options removed in 2014.02"
2586
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002587config BR2_sh2
2588 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002589 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002590 help
2591 Due to an inexistent user base and generally poor Linux
2592 support, the support for the SH2 architecture was removed.
2593
2594config BR2_sh3
2595 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002596 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002597 help
2598 Due to an inexistent user base and generally poor Linux
2599 support, the support for the SH3 architecture was removed.
2600
2601config BR2_sh3eb
2602 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002603 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002604 help
2605 Due to an inexistent user base and generally poor Linux
2606 support, the support for the SH3eb architecture was removed.
2607
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002608config BR2_KERNEL_HEADERS_3_1
2609 bool "kernel headers version 3.1.x are no longer supported"
2610 select BR2_KERNEL_HEADERS_3_2
2611 select BR2_LEGACY
2612 help
2613 Version 3.1.x of the Linux kernel headers have been deprecated
2614 for more than four buildroot releases and are now removed.
2615 As an alternative, version 3.2.x of the headers have been
2616 automatically selected in your configuration.
2617
2618config BR2_KERNEL_HEADERS_3_3
2619 bool "kernel headers version 3.3.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002620 select BR2_KERNEL_HEADERS_3_2
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002621 select BR2_LEGACY
2622 help
2623 Version 3.3.x of the Linux kernel headers have been deprecated
2624 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002625 As an alternative, version 3.2.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002626 automatically selected in your configuration.
2627
2628config BR2_KERNEL_HEADERS_3_5
2629 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002630 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002631 select BR2_LEGACY
2632 help
2633 Version 3.5.x of the Linux kernel headers have been deprecated
2634 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002635 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002636 automatically selected in your configuration.
2637
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002638config BR2_GDB_VERSION_7_2
2639 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002640 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002641 select BR2_LEGACY
2642 help
2643 Version 7.2.x of gdb has been deprecated for more than four
2644 buildroot releases and is now removed. As an alternative, gdb
2645 7.5.x has been automatically selected in your configuration.
2646
2647config BR2_GDB_VERSION_7_3
2648 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002649 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002650 select BR2_LEGACY
2651 help
2652 Version 7.3.x of gdb has been deprecated for more than four
2653 buildroot releases and is now removed. As an alternative, gdb
2654 7.5.x has been automatically selected in your configuration.
2655
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01002656config BR2_PACKAGE_CCACHE
2657 bool "ccache target package has been removed"
2658 select BR2_LEGACY
2659 help
2660 The 'ccache' target package has been removed since it has been
2661 deprecated for more than four buildroot releases.
2662 Note: using ccache for speeding up builds is still supported.
2663
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01002664config BR2_HAVE_DOCUMENTATION
2665 bool "support for documentation on target has been removed"
2666 select BR2_LEGACY
2667 help
2668 Support for documentation on target has been removed since it has
2669 been deprecated for more than four buildroot releases.
2670
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01002671config BR2_PACKAGE_AUTOMAKE
2672 bool "automake target package has been removed"
2673 select BR2_LEGACY
2674 help
2675 The 'automake' target package has been removed since it has been
2676 deprecated for more than four buildroot releases.
2677 Note: the host automake still exists.
2678
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01002679config BR2_PACKAGE_AUTOCONF
2680 bool "autoconf target package has been removed"
2681 select BR2_LEGACY
2682 help
2683 The 'autoconf' target package has been removed since it has been
2684 deprecated for more than four buildroot releases.
2685 Note: the host autoconf still exists.
2686
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01002687config BR2_PACKAGE_XSTROKE
2688 bool "xstroke has been removed"
2689 select BR2_LEGACY
2690 help
2691 The 'xstroke' package has been removed since it has been
2692 deprecated for more than four buildroot releases.
2693
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01002694config BR2_PACKAGE_LZMA
2695 bool "lzma target package has been removed"
2696 select BR2_LEGACY
2697 help
2698 The 'lzma' target package has been removed since it has been
2699 deprecated for more than four buildroot releases.
2700 Note: generating lzma-compressed rootfs images is still supported.
2701
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01002702config BR2_PACKAGE_TTCP
2703 bool "ttcp has been removed"
2704 select BR2_LEGACY
2705 help
2706 The 'ttcp' package has been removed since it has been
2707 deprecated for more than four buildroot releases.
2708
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002709config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002710 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002711 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002712 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002713 help
2714 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002715 to 'libllcp'. We have added a new package for 'libllcp' and bumped
2716 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002717
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00002718config BR2_PACKAGE_MYSQL_CLIENT
2719 bool "MySQL client renamed to MySQL"
2720 select BR2_LEGACY
2721 select BR2_PACKAGE_MYSQL
2722 help
2723 The option has been renamed BR2_PACKAGE_MYSQL
2724
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01002725config BR2_PACKAGE_SQUASHFS3
2726 bool "squashfs3 has been removed"
2727 select BR2_LEGACY
2728 select BR2_PACKAGE_SQUASHFS
2729 help
2730 The 'squashfs3' package has been removed since it has been
2731 deprecated for more than four buildroot releases. Package
2732 'squashfs' (4) has been selected automatically as replacement.
2733
2734config BR2_TARGET_ROOTFS_SQUASHFS3
2735 bool "squashfs3 rootfs support has been removed"
2736 select BR2_LEGACY
2737 help
2738 Together with the removal of the squashfs3 package, support
2739 for squashfs3 root filesystems has been removed too. Squashfs
2740 root filesystems will automatically use squashfs4 now.
2741
Arnaud Aujon560fe852013-12-15 20:23:12 +01002742config BR2_PACKAGE_NETKITBASE
2743 bool "netkitbase has been removed"
2744 select BR2_LEGACY
2745 help
2746 The 'netkitbase' package has been removed since it has been
2747 deprecated since 2012.11. This package provided 'inetd'
2748 which is replaced by 'xinet' and 'ping' which is replaced by
2749 'busybox' or 'fping'.
2750
2751config BR2_PACKAGE_NETKITTELNET
2752 bool "netkittelnet has been removed"
2753 select BR2_LEGACY
2754 help
2755 The 'netkittelnet' package has been removed since it has
2756 been deprecated since 2012.11. 'busybox' provides a telnet
2757 client and should be used instead.
2758
Francois Perrad63058f82014-01-11 16:42:09 +01002759config BR2_PACKAGE_LUASQL
2760 bool "luasql has been replaced by luasql-sqlite3"
2761 select BR2_PACKAGE_LUASQL_SQLITE3
2762 select BR2_LEGACY
2763 help
2764 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2765
Francois Perrada6c53472014-01-11 16:42:08 +01002766config BR2_PACKAGE_LUACJSON
2767 bool "luacjson has been replaced by lua-cjson"
2768 select BR2_PACKAGE_LUA_CJSON
2769 select BR2_LEGACY
2770 help
2771 The option has been renamed BR2_PACKAGE_LUA_CJSON.
2772
Arnaud Aujon560fe852013-12-15 20:23:12 +01002773###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002774comment "Legacy options removed in 2013.11"
2775
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01002776config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2777 bool "lvm2's 'dmsetup only' option removed"
2778 select BR2_LEGACY
2779 help
2780 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2781 led to problems with other packages that need the full lvm2
2782 suite. Therefore, the option has been replaced with the positive
2783 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2784
2785# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2786# in order to automatically propagate old configs
2787
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01002788config BR2_PACKAGE_QT_JAVASCRIPTCORE
2789 bool "qt javascriptcore option removed"
2790 select BR2_LEGACY
2791 help
2792 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2793 force the activation or disabling of the JIT compiler in the
2794 Qt Javascript interpreter. However, the JIT compiler is not
2795 available for all architectures, so forcing its activation
2796 does not always work. Moreover, Qt knows by itself for which
2797 architectures JIT support is possible, and will
2798 automatically enable it if possible.
2799
2800 Therefore, this option was in fact useless, and causing
2801 build problems when enabled on architectures for which the
2802 JIT support was not available. It has been removed, and
2803 there is no replacement: Qt will enable JIT at compile time
2804 when possible.
2805
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002806config BR2_PACKAGE_MODULE_INIT_TOOLS
2807 bool "module-init-tools replaced by kmod"
2808 select BR2_PACKAGE_KMOD
2809 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01002810 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002811 help
2812 The 'module-init-tools' package has been removed, since it
2813 has been depracated upstream and replaced by 'kmod'.
2814
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02002815config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2816 string "u-boot: the git repository URL option has been renamed"
2817 help
2818 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2819 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2820
2821config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2822 bool
2823 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2824 select BR2_LEGACY
2825
2826# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2827# boot/uboot/Config.in
2828
2829config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2830 string "u-boot: the git repository version option has been renamed"
2831 help
2832 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
2833 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
2834
2835config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
2836 bool
2837 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
2838 select BR2_LEGACY
2839
2840# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
2841# boot/uboot/Config.in
2842
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02002843config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
2844 string "linux: the git repository URL option has been renamed"
2845 help
2846 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
2847 been renamed to
2848 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
2849
2850config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
2851 bool
2852 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
2853 select BR2_LEGACY
2854
2855# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
2856# linux/Config.in
2857
2858config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
2859 string "linux: the git repository version option has been renamed"
2860 help
2861 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
2862 been renamed to
2863 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
2864
2865config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
2866 bool
2867 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
2868 select BR2_LEGACY
2869
2870# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
2871# linux/Config.in
2872
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002873###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002874comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002875
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02002876config BR2_ARM_OABI
2877 bool "ARM OABI support has been removed"
2878 select BR2_LEGACY
2879 help
2880 The support for the ARM OABI was deprecated since a while,
2881 and has been removed completely from Buildroot. It is also
2882 deprecated in upstream gcc, since gcc 4.7. People should
2883 switch to EABI instead, which should not be a problem as
2884 long as you don't have pre-built OABI binaries in your
2885 system that you can't recompile.
2886
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002887config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
2888 bool "dosfstools dosfsck renamed to fsck.fat"
2889 select BR2_LEGACY
2890 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
2891 help
2892 dosfsck was renamed upstream to fsck.fat for consistency.
2893
2894config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
2895 bool "dosfstools dosfslabel renamed to fatlabel"
2896 select BR2_LEGACY
2897 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
2898 help
2899 doslabel was renamed upstream to fatlabel for consistency.
2900
2901config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
2902 bool "dosfstools mkdosfs renamed to mkfs.fat"
2903 select BR2_LEGACY
2904 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
2905 help
2906 mkdosfs was renamed upstream to mkfs.fat for consistency.
2907
Thomas Petazzonie21db002013-06-30 21:28:57 +02002908config BR2_ELF2FLT
2909 bool "the elf2flt option has been renamed"
2910 select BR2_LEGACY
2911 help
2912 The BR2_ELF2FLT option has been renamed to
2913 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
2914 the package infrastructure.
2915
Thomas Petazzonid8060052013-07-16 10:03:17 +02002916config BR2_VFP_FLOAT
2917 bool "the ARM VFP floating point option has been renamed"
2918 select BR2_LEGACY
2919 help
2920 Due to a major refactoring of the floating-point handling of
2921 the ARM architecture support, the BR2_VFP_FLOAT option has
2922 been replaced with a choice of options that allows to select
2923 between various VFP versions/capabilities.
2924
Samuel Martinba8f82b2013-08-30 06:08:59 +02002925config BR2_PACKAGE_GCC_TARGET
2926 bool "gcc on the target filesystem has been removed"
2927 select BR2_LEGACY
2928 help
2929 The support for gcc in the target filesystem was deprecated
2930 since a while, and has been removed completely from Buildroot.
2931 See Buildroot's documentation for more explanations.
2932
2933config BR2_HAVE_DEVFILES
2934 bool "development files in target filesystem has been removed"
2935 select BR2_LEGACY
2936 help
2937 The installation of the development files in the target
2938 filesystem was deprecated since a while, and has been removed
2939 completely from Buildroot.
2940 See Buildroot's documentation for more explanations.
2941
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002942###############################################################################
2943comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +00002944
2945config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
2946 bool "Realtek 8192 replaced by Realtek 81xx"
2947 select BR2_LEGACY
2948 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
2949 help
2950 Now covers the whole Realtek 81xx familly: 8188/8192.
2951
2952config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
2953 bool "Realtek 8712 replaced by Realtek 87xx"
2954 select BR2_LEGACY
2955 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
2956 help
2957 Now covers the whole Realtek 87xx familly: 8712/8723.
2958
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002959###############################################################################
2960comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002961
Gustavo Zacarias94744212013-04-04 07:29:45 +00002962config BR2_sa110
2963 bool "sa110 ARM target switched to strongarm"
2964 select BR2_LEGACY
2965 select BR2_strongarm
2966 help
2967 The SA110 is the same as a generic StrongARM, it just differs
2968 in speed, peripherals and cache.
2969
2970config BR2_sa1100
2971 bool "sa1100 ARM target switched to strongarm"
2972 select BR2_LEGACY
2973 select BR2_strongarm
2974 help
2975 The SA1100 is the same as a generic StrongARM, it just differs
2976 in speed, peripherals and cache.
2977
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002978config BR2_PACKAGE_GDISK
2979 bool "gdisk has been replaced by gptfdisk"
2980 select BR2_LEGACY
2981 select BR2_PACKAGE_GPTFDISK
2982 help
2983 The option has been renamed BR2_PACKAGE_GPTFDISK.
2984
2985config BR2_PACKAGE_GDISK_GDISK
2986 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
2987 select BR2_LEGACY
2988 select BR2_PACKAGE_GPTFDISK
2989 select BR2_PACKAGE_GPTFDISK_GDISK
2990 help
2991 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
2992
2993config BR2_PACKAGE_GDISK_SGDISK
2994 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
2995 select BR2_LEGACY
2996 select BR2_PACKAGE_GPTFDISK
2997 select BR2_PACKAGE_GPTFDISK_SGDISK
2998 help
2999 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00003000
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +00003001config BR2_PACKAGE_GDB_HOST
3002 bool "gdb for the host option has been renamed"
3003 select BR2_PACKAGE_HOST_GDB
3004 select BR2_LEGACY
3005 help
3006 Due to the conversion of gdb to the package infrastructure,
3007 the BR2_PACKAGE_GDB_HOST option has been renamed
3008 BR2_PACKAGE_HOST_GDB.
3009
Carsten Schoenert76de0f82013-03-10 08:32:46 +00003010config BR2_PACKAGE_DIRECTB_DITHER_RGB16
3011 bool "DirectFB RGB16 dithering option has been renamed"
3012 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
3013 select BR2_LEGACY
3014 help
3015 The option has been renamed
3016 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
3017
3018config BR2_PACKAGE_DIRECTB_TESTS
3019 bool "DirectFB Tests option has been renamed"
3020 select BR2_PACKAGE_DIRECTFB_TESTS
3021 select BR2_LEGACY
3022 help
3023 The option has been renamed
3024 BR2_PACKAGE_DIRECTFB_TESTS.
3025
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003026###############################################################################
3027comment "Legacy options removed in 2012.11"
3028
Thomas Petazzoni12ccc432013-02-07 11:58:45 +00003029config BR2_PACKAGE_CUSTOMIZE
3030 bool "customize package has been removed"
3031 select BR2_LEGACY
3032 help
3033 The 'customize' special package has been removed. Instead,
3034 we recommend to create either your own packages, or use a
3035 post-build script to customize your root filesystem. See
3036 Buildroot's documentation for more details.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00003037
3038config BR2_PACKAGE_XSERVER_xorg
3039 bool "X.org modular server"
3040 select BR2_LEGACY
3041 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
3042 help
3043 The option has been renamed
3044 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
3045
3046config BR2_PACKAGE_XSERVER_tinyx
3047 bool "KDrive / TinyX server"
3048 select BR2_LEGACY
3049 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
3050 help
3051 The option has been renamed
3052 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
3053
3054config BR2_PACKAGE_PTHREAD_STUBS
3055 bool "pthread-stubs option has been renamed"
3056 select BR2_LEGACY
Bernd Kuhls5562be12014-03-01 16:41:10 +01003057 select BR2_PACKAGE_LIBPTHREAD_STUBS
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00003058 help
3059 For consistency reason, the pthread-stubs package has been
Bernd Kuhls5562be12014-03-01 16:41:10 +01003060 renamed to libpthread-stubs.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00003061
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003062###############################################################################
3063comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00003064
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +00003065config BR2_PACKAGE_GETTEXT_STATIC
3066 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
3067 select BR2_LEGACY
3068 help
3069 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
3070
3071
3072config BR2_PACKAGE_LIBINTL
3073 bool "libintl"
3074 select BR2_LEGACY
3075 select BR2_PACKAGE_GETTEXT
3076 help
3077 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
3078 only installs the library, not the executables.
3079
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +00003080config BR2_PACKAGE_INPUT_TOOLS_EVTEST
3081 bool "input-tools evtest is now a separate package evtest"
3082 select BR2_LEGACY
3083 select BR2_PACKAGE_EVTEST
3084 help
3085 The evtest program from input-tools is now a separate package.
3086
Sonic Zhang57133822013-05-03 00:39:34 +00003087config BR2_BFIN_FDPIC
3088 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
3089 select BR2_BINFMT_FDPIC
3090 select BR2_LEGACY
3091
3092config BR2_BFIN_FLAT
3093 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
3094 select BR2_BINFMT_FLAT
3095 select BR2_LEGACY
3096
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00003097endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02003098
3099endif # !SKIP_LEGACY