blob: 8e9f3d175d86c415ce47b885fc4f4761fa3a3ea3 [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###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300146comment "Legacy options removed in 2017.05"
147
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +0200148config BR2_PACKAGE_PORTMAP
149 bool "portmap has been removed"
150 select BR2_LEGACY
151 select BR2_PACKAGE_RPCBIND
152 help
153 The portmap upstream tarball is removed, no releases since
154 ten years and latest change in upstream git in 2014.
155 You should better use rpcbind as a RPC portmapper.
156
Thomas Petazzoni58472912017-04-03 22:28:21 +0200157config BR2_BINUTILS_VERSION_2_25_X
158 bool "binutils version 2.25 support removed"
159 select BR2_LEGACY
160 help
161 Support for binutils version 2.25 has been removed. The
162 current default version (2.27 or later) has been selected
163 instead.
164
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +0200165config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
166 bool "uclibc RPC support has been removed"
167 select BR2_LEGACY
168 help
169 uClibc-ng removed internal RPC implementation in 1.0.23. You
170 should use libtirpc instead.
171
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +0100172config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
173 int "extra size in blocks has been removed"
174 default 0
175 help
176 Since the support for auto calculation of the filesystem size has been
177 removed, this option is now useless and must be 0.
178 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS matchs
179 your needs.
180
181config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
182 bool
183 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
184 select BR2_LEGACY
185
Vicente Olivert Riera815f7132017-03-22 11:39:13 +0000186config BR2_PACKAGE_SYSTEMD_KDBUS
187 bool "systemd-kdbus has been removed"
188 select BR2_LEGACY
189 help
190 --enable/disable-kdbus configure option has been removed since
191 systemd-231.
192
Gustavo Zacariasd10b4932017-03-16 10:04:34 -0300193config BR2_PACKAGE_POLARSSL
194 bool "polarssl has been removed"
195 select BR2_LEGACY
196 help
197 The polarssl crypto library has been removed since the 1.2.x
198 release branch is no longer maintained. Newer upstream
199 branches/releases (mbedtls) have API changes so they're not
200 drop-in replacements.
201
Yann E. MORIN61551182017-03-12 10:58:15 +0100202config BR2_NBD_CLIENT
203 bool "nbd client option was renamed"
204 select BR2_LEGACY
205 select BR2_PACKAGE_NBD_CLIENT
206 help
207 The nbd client option has been renamed to BR2_PACKAGE_NBD_CLIENT.
208
209config BR2_NBD_SERVER
210 bool "nbd server option was renamed"
211 select BR2_LEGACY
212 select BR2_PACKAGE_NBD_SERVER
213 help
214 The nbd server option has been renamed to BR2_PACKAGE_NBD_SERVER.
215
Carlos Santos6a9c6312017-02-14 09:05:16 -0200216config BR2_PACKAGE_GMOCK
217 bool "gmock merged into gtest package"
218 select BR2_LEGACY
219 select BR2_PACKAGE_GTEST
220 select BR2_PACKAGE_GTEST_GMOCK
221 help
222 GMock is now a suboption of the GTest package.
223
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300224config BR2_KERNEL_HEADERS_4_8
225 bool "kernel headers version 4.8.x are no longer supported"
226 select BR2_KERNEL_HEADERS_4_4
227 select BR2_LEGACY
228 help
229 Version 4.8.x of the Linux kernel headers are no longer
230 maintained upstream and are now removed. As an alternative,
231 version 4.4.x of the headers have been automatically
232 selected in your configuration.
233
234config BR2_KERNEL_HEADERS_3_18
235 bool "kernel headers version 3.18.x are no longer supported"
236 select BR2_KERNEL_HEADERS_3_12
237 select BR2_LEGACY
238 help
239 Version 3.18.x of the Linux kernel headers are no longer
240 maintained upstream and are now removed. As an alternative,
241 version 3.12.x of the headers have been automatically
242 selected in your configuration.
243
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300244config BR2_GLIBC_VERSION_2_22
245 bool "glibc 2.22 removed"
246 select BR2_LEGACY
247 help
248 Support for glibc version 2.22 has been removed. The current
249 default version has been selected instead.
250
251###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +0100252comment "Legacy options removed in 2017.02"
253
Francois Perrad8546ff32016-12-26 15:50:35 +0100254config BR2_PACKAGE_PERL_DB_FILE
255 bool "perl-db-file removed"
256 select BR2_LEGACY
257 select BR2_PACKAGE_BERKELEYDB
258 select BR2_PACKAGE_PERL
259 help
260 DB_File can be built as a core Perl module, so the separate
261 perl-db-file package has been removed.
262
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300263config BR2_KERNEL_HEADERS_4_7
264 bool "kernel headers version 4.7.x are no longer supported"
265 select BR2_KERNEL_HEADERS_4_4
266 select BR2_LEGACY
267 help
268 Version 4.7.x of the Linux kernel headers are no longer
269 maintained upstream and are now removed. As an alternative,
270 version 4.4.x of the headers have been automatically
271 selected in your configuration.
272
273config BR2_KERNEL_HEADERS_4_6
274 bool "kernel headers version 4.6.x are no longer supported"
275 select BR2_KERNEL_HEADERS_4_4
276 select BR2_LEGACY
277 help
278 Version 4.6.x of the Linux kernel headers are no longer
279 maintained upstream and are now removed. As an alternative,
280 version 4.4.x of the headers have been automatically
281 selected in your configuration.
282
283config BR2_KERNEL_HEADERS_4_5
284 bool "kernel headers version 4.5.x are no longer supported"
285 select BR2_KERNEL_HEADERS_4_4
286 select BR2_LEGACY
287 help
288 Version 4.5.x of the Linux kernel headers are no longer
289 maintained upstream and are now removed. As an alternative,
290 version 4.4.x of the headers have been automatically
291 selected in your configuration.
292
293config BR2_KERNEL_HEADERS_3_14
294 bool "kernel headers version 3.14.x are no longer supported"
295 select BR2_KERNEL_HEADERS_3_12
296 select BR2_LEGACY
297 help
298 Version 3.14.x of the Linux kernel headers are no longer
299 maintained upstream and are now removed. As an alternative,
300 version 3.12.x of the headers have been automatically
301 selected in your configuration.
302
Romain Naour63abbcc2016-12-16 16:29:45 +0100303config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
304 bool "musl-cross 1.1.12 toolchain removed"
305 select BR2_LEGACY
306 help
307 The support for the prebuilt toolchain based on the Musl C
308 library provided by the musl-cross project has been removed.
309 Upstream doesn't provide any prebuilt toolchain anymore, use the
310 Buildroot toolchain instead.
311
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +0100312config BR2_UCLIBC_INSTALL_TEST_SUITE
313 bool "uClibc tests now in uclibc-ng-test"
314 select BR2_LEGACY
315 select BR2_PACKAGE_UCLIBC_NG_TEST
316 help
317 The test suite of the uClibc C library has been moved into a
318 separate package, uclibc-ng-test.
319
Arnout Vandecappelle311bc132016-11-24 00:40:35 +0100320config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
321 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
322 select BR2_LEGACY
323 help
324 The ADI Blackfin toolchain has many bugs which are fixed in
325 more recent gcc and uClibc-ng releases. Use the Buildroot
326 toolchain instead.
327
Arnout Vandecappelle207294f2016-11-23 15:14:04 +0100328config BR2_PACKAGE_MAKEDEVS
329 bool "makedevs removed"
330 select BR2_LEGACY
331 help
332 The makedevs tool is part of busybox. The Buildroot fork
333 should not be used outside of the Buildroot infrastructure.
334
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +0100335config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
336 bool "Arago ARMv7 2011.09 removed"
337 select BR2_LEGACY
338 help
339 The Arago toolchains are every old and not updated anymore.
340
341config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
342 bool "Arago ARMv5 2011.09 removed"
343 select BR2_LEGACY
344 help
345 The Arago toolchains are every old and not updated anymore.
346
Thomas Petazzonied364d12016-11-05 14:32:38 +0100347config BR2_PACKAGE_SNOWBALL_HDMISERVICE
348 bool "snowball-hdmiservice removed"
349 select BR2_LEGACY
350 help
351 We no longer have support for the Snowball platform in
352 Buildroot, so this package was no longer useful.
353
354config BR2_PACKAGE_SNOWBALL_INIT
355 bool "snowball-init removed"
356 select BR2_LEGACY
357 help
358 We no longer have support for the Snowball platform in
359 Buildroot, so this package was no longer useful.
360
Jörg Krause69aa0572016-12-14 14:40:58 +0100361config BR2_GDB_VERSION_7_9
362 bool "gdb 7.9 has been removed"
363 select BR2_LEGACY
364 help
365 The 7.9 version of gdb has been removed. Use a newer version
366 instead.
367
Thomas Petazzonied364d12016-11-05 14:32:38 +0100368###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +0200369comment "Legacy options removed in 2016.11"
370
Fabrice Fontainec4572132016-09-12 23:31:07 +0200371config BR2_PACKAGE_PHP_SAPI_CLI_CGI
372 bool "PHP CGI and CLI options are now seperate"
373 select BR2_PACKAGE_PHP_SAPI_CLI
374 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200375 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200376 help
377 The PHP Interface options have been split up into a
378 separate option for each interface.
379
380config BR2_PACKAGE_PHP_SAPI_CLI_FPM
381 bool "PHP CLI and FPM options are now separate"
382 select BR2_PACKAGE_PHP_SAPI_CLI
383 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200384 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200385 help
386 The PHP Interface options have been split up into a
387 separate option for each interface.
388
Arnout Vandecappelle35343992016-10-15 16:51:06 +0200389config BR2_PACKAGE_WVSTREAMS
390 bool "wvstreams removed"
391 select BR2_LEGACY
392 help
393 wvstreams is not maintained anymore since about 2009. It also
394 doesn't build anymore with recent compilers (GCC 5+).
395
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +0200396config BR2_PACKAGE_WVDIAL
397 bool "wvdial removed"
398 select BR2_LEGACY
399 help
400 wvdial is not maintained anymore since about 2009. It also
401 doesn't build anymore with recent compilers (GCC 5+).
402
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +0200403config BR2_PACKAGE_WEBKITGTK24
404 bool "webkitgtk 2.4.x removed"
405 select BR2_LEGACY
406 help
407 This legacy package only existed because some other packages
408 depended on that specific version of webkitgtk. However, the
409 other packages have been fixed. webkitgtk 2.4 is full of
410 security issues so it needs to be removed.
411
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +0200412config BR2_PACKAGE_TORSMO
413 bool "torsmo removed"
414 select BR2_LEGACY
415 help
416 torsmo has been unmaintained for a long time, and nobody
417 seems to be interested in it.
418
Arnout Vandecappelle290166f2016-10-15 16:51:02 +0200419config BR2_PACKAGE_SSTRIP
420 bool "sstrip removed"
421 select BR2_LEGACY
422 help
423 sstrip is unmaintained and potentially harmful. It doesn't
424 save so much compared to normal binutils strip, and there is
425 a big risk of binaries that don't work. Use normal strip
426 instead.
427
Arnout Vandecappelle133466f2016-10-15 16:51:01 +0200428config BR2_KERNEL_HEADERS_4_3
429 bool "kernel headers version 4.3.x are no longer supported"
430 select BR2_KERNEL_HEADERS_4_1
431 select BR2_LEGACY
432 help
433 Version 4.3.x of the Linux kernel headers are no longer
434 maintained upstream and are now removed. As an alternative,
435 version 4.1.x of the headers have been automatically
436 selected in your configuration.
437
438config BR2_KERNEL_HEADERS_4_2
439 bool "kernel headers version 4.2.x are no longer supported"
440 select BR2_KERNEL_HEADERS_4_1
441 select BR2_LEGACY
442 help
443 Version 4.2.x of the Linux kernel headers are no longer
444 maintained upstream and are now removed. As an alternative,
445 version 4.1.x of the headers have been automatically
446 selected in your configuration.
447
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +0200448config BR2_PACKAGE_KODI_ADDON_XVDR
449 bool "kodi-addon-xvdr removed"
450 select BR2_LEGACY
451 help
452 According to the github project page:
453 https://github.com/pipelka/xbmc-addon-xvdr
454 this package is discontinued.
455
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +0200456config BR2_PACKAGE_IPKG
457 bool "ipkg removed"
458 select BR2_LEGACY
459 help
460 ipkg dates back to the early 2000s when Compaq started the
461 handhelds.org project and it hasn't seen development since 2006.
462 Use opkg as a replacement.
463
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +0200464config BR2_GCC_VERSION_4_7_X
465 bool "gcc 4.7.x support removed"
466 select BR2_LEGACY
467 help
468 Support for gcc version 4.7.x has been removed. The current
469 default version (4.9.x or later) has been selected instead.
470
Arnout Vandecappelled8878112016-10-15 16:50:57 +0200471config BR2_BINUTILS_VERSION_2_24_X
472 bool "binutils version 2.24 support removed"
473 select BR2_LEGACY
474 help
475 Support for binutils version 2.24 has been removed. The
476 current default version (2.26 or later) has been selected
477 instead.
478
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -0300479config BR2_PACKAGE_WESTON_RPI
480 bool "Weston propietary RPI support is gone"
481 select BR2_LEGACY
482 help
483 Upstream decided the propietary (rpi-userland) weston composer
484 support wasn't worth the effort so it was removed. Switch to
485 the open VC4 support.
486
Yann E. MORIN20b14462016-09-06 16:29:14 +0200487config BR2_LINUX_KERNEL_TOOL_CPUPOWER
488 bool "linux-tool cpupower"
489 depends on BR2_LINUX_KERNEL
490 select BR2_LEGACY
491 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
492 help
493 Linux tool cpupower option was renamed.
494
495config BR2_LINUX_KERNEL_TOOL_PERF
496 bool "linux-tool perf"
497 depends on BR2_LINUX_KERNEL
498 select BR2_LEGACY
499 select BR2_PACKAGE_LINUX_TOOLS_PERF
500 help
501 Linux tool perf option was renamed.
502
503config BR2_LINUX_KERNEL_TOOL_SELFTESTS
504 bool "linux-tool selftests"
505 depends on BR2_LINUX_KERNEL
506 select BR2_LEGACY
507 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
508 help
509 Linux tool selftests option was renamed.
510
Thomas Petazzoni50332a52016-08-11 15:25:38 +0200511config BR2_GCC_VERSION_4_8_ARC
512 bool "gcc arc option renamed"
513 select BR2_LEGACY
514 select BR2_GCC_VERSION_ARC
515 help
516 The option that selects the gcc version for the ARC
517 architecture has been renamed to BR2_GCC_VERSION_ARC.
518
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300519config BR2_KERNEL_HEADERS_4_0
520 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300521 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300522 select BR2_LEGACY
523 help
524 Version 4.0.x of the Linux kernel headers have been deprecated
525 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300526 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300527 automatically selected in your configuration.
528
529config BR2_KERNEL_HEADERS_3_19
530 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300531 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300532 select BR2_LEGACY
533 help
534 Version 3.19.x of the Linux kernel headers have been deprecated
535 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300536 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300537 automatically selected in your configuration.
538
Romain Naour0e517312016-09-02 22:31:32 +0200539config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
540 bool "libevas-generic-loaders package removed"
541 select BR2_LEGACY
542 select BR2_PACKAGE_EFL
543 help
544 With EFL 1.18, libevas-generic-loaders is now provided by the efl
545 package.
546
Romain Naourc22b7582016-09-02 22:31:31 +0200547config BR2_PACKAGE_ELEMENTARY
548 bool "elementary package removed"
549 select BR2_LEGACY
550 select BR2_PACKAGE_EFL
551 help
552 With EFL 1.18, elementary is now provided by the efl package.
553
Yann E. MORINe782cd52016-08-28 01:03:04 +0200554config BR2_LINUX_KERNEL_CUSTOM_LOCAL
555 bool "Linux kernel local directory option removed"
556 help
557 The option to select a local directory as the source of the Linux
558 kernel has been removed. It hurts reproducibility of builds.
559
560 In case you were using this option during development of your
561 Linux kernel, use the override mechanism instead.
562
563###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200564comment "Legacy options removed in 2016.08"
565
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100566config BR2_PACKAGE_EFL_JP2K
567 bool "libevas jp2k loader has been removed"
568 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +0100569 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100570 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
571 while Buildroot only packages openjpeg 2.x. Therefore, the
572 JP2K loader has been removed from EFL.
573
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200574config BR2_PACKAGE_SYSTEMD_COMPAT
575 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +0200576 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200577 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +0200578 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200579 been removed. Theses libraries have been useless since a few
580 version, and have been fully dropped from the source since
581 v230.
582
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +0200583config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
584 bool "gst1-plugins-bad liveadder plugin removed"
585 select BR2_LEGACY
586 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
587 help
588 The functionality of the liveadder plugin of the
589 gst1-plugins-bad package has been merged into audiomixer.
590
Andrew Webster0f92b192016-06-10 14:13:29 -0400591config BR2_PACKAGE_LIBFSLVPUWRAP
592 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
593 select BR2_LEGACY
594 select BR2_PACKAGE_IMX_VPUWRAP
595 help
596 The libfslvpuwrap has been renamed to match the renamed package.
597
Andrew Webster64998902016-06-10 14:13:18 -0400598config BR2_PACKAGE_LIBFSLPARSER
599 bool "libfslparser has been renamed to imx-parser"
600 select BR2_LEGACY
601 select BR2_PACKAGE_IMX_PARSER
602 help
603 The libfslparser has been renamed to match the renamed package.
604
Andrew Webster47e62032016-06-10 14:13:05 -0400605config BR2_PACKAGE_LIBFSLCODEC
606 bool "libfslcodec has been renamed to imx-codec"
607 select BR2_LEGACY
608 select BR2_PACKAGE_IMX_CODEC
609 help
610 The libfslcodec has been renamed to match the renamed package.
611
Carlos Santosb5d99002016-06-03 16:35:39 -0300612config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
613 bool "FIT support in uboot-tools has been refactored"
614 select BR2_LEGACY
615 select BR2_PACKAGE_DTC
616 select BR2_PACKAGE_DTC_PROGRAMS
617 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
618 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
619 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
620 help
621 This option has been removed in favor of a more fine-grained
622 configuration, which is recommended. Selecting this option
623 enables FIT and FIT signature support for the target packages.
624 It will also select the dtc and openssl packages.
625
Waldemar Brodkorbf253c142016-06-01 20:40:25 +0200626config BR2_PTHREADS_OLD
627 bool "linuxthreads (stable/old)"
628 select BR2_LEGACY
629 help
630 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
631 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
632
Thomas Petazzoniae466a62016-05-17 00:13:01 +0200633config BR2_BINUTILS_VERSION_2_23_X
634 bool "binutils 2.23 removed"
635 select BR2_LEGACY
636 help
637 Binutils 2.23 has been removed, using a newer version is
638 recommended.
639
Thomas Petazzoni500de252016-05-17 00:13:00 +0200640config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
641 bool "eglibc support has been removed"
642 select BR2_LEGACY
643 help
644 The eglibc project no longer exists, as it has been merged
645 back into the glibc project. Therefore, support for eglibc
646 has been removed, and glibc should be used instead.
647
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200648config BR2_GDB_VERSION_7_8
649 bool "gdb 7.8 has been removed"
650 select BR2_LEGACY
651 help
652 The 7.8 version of gdb has been removed. Use a newer version
653 instead.
654
655###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100656comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +0100657
Gustavo Zacarias3380da62016-05-14 10:33:47 -0300658config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
659 bool "openvpn polarssl crypto backend removed"
660 select BR2_LEGACY
661 help
662 The OpenVPN polarssl crypto backend option has been removed.
663 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
664 compatible with mbedtls (polarssl) series 2.x which is the
665 version provided in buildroot. And both can't coexist.
666 It now uses OpenSSL as the only option.
667
668
Martin Bark4dfc2cb2016-05-03 10:36:54 +0100669config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
670 bool "nginx http spdy module removed"
671 select BR2_LEGACY
672 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
673 help
674 The ngx_http_spdy_module has been superseded by the
675 ngx_http_v2_module since nginx v1.9.5. The
676 ngx_http_v2_module modules has been automatically selected
677 in your configuration.
678
Gustavo Zacarias0c956f22016-05-03 16:44:15 -0300679config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
680 bool "gst1-plugins-bad rtp plugin moved to good"
681 select BR2_LEGACY
682 help
683 The rtp plugin has been moved from gst1-plugins-base to
684 gst1-plugins-good.
685
Gustavo Zacarias4196cf92016-05-03 16:44:14 -0300686config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
687 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
688 select BR2_LEGACY
689 help
690 The mpg123 plugin has been moved from gst1-plugins-bad to
691 gst1-plugins-ugly.
692
Gustavo Zacarias8490e832016-04-29 10:18:56 -0300693config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
694 bool "PowerPC Sourcery toolchain has been removed"
695 select BR2_LEGACY
696 help
697 The Sourcery CodeBench toolchain for the PowerPC
698 architecture has been removed, as it was very old, not
699 maintained, and causing numerous build failures with modern
700 userspace packages.
701
702config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
703 bool "PowerPC Sourcery E500v2 toolchain has been removed"
704 select BR2_LEGACY
705 help
706 The Sourcery CodeBench toolchain for the PowerPC E500v2
707 architecture has been removed, as it was very old, not
708 maintained, and causing numerous build failures with modern
709 userspace packages.
710
Thomas Petazzoni6cb48142016-04-17 23:31:34 +0200711config BR2_x86_i386
712 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +0200713 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +0200714 help
715 The support for the i386 processors of the x86 architecture
716 has been removed.
717
Julien CORJON940bfe22016-03-17 10:42:27 +0100718config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
719 bool "qt5webkit-examples package removed"
720 select BR2_LEGACY
721 help
722 The qt5webkit-examples package has been removed, since it
723 was removed from upstream starting from Qt 5.6.
724
Julien CORJONf75ee802016-03-17 10:42:25 +0100725config BR2_PACKAGE_QT5QUICK1
726 bool "qt5quick1 package removed"
727 select BR2_LEGACY
728 help
729 The qt5quick1 package has been removed, since it was removed
730 from upstream starting from Qt 5.6.
731
Gustavo Zacarias21b25d22016-03-11 11:32:24 -0300732config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -0500733 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -0300734 help
735 The uboot custom patch directory option has been removed. Use
736 the improved BR2_TARGET_UBOOT_PATCH option instead.
737
Danomi Manchegof61583f2016-12-19 22:10:12 -0500738config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
739 bool
740 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
741 select BR2_LEGACY
742
743# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
744# boot/uboot/Config.in
745
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -0300746config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
747 bool "xf86-input-void removed"
748 select BR2_LEGACY
749 help
750 The xf86-input-void package has been removed, there's no need
751 for it in any modern (post-2007) xorg server.
752
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300753config BR2_KERNEL_HEADERS_3_17
754 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300755 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300756 select BR2_LEGACY
757 help
758 Version 3.17.x of the Linux kernel headers have been deprecated
759 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300760 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300761 automatically selected in your configuration.
762
Gustavo Zacariasffc324e2016-03-11 11:32:21 -0300763config BR2_GDB_VERSION_7_7
764 bool "gdb 7.7 has been removed"
765 select BR2_LEGACY
766 help
767 The 7.7 version of gdb has been removed. Use a newer version
768 instead.
769
Gustavo Zacarias75945dd2016-03-11 11:32:20 -0300770config BR2_PACKAGE_FOOMATIC_FILTERS
771 bool "foomatic-filters"
772 select BR2_LEGACY
773 help
774 The foomatic-filters package was removed.
775
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -0300776config BR2_PACKAGE_SAMBA
777 bool "samba"
778 select BR2_LEGACY
779 help
780 The samba package was removed in favour of samba4 since the
781 3.x series isn't supported by upstream any longer.
782
Bernd Kuhls6922b412016-02-20 23:09:11 +0100783config BR2_PACKAGE_KODI_WAVPACK
784 bool "wavpack"
785 select BR2_LEGACY
786 help
787 wavpack support was removed in favour of ffmpeg:
788 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
789
Bernd Kuhls75ce17d2016-02-20 23:09:07 +0100790config BR2_PACKAGE_KODI_RSXS
791 bool "rsxs support in Kodi was moved to an addon"
792 select BR2_LEGACY
793 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
794 help
795 rsxs support in Kodi was moved to an addon
796
Bernd Kuhls56b80ec2016-02-20 23:09:06 +0100797config BR2_PACKAGE_KODI_GOOM
798 bool "Goom support in Kodi was moved to an addon"
799 select BR2_LEGACY
800 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
801 help
802 Goom support in Kodi was moved to an addon
803
Gabe Evanse5a073a2016-02-25 21:55:11 +0000804config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
805 bool "systemd all extras option has been removed"
806 select BR2_LEGACY
807 select BR2_PACKAGE_XZ
808 select BR2_PACKAGE_LIBGCRYPT
809 help
810 The systemd option to enable "all extras" has been
811 removed. To get the same features, the libgcrypt and xz
812 package should now be enabled.
813
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -0300814config BR2_GCC_VERSION_4_5_X
815 bool "gcc 4.5.x has been removed"
816 select BR2_LEGACY
817 help
818 The 4.5.x version of gcc has been removed. Use a newer
819 version instead.
820
Bernd Kuhls007c2ce2016-02-08 20:56:41 +0100821config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -0500822 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +0100823 select BR2_PACKAGE_NCURSES
824 select BR2_PACKAGE_READLINE
825 select BR2_LEGACY
826 help
827 This option was removed in favour of the sqlite package
828 deciding itself depending on the enabled packages whether
829 command-line editing should be enabled, it also also takes
830 libedit into account.
831
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100832###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +0100833comment "Legacy options removed in 2016.02"
834
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +0100835config BR2_PACKAGE_DOVECOT_BZIP2
836 bool "bzip2 support option has been removed"
837 select BR2_LEGACY
838 select BR2_PACKAGE_BZIP2
839 help
840 Bzip2 support is built if the bzip2 package is selected.
841
842config BR2_PACKAGE_DOVECOT_ZLIB
843 bool "zlib support option has been removed"
844 select BR2_LEGACY
845 select BR2_PACKAGE_ZLIB
846 help
847 Zlib support is built if the zlib package is selected.
848
James Knightead1df42016-02-12 11:40:05 -0500849config BR2_PACKAGE_E2FSPROGS_FINDFS
850 bool "e2fsprogs findfs option has been removed"
851 select BR2_LEGACY
852 help
853 This option attempted to enable findfs capabilities from
854 e2fsprogs but has not worked since July 2015 (due to
855 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +0100856 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -0500857
Romain Naourb1063a02016-02-07 17:56:56 +0100858config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
859 bool "openpowerlink debug option has been removed"
860 select BR2_LEGACY
861 help
862 This option depends on BR2_ENABLE_DEBUG which should not be used
863 by packages anymore.
864
865config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
866 bool "openpowerlink package has been updated"
867 select BR2_LEGACY
868 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
869 help
870 openpowerlink kernel modules are built if the
871 kernel stack library is selected.
872
873config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
874 bool "openpowerlink package has been updated"
875 select BR2_LEGACY
876 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
877 help
878 The user space support has been split in two part:
879 - a monolitic user space library
880 - a user spae deamon driver
881
Yann E. MORINe3e05832016-02-06 00:06:17 +0100882config BR2_LINUX_KERNEL_SAME_AS_HEADERS
883 bool "using the linux headers version for the kernel has been removed"
884 select BR2_LEGACY
885 help
886 The option to use the version of the kernel headers for the
887 kernel to build has been removed.
888
889 There is now the converse, better-suited and more versatile
890 option to use the kernel version for the linux headers.
891
Olivier Schonkend37ce8e2016-01-21 00:17:43 +0200892config BR2_PACKAGE_CUPS_PDFTOPS
893 bool "Pdftops support has been removed from Cups"
894 select BR2_LEGACY
895 help
896 Pdftops support has been removed from the cups package
897 It is now part of the cups-filters package.
898
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300899config BR2_KERNEL_HEADERS_3_16
900 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300901 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300902 select BR2_LEGACY
903 help
904 Version 3.16.x of the Linux kernel headers have been deprecated
905 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300906 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300907 automatically selected in your configuration.
908
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +0100909config BR2_PACKAGE_PYTHON_PYXML
910 bool "python-pyxml package has been removed"
911 select BR2_LEGACY
912 help
913 PyXML is obsolete and its functionality is covered either via
914 native Python XML support or python-lxml package.
915
Steven Noonand29c7192015-12-27 12:07:31 +0100916# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
917config BR2_ENABLE_SSP
918 bool "Stack Smashing protection now has different levels"
919 help
920 The protection offered by SSP can now be selected from different
921 protection levels. Be sure to review the SSP level in the build
922 options menu.
923
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300924config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -0300925 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300926 select BR2_LEGACY
927 help
928 The cle266 directfb driver support has been removed.
929 It doesn't build in the latest version and it's unlikely
930 anyone has any use for it.
931
932config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -0300933 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300934 select BR2_LEGACY
935 help
936 The unichrome directfb driver support has been removed.
937 It doesn't build in the latest version and it's unlikely
938 anyone has any use for it.
939
Romain Naour820e1682015-12-19 17:39:14 +0100940config BR2_PACKAGE_LIBELEMENTARY
941 bool "libelementary has been renamed to elementary"
942 select BR2_LEGACY
943 select BR2_PACKAGE_ELEMENTARY
944 help
945 The libelementary package has been renamed to match the upstream
946 name.
947
Romain Naoura9d1f5f2015-12-15 23:40:38 +0100948config BR2_PACKAGE_LIBEINA
949 bool "libeina package has been removed"
950 select BR2_LEGACY
951 select BR2_PACKAGE_EFL
952 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100953 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +0100954
Romain Naour49700f02015-12-15 23:40:37 +0100955config BR2_PACKAGE_LIBEET
956 bool "libeet package has been removed"
957 select BR2_LEGACY
958 select BR2_PACKAGE_EFL
959 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100960 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +0100961
Romain Naoure5989d62015-12-15 23:40:36 +0100962config BR2_PACKAGE_LIBEVAS
963 bool "libevas package has been removed"
964 select BR2_LEGACY
965 select BR2_PACKAGE_EFL
966 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100967 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +0100968
Romain Naour1fe1b602015-12-15 23:40:35 +0100969config BR2_PACKAGE_LIBECORE
970 bool "libecore package has been removed"
971 select BR2_LEGACY
972 select BR2_PACKAGE_EFL
973 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100974 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +0100975
Romain Naour8c05c382015-12-15 23:40:34 +0100976config BR2_PACKAGE_LIBEDBUS
977 bool "libedbus package has been removed"
978 select BR2_LEGACY
979 select BR2_PACKAGE_EFL
980 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100981 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +0100982
Romain Naourd2b042c2015-12-15 23:40:33 +0100983config BR2_PACKAGE_LIBEFREET
984 bool "libefreet package has been removed"
985 select BR2_LEGACY
986 select BR2_PACKAGE_EFL
987 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100988 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +0100989
Romain Naoure155c952015-12-15 23:40:32 +0100990config BR2_PACKAGE_LIBEIO
991 bool "libeio package has been removed"
992 select BR2_LEGACY
993 select BR2_PACKAGE_EFL
994 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100995 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +0100996
Romain Naourb728fb72015-12-15 23:40:31 +0100997config BR2_PACKAGE_LIBEMBRYO
998 bool "libembryo package has been removed"
999 select BR2_LEGACY
1000 select BR2_PACKAGE_EFL
1001 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001002 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01001003
Romain Naour4c93c102015-12-15 23:40:30 +01001004config BR2_PACKAGE_LIBEDJE
1005 bool "libedje package has been removed"
1006 select BR2_LEGACY
1007 select BR2_PACKAGE_EFL
1008 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001009 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01001010
Romain Naour905dba12015-12-15 23:40:29 +01001011config BR2_PACKAGE_LIBETHUMB
1012 bool "libethumb package has been removed"
1013 select BR2_LEGACY
1014 select BR2_PACKAGE_EFL
1015 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001016 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01001017
Luca Ceresolif0c94702015-11-27 18:38:00 +01001018config BR2_PACKAGE_INFOZIP
1019 bool "infozip option has been renamed to zip"
1020 select BR2_LEGACY
1021 select BR2_PACKAGE_ZIP
1022 help
1023 Info-Zip's Zip package has been renamed from infozip to zip,
1024 to avoid ambiguities with Info-Zip's UnZip which has been added
1025 in the unzip package.
1026
Martin Barka2d16602015-12-23 12:16:04 +00001027config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00001028 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00001029 select BR2_LEGACY
1030 select BR2_PACKAGE_NODEJS
1031 help
Martin Bark75b70492016-01-30 14:51:00 +00001032 nodejs 0.10.x option has been removed. 0.10.x is now
1033 automatically chosen for ARMv5 architectures only and the latest
1034 nodejs for all other supported architectures. The correct nodejs
1035 version has been automatically selected in your configuration.
Martin Barka2d16602015-12-23 12:16:04 +00001036
Martin Barka314b872015-12-23 12:16:03 +00001037config BR2_BR2_PACKAGE_NODEJS_0_12_X
1038 bool "nodejs version 0.12.x has been removed"
1039 select BR2_LEGACY
1040 select BR2_PACKAGE_NODEJS
1041 help
1042 nodejs version 0.12.x has been removed. As an alternative,
1043 the latest nodejs version has been automatically selected in
1044 your configuration.
1045
Martin Bark90bf67c2015-12-23 12:16:02 +00001046config BR2_BR2_PACKAGE_NODEJS_4_X
1047 bool "nodejs version 4.x has been removed"
1048 select BR2_LEGACY
1049 select BR2_PACKAGE_NODEJS
1050 help
1051 nodejs version 4.x has been removed. As an alternative,
1052 the latest nodejs version has been automatically selected in
1053 your configuration.
1054
Luca Ceresolif0c94702015-11-27 18:38:00 +01001055###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001056comment "Legacy options removed in 2015.11"
1057
Peter Seiderer301e8ff2015-10-15 21:42:43 +02001058config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
1059 bool "gst1-plugins-bad real plugin has been removed"
1060 select BR2_LEGACY
1061 help
1062 The real plugin from GStreamer 1 bad plugins has been
1063 removed.
1064
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02001065config BR2_PACKAGE_MEDIA_CTL
1066 bool "media-ctl package has been removed"
1067 select BR2_LEGACY
1068 select BR2_PACKAGE_LIBV4L
1069 select BR2_PACKAGE_LIBV4L_UTILS
1070 help
1071 media-ctl source and developement have been moved to
1072 v4l-utils since June 2014. For an up-to-date media-ctl
1073 version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
1074
Romain Naourf8031332015-10-03 18:35:05 +02001075config BR2_PACKAGE_SCHIFRA
1076 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001077 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02001078 help
1079 Schifra package has been maked broken since 2014.11 release and
1080 haven't been fixed since then.
1081
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02001082config BR2_PACKAGE_ZXING
1083 bool "zxing option has been renamed"
1084 select BR2_LEGACY
1085 select BR2_PACKAGE_ZXING_CPP
1086 help
1087 ZXing no longer provides the cpp bindings, it has been renamed to
1088 BR2_PACKAGE_ZXING_CPP which uses a new upstream.
1089
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001090# Since FreeRDP has new dependencies, protect this legacy to avoid the
1091# infamous "unmet direct dependencies" kconfig error.
1092config BR2_PACKAGE_FREERDP_CLIENT
1093 bool "freerdp client option renamed"
1094 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02001095 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001096 select BR2_PACKAGE_FREERDP_CLIENT_X11
1097
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03001098config BR2_PACKAGE_BLACKBOX
1099 bool "blackbox package has been removed"
1100 select BR2_LEGACY
1101 help
1102 Upstream is dead and the package has been deprecated for
1103 some time. There are other alternative maintained WMs.
1104
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001105config BR2_KERNEL_HEADERS_3_0
1106 bool "kernel headers version 3.0.x are no longer supported"
1107 select BR2_KERNEL_HEADERS_3_2
1108 select BR2_LEGACY
1109 help
1110 Version 3.0.x of the Linux kernel headers have been deprecated
1111 for more than four buildroot releases and are now removed.
1112 As an alternative, version 3.2.x of the headers have been
1113 automatically selected in your configuration.
1114
1115config BR2_KERNEL_HEADERS_3_11
1116 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001117 select BR2_KERNEL_HEADERS_3_10
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001118 select BR2_LEGACY
1119 help
1120 Version 3.11.x of the Linux kernel headers have been deprecated
1121 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001122 As an alternative, version 3.10.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001123 automatically selected in your configuration.
1124
1125config BR2_KERNEL_HEADERS_3_13
1126 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001127 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001128 select BR2_LEGACY
1129 help
1130 Version 3.13.x of the Linux kernel headers have been deprecated
1131 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001132 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001133 automatically selected in your configuration.
1134
1135config BR2_KERNEL_HEADERS_3_15
1136 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001137 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001138 select BR2_LEGACY
1139 help
1140 Version 3.15.x of the Linux kernel headers have been deprecated
1141 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001142 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001143 automatically selected in your configuration.
1144
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001145config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
1146 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001147 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001148 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1149 help
1150 The per-DirectFB example options have been removed. The
1151 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1152 examples.
1153
1154config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
1155 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001156 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001157 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1158 help
1159 The per-DirectFB example options have been removed. The
1160 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1161 examples.
1162
1163config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
1164 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001165 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001166 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1167 help
1168 The per-DirectFB example options have been removed. The
1169 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1170 examples.
1171
1172config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
1173 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001174 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001175 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1176 help
1177 The per-DirectFB example options have been removed. The
1178 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1179 examples.
1180
1181config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
1182 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001183 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001184 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1185 help
1186 The per-DirectFB example options have been removed. The
1187 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1188 examples.
1189
1190config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
1191 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001192 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001193 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1194 help
1195 The per-DirectFB example options have been removed. The
1196 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1197 examples.
1198
1199config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
1200 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001201 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001202 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1203 help
1204 The per-DirectFB example options have been removed. The
1205 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1206 examples.
1207
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001208config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
1209 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001210 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001211 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1212 help
1213 The per-DirectFB example options have been removed. The
1214 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1215 examples.
1216
1217config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
1218 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001219 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001220 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1221 help
1222 The per-DirectFB example options have been removed. The
1223 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1224 examples.
1225
1226config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
1227 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001228 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001229 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1230 help
1231 The per-DirectFB example options have been removed. The
1232 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1233 examples.
1234
1235config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
1236 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001237 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001238 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1239 help
1240 The per-DirectFB example options have been removed. The
1241 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1242 examples.
1243
1244config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
1245 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001246 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001247 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1248 help
1249 The per-DirectFB example options have been removed. The
1250 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1251 examples.
1252
1253config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
1254 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001255 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001256 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1257 help
1258 The per-DirectFB example options have been removed. The
1259 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1260 examples.
1261
1262config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
1263 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001264 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001265 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1266 help
1267 The per-DirectFB example options have been removed. The
1268 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1269 examples.
1270
1271config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
1272 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001273 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001274 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1275 help
1276 The per-DirectFB example options have been removed. The
1277 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1278 examples.
1279
1280config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
1281 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001282 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001283 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1284 help
1285 The per-DirectFB example options have been removed. The
1286 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1287 examples.
1288
1289config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
1290 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001291 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001292 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1293 help
1294 The per-DirectFB example options have been removed. The
1295 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1296 examples.
1297
1298config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
1299 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001300 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001301 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1302 help
1303 The per-DirectFB example options have been removed. The
1304 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1305 examples.
1306
1307config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
1308 bool "DirectFB example df_palette has been removed"
1309 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1310 help
1311 The per-DirectFB example options have been removed. The
1312 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1313 examples.
1314
1315config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
1316 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001317 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001318 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1319 help
1320 The per-DirectFB example options have been removed. The
1321 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1322 examples.
1323
1324config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
1325 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001326 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001327 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1328 help
1329 The per-DirectFB example options have been removed. The
1330 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1331 examples.
1332
1333config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
1334 bool "DirectFB example df_stress has been removed"
1335 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1336 help
1337 The per-DirectFB example options have been removed. The
1338 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1339 examples.
1340
1341config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
1342 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001343 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001344 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1345 help
1346 The per-DirectFB example options have been removed. The
1347 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1348 examples.
1349
1350config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
1351 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001352 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001353 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1354 help
1355 The per-DirectFB example options have been removed. The
1356 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1357 examples.
1358
1359config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1360 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001361 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001362 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1363 help
1364 The per-DirectFB example options have been removed. The
1365 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1366 examples.
1367
1368config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1369 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001370 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001371 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1372 help
1373 The per-DirectFB example options have been removed. The
1374 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1375 examples.
1376
Gary Bisson2b78fb22015-09-23 15:39:27 +02001377config BR2_PACKAGE_KOBS_NG
1378 bool "kobs-ng was replaced by imx-kobs"
1379 select BR2_LEGACY
1380 select BR2_PACKAGE_IMX_KOBS
1381 help
1382 The outdated kobs-ng has been replaced by the Freescale-
1383 maintained imx-kobs package.
1384
Thomas Petazzoni11573f52015-09-02 00:01:11 +02001385config BR2_PACKAGE_SAWMAN
1386 bool "sawman package removed"
1387 select BR2_LEGACY
1388 select BR2_PACKAGE_DIRECTFB_SAWMAN
1389 help
1390 This option has been removed because the sawman package no
1391 longer exists: it was merged inside DirectFB itself. This
1392 feature can now be enabled using the
1393 BR2_PACKAGE_DIRECTFB_SAWMAN option.
1394
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001395config BR2_PACKAGE_DIVINE
1396 bool "divine package removed"
1397 select BR2_LEGACY
1398 select BR2_PACKAGE_DIRECTFB_DIVINE
1399 help
1400 This option has been removed because the divine package no
1401 longer exists: it was merged inside DirectFB itself. This
1402 feature can now be enabled using the
1403 BR2_PACKAGE_DIRECTFB_DIVINE option.
1404
1405###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001406comment "Legacy options removed in 2015.08"
1407
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001408config BR2_PACKAGE_KODI_PVR_ADDONS
1409 bool "Kodi PVR addon was split"
1410 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02001411 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02001412 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02001413 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02001414 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02001415 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02001416 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02001417 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02001418 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02001419 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02001420 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02001421 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02001422 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02001423 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02001424 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02001425 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02001426 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001427 help
1428 Kodi PVR addon was split into seperate modules
1429
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001430config BR2_BINUTILS_VERSION_2_23_2
1431 bool "binutils 2.23 option renamed"
1432 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001433 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001434 Binutils 2.23.2 has been removed, using a newer version is
1435 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001436
1437config BR2_BINUTILS_VERSION_2_24
1438 bool "binutils 2.24 option renamed"
1439 select BR2_LEGACY
1440 select BR2_BINUTILS_VERSION_2_24_X
1441 help
1442 The binutils version option has been renamed to match the
1443 same patchlevel logic used by gcc. The new option is now
1444 BR2_BINUTILS_VERSION_2_24_X.
1445
1446config BR2_BINUTILS_VERSION_2_25
1447 bool "binutils 2.25 option renamed"
1448 select BR2_LEGACY
1449 select BR2_BINUTILS_VERSION_2_25_X
1450 help
1451 The binutils version option has been renamed to match the
1452 same patchlevel logic used by gcc. The new option is now
1453 BR2_BINUTILS_VERSION_2_25_X.
1454
Romain Naour1326e762015-07-14 19:35:14 +02001455config BR2_PACKAGE_PERF
1456 bool "perf option has been renamed"
1457 select BR2_LEGACY
1458 select BR2_LINUX_KERNEL_TOOL_PERF
1459 help
1460 The perf package has been moved as a Linux tools package,
1461 and the option to enable it is now
1462 BR2_LINUX_KERNEL_TOOL_PERF.
1463
Thomas Petazzoni2f845952015-07-11 14:52:53 +02001464config BR2_BINUTILS_VERSION_2_22
1465 bool "binutils 2.22 removed"
1466 select BR2_LEGACY
1467 help
1468 Binutils 2.22 has been removed, using a newer version is
1469 recommended.
1470
Gary Bisson4c0613e2015-05-26 10:19:37 +02001471config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1472 bool "gpu-viv-bin-mx6q"
1473 select BR2_LEGACY
1474 select BR2_PACKAGE_IMX_GPU_VIV
1475 help
1476 Vivante graphics libraries have been renamed to
1477 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1478 name.
1479
Matt Weber7742abe2015-06-02 08:28:35 -05001480config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
1481 depends on BR2_PACKAGE_PYTHON
1482 bool "libsemanage python bindings removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001483 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05001484 help
1485 This option has been removed, since the libsemanage Python
1486 bindings on the target were not useful.
1487
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001488config BR2_TARGET_UBOOT_NETWORK
1489 bool "U-Boot custom network settings removed"
1490 select BR2_LEGACY
1491 help
1492 U-Boot's custom network settings options have been removed.
1493
1494###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001495comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001496
Michał Leśniewskie3904a82015-05-19 20:26:30 +02001497config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1498 bool "jffs2 16kB erasesize NAND flash option renamed"
1499 select BR2_LEGACY
1500 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1501 help
1502 The JFFS2 NAND flash options now longer include the page
1503 size.
1504
1505config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1506 bool "jffs2 128kB erasesize NAND flash option renamed"
1507 select BR2_LEGACY
1508 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
1509 help
1510 The JFFS2 NAND flash options now longer include the page
1511 size.
1512
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02001513config BR2_PACKAGE_MONO_20
1514 bool "2.0/3.5 .Net Runtime"
1515 select BR2_LEGACY
1516 help
1517 This option no longer exists, all versions of the .Net
1518 runtime are now installed.
1519
1520config BR2_PACKAGE_MONO_40
1521 bool "4.0 .Net Runtime"
1522 select BR2_LEGACY
1523 help
1524 This option no longer exists, all versions of the .Net
1525 runtime are now installed.
1526
1527config BR2_PACKAGE_MONO_45
1528 bool "4.5 .Net Runtime"
1529 select BR2_LEGACY
1530 help
1531 This option no longer exists, all versions of the .Net
1532 runtime are now installed.
1533
Peter Korsgaardefd49e32015-04-27 22:29:05 +02001534config BR2_CIVETWEB_WITH_LUA
1535 bool "civetweb lua option renamed"
1536 select BR2_LEGACY
1537 select BR2_PACKAGE_CIVETWEB_WITH_LUA
1538 help
1539 civetweb's lua option has been renamed to
1540 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
1541 packages name options.
1542
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02001543config BR2_PACKAGE_TIFF_TIFF2PDF
1544 bool "tiff utility-specific option removed"
1545 select BR2_LEGACY
1546 select BR2_PACKAGE_TIFF_UTILITIES
1547 help
1548 utility-specific options have been removed in favour of
1549 the new option BR2_PACKAGE_TIFF_UTILITIES.
1550
1551config BR2_PACKAGE_TIFF_TIFFCP
1552 bool "tiff utility-specific option removed"
1553 select BR2_LEGACY
1554 select BR2_PACKAGE_TIFF_UTILITIES
1555 help
1556 utility-specific options have been removed in favour of
1557 the new option BR2_PACKAGE_TIFF_UTILITIES.
1558
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001559config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
1560 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001561 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001562 help
1563 This option has never worked, so it has been removed.
1564
Yann E. MORIN02917962015-03-24 19:54:15 +01001565config BR2_TARGET_GENERIC_PASSWD_DES
1566 bool "Encoding passwords with DES has been removed"
1567 select BR2_LEGACY
1568 help
1569 Paswords can now only be encoded with either of md5, sha256 or sha512.
1570 The default is md5, which is stronger that DES (but still pretty weak).
1571
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03001572config BR2_PACKAGE_GTK2_THEME_HICOLOR
1573 bool "hicolor (default theme) is a duplicate"
1574 select BR2_LEGACY
1575 select BR2_PACKAGE_HICOLOR_ICON_THEME
1576 help
1577 The option was just a duplicate of hicolor icon theme.
1578
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001579config BR2_PACKAGE_VALGRIND_PTRCHECK
1580 bool "valgrind's PTRCheck was renamed to SGCheck"
1581 select BR2_LEGACY
1582 select BR2_PACKAGE_VALGRIND_SGCHECK
1583 help
1584 PTRCheck was renamed to SGCheck in valgrind
1585
1586###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001587comment "Legacy options removed in 2015.02"
1588
Pedro Aguilar10900c02015-02-27 06:38:07 +02001589config BR2_PACKAGE_LIBGC
1590 bool "libgc package removed"
1591 select BR2_LEGACY
1592 select BR2_PACKAGE_BDWGC
1593 help
1594 libgc has been removed because we have the same package under a
1595 different name, bdwgc.
1596
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01001597config BR2_PACKAGE_WDCTL
1598 bool "util-linux' wdctl option has been renamed"
1599 select BR2_LEGACY
1600 select BR2_PACKAGE_UTIL_LINUX_WDCTL
1601 help
1602 util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
1603 to be aligned with how the other options are named.
1604
Danomi Manchegoe44edb82015-07-13 22:57:06 -04001605config BR2_PACKAGE_UTIL_LINUX_ARCH
1606 bool "util-linux' arch option has been removed"
1607 select BR2_LEGACY
1608 help
1609 util-linux' arch was dropped in util-linux 2.23, in favor of
1610 the coreutils version.
1611
1612config BR2_PACKAGE_UTIL_LINUX_DDATE
1613 bool "util-linux' ddate option has been removed"
1614 select BR2_LEGACY
1615 help
1616 util-linux' ddate was dropped in util-linux 2.23.
1617
Romain Naour3c476542015-01-18 20:53:08 +01001618config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
1619 bool "rpm's bzip2 payloads option has been removed"
1620 select BR2_LEGACY
1621 select BR2_PACKAGE_BZIP2
1622 help
1623 The bzip2 payloads option rely entirely on the dependant package bzip2.
1624 So, you need to select it to enable this feature.
1625
1626config BR2_PACKAGE_RPM_XZ_PAYLOADS
1627 bool "rpm's xz payloads option has been removed"
1628 select BR2_LEGACY
1629 select BR2_PACKAGE_XZ
1630 help
1631 The xz payloads option rely entirely on the dependant package xz.
1632 So, you need to select it to enable this feature.
1633
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03001634config BR2_PACKAGE_M4
1635 bool "m4 target package removed"
1636 select BR2_LEGACY
1637 help
1638 The m4 target package has been removed, it's been
1639 deprecated for some time now.
1640
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03001641config BR2_PACKAGE_FLEX_BINARY
1642 bool "flex binary in target option removed"
1643 select BR2_LEGACY
1644 help
1645 The flex binary in the target option has been removed.
1646 It's been deprecated for some time now and is essentially a
1647 development tool which isn't very useful in the target.
1648
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03001649config BR2_PACKAGE_BISON
1650 bool "bison target package removed"
1651 select BR2_LEGACY
1652 help
1653 The bison target package has been removed, it's been
1654 deprecated for some time now and is essentially a development
1655 tool which isn't very useful in the target.
1656
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03001657config BR2_PACKAGE_GOB2
1658 bool "gob2 target package removed"
1659 select BR2_LEGACY
1660 help
1661 The gob2 target package has been removed, it's been
1662 deprecated for some time now and was essentially useless
1663 without a target toolchain.
1664
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03001665config BR2_PACKAGE_DISTCC
1666 bool "distcc target package removed"
1667 select BR2_LEGACY
1668 help
1669 The distcc target package has been removed, it's been
1670 deprecated for some time now and was essentially useless
1671 without a target toolchain.
1672
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03001673config BR2_PACKAGE_HASERL_VERSION_0_8_X
1674 bool "haserl 0.8.x version removed"
1675 select BR2_LEGACY
1676 help
1677 The 0.8.x version option for haserl has been removed since it
1678 has been deprecated for some time now.
1679 You should be able to use the 0.9.x version without issues.
1680
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03001681config BR2_PACKAGE_STRONGSWAN_TOOLS
1682 bool "strongswan option has been removed"
1683 select BR2_LEGACY
1684 select BR2_PACKAGE_STRONGSWAN_PKI
1685 select BR2_PACKAGE_STRONGSWAN_SCEP
1686 help
1687 The tools option has been removed upstream and the different tools
1688 have been split between the pki and scep options, with others
1689 deprecated.
1690
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001691config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001692 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001693 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001694 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001695 According to the github project page:
1696 https://github.com/pipelka/xbmc-addon-xvdr
1697 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001698
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01001699config BR2_PACKAGE_XBMC_PVR_ADDONS
1700 bool "xbmc options have been renamed"
1701 select BR2_LEGACY
1702 select BR2_PACKAGE_KODI_PVR_ADDONS
1703 help
1704 The XBMC media center project was renamed to Kodi entertainment center
1705
Bernd Kuhls35784592014-12-23 18:46:27 +01001706config BR2_PACKAGE_XBMC
1707 bool "xbmc options have been renamed"
1708 select BR2_LEGACY
1709 select BR2_PACKAGE_KODI
1710 help
1711 The XBMC media center project was renamed to Kodi entertainment center
1712
1713config BR2_PACKAGE_XBMC_ALSA_LIB
1714 bool "xbmc options have been renamed"
1715 select BR2_LEGACY
1716 select BR2_PACKAGE_KODI_ALSA_LIB
1717 help
1718 The XBMC media center project was renamed to Kodi entertainment center
1719
1720config BR2_PACKAGE_XBMC_AVAHI
1721 bool "xbmc options have been renamed"
1722 select BR2_LEGACY
1723 select BR2_PACKAGE_KODI_AVAHI
1724 help
1725 The XBMC media center project was renamed to Kodi entertainment center
1726
1727config BR2_PACKAGE_XBMC_DBUS
1728 bool "xbmc options have been renamed"
1729 select BR2_LEGACY
1730 select BR2_PACKAGE_KODI_DBUS
1731 help
1732 The XBMC media center project was renamed to Kodi entertainment center
1733
1734config BR2_PACKAGE_XBMC_LIBBLURAY
1735 bool "xbmc options have been renamed"
1736 select BR2_LEGACY
1737 select BR2_PACKAGE_KODI_LIBBLURAY
1738 help
1739 The XBMC media center project was renamed to Kodi entertainment center
1740
1741config BR2_PACKAGE_XBMC_GOOM
1742 bool "xbmc options have been renamed"
1743 select BR2_LEGACY
1744 select BR2_PACKAGE_KODI_GOOM
1745 help
1746 The XBMC media center project was renamed to Kodi entertainment center
1747
1748config BR2_PACKAGE_XBMC_RSXS
1749 bool "xbmc options have been renamed"
1750 select BR2_LEGACY
1751 select BR2_PACKAGE_KODI_RSXS
1752 help
1753 The XBMC media center project was renamed to Kodi entertainment center
1754
1755config BR2_PACKAGE_XBMC_LIBCEC
1756 bool "xbmc options have been renamed"
1757 select BR2_LEGACY
1758 select BR2_PACKAGE_KODI_LIBCEC
1759 help
1760 The XBMC media center project was renamed to Kodi entertainment center
1761
1762config BR2_PACKAGE_XBMC_LIBMICROHTTPD
1763 bool "xbmc options have been renamed"
1764 select BR2_LEGACY
1765 select BR2_PACKAGE_KODI_LIBMICROHTTPD
1766 help
1767 The XBMC media center project was renamed to Kodi entertainment center
1768
1769config BR2_PACKAGE_XBMC_LIBNFS
1770 bool "xbmc options have been renamed"
1771 select BR2_LEGACY
1772 select BR2_PACKAGE_KODI_LIBNFS
1773 help
1774 The XBMC media center project was renamed to Kodi entertainment center
1775
1776config BR2_PACKAGE_XBMC_RTMPDUMP
1777 bool "xbmc options have been renamed"
1778 select BR2_LEGACY
1779 select BR2_PACKAGE_KODI_RTMPDUMP
1780 help
1781 The XBMC media center project was renamed to Kodi entertainment center
1782
1783config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
1784 bool "xbmc options have been renamed"
1785 select BR2_LEGACY
1786 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
1787 help
1788 The XBMC media center project was renamed to Kodi entertainment center
1789
1790config BR2_PACKAGE_XBMC_LIBSMBCLIENT
1791 bool "xbmc options have been renamed"
1792 select BR2_LEGACY
1793 select BR2_PACKAGE_KODI_LIBSMBCLIENT
1794 help
1795 The XBMC media center project was renamed to Kodi entertainment center
1796
1797config BR2_PACKAGE_XBMC_LIBTHEORA
1798 bool "xbmc options have been renamed"
1799 select BR2_LEGACY
1800 select BR2_PACKAGE_KODI_LIBTHEORA
1801 help
1802 The XBMC media center project was renamed to Kodi entertainment center
1803
1804config BR2_PACKAGE_XBMC_LIBUSB
1805 bool "xbmc options have been renamed"
1806 select BR2_LEGACY
1807 select BR2_PACKAGE_KODI_LIBUSB
1808 help
1809 The XBMC media center project was renamed to Kodi entertainment center
1810
1811config BR2_PACKAGE_XBMC_LIBVA
1812 bool "xbmc options have been renamed"
1813 select BR2_LEGACY
1814 select BR2_PACKAGE_KODI_LIBVA
1815 help
1816 The XBMC media center project was renamed to Kodi entertainment center
1817
1818config BR2_PACKAGE_XBMC_WAVPACK
1819 bool "xbmc options have been renamed"
1820 select BR2_LEGACY
1821 select BR2_PACKAGE_KODI_WAVPACK
1822 help
1823 The XBMC media center project was renamed to Kodi entertainment center
1824
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001825config BR2_PREFER_STATIC_LIB
1826 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01001827 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001828 help
1829 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
1830 highlights the fact that the option no longer "prefers"
1831 static libraries, but "enforces" static libraries (i.e
1832 shared libraries are completely unused).
1833
Samuel Martina44b1c12014-12-14 17:24:24 +01001834 Take care of updating the type of libraries you want under the
1835 "Build options" menu.
1836
Bernd Kuhls35784592014-12-23 18:46:27 +01001837###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02001838comment "Legacy options removed in 2014.11"
1839
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001840config BR2_x86_generic
1841 bool "x86 generic variant has been removed"
1842 select BR2_LEGACY
1843 help
1844 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02001845 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001846
Andreas Larsson40e18f22014-10-30 09:29:36 +01001847config BR2_GCC_VERSION_4_4_X
1848 bool "gcc 4.4.x has been removed"
1849 select BR2_LEGACY
1850 help
1851 The 4.4.x version of gcc has been removed. Use a newer
1852 version instead.
1853
Andreas Larsson43b78e72014-10-30 09:29:35 +01001854config BR2_sparc_sparchfleon
1855 bool "sparchfleon CPU has been removed"
1856 select BR2_LEGACY
1857 help
1858 The sparchfleon CPU was only supported in a patched gcc 4.4
1859 version. Its support has been removed in favor of the leon3
1860 CPU starting from gcc 4.8.x.
1861
1862config BR2_sparc_sparchfleonv8
1863 bool "sparchfleonv8 CPU has been removed"
1864 select BR2_LEGACY
1865 help
1866 The sparchfleonv8 CPU was only supported in a patched gcc
1867 4.4 version. Its support has been removed in favor of the
1868 leon3 CPU starting from gcc 4.8.x.
1869
1870config BR2_sparc_sparcsfleon
1871 bool "sparcsfleon CPU has been removed"
1872 select BR2_LEGACY
1873 help
1874 The sparcsfleon CPU was only supported in a patched gcc 4.4
1875 version. Its support has been removed in favor of the leon3
1876 CPU starting from gcc 4.8.x.
1877
1878config BR2_sparc_sparcsfleonv8
1879 bool "sparcsfleonv8 CPU has been removed"
1880 select BR2_LEGACY
1881 help
1882 The sparcsfleonv8 CPU was only supported in a patched gcc
1883 4.4 version. Its support has been removed in favor of the
1884 leon3 CPU starting from gcc 4.8.x.
1885
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02001886config BR2_PACKAGE_XLIB_LIBPCIACCESS
1887 bool "xlib-libpciaccess option has been renamed"
1888 depends on BR2_PACKAGE_XORG7
1889 select BR2_LEGACY
1890 select BR2_PACKAGE_LIBPCIACCESS
1891 help
1892 libpciaccess neither depends on X11 nor Xlib. Thus the
1893 package has been renamed BR2_PACKAGE_LIBPCIACCESS
1894
Yann E. MORINb581bba2014-09-21 20:38:13 +02001895config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
1896 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001897 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02001898 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
1899 help
1900 The Xceive xc5000 option now also handles older firmwares from
1901 Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
1902 from Cresta, who bought Xceive.
1903
Yann E. MORINdac546e2014-09-21 20:38:12 +02001904config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1905 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001906 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02001907 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1908 help
1909 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1910 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1911 to better account for the fact that a T5 variant exists.
1912
Yann E. MORIN120136e2014-09-21 20:38:09 +02001913config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
1914 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001915 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02001916 help
1917 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
1918 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
1919 select it in:
1920 Target packages -> Hardware handling ->
1921 Firmware -> linux-firmware -> WiFi firmware ->
1922 iwlwifi 3160/726x revision to use (revision 7)
1923
1924config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
1925 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001926 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02001927 help
1928 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
1929 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
1930 select it in:
1931 Target packages -> Hardware handling ->
1932 Firmware -> linux-firmware -> WiFi firmware ->
1933 iwlwifi 3160/726x revision to use (revision 8)
1934
1935###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001936comment "Legacy options removed in 2014.08"
1937
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02001938config BR2_PACKAGE_LIBELF
1939 bool "libelf has been removed"
1940 select BR2_PACKAGE_ELFUTILS
1941 select BR2_LEGACY
1942 help
1943 The libelf package provided an old version of the libelf library
1944 and is deprecated. The libelf library is now provided by the
1945 elfutils package.
1946
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001947config BR2_KERNEL_HEADERS_3_8
1948 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001949 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001950 select BR2_LEGACY
1951 help
1952 Version 3.8.x of the Linux kernel headers have been deprecated
1953 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001954 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001955 automatically selected in your configuration.
1956
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02001957config BR2_PACKAGE_GETTEXT_TOOLS
1958 bool "support for gettext-tools on target has been removed"
1959 select BR2_LEGACY
1960 help
1961 The option to install the gettext utilities on the target
1962 has been removed. This is not necessary as Buildroot is not
1963 designed to provide a full development environment on the
1964 target. gettext tools should be used on the build machine
1965 instead.
1966
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001967config BR2_PACKAGE_PROCPS
1968 bool "procps has been replaced by procps-ng"
1969 select BR2_PACKAGE_PROCPS_NG
1970 select BR2_LEGACY
1971 help
1972 The procps package has been replaced by the equivalent procps-ng.
1973
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02001974config BR2_BINUTILS_VERSION_2_20_1
1975 bool "binutils 2.20.1 has been removed"
1976 select BR2_LEGACY
1977 help
1978 The 2.20.1 version of binutils has been removed. Use a newer
1979 version instead.
1980
1981config BR2_BINUTILS_VERSION_2_21
1982 bool "binutils 2.21 has been removed"
1983 select BR2_LEGACY
1984 help
1985 The 2.21 version of binutils has been removed. Use a newer
1986 version instead.
1987
1988config BR2_BINUTILS_VERSION_2_23_1
1989 bool "binutils 2.23.1 has been removed"
1990 select BR2_LEGACY
1991 help
1992 The 2.23.1 version of binutils has been removed. Use a newer
1993 version instead.
1994
Thomas Petazzoni506b9642014-07-01 20:03:03 +02001995config BR2_UCLIBC_VERSION_0_9_32
1996 bool "uclibc 0.9.32 has been removed"
1997 select BR2_LEGACY
1998 help
1999 The 0.9.32 version of uClibc has been removed. Use a newer
2000 version instead.
2001
Thomas Petazzonid10e0802014-07-01 20:03:06 +02002002config BR2_GCC_VERSION_4_3_X
2003 bool "gcc 4.3.x has been removed"
2004 select BR2_LEGACY
2005 help
2006 The 4.3.x version of gcc has been removed. Use a newer
2007 version instead.
2008
2009config BR2_GCC_VERSION_4_6_X
2010 bool "gcc 4.6.x has been removed"
2011 select BR2_LEGACY
2012 help
2013 The 4.6.x version of gcc has been removed. Use a newer
2014 version instead.
2015
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002016config BR2_GDB_VERSION_7_4
2017 bool "gdb 7.4 has been removed"
2018 select BR2_LEGACY
2019 help
2020 The 7.4 version of gdb has been removed. Use a newer version
2021 instead.
2022
2023config BR2_GDB_VERSION_7_5
2024 bool "gdb 7.5 has been removed"
2025 select BR2_LEGACY
2026 help
2027 The 7.5 version of gdb has been removed. Use a newer version
2028 instead.
2029
Thomas Petazzonib18dca02014-07-01 20:03:09 +02002030config BR2_BUSYBOX_VERSION_1_19_X
2031 bool "busybox version selection has been removed"
2032 select BR2_LEGACY
2033 help
2034 The possibility of selecting the Busybox version has been
2035 removed. Use the latest version provided by the Busybox
2036 package instead.
2037
2038config BR2_BUSYBOX_VERSION_1_20_X
2039 bool "busybox version selection has been removed"
2040 select BR2_LEGACY
2041 help
2042 The possibility of selecting the Busybox version has been
2043 removed. Use the latest version provided by the Busybox
2044 package instead.
2045
2046config BR2_BUSYBOX_VERSION_1_21_X
2047 bool "busybox version selection has been removed"
2048 select BR2_LEGACY
2049 help
2050 The possibility of selecting the Busybox version has been
2051 removed. Use the latest version provided by the Busybox
2052 package instead.
2053
Ezequiel García07ac0452014-07-05 18:07:40 -03002054config BR2_PACKAGE_LIBV4L_DECODE_TM6000
2055 bool "decode_tm6000"
2056 select BR2_PACKAGE_LIBV4L_UTILS
2057 select BR2_LEGACY
2058 help
2059 This libv4l option has been deprecated and replaced by a single
2060 option to build all the libv4l utilities.
2061
2062config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
2063 bool "ir-keytable"
2064 select BR2_PACKAGE_LIBV4L_UTILS
2065 select BR2_LEGACY
2066 help
2067 This libv4l option has been deprecated and replaced by a single
2068 option to build all the libv4l utilities.
2069
2070config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
2071 bool "v4l2-compliance"
2072 select BR2_PACKAGE_LIBV4L_UTILS
2073 select BR2_LEGACY
2074 help
2075 This libv4l option has been deprecated and replaced by a single
2076 option to build all the libv4l utilities.
2077
2078config BR2_PACKAGE_LIBV4L_V4L2_CTL
2079 bool "v4l2-ctl"
2080 select BR2_PACKAGE_LIBV4L_UTILS
2081 select BR2_LEGACY
2082 help
2083 This libv4l option has been deprecated and replaced by a single
2084 option to build all the libv4l utilities.
2085
2086config BR2_PACKAGE_LIBV4L_V4L2_DBG
2087 bool "v4l2-dbg"
2088 select BR2_PACKAGE_LIBV4L_UTILS
2089 select BR2_LEGACY
2090 help
2091 This libv4l option has been deprecated and replaced by a single
2092 option to build all the libv4l utilities.
2093
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002094###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002095comment "Legacy options removed in 2014.05"
2096
Peter Seiderer4990a382014-04-23 00:12:23 +02002097config BR2_PACKAGE_EVTEST_CAPTURE
2098 bool "evtest-capture support removed (dropped since evtest 1.31)"
2099 select BR2_LEGACY
2100 help
2101 Support for evtest-capture has been removed (dropped from
2102 evtest package since version 1.31), use evemu package
2103 instead.
2104
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002105config BR2_KERNEL_HEADERS_3_6
2106 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002107 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002108 select BR2_LEGACY
2109 help
2110 Version 3.6.x of the Linux kernel headers have been deprecated
2111 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002112 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002113 automatically selected in your configuration.
2114
2115config BR2_KERNEL_HEADERS_3_7
2116 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002117 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002118 select BR2_LEGACY
2119 help
2120 Version 3.7.x of the Linux kernel headers have been deprecated
2121 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002122 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002123 automatically selected in your configuration.
2124
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02002125config BR2_PACKAGE_VALA
2126 bool "vala target package has been removed"
2127 select BR2_LEGACY
2128 help
2129 The 'vala' target package has been removed since it has been
2130 deprecated for more than four buildroot releases.
2131 Note: the host vala package still exists.
2132
Yann E. MORINd6a37912014-04-07 21:58:03 +02002133config BR2_TARGET_TZ_ZONELIST
2134 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
2135
2136config BR2_PACKAGE_TZDATA_ZONELIST
2137 string "tzdata: the timezone list option has been renamed"
2138 help
2139 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
2140 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
2141 menu. You'll need to select BR2_TARGET_TZ_INFO.
2142
2143config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
2144 bool
2145 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
2146 select BR2_LEGACY
2147
Yann E. MORINc97aeb72014-04-05 17:21:43 +02002148config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
2149 bool "Lua command-line editing none has been renamed"
2150 select BR2_LEGACY
2151 help
2152 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
2153 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
2154 it in the corresponding choice.
2155
2156config BR2_PACKAGE_LUA_INTERPRETER_READLINE
2157 bool "Lua command-line editing using readline has been renamed"
2158 select BR2_LEGACY
2159 help
2160 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
2161 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
2162 it in the corresponding choice.
2163
2164config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
2165 bool "Lua command-line editing using linenoise has been renamed"
2166 select BR2_LEGACY
2167 help
2168 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
2169 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
2170 it in the corresponding choice.
2171
Yann E. MORIN365ae612014-03-28 01:00:24 +01002172config BR2_PACKAGE_DVB_APPS_UTILS
2173 bool "dvb-apps utilities now built by default"
2174 select BR2_LEGACY
2175 help
2176 The dvb-apps utilities are now always built when the dvb-apps
2177 package is selected.
2178
Yann E. MORIN971e3312014-03-01 15:52:56 +01002179config BR2_KERNEL_HEADERS_SNAP
2180 bool "Local Linux snapshot support removed"
2181 select BR2_LEGACY
2182 help
2183 Support for using a custom snapshot to install the Linux
2184 kernel headers has been removed.
2185
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002186config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
2187 bool "/dev management by udev removed"
2188 select BR2_LEGACY
2189 help
2190 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002191 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002192
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002193 Therefore, if you are not using 'systemd' as init system, you
2194 must choose 'Dynamic using eudev' in the '/dev management'
2195 menu to get the same behaviour as in your old configuration.
2196
2197 If you are using 'systemd', its internal implementation of
2198 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002199
2200 You must also check the packages depending on 'udev' are still
2201 selected.
2202
2203config BR2_PACKAGE_UDEV
2204 bool "udev is now a virtual package"
2205 select BR2_LEGACY
2206 select BR2_PACKAGE_HAS_UDEV
2207 help
2208 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002209 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002210
2211 Your old configuration refers to packages depending on 'udev',
2212 either for build or at runtime.
2213
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002214 Check that a 'udev' provider is selected. If you are not using
2215 'systemd' as init system, 'eudev' should be selected, which is
2216 the case if '/dev management' is set to 'Dynamic using eudev'.
2217
2218 If you are using 'systemd', its internal implementation of 'udev'
2219 is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002220
2221config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002222 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002223 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002224 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
2225 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002226 help
2227 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002228 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002229
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002230 If you are not using 'systemd' as init system, udev rules
2231 generation will be handled by 'eudev'. Check that
2232 '/dev management' is set to 'Dynamic using eudev' to get
2233 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002234
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002235 If you are using 'systemd', it internal implementation of 'udev'
2236 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002237
2238config BR2_PACKAGE_UDEV_ALL_EXTRAS
2239 bool "udev extras removed"
2240 select BR2_LEGACY
2241 help
2242 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002243 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002244
2245 The option to enable the extra features of 'udev' (gudev, ...)
2246 has been removed. These features are automatically enabled in
2247 the 'udev' providers if the dependencies are selected. For
2248 example, selecting 'libglib2' will trigger the build of gudev.
2249
Bernd Kuhls5562be12014-03-01 16:41:10 +01002250config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
2251 bool "xlib-libpthread-stubs option has been renamed"
2252 depends on BR2_PACKAGE_XORG7
2253 select BR2_LEGACY
2254 select BR2_PACKAGE_LIBPTHREAD_STUBS
2255 help
2256 The pthread stubs neither depend on X11 nor Xlib. Thus the
2257 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
2258
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002259###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01002260comment "Legacy options removed in 2014.02"
2261
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002262config BR2_sh2
2263 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002264 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002265 help
2266 Due to an inexistent user base and generally poor Linux
2267 support, the support for the SH2 architecture was removed.
2268
2269config BR2_sh3
2270 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002271 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002272 help
2273 Due to an inexistent user base and generally poor Linux
2274 support, the support for the SH3 architecture was removed.
2275
2276config BR2_sh3eb
2277 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002278 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002279 help
2280 Due to an inexistent user base and generally poor Linux
2281 support, the support for the SH3eb architecture was removed.
2282
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002283config BR2_KERNEL_HEADERS_3_1
2284 bool "kernel headers version 3.1.x are no longer supported"
2285 select BR2_KERNEL_HEADERS_3_2
2286 select BR2_LEGACY
2287 help
2288 Version 3.1.x of the Linux kernel headers have been deprecated
2289 for more than four buildroot releases and are now removed.
2290 As an alternative, version 3.2.x of the headers have been
2291 automatically selected in your configuration.
2292
2293config BR2_KERNEL_HEADERS_3_3
2294 bool "kernel headers version 3.3.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002295 select BR2_KERNEL_HEADERS_3_2
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002296 select BR2_LEGACY
2297 help
2298 Version 3.3.x of the Linux kernel headers have been deprecated
2299 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002300 As an alternative, version 3.2.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002301 automatically selected in your configuration.
2302
2303config BR2_KERNEL_HEADERS_3_5
2304 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002305 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002306 select BR2_LEGACY
2307 help
2308 Version 3.5.x of the Linux kernel headers have been deprecated
2309 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002310 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002311 automatically selected in your configuration.
2312
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002313config BR2_GDB_VERSION_7_2
2314 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002315 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002316 select BR2_LEGACY
2317 help
2318 Version 7.2.x of gdb has been deprecated for more than four
2319 buildroot releases and is now removed. As an alternative, gdb
2320 7.5.x has been automatically selected in your configuration.
2321
2322config BR2_GDB_VERSION_7_3
2323 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002324 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002325 select BR2_LEGACY
2326 help
2327 Version 7.3.x of gdb has been deprecated for more than four
2328 buildroot releases and is now removed. As an alternative, gdb
2329 7.5.x has been automatically selected in your configuration.
2330
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01002331config BR2_PACKAGE_CCACHE
2332 bool "ccache target package has been removed"
2333 select BR2_LEGACY
2334 help
2335 The 'ccache' target package has been removed since it has been
2336 deprecated for more than four buildroot releases.
2337 Note: using ccache for speeding up builds is still supported.
2338
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01002339config BR2_HAVE_DOCUMENTATION
2340 bool "support for documentation on target has been removed"
2341 select BR2_LEGACY
2342 help
2343 Support for documentation on target has been removed since it has
2344 been deprecated for more than four buildroot releases.
2345
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01002346config BR2_PACKAGE_AUTOMAKE
2347 bool "automake target package has been removed"
2348 select BR2_LEGACY
2349 help
2350 The 'automake' target package has been removed since it has been
2351 deprecated for more than four buildroot releases.
2352 Note: the host automake still exists.
2353
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01002354config BR2_PACKAGE_AUTOCONF
2355 bool "autoconf target package has been removed"
2356 select BR2_LEGACY
2357 help
2358 The 'autoconf' target package has been removed since it has been
2359 deprecated for more than four buildroot releases.
2360 Note: the host autoconf still exists.
2361
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01002362config BR2_PACKAGE_XSTROKE
2363 bool "xstroke has been removed"
2364 select BR2_LEGACY
2365 help
2366 The 'xstroke' package has been removed since it has been
2367 deprecated for more than four buildroot releases.
2368
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01002369config BR2_PACKAGE_LZMA
2370 bool "lzma target package has been removed"
2371 select BR2_LEGACY
2372 help
2373 The 'lzma' target package has been removed since it has been
2374 deprecated for more than four buildroot releases.
2375 Note: generating lzma-compressed rootfs images is still supported.
2376
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01002377config BR2_PACKAGE_TTCP
2378 bool "ttcp has been removed"
2379 select BR2_LEGACY
2380 help
2381 The 'ttcp' package has been removed since it has been
2382 deprecated for more than four buildroot releases.
2383
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002384config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002385 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002386 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002387 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002388 help
2389 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002390 to 'libllcp'. We have added a new package for 'libllcp' and bumped
2391 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002392
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00002393config BR2_PACKAGE_MYSQL_CLIENT
2394 bool "MySQL client renamed to MySQL"
2395 select BR2_LEGACY
2396 select BR2_PACKAGE_MYSQL
2397 help
2398 The option has been renamed BR2_PACKAGE_MYSQL
2399
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01002400config BR2_PACKAGE_SQUASHFS3
2401 bool "squashfs3 has been removed"
2402 select BR2_LEGACY
2403 select BR2_PACKAGE_SQUASHFS
2404 help
2405 The 'squashfs3' package has been removed since it has been
2406 deprecated for more than four buildroot releases. Package
2407 'squashfs' (4) has been selected automatically as replacement.
2408
2409config BR2_TARGET_ROOTFS_SQUASHFS3
2410 bool "squashfs3 rootfs support has been removed"
2411 select BR2_LEGACY
2412 help
2413 Together with the removal of the squashfs3 package, support
2414 for squashfs3 root filesystems has been removed too. Squashfs
2415 root filesystems will automatically use squashfs4 now.
2416
Arnaud Aujon560fe852013-12-15 20:23:12 +01002417config BR2_PACKAGE_NETKITBASE
2418 bool "netkitbase has been removed"
2419 select BR2_LEGACY
2420 help
2421 The 'netkitbase' package has been removed since it has been
2422 deprecated since 2012.11. This package provided 'inetd'
2423 which is replaced by 'xinet' and 'ping' which is replaced by
2424 'busybox' or 'fping'.
2425
2426config BR2_PACKAGE_NETKITTELNET
2427 bool "netkittelnet has been removed"
2428 select BR2_LEGACY
2429 help
2430 The 'netkittelnet' package has been removed since it has
2431 been deprecated since 2012.11. 'busybox' provides a telnet
2432 client and should be used instead.
2433
Francois Perrad63058f82014-01-11 16:42:09 +01002434config BR2_PACKAGE_LUASQL
2435 bool "luasql has been replaced by luasql-sqlite3"
2436 select BR2_PACKAGE_LUASQL_SQLITE3
2437 select BR2_LEGACY
2438 help
2439 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2440
Francois Perrada6c53472014-01-11 16:42:08 +01002441config BR2_PACKAGE_LUACJSON
2442 bool "luacjson has been replaced by lua-cjson"
2443 select BR2_PACKAGE_LUA_CJSON
2444 select BR2_LEGACY
2445 help
2446 The option has been renamed BR2_PACKAGE_LUA_CJSON.
2447
Arnaud Aujon560fe852013-12-15 20:23:12 +01002448###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002449comment "Legacy options removed in 2013.11"
2450
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01002451config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2452 bool "lvm2's 'dmsetup only' option removed"
2453 select BR2_LEGACY
2454 help
2455 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2456 led to problems with other packages that need the full lvm2
2457 suite. Therefore, the option has been replaced with the positive
2458 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2459
2460# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2461# in order to automatically propagate old configs
2462
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01002463config BR2_PACKAGE_QT_JAVASCRIPTCORE
2464 bool "qt javascriptcore option removed"
2465 select BR2_LEGACY
2466 help
2467 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2468 force the activation or disabling of the JIT compiler in the
2469 Qt Javascript interpreter. However, the JIT compiler is not
2470 available for all architectures, so forcing its activation
2471 does not always work. Moreover, Qt knows by itself for which
2472 architectures JIT support is possible, and will
2473 automatically enable it if possible.
2474
2475 Therefore, this option was in fact useless, and causing
2476 build problems when enabled on architectures for which the
2477 JIT support was not available. It has been removed, and
2478 there is no replacement: Qt will enable JIT at compile time
2479 when possible.
2480
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002481config BR2_PACKAGE_MODULE_INIT_TOOLS
2482 bool "module-init-tools replaced by kmod"
2483 select BR2_PACKAGE_KMOD
2484 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01002485 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002486 help
2487 The 'module-init-tools' package has been removed, since it
2488 has been depracated upstream and replaced by 'kmod'.
2489
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02002490config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2491 string "u-boot: the git repository URL option has been renamed"
2492 help
2493 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2494 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2495
2496config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2497 bool
2498 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2499 select BR2_LEGACY
2500
2501# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2502# boot/uboot/Config.in
2503
2504config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2505 string "u-boot: the git repository version option has been renamed"
2506 help
2507 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
2508 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
2509
2510config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
2511 bool
2512 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
2513 select BR2_LEGACY
2514
2515# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
2516# boot/uboot/Config.in
2517
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02002518config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
2519 string "linux: the git repository URL option has been renamed"
2520 help
2521 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
2522 been renamed to
2523 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
2524
2525config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
2526 bool
2527 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
2528 select BR2_LEGACY
2529
2530# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
2531# linux/Config.in
2532
2533config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
2534 string "linux: the git repository version option has been renamed"
2535 help
2536 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
2537 been renamed to
2538 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
2539
2540config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
2541 bool
2542 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
2543 select BR2_LEGACY
2544
2545# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
2546# linux/Config.in
2547
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002548###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002549comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002550
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02002551config BR2_ARM_OABI
2552 bool "ARM OABI support has been removed"
2553 select BR2_LEGACY
2554 help
2555 The support for the ARM OABI was deprecated since a while,
2556 and has been removed completely from Buildroot. It is also
2557 deprecated in upstream gcc, since gcc 4.7. People should
2558 switch to EABI instead, which should not be a problem as
2559 long as you don't have pre-built OABI binaries in your
2560 system that you can't recompile.
2561
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002562config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
2563 bool "dosfstools dosfsck renamed to fsck.fat"
2564 select BR2_LEGACY
2565 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
2566 help
2567 dosfsck was renamed upstream to fsck.fat for consistency.
2568
2569config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
2570 bool "dosfstools dosfslabel renamed to fatlabel"
2571 select BR2_LEGACY
2572 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
2573 help
2574 doslabel was renamed upstream to fatlabel for consistency.
2575
2576config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
2577 bool "dosfstools mkdosfs renamed to mkfs.fat"
2578 select BR2_LEGACY
2579 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
2580 help
2581 mkdosfs was renamed upstream to mkfs.fat for consistency.
2582
Thomas Petazzonie21db002013-06-30 21:28:57 +02002583config BR2_ELF2FLT
2584 bool "the elf2flt option has been renamed"
2585 select BR2_LEGACY
2586 help
2587 The BR2_ELF2FLT option has been renamed to
2588 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
2589 the package infrastructure.
2590
Thomas Petazzonid8060052013-07-16 10:03:17 +02002591config BR2_VFP_FLOAT
2592 bool "the ARM VFP floating point option has been renamed"
2593 select BR2_LEGACY
2594 help
2595 Due to a major refactoring of the floating-point handling of
2596 the ARM architecture support, the BR2_VFP_FLOAT option has
2597 been replaced with a choice of options that allows to select
2598 between various VFP versions/capabilities.
2599
Samuel Martinba8f82b2013-08-30 06:08:59 +02002600config BR2_PACKAGE_GCC_TARGET
2601 bool "gcc on the target filesystem has been removed"
2602 select BR2_LEGACY
2603 help
2604 The support for gcc in the target filesystem was deprecated
2605 since a while, and has been removed completely from Buildroot.
2606 See Buildroot's documentation for more explanations.
2607
2608config BR2_HAVE_DEVFILES
2609 bool "development files in target filesystem has been removed"
2610 select BR2_LEGACY
2611 help
2612 The installation of the development files in the target
2613 filesystem was deprecated since a while, and has been removed
2614 completely from Buildroot.
2615 See Buildroot's documentation for more explanations.
2616
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002617###############################################################################
2618comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +00002619
2620config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
2621 bool "Realtek 8192 replaced by Realtek 81xx"
2622 select BR2_LEGACY
2623 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
2624 help
2625 Now covers the whole Realtek 81xx familly: 8188/8192.
2626
2627config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
2628 bool "Realtek 8712 replaced by Realtek 87xx"
2629 select BR2_LEGACY
2630 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
2631 help
2632 Now covers the whole Realtek 87xx familly: 8712/8723.
2633
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002634###############################################################################
2635comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002636
Gustavo Zacarias94744212013-04-04 07:29:45 +00002637config BR2_sa110
2638 bool "sa110 ARM target switched to strongarm"
2639 select BR2_LEGACY
2640 select BR2_strongarm
2641 help
2642 The SA110 is the same as a generic StrongARM, it just differs
2643 in speed, peripherals and cache.
2644
2645config BR2_sa1100
2646 bool "sa1100 ARM target switched to strongarm"
2647 select BR2_LEGACY
2648 select BR2_strongarm
2649 help
2650 The SA1100 is the same as a generic StrongARM, it just differs
2651 in speed, peripherals and cache.
2652
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002653config BR2_PACKAGE_GDISK
2654 bool "gdisk has been replaced by gptfdisk"
2655 select BR2_LEGACY
2656 select BR2_PACKAGE_GPTFDISK
2657 help
2658 The option has been renamed BR2_PACKAGE_GPTFDISK.
2659
2660config BR2_PACKAGE_GDISK_GDISK
2661 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
2662 select BR2_LEGACY
2663 select BR2_PACKAGE_GPTFDISK
2664 select BR2_PACKAGE_GPTFDISK_GDISK
2665 help
2666 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
2667
2668config BR2_PACKAGE_GDISK_SGDISK
2669 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
2670 select BR2_LEGACY
2671 select BR2_PACKAGE_GPTFDISK
2672 select BR2_PACKAGE_GPTFDISK_SGDISK
2673 help
2674 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00002675
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +00002676config BR2_PACKAGE_GDB_HOST
2677 bool "gdb for the host option has been renamed"
2678 select BR2_PACKAGE_HOST_GDB
2679 select BR2_LEGACY
2680 help
2681 Due to the conversion of gdb to the package infrastructure,
2682 the BR2_PACKAGE_GDB_HOST option has been renamed
2683 BR2_PACKAGE_HOST_GDB.
2684
Carsten Schoenert76de0f82013-03-10 08:32:46 +00002685config BR2_PACKAGE_DIRECTB_DITHER_RGB16
2686 bool "DirectFB RGB16 dithering option has been renamed"
2687 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
2688 select BR2_LEGACY
2689 help
2690 The option has been renamed
2691 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
2692
2693config BR2_PACKAGE_DIRECTB_TESTS
2694 bool "DirectFB Tests option has been renamed"
2695 select BR2_PACKAGE_DIRECTFB_TESTS
2696 select BR2_LEGACY
2697 help
2698 The option has been renamed
2699 BR2_PACKAGE_DIRECTFB_TESTS.
2700
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002701###############################################################################
2702comment "Legacy options removed in 2012.11"
2703
Thomas Petazzoni12ccc432013-02-07 11:58:45 +00002704config BR2_PACKAGE_CUSTOMIZE
2705 bool "customize package has been removed"
2706 select BR2_LEGACY
2707 help
2708 The 'customize' special package has been removed. Instead,
2709 we recommend to create either your own packages, or use a
2710 post-build script to customize your root filesystem. See
2711 Buildroot's documentation for more details.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002712
2713config BR2_PACKAGE_XSERVER_xorg
2714 bool "X.org modular server"
2715 select BR2_LEGACY
2716 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
2717 help
2718 The option has been renamed
2719 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
2720
2721config BR2_PACKAGE_XSERVER_tinyx
2722 bool "KDrive / TinyX server"
2723 select BR2_LEGACY
2724 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
2725 help
2726 The option has been renamed
2727 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
2728
2729config BR2_PACKAGE_PTHREAD_STUBS
2730 bool "pthread-stubs option has been renamed"
2731 select BR2_LEGACY
Bernd Kuhls5562be12014-03-01 16:41:10 +01002732 select BR2_PACKAGE_LIBPTHREAD_STUBS
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002733 help
2734 For consistency reason, the pthread-stubs package has been
Bernd Kuhls5562be12014-03-01 16:41:10 +01002735 renamed to libpthread-stubs.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002736
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002737###############################################################################
2738comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00002739
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +00002740config BR2_PACKAGE_GETTEXT_STATIC
2741 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
2742 select BR2_LEGACY
2743 help
2744 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
2745
2746
2747config BR2_PACKAGE_LIBINTL
2748 bool "libintl"
2749 select BR2_LEGACY
2750 select BR2_PACKAGE_GETTEXT
2751 help
2752 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
2753 only installs the library, not the executables.
2754
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +00002755config BR2_PACKAGE_INPUT_TOOLS_EVTEST
2756 bool "input-tools evtest is now a separate package evtest"
2757 select BR2_LEGACY
2758 select BR2_PACKAGE_EVTEST
2759 help
2760 The evtest program from input-tools is now a separate package.
2761
Sonic Zhang57133822013-05-03 00:39:34 +00002762config BR2_BFIN_FDPIC
2763 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
2764 select BR2_BINFMT_FDPIC
2765 select BR2_LEGACY
2766
2767config BR2_BFIN_FLAT
2768 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
2769 select BR2_BINFMT_FLAT
2770 select BR2_LEGACY
2771
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00002772endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02002773
2774endif # !SKIP_LEGACY