blob: 9a534956270db7d8f939299a99e0ae6597be5089 [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###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +0200146comment "Legacy options removed in 2017.08"
147
Koen Martens438b2d12017-06-20 20:54:49 +0200148config BR2_PACKAGE_INPUT_TOOLS
149 bool "input-tools removed"
150 select BR2_LEGACY
151 select BR2_PACKAGE_LINUXCONSOLETOOLS
152 help
153 input-tools has been removed, it is replaced by
154 linuxconsoletools, which has automatically been enabled.
155
156config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
157 bool "inputattach moved to linuxconsoletools"
158 select BR2_LEGACY
159 select BR2_PACKAGE_LINUXCONSOLETOOLS
160 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
161 help
162 input-tools has been removed, inputattach is now part
163 of linuxconsoletools, which has automatically been
164 enabled.
165
166config BR2_PACKAGE_INPUT_TOOLS_JSCAL
167 bool "jscal moved to linuxconsoletools"
168 select BR2_LEGACY
169 select BR2_PACKAGE_LINUXCONSOLETOOLS
170 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
171 help
172 input-tools has been removed, jscal is now part
173 of linuxconsoletools, which has automatically been
174 enabled.
175
176config BR2_PACKAGE_INPUT_TOOLS_JSTEST
177 bool "jstest moved to linuxconsoletools"
178 select BR2_LEGACY
179 select BR2_PACKAGE_LINUXCONSOLETOOLS
180 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
181 help
182 input-tools has been removed, jstest is now part
183 of linuxconsoletools, which has automatically been
184 enabled.
185
Baruch Siach6510a822017-06-16 06:32:48 +0300186config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
187 bool "SH Sourcery toolchain has been removed"
188 select BR2_LEGACY
189 help
190 The Sourcery CodeBench toolchain for the sh architecture has
191 been removed, since it uses glibc older than 2.17 that requires
192 -lrt to link executables using clock_* system calls. This makes
193 this toolchain difficult to maintain over time.
194
Baruch Siach06cac642017-06-16 06:32:47 +0300195config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
196 bool "x86 Sourcery toolchain has been removed"
197 select BR2_LEGACY
198 help
199 The Sourcery CodeBench toolchain for the x86 architecture has
200 been removed, since it uses glibc older than 2.17 that requires
201 -lrt to link executables using clock_* system calls. This makes
202 this toolchain difficult to maintain over time.
203
Romain Naourf6695212017-05-23 22:24:40 +0200204config BR2_GCC_VERSION_4_8_X
205 bool "gcc 4.8.x support removed"
206 select BR2_LEGACY
207 help
208 Support for gcc version 4.8.x has been removed. The current
209 default version (5.x or later) has been selected instead.
210
211###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300212comment "Legacy options removed in 2017.05"
213
Romain Naour95426af2017-02-21 22:43:16 +0100214config BR2_PACKAGE_SUNXI_MALI_R2P4
215 bool "sunxi-mali r2p4 removed"
216 select BR2_LEGACY
217 help
218 sunxi-mali libMali for r2p4 Mali kernel module has been
219 removed since the libump package only provides libUMP.so.3.
220 libMali for r2p4 Mali kernel module requires libUMP.so.2.
221
Martin Barkd999a7f2017-05-06 14:19:13 +0100222config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
223 bool "CoffeeScript option has been removed"
224 select BR2_LEGACY
225 help
226 The option to enable NodeJS CoffeeScript has been removed.
227 To continue using it, add "coffee-script" to
228 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
229
Martin Bark096f8b12017-05-06 14:19:12 +0100230config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
231 bool "Express web application framework option has been removed"
232 select BR2_LEGACY
233 help
234 The option to enable the NodeJS Express web application
235 framework has been removed. To continue using it, add
236 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
237
Baruch Siach0364d442017-05-01 15:59:41 +0300238config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
239 bool "bluez5_utils gatttool install option removed"
240 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
241 help
242 The option to install gatttool specifically has been removed.
243 Since version 5.44 gatttool is in the list of deprecated
244 tools. The option to build and install deprecated tools has
245 been automatically enabled.
246
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +0000247config BR2_PACKAGE_OPENOCD_FT2XXX
248 bool "openocd ft2232 support has been removed"
249 select BR2_PACKAGE_OPENOCD_FTDI
250 select BR2_LEGACY
251 help
252 FT2232 support in OpenOCD has been removed, it's replaced by
253 FDTI support, which has automatically been enabled.
254
Bernd Kuhls24a07d52017-04-29 10:37:28 +0200255config BR2_PACKAGE_KODI_RTMPDUMP
256 bool "kodi rtmp has been removed"
257 select BR2_LEGACY
258 help
259 Internal rtmp support was removed from Kodi.
260
Bernd Kuhlsd3936902017-04-29 10:37:21 +0200261config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
262 bool "kodi-visualisation-fountain has been removed"
263 select BR2_LEGACY
264 help
265 According to upstream 'the visualization is not currently
266 in a working shape.'
267
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +0200268config BR2_PACKAGE_PORTMAP
269 bool "portmap has been removed"
270 select BR2_LEGACY
271 select BR2_PACKAGE_RPCBIND
272 help
273 The portmap upstream tarball is removed, no releases since
274 ten years and latest change in upstream git in 2014.
275 You should better use rpcbind as a RPC portmapper.
276
Thomas Petazzoni58472912017-04-03 22:28:21 +0200277config BR2_BINUTILS_VERSION_2_25_X
278 bool "binutils version 2.25 support removed"
279 select BR2_LEGACY
280 help
281 Support for binutils version 2.25 has been removed. The
282 current default version (2.27 or later) has been selected
283 instead.
284
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +0200285config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
286 bool "uclibc RPC support has been removed"
287 select BR2_LEGACY
288 help
289 uClibc-ng removed internal RPC implementation in 1.0.23. You
290 should use libtirpc instead.
291
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +0100292config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
293 int "extra size in blocks has been removed"
294 default 0
295 help
296 Since the support for auto calculation of the filesystem size has been
297 removed, this option is now useless and must be 0.
298 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS matchs
299 your needs.
300
301config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
302 bool
303 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
304 select BR2_LEGACY
305
Vicente Olivert Riera815f7132017-03-22 11:39:13 +0000306config BR2_PACKAGE_SYSTEMD_KDBUS
307 bool "systemd-kdbus has been removed"
308 select BR2_LEGACY
309 help
310 --enable/disable-kdbus configure option has been removed since
311 systemd-231.
312
Gustavo Zacariasd10b4932017-03-16 10:04:34 -0300313config BR2_PACKAGE_POLARSSL
314 bool "polarssl has been removed"
315 select BR2_LEGACY
316 help
317 The polarssl crypto library has been removed since the 1.2.x
318 release branch is no longer maintained. Newer upstream
319 branches/releases (mbedtls) have API changes so they're not
320 drop-in replacements.
321
Yann E. MORIN61551182017-03-12 10:58:15 +0100322config BR2_NBD_CLIENT
323 bool "nbd client option was renamed"
324 select BR2_LEGACY
325 select BR2_PACKAGE_NBD_CLIENT
326 help
327 The nbd client option has been renamed to BR2_PACKAGE_NBD_CLIENT.
328
329config BR2_NBD_SERVER
330 bool "nbd server option was renamed"
331 select BR2_LEGACY
332 select BR2_PACKAGE_NBD_SERVER
333 help
334 The nbd server option has been renamed to BR2_PACKAGE_NBD_SERVER.
335
Carlos Santos6a9c6312017-02-14 09:05:16 -0200336config BR2_PACKAGE_GMOCK
337 bool "gmock merged into gtest package"
338 select BR2_LEGACY
339 select BR2_PACKAGE_GTEST
340 select BR2_PACKAGE_GTEST_GMOCK
341 help
342 GMock is now a suboption of the GTest package.
343
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300344config BR2_KERNEL_HEADERS_4_8
345 bool "kernel headers version 4.8.x are no longer supported"
346 select BR2_KERNEL_HEADERS_4_4
347 select BR2_LEGACY
348 help
349 Version 4.8.x of the Linux kernel headers are no longer
350 maintained upstream and are now removed. As an alternative,
351 version 4.4.x of the headers have been automatically
352 selected in your configuration.
353
354config BR2_KERNEL_HEADERS_3_18
355 bool "kernel headers version 3.18.x are no longer supported"
356 select BR2_KERNEL_HEADERS_3_12
357 select BR2_LEGACY
358 help
359 Version 3.18.x of the Linux kernel headers are no longer
360 maintained upstream and are now removed. As an alternative,
361 version 3.12.x of the headers have been automatically
362 selected in your configuration.
363
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300364config BR2_GLIBC_VERSION_2_22
365 bool "glibc 2.22 removed"
366 select BR2_LEGACY
367 help
368 Support for glibc version 2.22 has been removed. The current
369 default version has been selected instead.
370
371###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +0100372comment "Legacy options removed in 2017.02"
373
Francois Perrad8546ff32016-12-26 15:50:35 +0100374config BR2_PACKAGE_PERL_DB_FILE
375 bool "perl-db-file removed"
376 select BR2_LEGACY
377 select BR2_PACKAGE_BERKELEYDB
378 select BR2_PACKAGE_PERL
379 help
380 DB_File can be built as a core Perl module, so the separate
381 perl-db-file package has been removed.
382
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300383config BR2_KERNEL_HEADERS_4_7
384 bool "kernel headers version 4.7.x are no longer supported"
385 select BR2_KERNEL_HEADERS_4_4
386 select BR2_LEGACY
387 help
388 Version 4.7.x of the Linux kernel headers are no longer
389 maintained upstream and are now removed. As an alternative,
390 version 4.4.x of the headers have been automatically
391 selected in your configuration.
392
393config BR2_KERNEL_HEADERS_4_6
394 bool "kernel headers version 4.6.x are no longer supported"
395 select BR2_KERNEL_HEADERS_4_4
396 select BR2_LEGACY
397 help
398 Version 4.6.x of the Linux kernel headers are no longer
399 maintained upstream and are now removed. As an alternative,
400 version 4.4.x of the headers have been automatically
401 selected in your configuration.
402
403config BR2_KERNEL_HEADERS_4_5
404 bool "kernel headers version 4.5.x are no longer supported"
405 select BR2_KERNEL_HEADERS_4_4
406 select BR2_LEGACY
407 help
408 Version 4.5.x of the Linux kernel headers are no longer
409 maintained upstream and are now removed. As an alternative,
410 version 4.4.x of the headers have been automatically
411 selected in your configuration.
412
413config BR2_KERNEL_HEADERS_3_14
414 bool "kernel headers version 3.14.x are no longer supported"
415 select BR2_KERNEL_HEADERS_3_12
416 select BR2_LEGACY
417 help
418 Version 3.14.x of the Linux kernel headers are no longer
419 maintained upstream and are now removed. As an alternative,
420 version 3.12.x of the headers have been automatically
421 selected in your configuration.
422
Romain Naour63abbcc2016-12-16 16:29:45 +0100423config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
424 bool "musl-cross 1.1.12 toolchain removed"
425 select BR2_LEGACY
426 help
427 The support for the prebuilt toolchain based on the Musl C
428 library provided by the musl-cross project has been removed.
429 Upstream doesn't provide any prebuilt toolchain anymore, use the
430 Buildroot toolchain instead.
431
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +0100432config BR2_UCLIBC_INSTALL_TEST_SUITE
433 bool "uClibc tests now in uclibc-ng-test"
434 select BR2_LEGACY
435 select BR2_PACKAGE_UCLIBC_NG_TEST
436 help
437 The test suite of the uClibc C library has been moved into a
438 separate package, uclibc-ng-test.
439
Arnout Vandecappelle311bc132016-11-24 00:40:35 +0100440config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
441 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
442 select BR2_LEGACY
443 help
444 The ADI Blackfin toolchain has many bugs which are fixed in
445 more recent gcc and uClibc-ng releases. Use the Buildroot
446 toolchain instead.
447
Arnout Vandecappelle207294f2016-11-23 15:14:04 +0100448config BR2_PACKAGE_MAKEDEVS
449 bool "makedevs removed"
450 select BR2_LEGACY
451 help
452 The makedevs tool is part of busybox. The Buildroot fork
453 should not be used outside of the Buildroot infrastructure.
454
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +0100455config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
456 bool "Arago ARMv7 2011.09 removed"
457 select BR2_LEGACY
458 help
459 The Arago toolchains are every old and not updated anymore.
460
461config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
462 bool "Arago ARMv5 2011.09 removed"
463 select BR2_LEGACY
464 help
465 The Arago toolchains are every old and not updated anymore.
466
Thomas Petazzonied364d12016-11-05 14:32:38 +0100467config BR2_PACKAGE_SNOWBALL_HDMISERVICE
468 bool "snowball-hdmiservice removed"
469 select BR2_LEGACY
470 help
471 We no longer have support for the Snowball platform in
472 Buildroot, so this package was no longer useful.
473
474config BR2_PACKAGE_SNOWBALL_INIT
475 bool "snowball-init removed"
476 select BR2_LEGACY
477 help
478 We no longer have support for the Snowball platform in
479 Buildroot, so this package was no longer useful.
480
Jörg Krause69aa0572016-12-14 14:40:58 +0100481config BR2_GDB_VERSION_7_9
482 bool "gdb 7.9 has been removed"
483 select BR2_LEGACY
484 help
485 The 7.9 version of gdb has been removed. Use a newer version
486 instead.
487
Thomas Petazzonied364d12016-11-05 14:32:38 +0100488###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +0200489comment "Legacy options removed in 2016.11"
490
Fabrice Fontainec4572132016-09-12 23:31:07 +0200491config BR2_PACKAGE_PHP_SAPI_CLI_CGI
492 bool "PHP CGI and CLI options are now seperate"
493 select BR2_PACKAGE_PHP_SAPI_CLI
494 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200495 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200496 help
497 The PHP Interface options have been split up into a
498 separate option for each interface.
499
500config BR2_PACKAGE_PHP_SAPI_CLI_FPM
501 bool "PHP CLI and FPM options are now separate"
502 select BR2_PACKAGE_PHP_SAPI_CLI
503 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200504 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200505 help
506 The PHP Interface options have been split up into a
507 separate option for each interface.
508
Arnout Vandecappelle35343992016-10-15 16:51:06 +0200509config BR2_PACKAGE_WVSTREAMS
510 bool "wvstreams removed"
511 select BR2_LEGACY
512 help
513 wvstreams is not maintained anymore since about 2009. It also
514 doesn't build anymore with recent compilers (GCC 5+).
515
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +0200516config BR2_PACKAGE_WVDIAL
517 bool "wvdial removed"
518 select BR2_LEGACY
519 help
520 wvdial is not maintained anymore since about 2009. It also
521 doesn't build anymore with recent compilers (GCC 5+).
522
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +0200523config BR2_PACKAGE_WEBKITGTK24
524 bool "webkitgtk 2.4.x removed"
525 select BR2_LEGACY
526 help
527 This legacy package only existed because some other packages
528 depended on that specific version of webkitgtk. However, the
529 other packages have been fixed. webkitgtk 2.4 is full of
530 security issues so it needs to be removed.
531
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +0200532config BR2_PACKAGE_TORSMO
533 bool "torsmo removed"
534 select BR2_LEGACY
535 help
536 torsmo has been unmaintained for a long time, and nobody
537 seems to be interested in it.
538
Arnout Vandecappelle290166f2016-10-15 16:51:02 +0200539config BR2_PACKAGE_SSTRIP
540 bool "sstrip removed"
541 select BR2_LEGACY
542 help
543 sstrip is unmaintained and potentially harmful. It doesn't
544 save so much compared to normal binutils strip, and there is
545 a big risk of binaries that don't work. Use normal strip
546 instead.
547
Arnout Vandecappelle133466f2016-10-15 16:51:01 +0200548config BR2_KERNEL_HEADERS_4_3
549 bool "kernel headers version 4.3.x are no longer supported"
550 select BR2_KERNEL_HEADERS_4_1
551 select BR2_LEGACY
552 help
553 Version 4.3.x of the Linux kernel headers are no longer
554 maintained upstream and are now removed. As an alternative,
555 version 4.1.x of the headers have been automatically
556 selected in your configuration.
557
558config BR2_KERNEL_HEADERS_4_2
559 bool "kernel headers version 4.2.x are no longer supported"
560 select BR2_KERNEL_HEADERS_4_1
561 select BR2_LEGACY
562 help
563 Version 4.2.x of the Linux kernel headers are no longer
564 maintained upstream and are now removed. As an alternative,
565 version 4.1.x of the headers have been automatically
566 selected in your configuration.
567
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +0200568config BR2_PACKAGE_KODI_ADDON_XVDR
569 bool "kodi-addon-xvdr removed"
570 select BR2_LEGACY
571 help
572 According to the github project page:
573 https://github.com/pipelka/xbmc-addon-xvdr
574 this package is discontinued.
575
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +0200576config BR2_PACKAGE_IPKG
577 bool "ipkg removed"
578 select BR2_LEGACY
579 help
580 ipkg dates back to the early 2000s when Compaq started the
581 handhelds.org project and it hasn't seen development since 2006.
582 Use opkg as a replacement.
583
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +0200584config BR2_GCC_VERSION_4_7_X
585 bool "gcc 4.7.x support removed"
586 select BR2_LEGACY
587 help
588 Support for gcc version 4.7.x has been removed. The current
589 default version (4.9.x or later) has been selected instead.
590
Arnout Vandecappelled8878112016-10-15 16:50:57 +0200591config BR2_BINUTILS_VERSION_2_24_X
592 bool "binutils version 2.24 support removed"
593 select BR2_LEGACY
594 help
595 Support for binutils version 2.24 has been removed. The
596 current default version (2.26 or later) has been selected
597 instead.
598
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -0300599config BR2_PACKAGE_WESTON_RPI
600 bool "Weston propietary RPI support is gone"
601 select BR2_LEGACY
602 help
603 Upstream decided the propietary (rpi-userland) weston composer
604 support wasn't worth the effort so it was removed. Switch to
605 the open VC4 support.
606
Yann E. MORIN20b14462016-09-06 16:29:14 +0200607config BR2_LINUX_KERNEL_TOOL_CPUPOWER
608 bool "linux-tool cpupower"
609 depends on BR2_LINUX_KERNEL
610 select BR2_LEGACY
611 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
612 help
613 Linux tool cpupower option was renamed.
614
615config BR2_LINUX_KERNEL_TOOL_PERF
616 bool "linux-tool perf"
617 depends on BR2_LINUX_KERNEL
618 select BR2_LEGACY
619 select BR2_PACKAGE_LINUX_TOOLS_PERF
620 help
621 Linux tool perf option was renamed.
622
623config BR2_LINUX_KERNEL_TOOL_SELFTESTS
624 bool "linux-tool selftests"
625 depends on BR2_LINUX_KERNEL
626 select BR2_LEGACY
627 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
628 help
629 Linux tool selftests option was renamed.
630
Thomas Petazzoni50332a52016-08-11 15:25:38 +0200631config BR2_GCC_VERSION_4_8_ARC
632 bool "gcc arc option renamed"
633 select BR2_LEGACY
634 select BR2_GCC_VERSION_ARC
635 help
636 The option that selects the gcc version for the ARC
637 architecture has been renamed to BR2_GCC_VERSION_ARC.
638
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300639config BR2_KERNEL_HEADERS_4_0
640 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300641 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300642 select BR2_LEGACY
643 help
644 Version 4.0.x of the Linux kernel headers have been deprecated
645 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300646 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300647 automatically selected in your configuration.
648
649config BR2_KERNEL_HEADERS_3_19
650 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300651 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300652 select BR2_LEGACY
653 help
654 Version 3.19.x of the Linux kernel headers have been deprecated
655 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300656 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300657 automatically selected in your configuration.
658
Romain Naour0e517312016-09-02 22:31:32 +0200659config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
660 bool "libevas-generic-loaders package removed"
661 select BR2_LEGACY
662 select BR2_PACKAGE_EFL
663 help
664 With EFL 1.18, libevas-generic-loaders is now provided by the efl
665 package.
666
Romain Naourc22b7582016-09-02 22:31:31 +0200667config BR2_PACKAGE_ELEMENTARY
668 bool "elementary package removed"
669 select BR2_LEGACY
670 select BR2_PACKAGE_EFL
671 help
672 With EFL 1.18, elementary is now provided by the efl package.
673
Yann E. MORINe782cd52016-08-28 01:03:04 +0200674config BR2_LINUX_KERNEL_CUSTOM_LOCAL
675 bool "Linux kernel local directory option removed"
676 help
677 The option to select a local directory as the source of the Linux
678 kernel has been removed. It hurts reproducibility of builds.
679
680 In case you were using this option during development of your
681 Linux kernel, use the override mechanism instead.
682
683###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200684comment "Legacy options removed in 2016.08"
685
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100686config BR2_PACKAGE_EFL_JP2K
687 bool "libevas jp2k loader has been removed"
688 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +0100689 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100690 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
691 while Buildroot only packages openjpeg 2.x. Therefore, the
692 JP2K loader has been removed from EFL.
693
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200694config BR2_PACKAGE_SYSTEMD_COMPAT
695 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +0200696 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200697 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +0200698 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200699 been removed. Theses libraries have been useless since a few
700 version, and have been fully dropped from the source since
701 v230.
702
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +0200703config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
704 bool "gst1-plugins-bad liveadder plugin removed"
705 select BR2_LEGACY
706 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
707 help
708 The functionality of the liveadder plugin of the
709 gst1-plugins-bad package has been merged into audiomixer.
710
Andrew Webster0f92b192016-06-10 14:13:29 -0400711config BR2_PACKAGE_LIBFSLVPUWRAP
712 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
713 select BR2_LEGACY
714 select BR2_PACKAGE_IMX_VPUWRAP
715 help
716 The libfslvpuwrap has been renamed to match the renamed package.
717
Andrew Webster64998902016-06-10 14:13:18 -0400718config BR2_PACKAGE_LIBFSLPARSER
719 bool "libfslparser has been renamed to imx-parser"
720 select BR2_LEGACY
721 select BR2_PACKAGE_IMX_PARSER
722 help
723 The libfslparser has been renamed to match the renamed package.
724
Andrew Webster47e62032016-06-10 14:13:05 -0400725config BR2_PACKAGE_LIBFSLCODEC
726 bool "libfslcodec has been renamed to imx-codec"
727 select BR2_LEGACY
728 select BR2_PACKAGE_IMX_CODEC
729 help
730 The libfslcodec has been renamed to match the renamed package.
731
Carlos Santosb5d99002016-06-03 16:35:39 -0300732config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
733 bool "FIT support in uboot-tools has been refactored"
734 select BR2_LEGACY
735 select BR2_PACKAGE_DTC
736 select BR2_PACKAGE_DTC_PROGRAMS
737 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
738 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
739 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
740 help
741 This option has been removed in favor of a more fine-grained
742 configuration, which is recommended. Selecting this option
743 enables FIT and FIT signature support for the target packages.
744 It will also select the dtc and openssl packages.
745
Waldemar Brodkorbf253c142016-06-01 20:40:25 +0200746config BR2_PTHREADS_OLD
747 bool "linuxthreads (stable/old)"
748 select BR2_LEGACY
749 help
750 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
751 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
752
Thomas Petazzoniae466a62016-05-17 00:13:01 +0200753config BR2_BINUTILS_VERSION_2_23_X
754 bool "binutils 2.23 removed"
755 select BR2_LEGACY
756 help
757 Binutils 2.23 has been removed, using a newer version is
758 recommended.
759
Thomas Petazzoni500de252016-05-17 00:13:00 +0200760config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
761 bool "eglibc support has been removed"
762 select BR2_LEGACY
763 help
764 The eglibc project no longer exists, as it has been merged
765 back into the glibc project. Therefore, support for eglibc
766 has been removed, and glibc should be used instead.
767
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200768config BR2_GDB_VERSION_7_8
769 bool "gdb 7.8 has been removed"
770 select BR2_LEGACY
771 help
772 The 7.8 version of gdb has been removed. Use a newer version
773 instead.
774
775###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100776comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +0100777
Gustavo Zacarias3380da62016-05-14 10:33:47 -0300778config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
779 bool "openvpn polarssl crypto backend removed"
780 select BR2_LEGACY
781 help
782 The OpenVPN polarssl crypto backend option has been removed.
783 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
784 compatible with mbedtls (polarssl) series 2.x which is the
785 version provided in buildroot. And both can't coexist.
786 It now uses OpenSSL as the only option.
787
788
Martin Bark4dfc2cb2016-05-03 10:36:54 +0100789config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
790 bool "nginx http spdy module removed"
791 select BR2_LEGACY
792 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
793 help
794 The ngx_http_spdy_module has been superseded by the
795 ngx_http_v2_module since nginx v1.9.5. The
796 ngx_http_v2_module modules has been automatically selected
797 in your configuration.
798
Gustavo Zacarias0c956f22016-05-03 16:44:15 -0300799config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
800 bool "gst1-plugins-bad rtp plugin moved to good"
801 select BR2_LEGACY
802 help
803 The rtp plugin has been moved from gst1-plugins-base to
804 gst1-plugins-good.
805
Gustavo Zacarias4196cf92016-05-03 16:44:14 -0300806config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
807 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
808 select BR2_LEGACY
809 help
810 The mpg123 plugin has been moved from gst1-plugins-bad to
811 gst1-plugins-ugly.
812
Gustavo Zacarias8490e832016-04-29 10:18:56 -0300813config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
814 bool "PowerPC Sourcery toolchain has been removed"
815 select BR2_LEGACY
816 help
817 The Sourcery CodeBench toolchain for the PowerPC
818 architecture has been removed, as it was very old, not
819 maintained, and causing numerous build failures with modern
820 userspace packages.
821
822config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
823 bool "PowerPC Sourcery E500v2 toolchain has been removed"
824 select BR2_LEGACY
825 help
826 The Sourcery CodeBench toolchain for the PowerPC E500v2
827 architecture has been removed, as it was very old, not
828 maintained, and causing numerous build failures with modern
829 userspace packages.
830
Thomas Petazzoni6cb48142016-04-17 23:31:34 +0200831config BR2_x86_i386
832 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +0200833 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +0200834 help
835 The support for the i386 processors of the x86 architecture
836 has been removed.
837
Julien CORJON940bfe22016-03-17 10:42:27 +0100838config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
839 bool "qt5webkit-examples package removed"
840 select BR2_LEGACY
841 help
842 The qt5webkit-examples package has been removed, since it
843 was removed from upstream starting from Qt 5.6.
844
Julien CORJONf75ee802016-03-17 10:42:25 +0100845config BR2_PACKAGE_QT5QUICK1
846 bool "qt5quick1 package removed"
847 select BR2_LEGACY
848 help
849 The qt5quick1 package has been removed, since it was removed
850 from upstream starting from Qt 5.6.
851
Gustavo Zacarias21b25d22016-03-11 11:32:24 -0300852config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -0500853 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -0300854 help
855 The uboot custom patch directory option has been removed. Use
856 the improved BR2_TARGET_UBOOT_PATCH option instead.
857
Danomi Manchegof61583f2016-12-19 22:10:12 -0500858config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
859 bool
860 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
861 select BR2_LEGACY
862
863# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
864# boot/uboot/Config.in
865
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -0300866config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
867 bool "xf86-input-void removed"
868 select BR2_LEGACY
869 help
870 The xf86-input-void package has been removed, there's no need
871 for it in any modern (post-2007) xorg server.
872
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300873config BR2_KERNEL_HEADERS_3_17
874 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300875 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300876 select BR2_LEGACY
877 help
878 Version 3.17.x of the Linux kernel headers have been deprecated
879 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300880 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300881 automatically selected in your configuration.
882
Gustavo Zacariasffc324e2016-03-11 11:32:21 -0300883config BR2_GDB_VERSION_7_7
884 bool "gdb 7.7 has been removed"
885 select BR2_LEGACY
886 help
887 The 7.7 version of gdb has been removed. Use a newer version
888 instead.
889
Gustavo Zacarias75945dd2016-03-11 11:32:20 -0300890config BR2_PACKAGE_FOOMATIC_FILTERS
891 bool "foomatic-filters"
892 select BR2_LEGACY
893 help
894 The foomatic-filters package was removed.
895
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -0300896config BR2_PACKAGE_SAMBA
897 bool "samba"
898 select BR2_LEGACY
899 help
900 The samba package was removed in favour of samba4 since the
901 3.x series isn't supported by upstream any longer.
902
Bernd Kuhls6922b412016-02-20 23:09:11 +0100903config BR2_PACKAGE_KODI_WAVPACK
904 bool "wavpack"
905 select BR2_LEGACY
906 help
907 wavpack support was removed in favour of ffmpeg:
908 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
909
Bernd Kuhls75ce17d2016-02-20 23:09:07 +0100910config BR2_PACKAGE_KODI_RSXS
911 bool "rsxs support in Kodi was moved to an addon"
912 select BR2_LEGACY
913 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
914 help
915 rsxs support in Kodi was moved to an addon
916
Bernd Kuhls56b80ec2016-02-20 23:09:06 +0100917config BR2_PACKAGE_KODI_GOOM
918 bool "Goom support in Kodi was moved to an addon"
919 select BR2_LEGACY
920 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
921 help
922 Goom support in Kodi was moved to an addon
923
Gabe Evanse5a073a2016-02-25 21:55:11 +0000924config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
925 bool "systemd all extras option has been removed"
926 select BR2_LEGACY
927 select BR2_PACKAGE_XZ
928 select BR2_PACKAGE_LIBGCRYPT
929 help
930 The systemd option to enable "all extras" has been
931 removed. To get the same features, the libgcrypt and xz
932 package should now be enabled.
933
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -0300934config BR2_GCC_VERSION_4_5_X
935 bool "gcc 4.5.x has been removed"
936 select BR2_LEGACY
937 help
938 The 4.5.x version of gcc has been removed. Use a newer
939 version instead.
940
Bernd Kuhls007c2ce2016-02-08 20:56:41 +0100941config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -0500942 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +0100943 select BR2_PACKAGE_NCURSES
944 select BR2_PACKAGE_READLINE
945 select BR2_LEGACY
946 help
947 This option was removed in favour of the sqlite package
948 deciding itself depending on the enabled packages whether
949 command-line editing should be enabled, it also also takes
950 libedit into account.
951
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100952###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +0100953comment "Legacy options removed in 2016.02"
954
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +0100955config BR2_PACKAGE_DOVECOT_BZIP2
956 bool "bzip2 support option has been removed"
957 select BR2_LEGACY
958 select BR2_PACKAGE_BZIP2
959 help
960 Bzip2 support is built if the bzip2 package is selected.
961
962config BR2_PACKAGE_DOVECOT_ZLIB
963 bool "zlib support option has been removed"
964 select BR2_LEGACY
965 select BR2_PACKAGE_ZLIB
966 help
967 Zlib support is built if the zlib package is selected.
968
James Knightead1df42016-02-12 11:40:05 -0500969config BR2_PACKAGE_E2FSPROGS_FINDFS
970 bool "e2fsprogs findfs option has been removed"
971 select BR2_LEGACY
972 help
973 This option attempted to enable findfs capabilities from
974 e2fsprogs but has not worked since July 2015 (due to
975 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +0100976 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -0500977
Romain Naourb1063a02016-02-07 17:56:56 +0100978config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
979 bool "openpowerlink debug option has been removed"
980 select BR2_LEGACY
981 help
982 This option depends on BR2_ENABLE_DEBUG which should not be used
983 by packages anymore.
984
985config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
986 bool "openpowerlink package has been updated"
987 select BR2_LEGACY
988 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
989 help
990 openpowerlink kernel modules are built if the
991 kernel stack library is selected.
992
993config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
994 bool "openpowerlink package has been updated"
995 select BR2_LEGACY
996 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
997 help
998 The user space support has been split in two part:
999 - a monolitic user space library
1000 - a user spae deamon driver
1001
Yann E. MORINe3e05832016-02-06 00:06:17 +01001002config BR2_LINUX_KERNEL_SAME_AS_HEADERS
1003 bool "using the linux headers version for the kernel has been removed"
1004 select BR2_LEGACY
1005 help
1006 The option to use the version of the kernel headers for the
1007 kernel to build has been removed.
1008
1009 There is now the converse, better-suited and more versatile
1010 option to use the kernel version for the linux headers.
1011
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02001012config BR2_PACKAGE_CUPS_PDFTOPS
1013 bool "Pdftops support has been removed from Cups"
1014 select BR2_LEGACY
1015 help
1016 Pdftops support has been removed from the cups package
1017 It is now part of the cups-filters package.
1018
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001019config BR2_KERNEL_HEADERS_3_16
1020 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001021 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001022 select BR2_LEGACY
1023 help
1024 Version 3.16.x of the Linux kernel headers have been deprecated
1025 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001026 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001027 automatically selected in your configuration.
1028
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01001029config BR2_PACKAGE_PYTHON_PYXML
1030 bool "python-pyxml package has been removed"
1031 select BR2_LEGACY
1032 help
1033 PyXML is obsolete and its functionality is covered either via
1034 native Python XML support or python-lxml package.
1035
Steven Noonand29c7192015-12-27 12:07:31 +01001036# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
1037config BR2_ENABLE_SSP
1038 bool "Stack Smashing protection now has different levels"
1039 help
1040 The protection offered by SSP can now be selected from different
1041 protection levels. Be sure to review the SSP level in the build
1042 options menu.
1043
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001044config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03001045 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001046 select BR2_LEGACY
1047 help
1048 The cle266 directfb driver support has been removed.
1049 It doesn't build in the latest version and it's unlikely
1050 anyone has any use for it.
1051
1052config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03001053 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001054 select BR2_LEGACY
1055 help
1056 The unichrome directfb driver support has been removed.
1057 It doesn't build in the latest version and it's unlikely
1058 anyone has any use for it.
1059
Romain Naour820e1682015-12-19 17:39:14 +01001060config BR2_PACKAGE_LIBELEMENTARY
1061 bool "libelementary has been renamed to elementary"
1062 select BR2_LEGACY
1063 select BR2_PACKAGE_ELEMENTARY
1064 help
1065 The libelementary package has been renamed to match the upstream
1066 name.
1067
Romain Naoura9d1f5f2015-12-15 23:40:38 +01001068config BR2_PACKAGE_LIBEINA
1069 bool "libeina package has been removed"
1070 select BR2_LEGACY
1071 select BR2_PACKAGE_EFL
1072 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001073 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01001074
Romain Naour49700f02015-12-15 23:40:37 +01001075config BR2_PACKAGE_LIBEET
1076 bool "libeet package has been removed"
1077 select BR2_LEGACY
1078 select BR2_PACKAGE_EFL
1079 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001080 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01001081
Romain Naoure5989d62015-12-15 23:40:36 +01001082config BR2_PACKAGE_LIBEVAS
1083 bool "libevas package has been removed"
1084 select BR2_LEGACY
1085 select BR2_PACKAGE_EFL
1086 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001087 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01001088
Romain Naour1fe1b602015-12-15 23:40:35 +01001089config BR2_PACKAGE_LIBECORE
1090 bool "libecore package has been removed"
1091 select BR2_LEGACY
1092 select BR2_PACKAGE_EFL
1093 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001094 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01001095
Romain Naour8c05c382015-12-15 23:40:34 +01001096config BR2_PACKAGE_LIBEDBUS
1097 bool "libedbus package has been removed"
1098 select BR2_LEGACY
1099 select BR2_PACKAGE_EFL
1100 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001101 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01001102
Romain Naourd2b042c2015-12-15 23:40:33 +01001103config BR2_PACKAGE_LIBEFREET
1104 bool "libefreet package has been removed"
1105 select BR2_LEGACY
1106 select BR2_PACKAGE_EFL
1107 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001108 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01001109
Romain Naoure155c952015-12-15 23:40:32 +01001110config BR2_PACKAGE_LIBEIO
1111 bool "libeio package has been removed"
1112 select BR2_LEGACY
1113 select BR2_PACKAGE_EFL
1114 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001115 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01001116
Romain Naourb728fb72015-12-15 23:40:31 +01001117config BR2_PACKAGE_LIBEMBRYO
1118 bool "libembryo package has been removed"
1119 select BR2_LEGACY
1120 select BR2_PACKAGE_EFL
1121 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001122 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01001123
Romain Naour4c93c102015-12-15 23:40:30 +01001124config BR2_PACKAGE_LIBEDJE
1125 bool "libedje package has been removed"
1126 select BR2_LEGACY
1127 select BR2_PACKAGE_EFL
1128 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001129 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01001130
Romain Naour905dba12015-12-15 23:40:29 +01001131config BR2_PACKAGE_LIBETHUMB
1132 bool "libethumb package has been removed"
1133 select BR2_LEGACY
1134 select BR2_PACKAGE_EFL
1135 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001136 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01001137
Luca Ceresolif0c94702015-11-27 18:38:00 +01001138config BR2_PACKAGE_INFOZIP
1139 bool "infozip option has been renamed to zip"
1140 select BR2_LEGACY
1141 select BR2_PACKAGE_ZIP
1142 help
1143 Info-Zip's Zip package has been renamed from infozip to zip,
1144 to avoid ambiguities with Info-Zip's UnZip which has been added
1145 in the unzip package.
1146
Martin Barka2d16602015-12-23 12:16:04 +00001147config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00001148 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00001149 select BR2_LEGACY
1150 select BR2_PACKAGE_NODEJS
1151 help
Martin Bark75b70492016-01-30 14:51:00 +00001152 nodejs 0.10.x option has been removed. 0.10.x is now
1153 automatically chosen for ARMv5 architectures only and the latest
1154 nodejs for all other supported architectures. The correct nodejs
1155 version has been automatically selected in your configuration.
Martin Barka2d16602015-12-23 12:16:04 +00001156
Martin Barka314b872015-12-23 12:16:03 +00001157config BR2_BR2_PACKAGE_NODEJS_0_12_X
1158 bool "nodejs version 0.12.x has been removed"
1159 select BR2_LEGACY
1160 select BR2_PACKAGE_NODEJS
1161 help
1162 nodejs version 0.12.x has been removed. As an alternative,
1163 the latest nodejs version has been automatically selected in
1164 your configuration.
1165
Martin Bark90bf67c2015-12-23 12:16:02 +00001166config BR2_BR2_PACKAGE_NODEJS_4_X
1167 bool "nodejs version 4.x has been removed"
1168 select BR2_LEGACY
1169 select BR2_PACKAGE_NODEJS
1170 help
1171 nodejs version 4.x has been removed. As an alternative,
1172 the latest nodejs version has been automatically selected in
1173 your configuration.
1174
Luca Ceresolif0c94702015-11-27 18:38:00 +01001175###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001176comment "Legacy options removed in 2015.11"
1177
Peter Seiderer301e8ff2015-10-15 21:42:43 +02001178config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
1179 bool "gst1-plugins-bad real plugin has been removed"
1180 select BR2_LEGACY
1181 help
1182 The real plugin from GStreamer 1 bad plugins has been
1183 removed.
1184
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02001185config BR2_PACKAGE_MEDIA_CTL
1186 bool "media-ctl package has been removed"
1187 select BR2_LEGACY
1188 select BR2_PACKAGE_LIBV4L
1189 select BR2_PACKAGE_LIBV4L_UTILS
1190 help
1191 media-ctl source and developement have been moved to
1192 v4l-utils since June 2014. For an up-to-date media-ctl
1193 version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
1194
Romain Naourf8031332015-10-03 18:35:05 +02001195config BR2_PACKAGE_SCHIFRA
1196 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001197 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02001198 help
1199 Schifra package has been maked broken since 2014.11 release and
1200 haven't been fixed since then.
1201
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02001202config BR2_PACKAGE_ZXING
1203 bool "zxing option has been renamed"
1204 select BR2_LEGACY
1205 select BR2_PACKAGE_ZXING_CPP
1206 help
1207 ZXing no longer provides the cpp bindings, it has been renamed to
1208 BR2_PACKAGE_ZXING_CPP which uses a new upstream.
1209
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001210# Since FreeRDP has new dependencies, protect this legacy to avoid the
1211# infamous "unmet direct dependencies" kconfig error.
1212config BR2_PACKAGE_FREERDP_CLIENT
1213 bool "freerdp client option renamed"
1214 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02001215 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001216 select BR2_PACKAGE_FREERDP_CLIENT_X11
1217
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03001218config BR2_PACKAGE_BLACKBOX
1219 bool "blackbox package has been removed"
1220 select BR2_LEGACY
1221 help
1222 Upstream is dead and the package has been deprecated for
1223 some time. There are other alternative maintained WMs.
1224
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001225config BR2_KERNEL_HEADERS_3_0
1226 bool "kernel headers version 3.0.x are no longer supported"
1227 select BR2_KERNEL_HEADERS_3_2
1228 select BR2_LEGACY
1229 help
1230 Version 3.0.x of the Linux kernel headers have been deprecated
1231 for more than four buildroot releases and are now removed.
1232 As an alternative, version 3.2.x of the headers have been
1233 automatically selected in your configuration.
1234
1235config BR2_KERNEL_HEADERS_3_11
1236 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001237 select BR2_KERNEL_HEADERS_3_10
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001238 select BR2_LEGACY
1239 help
1240 Version 3.11.x of the Linux kernel headers have been deprecated
1241 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001242 As an alternative, version 3.10.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001243 automatically selected in your configuration.
1244
1245config BR2_KERNEL_HEADERS_3_13
1246 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001247 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001248 select BR2_LEGACY
1249 help
1250 Version 3.13.x of the Linux kernel headers have been deprecated
1251 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001252 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001253 automatically selected in your configuration.
1254
1255config BR2_KERNEL_HEADERS_3_15
1256 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001257 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001258 select BR2_LEGACY
1259 help
1260 Version 3.15.x of the Linux kernel headers have been deprecated
1261 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001262 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001263 automatically selected in your configuration.
1264
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001265config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
1266 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001267 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001268 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1269 help
1270 The per-DirectFB example options have been removed. The
1271 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1272 examples.
1273
1274config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
1275 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001276 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001277 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1278 help
1279 The per-DirectFB example options have been removed. The
1280 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1281 examples.
1282
1283config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
1284 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001285 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001286 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1287 help
1288 The per-DirectFB example options have been removed. The
1289 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1290 examples.
1291
1292config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
1293 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001294 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001295 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1296 help
1297 The per-DirectFB example options have been removed. The
1298 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1299 examples.
1300
1301config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
1302 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001303 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001304 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1305 help
1306 The per-DirectFB example options have been removed. The
1307 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1308 examples.
1309
1310config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
1311 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001312 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001313 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1314 help
1315 The per-DirectFB example options have been removed. The
1316 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1317 examples.
1318
1319config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
1320 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001321 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001322 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1323 help
1324 The per-DirectFB example options have been removed. The
1325 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1326 examples.
1327
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001328config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
1329 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001330 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001331 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1332 help
1333 The per-DirectFB example options have been removed. The
1334 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1335 examples.
1336
1337config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
1338 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001339 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001340 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1341 help
1342 The per-DirectFB example options have been removed. The
1343 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1344 examples.
1345
1346config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
1347 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001348 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001349 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1350 help
1351 The per-DirectFB example options have been removed. The
1352 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1353 examples.
1354
1355config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
1356 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001357 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001358 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1359 help
1360 The per-DirectFB example options have been removed. The
1361 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1362 examples.
1363
1364config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
1365 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001366 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001367 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1368 help
1369 The per-DirectFB example options have been removed. The
1370 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1371 examples.
1372
1373config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
1374 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001375 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001376 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1377 help
1378 The per-DirectFB example options have been removed. The
1379 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1380 examples.
1381
1382config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
1383 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001384 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001385 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1386 help
1387 The per-DirectFB example options have been removed. The
1388 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1389 examples.
1390
1391config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
1392 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001393 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001394 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1395 help
1396 The per-DirectFB example options have been removed. The
1397 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1398 examples.
1399
1400config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
1401 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001402 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001403 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1404 help
1405 The per-DirectFB example options have been removed. The
1406 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1407 examples.
1408
1409config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
1410 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001411 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001412 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1413 help
1414 The per-DirectFB example options have been removed. The
1415 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1416 examples.
1417
1418config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
1419 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001420 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001421 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1422 help
1423 The per-DirectFB example options have been removed. The
1424 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1425 examples.
1426
1427config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
1428 bool "DirectFB example df_palette has been removed"
1429 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1430 help
1431 The per-DirectFB example options have been removed. The
1432 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1433 examples.
1434
1435config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
1436 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001437 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001438 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1439 help
1440 The per-DirectFB example options have been removed. The
1441 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1442 examples.
1443
1444config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
1445 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001446 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001447 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1448 help
1449 The per-DirectFB example options have been removed. The
1450 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1451 examples.
1452
1453config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
1454 bool "DirectFB example df_stress has been removed"
1455 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1456 help
1457 The per-DirectFB example options have been removed. The
1458 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1459 examples.
1460
1461config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
1462 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001463 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001464 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1465 help
1466 The per-DirectFB example options have been removed. The
1467 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1468 examples.
1469
1470config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
1471 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001472 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001473 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1474 help
1475 The per-DirectFB example options have been removed. The
1476 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1477 examples.
1478
1479config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1480 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001481 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001482 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1483 help
1484 The per-DirectFB example options have been removed. The
1485 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1486 examples.
1487
1488config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1489 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001490 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001491 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1492 help
1493 The per-DirectFB example options have been removed. The
1494 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1495 examples.
1496
Gary Bisson2b78fb22015-09-23 15:39:27 +02001497config BR2_PACKAGE_KOBS_NG
1498 bool "kobs-ng was replaced by imx-kobs"
1499 select BR2_LEGACY
1500 select BR2_PACKAGE_IMX_KOBS
1501 help
1502 The outdated kobs-ng has been replaced by the Freescale-
1503 maintained imx-kobs package.
1504
Thomas Petazzoni11573f52015-09-02 00:01:11 +02001505config BR2_PACKAGE_SAWMAN
1506 bool "sawman package removed"
1507 select BR2_LEGACY
1508 select BR2_PACKAGE_DIRECTFB_SAWMAN
1509 help
1510 This option has been removed because the sawman package no
1511 longer exists: it was merged inside DirectFB itself. This
1512 feature can now be enabled using the
1513 BR2_PACKAGE_DIRECTFB_SAWMAN option.
1514
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001515config BR2_PACKAGE_DIVINE
1516 bool "divine package removed"
1517 select BR2_LEGACY
1518 select BR2_PACKAGE_DIRECTFB_DIVINE
1519 help
1520 This option has been removed because the divine package no
1521 longer exists: it was merged inside DirectFB itself. This
1522 feature can now be enabled using the
1523 BR2_PACKAGE_DIRECTFB_DIVINE option.
1524
1525###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001526comment "Legacy options removed in 2015.08"
1527
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001528config BR2_PACKAGE_KODI_PVR_ADDONS
1529 bool "Kodi PVR addon was split"
1530 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02001531 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02001532 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02001533 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02001534 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02001535 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02001536 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02001537 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02001538 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02001539 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02001540 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02001541 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02001542 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02001543 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02001544 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02001545 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02001546 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001547 help
1548 Kodi PVR addon was split into seperate modules
1549
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001550config BR2_BINUTILS_VERSION_2_23_2
1551 bool "binutils 2.23 option renamed"
1552 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001553 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001554 Binutils 2.23.2 has been removed, using a newer version is
1555 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001556
1557config BR2_BINUTILS_VERSION_2_24
1558 bool "binutils 2.24 option renamed"
1559 select BR2_LEGACY
1560 select BR2_BINUTILS_VERSION_2_24_X
1561 help
1562 The binutils version option has been renamed to match the
1563 same patchlevel logic used by gcc. The new option is now
1564 BR2_BINUTILS_VERSION_2_24_X.
1565
1566config BR2_BINUTILS_VERSION_2_25
1567 bool "binutils 2.25 option renamed"
1568 select BR2_LEGACY
1569 select BR2_BINUTILS_VERSION_2_25_X
1570 help
1571 The binutils version option has been renamed to match the
1572 same patchlevel logic used by gcc. The new option is now
1573 BR2_BINUTILS_VERSION_2_25_X.
1574
Romain Naour1326e762015-07-14 19:35:14 +02001575config BR2_PACKAGE_PERF
1576 bool "perf option has been renamed"
1577 select BR2_LEGACY
1578 select BR2_LINUX_KERNEL_TOOL_PERF
1579 help
1580 The perf package has been moved as a Linux tools package,
1581 and the option to enable it is now
1582 BR2_LINUX_KERNEL_TOOL_PERF.
1583
Thomas Petazzoni2f845952015-07-11 14:52:53 +02001584config BR2_BINUTILS_VERSION_2_22
1585 bool "binutils 2.22 removed"
1586 select BR2_LEGACY
1587 help
1588 Binutils 2.22 has been removed, using a newer version is
1589 recommended.
1590
Gary Bisson4c0613e2015-05-26 10:19:37 +02001591config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1592 bool "gpu-viv-bin-mx6q"
1593 select BR2_LEGACY
1594 select BR2_PACKAGE_IMX_GPU_VIV
1595 help
1596 Vivante graphics libraries have been renamed to
1597 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1598 name.
1599
Matt Weber7742abe2015-06-02 08:28:35 -05001600config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
1601 depends on BR2_PACKAGE_PYTHON
1602 bool "libsemanage python bindings removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001603 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05001604 help
1605 This option has been removed, since the libsemanage Python
1606 bindings on the target were not useful.
1607
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001608config BR2_TARGET_UBOOT_NETWORK
1609 bool "U-Boot custom network settings removed"
1610 select BR2_LEGACY
1611 help
1612 U-Boot's custom network settings options have been removed.
1613
1614###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001615comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001616
Michał Leśniewskie3904a82015-05-19 20:26:30 +02001617config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1618 bool "jffs2 16kB erasesize NAND flash option renamed"
1619 select BR2_LEGACY
1620 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1621 help
1622 The JFFS2 NAND flash options now longer include the page
1623 size.
1624
1625config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1626 bool "jffs2 128kB erasesize NAND flash option renamed"
1627 select BR2_LEGACY
1628 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
1629 help
1630 The JFFS2 NAND flash options now longer include the page
1631 size.
1632
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02001633config BR2_PACKAGE_MONO_20
1634 bool "2.0/3.5 .Net Runtime"
1635 select BR2_LEGACY
1636 help
1637 This option no longer exists, all versions of the .Net
1638 runtime are now installed.
1639
1640config BR2_PACKAGE_MONO_40
1641 bool "4.0 .Net Runtime"
1642 select BR2_LEGACY
1643 help
1644 This option no longer exists, all versions of the .Net
1645 runtime are now installed.
1646
1647config BR2_PACKAGE_MONO_45
1648 bool "4.5 .Net Runtime"
1649 select BR2_LEGACY
1650 help
1651 This option no longer exists, all versions of the .Net
1652 runtime are now installed.
1653
Peter Korsgaardefd49e32015-04-27 22:29:05 +02001654config BR2_CIVETWEB_WITH_LUA
1655 bool "civetweb lua option renamed"
1656 select BR2_LEGACY
1657 select BR2_PACKAGE_CIVETWEB_WITH_LUA
1658 help
1659 civetweb's lua option has been renamed to
1660 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
1661 packages name options.
1662
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02001663config BR2_PACKAGE_TIFF_TIFF2PDF
1664 bool "tiff utility-specific option removed"
1665 select BR2_LEGACY
1666 select BR2_PACKAGE_TIFF_UTILITIES
1667 help
1668 utility-specific options have been removed in favour of
1669 the new option BR2_PACKAGE_TIFF_UTILITIES.
1670
1671config BR2_PACKAGE_TIFF_TIFFCP
1672 bool "tiff utility-specific option removed"
1673 select BR2_LEGACY
1674 select BR2_PACKAGE_TIFF_UTILITIES
1675 help
1676 utility-specific options have been removed in favour of
1677 the new option BR2_PACKAGE_TIFF_UTILITIES.
1678
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001679config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
1680 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001681 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001682 help
1683 This option has never worked, so it has been removed.
1684
Yann E. MORIN02917962015-03-24 19:54:15 +01001685config BR2_TARGET_GENERIC_PASSWD_DES
1686 bool "Encoding passwords with DES has been removed"
1687 select BR2_LEGACY
1688 help
1689 Paswords can now only be encoded with either of md5, sha256 or sha512.
1690 The default is md5, which is stronger that DES (but still pretty weak).
1691
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03001692config BR2_PACKAGE_GTK2_THEME_HICOLOR
1693 bool "hicolor (default theme) is a duplicate"
1694 select BR2_LEGACY
1695 select BR2_PACKAGE_HICOLOR_ICON_THEME
1696 help
1697 The option was just a duplicate of hicolor icon theme.
1698
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001699config BR2_PACKAGE_VALGRIND_PTRCHECK
1700 bool "valgrind's PTRCheck was renamed to SGCheck"
1701 select BR2_LEGACY
1702 select BR2_PACKAGE_VALGRIND_SGCHECK
1703 help
1704 PTRCheck was renamed to SGCheck in valgrind
1705
1706###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001707comment "Legacy options removed in 2015.02"
1708
Pedro Aguilar10900c02015-02-27 06:38:07 +02001709config BR2_PACKAGE_LIBGC
1710 bool "libgc package removed"
1711 select BR2_LEGACY
1712 select BR2_PACKAGE_BDWGC
1713 help
1714 libgc has been removed because we have the same package under a
1715 different name, bdwgc.
1716
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01001717config BR2_PACKAGE_WDCTL
1718 bool "util-linux' wdctl option has been renamed"
1719 select BR2_LEGACY
1720 select BR2_PACKAGE_UTIL_LINUX_WDCTL
1721 help
1722 util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
1723 to be aligned with how the other options are named.
1724
Danomi Manchegoe44edb82015-07-13 22:57:06 -04001725config BR2_PACKAGE_UTIL_LINUX_ARCH
1726 bool "util-linux' arch option has been removed"
1727 select BR2_LEGACY
1728 help
1729 util-linux' arch was dropped in util-linux 2.23, in favor of
1730 the coreutils version.
1731
1732config BR2_PACKAGE_UTIL_LINUX_DDATE
1733 bool "util-linux' ddate option has been removed"
1734 select BR2_LEGACY
1735 help
1736 util-linux' ddate was dropped in util-linux 2.23.
1737
Romain Naour3c476542015-01-18 20:53:08 +01001738config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
1739 bool "rpm's bzip2 payloads option has been removed"
1740 select BR2_LEGACY
1741 select BR2_PACKAGE_BZIP2
1742 help
1743 The bzip2 payloads option rely entirely on the dependant package bzip2.
1744 So, you need to select it to enable this feature.
1745
1746config BR2_PACKAGE_RPM_XZ_PAYLOADS
1747 bool "rpm's xz payloads option has been removed"
1748 select BR2_LEGACY
1749 select BR2_PACKAGE_XZ
1750 help
1751 The xz payloads option rely entirely on the dependant package xz.
1752 So, you need to select it to enable this feature.
1753
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03001754config BR2_PACKAGE_M4
1755 bool "m4 target package removed"
1756 select BR2_LEGACY
1757 help
1758 The m4 target package has been removed, it's been
1759 deprecated for some time now.
1760
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03001761config BR2_PACKAGE_FLEX_BINARY
1762 bool "flex binary in target option removed"
1763 select BR2_LEGACY
1764 help
1765 The flex binary in the target option has been removed.
1766 It's been deprecated for some time now and is essentially a
1767 development tool which isn't very useful in the target.
1768
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03001769config BR2_PACKAGE_BISON
1770 bool "bison target package removed"
1771 select BR2_LEGACY
1772 help
1773 The bison target package has been removed, it's been
1774 deprecated for some time now and is essentially a development
1775 tool which isn't very useful in the target.
1776
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03001777config BR2_PACKAGE_GOB2
1778 bool "gob2 target package removed"
1779 select BR2_LEGACY
1780 help
1781 The gob2 target package has been removed, it's been
1782 deprecated for some time now and was essentially useless
1783 without a target toolchain.
1784
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03001785config BR2_PACKAGE_DISTCC
1786 bool "distcc target package removed"
1787 select BR2_LEGACY
1788 help
1789 The distcc target package has been removed, it's been
1790 deprecated for some time now and was essentially useless
1791 without a target toolchain.
1792
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03001793config BR2_PACKAGE_HASERL_VERSION_0_8_X
1794 bool "haserl 0.8.x version removed"
1795 select BR2_LEGACY
1796 help
1797 The 0.8.x version option for haserl has been removed since it
1798 has been deprecated for some time now.
1799 You should be able to use the 0.9.x version without issues.
1800
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03001801config BR2_PACKAGE_STRONGSWAN_TOOLS
1802 bool "strongswan option has been removed"
1803 select BR2_LEGACY
1804 select BR2_PACKAGE_STRONGSWAN_PKI
1805 select BR2_PACKAGE_STRONGSWAN_SCEP
1806 help
1807 The tools option has been removed upstream and the different tools
1808 have been split between the pki and scep options, with others
1809 deprecated.
1810
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001811config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001812 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001813 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001814 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001815 According to the github project page:
1816 https://github.com/pipelka/xbmc-addon-xvdr
1817 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001818
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01001819config BR2_PACKAGE_XBMC_PVR_ADDONS
1820 bool "xbmc options have been renamed"
1821 select BR2_LEGACY
1822 select BR2_PACKAGE_KODI_PVR_ADDONS
1823 help
1824 The XBMC media center project was renamed to Kodi entertainment center
1825
Bernd Kuhls35784592014-12-23 18:46:27 +01001826config BR2_PACKAGE_XBMC
1827 bool "xbmc options have been renamed"
1828 select BR2_LEGACY
1829 select BR2_PACKAGE_KODI
1830 help
1831 The XBMC media center project was renamed to Kodi entertainment center
1832
1833config BR2_PACKAGE_XBMC_ALSA_LIB
1834 bool "xbmc options have been renamed"
1835 select BR2_LEGACY
1836 select BR2_PACKAGE_KODI_ALSA_LIB
1837 help
1838 The XBMC media center project was renamed to Kodi entertainment center
1839
1840config BR2_PACKAGE_XBMC_AVAHI
1841 bool "xbmc options have been renamed"
1842 select BR2_LEGACY
1843 select BR2_PACKAGE_KODI_AVAHI
1844 help
1845 The XBMC media center project was renamed to Kodi entertainment center
1846
1847config BR2_PACKAGE_XBMC_DBUS
1848 bool "xbmc options have been renamed"
1849 select BR2_LEGACY
1850 select BR2_PACKAGE_KODI_DBUS
1851 help
1852 The XBMC media center project was renamed to Kodi entertainment center
1853
1854config BR2_PACKAGE_XBMC_LIBBLURAY
1855 bool "xbmc options have been renamed"
1856 select BR2_LEGACY
1857 select BR2_PACKAGE_KODI_LIBBLURAY
1858 help
1859 The XBMC media center project was renamed to Kodi entertainment center
1860
1861config BR2_PACKAGE_XBMC_GOOM
1862 bool "xbmc options have been renamed"
1863 select BR2_LEGACY
1864 select BR2_PACKAGE_KODI_GOOM
1865 help
1866 The XBMC media center project was renamed to Kodi entertainment center
1867
1868config BR2_PACKAGE_XBMC_RSXS
1869 bool "xbmc options have been renamed"
1870 select BR2_LEGACY
1871 select BR2_PACKAGE_KODI_RSXS
1872 help
1873 The XBMC media center project was renamed to Kodi entertainment center
1874
1875config BR2_PACKAGE_XBMC_LIBCEC
1876 bool "xbmc options have been renamed"
1877 select BR2_LEGACY
1878 select BR2_PACKAGE_KODI_LIBCEC
1879 help
1880 The XBMC media center project was renamed to Kodi entertainment center
1881
1882config BR2_PACKAGE_XBMC_LIBMICROHTTPD
1883 bool "xbmc options have been renamed"
1884 select BR2_LEGACY
1885 select BR2_PACKAGE_KODI_LIBMICROHTTPD
1886 help
1887 The XBMC media center project was renamed to Kodi entertainment center
1888
1889config BR2_PACKAGE_XBMC_LIBNFS
1890 bool "xbmc options have been renamed"
1891 select BR2_LEGACY
1892 select BR2_PACKAGE_KODI_LIBNFS
1893 help
1894 The XBMC media center project was renamed to Kodi entertainment center
1895
1896config BR2_PACKAGE_XBMC_RTMPDUMP
1897 bool "xbmc options have been renamed"
1898 select BR2_LEGACY
1899 select BR2_PACKAGE_KODI_RTMPDUMP
1900 help
1901 The XBMC media center project was renamed to Kodi entertainment center
1902
1903config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
1904 bool "xbmc options have been renamed"
1905 select BR2_LEGACY
1906 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
1907 help
1908 The XBMC media center project was renamed to Kodi entertainment center
1909
1910config BR2_PACKAGE_XBMC_LIBSMBCLIENT
1911 bool "xbmc options have been renamed"
1912 select BR2_LEGACY
1913 select BR2_PACKAGE_KODI_LIBSMBCLIENT
1914 help
1915 The XBMC media center project was renamed to Kodi entertainment center
1916
1917config BR2_PACKAGE_XBMC_LIBTHEORA
1918 bool "xbmc options have been renamed"
1919 select BR2_LEGACY
1920 select BR2_PACKAGE_KODI_LIBTHEORA
1921 help
1922 The XBMC media center project was renamed to Kodi entertainment center
1923
1924config BR2_PACKAGE_XBMC_LIBUSB
1925 bool "xbmc options have been renamed"
1926 select BR2_LEGACY
1927 select BR2_PACKAGE_KODI_LIBUSB
1928 help
1929 The XBMC media center project was renamed to Kodi entertainment center
1930
1931config BR2_PACKAGE_XBMC_LIBVA
1932 bool "xbmc options have been renamed"
1933 select BR2_LEGACY
1934 select BR2_PACKAGE_KODI_LIBVA
1935 help
1936 The XBMC media center project was renamed to Kodi entertainment center
1937
1938config BR2_PACKAGE_XBMC_WAVPACK
1939 bool "xbmc options have been renamed"
1940 select BR2_LEGACY
1941 select BR2_PACKAGE_KODI_WAVPACK
1942 help
1943 The XBMC media center project was renamed to Kodi entertainment center
1944
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001945config BR2_PREFER_STATIC_LIB
1946 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01001947 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001948 help
1949 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
1950 highlights the fact that the option no longer "prefers"
1951 static libraries, but "enforces" static libraries (i.e
1952 shared libraries are completely unused).
1953
Samuel Martina44b1c12014-12-14 17:24:24 +01001954 Take care of updating the type of libraries you want under the
1955 "Build options" menu.
1956
Bernd Kuhls35784592014-12-23 18:46:27 +01001957###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02001958comment "Legacy options removed in 2014.11"
1959
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001960config BR2_x86_generic
1961 bool "x86 generic variant has been removed"
1962 select BR2_LEGACY
1963 help
1964 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02001965 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001966
Andreas Larsson40e18f22014-10-30 09:29:36 +01001967config BR2_GCC_VERSION_4_4_X
1968 bool "gcc 4.4.x has been removed"
1969 select BR2_LEGACY
1970 help
1971 The 4.4.x version of gcc has been removed. Use a newer
1972 version instead.
1973
Andreas Larsson43b78e72014-10-30 09:29:35 +01001974config BR2_sparc_sparchfleon
1975 bool "sparchfleon CPU has been removed"
1976 select BR2_LEGACY
1977 help
1978 The sparchfleon CPU was only supported in a patched gcc 4.4
1979 version. Its support has been removed in favor of the leon3
1980 CPU starting from gcc 4.8.x.
1981
1982config BR2_sparc_sparchfleonv8
1983 bool "sparchfleonv8 CPU has been removed"
1984 select BR2_LEGACY
1985 help
1986 The sparchfleonv8 CPU was only supported in a patched gcc
1987 4.4 version. Its support has been removed in favor of the
1988 leon3 CPU starting from gcc 4.8.x.
1989
1990config BR2_sparc_sparcsfleon
1991 bool "sparcsfleon CPU has been removed"
1992 select BR2_LEGACY
1993 help
1994 The sparcsfleon CPU was only supported in a patched gcc 4.4
1995 version. Its support has been removed in favor of the leon3
1996 CPU starting from gcc 4.8.x.
1997
1998config BR2_sparc_sparcsfleonv8
1999 bool "sparcsfleonv8 CPU has been removed"
2000 select BR2_LEGACY
2001 help
2002 The sparcsfleonv8 CPU was only supported in a patched gcc
2003 4.4 version. Its support has been removed in favor of the
2004 leon3 CPU starting from gcc 4.8.x.
2005
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02002006config BR2_PACKAGE_XLIB_LIBPCIACCESS
2007 bool "xlib-libpciaccess option has been renamed"
2008 depends on BR2_PACKAGE_XORG7
2009 select BR2_LEGACY
2010 select BR2_PACKAGE_LIBPCIACCESS
2011 help
2012 libpciaccess neither depends on X11 nor Xlib. Thus the
2013 package has been renamed BR2_PACKAGE_LIBPCIACCESS
2014
Yann E. MORINb581bba2014-09-21 20:38:13 +02002015config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
2016 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002017 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02002018 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
2019 help
2020 The Xceive xc5000 option now also handles older firmwares from
2021 Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
2022 from Cresta, who bought Xceive.
2023
Yann E. MORINdac546e2014-09-21 20:38:12 +02002024config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2025 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002026 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02002027 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2028 help
2029 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2030 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2031 to better account for the fact that a T5 variant exists.
2032
Yann E. MORIN120136e2014-09-21 20:38:09 +02002033config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
2034 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002035 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02002036 help
2037 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
2038 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
2039 select it in:
2040 Target packages -> Hardware handling ->
2041 Firmware -> linux-firmware -> WiFi firmware ->
2042 iwlwifi 3160/726x revision to use (revision 7)
2043
2044config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
2045 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002046 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02002047 help
2048 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
2049 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
2050 select it in:
2051 Target packages -> Hardware handling ->
2052 Firmware -> linux-firmware -> WiFi firmware ->
2053 iwlwifi 3160/726x revision to use (revision 8)
2054
2055###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002056comment "Legacy options removed in 2014.08"
2057
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02002058config BR2_PACKAGE_LIBELF
2059 bool "libelf has been removed"
2060 select BR2_PACKAGE_ELFUTILS
2061 select BR2_LEGACY
2062 help
2063 The libelf package provided an old version of the libelf library
2064 and is deprecated. The libelf library is now provided by the
2065 elfutils package.
2066
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002067config BR2_KERNEL_HEADERS_3_8
2068 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002069 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002070 select BR2_LEGACY
2071 help
2072 Version 3.8.x of the Linux kernel headers have been deprecated
2073 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002074 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02002075 automatically selected in your configuration.
2076
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02002077config BR2_PACKAGE_GETTEXT_TOOLS
2078 bool "support for gettext-tools on target has been removed"
2079 select BR2_LEGACY
2080 help
2081 The option to install the gettext utilities on the target
2082 has been removed. This is not necessary as Buildroot is not
2083 designed to provide a full development environment on the
2084 target. gettext tools should be used on the build machine
2085 instead.
2086
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002087config BR2_PACKAGE_PROCPS
2088 bool "procps has been replaced by procps-ng"
2089 select BR2_PACKAGE_PROCPS_NG
2090 select BR2_LEGACY
2091 help
2092 The procps package has been replaced by the equivalent procps-ng.
2093
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02002094config BR2_BINUTILS_VERSION_2_20_1
2095 bool "binutils 2.20.1 has been removed"
2096 select BR2_LEGACY
2097 help
2098 The 2.20.1 version of binutils has been removed. Use a newer
2099 version instead.
2100
2101config BR2_BINUTILS_VERSION_2_21
2102 bool "binutils 2.21 has been removed"
2103 select BR2_LEGACY
2104 help
2105 The 2.21 version of binutils has been removed. Use a newer
2106 version instead.
2107
2108config BR2_BINUTILS_VERSION_2_23_1
2109 bool "binutils 2.23.1 has been removed"
2110 select BR2_LEGACY
2111 help
2112 The 2.23.1 version of binutils has been removed. Use a newer
2113 version instead.
2114
Thomas Petazzoni506b9642014-07-01 20:03:03 +02002115config BR2_UCLIBC_VERSION_0_9_32
2116 bool "uclibc 0.9.32 has been removed"
2117 select BR2_LEGACY
2118 help
2119 The 0.9.32 version of uClibc has been removed. Use a newer
2120 version instead.
2121
Thomas Petazzonid10e0802014-07-01 20:03:06 +02002122config BR2_GCC_VERSION_4_3_X
2123 bool "gcc 4.3.x has been removed"
2124 select BR2_LEGACY
2125 help
2126 The 4.3.x version of gcc has been removed. Use a newer
2127 version instead.
2128
2129config BR2_GCC_VERSION_4_6_X
2130 bool "gcc 4.6.x has been removed"
2131 select BR2_LEGACY
2132 help
2133 The 4.6.x version of gcc has been removed. Use a newer
2134 version instead.
2135
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002136config BR2_GDB_VERSION_7_4
2137 bool "gdb 7.4 has been removed"
2138 select BR2_LEGACY
2139 help
2140 The 7.4 version of gdb has been removed. Use a newer version
2141 instead.
2142
2143config BR2_GDB_VERSION_7_5
2144 bool "gdb 7.5 has been removed"
2145 select BR2_LEGACY
2146 help
2147 The 7.5 version of gdb has been removed. Use a newer version
2148 instead.
2149
Thomas Petazzonib18dca02014-07-01 20:03:09 +02002150config BR2_BUSYBOX_VERSION_1_19_X
2151 bool "busybox version selection has been removed"
2152 select BR2_LEGACY
2153 help
2154 The possibility of selecting the Busybox version has been
2155 removed. Use the latest version provided by the Busybox
2156 package instead.
2157
2158config BR2_BUSYBOX_VERSION_1_20_X
2159 bool "busybox version selection has been removed"
2160 select BR2_LEGACY
2161 help
2162 The possibility of selecting the Busybox version has been
2163 removed. Use the latest version provided by the Busybox
2164 package instead.
2165
2166config BR2_BUSYBOX_VERSION_1_21_X
2167 bool "busybox version selection has been removed"
2168 select BR2_LEGACY
2169 help
2170 The possibility of selecting the Busybox version has been
2171 removed. Use the latest version provided by the Busybox
2172 package instead.
2173
Ezequiel García07ac0452014-07-05 18:07:40 -03002174config BR2_PACKAGE_LIBV4L_DECODE_TM6000
2175 bool "decode_tm6000"
2176 select BR2_PACKAGE_LIBV4L_UTILS
2177 select BR2_LEGACY
2178 help
2179 This libv4l option has been deprecated and replaced by a single
2180 option to build all the libv4l utilities.
2181
2182config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
2183 bool "ir-keytable"
2184 select BR2_PACKAGE_LIBV4L_UTILS
2185 select BR2_LEGACY
2186 help
2187 This libv4l option has been deprecated and replaced by a single
2188 option to build all the libv4l utilities.
2189
2190config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
2191 bool "v4l2-compliance"
2192 select BR2_PACKAGE_LIBV4L_UTILS
2193 select BR2_LEGACY
2194 help
2195 This libv4l option has been deprecated and replaced by a single
2196 option to build all the libv4l utilities.
2197
2198config BR2_PACKAGE_LIBV4L_V4L2_CTL
2199 bool "v4l2-ctl"
2200 select BR2_PACKAGE_LIBV4L_UTILS
2201 select BR2_LEGACY
2202 help
2203 This libv4l option has been deprecated and replaced by a single
2204 option to build all the libv4l utilities.
2205
2206config BR2_PACKAGE_LIBV4L_V4L2_DBG
2207 bool "v4l2-dbg"
2208 select BR2_PACKAGE_LIBV4L_UTILS
2209 select BR2_LEGACY
2210 help
2211 This libv4l option has been deprecated and replaced by a single
2212 option to build all the libv4l utilities.
2213
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002214###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002215comment "Legacy options removed in 2014.05"
2216
Peter Seiderer4990a382014-04-23 00:12:23 +02002217config BR2_PACKAGE_EVTEST_CAPTURE
2218 bool "evtest-capture support removed (dropped since evtest 1.31)"
2219 select BR2_LEGACY
2220 help
2221 Support for evtest-capture has been removed (dropped from
2222 evtest package since version 1.31), use evemu package
2223 instead.
2224
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002225config BR2_KERNEL_HEADERS_3_6
2226 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002227 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002228 select BR2_LEGACY
2229 help
2230 Version 3.6.x of the Linux kernel headers have been deprecated
2231 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002232 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002233 automatically selected in your configuration.
2234
2235config BR2_KERNEL_HEADERS_3_7
2236 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002237 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002238 select BR2_LEGACY
2239 help
2240 Version 3.7.x of the Linux kernel headers have been deprecated
2241 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002242 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002243 automatically selected in your configuration.
2244
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02002245config BR2_PACKAGE_VALA
2246 bool "vala target package has been removed"
2247 select BR2_LEGACY
2248 help
2249 The 'vala' target package has been removed since it has been
2250 deprecated for more than four buildroot releases.
2251 Note: the host vala package still exists.
2252
Yann E. MORINd6a37912014-04-07 21:58:03 +02002253config BR2_TARGET_TZ_ZONELIST
2254 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
2255
2256config BR2_PACKAGE_TZDATA_ZONELIST
2257 string "tzdata: the timezone list option has been renamed"
2258 help
2259 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
2260 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
2261 menu. You'll need to select BR2_TARGET_TZ_INFO.
2262
2263config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
2264 bool
2265 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
2266 select BR2_LEGACY
2267
Yann E. MORINc97aeb72014-04-05 17:21:43 +02002268config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
2269 bool "Lua command-line editing none has been renamed"
2270 select BR2_LEGACY
2271 help
2272 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
2273 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
2274 it in the corresponding choice.
2275
2276config BR2_PACKAGE_LUA_INTERPRETER_READLINE
2277 bool "Lua command-line editing using readline has been renamed"
2278 select BR2_LEGACY
2279 help
2280 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
2281 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
2282 it in the corresponding choice.
2283
2284config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
2285 bool "Lua command-line editing using linenoise has been renamed"
2286 select BR2_LEGACY
2287 help
2288 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
2289 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
2290 it in the corresponding choice.
2291
Yann E. MORIN365ae612014-03-28 01:00:24 +01002292config BR2_PACKAGE_DVB_APPS_UTILS
2293 bool "dvb-apps utilities now built by default"
2294 select BR2_LEGACY
2295 help
2296 The dvb-apps utilities are now always built when the dvb-apps
2297 package is selected.
2298
Yann E. MORIN971e3312014-03-01 15:52:56 +01002299config BR2_KERNEL_HEADERS_SNAP
2300 bool "Local Linux snapshot support removed"
2301 select BR2_LEGACY
2302 help
2303 Support for using a custom snapshot to install the Linux
2304 kernel headers has been removed.
2305
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002306config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
2307 bool "/dev management by udev removed"
2308 select BR2_LEGACY
2309 help
2310 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002311 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002312
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002313 Therefore, if you are not using 'systemd' as init system, you
2314 must choose 'Dynamic using eudev' in the '/dev management'
2315 menu to get the same behaviour as in your old configuration.
2316
2317 If you are using 'systemd', its internal implementation of
2318 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002319
2320 You must also check the packages depending on 'udev' are still
2321 selected.
2322
2323config BR2_PACKAGE_UDEV
2324 bool "udev is now a virtual package"
2325 select BR2_LEGACY
2326 select BR2_PACKAGE_HAS_UDEV
2327 help
2328 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002329 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002330
2331 Your old configuration refers to packages depending on 'udev',
2332 either for build or at runtime.
2333
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002334 Check that a 'udev' provider is selected. If you are not using
2335 'systemd' as init system, 'eudev' should be selected, which is
2336 the case if '/dev management' is set to 'Dynamic using eudev'.
2337
2338 If you are using 'systemd', its internal implementation of 'udev'
2339 is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002340
2341config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002342 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002343 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002344 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
2345 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002346 help
2347 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002348 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002349
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002350 If you are not using 'systemd' as init system, udev rules
2351 generation will be handled by 'eudev'. Check that
2352 '/dev management' is set to 'Dynamic using eudev' to get
2353 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002354
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002355 If you are using 'systemd', it internal implementation of 'udev'
2356 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002357
2358config BR2_PACKAGE_UDEV_ALL_EXTRAS
2359 bool "udev extras removed"
2360 select BR2_LEGACY
2361 help
2362 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002363 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002364
2365 The option to enable the extra features of 'udev' (gudev, ...)
2366 has been removed. These features are automatically enabled in
2367 the 'udev' providers if the dependencies are selected. For
2368 example, selecting 'libglib2' will trigger the build of gudev.
2369
Bernd Kuhls5562be12014-03-01 16:41:10 +01002370config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
2371 bool "xlib-libpthread-stubs option has been renamed"
2372 depends on BR2_PACKAGE_XORG7
2373 select BR2_LEGACY
2374 select BR2_PACKAGE_LIBPTHREAD_STUBS
2375 help
2376 The pthread stubs neither depend on X11 nor Xlib. Thus the
2377 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
2378
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002379###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01002380comment "Legacy options removed in 2014.02"
2381
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002382config BR2_sh2
2383 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002384 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002385 help
2386 Due to an inexistent user base and generally poor Linux
2387 support, the support for the SH2 architecture was removed.
2388
2389config BR2_sh3
2390 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002391 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002392 help
2393 Due to an inexistent user base and generally poor Linux
2394 support, the support for the SH3 architecture was removed.
2395
2396config BR2_sh3eb
2397 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002398 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002399 help
2400 Due to an inexistent user base and generally poor Linux
2401 support, the support for the SH3eb architecture was removed.
2402
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002403config BR2_KERNEL_HEADERS_3_1
2404 bool "kernel headers version 3.1.x are no longer supported"
2405 select BR2_KERNEL_HEADERS_3_2
2406 select BR2_LEGACY
2407 help
2408 Version 3.1.x of the Linux kernel headers have been deprecated
2409 for more than four buildroot releases and are now removed.
2410 As an alternative, version 3.2.x of the headers have been
2411 automatically selected in your configuration.
2412
2413config BR2_KERNEL_HEADERS_3_3
2414 bool "kernel headers version 3.3.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002415 select BR2_KERNEL_HEADERS_3_2
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002416 select BR2_LEGACY
2417 help
2418 Version 3.3.x of the Linux kernel headers have been deprecated
2419 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002420 As an alternative, version 3.2.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002421 automatically selected in your configuration.
2422
2423config BR2_KERNEL_HEADERS_3_5
2424 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002425 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002426 select BR2_LEGACY
2427 help
2428 Version 3.5.x of the Linux kernel headers have been deprecated
2429 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002430 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002431 automatically selected in your configuration.
2432
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002433config BR2_GDB_VERSION_7_2
2434 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002435 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002436 select BR2_LEGACY
2437 help
2438 Version 7.2.x of gdb has been deprecated for more than four
2439 buildroot releases and is now removed. As an alternative, gdb
2440 7.5.x has been automatically selected in your configuration.
2441
2442config BR2_GDB_VERSION_7_3
2443 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002444 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002445 select BR2_LEGACY
2446 help
2447 Version 7.3.x of gdb has been deprecated for more than four
2448 buildroot releases and is now removed. As an alternative, gdb
2449 7.5.x has been automatically selected in your configuration.
2450
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01002451config BR2_PACKAGE_CCACHE
2452 bool "ccache target package has been removed"
2453 select BR2_LEGACY
2454 help
2455 The 'ccache' target package has been removed since it has been
2456 deprecated for more than four buildroot releases.
2457 Note: using ccache for speeding up builds is still supported.
2458
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01002459config BR2_HAVE_DOCUMENTATION
2460 bool "support for documentation on target has been removed"
2461 select BR2_LEGACY
2462 help
2463 Support for documentation on target has been removed since it has
2464 been deprecated for more than four buildroot releases.
2465
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01002466config BR2_PACKAGE_AUTOMAKE
2467 bool "automake target package has been removed"
2468 select BR2_LEGACY
2469 help
2470 The 'automake' target package has been removed since it has been
2471 deprecated for more than four buildroot releases.
2472 Note: the host automake still exists.
2473
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01002474config BR2_PACKAGE_AUTOCONF
2475 bool "autoconf target package has been removed"
2476 select BR2_LEGACY
2477 help
2478 The 'autoconf' target package has been removed since it has been
2479 deprecated for more than four buildroot releases.
2480 Note: the host autoconf still exists.
2481
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01002482config BR2_PACKAGE_XSTROKE
2483 bool "xstroke has been removed"
2484 select BR2_LEGACY
2485 help
2486 The 'xstroke' package has been removed since it has been
2487 deprecated for more than four buildroot releases.
2488
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01002489config BR2_PACKAGE_LZMA
2490 bool "lzma target package has been removed"
2491 select BR2_LEGACY
2492 help
2493 The 'lzma' target package has been removed since it has been
2494 deprecated for more than four buildroot releases.
2495 Note: generating lzma-compressed rootfs images is still supported.
2496
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01002497config BR2_PACKAGE_TTCP
2498 bool "ttcp has been removed"
2499 select BR2_LEGACY
2500 help
2501 The 'ttcp' package has been removed since it has been
2502 deprecated for more than four buildroot releases.
2503
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002504config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002505 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002506 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002507 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002508 help
2509 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002510 to 'libllcp'. We have added a new package for 'libllcp' and bumped
2511 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002512
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00002513config BR2_PACKAGE_MYSQL_CLIENT
2514 bool "MySQL client renamed to MySQL"
2515 select BR2_LEGACY
2516 select BR2_PACKAGE_MYSQL
2517 help
2518 The option has been renamed BR2_PACKAGE_MYSQL
2519
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01002520config BR2_PACKAGE_SQUASHFS3
2521 bool "squashfs3 has been removed"
2522 select BR2_LEGACY
2523 select BR2_PACKAGE_SQUASHFS
2524 help
2525 The 'squashfs3' package has been removed since it has been
2526 deprecated for more than four buildroot releases. Package
2527 'squashfs' (4) has been selected automatically as replacement.
2528
2529config BR2_TARGET_ROOTFS_SQUASHFS3
2530 bool "squashfs3 rootfs support has been removed"
2531 select BR2_LEGACY
2532 help
2533 Together with the removal of the squashfs3 package, support
2534 for squashfs3 root filesystems has been removed too. Squashfs
2535 root filesystems will automatically use squashfs4 now.
2536
Arnaud Aujon560fe852013-12-15 20:23:12 +01002537config BR2_PACKAGE_NETKITBASE
2538 bool "netkitbase has been removed"
2539 select BR2_LEGACY
2540 help
2541 The 'netkitbase' package has been removed since it has been
2542 deprecated since 2012.11. This package provided 'inetd'
2543 which is replaced by 'xinet' and 'ping' which is replaced by
2544 'busybox' or 'fping'.
2545
2546config BR2_PACKAGE_NETKITTELNET
2547 bool "netkittelnet has been removed"
2548 select BR2_LEGACY
2549 help
2550 The 'netkittelnet' package has been removed since it has
2551 been deprecated since 2012.11. 'busybox' provides a telnet
2552 client and should be used instead.
2553
Francois Perrad63058f82014-01-11 16:42:09 +01002554config BR2_PACKAGE_LUASQL
2555 bool "luasql has been replaced by luasql-sqlite3"
2556 select BR2_PACKAGE_LUASQL_SQLITE3
2557 select BR2_LEGACY
2558 help
2559 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2560
Francois Perrada6c53472014-01-11 16:42:08 +01002561config BR2_PACKAGE_LUACJSON
2562 bool "luacjson has been replaced by lua-cjson"
2563 select BR2_PACKAGE_LUA_CJSON
2564 select BR2_LEGACY
2565 help
2566 The option has been renamed BR2_PACKAGE_LUA_CJSON.
2567
Arnaud Aujon560fe852013-12-15 20:23:12 +01002568###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002569comment "Legacy options removed in 2013.11"
2570
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01002571config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2572 bool "lvm2's 'dmsetup only' option removed"
2573 select BR2_LEGACY
2574 help
2575 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2576 led to problems with other packages that need the full lvm2
2577 suite. Therefore, the option has been replaced with the positive
2578 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2579
2580# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2581# in order to automatically propagate old configs
2582
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01002583config BR2_PACKAGE_QT_JAVASCRIPTCORE
2584 bool "qt javascriptcore option removed"
2585 select BR2_LEGACY
2586 help
2587 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2588 force the activation or disabling of the JIT compiler in the
2589 Qt Javascript interpreter. However, the JIT compiler is not
2590 available for all architectures, so forcing its activation
2591 does not always work. Moreover, Qt knows by itself for which
2592 architectures JIT support is possible, and will
2593 automatically enable it if possible.
2594
2595 Therefore, this option was in fact useless, and causing
2596 build problems when enabled on architectures for which the
2597 JIT support was not available. It has been removed, and
2598 there is no replacement: Qt will enable JIT at compile time
2599 when possible.
2600
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002601config BR2_PACKAGE_MODULE_INIT_TOOLS
2602 bool "module-init-tools replaced by kmod"
2603 select BR2_PACKAGE_KMOD
2604 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01002605 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002606 help
2607 The 'module-init-tools' package has been removed, since it
2608 has been depracated upstream and replaced by 'kmod'.
2609
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02002610config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2611 string "u-boot: the git repository URL option has been renamed"
2612 help
2613 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2614 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2615
2616config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2617 bool
2618 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2619 select BR2_LEGACY
2620
2621# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2622# boot/uboot/Config.in
2623
2624config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2625 string "u-boot: the git repository version option has been renamed"
2626 help
2627 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
2628 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
2629
2630config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
2631 bool
2632 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
2633 select BR2_LEGACY
2634
2635# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
2636# boot/uboot/Config.in
2637
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02002638config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
2639 string "linux: the git repository URL option has been renamed"
2640 help
2641 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
2642 been renamed to
2643 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
2644
2645config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
2646 bool
2647 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
2648 select BR2_LEGACY
2649
2650# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
2651# linux/Config.in
2652
2653config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
2654 string "linux: the git repository version option has been renamed"
2655 help
2656 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
2657 been renamed to
2658 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
2659
2660config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
2661 bool
2662 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
2663 select BR2_LEGACY
2664
2665# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
2666# linux/Config.in
2667
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002668###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002669comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002670
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02002671config BR2_ARM_OABI
2672 bool "ARM OABI support has been removed"
2673 select BR2_LEGACY
2674 help
2675 The support for the ARM OABI was deprecated since a while,
2676 and has been removed completely from Buildroot. It is also
2677 deprecated in upstream gcc, since gcc 4.7. People should
2678 switch to EABI instead, which should not be a problem as
2679 long as you don't have pre-built OABI binaries in your
2680 system that you can't recompile.
2681
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002682config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
2683 bool "dosfstools dosfsck renamed to fsck.fat"
2684 select BR2_LEGACY
2685 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
2686 help
2687 dosfsck was renamed upstream to fsck.fat for consistency.
2688
2689config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
2690 bool "dosfstools dosfslabel renamed to fatlabel"
2691 select BR2_LEGACY
2692 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
2693 help
2694 doslabel was renamed upstream to fatlabel for consistency.
2695
2696config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
2697 bool "dosfstools mkdosfs renamed to mkfs.fat"
2698 select BR2_LEGACY
2699 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
2700 help
2701 mkdosfs was renamed upstream to mkfs.fat for consistency.
2702
Thomas Petazzonie21db002013-06-30 21:28:57 +02002703config BR2_ELF2FLT
2704 bool "the elf2flt option has been renamed"
2705 select BR2_LEGACY
2706 help
2707 The BR2_ELF2FLT option has been renamed to
2708 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
2709 the package infrastructure.
2710
Thomas Petazzonid8060052013-07-16 10:03:17 +02002711config BR2_VFP_FLOAT
2712 bool "the ARM VFP floating point option has been renamed"
2713 select BR2_LEGACY
2714 help
2715 Due to a major refactoring of the floating-point handling of
2716 the ARM architecture support, the BR2_VFP_FLOAT option has
2717 been replaced with a choice of options that allows to select
2718 between various VFP versions/capabilities.
2719
Samuel Martinba8f82b2013-08-30 06:08:59 +02002720config BR2_PACKAGE_GCC_TARGET
2721 bool "gcc on the target filesystem has been removed"
2722 select BR2_LEGACY
2723 help
2724 The support for gcc in the target filesystem was deprecated
2725 since a while, and has been removed completely from Buildroot.
2726 See Buildroot's documentation for more explanations.
2727
2728config BR2_HAVE_DEVFILES
2729 bool "development files in target filesystem has been removed"
2730 select BR2_LEGACY
2731 help
2732 The installation of the development files in the target
2733 filesystem was deprecated since a while, and has been removed
2734 completely from Buildroot.
2735 See Buildroot's documentation for more explanations.
2736
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002737###############################################################################
2738comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +00002739
2740config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
2741 bool "Realtek 8192 replaced by Realtek 81xx"
2742 select BR2_LEGACY
2743 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
2744 help
2745 Now covers the whole Realtek 81xx familly: 8188/8192.
2746
2747config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
2748 bool "Realtek 8712 replaced by Realtek 87xx"
2749 select BR2_LEGACY
2750 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
2751 help
2752 Now covers the whole Realtek 87xx familly: 8712/8723.
2753
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002754###############################################################################
2755comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002756
Gustavo Zacarias94744212013-04-04 07:29:45 +00002757config BR2_sa110
2758 bool "sa110 ARM target switched to strongarm"
2759 select BR2_LEGACY
2760 select BR2_strongarm
2761 help
2762 The SA110 is the same as a generic StrongARM, it just differs
2763 in speed, peripherals and cache.
2764
2765config BR2_sa1100
2766 bool "sa1100 ARM target switched to strongarm"
2767 select BR2_LEGACY
2768 select BR2_strongarm
2769 help
2770 The SA1100 is the same as a generic StrongARM, it just differs
2771 in speed, peripherals and cache.
2772
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002773config BR2_PACKAGE_GDISK
2774 bool "gdisk has been replaced by gptfdisk"
2775 select BR2_LEGACY
2776 select BR2_PACKAGE_GPTFDISK
2777 help
2778 The option has been renamed BR2_PACKAGE_GPTFDISK.
2779
2780config BR2_PACKAGE_GDISK_GDISK
2781 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
2782 select BR2_LEGACY
2783 select BR2_PACKAGE_GPTFDISK
2784 select BR2_PACKAGE_GPTFDISK_GDISK
2785 help
2786 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
2787
2788config BR2_PACKAGE_GDISK_SGDISK
2789 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
2790 select BR2_LEGACY
2791 select BR2_PACKAGE_GPTFDISK
2792 select BR2_PACKAGE_GPTFDISK_SGDISK
2793 help
2794 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00002795
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +00002796config BR2_PACKAGE_GDB_HOST
2797 bool "gdb for the host option has been renamed"
2798 select BR2_PACKAGE_HOST_GDB
2799 select BR2_LEGACY
2800 help
2801 Due to the conversion of gdb to the package infrastructure,
2802 the BR2_PACKAGE_GDB_HOST option has been renamed
2803 BR2_PACKAGE_HOST_GDB.
2804
Carsten Schoenert76de0f82013-03-10 08:32:46 +00002805config BR2_PACKAGE_DIRECTB_DITHER_RGB16
2806 bool "DirectFB RGB16 dithering option has been renamed"
2807 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
2808 select BR2_LEGACY
2809 help
2810 The option has been renamed
2811 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
2812
2813config BR2_PACKAGE_DIRECTB_TESTS
2814 bool "DirectFB Tests option has been renamed"
2815 select BR2_PACKAGE_DIRECTFB_TESTS
2816 select BR2_LEGACY
2817 help
2818 The option has been renamed
2819 BR2_PACKAGE_DIRECTFB_TESTS.
2820
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002821###############################################################################
2822comment "Legacy options removed in 2012.11"
2823
Thomas Petazzoni12ccc432013-02-07 11:58:45 +00002824config BR2_PACKAGE_CUSTOMIZE
2825 bool "customize package has been removed"
2826 select BR2_LEGACY
2827 help
2828 The 'customize' special package has been removed. Instead,
2829 we recommend to create either your own packages, or use a
2830 post-build script to customize your root filesystem. See
2831 Buildroot's documentation for more details.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002832
2833config BR2_PACKAGE_XSERVER_xorg
2834 bool "X.org modular server"
2835 select BR2_LEGACY
2836 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
2837 help
2838 The option has been renamed
2839 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
2840
2841config BR2_PACKAGE_XSERVER_tinyx
2842 bool "KDrive / TinyX server"
2843 select BR2_LEGACY
2844 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
2845 help
2846 The option has been renamed
2847 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
2848
2849config BR2_PACKAGE_PTHREAD_STUBS
2850 bool "pthread-stubs option has been renamed"
2851 select BR2_LEGACY
Bernd Kuhls5562be12014-03-01 16:41:10 +01002852 select BR2_PACKAGE_LIBPTHREAD_STUBS
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002853 help
2854 For consistency reason, the pthread-stubs package has been
Bernd Kuhls5562be12014-03-01 16:41:10 +01002855 renamed to libpthread-stubs.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002856
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002857###############################################################################
2858comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00002859
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +00002860config BR2_PACKAGE_GETTEXT_STATIC
2861 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
2862 select BR2_LEGACY
2863 help
2864 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
2865
2866
2867config BR2_PACKAGE_LIBINTL
2868 bool "libintl"
2869 select BR2_LEGACY
2870 select BR2_PACKAGE_GETTEXT
2871 help
2872 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
2873 only installs the library, not the executables.
2874
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +00002875config BR2_PACKAGE_INPUT_TOOLS_EVTEST
2876 bool "input-tools evtest is now a separate package evtest"
2877 select BR2_LEGACY
2878 select BR2_PACKAGE_EVTEST
2879 help
2880 The evtest program from input-tools is now a separate package.
2881
Sonic Zhang57133822013-05-03 00:39:34 +00002882config BR2_BFIN_FDPIC
2883 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
2884 select BR2_BINFMT_FDPIC
2885 select BR2_LEGACY
2886
2887config BR2_BFIN_FLAT
2888 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
2889 select BR2_BINFMT_FLAT
2890 select BR2_LEGACY
2891
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00002892endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02002893
2894endif # !SKIP_LEGACY