blob: 501581c6fc6469caabc5d7329bea0a5747ae97c6 [file] [log] [blame]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00001#
2# Config.in.legacy - support for backward compatibility
3#
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +02004# When an existing Config.in symbol is removed, it should be added again in
5# this file, and take appropriate action to approximate backward compatibility.
6# This will make the transition for the user more convenient.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00007#
8# When adding legacy symbols to this file, add them to the front. The oldest
9# symbols will be removed again after about two years.
10#
11# The symbol should be copied as-is from the place where it was previously
12# defined, but the help text should be removed or replaced with something that
13# explains how to fix it.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020014#
15# For bool options, the old symbol should select BR2_LEGACY, so that the user
16# is informed at build-time about selected legacy options.
17# If there is an equivalent (set of) new symbols, these should be select'ed by
18# the old symbol for backwards compatibility.
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010019# It is not possible to select an option that is part of a choice. In that
20# case, the new option should use the old symbol as default. This requires a
21# change outside of Config.in.legacy, and this should be clearly marked as such
22# in a comment, so that removal of legacy options also include the removal of
23# these external references.
24#
25# [Example: renaming a bool option that is part of a choice from FOO to BAR]
26# original choice:
27# choice
28# prompt "Choose foobar"
29# config BR2_FOO_1
30# bool "foobar 1"
31# config BR2_FOO_2
32# bool "foobar 2"
33# endchoice
34#
35# becomes:
36# choice
37# prompt "Choose foobar"
38# default BR2_BAR_1 if BR2_FOO_1 # legacy
39# default BR2_BAR_2 if BR2_FOO_2 # legacy
40# config BR2_BAR_1
41# bool "foobar 1"
42# config BR2_BAR_2
43# bool "foobar 2"
44# endchoice
45#
46# and in Config.in.legacy:
47# config BR2_FOO_1
48# bool "foobar 1 has been renamed"
49# help
50# <suitable help text>
51# # Note: BR2_FOO_1 is still referenced from package/foo/Config.in
52# config BR2_FOO_2
53# bool "foobar 2 has been renamed"
54# help
55# <suitable help text>
56# # Note: BR2_FOO_2 is still referenced from package/foo/Config.in
57#
58# [End of example]
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020059#
60# For string options, it is not possible to directly select another symbol. In
61# this case, a hidden wrap bool option has to be added, that defaults to y if
62# the old string is not set at its default value. The wrap symbol should select
63# BR2_LEGACY.
64# If the original symbol has been renamed, the new symbol should use the value
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010065# of the old symbol as default. Like for choice options, a comment should be
66# added to flag that the symbol is still used in another file.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020067#
68# [Example: renaming a string option from FOO to BAR]
69# original symbol:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010070# config BR2_FOO_STRING
71# string "Some foo string"
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020072#
73# becomes:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010074# config BR2_BAR_STRING
75# string "Some bar string"
76# default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020077#
78# and in Config.in.legacy:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010079# config BR2_FOO_STRING
80# string "The foo string has been renamed"
81# help
82# <suitable help text>
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020083#
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010084# config BR2_FOO_STRING_WRAP
85# bool
86# default y if BR2_FOO_STRING != ""
87# select BR2_LEGACY
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020088#
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010089# # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020090#
91# [End of example]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000092
Arnout Vandecappelle53903a12015-04-11 01:49:02 +020093config BR2_SKIP_LEGACY
94 bool
95 option env="SKIP_LEGACY"
96
97if !BR2_SKIP_LEGACY
98
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000099config BR2_LEGACY
100 bool
101 help
102 This option is selected automatically when your old .config uses an
103 option that no longer exists in current buildroot. In that case, the
104 build will fail. Look for config options which are selected in the
105 menu below: they no longer exist and should be replaced by something
106 else.
107
108# This comment fits exactly in a 80-column display
109comment "Legacy detected: check the content of the menu below"
110 depends on BR2_LEGACY
111
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000112menu "Legacy config options"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000113
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000114if BR2_LEGACY
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +0200115comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000116comment "Your old configuration uses legacy options that no "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +0200117comment "longer exist in buildroot, as indicated in the menu "
118comment "below. As long as these options stay selected, or in"
119comment "case of string options are non-empty, the build "
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000120comment "will fail. "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +0200121comment "* "
122comment "Where possible, an automatic conversion from old to "
123comment "new symbols has been performed. Before making any "
124comment "change in this legacy menu, make sure to exit the "
125comment "configuration editor a first time and save the "
126comment "configuration. Otherwise, the automatic conversion "
127comment "of symbols will be lost. "
128comment "* "
129comment "After this initial save, reopen the configuration "
130comment "editor, inspect the options selected below, read "
131comment "their help texts, and verify/update the new "
132comment "configuration in the corresponding configuration "
133comment "menus. When everything is ok, you can disable the "
134comment "legacy options in the menu below. Once you have "
135comment "disabled all legacy options, this text will "
136comment "disappear and you will be able to start the build. "
137comment "* "
Yann E. MORINd2e706c2013-06-30 00:38:13 +0200138comment "Note: at some point in the future, the oldest legacy"
139comment "options will be removed, and configuration files "
140comment "that still have those options set, will fail to "
141comment "build, or run, in unpredictable ways. "
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +0200142comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000143endif
144
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200145###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300146comment "Legacy options removed in 2017.05"
147
Martin Bark096f8b12017-05-06 14:19:12 +0100148config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
149 bool "Express web application framework option has been removed"
150 select BR2_LEGACY
151 help
152 The option to enable the NodeJS Express web application
153 framework has been removed. To continue using it, add
154 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
155
Baruch Siach0364d442017-05-01 15:59:41 +0300156config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
157 bool "bluez5_utils gatttool install option removed"
158 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
159 help
160 The option to install gatttool specifically has been removed.
161 Since version 5.44 gatttool is in the list of deprecated
162 tools. The option to build and install deprecated tools has
163 been automatically enabled.
164
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +0000165config BR2_PACKAGE_OPENOCD_FT2XXX
166 bool "openocd ft2232 support has been removed"
167 select BR2_PACKAGE_OPENOCD_FTDI
168 select BR2_LEGACY
169 help
170 FT2232 support in OpenOCD has been removed, it's replaced by
171 FDTI support, which has automatically been enabled.
172
Bernd Kuhls24a07d52017-04-29 10:37:28 +0200173config BR2_PACKAGE_KODI_RTMPDUMP
174 bool "kodi rtmp has been removed"
175 select BR2_LEGACY
176 help
177 Internal rtmp support was removed from Kodi.
178
Bernd Kuhlsd3936902017-04-29 10:37:21 +0200179config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
180 bool "kodi-visualisation-fountain has been removed"
181 select BR2_LEGACY
182 help
183 According to upstream 'the visualization is not currently
184 in a working shape.'
185
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +0200186config BR2_PACKAGE_PORTMAP
187 bool "portmap has been removed"
188 select BR2_LEGACY
189 select BR2_PACKAGE_RPCBIND
190 help
191 The portmap upstream tarball is removed, no releases since
192 ten years and latest change in upstream git in 2014.
193 You should better use rpcbind as a RPC portmapper.
194
Thomas Petazzoni58472912017-04-03 22:28:21 +0200195config BR2_BINUTILS_VERSION_2_25_X
196 bool "binutils version 2.25 support removed"
197 select BR2_LEGACY
198 help
199 Support for binutils version 2.25 has been removed. The
200 current default version (2.27 or later) has been selected
201 instead.
202
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +0200203config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
204 bool "uclibc RPC support has been removed"
205 select BR2_LEGACY
206 help
207 uClibc-ng removed internal RPC implementation in 1.0.23. You
208 should use libtirpc instead.
209
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +0100210config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
211 int "extra size in blocks has been removed"
212 default 0
213 help
214 Since the support for auto calculation of the filesystem size has been
215 removed, this option is now useless and must be 0.
216 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS matchs
217 your needs.
218
219config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
220 bool
221 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
222 select BR2_LEGACY
223
Vicente Olivert Riera815f7132017-03-22 11:39:13 +0000224config BR2_PACKAGE_SYSTEMD_KDBUS
225 bool "systemd-kdbus has been removed"
226 select BR2_LEGACY
227 help
228 --enable/disable-kdbus configure option has been removed since
229 systemd-231.
230
Gustavo Zacariasd10b4932017-03-16 10:04:34 -0300231config BR2_PACKAGE_POLARSSL
232 bool "polarssl has been removed"
233 select BR2_LEGACY
234 help
235 The polarssl crypto library has been removed since the 1.2.x
236 release branch is no longer maintained. Newer upstream
237 branches/releases (mbedtls) have API changes so they're not
238 drop-in replacements.
239
Yann E. MORIN61551182017-03-12 10:58:15 +0100240config BR2_NBD_CLIENT
241 bool "nbd client option was renamed"
242 select BR2_LEGACY
243 select BR2_PACKAGE_NBD_CLIENT
244 help
245 The nbd client option has been renamed to BR2_PACKAGE_NBD_CLIENT.
246
247config BR2_NBD_SERVER
248 bool "nbd server option was renamed"
249 select BR2_LEGACY
250 select BR2_PACKAGE_NBD_SERVER
251 help
252 The nbd server option has been renamed to BR2_PACKAGE_NBD_SERVER.
253
Carlos Santos6a9c6312017-02-14 09:05:16 -0200254config BR2_PACKAGE_GMOCK
255 bool "gmock merged into gtest package"
256 select BR2_LEGACY
257 select BR2_PACKAGE_GTEST
258 select BR2_PACKAGE_GTEST_GMOCK
259 help
260 GMock is now a suboption of the GTest package.
261
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300262config BR2_KERNEL_HEADERS_4_8
263 bool "kernel headers version 4.8.x are no longer supported"
264 select BR2_KERNEL_HEADERS_4_4
265 select BR2_LEGACY
266 help
267 Version 4.8.x of the Linux kernel headers are no longer
268 maintained upstream and are now removed. As an alternative,
269 version 4.4.x of the headers have been automatically
270 selected in your configuration.
271
272config BR2_KERNEL_HEADERS_3_18
273 bool "kernel headers version 3.18.x are no longer supported"
274 select BR2_KERNEL_HEADERS_3_12
275 select BR2_LEGACY
276 help
277 Version 3.18.x of the Linux kernel headers are no longer
278 maintained upstream and are now removed. As an alternative,
279 version 3.12.x of the headers have been automatically
280 selected in your configuration.
281
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300282config BR2_GLIBC_VERSION_2_22
283 bool "glibc 2.22 removed"
284 select BR2_LEGACY
285 help
286 Support for glibc version 2.22 has been removed. The current
287 default version has been selected instead.
288
289###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +0100290comment "Legacy options removed in 2017.02"
291
Francois Perrad8546ff32016-12-26 15:50:35 +0100292config BR2_PACKAGE_PERL_DB_FILE
293 bool "perl-db-file removed"
294 select BR2_LEGACY
295 select BR2_PACKAGE_BERKELEYDB
296 select BR2_PACKAGE_PERL
297 help
298 DB_File can be built as a core Perl module, so the separate
299 perl-db-file package has been removed.
300
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300301config BR2_KERNEL_HEADERS_4_7
302 bool "kernel headers version 4.7.x are no longer supported"
303 select BR2_KERNEL_HEADERS_4_4
304 select BR2_LEGACY
305 help
306 Version 4.7.x of the Linux kernel headers are no longer
307 maintained upstream and are now removed. As an alternative,
308 version 4.4.x of the headers have been automatically
309 selected in your configuration.
310
311config BR2_KERNEL_HEADERS_4_6
312 bool "kernel headers version 4.6.x are no longer supported"
313 select BR2_KERNEL_HEADERS_4_4
314 select BR2_LEGACY
315 help
316 Version 4.6.x of the Linux kernel headers are no longer
317 maintained upstream and are now removed. As an alternative,
318 version 4.4.x of the headers have been automatically
319 selected in your configuration.
320
321config BR2_KERNEL_HEADERS_4_5
322 bool "kernel headers version 4.5.x are no longer supported"
323 select BR2_KERNEL_HEADERS_4_4
324 select BR2_LEGACY
325 help
326 Version 4.5.x of the Linux kernel headers are no longer
327 maintained upstream and are now removed. As an alternative,
328 version 4.4.x of the headers have been automatically
329 selected in your configuration.
330
331config BR2_KERNEL_HEADERS_3_14
332 bool "kernel headers version 3.14.x are no longer supported"
333 select BR2_KERNEL_HEADERS_3_12
334 select BR2_LEGACY
335 help
336 Version 3.14.x of the Linux kernel headers are no longer
337 maintained upstream and are now removed. As an alternative,
338 version 3.12.x of the headers have been automatically
339 selected in your configuration.
340
Romain Naour63abbcc2016-12-16 16:29:45 +0100341config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
342 bool "musl-cross 1.1.12 toolchain removed"
343 select BR2_LEGACY
344 help
345 The support for the prebuilt toolchain based on the Musl C
346 library provided by the musl-cross project has been removed.
347 Upstream doesn't provide any prebuilt toolchain anymore, use the
348 Buildroot toolchain instead.
349
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +0100350config BR2_UCLIBC_INSTALL_TEST_SUITE
351 bool "uClibc tests now in uclibc-ng-test"
352 select BR2_LEGACY
353 select BR2_PACKAGE_UCLIBC_NG_TEST
354 help
355 The test suite of the uClibc C library has been moved into a
356 separate package, uclibc-ng-test.
357
Arnout Vandecappelle311bc132016-11-24 00:40:35 +0100358config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
359 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
360 select BR2_LEGACY
361 help
362 The ADI Blackfin toolchain has many bugs which are fixed in
363 more recent gcc and uClibc-ng releases. Use the Buildroot
364 toolchain instead.
365
Arnout Vandecappelle207294f2016-11-23 15:14:04 +0100366config BR2_PACKAGE_MAKEDEVS
367 bool "makedevs removed"
368 select BR2_LEGACY
369 help
370 The makedevs tool is part of busybox. The Buildroot fork
371 should not be used outside of the Buildroot infrastructure.
372
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +0100373config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
374 bool "Arago ARMv7 2011.09 removed"
375 select BR2_LEGACY
376 help
377 The Arago toolchains are every old and not updated anymore.
378
379config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
380 bool "Arago ARMv5 2011.09 removed"
381 select BR2_LEGACY
382 help
383 The Arago toolchains are every old and not updated anymore.
384
Thomas Petazzonied364d12016-11-05 14:32:38 +0100385config BR2_PACKAGE_SNOWBALL_HDMISERVICE
386 bool "snowball-hdmiservice removed"
387 select BR2_LEGACY
388 help
389 We no longer have support for the Snowball platform in
390 Buildroot, so this package was no longer useful.
391
392config BR2_PACKAGE_SNOWBALL_INIT
393 bool "snowball-init removed"
394 select BR2_LEGACY
395 help
396 We no longer have support for the Snowball platform in
397 Buildroot, so this package was no longer useful.
398
Jörg Krause69aa0572016-12-14 14:40:58 +0100399config BR2_GDB_VERSION_7_9
400 bool "gdb 7.9 has been removed"
401 select BR2_LEGACY
402 help
403 The 7.9 version of gdb has been removed. Use a newer version
404 instead.
405
Thomas Petazzonied364d12016-11-05 14:32:38 +0100406###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +0200407comment "Legacy options removed in 2016.11"
408
Fabrice Fontainec4572132016-09-12 23:31:07 +0200409config BR2_PACKAGE_PHP_SAPI_CLI_CGI
410 bool "PHP CGI and CLI options are now seperate"
411 select BR2_PACKAGE_PHP_SAPI_CLI
412 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200413 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200414 help
415 The PHP Interface options have been split up into a
416 separate option for each interface.
417
418config BR2_PACKAGE_PHP_SAPI_CLI_FPM
419 bool "PHP CLI and FPM options are now separate"
420 select BR2_PACKAGE_PHP_SAPI_CLI
421 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200422 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200423 help
424 The PHP Interface options have been split up into a
425 separate option for each interface.
426
Arnout Vandecappelle35343992016-10-15 16:51:06 +0200427config BR2_PACKAGE_WVSTREAMS
428 bool "wvstreams removed"
429 select BR2_LEGACY
430 help
431 wvstreams is not maintained anymore since about 2009. It also
432 doesn't build anymore with recent compilers (GCC 5+).
433
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +0200434config BR2_PACKAGE_WVDIAL
435 bool "wvdial removed"
436 select BR2_LEGACY
437 help
438 wvdial is not maintained anymore since about 2009. It also
439 doesn't build anymore with recent compilers (GCC 5+).
440
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +0200441config BR2_PACKAGE_WEBKITGTK24
442 bool "webkitgtk 2.4.x removed"
443 select BR2_LEGACY
444 help
445 This legacy package only existed because some other packages
446 depended on that specific version of webkitgtk. However, the
447 other packages have been fixed. webkitgtk 2.4 is full of
448 security issues so it needs to be removed.
449
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +0200450config BR2_PACKAGE_TORSMO
451 bool "torsmo removed"
452 select BR2_LEGACY
453 help
454 torsmo has been unmaintained for a long time, and nobody
455 seems to be interested in it.
456
Arnout Vandecappelle290166f2016-10-15 16:51:02 +0200457config BR2_PACKAGE_SSTRIP
458 bool "sstrip removed"
459 select BR2_LEGACY
460 help
461 sstrip is unmaintained and potentially harmful. It doesn't
462 save so much compared to normal binutils strip, and there is
463 a big risk of binaries that don't work. Use normal strip
464 instead.
465
Arnout Vandecappelle133466f2016-10-15 16:51:01 +0200466config BR2_KERNEL_HEADERS_4_3
467 bool "kernel headers version 4.3.x are no longer supported"
468 select BR2_KERNEL_HEADERS_4_1
469 select BR2_LEGACY
470 help
471 Version 4.3.x of the Linux kernel headers are no longer
472 maintained upstream and are now removed. As an alternative,
473 version 4.1.x of the headers have been automatically
474 selected in your configuration.
475
476config BR2_KERNEL_HEADERS_4_2
477 bool "kernel headers version 4.2.x are no longer supported"
478 select BR2_KERNEL_HEADERS_4_1
479 select BR2_LEGACY
480 help
481 Version 4.2.x of the Linux kernel headers are no longer
482 maintained upstream and are now removed. As an alternative,
483 version 4.1.x of the headers have been automatically
484 selected in your configuration.
485
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +0200486config BR2_PACKAGE_KODI_ADDON_XVDR
487 bool "kodi-addon-xvdr removed"
488 select BR2_LEGACY
489 help
490 According to the github project page:
491 https://github.com/pipelka/xbmc-addon-xvdr
492 this package is discontinued.
493
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +0200494config BR2_PACKAGE_IPKG
495 bool "ipkg removed"
496 select BR2_LEGACY
497 help
498 ipkg dates back to the early 2000s when Compaq started the
499 handhelds.org project and it hasn't seen development since 2006.
500 Use opkg as a replacement.
501
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +0200502config BR2_GCC_VERSION_4_7_X
503 bool "gcc 4.7.x support removed"
504 select BR2_LEGACY
505 help
506 Support for gcc version 4.7.x has been removed. The current
507 default version (4.9.x or later) has been selected instead.
508
Arnout Vandecappelled8878112016-10-15 16:50:57 +0200509config BR2_BINUTILS_VERSION_2_24_X
510 bool "binutils version 2.24 support removed"
511 select BR2_LEGACY
512 help
513 Support for binutils version 2.24 has been removed. The
514 current default version (2.26 or later) has been selected
515 instead.
516
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -0300517config BR2_PACKAGE_WESTON_RPI
518 bool "Weston propietary RPI support is gone"
519 select BR2_LEGACY
520 help
521 Upstream decided the propietary (rpi-userland) weston composer
522 support wasn't worth the effort so it was removed. Switch to
523 the open VC4 support.
524
Yann E. MORIN20b14462016-09-06 16:29:14 +0200525config BR2_LINUX_KERNEL_TOOL_CPUPOWER
526 bool "linux-tool cpupower"
527 depends on BR2_LINUX_KERNEL
528 select BR2_LEGACY
529 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
530 help
531 Linux tool cpupower option was renamed.
532
533config BR2_LINUX_KERNEL_TOOL_PERF
534 bool "linux-tool perf"
535 depends on BR2_LINUX_KERNEL
536 select BR2_LEGACY
537 select BR2_PACKAGE_LINUX_TOOLS_PERF
538 help
539 Linux tool perf option was renamed.
540
541config BR2_LINUX_KERNEL_TOOL_SELFTESTS
542 bool "linux-tool selftests"
543 depends on BR2_LINUX_KERNEL
544 select BR2_LEGACY
545 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
546 help
547 Linux tool selftests option was renamed.
548
Thomas Petazzoni50332a52016-08-11 15:25:38 +0200549config BR2_GCC_VERSION_4_8_ARC
550 bool "gcc arc option renamed"
551 select BR2_LEGACY
552 select BR2_GCC_VERSION_ARC
553 help
554 The option that selects the gcc version for the ARC
555 architecture has been renamed to BR2_GCC_VERSION_ARC.
556
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300557config BR2_KERNEL_HEADERS_4_0
558 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300559 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300560 select BR2_LEGACY
561 help
562 Version 4.0.x of the Linux kernel headers have been deprecated
563 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300564 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300565 automatically selected in your configuration.
566
567config BR2_KERNEL_HEADERS_3_19
568 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300569 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300570 select BR2_LEGACY
571 help
572 Version 3.19.x of the Linux kernel headers have been deprecated
573 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300574 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300575 automatically selected in your configuration.
576
Romain Naour0e517312016-09-02 22:31:32 +0200577config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
578 bool "libevas-generic-loaders package removed"
579 select BR2_LEGACY
580 select BR2_PACKAGE_EFL
581 help
582 With EFL 1.18, libevas-generic-loaders is now provided by the efl
583 package.
584
Romain Naourc22b7582016-09-02 22:31:31 +0200585config BR2_PACKAGE_ELEMENTARY
586 bool "elementary package removed"
587 select BR2_LEGACY
588 select BR2_PACKAGE_EFL
589 help
590 With EFL 1.18, elementary is now provided by the efl package.
591
Yann E. MORINe782cd52016-08-28 01:03:04 +0200592config BR2_LINUX_KERNEL_CUSTOM_LOCAL
593 bool "Linux kernel local directory option removed"
594 help
595 The option to select a local directory as the source of the Linux
596 kernel has been removed. It hurts reproducibility of builds.
597
598 In case you were using this option during development of your
599 Linux kernel, use the override mechanism instead.
600
601###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200602comment "Legacy options removed in 2016.08"
603
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100604config BR2_PACKAGE_EFL_JP2K
605 bool "libevas jp2k loader has been removed"
606 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +0100607 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100608 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
609 while Buildroot only packages openjpeg 2.x. Therefore, the
610 JP2K loader has been removed from EFL.
611
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200612config BR2_PACKAGE_SYSTEMD_COMPAT
613 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +0200614 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200615 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +0200616 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200617 been removed. Theses libraries have been useless since a few
618 version, and have been fully dropped from the source since
619 v230.
620
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +0200621config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
622 bool "gst1-plugins-bad liveadder plugin removed"
623 select BR2_LEGACY
624 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
625 help
626 The functionality of the liveadder plugin of the
627 gst1-plugins-bad package has been merged into audiomixer.
628
Andrew Webster0f92b192016-06-10 14:13:29 -0400629config BR2_PACKAGE_LIBFSLVPUWRAP
630 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
631 select BR2_LEGACY
632 select BR2_PACKAGE_IMX_VPUWRAP
633 help
634 The libfslvpuwrap has been renamed to match the renamed package.
635
Andrew Webster64998902016-06-10 14:13:18 -0400636config BR2_PACKAGE_LIBFSLPARSER
637 bool "libfslparser has been renamed to imx-parser"
638 select BR2_LEGACY
639 select BR2_PACKAGE_IMX_PARSER
640 help
641 The libfslparser has been renamed to match the renamed package.
642
Andrew Webster47e62032016-06-10 14:13:05 -0400643config BR2_PACKAGE_LIBFSLCODEC
644 bool "libfslcodec has been renamed to imx-codec"
645 select BR2_LEGACY
646 select BR2_PACKAGE_IMX_CODEC
647 help
648 The libfslcodec has been renamed to match the renamed package.
649
Carlos Santosb5d99002016-06-03 16:35:39 -0300650config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
651 bool "FIT support in uboot-tools has been refactored"
652 select BR2_LEGACY
653 select BR2_PACKAGE_DTC
654 select BR2_PACKAGE_DTC_PROGRAMS
655 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
656 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
657 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
658 help
659 This option has been removed in favor of a more fine-grained
660 configuration, which is recommended. Selecting this option
661 enables FIT and FIT signature support for the target packages.
662 It will also select the dtc and openssl packages.
663
Waldemar Brodkorbf253c142016-06-01 20:40:25 +0200664config BR2_PTHREADS_OLD
665 bool "linuxthreads (stable/old)"
666 select BR2_LEGACY
667 help
668 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
669 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
670
Thomas Petazzoniae466a62016-05-17 00:13:01 +0200671config BR2_BINUTILS_VERSION_2_23_X
672 bool "binutils 2.23 removed"
673 select BR2_LEGACY
674 help
675 Binutils 2.23 has been removed, using a newer version is
676 recommended.
677
Thomas Petazzoni500de252016-05-17 00:13:00 +0200678config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
679 bool "eglibc support has been removed"
680 select BR2_LEGACY
681 help
682 The eglibc project no longer exists, as it has been merged
683 back into the glibc project. Therefore, support for eglibc
684 has been removed, and glibc should be used instead.
685
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200686config BR2_GDB_VERSION_7_8
687 bool "gdb 7.8 has been removed"
688 select BR2_LEGACY
689 help
690 The 7.8 version of gdb has been removed. Use a newer version
691 instead.
692
693###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100694comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +0100695
Gustavo Zacarias3380da62016-05-14 10:33:47 -0300696config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
697 bool "openvpn polarssl crypto backend removed"
698 select BR2_LEGACY
699 help
700 The OpenVPN polarssl crypto backend option has been removed.
701 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
702 compatible with mbedtls (polarssl) series 2.x which is the
703 version provided in buildroot. And both can't coexist.
704 It now uses OpenSSL as the only option.
705
706
Martin Bark4dfc2cb2016-05-03 10:36:54 +0100707config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
708 bool "nginx http spdy module removed"
709 select BR2_LEGACY
710 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
711 help
712 The ngx_http_spdy_module has been superseded by the
713 ngx_http_v2_module since nginx v1.9.5. The
714 ngx_http_v2_module modules has been automatically selected
715 in your configuration.
716
Gustavo Zacarias0c956f22016-05-03 16:44:15 -0300717config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
718 bool "gst1-plugins-bad rtp plugin moved to good"
719 select BR2_LEGACY
720 help
721 The rtp plugin has been moved from gst1-plugins-base to
722 gst1-plugins-good.
723
Gustavo Zacarias4196cf92016-05-03 16:44:14 -0300724config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
725 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
726 select BR2_LEGACY
727 help
728 The mpg123 plugin has been moved from gst1-plugins-bad to
729 gst1-plugins-ugly.
730
Gustavo Zacarias8490e832016-04-29 10:18:56 -0300731config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
732 bool "PowerPC Sourcery toolchain has been removed"
733 select BR2_LEGACY
734 help
735 The Sourcery CodeBench toolchain for the PowerPC
736 architecture has been removed, as it was very old, not
737 maintained, and causing numerous build failures with modern
738 userspace packages.
739
740config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
741 bool "PowerPC Sourcery E500v2 toolchain has been removed"
742 select BR2_LEGACY
743 help
744 The Sourcery CodeBench toolchain for the PowerPC E500v2
745 architecture has been removed, as it was very old, not
746 maintained, and causing numerous build failures with modern
747 userspace packages.
748
Thomas Petazzoni6cb48142016-04-17 23:31:34 +0200749config BR2_x86_i386
750 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +0200751 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +0200752 help
753 The support for the i386 processors of the x86 architecture
754 has been removed.
755
Julien CORJON940bfe22016-03-17 10:42:27 +0100756config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
757 bool "qt5webkit-examples package removed"
758 select BR2_LEGACY
759 help
760 The qt5webkit-examples package has been removed, since it
761 was removed from upstream starting from Qt 5.6.
762
Julien CORJONf75ee802016-03-17 10:42:25 +0100763config BR2_PACKAGE_QT5QUICK1
764 bool "qt5quick1 package removed"
765 select BR2_LEGACY
766 help
767 The qt5quick1 package has been removed, since it was removed
768 from upstream starting from Qt 5.6.
769
Gustavo Zacarias21b25d22016-03-11 11:32:24 -0300770config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -0500771 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -0300772 help
773 The uboot custom patch directory option has been removed. Use
774 the improved BR2_TARGET_UBOOT_PATCH option instead.
775
Danomi Manchegof61583f2016-12-19 22:10:12 -0500776config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
777 bool
778 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
779 select BR2_LEGACY
780
781# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
782# boot/uboot/Config.in
783
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -0300784config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
785 bool "xf86-input-void removed"
786 select BR2_LEGACY
787 help
788 The xf86-input-void package has been removed, there's no need
789 for it in any modern (post-2007) xorg server.
790
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300791config BR2_KERNEL_HEADERS_3_17
792 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300793 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300794 select BR2_LEGACY
795 help
796 Version 3.17.x of the Linux kernel headers have been deprecated
797 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300798 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300799 automatically selected in your configuration.
800
Gustavo Zacariasffc324e2016-03-11 11:32:21 -0300801config BR2_GDB_VERSION_7_7
802 bool "gdb 7.7 has been removed"
803 select BR2_LEGACY
804 help
805 The 7.7 version of gdb has been removed. Use a newer version
806 instead.
807
Gustavo Zacarias75945dd2016-03-11 11:32:20 -0300808config BR2_PACKAGE_FOOMATIC_FILTERS
809 bool "foomatic-filters"
810 select BR2_LEGACY
811 help
812 The foomatic-filters package was removed.
813
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -0300814config BR2_PACKAGE_SAMBA
815 bool "samba"
816 select BR2_LEGACY
817 help
818 The samba package was removed in favour of samba4 since the
819 3.x series isn't supported by upstream any longer.
820
Bernd Kuhls6922b412016-02-20 23:09:11 +0100821config BR2_PACKAGE_KODI_WAVPACK
822 bool "wavpack"
823 select BR2_LEGACY
824 help
825 wavpack support was removed in favour of ffmpeg:
826 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
827
Bernd Kuhls75ce17d2016-02-20 23:09:07 +0100828config BR2_PACKAGE_KODI_RSXS
829 bool "rsxs support in Kodi was moved to an addon"
830 select BR2_LEGACY
831 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
832 help
833 rsxs support in Kodi was moved to an addon
834
Bernd Kuhls56b80ec2016-02-20 23:09:06 +0100835config BR2_PACKAGE_KODI_GOOM
836 bool "Goom support in Kodi was moved to an addon"
837 select BR2_LEGACY
838 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
839 help
840 Goom support in Kodi was moved to an addon
841
Gabe Evanse5a073a2016-02-25 21:55:11 +0000842config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
843 bool "systemd all extras option has been removed"
844 select BR2_LEGACY
845 select BR2_PACKAGE_XZ
846 select BR2_PACKAGE_LIBGCRYPT
847 help
848 The systemd option to enable "all extras" has been
849 removed. To get the same features, the libgcrypt and xz
850 package should now be enabled.
851
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -0300852config BR2_GCC_VERSION_4_5_X
853 bool "gcc 4.5.x has been removed"
854 select BR2_LEGACY
855 help
856 The 4.5.x version of gcc has been removed. Use a newer
857 version instead.
858
Bernd Kuhls007c2ce2016-02-08 20:56:41 +0100859config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -0500860 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +0100861 select BR2_PACKAGE_NCURSES
862 select BR2_PACKAGE_READLINE
863 select BR2_LEGACY
864 help
865 This option was removed in favour of the sqlite package
866 deciding itself depending on the enabled packages whether
867 command-line editing should be enabled, it also also takes
868 libedit into account.
869
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100870###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +0100871comment "Legacy options removed in 2016.02"
872
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +0100873config BR2_PACKAGE_DOVECOT_BZIP2
874 bool "bzip2 support option has been removed"
875 select BR2_LEGACY
876 select BR2_PACKAGE_BZIP2
877 help
878 Bzip2 support is built if the bzip2 package is selected.
879
880config BR2_PACKAGE_DOVECOT_ZLIB
881 bool "zlib support option has been removed"
882 select BR2_LEGACY
883 select BR2_PACKAGE_ZLIB
884 help
885 Zlib support is built if the zlib package is selected.
886
James Knightead1df42016-02-12 11:40:05 -0500887config BR2_PACKAGE_E2FSPROGS_FINDFS
888 bool "e2fsprogs findfs option has been removed"
889 select BR2_LEGACY
890 help
891 This option attempted to enable findfs capabilities from
892 e2fsprogs but has not worked since July 2015 (due to
893 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +0100894 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -0500895
Romain Naourb1063a02016-02-07 17:56:56 +0100896config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
897 bool "openpowerlink debug option has been removed"
898 select BR2_LEGACY
899 help
900 This option depends on BR2_ENABLE_DEBUG which should not be used
901 by packages anymore.
902
903config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
904 bool "openpowerlink package has been updated"
905 select BR2_LEGACY
906 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
907 help
908 openpowerlink kernel modules are built if the
909 kernel stack library is selected.
910
911config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
912 bool "openpowerlink package has been updated"
913 select BR2_LEGACY
914 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
915 help
916 The user space support has been split in two part:
917 - a monolitic user space library
918 - a user spae deamon driver
919
Yann E. MORINe3e05832016-02-06 00:06:17 +0100920config BR2_LINUX_KERNEL_SAME_AS_HEADERS
921 bool "using the linux headers version for the kernel has been removed"
922 select BR2_LEGACY
923 help
924 The option to use the version of the kernel headers for the
925 kernel to build has been removed.
926
927 There is now the converse, better-suited and more versatile
928 option to use the kernel version for the linux headers.
929
Olivier Schonkend37ce8e2016-01-21 00:17:43 +0200930config BR2_PACKAGE_CUPS_PDFTOPS
931 bool "Pdftops support has been removed from Cups"
932 select BR2_LEGACY
933 help
934 Pdftops support has been removed from the cups package
935 It is now part of the cups-filters package.
936
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300937config BR2_KERNEL_HEADERS_3_16
938 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300939 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300940 select BR2_LEGACY
941 help
942 Version 3.16.x of the Linux kernel headers have been deprecated
943 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300944 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300945 automatically selected in your configuration.
946
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +0100947config BR2_PACKAGE_PYTHON_PYXML
948 bool "python-pyxml package has been removed"
949 select BR2_LEGACY
950 help
951 PyXML is obsolete and its functionality is covered either via
952 native Python XML support or python-lxml package.
953
Steven Noonand29c7192015-12-27 12:07:31 +0100954# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
955config BR2_ENABLE_SSP
956 bool "Stack Smashing protection now has different levels"
957 help
958 The protection offered by SSP can now be selected from different
959 protection levels. Be sure to review the SSP level in the build
960 options menu.
961
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300962config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -0300963 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300964 select BR2_LEGACY
965 help
966 The cle266 directfb driver support has been removed.
967 It doesn't build in the latest version and it's unlikely
968 anyone has any use for it.
969
970config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -0300971 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300972 select BR2_LEGACY
973 help
974 The unichrome directfb driver support has been removed.
975 It doesn't build in the latest version and it's unlikely
976 anyone has any use for it.
977
Romain Naour820e1682015-12-19 17:39:14 +0100978config BR2_PACKAGE_LIBELEMENTARY
979 bool "libelementary has been renamed to elementary"
980 select BR2_LEGACY
981 select BR2_PACKAGE_ELEMENTARY
982 help
983 The libelementary package has been renamed to match the upstream
984 name.
985
Romain Naoura9d1f5f2015-12-15 23:40:38 +0100986config BR2_PACKAGE_LIBEINA
987 bool "libeina package has been removed"
988 select BR2_LEGACY
989 select BR2_PACKAGE_EFL
990 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100991 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +0100992
Romain Naour49700f02015-12-15 23:40:37 +0100993config BR2_PACKAGE_LIBEET
994 bool "libeet package has been removed"
995 select BR2_LEGACY
996 select BR2_PACKAGE_EFL
997 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100998 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +0100999
Romain Naoure5989d62015-12-15 23:40:36 +01001000config BR2_PACKAGE_LIBEVAS
1001 bool "libevas package has been removed"
1002 select BR2_LEGACY
1003 select BR2_PACKAGE_EFL
1004 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001005 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01001006
Romain Naour1fe1b602015-12-15 23:40:35 +01001007config BR2_PACKAGE_LIBECORE
1008 bool "libecore package has been removed"
1009 select BR2_LEGACY
1010 select BR2_PACKAGE_EFL
1011 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001012 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01001013
Romain Naour8c05c382015-12-15 23:40:34 +01001014config BR2_PACKAGE_LIBEDBUS
1015 bool "libedbus package has been removed"
1016 select BR2_LEGACY
1017 select BR2_PACKAGE_EFL
1018 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001019 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01001020
Romain Naourd2b042c2015-12-15 23:40:33 +01001021config BR2_PACKAGE_LIBEFREET
1022 bool "libefreet package has been removed"
1023 select BR2_LEGACY
1024 select BR2_PACKAGE_EFL
1025 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001026 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01001027
Romain Naoure155c952015-12-15 23:40:32 +01001028config BR2_PACKAGE_LIBEIO
1029 bool "libeio package has been removed"
1030 select BR2_LEGACY
1031 select BR2_PACKAGE_EFL
1032 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001033 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01001034
Romain Naourb728fb72015-12-15 23:40:31 +01001035config BR2_PACKAGE_LIBEMBRYO
1036 bool "libembryo package has been removed"
1037 select BR2_LEGACY
1038 select BR2_PACKAGE_EFL
1039 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001040 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01001041
Romain Naour4c93c102015-12-15 23:40:30 +01001042config BR2_PACKAGE_LIBEDJE
1043 bool "libedje package has been removed"
1044 select BR2_LEGACY
1045 select BR2_PACKAGE_EFL
1046 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001047 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01001048
Romain Naour905dba12015-12-15 23:40:29 +01001049config BR2_PACKAGE_LIBETHUMB
1050 bool "libethumb package has been removed"
1051 select BR2_LEGACY
1052 select BR2_PACKAGE_EFL
1053 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001054 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01001055
Luca Ceresolif0c94702015-11-27 18:38:00 +01001056config BR2_PACKAGE_INFOZIP
1057 bool "infozip option has been renamed to zip"
1058 select BR2_LEGACY
1059 select BR2_PACKAGE_ZIP
1060 help
1061 Info-Zip's Zip package has been renamed from infozip to zip,
1062 to avoid ambiguities with Info-Zip's UnZip which has been added
1063 in the unzip package.
1064
Martin Barka2d16602015-12-23 12:16:04 +00001065config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00001066 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00001067 select BR2_LEGACY
1068 select BR2_PACKAGE_NODEJS
1069 help
Martin Bark75b70492016-01-30 14:51:00 +00001070 nodejs 0.10.x option has been removed. 0.10.x is now
1071 automatically chosen for ARMv5 architectures only and the latest
1072 nodejs for all other supported architectures. The correct nodejs
1073 version has been automatically selected in your configuration.
Martin Barka2d16602015-12-23 12:16:04 +00001074
Martin Barka314b872015-12-23 12:16:03 +00001075config BR2_BR2_PACKAGE_NODEJS_0_12_X
1076 bool "nodejs version 0.12.x has been removed"
1077 select BR2_LEGACY
1078 select BR2_PACKAGE_NODEJS
1079 help
1080 nodejs version 0.12.x has been removed. As an alternative,
1081 the latest nodejs version has been automatically selected in
1082 your configuration.
1083
Martin Bark90bf67c2015-12-23 12:16:02 +00001084config BR2_BR2_PACKAGE_NODEJS_4_X
1085 bool "nodejs version 4.x has been removed"
1086 select BR2_LEGACY
1087 select BR2_PACKAGE_NODEJS
1088 help
1089 nodejs version 4.x has been removed. As an alternative,
1090 the latest nodejs version has been automatically selected in
1091 your configuration.
1092
Luca Ceresolif0c94702015-11-27 18:38:00 +01001093###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001094comment "Legacy options removed in 2015.11"
1095
Peter Seiderer301e8ff2015-10-15 21:42:43 +02001096config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
1097 bool "gst1-plugins-bad real plugin has been removed"
1098 select BR2_LEGACY
1099 help
1100 The real plugin from GStreamer 1 bad plugins has been
1101 removed.
1102
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02001103config BR2_PACKAGE_MEDIA_CTL
1104 bool "media-ctl package has been removed"
1105 select BR2_LEGACY
1106 select BR2_PACKAGE_LIBV4L
1107 select BR2_PACKAGE_LIBV4L_UTILS
1108 help
1109 media-ctl source and developement have been moved to
1110 v4l-utils since June 2014. For an up-to-date media-ctl
1111 version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
1112
Romain Naourf8031332015-10-03 18:35:05 +02001113config BR2_PACKAGE_SCHIFRA
1114 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001115 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02001116 help
1117 Schifra package has been maked broken since 2014.11 release and
1118 haven't been fixed since then.
1119
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02001120config BR2_PACKAGE_ZXING
1121 bool "zxing option has been renamed"
1122 select BR2_LEGACY
1123 select BR2_PACKAGE_ZXING_CPP
1124 help
1125 ZXing no longer provides the cpp bindings, it has been renamed to
1126 BR2_PACKAGE_ZXING_CPP which uses a new upstream.
1127
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001128# Since FreeRDP has new dependencies, protect this legacy to avoid the
1129# infamous "unmet direct dependencies" kconfig error.
1130config BR2_PACKAGE_FREERDP_CLIENT
1131 bool "freerdp client option renamed"
1132 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02001133 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001134 select BR2_PACKAGE_FREERDP_CLIENT_X11
1135
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03001136config BR2_PACKAGE_BLACKBOX
1137 bool "blackbox package has been removed"
1138 select BR2_LEGACY
1139 help
1140 Upstream is dead and the package has been deprecated for
1141 some time. There are other alternative maintained WMs.
1142
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001143config BR2_KERNEL_HEADERS_3_0
1144 bool "kernel headers version 3.0.x are no longer supported"
1145 select BR2_KERNEL_HEADERS_3_2
1146 select BR2_LEGACY
1147 help
1148 Version 3.0.x of the Linux kernel headers have been deprecated
1149 for more than four buildroot releases and are now removed.
1150 As an alternative, version 3.2.x of the headers have been
1151 automatically selected in your configuration.
1152
1153config BR2_KERNEL_HEADERS_3_11
1154 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001155 select BR2_KERNEL_HEADERS_3_10
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001156 select BR2_LEGACY
1157 help
1158 Version 3.11.x of the Linux kernel headers have been deprecated
1159 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001160 As an alternative, version 3.10.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001161 automatically selected in your configuration.
1162
1163config BR2_KERNEL_HEADERS_3_13
1164 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001165 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001166 select BR2_LEGACY
1167 help
1168 Version 3.13.x of the Linux kernel headers have been deprecated
1169 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001170 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001171 automatically selected in your configuration.
1172
1173config BR2_KERNEL_HEADERS_3_15
1174 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001175 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001176 select BR2_LEGACY
1177 help
1178 Version 3.15.x of the Linux kernel headers have been deprecated
1179 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001180 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001181 automatically selected in your configuration.
1182
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001183config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
1184 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001185 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001186 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1187 help
1188 The per-DirectFB example options have been removed. The
1189 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1190 examples.
1191
1192config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
1193 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001194 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001195 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1196 help
1197 The per-DirectFB example options have been removed. The
1198 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1199 examples.
1200
1201config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
1202 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001203 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001204 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1205 help
1206 The per-DirectFB example options have been removed. The
1207 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1208 examples.
1209
1210config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
1211 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001212 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001213 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1214 help
1215 The per-DirectFB example options have been removed. The
1216 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1217 examples.
1218
1219config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
1220 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001221 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001222 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1223 help
1224 The per-DirectFB example options have been removed. The
1225 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1226 examples.
1227
1228config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
1229 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001230 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001231 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1232 help
1233 The per-DirectFB example options have been removed. The
1234 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1235 examples.
1236
1237config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
1238 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001239 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001240 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1241 help
1242 The per-DirectFB example options have been removed. The
1243 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1244 examples.
1245
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001246config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
1247 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001248 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001249 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1250 help
1251 The per-DirectFB example options have been removed. The
1252 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1253 examples.
1254
1255config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
1256 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001257 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001258 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1259 help
1260 The per-DirectFB example options have been removed. The
1261 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1262 examples.
1263
1264config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
1265 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001266 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001267 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1268 help
1269 The per-DirectFB example options have been removed. The
1270 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1271 examples.
1272
1273config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
1274 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001275 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001276 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1277 help
1278 The per-DirectFB example options have been removed. The
1279 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1280 examples.
1281
1282config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
1283 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001284 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001285 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1286 help
1287 The per-DirectFB example options have been removed. The
1288 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1289 examples.
1290
1291config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
1292 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001293 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001294 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1295 help
1296 The per-DirectFB example options have been removed. The
1297 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1298 examples.
1299
1300config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
1301 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001302 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001303 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1304 help
1305 The per-DirectFB example options have been removed. The
1306 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1307 examples.
1308
1309config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
1310 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001311 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001312 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1313 help
1314 The per-DirectFB example options have been removed. The
1315 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1316 examples.
1317
1318config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
1319 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001320 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001321 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1322 help
1323 The per-DirectFB example options have been removed. The
1324 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1325 examples.
1326
1327config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
1328 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001329 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001330 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1331 help
1332 The per-DirectFB example options have been removed. The
1333 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1334 examples.
1335
1336config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
1337 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001338 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001339 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1340 help
1341 The per-DirectFB example options have been removed. The
1342 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1343 examples.
1344
1345config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
1346 bool "DirectFB example df_palette has been removed"
1347 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1348 help
1349 The per-DirectFB example options have been removed. The
1350 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1351 examples.
1352
1353config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
1354 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001355 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001356 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1357 help
1358 The per-DirectFB example options have been removed. The
1359 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1360 examples.
1361
1362config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
1363 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001364 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001365 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1366 help
1367 The per-DirectFB example options have been removed. The
1368 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1369 examples.
1370
1371config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
1372 bool "DirectFB example df_stress has been removed"
1373 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1374 help
1375 The per-DirectFB example options have been removed. The
1376 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1377 examples.
1378
1379config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
1380 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001381 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001382 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1383 help
1384 The per-DirectFB example options have been removed. The
1385 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1386 examples.
1387
1388config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
1389 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001390 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001391 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1392 help
1393 The per-DirectFB example options have been removed. The
1394 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1395 examples.
1396
1397config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1398 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001399 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001400 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1401 help
1402 The per-DirectFB example options have been removed. The
1403 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1404 examples.
1405
1406config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1407 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001408 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001409 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1410 help
1411 The per-DirectFB example options have been removed. The
1412 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1413 examples.
1414
Gary Bisson2b78fb22015-09-23 15:39:27 +02001415config BR2_PACKAGE_KOBS_NG
1416 bool "kobs-ng was replaced by imx-kobs"
1417 select BR2_LEGACY
1418 select BR2_PACKAGE_IMX_KOBS
1419 help
1420 The outdated kobs-ng has been replaced by the Freescale-
1421 maintained imx-kobs package.
1422
Thomas Petazzoni11573f52015-09-02 00:01:11 +02001423config BR2_PACKAGE_SAWMAN
1424 bool "sawman package removed"
1425 select BR2_LEGACY
1426 select BR2_PACKAGE_DIRECTFB_SAWMAN
1427 help
1428 This option has been removed because the sawman package no
1429 longer exists: it was merged inside DirectFB itself. This
1430 feature can now be enabled using the
1431 BR2_PACKAGE_DIRECTFB_SAWMAN option.
1432
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001433config BR2_PACKAGE_DIVINE
1434 bool "divine package removed"
1435 select BR2_LEGACY
1436 select BR2_PACKAGE_DIRECTFB_DIVINE
1437 help
1438 This option has been removed because the divine package no
1439 longer exists: it was merged inside DirectFB itself. This
1440 feature can now be enabled using the
1441 BR2_PACKAGE_DIRECTFB_DIVINE option.
1442
1443###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001444comment "Legacy options removed in 2015.08"
1445
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001446config BR2_PACKAGE_KODI_PVR_ADDONS
1447 bool "Kodi PVR addon was split"
1448 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02001449 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02001450 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02001451 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02001452 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02001453 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02001454 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02001455 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02001456 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02001457 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02001458 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02001459 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02001460 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02001461 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02001462 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02001463 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02001464 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001465 help
1466 Kodi PVR addon was split into seperate modules
1467
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001468config BR2_BINUTILS_VERSION_2_23_2
1469 bool "binutils 2.23 option renamed"
1470 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001471 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001472 Binutils 2.23.2 has been removed, using a newer version is
1473 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001474
1475config BR2_BINUTILS_VERSION_2_24
1476 bool "binutils 2.24 option renamed"
1477 select BR2_LEGACY
1478 select BR2_BINUTILS_VERSION_2_24_X
1479 help
1480 The binutils version option has been renamed to match the
1481 same patchlevel logic used by gcc. The new option is now
1482 BR2_BINUTILS_VERSION_2_24_X.
1483
1484config BR2_BINUTILS_VERSION_2_25
1485 bool "binutils 2.25 option renamed"
1486 select BR2_LEGACY
1487 select BR2_BINUTILS_VERSION_2_25_X
1488 help
1489 The binutils version option has been renamed to match the
1490 same patchlevel logic used by gcc. The new option is now
1491 BR2_BINUTILS_VERSION_2_25_X.
1492
Romain Naour1326e762015-07-14 19:35:14 +02001493config BR2_PACKAGE_PERF
1494 bool "perf option has been renamed"
1495 select BR2_LEGACY
1496 select BR2_LINUX_KERNEL_TOOL_PERF
1497 help
1498 The perf package has been moved as a Linux tools package,
1499 and the option to enable it is now
1500 BR2_LINUX_KERNEL_TOOL_PERF.
1501
Thomas Petazzoni2f845952015-07-11 14:52:53 +02001502config BR2_BINUTILS_VERSION_2_22
1503 bool "binutils 2.22 removed"
1504 select BR2_LEGACY
1505 help
1506 Binutils 2.22 has been removed, using a newer version is
1507 recommended.
1508
Gary Bisson4c0613e2015-05-26 10:19:37 +02001509config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1510 bool "gpu-viv-bin-mx6q"
1511 select BR2_LEGACY
1512 select BR2_PACKAGE_IMX_GPU_VIV
1513 help
1514 Vivante graphics libraries have been renamed to
1515 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1516 name.
1517
Matt Weber7742abe2015-06-02 08:28:35 -05001518config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
1519 depends on BR2_PACKAGE_PYTHON
1520 bool "libsemanage python bindings removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001521 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05001522 help
1523 This option has been removed, since the libsemanage Python
1524 bindings on the target were not useful.
1525
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001526config BR2_TARGET_UBOOT_NETWORK
1527 bool "U-Boot custom network settings removed"
1528 select BR2_LEGACY
1529 help
1530 U-Boot's custom network settings options have been removed.
1531
1532###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001533comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001534
Michał Leśniewskie3904a82015-05-19 20:26:30 +02001535config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1536 bool "jffs2 16kB erasesize NAND flash option renamed"
1537 select BR2_LEGACY
1538 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1539 help
1540 The JFFS2 NAND flash options now longer include the page
1541 size.
1542
1543config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1544 bool "jffs2 128kB erasesize NAND flash option renamed"
1545 select BR2_LEGACY
1546 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
1547 help
1548 The JFFS2 NAND flash options now longer include the page
1549 size.
1550
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02001551config BR2_PACKAGE_MONO_20
1552 bool "2.0/3.5 .Net Runtime"
1553 select BR2_LEGACY
1554 help
1555 This option no longer exists, all versions of the .Net
1556 runtime are now installed.
1557
1558config BR2_PACKAGE_MONO_40
1559 bool "4.0 .Net Runtime"
1560 select BR2_LEGACY
1561 help
1562 This option no longer exists, all versions of the .Net
1563 runtime are now installed.
1564
1565config BR2_PACKAGE_MONO_45
1566 bool "4.5 .Net Runtime"
1567 select BR2_LEGACY
1568 help
1569 This option no longer exists, all versions of the .Net
1570 runtime are now installed.
1571
Peter Korsgaardefd49e32015-04-27 22:29:05 +02001572config BR2_CIVETWEB_WITH_LUA
1573 bool "civetweb lua option renamed"
1574 select BR2_LEGACY
1575 select BR2_PACKAGE_CIVETWEB_WITH_LUA
1576 help
1577 civetweb's lua option has been renamed to
1578 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
1579 packages name options.
1580
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02001581config BR2_PACKAGE_TIFF_TIFF2PDF
1582 bool "tiff utility-specific option removed"
1583 select BR2_LEGACY
1584 select BR2_PACKAGE_TIFF_UTILITIES
1585 help
1586 utility-specific options have been removed in favour of
1587 the new option BR2_PACKAGE_TIFF_UTILITIES.
1588
1589config BR2_PACKAGE_TIFF_TIFFCP
1590 bool "tiff utility-specific option removed"
1591 select BR2_LEGACY
1592 select BR2_PACKAGE_TIFF_UTILITIES
1593 help
1594 utility-specific options have been removed in favour of
1595 the new option BR2_PACKAGE_TIFF_UTILITIES.
1596
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001597config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
1598 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001599 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001600 help
1601 This option has never worked, so it has been removed.
1602
Yann E. MORIN02917962015-03-24 19:54:15 +01001603config BR2_TARGET_GENERIC_PASSWD_DES
1604 bool "Encoding passwords with DES has been removed"
1605 select BR2_LEGACY
1606 help
1607 Paswords can now only be encoded with either of md5, sha256 or sha512.
1608 The default is md5, which is stronger that DES (but still pretty weak).
1609
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03001610config BR2_PACKAGE_GTK2_THEME_HICOLOR
1611 bool "hicolor (default theme) is a duplicate"
1612 select BR2_LEGACY
1613 select BR2_PACKAGE_HICOLOR_ICON_THEME
1614 help
1615 The option was just a duplicate of hicolor icon theme.
1616
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001617config BR2_PACKAGE_VALGRIND_PTRCHECK
1618 bool "valgrind's PTRCheck was renamed to SGCheck"
1619 select BR2_LEGACY
1620 select BR2_PACKAGE_VALGRIND_SGCHECK
1621 help
1622 PTRCheck was renamed to SGCheck in valgrind
1623
1624###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001625comment "Legacy options removed in 2015.02"
1626
Pedro Aguilar10900c02015-02-27 06:38:07 +02001627config BR2_PACKAGE_LIBGC
1628 bool "libgc package removed"
1629 select BR2_LEGACY
1630 select BR2_PACKAGE_BDWGC
1631 help
1632 libgc has been removed because we have the same package under a
1633 different name, bdwgc.
1634
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01001635config BR2_PACKAGE_WDCTL
1636 bool "util-linux' wdctl option has been renamed"
1637 select BR2_LEGACY
1638 select BR2_PACKAGE_UTIL_LINUX_WDCTL
1639 help
1640 util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
1641 to be aligned with how the other options are named.
1642
Danomi Manchegoe44edb82015-07-13 22:57:06 -04001643config BR2_PACKAGE_UTIL_LINUX_ARCH
1644 bool "util-linux' arch option has been removed"
1645 select BR2_LEGACY
1646 help
1647 util-linux' arch was dropped in util-linux 2.23, in favor of
1648 the coreutils version.
1649
1650config BR2_PACKAGE_UTIL_LINUX_DDATE
1651 bool "util-linux' ddate option has been removed"
1652 select BR2_LEGACY
1653 help
1654 util-linux' ddate was dropped in util-linux 2.23.
1655
Romain Naour3c476542015-01-18 20:53:08 +01001656config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
1657 bool "rpm's bzip2 payloads option has been removed"
1658 select BR2_LEGACY
1659 select BR2_PACKAGE_BZIP2
1660 help
1661 The bzip2 payloads option rely entirely on the dependant package bzip2.
1662 So, you need to select it to enable this feature.
1663
1664config BR2_PACKAGE_RPM_XZ_PAYLOADS
1665 bool "rpm's xz payloads option has been removed"
1666 select BR2_LEGACY
1667 select BR2_PACKAGE_XZ
1668 help
1669 The xz payloads option rely entirely on the dependant package xz.
1670 So, you need to select it to enable this feature.
1671
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03001672config BR2_PACKAGE_M4
1673 bool "m4 target package removed"
1674 select BR2_LEGACY
1675 help
1676 The m4 target package has been removed, it's been
1677 deprecated for some time now.
1678
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03001679config BR2_PACKAGE_FLEX_BINARY
1680 bool "flex binary in target option removed"
1681 select BR2_LEGACY
1682 help
1683 The flex binary in the target option has been removed.
1684 It's been deprecated for some time now and is essentially a
1685 development tool which isn't very useful in the target.
1686
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03001687config BR2_PACKAGE_BISON
1688 bool "bison target package removed"
1689 select BR2_LEGACY
1690 help
1691 The bison target package has been removed, it's been
1692 deprecated for some time now and is essentially a development
1693 tool which isn't very useful in the target.
1694
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03001695config BR2_PACKAGE_GOB2
1696 bool "gob2 target package removed"
1697 select BR2_LEGACY
1698 help
1699 The gob2 target package has been removed, it's been
1700 deprecated for some time now and was essentially useless
1701 without a target toolchain.
1702
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03001703config BR2_PACKAGE_DISTCC
1704 bool "distcc target package removed"
1705 select BR2_LEGACY
1706 help
1707 The distcc target package has been removed, it's been
1708 deprecated for some time now and was essentially useless
1709 without a target toolchain.
1710
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03001711config BR2_PACKAGE_HASERL_VERSION_0_8_X
1712 bool "haserl 0.8.x version removed"
1713 select BR2_LEGACY
1714 help
1715 The 0.8.x version option for haserl has been removed since it
1716 has been deprecated for some time now.
1717 You should be able to use the 0.9.x version without issues.
1718
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03001719config BR2_PACKAGE_STRONGSWAN_TOOLS
1720 bool "strongswan option has been removed"
1721 select BR2_LEGACY
1722 select BR2_PACKAGE_STRONGSWAN_PKI
1723 select BR2_PACKAGE_STRONGSWAN_SCEP
1724 help
1725 The tools option has been removed upstream and the different tools
1726 have been split between the pki and scep options, with others
1727 deprecated.
1728
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001729config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001730 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001731 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001732 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001733 According to the github project page:
1734 https://github.com/pipelka/xbmc-addon-xvdr
1735 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001736
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01001737config BR2_PACKAGE_XBMC_PVR_ADDONS
1738 bool "xbmc options have been renamed"
1739 select BR2_LEGACY
1740 select BR2_PACKAGE_KODI_PVR_ADDONS
1741 help
1742 The XBMC media center project was renamed to Kodi entertainment center
1743
Bernd Kuhls35784592014-12-23 18:46:27 +01001744config BR2_PACKAGE_XBMC
1745 bool "xbmc options have been renamed"
1746 select BR2_LEGACY
1747 select BR2_PACKAGE_KODI
1748 help
1749 The XBMC media center project was renamed to Kodi entertainment center
1750
1751config BR2_PACKAGE_XBMC_ALSA_LIB
1752 bool "xbmc options have been renamed"
1753 select BR2_LEGACY
1754 select BR2_PACKAGE_KODI_ALSA_LIB
1755 help
1756 The XBMC media center project was renamed to Kodi entertainment center
1757
1758config BR2_PACKAGE_XBMC_AVAHI
1759 bool "xbmc options have been renamed"
1760 select BR2_LEGACY
1761 select BR2_PACKAGE_KODI_AVAHI
1762 help
1763 The XBMC media center project was renamed to Kodi entertainment center
1764
1765config BR2_PACKAGE_XBMC_DBUS
1766 bool "xbmc options have been renamed"
1767 select BR2_LEGACY
1768 select BR2_PACKAGE_KODI_DBUS
1769 help
1770 The XBMC media center project was renamed to Kodi entertainment center
1771
1772config BR2_PACKAGE_XBMC_LIBBLURAY
1773 bool "xbmc options have been renamed"
1774 select BR2_LEGACY
1775 select BR2_PACKAGE_KODI_LIBBLURAY
1776 help
1777 The XBMC media center project was renamed to Kodi entertainment center
1778
1779config BR2_PACKAGE_XBMC_GOOM
1780 bool "xbmc options have been renamed"
1781 select BR2_LEGACY
1782 select BR2_PACKAGE_KODI_GOOM
1783 help
1784 The XBMC media center project was renamed to Kodi entertainment center
1785
1786config BR2_PACKAGE_XBMC_RSXS
1787 bool "xbmc options have been renamed"
1788 select BR2_LEGACY
1789 select BR2_PACKAGE_KODI_RSXS
1790 help
1791 The XBMC media center project was renamed to Kodi entertainment center
1792
1793config BR2_PACKAGE_XBMC_LIBCEC
1794 bool "xbmc options have been renamed"
1795 select BR2_LEGACY
1796 select BR2_PACKAGE_KODI_LIBCEC
1797 help
1798 The XBMC media center project was renamed to Kodi entertainment center
1799
1800config BR2_PACKAGE_XBMC_LIBMICROHTTPD
1801 bool "xbmc options have been renamed"
1802 select BR2_LEGACY
1803 select BR2_PACKAGE_KODI_LIBMICROHTTPD
1804 help
1805 The XBMC media center project was renamed to Kodi entertainment center
1806
1807config BR2_PACKAGE_XBMC_LIBNFS
1808 bool "xbmc options have been renamed"
1809 select BR2_LEGACY
1810 select BR2_PACKAGE_KODI_LIBNFS
1811 help
1812 The XBMC media center project was renamed to Kodi entertainment center
1813
1814config BR2_PACKAGE_XBMC_RTMPDUMP
1815 bool "xbmc options have been renamed"
1816 select BR2_LEGACY
1817 select BR2_PACKAGE_KODI_RTMPDUMP
1818 help
1819 The XBMC media center project was renamed to Kodi entertainment center
1820
1821config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
1822 bool "xbmc options have been renamed"
1823 select BR2_LEGACY
1824 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
1825 help
1826 The XBMC media center project was renamed to Kodi entertainment center
1827
1828config BR2_PACKAGE_XBMC_LIBSMBCLIENT
1829 bool "xbmc options have been renamed"
1830 select BR2_LEGACY
1831 select BR2_PACKAGE_KODI_LIBSMBCLIENT
1832 help
1833 The XBMC media center project was renamed to Kodi entertainment center
1834
1835config BR2_PACKAGE_XBMC_LIBTHEORA
1836 bool "xbmc options have been renamed"
1837 select BR2_LEGACY
1838 select BR2_PACKAGE_KODI_LIBTHEORA
1839 help
1840 The XBMC media center project was renamed to Kodi entertainment center
1841
1842config BR2_PACKAGE_XBMC_LIBUSB
1843 bool "xbmc options have been renamed"
1844 select BR2_LEGACY
1845 select BR2_PACKAGE_KODI_LIBUSB
1846 help
1847 The XBMC media center project was renamed to Kodi entertainment center
1848
1849config BR2_PACKAGE_XBMC_LIBVA
1850 bool "xbmc options have been renamed"
1851 select BR2_LEGACY
1852 select BR2_PACKAGE_KODI_LIBVA
1853 help
1854 The XBMC media center project was renamed to Kodi entertainment center
1855
1856config BR2_PACKAGE_XBMC_WAVPACK
1857 bool "xbmc options have been renamed"
1858 select BR2_LEGACY
1859 select BR2_PACKAGE_KODI_WAVPACK
1860 help
1861 The XBMC media center project was renamed to Kodi entertainment center
1862
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001863config BR2_PREFER_STATIC_LIB
1864 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01001865 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001866 help
1867 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
1868 highlights the fact that the option no longer "prefers"
1869 static libraries, but "enforces" static libraries (i.e
1870 shared libraries are completely unused).
1871
Samuel Martina44b1c12014-12-14 17:24:24 +01001872 Take care of updating the type of libraries you want under the
1873 "Build options" menu.
1874
Bernd Kuhls35784592014-12-23 18:46:27 +01001875###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02001876comment "Legacy options removed in 2014.11"
1877
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001878config BR2_x86_generic
1879 bool "x86 generic variant has been removed"
1880 select BR2_LEGACY
1881 help
1882 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02001883 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001884
Andreas Larsson40e18f22014-10-30 09:29:36 +01001885config BR2_GCC_VERSION_4_4_X
1886 bool "gcc 4.4.x has been removed"
1887 select BR2_LEGACY
1888 help
1889 The 4.4.x version of gcc has been removed. Use a newer
1890 version instead.
1891
Andreas Larsson43b78e72014-10-30 09:29:35 +01001892config BR2_sparc_sparchfleon
1893 bool "sparchfleon CPU has been removed"
1894 select BR2_LEGACY
1895 help
1896 The sparchfleon CPU was only supported in a patched gcc 4.4
1897 version. Its support has been removed in favor of the leon3
1898 CPU starting from gcc 4.8.x.
1899
1900config BR2_sparc_sparchfleonv8
1901 bool "sparchfleonv8 CPU has been removed"
1902 select BR2_LEGACY
1903 help
1904 The sparchfleonv8 CPU was only supported in a patched gcc
1905 4.4 version. Its support has been removed in favor of the
1906 leon3 CPU starting from gcc 4.8.x.
1907
1908config BR2_sparc_sparcsfleon
1909 bool "sparcsfleon CPU has been removed"
1910 select BR2_LEGACY
1911 help
1912 The sparcsfleon CPU was only supported in a patched gcc 4.4
1913 version. Its support has been removed in favor of the leon3
1914 CPU starting from gcc 4.8.x.
1915
1916config BR2_sparc_sparcsfleonv8
1917 bool "sparcsfleonv8 CPU has been removed"
1918 select BR2_LEGACY
1919 help
1920 The sparcsfleonv8 CPU was only supported in a patched gcc
1921 4.4 version. Its support has been removed in favor of the
1922 leon3 CPU starting from gcc 4.8.x.
1923
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02001924config BR2_PACKAGE_XLIB_LIBPCIACCESS
1925 bool "xlib-libpciaccess option has been renamed"
1926 depends on BR2_PACKAGE_XORG7
1927 select BR2_LEGACY
1928 select BR2_PACKAGE_LIBPCIACCESS
1929 help
1930 libpciaccess neither depends on X11 nor Xlib. Thus the
1931 package has been renamed BR2_PACKAGE_LIBPCIACCESS
1932
Yann E. MORINb581bba2014-09-21 20:38:13 +02001933config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
1934 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001935 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02001936 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
1937 help
1938 The Xceive xc5000 option now also handles older firmwares from
1939 Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
1940 from Cresta, who bought Xceive.
1941
Yann E. MORINdac546e2014-09-21 20:38:12 +02001942config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1943 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001944 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02001945 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1946 help
1947 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1948 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1949 to better account for the fact that a T5 variant exists.
1950
Yann E. MORIN120136e2014-09-21 20:38:09 +02001951config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
1952 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001953 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02001954 help
1955 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
1956 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
1957 select it in:
1958 Target packages -> Hardware handling ->
1959 Firmware -> linux-firmware -> WiFi firmware ->
1960 iwlwifi 3160/726x revision to use (revision 7)
1961
1962config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
1963 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001964 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02001965 help
1966 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
1967 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
1968 select it in:
1969 Target packages -> Hardware handling ->
1970 Firmware -> linux-firmware -> WiFi firmware ->
1971 iwlwifi 3160/726x revision to use (revision 8)
1972
1973###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001974comment "Legacy options removed in 2014.08"
1975
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02001976config BR2_PACKAGE_LIBELF
1977 bool "libelf has been removed"
1978 select BR2_PACKAGE_ELFUTILS
1979 select BR2_LEGACY
1980 help
1981 The libelf package provided an old version of the libelf library
1982 and is deprecated. The libelf library is now provided by the
1983 elfutils package.
1984
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001985config BR2_KERNEL_HEADERS_3_8
1986 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001987 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001988 select BR2_LEGACY
1989 help
1990 Version 3.8.x of the Linux kernel headers have been deprecated
1991 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001992 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001993 automatically selected in your configuration.
1994
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02001995config BR2_PACKAGE_GETTEXT_TOOLS
1996 bool "support for gettext-tools on target has been removed"
1997 select BR2_LEGACY
1998 help
1999 The option to install the gettext utilities on the target
2000 has been removed. This is not necessary as Buildroot is not
2001 designed to provide a full development environment on the
2002 target. gettext tools should be used on the build machine
2003 instead.
2004
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002005config BR2_PACKAGE_PROCPS
2006 bool "procps has been replaced by procps-ng"
2007 select BR2_PACKAGE_PROCPS_NG
2008 select BR2_LEGACY
2009 help
2010 The procps package has been replaced by the equivalent procps-ng.
2011
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02002012config BR2_BINUTILS_VERSION_2_20_1
2013 bool "binutils 2.20.1 has been removed"
2014 select BR2_LEGACY
2015 help
2016 The 2.20.1 version of binutils has been removed. Use a newer
2017 version instead.
2018
2019config BR2_BINUTILS_VERSION_2_21
2020 bool "binutils 2.21 has been removed"
2021 select BR2_LEGACY
2022 help
2023 The 2.21 version of binutils has been removed. Use a newer
2024 version instead.
2025
2026config BR2_BINUTILS_VERSION_2_23_1
2027 bool "binutils 2.23.1 has been removed"
2028 select BR2_LEGACY
2029 help
2030 The 2.23.1 version of binutils has been removed. Use a newer
2031 version instead.
2032
Thomas Petazzoni506b9642014-07-01 20:03:03 +02002033config BR2_UCLIBC_VERSION_0_9_32
2034 bool "uclibc 0.9.32 has been removed"
2035 select BR2_LEGACY
2036 help
2037 The 0.9.32 version of uClibc has been removed. Use a newer
2038 version instead.
2039
Thomas Petazzonid10e0802014-07-01 20:03:06 +02002040config BR2_GCC_VERSION_4_3_X
2041 bool "gcc 4.3.x has been removed"
2042 select BR2_LEGACY
2043 help
2044 The 4.3.x version of gcc has been removed. Use a newer
2045 version instead.
2046
2047config BR2_GCC_VERSION_4_6_X
2048 bool "gcc 4.6.x has been removed"
2049 select BR2_LEGACY
2050 help
2051 The 4.6.x version of gcc has been removed. Use a newer
2052 version instead.
2053
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002054config BR2_GDB_VERSION_7_4
2055 bool "gdb 7.4 has been removed"
2056 select BR2_LEGACY
2057 help
2058 The 7.4 version of gdb has been removed. Use a newer version
2059 instead.
2060
2061config BR2_GDB_VERSION_7_5
2062 bool "gdb 7.5 has been removed"
2063 select BR2_LEGACY
2064 help
2065 The 7.5 version of gdb has been removed. Use a newer version
2066 instead.
2067
Thomas Petazzonib18dca02014-07-01 20:03:09 +02002068config BR2_BUSYBOX_VERSION_1_19_X
2069 bool "busybox version selection has been removed"
2070 select BR2_LEGACY
2071 help
2072 The possibility of selecting the Busybox version has been
2073 removed. Use the latest version provided by the Busybox
2074 package instead.
2075
2076config BR2_BUSYBOX_VERSION_1_20_X
2077 bool "busybox version selection has been removed"
2078 select BR2_LEGACY
2079 help
2080 The possibility of selecting the Busybox version has been
2081 removed. Use the latest version provided by the Busybox
2082 package instead.
2083
2084config BR2_BUSYBOX_VERSION_1_21_X
2085 bool "busybox version selection has been removed"
2086 select BR2_LEGACY
2087 help
2088 The possibility of selecting the Busybox version has been
2089 removed. Use the latest version provided by the Busybox
2090 package instead.
2091
Ezequiel García07ac0452014-07-05 18:07:40 -03002092config BR2_PACKAGE_LIBV4L_DECODE_TM6000
2093 bool "decode_tm6000"
2094 select BR2_PACKAGE_LIBV4L_UTILS
2095 select BR2_LEGACY
2096 help
2097 This libv4l option has been deprecated and replaced by a single
2098 option to build all the libv4l utilities.
2099
2100config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
2101 bool "ir-keytable"
2102 select BR2_PACKAGE_LIBV4L_UTILS
2103 select BR2_LEGACY
2104 help
2105 This libv4l option has been deprecated and replaced by a single
2106 option to build all the libv4l utilities.
2107
2108config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
2109 bool "v4l2-compliance"
2110 select BR2_PACKAGE_LIBV4L_UTILS
2111 select BR2_LEGACY
2112 help
2113 This libv4l option has been deprecated and replaced by a single
2114 option to build all the libv4l utilities.
2115
2116config BR2_PACKAGE_LIBV4L_V4L2_CTL
2117 bool "v4l2-ctl"
2118 select BR2_PACKAGE_LIBV4L_UTILS
2119 select BR2_LEGACY
2120 help
2121 This libv4l option has been deprecated and replaced by a single
2122 option to build all the libv4l utilities.
2123
2124config BR2_PACKAGE_LIBV4L_V4L2_DBG
2125 bool "v4l2-dbg"
2126 select BR2_PACKAGE_LIBV4L_UTILS
2127 select BR2_LEGACY
2128 help
2129 This libv4l option has been deprecated and replaced by a single
2130 option to build all the libv4l utilities.
2131
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002132###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002133comment "Legacy options removed in 2014.05"
2134
Peter Seiderer4990a382014-04-23 00:12:23 +02002135config BR2_PACKAGE_EVTEST_CAPTURE
2136 bool "evtest-capture support removed (dropped since evtest 1.31)"
2137 select BR2_LEGACY
2138 help
2139 Support for evtest-capture has been removed (dropped from
2140 evtest package since version 1.31), use evemu package
2141 instead.
2142
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002143config BR2_KERNEL_HEADERS_3_6
2144 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002145 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002146 select BR2_LEGACY
2147 help
2148 Version 3.6.x of the Linux kernel headers have been deprecated
2149 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002150 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002151 automatically selected in your configuration.
2152
2153config BR2_KERNEL_HEADERS_3_7
2154 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002155 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002156 select BR2_LEGACY
2157 help
2158 Version 3.7.x of the Linux kernel headers have been deprecated
2159 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002160 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002161 automatically selected in your configuration.
2162
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02002163config BR2_PACKAGE_VALA
2164 bool "vala target package has been removed"
2165 select BR2_LEGACY
2166 help
2167 The 'vala' target package has been removed since it has been
2168 deprecated for more than four buildroot releases.
2169 Note: the host vala package still exists.
2170
Yann E. MORINd6a37912014-04-07 21:58:03 +02002171config BR2_TARGET_TZ_ZONELIST
2172 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
2173
2174config BR2_PACKAGE_TZDATA_ZONELIST
2175 string "tzdata: the timezone list option has been renamed"
2176 help
2177 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
2178 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
2179 menu. You'll need to select BR2_TARGET_TZ_INFO.
2180
2181config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
2182 bool
2183 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
2184 select BR2_LEGACY
2185
Yann E. MORINc97aeb72014-04-05 17:21:43 +02002186config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
2187 bool "Lua command-line editing none has been renamed"
2188 select BR2_LEGACY
2189 help
2190 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
2191 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
2192 it in the corresponding choice.
2193
2194config BR2_PACKAGE_LUA_INTERPRETER_READLINE
2195 bool "Lua command-line editing using readline has been renamed"
2196 select BR2_LEGACY
2197 help
2198 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
2199 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
2200 it in the corresponding choice.
2201
2202config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
2203 bool "Lua command-line editing using linenoise has been renamed"
2204 select BR2_LEGACY
2205 help
2206 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
2207 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
2208 it in the corresponding choice.
2209
Yann E. MORIN365ae612014-03-28 01:00:24 +01002210config BR2_PACKAGE_DVB_APPS_UTILS
2211 bool "dvb-apps utilities now built by default"
2212 select BR2_LEGACY
2213 help
2214 The dvb-apps utilities are now always built when the dvb-apps
2215 package is selected.
2216
Yann E. MORIN971e3312014-03-01 15:52:56 +01002217config BR2_KERNEL_HEADERS_SNAP
2218 bool "Local Linux snapshot support removed"
2219 select BR2_LEGACY
2220 help
2221 Support for using a custom snapshot to install the Linux
2222 kernel headers has been removed.
2223
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002224config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
2225 bool "/dev management by udev removed"
2226 select BR2_LEGACY
2227 help
2228 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002229 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002230
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002231 Therefore, if you are not using 'systemd' as init system, you
2232 must choose 'Dynamic using eudev' in the '/dev management'
2233 menu to get the same behaviour as in your old configuration.
2234
2235 If you are using 'systemd', its internal implementation of
2236 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002237
2238 You must also check the packages depending on 'udev' are still
2239 selected.
2240
2241config BR2_PACKAGE_UDEV
2242 bool "udev is now a virtual package"
2243 select BR2_LEGACY
2244 select BR2_PACKAGE_HAS_UDEV
2245 help
2246 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002247 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002248
2249 Your old configuration refers to packages depending on 'udev',
2250 either for build or at runtime.
2251
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002252 Check that a 'udev' provider is selected. If you are not using
2253 'systemd' as init system, 'eudev' should be selected, which is
2254 the case if '/dev management' is set to 'Dynamic using eudev'.
2255
2256 If you are using 'systemd', its internal implementation of 'udev'
2257 is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002258
2259config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002260 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002261 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002262 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
2263 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002264 help
2265 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002266 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002267
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002268 If you are not using 'systemd' as init system, udev rules
2269 generation will be handled by 'eudev'. Check that
2270 '/dev management' is set to 'Dynamic using eudev' to get
2271 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002272
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002273 If you are using 'systemd', it internal implementation of 'udev'
2274 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002275
2276config BR2_PACKAGE_UDEV_ALL_EXTRAS
2277 bool "udev extras removed"
2278 select BR2_LEGACY
2279 help
2280 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002281 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002282
2283 The option to enable the extra features of 'udev' (gudev, ...)
2284 has been removed. These features are automatically enabled in
2285 the 'udev' providers if the dependencies are selected. For
2286 example, selecting 'libglib2' will trigger the build of gudev.
2287
Bernd Kuhls5562be12014-03-01 16:41:10 +01002288config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
2289 bool "xlib-libpthread-stubs option has been renamed"
2290 depends on BR2_PACKAGE_XORG7
2291 select BR2_LEGACY
2292 select BR2_PACKAGE_LIBPTHREAD_STUBS
2293 help
2294 The pthread stubs neither depend on X11 nor Xlib. Thus the
2295 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
2296
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002297###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01002298comment "Legacy options removed in 2014.02"
2299
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002300config BR2_sh2
2301 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002302 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002303 help
2304 Due to an inexistent user base and generally poor Linux
2305 support, the support for the SH2 architecture was removed.
2306
2307config BR2_sh3
2308 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002309 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002310 help
2311 Due to an inexistent user base and generally poor Linux
2312 support, the support for the SH3 architecture was removed.
2313
2314config BR2_sh3eb
2315 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002316 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002317 help
2318 Due to an inexistent user base and generally poor Linux
2319 support, the support for the SH3eb architecture was removed.
2320
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002321config BR2_KERNEL_HEADERS_3_1
2322 bool "kernel headers version 3.1.x are no longer supported"
2323 select BR2_KERNEL_HEADERS_3_2
2324 select BR2_LEGACY
2325 help
2326 Version 3.1.x of the Linux kernel headers have been deprecated
2327 for more than four buildroot releases and are now removed.
2328 As an alternative, version 3.2.x of the headers have been
2329 automatically selected in your configuration.
2330
2331config BR2_KERNEL_HEADERS_3_3
2332 bool "kernel headers version 3.3.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002333 select BR2_KERNEL_HEADERS_3_2
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002334 select BR2_LEGACY
2335 help
2336 Version 3.3.x of the Linux kernel headers have been deprecated
2337 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002338 As an alternative, version 3.2.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002339 automatically selected in your configuration.
2340
2341config BR2_KERNEL_HEADERS_3_5
2342 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002343 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002344 select BR2_LEGACY
2345 help
2346 Version 3.5.x of the Linux kernel headers have been deprecated
2347 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002348 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002349 automatically selected in your configuration.
2350
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002351config BR2_GDB_VERSION_7_2
2352 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002353 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002354 select BR2_LEGACY
2355 help
2356 Version 7.2.x of gdb has been deprecated for more than four
2357 buildroot releases and is now removed. As an alternative, gdb
2358 7.5.x has been automatically selected in your configuration.
2359
2360config BR2_GDB_VERSION_7_3
2361 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002362 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002363 select BR2_LEGACY
2364 help
2365 Version 7.3.x of gdb has been deprecated for more than four
2366 buildroot releases and is now removed. As an alternative, gdb
2367 7.5.x has been automatically selected in your configuration.
2368
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01002369config BR2_PACKAGE_CCACHE
2370 bool "ccache target package has been removed"
2371 select BR2_LEGACY
2372 help
2373 The 'ccache' target package has been removed since it has been
2374 deprecated for more than four buildroot releases.
2375 Note: using ccache for speeding up builds is still supported.
2376
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01002377config BR2_HAVE_DOCUMENTATION
2378 bool "support for documentation on target has been removed"
2379 select BR2_LEGACY
2380 help
2381 Support for documentation on target has been removed since it has
2382 been deprecated for more than four buildroot releases.
2383
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01002384config BR2_PACKAGE_AUTOMAKE
2385 bool "automake target package has been removed"
2386 select BR2_LEGACY
2387 help
2388 The 'automake' target package has been removed since it has been
2389 deprecated for more than four buildroot releases.
2390 Note: the host automake still exists.
2391
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01002392config BR2_PACKAGE_AUTOCONF
2393 bool "autoconf target package has been removed"
2394 select BR2_LEGACY
2395 help
2396 The 'autoconf' target package has been removed since it has been
2397 deprecated for more than four buildroot releases.
2398 Note: the host autoconf still exists.
2399
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01002400config BR2_PACKAGE_XSTROKE
2401 bool "xstroke has been removed"
2402 select BR2_LEGACY
2403 help
2404 The 'xstroke' package has been removed since it has been
2405 deprecated for more than four buildroot releases.
2406
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01002407config BR2_PACKAGE_LZMA
2408 bool "lzma target package has been removed"
2409 select BR2_LEGACY
2410 help
2411 The 'lzma' target package has been removed since it has been
2412 deprecated for more than four buildroot releases.
2413 Note: generating lzma-compressed rootfs images is still supported.
2414
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01002415config BR2_PACKAGE_TTCP
2416 bool "ttcp has been removed"
2417 select BR2_LEGACY
2418 help
2419 The 'ttcp' package has been removed since it has been
2420 deprecated for more than four buildroot releases.
2421
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002422config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002423 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002424 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002425 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002426 help
2427 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002428 to 'libllcp'. We have added a new package for 'libllcp' and bumped
2429 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002430
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00002431config BR2_PACKAGE_MYSQL_CLIENT
2432 bool "MySQL client renamed to MySQL"
2433 select BR2_LEGACY
2434 select BR2_PACKAGE_MYSQL
2435 help
2436 The option has been renamed BR2_PACKAGE_MYSQL
2437
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01002438config BR2_PACKAGE_SQUASHFS3
2439 bool "squashfs3 has been removed"
2440 select BR2_LEGACY
2441 select BR2_PACKAGE_SQUASHFS
2442 help
2443 The 'squashfs3' package has been removed since it has been
2444 deprecated for more than four buildroot releases. Package
2445 'squashfs' (4) has been selected automatically as replacement.
2446
2447config BR2_TARGET_ROOTFS_SQUASHFS3
2448 bool "squashfs3 rootfs support has been removed"
2449 select BR2_LEGACY
2450 help
2451 Together with the removal of the squashfs3 package, support
2452 for squashfs3 root filesystems has been removed too. Squashfs
2453 root filesystems will automatically use squashfs4 now.
2454
Arnaud Aujon560fe852013-12-15 20:23:12 +01002455config BR2_PACKAGE_NETKITBASE
2456 bool "netkitbase has been removed"
2457 select BR2_LEGACY
2458 help
2459 The 'netkitbase' package has been removed since it has been
2460 deprecated since 2012.11. This package provided 'inetd'
2461 which is replaced by 'xinet' and 'ping' which is replaced by
2462 'busybox' or 'fping'.
2463
2464config BR2_PACKAGE_NETKITTELNET
2465 bool "netkittelnet has been removed"
2466 select BR2_LEGACY
2467 help
2468 The 'netkittelnet' package has been removed since it has
2469 been deprecated since 2012.11. 'busybox' provides a telnet
2470 client and should be used instead.
2471
Francois Perrad63058f82014-01-11 16:42:09 +01002472config BR2_PACKAGE_LUASQL
2473 bool "luasql has been replaced by luasql-sqlite3"
2474 select BR2_PACKAGE_LUASQL_SQLITE3
2475 select BR2_LEGACY
2476 help
2477 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2478
Francois Perrada6c53472014-01-11 16:42:08 +01002479config BR2_PACKAGE_LUACJSON
2480 bool "luacjson has been replaced by lua-cjson"
2481 select BR2_PACKAGE_LUA_CJSON
2482 select BR2_LEGACY
2483 help
2484 The option has been renamed BR2_PACKAGE_LUA_CJSON.
2485
Arnaud Aujon560fe852013-12-15 20:23:12 +01002486###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002487comment "Legacy options removed in 2013.11"
2488
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01002489config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2490 bool "lvm2's 'dmsetup only' option removed"
2491 select BR2_LEGACY
2492 help
2493 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2494 led to problems with other packages that need the full lvm2
2495 suite. Therefore, the option has been replaced with the positive
2496 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2497
2498# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2499# in order to automatically propagate old configs
2500
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01002501config BR2_PACKAGE_QT_JAVASCRIPTCORE
2502 bool "qt javascriptcore option removed"
2503 select BR2_LEGACY
2504 help
2505 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2506 force the activation or disabling of the JIT compiler in the
2507 Qt Javascript interpreter. However, the JIT compiler is not
2508 available for all architectures, so forcing its activation
2509 does not always work. Moreover, Qt knows by itself for which
2510 architectures JIT support is possible, and will
2511 automatically enable it if possible.
2512
2513 Therefore, this option was in fact useless, and causing
2514 build problems when enabled on architectures for which the
2515 JIT support was not available. It has been removed, and
2516 there is no replacement: Qt will enable JIT at compile time
2517 when possible.
2518
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002519config BR2_PACKAGE_MODULE_INIT_TOOLS
2520 bool "module-init-tools replaced by kmod"
2521 select BR2_PACKAGE_KMOD
2522 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01002523 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002524 help
2525 The 'module-init-tools' package has been removed, since it
2526 has been depracated upstream and replaced by 'kmod'.
2527
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02002528config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2529 string "u-boot: the git repository URL option has been renamed"
2530 help
2531 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2532 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2533
2534config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2535 bool
2536 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2537 select BR2_LEGACY
2538
2539# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2540# boot/uboot/Config.in
2541
2542config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2543 string "u-boot: the git repository version option has been renamed"
2544 help
2545 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
2546 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
2547
2548config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
2549 bool
2550 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
2551 select BR2_LEGACY
2552
2553# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
2554# boot/uboot/Config.in
2555
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02002556config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
2557 string "linux: the git repository URL option has been renamed"
2558 help
2559 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
2560 been renamed to
2561 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
2562
2563config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
2564 bool
2565 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
2566 select BR2_LEGACY
2567
2568# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
2569# linux/Config.in
2570
2571config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
2572 string "linux: the git repository version option has been renamed"
2573 help
2574 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
2575 been renamed to
2576 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
2577
2578config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
2579 bool
2580 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
2581 select BR2_LEGACY
2582
2583# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
2584# linux/Config.in
2585
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002586###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002587comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002588
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02002589config BR2_ARM_OABI
2590 bool "ARM OABI support has been removed"
2591 select BR2_LEGACY
2592 help
2593 The support for the ARM OABI was deprecated since a while,
2594 and has been removed completely from Buildroot. It is also
2595 deprecated in upstream gcc, since gcc 4.7. People should
2596 switch to EABI instead, which should not be a problem as
2597 long as you don't have pre-built OABI binaries in your
2598 system that you can't recompile.
2599
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002600config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
2601 bool "dosfstools dosfsck renamed to fsck.fat"
2602 select BR2_LEGACY
2603 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
2604 help
2605 dosfsck was renamed upstream to fsck.fat for consistency.
2606
2607config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
2608 bool "dosfstools dosfslabel renamed to fatlabel"
2609 select BR2_LEGACY
2610 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
2611 help
2612 doslabel was renamed upstream to fatlabel for consistency.
2613
2614config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
2615 bool "dosfstools mkdosfs renamed to mkfs.fat"
2616 select BR2_LEGACY
2617 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
2618 help
2619 mkdosfs was renamed upstream to mkfs.fat for consistency.
2620
Thomas Petazzonie21db002013-06-30 21:28:57 +02002621config BR2_ELF2FLT
2622 bool "the elf2flt option has been renamed"
2623 select BR2_LEGACY
2624 help
2625 The BR2_ELF2FLT option has been renamed to
2626 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
2627 the package infrastructure.
2628
Thomas Petazzonid8060052013-07-16 10:03:17 +02002629config BR2_VFP_FLOAT
2630 bool "the ARM VFP floating point option has been renamed"
2631 select BR2_LEGACY
2632 help
2633 Due to a major refactoring of the floating-point handling of
2634 the ARM architecture support, the BR2_VFP_FLOAT option has
2635 been replaced with a choice of options that allows to select
2636 between various VFP versions/capabilities.
2637
Samuel Martinba8f82b2013-08-30 06:08:59 +02002638config BR2_PACKAGE_GCC_TARGET
2639 bool "gcc on the target filesystem has been removed"
2640 select BR2_LEGACY
2641 help
2642 The support for gcc in the target filesystem was deprecated
2643 since a while, and has been removed completely from Buildroot.
2644 See Buildroot's documentation for more explanations.
2645
2646config BR2_HAVE_DEVFILES
2647 bool "development files in target filesystem has been removed"
2648 select BR2_LEGACY
2649 help
2650 The installation of the development files in the target
2651 filesystem was deprecated since a while, and has been removed
2652 completely from Buildroot.
2653 See Buildroot's documentation for more explanations.
2654
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002655###############################################################################
2656comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +00002657
2658config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
2659 bool "Realtek 8192 replaced by Realtek 81xx"
2660 select BR2_LEGACY
2661 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
2662 help
2663 Now covers the whole Realtek 81xx familly: 8188/8192.
2664
2665config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
2666 bool "Realtek 8712 replaced by Realtek 87xx"
2667 select BR2_LEGACY
2668 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
2669 help
2670 Now covers the whole Realtek 87xx familly: 8712/8723.
2671
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002672###############################################################################
2673comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002674
Gustavo Zacarias94744212013-04-04 07:29:45 +00002675config BR2_sa110
2676 bool "sa110 ARM target switched to strongarm"
2677 select BR2_LEGACY
2678 select BR2_strongarm
2679 help
2680 The SA110 is the same as a generic StrongARM, it just differs
2681 in speed, peripherals and cache.
2682
2683config BR2_sa1100
2684 bool "sa1100 ARM target switched to strongarm"
2685 select BR2_LEGACY
2686 select BR2_strongarm
2687 help
2688 The SA1100 is the same as a generic StrongARM, it just differs
2689 in speed, peripherals and cache.
2690
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002691config BR2_PACKAGE_GDISK
2692 bool "gdisk has been replaced by gptfdisk"
2693 select BR2_LEGACY
2694 select BR2_PACKAGE_GPTFDISK
2695 help
2696 The option has been renamed BR2_PACKAGE_GPTFDISK.
2697
2698config BR2_PACKAGE_GDISK_GDISK
2699 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
2700 select BR2_LEGACY
2701 select BR2_PACKAGE_GPTFDISK
2702 select BR2_PACKAGE_GPTFDISK_GDISK
2703 help
2704 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
2705
2706config BR2_PACKAGE_GDISK_SGDISK
2707 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
2708 select BR2_LEGACY
2709 select BR2_PACKAGE_GPTFDISK
2710 select BR2_PACKAGE_GPTFDISK_SGDISK
2711 help
2712 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00002713
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +00002714config BR2_PACKAGE_GDB_HOST
2715 bool "gdb for the host option has been renamed"
2716 select BR2_PACKAGE_HOST_GDB
2717 select BR2_LEGACY
2718 help
2719 Due to the conversion of gdb to the package infrastructure,
2720 the BR2_PACKAGE_GDB_HOST option has been renamed
2721 BR2_PACKAGE_HOST_GDB.
2722
Carsten Schoenert76de0f82013-03-10 08:32:46 +00002723config BR2_PACKAGE_DIRECTB_DITHER_RGB16
2724 bool "DirectFB RGB16 dithering option has been renamed"
2725 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
2726 select BR2_LEGACY
2727 help
2728 The option has been renamed
2729 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
2730
2731config BR2_PACKAGE_DIRECTB_TESTS
2732 bool "DirectFB Tests option has been renamed"
2733 select BR2_PACKAGE_DIRECTFB_TESTS
2734 select BR2_LEGACY
2735 help
2736 The option has been renamed
2737 BR2_PACKAGE_DIRECTFB_TESTS.
2738
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002739###############################################################################
2740comment "Legacy options removed in 2012.11"
2741
Thomas Petazzoni12ccc432013-02-07 11:58:45 +00002742config BR2_PACKAGE_CUSTOMIZE
2743 bool "customize package has been removed"
2744 select BR2_LEGACY
2745 help
2746 The 'customize' special package has been removed. Instead,
2747 we recommend to create either your own packages, or use a
2748 post-build script to customize your root filesystem. See
2749 Buildroot's documentation for more details.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002750
2751config BR2_PACKAGE_XSERVER_xorg
2752 bool "X.org modular server"
2753 select BR2_LEGACY
2754 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
2755 help
2756 The option has been renamed
2757 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
2758
2759config BR2_PACKAGE_XSERVER_tinyx
2760 bool "KDrive / TinyX server"
2761 select BR2_LEGACY
2762 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
2763 help
2764 The option has been renamed
2765 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
2766
2767config BR2_PACKAGE_PTHREAD_STUBS
2768 bool "pthread-stubs option has been renamed"
2769 select BR2_LEGACY
Bernd Kuhls5562be12014-03-01 16:41:10 +01002770 select BR2_PACKAGE_LIBPTHREAD_STUBS
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002771 help
2772 For consistency reason, the pthread-stubs package has been
Bernd Kuhls5562be12014-03-01 16:41:10 +01002773 renamed to libpthread-stubs.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002774
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002775###############################################################################
2776comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00002777
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +00002778config BR2_PACKAGE_GETTEXT_STATIC
2779 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
2780 select BR2_LEGACY
2781 help
2782 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
2783
2784
2785config BR2_PACKAGE_LIBINTL
2786 bool "libintl"
2787 select BR2_LEGACY
2788 select BR2_PACKAGE_GETTEXT
2789 help
2790 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
2791 only installs the library, not the executables.
2792
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +00002793config BR2_PACKAGE_INPUT_TOOLS_EVTEST
2794 bool "input-tools evtest is now a separate package evtest"
2795 select BR2_LEGACY
2796 select BR2_PACKAGE_EVTEST
2797 help
2798 The evtest program from input-tools is now a separate package.
2799
Sonic Zhang57133822013-05-03 00:39:34 +00002800config BR2_BFIN_FDPIC
2801 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
2802 select BR2_BINFMT_FDPIC
2803 select BR2_LEGACY
2804
2805config BR2_BFIN_FLAT
2806 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
2807 select BR2_BINFMT_FLAT
2808 select BR2_LEGACY
2809
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00002810endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02002811
2812endif # !SKIP_LEGACY