blob: 98b9eeb84fc2c38d35441130b17aa4856e1305e3 [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
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +0000148config BR2_PACKAGE_OPENOCD_FT2XXX
149 bool "openocd ft2232 support has been removed"
150 select BR2_PACKAGE_OPENOCD_FTDI
151 select BR2_LEGACY
152 help
153 FT2232 support in OpenOCD has been removed, it's replaced by
154 FDTI support, which has automatically been enabled.
155
Bernd Kuhls24a07d52017-04-29 10:37:28 +0200156config BR2_PACKAGE_KODI_RTMPDUMP
157 bool "kodi rtmp has been removed"
158 select BR2_LEGACY
159 help
160 Internal rtmp support was removed from Kodi.
161
Bernd Kuhlsd3936902017-04-29 10:37:21 +0200162config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
163 bool "kodi-visualisation-fountain has been removed"
164 select BR2_LEGACY
165 help
166 According to upstream 'the visualization is not currently
167 in a working shape.'
168
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +0200169config BR2_PACKAGE_PORTMAP
170 bool "portmap has been removed"
171 select BR2_LEGACY
172 select BR2_PACKAGE_RPCBIND
173 help
174 The portmap upstream tarball is removed, no releases since
175 ten years and latest change in upstream git in 2014.
176 You should better use rpcbind as a RPC portmapper.
177
Thomas Petazzoni58472912017-04-03 22:28:21 +0200178config BR2_BINUTILS_VERSION_2_25_X
179 bool "binutils version 2.25 support removed"
180 select BR2_LEGACY
181 help
182 Support for binutils version 2.25 has been removed. The
183 current default version (2.27 or later) has been selected
184 instead.
185
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +0200186config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
187 bool "uclibc RPC support has been removed"
188 select BR2_LEGACY
189 help
190 uClibc-ng removed internal RPC implementation in 1.0.23. You
191 should use libtirpc instead.
192
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +0100193config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
194 int "extra size in blocks has been removed"
195 default 0
196 help
197 Since the support for auto calculation of the filesystem size has been
198 removed, this option is now useless and must be 0.
199 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS matchs
200 your needs.
201
202config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
203 bool
204 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
205 select BR2_LEGACY
206
Vicente Olivert Riera815f7132017-03-22 11:39:13 +0000207config BR2_PACKAGE_SYSTEMD_KDBUS
208 bool "systemd-kdbus has been removed"
209 select BR2_LEGACY
210 help
211 --enable/disable-kdbus configure option has been removed since
212 systemd-231.
213
Gustavo Zacariasd10b4932017-03-16 10:04:34 -0300214config BR2_PACKAGE_POLARSSL
215 bool "polarssl has been removed"
216 select BR2_LEGACY
217 help
218 The polarssl crypto library has been removed since the 1.2.x
219 release branch is no longer maintained. Newer upstream
220 branches/releases (mbedtls) have API changes so they're not
221 drop-in replacements.
222
Yann E. MORIN61551182017-03-12 10:58:15 +0100223config BR2_NBD_CLIENT
224 bool "nbd client option was renamed"
225 select BR2_LEGACY
226 select BR2_PACKAGE_NBD_CLIENT
227 help
228 The nbd client option has been renamed to BR2_PACKAGE_NBD_CLIENT.
229
230config BR2_NBD_SERVER
231 bool "nbd server option was renamed"
232 select BR2_LEGACY
233 select BR2_PACKAGE_NBD_SERVER
234 help
235 The nbd server option has been renamed to BR2_PACKAGE_NBD_SERVER.
236
Carlos Santos6a9c6312017-02-14 09:05:16 -0200237config BR2_PACKAGE_GMOCK
238 bool "gmock merged into gtest package"
239 select BR2_LEGACY
240 select BR2_PACKAGE_GTEST
241 select BR2_PACKAGE_GTEST_GMOCK
242 help
243 GMock is now a suboption of the GTest package.
244
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300245config BR2_KERNEL_HEADERS_4_8
246 bool "kernel headers version 4.8.x are no longer supported"
247 select BR2_KERNEL_HEADERS_4_4
248 select BR2_LEGACY
249 help
250 Version 4.8.x of the Linux kernel headers are no longer
251 maintained upstream and are now removed. As an alternative,
252 version 4.4.x of the headers have been automatically
253 selected in your configuration.
254
255config BR2_KERNEL_HEADERS_3_18
256 bool "kernel headers version 3.18.x are no longer supported"
257 select BR2_KERNEL_HEADERS_3_12
258 select BR2_LEGACY
259 help
260 Version 3.18.x of the Linux kernel headers are no longer
261 maintained upstream and are now removed. As an alternative,
262 version 3.12.x of the headers have been automatically
263 selected in your configuration.
264
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -0300265config BR2_GLIBC_VERSION_2_22
266 bool "glibc 2.22 removed"
267 select BR2_LEGACY
268 help
269 Support for glibc version 2.22 has been removed. The current
270 default version has been selected instead.
271
272###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +0100273comment "Legacy options removed in 2017.02"
274
Francois Perrad8546ff32016-12-26 15:50:35 +0100275config BR2_PACKAGE_PERL_DB_FILE
276 bool "perl-db-file removed"
277 select BR2_LEGACY
278 select BR2_PACKAGE_BERKELEYDB
279 select BR2_PACKAGE_PERL
280 help
281 DB_File can be built as a core Perl module, so the separate
282 perl-db-file package has been removed.
283
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300284config BR2_KERNEL_HEADERS_4_7
285 bool "kernel headers version 4.7.x are no longer supported"
286 select BR2_KERNEL_HEADERS_4_4
287 select BR2_LEGACY
288 help
289 Version 4.7.x of the Linux kernel headers are no longer
290 maintained upstream and are now removed. As an alternative,
291 version 4.4.x of the headers have been automatically
292 selected in your configuration.
293
294config BR2_KERNEL_HEADERS_4_6
295 bool "kernel headers version 4.6.x are no longer supported"
296 select BR2_KERNEL_HEADERS_4_4
297 select BR2_LEGACY
298 help
299 Version 4.6.x of the Linux kernel headers are no longer
300 maintained upstream and are now removed. As an alternative,
301 version 4.4.x of the headers have been automatically
302 selected in your configuration.
303
304config BR2_KERNEL_HEADERS_4_5
305 bool "kernel headers version 4.5.x are no longer supported"
306 select BR2_KERNEL_HEADERS_4_4
307 select BR2_LEGACY
308 help
309 Version 4.5.x of the Linux kernel headers are no longer
310 maintained upstream and are now removed. As an alternative,
311 version 4.4.x of the headers have been automatically
312 selected in your configuration.
313
314config BR2_KERNEL_HEADERS_3_14
315 bool "kernel headers version 3.14.x are no longer supported"
316 select BR2_KERNEL_HEADERS_3_12
317 select BR2_LEGACY
318 help
319 Version 3.14.x of the Linux kernel headers are no longer
320 maintained upstream and are now removed. As an alternative,
321 version 3.12.x of the headers have been automatically
322 selected in your configuration.
323
Romain Naour63abbcc2016-12-16 16:29:45 +0100324config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
325 bool "musl-cross 1.1.12 toolchain removed"
326 select BR2_LEGACY
327 help
328 The support for the prebuilt toolchain based on the Musl C
329 library provided by the musl-cross project has been removed.
330 Upstream doesn't provide any prebuilt toolchain anymore, use the
331 Buildroot toolchain instead.
332
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +0100333config BR2_UCLIBC_INSTALL_TEST_SUITE
334 bool "uClibc tests now in uclibc-ng-test"
335 select BR2_LEGACY
336 select BR2_PACKAGE_UCLIBC_NG_TEST
337 help
338 The test suite of the uClibc C library has been moved into a
339 separate package, uclibc-ng-test.
340
Arnout Vandecappelle311bc132016-11-24 00:40:35 +0100341config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
342 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
343 select BR2_LEGACY
344 help
345 The ADI Blackfin toolchain has many bugs which are fixed in
346 more recent gcc and uClibc-ng releases. Use the Buildroot
347 toolchain instead.
348
Arnout Vandecappelle207294f2016-11-23 15:14:04 +0100349config BR2_PACKAGE_MAKEDEVS
350 bool "makedevs removed"
351 select BR2_LEGACY
352 help
353 The makedevs tool is part of busybox. The Buildroot fork
354 should not be used outside of the Buildroot infrastructure.
355
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +0100356config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
357 bool "Arago ARMv7 2011.09 removed"
358 select BR2_LEGACY
359 help
360 The Arago toolchains are every old and not updated anymore.
361
362config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
363 bool "Arago ARMv5 2011.09 removed"
364 select BR2_LEGACY
365 help
366 The Arago toolchains are every old and not updated anymore.
367
Thomas Petazzonied364d12016-11-05 14:32:38 +0100368config BR2_PACKAGE_SNOWBALL_HDMISERVICE
369 bool "snowball-hdmiservice removed"
370 select BR2_LEGACY
371 help
372 We no longer have support for the Snowball platform in
373 Buildroot, so this package was no longer useful.
374
375config BR2_PACKAGE_SNOWBALL_INIT
376 bool "snowball-init removed"
377 select BR2_LEGACY
378 help
379 We no longer have support for the Snowball platform in
380 Buildroot, so this package was no longer useful.
381
Jörg Krause69aa0572016-12-14 14:40:58 +0100382config BR2_GDB_VERSION_7_9
383 bool "gdb 7.9 has been removed"
384 select BR2_LEGACY
385 help
386 The 7.9 version of gdb has been removed. Use a newer version
387 instead.
388
Thomas Petazzonied364d12016-11-05 14:32:38 +0100389###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +0200390comment "Legacy options removed in 2016.11"
391
Fabrice Fontainec4572132016-09-12 23:31:07 +0200392config BR2_PACKAGE_PHP_SAPI_CLI_CGI
393 bool "PHP CGI and CLI options are now seperate"
394 select BR2_PACKAGE_PHP_SAPI_CLI
395 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200396 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200397 help
398 The PHP Interface options have been split up into a
399 separate option for each interface.
400
401config BR2_PACKAGE_PHP_SAPI_CLI_FPM
402 bool "PHP CLI and FPM options are now separate"
403 select BR2_PACKAGE_PHP_SAPI_CLI
404 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200405 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200406 help
407 The PHP Interface options have been split up into a
408 separate option for each interface.
409
Arnout Vandecappelle35343992016-10-15 16:51:06 +0200410config BR2_PACKAGE_WVSTREAMS
411 bool "wvstreams removed"
412 select BR2_LEGACY
413 help
414 wvstreams is not maintained anymore since about 2009. It also
415 doesn't build anymore with recent compilers (GCC 5+).
416
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +0200417config BR2_PACKAGE_WVDIAL
418 bool "wvdial removed"
419 select BR2_LEGACY
420 help
421 wvdial is not maintained anymore since about 2009. It also
422 doesn't build anymore with recent compilers (GCC 5+).
423
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +0200424config BR2_PACKAGE_WEBKITGTK24
425 bool "webkitgtk 2.4.x removed"
426 select BR2_LEGACY
427 help
428 This legacy package only existed because some other packages
429 depended on that specific version of webkitgtk. However, the
430 other packages have been fixed. webkitgtk 2.4 is full of
431 security issues so it needs to be removed.
432
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +0200433config BR2_PACKAGE_TORSMO
434 bool "torsmo removed"
435 select BR2_LEGACY
436 help
437 torsmo has been unmaintained for a long time, and nobody
438 seems to be interested in it.
439
Arnout Vandecappelle290166f2016-10-15 16:51:02 +0200440config BR2_PACKAGE_SSTRIP
441 bool "sstrip removed"
442 select BR2_LEGACY
443 help
444 sstrip is unmaintained and potentially harmful. It doesn't
445 save so much compared to normal binutils strip, and there is
446 a big risk of binaries that don't work. Use normal strip
447 instead.
448
Arnout Vandecappelle133466f2016-10-15 16:51:01 +0200449config BR2_KERNEL_HEADERS_4_3
450 bool "kernel headers version 4.3.x are no longer supported"
451 select BR2_KERNEL_HEADERS_4_1
452 select BR2_LEGACY
453 help
454 Version 4.3.x of the Linux kernel headers are no longer
455 maintained upstream and are now removed. As an alternative,
456 version 4.1.x of the headers have been automatically
457 selected in your configuration.
458
459config BR2_KERNEL_HEADERS_4_2
460 bool "kernel headers version 4.2.x are no longer supported"
461 select BR2_KERNEL_HEADERS_4_1
462 select BR2_LEGACY
463 help
464 Version 4.2.x of the Linux kernel headers are no longer
465 maintained upstream and are now removed. As an alternative,
466 version 4.1.x of the headers have been automatically
467 selected in your configuration.
468
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +0200469config BR2_PACKAGE_KODI_ADDON_XVDR
470 bool "kodi-addon-xvdr removed"
471 select BR2_LEGACY
472 help
473 According to the github project page:
474 https://github.com/pipelka/xbmc-addon-xvdr
475 this package is discontinued.
476
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +0200477config BR2_PACKAGE_IPKG
478 bool "ipkg removed"
479 select BR2_LEGACY
480 help
481 ipkg dates back to the early 2000s when Compaq started the
482 handhelds.org project and it hasn't seen development since 2006.
483 Use opkg as a replacement.
484
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +0200485config BR2_GCC_VERSION_4_7_X
486 bool "gcc 4.7.x support removed"
487 select BR2_LEGACY
488 help
489 Support for gcc version 4.7.x has been removed. The current
490 default version (4.9.x or later) has been selected instead.
491
Arnout Vandecappelled8878112016-10-15 16:50:57 +0200492config BR2_BINUTILS_VERSION_2_24_X
493 bool "binutils version 2.24 support removed"
494 select BR2_LEGACY
495 help
496 Support for binutils version 2.24 has been removed. The
497 current default version (2.26 or later) has been selected
498 instead.
499
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -0300500config BR2_PACKAGE_WESTON_RPI
501 bool "Weston propietary RPI support is gone"
502 select BR2_LEGACY
503 help
504 Upstream decided the propietary (rpi-userland) weston composer
505 support wasn't worth the effort so it was removed. Switch to
506 the open VC4 support.
507
Yann E. MORIN20b14462016-09-06 16:29:14 +0200508config BR2_LINUX_KERNEL_TOOL_CPUPOWER
509 bool "linux-tool cpupower"
510 depends on BR2_LINUX_KERNEL
511 select BR2_LEGACY
512 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
513 help
514 Linux tool cpupower option was renamed.
515
516config BR2_LINUX_KERNEL_TOOL_PERF
517 bool "linux-tool perf"
518 depends on BR2_LINUX_KERNEL
519 select BR2_LEGACY
520 select BR2_PACKAGE_LINUX_TOOLS_PERF
521 help
522 Linux tool perf option was renamed.
523
524config BR2_LINUX_KERNEL_TOOL_SELFTESTS
525 bool "linux-tool selftests"
526 depends on BR2_LINUX_KERNEL
527 select BR2_LEGACY
528 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
529 help
530 Linux tool selftests option was renamed.
531
Thomas Petazzoni50332a52016-08-11 15:25:38 +0200532config BR2_GCC_VERSION_4_8_ARC
533 bool "gcc arc option renamed"
534 select BR2_LEGACY
535 select BR2_GCC_VERSION_ARC
536 help
537 The option that selects the gcc version for the ARC
538 architecture has been renamed to BR2_GCC_VERSION_ARC.
539
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300540config BR2_KERNEL_HEADERS_4_0
541 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300542 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300543 select BR2_LEGACY
544 help
545 Version 4.0.x of the Linux kernel headers have been deprecated
546 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300547 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300548 automatically selected in your configuration.
549
550config BR2_KERNEL_HEADERS_3_19
551 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300552 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300553 select BR2_LEGACY
554 help
555 Version 3.19.x of the Linux kernel headers have been deprecated
556 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -0300557 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300558 automatically selected in your configuration.
559
Romain Naour0e517312016-09-02 22:31:32 +0200560config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
561 bool "libevas-generic-loaders package removed"
562 select BR2_LEGACY
563 select BR2_PACKAGE_EFL
564 help
565 With EFL 1.18, libevas-generic-loaders is now provided by the efl
566 package.
567
Romain Naourc22b7582016-09-02 22:31:31 +0200568config BR2_PACKAGE_ELEMENTARY
569 bool "elementary package removed"
570 select BR2_LEGACY
571 select BR2_PACKAGE_EFL
572 help
573 With EFL 1.18, elementary is now provided by the efl package.
574
Yann E. MORINe782cd52016-08-28 01:03:04 +0200575config BR2_LINUX_KERNEL_CUSTOM_LOCAL
576 bool "Linux kernel local directory option removed"
577 help
578 The option to select a local directory as the source of the Linux
579 kernel has been removed. It hurts reproducibility of builds.
580
581 In case you were using this option during development of your
582 Linux kernel, use the override mechanism instead.
583
584###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200585comment "Legacy options removed in 2016.08"
586
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100587config BR2_PACKAGE_EFL_JP2K
588 bool "libevas jp2k loader has been removed"
589 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +0100590 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +0100591 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
592 while Buildroot only packages openjpeg 2.x. Therefore, the
593 JP2K loader has been removed from EFL.
594
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200595config BR2_PACKAGE_SYSTEMD_COMPAT
596 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +0200597 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200598 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +0200599 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200600 been removed. Theses libraries have been useless since a few
601 version, and have been fully dropped from the source since
602 v230.
603
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +0200604config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
605 bool "gst1-plugins-bad liveadder plugin removed"
606 select BR2_LEGACY
607 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
608 help
609 The functionality of the liveadder plugin of the
610 gst1-plugins-bad package has been merged into audiomixer.
611
Andrew Webster0f92b192016-06-10 14:13:29 -0400612config BR2_PACKAGE_LIBFSLVPUWRAP
613 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
614 select BR2_LEGACY
615 select BR2_PACKAGE_IMX_VPUWRAP
616 help
617 The libfslvpuwrap has been renamed to match the renamed package.
618
Andrew Webster64998902016-06-10 14:13:18 -0400619config BR2_PACKAGE_LIBFSLPARSER
620 bool "libfslparser has been renamed to imx-parser"
621 select BR2_LEGACY
622 select BR2_PACKAGE_IMX_PARSER
623 help
624 The libfslparser has been renamed to match the renamed package.
625
Andrew Webster47e62032016-06-10 14:13:05 -0400626config BR2_PACKAGE_LIBFSLCODEC
627 bool "libfslcodec has been renamed to imx-codec"
628 select BR2_LEGACY
629 select BR2_PACKAGE_IMX_CODEC
630 help
631 The libfslcodec has been renamed to match the renamed package.
632
Carlos Santosb5d99002016-06-03 16:35:39 -0300633config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
634 bool "FIT support in uboot-tools has been refactored"
635 select BR2_LEGACY
636 select BR2_PACKAGE_DTC
637 select BR2_PACKAGE_DTC_PROGRAMS
638 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
639 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
640 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
641 help
642 This option has been removed in favor of a more fine-grained
643 configuration, which is recommended. Selecting this option
644 enables FIT and FIT signature support for the target packages.
645 It will also select the dtc and openssl packages.
646
Waldemar Brodkorbf253c142016-06-01 20:40:25 +0200647config BR2_PTHREADS_OLD
648 bool "linuxthreads (stable/old)"
649 select BR2_LEGACY
650 help
651 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
652 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
653
Thomas Petazzoniae466a62016-05-17 00:13:01 +0200654config BR2_BINUTILS_VERSION_2_23_X
655 bool "binutils 2.23 removed"
656 select BR2_LEGACY
657 help
658 Binutils 2.23 has been removed, using a newer version is
659 recommended.
660
Thomas Petazzoni500de252016-05-17 00:13:00 +0200661config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
662 bool "eglibc support has been removed"
663 select BR2_LEGACY
664 help
665 The eglibc project no longer exists, as it has been merged
666 back into the glibc project. Therefore, support for eglibc
667 has been removed, and glibc should be used instead.
668
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200669config BR2_GDB_VERSION_7_8
670 bool "gdb 7.8 has been removed"
671 select BR2_LEGACY
672 help
673 The 7.8 version of gdb has been removed. Use a newer version
674 instead.
675
676###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100677comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +0100678
Gustavo Zacarias3380da62016-05-14 10:33:47 -0300679config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
680 bool "openvpn polarssl crypto backend removed"
681 select BR2_LEGACY
682 help
683 The OpenVPN polarssl crypto backend option has been removed.
684 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
685 compatible with mbedtls (polarssl) series 2.x which is the
686 version provided in buildroot. And both can't coexist.
687 It now uses OpenSSL as the only option.
688
689
Martin Bark4dfc2cb2016-05-03 10:36:54 +0100690config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
691 bool "nginx http spdy module removed"
692 select BR2_LEGACY
693 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
694 help
695 The ngx_http_spdy_module has been superseded by the
696 ngx_http_v2_module since nginx v1.9.5. The
697 ngx_http_v2_module modules has been automatically selected
698 in your configuration.
699
Gustavo Zacarias0c956f22016-05-03 16:44:15 -0300700config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
701 bool "gst1-plugins-bad rtp plugin moved to good"
702 select BR2_LEGACY
703 help
704 The rtp plugin has been moved from gst1-plugins-base to
705 gst1-plugins-good.
706
Gustavo Zacarias4196cf92016-05-03 16:44:14 -0300707config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
708 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
709 select BR2_LEGACY
710 help
711 The mpg123 plugin has been moved from gst1-plugins-bad to
712 gst1-plugins-ugly.
713
Gustavo Zacarias8490e832016-04-29 10:18:56 -0300714config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
715 bool "PowerPC Sourcery toolchain has been removed"
716 select BR2_LEGACY
717 help
718 The Sourcery CodeBench toolchain for the PowerPC
719 architecture has been removed, as it was very old, not
720 maintained, and causing numerous build failures with modern
721 userspace packages.
722
723config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
724 bool "PowerPC Sourcery E500v2 toolchain has been removed"
725 select BR2_LEGACY
726 help
727 The Sourcery CodeBench toolchain for the PowerPC E500v2
728 architecture has been removed, as it was very old, not
729 maintained, and causing numerous build failures with modern
730 userspace packages.
731
Thomas Petazzoni6cb48142016-04-17 23:31:34 +0200732config BR2_x86_i386
733 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +0200734 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +0200735 help
736 The support for the i386 processors of the x86 architecture
737 has been removed.
738
Julien CORJON940bfe22016-03-17 10:42:27 +0100739config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
740 bool "qt5webkit-examples package removed"
741 select BR2_LEGACY
742 help
743 The qt5webkit-examples package has been removed, since it
744 was removed from upstream starting from Qt 5.6.
745
Julien CORJONf75ee802016-03-17 10:42:25 +0100746config BR2_PACKAGE_QT5QUICK1
747 bool "qt5quick1 package removed"
748 select BR2_LEGACY
749 help
750 The qt5quick1 package has been removed, since it was removed
751 from upstream starting from Qt 5.6.
752
Gustavo Zacarias21b25d22016-03-11 11:32:24 -0300753config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -0500754 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -0300755 help
756 The uboot custom patch directory option has been removed. Use
757 the improved BR2_TARGET_UBOOT_PATCH option instead.
758
Danomi Manchegof61583f2016-12-19 22:10:12 -0500759config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
760 bool
761 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
762 select BR2_LEGACY
763
764# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
765# boot/uboot/Config.in
766
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -0300767config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
768 bool "xf86-input-void removed"
769 select BR2_LEGACY
770 help
771 The xf86-input-void package has been removed, there's no need
772 for it in any modern (post-2007) xorg server.
773
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300774config BR2_KERNEL_HEADERS_3_17
775 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300776 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300777 select BR2_LEGACY
778 help
779 Version 3.17.x of the Linux kernel headers have been deprecated
780 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300781 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300782 automatically selected in your configuration.
783
Gustavo Zacariasffc324e2016-03-11 11:32:21 -0300784config BR2_GDB_VERSION_7_7
785 bool "gdb 7.7 has been removed"
786 select BR2_LEGACY
787 help
788 The 7.7 version of gdb has been removed. Use a newer version
789 instead.
790
Gustavo Zacarias75945dd2016-03-11 11:32:20 -0300791config BR2_PACKAGE_FOOMATIC_FILTERS
792 bool "foomatic-filters"
793 select BR2_LEGACY
794 help
795 The foomatic-filters package was removed.
796
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -0300797config BR2_PACKAGE_SAMBA
798 bool "samba"
799 select BR2_LEGACY
800 help
801 The samba package was removed in favour of samba4 since the
802 3.x series isn't supported by upstream any longer.
803
Bernd Kuhls6922b412016-02-20 23:09:11 +0100804config BR2_PACKAGE_KODI_WAVPACK
805 bool "wavpack"
806 select BR2_LEGACY
807 help
808 wavpack support was removed in favour of ffmpeg:
809 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
810
Bernd Kuhls75ce17d2016-02-20 23:09:07 +0100811config BR2_PACKAGE_KODI_RSXS
812 bool "rsxs support in Kodi was moved to an addon"
813 select BR2_LEGACY
814 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
815 help
816 rsxs support in Kodi was moved to an addon
817
Bernd Kuhls56b80ec2016-02-20 23:09:06 +0100818config BR2_PACKAGE_KODI_GOOM
819 bool "Goom support in Kodi was moved to an addon"
820 select BR2_LEGACY
821 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
822 help
823 Goom support in Kodi was moved to an addon
824
Gabe Evanse5a073a2016-02-25 21:55:11 +0000825config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
826 bool "systemd all extras option has been removed"
827 select BR2_LEGACY
828 select BR2_PACKAGE_XZ
829 select BR2_PACKAGE_LIBGCRYPT
830 help
831 The systemd option to enable "all extras" has been
832 removed. To get the same features, the libgcrypt and xz
833 package should now be enabled.
834
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -0300835config BR2_GCC_VERSION_4_5_X
836 bool "gcc 4.5.x has been removed"
837 select BR2_LEGACY
838 help
839 The 4.5.x version of gcc has been removed. Use a newer
840 version instead.
841
Bernd Kuhls007c2ce2016-02-08 20:56:41 +0100842config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -0500843 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +0100844 select BR2_PACKAGE_NCURSES
845 select BR2_PACKAGE_READLINE
846 select BR2_LEGACY
847 help
848 This option was removed in favour of the sqlite package
849 deciding itself depending on the enabled packages whether
850 command-line editing should be enabled, it also also takes
851 libedit into account.
852
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100853###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +0100854comment "Legacy options removed in 2016.02"
855
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +0100856config BR2_PACKAGE_DOVECOT_BZIP2
857 bool "bzip2 support option has been removed"
858 select BR2_LEGACY
859 select BR2_PACKAGE_BZIP2
860 help
861 Bzip2 support is built if the bzip2 package is selected.
862
863config BR2_PACKAGE_DOVECOT_ZLIB
864 bool "zlib support option has been removed"
865 select BR2_LEGACY
866 select BR2_PACKAGE_ZLIB
867 help
868 Zlib support is built if the zlib package is selected.
869
James Knightead1df42016-02-12 11:40:05 -0500870config BR2_PACKAGE_E2FSPROGS_FINDFS
871 bool "e2fsprogs findfs option has been removed"
872 select BR2_LEGACY
873 help
874 This option attempted to enable findfs capabilities from
875 e2fsprogs but has not worked since July 2015 (due to
876 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +0100877 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -0500878
Romain Naourb1063a02016-02-07 17:56:56 +0100879config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
880 bool "openpowerlink debug option has been removed"
881 select BR2_LEGACY
882 help
883 This option depends on BR2_ENABLE_DEBUG which should not be used
884 by packages anymore.
885
886config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
887 bool "openpowerlink package has been updated"
888 select BR2_LEGACY
889 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
890 help
891 openpowerlink kernel modules are built if the
892 kernel stack library is selected.
893
894config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
895 bool "openpowerlink package has been updated"
896 select BR2_LEGACY
897 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
898 help
899 The user space support has been split in two part:
900 - a monolitic user space library
901 - a user spae deamon driver
902
Yann E. MORINe3e05832016-02-06 00:06:17 +0100903config BR2_LINUX_KERNEL_SAME_AS_HEADERS
904 bool "using the linux headers version for the kernel has been removed"
905 select BR2_LEGACY
906 help
907 The option to use the version of the kernel headers for the
908 kernel to build has been removed.
909
910 There is now the converse, better-suited and more versatile
911 option to use the kernel version for the linux headers.
912
Olivier Schonkend37ce8e2016-01-21 00:17:43 +0200913config BR2_PACKAGE_CUPS_PDFTOPS
914 bool "Pdftops support has been removed from Cups"
915 select BR2_LEGACY
916 help
917 Pdftops support has been removed from the cups package
918 It is now part of the cups-filters package.
919
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300920config BR2_KERNEL_HEADERS_3_16
921 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300922 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300923 select BR2_LEGACY
924 help
925 Version 3.16.x of the Linux kernel headers have been deprecated
926 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -0300927 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300928 automatically selected in your configuration.
929
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +0100930config BR2_PACKAGE_PYTHON_PYXML
931 bool "python-pyxml package has been removed"
932 select BR2_LEGACY
933 help
934 PyXML is obsolete and its functionality is covered either via
935 native Python XML support or python-lxml package.
936
Steven Noonand29c7192015-12-27 12:07:31 +0100937# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
938config BR2_ENABLE_SSP
939 bool "Stack Smashing protection now has different levels"
940 help
941 The protection offered by SSP can now be selected from different
942 protection levels. Be sure to review the SSP level in the build
943 options menu.
944
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300945config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -0300946 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300947 select BR2_LEGACY
948 help
949 The cle266 directfb driver support has been removed.
950 It doesn't build in the latest version and it's unlikely
951 anyone has any use for it.
952
953config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -0300954 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300955 select BR2_LEGACY
956 help
957 The unichrome directfb driver support has been removed.
958 It doesn't build in the latest version and it's unlikely
959 anyone has any use for it.
960
Romain Naour820e1682015-12-19 17:39:14 +0100961config BR2_PACKAGE_LIBELEMENTARY
962 bool "libelementary has been renamed to elementary"
963 select BR2_LEGACY
964 select BR2_PACKAGE_ELEMENTARY
965 help
966 The libelementary package has been renamed to match the upstream
967 name.
968
Romain Naoura9d1f5f2015-12-15 23:40:38 +0100969config BR2_PACKAGE_LIBEINA
970 bool "libeina package has been removed"
971 select BR2_LEGACY
972 select BR2_PACKAGE_EFL
973 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100974 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +0100975
Romain Naour49700f02015-12-15 23:40:37 +0100976config BR2_PACKAGE_LIBEET
977 bool "libeet package has been removed"
978 select BR2_LEGACY
979 select BR2_PACKAGE_EFL
980 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100981 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +0100982
Romain Naoure5989d62015-12-15 23:40:36 +0100983config BR2_PACKAGE_LIBEVAS
984 bool "libevas package has been removed"
985 select BR2_LEGACY
986 select BR2_PACKAGE_EFL
987 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100988 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +0100989
Romain Naour1fe1b602015-12-15 23:40:35 +0100990config BR2_PACKAGE_LIBECORE
991 bool "libecore package has been removed"
992 select BR2_LEGACY
993 select BR2_PACKAGE_EFL
994 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100995 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +0100996
Romain Naour8c05c382015-12-15 23:40:34 +0100997config BR2_PACKAGE_LIBEDBUS
998 bool "libedbus package has been removed"
999 select BR2_LEGACY
1000 select BR2_PACKAGE_EFL
1001 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001002 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01001003
Romain Naourd2b042c2015-12-15 23:40:33 +01001004config BR2_PACKAGE_LIBEFREET
1005 bool "libefreet package has been removed"
1006 select BR2_LEGACY
1007 select BR2_PACKAGE_EFL
1008 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001009 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01001010
Romain Naoure155c952015-12-15 23:40:32 +01001011config BR2_PACKAGE_LIBEIO
1012 bool "libeio package has been removed"
1013 select BR2_LEGACY
1014 select BR2_PACKAGE_EFL
1015 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001016 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01001017
Romain Naourb728fb72015-12-15 23:40:31 +01001018config BR2_PACKAGE_LIBEMBRYO
1019 bool "libembryo package has been removed"
1020 select BR2_LEGACY
1021 select BR2_PACKAGE_EFL
1022 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001023 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01001024
Romain Naour4c93c102015-12-15 23:40:30 +01001025config BR2_PACKAGE_LIBEDJE
1026 bool "libedje package has been removed"
1027 select BR2_LEGACY
1028 select BR2_PACKAGE_EFL
1029 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001030 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01001031
Romain Naour905dba12015-12-15 23:40:29 +01001032config BR2_PACKAGE_LIBETHUMB
1033 bool "libethumb package has been removed"
1034 select BR2_LEGACY
1035 select BR2_PACKAGE_EFL
1036 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01001037 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01001038
Luca Ceresolif0c94702015-11-27 18:38:00 +01001039config BR2_PACKAGE_INFOZIP
1040 bool "infozip option has been renamed to zip"
1041 select BR2_LEGACY
1042 select BR2_PACKAGE_ZIP
1043 help
1044 Info-Zip's Zip package has been renamed from infozip to zip,
1045 to avoid ambiguities with Info-Zip's UnZip which has been added
1046 in the unzip package.
1047
Martin Barka2d16602015-12-23 12:16:04 +00001048config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00001049 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00001050 select BR2_LEGACY
1051 select BR2_PACKAGE_NODEJS
1052 help
Martin Bark75b70492016-01-30 14:51:00 +00001053 nodejs 0.10.x option has been removed. 0.10.x is now
1054 automatically chosen for ARMv5 architectures only and the latest
1055 nodejs for all other supported architectures. The correct nodejs
1056 version has been automatically selected in your configuration.
Martin Barka2d16602015-12-23 12:16:04 +00001057
Martin Barka314b872015-12-23 12:16:03 +00001058config BR2_BR2_PACKAGE_NODEJS_0_12_X
1059 bool "nodejs version 0.12.x has been removed"
1060 select BR2_LEGACY
1061 select BR2_PACKAGE_NODEJS
1062 help
1063 nodejs version 0.12.x has been removed. As an alternative,
1064 the latest nodejs version has been automatically selected in
1065 your configuration.
1066
Martin Bark90bf67c2015-12-23 12:16:02 +00001067config BR2_BR2_PACKAGE_NODEJS_4_X
1068 bool "nodejs version 4.x has been removed"
1069 select BR2_LEGACY
1070 select BR2_PACKAGE_NODEJS
1071 help
1072 nodejs version 4.x has been removed. As an alternative,
1073 the latest nodejs version has been automatically selected in
1074 your configuration.
1075
Luca Ceresolif0c94702015-11-27 18:38:00 +01001076###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001077comment "Legacy options removed in 2015.11"
1078
Peter Seiderer301e8ff2015-10-15 21:42:43 +02001079config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
1080 bool "gst1-plugins-bad real plugin has been removed"
1081 select BR2_LEGACY
1082 help
1083 The real plugin from GStreamer 1 bad plugins has been
1084 removed.
1085
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02001086config BR2_PACKAGE_MEDIA_CTL
1087 bool "media-ctl package has been removed"
1088 select BR2_LEGACY
1089 select BR2_PACKAGE_LIBV4L
1090 select BR2_PACKAGE_LIBV4L_UTILS
1091 help
1092 media-ctl source and developement have been moved to
1093 v4l-utils since June 2014. For an up-to-date media-ctl
1094 version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
1095
Romain Naourf8031332015-10-03 18:35:05 +02001096config BR2_PACKAGE_SCHIFRA
1097 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001098 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02001099 help
1100 Schifra package has been maked broken since 2014.11 release and
1101 haven't been fixed since then.
1102
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02001103config BR2_PACKAGE_ZXING
1104 bool "zxing option has been renamed"
1105 select BR2_LEGACY
1106 select BR2_PACKAGE_ZXING_CPP
1107 help
1108 ZXing no longer provides the cpp bindings, it has been renamed to
1109 BR2_PACKAGE_ZXING_CPP which uses a new upstream.
1110
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001111# Since FreeRDP has new dependencies, protect this legacy to avoid the
1112# infamous "unmet direct dependencies" kconfig error.
1113config BR2_PACKAGE_FREERDP_CLIENT
1114 bool "freerdp client option renamed"
1115 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02001116 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02001117 select BR2_PACKAGE_FREERDP_CLIENT_X11
1118
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03001119config BR2_PACKAGE_BLACKBOX
1120 bool "blackbox package has been removed"
1121 select BR2_LEGACY
1122 help
1123 Upstream is dead and the package has been deprecated for
1124 some time. There are other alternative maintained WMs.
1125
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001126config BR2_KERNEL_HEADERS_3_0
1127 bool "kernel headers version 3.0.x are no longer supported"
1128 select BR2_KERNEL_HEADERS_3_2
1129 select BR2_LEGACY
1130 help
1131 Version 3.0.x of the Linux kernel headers have been deprecated
1132 for more than four buildroot releases and are now removed.
1133 As an alternative, version 3.2.x of the headers have been
1134 automatically selected in your configuration.
1135
1136config BR2_KERNEL_HEADERS_3_11
1137 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001138 select BR2_KERNEL_HEADERS_3_10
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001139 select BR2_LEGACY
1140 help
1141 Version 3.11.x of the Linux kernel headers have been deprecated
1142 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001143 As an alternative, version 3.10.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001144 automatically selected in your configuration.
1145
1146config BR2_KERNEL_HEADERS_3_13
1147 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001148 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001149 select BR2_LEGACY
1150 help
1151 Version 3.13.x of the Linux kernel headers have been deprecated
1152 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001153 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001154 automatically selected in your configuration.
1155
1156config BR2_KERNEL_HEADERS_3_15
1157 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001158 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001159 select BR2_LEGACY
1160 help
1161 Version 3.15.x of the Linux kernel headers have been deprecated
1162 for more than four buildroot releases and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001163 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001164 automatically selected in your configuration.
1165
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001166config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
1167 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001168 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001169 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1170 help
1171 The per-DirectFB example options have been removed. The
1172 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1173 examples.
1174
1175config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
1176 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001177 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001178 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1179 help
1180 The per-DirectFB example options have been removed. The
1181 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1182 examples.
1183
1184config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
1185 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001186 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001187 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1188 help
1189 The per-DirectFB example options have been removed. The
1190 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1191 examples.
1192
1193config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
1194 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001195 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001196 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1197 help
1198 The per-DirectFB example options have been removed. The
1199 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1200 examples.
1201
1202config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
1203 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001204 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001205 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1206 help
1207 The per-DirectFB example options have been removed. The
1208 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1209 examples.
1210
1211config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
1212 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001213 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001214 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1215 help
1216 The per-DirectFB example options have been removed. The
1217 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1218 examples.
1219
1220config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
1221 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001222 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001223 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1224 help
1225 The per-DirectFB example options have been removed. The
1226 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1227 examples.
1228
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001229config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
1230 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001231 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001232 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1233 help
1234 The per-DirectFB example options have been removed. The
1235 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1236 examples.
1237
1238config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
1239 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001240 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001241 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1242 help
1243 The per-DirectFB example options have been removed. The
1244 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1245 examples.
1246
1247config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
1248 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001249 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001250 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1251 help
1252 The per-DirectFB example options have been removed. The
1253 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1254 examples.
1255
1256config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
1257 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001258 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001259 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1260 help
1261 The per-DirectFB example options have been removed. The
1262 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1263 examples.
1264
1265config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
1266 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001267 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001268 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1269 help
1270 The per-DirectFB example options have been removed. The
1271 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1272 examples.
1273
1274config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
1275 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001276 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001277 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1278 help
1279 The per-DirectFB example options have been removed. The
1280 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1281 examples.
1282
1283config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
1284 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001285 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001286 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1287 help
1288 The per-DirectFB example options have been removed. The
1289 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1290 examples.
1291
1292config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
1293 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001294 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001295 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1296 help
1297 The per-DirectFB example options have been removed. The
1298 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1299 examples.
1300
1301config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
1302 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001303 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001304 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1305 help
1306 The per-DirectFB example options have been removed. The
1307 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1308 examples.
1309
1310config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
1311 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001312 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001313 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1314 help
1315 The per-DirectFB example options have been removed. The
1316 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1317 examples.
1318
1319config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
1320 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001321 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001322 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1323 help
1324 The per-DirectFB example options have been removed. The
1325 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1326 examples.
1327
1328config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
1329 bool "DirectFB example df_palette has been removed"
1330 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_PARTICLE
1337 bool "DirectFB example df_particle 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_PORTER
1346 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001347 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001348 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1349 help
1350 The per-DirectFB example options have been removed. The
1351 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1352 examples.
1353
1354config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
1355 bool "DirectFB example df_stress has been removed"
1356 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_TEXTURE
1363 bool "DirectFB example df_texture 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_VIDEO
1372 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001373 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001374 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1375 help
1376 The per-DirectFB example options have been removed. The
1377 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1378 examples.
1379
1380config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1381 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001382 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001383 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1384 help
1385 The per-DirectFB example options have been removed. The
1386 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1387 examples.
1388
1389config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1390 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001391 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001392 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1393 help
1394 The per-DirectFB example options have been removed. The
1395 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1396 examples.
1397
Gary Bisson2b78fb22015-09-23 15:39:27 +02001398config BR2_PACKAGE_KOBS_NG
1399 bool "kobs-ng was replaced by imx-kobs"
1400 select BR2_LEGACY
1401 select BR2_PACKAGE_IMX_KOBS
1402 help
1403 The outdated kobs-ng has been replaced by the Freescale-
1404 maintained imx-kobs package.
1405
Thomas Petazzoni11573f52015-09-02 00:01:11 +02001406config BR2_PACKAGE_SAWMAN
1407 bool "sawman package removed"
1408 select BR2_LEGACY
1409 select BR2_PACKAGE_DIRECTFB_SAWMAN
1410 help
1411 This option has been removed because the sawman package no
1412 longer exists: it was merged inside DirectFB itself. This
1413 feature can now be enabled using the
1414 BR2_PACKAGE_DIRECTFB_SAWMAN option.
1415
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001416config BR2_PACKAGE_DIVINE
1417 bool "divine package removed"
1418 select BR2_LEGACY
1419 select BR2_PACKAGE_DIRECTFB_DIVINE
1420 help
1421 This option has been removed because the divine package no
1422 longer exists: it was merged inside DirectFB itself. This
1423 feature can now be enabled using the
1424 BR2_PACKAGE_DIRECTFB_DIVINE option.
1425
1426###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001427comment "Legacy options removed in 2015.08"
1428
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001429config BR2_PACKAGE_KODI_PVR_ADDONS
1430 bool "Kodi PVR addon was split"
1431 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02001432 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02001433 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02001434 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02001435 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02001436 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02001437 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02001438 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02001439 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02001440 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02001441 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02001442 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02001443 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02001444 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02001445 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02001446 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02001447 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001448 help
1449 Kodi PVR addon was split into seperate modules
1450
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001451config BR2_BINUTILS_VERSION_2_23_2
1452 bool "binutils 2.23 option renamed"
1453 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001454 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001455 Binutils 2.23.2 has been removed, using a newer version is
1456 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001457
1458config BR2_BINUTILS_VERSION_2_24
1459 bool "binutils 2.24 option renamed"
1460 select BR2_LEGACY
1461 select BR2_BINUTILS_VERSION_2_24_X
1462 help
1463 The binutils version option has been renamed to match the
1464 same patchlevel logic used by gcc. The new option is now
1465 BR2_BINUTILS_VERSION_2_24_X.
1466
1467config BR2_BINUTILS_VERSION_2_25
1468 bool "binutils 2.25 option renamed"
1469 select BR2_LEGACY
1470 select BR2_BINUTILS_VERSION_2_25_X
1471 help
1472 The binutils version option has been renamed to match the
1473 same patchlevel logic used by gcc. The new option is now
1474 BR2_BINUTILS_VERSION_2_25_X.
1475
Romain Naour1326e762015-07-14 19:35:14 +02001476config BR2_PACKAGE_PERF
1477 bool "perf option has been renamed"
1478 select BR2_LEGACY
1479 select BR2_LINUX_KERNEL_TOOL_PERF
1480 help
1481 The perf package has been moved as a Linux tools package,
1482 and the option to enable it is now
1483 BR2_LINUX_KERNEL_TOOL_PERF.
1484
Thomas Petazzoni2f845952015-07-11 14:52:53 +02001485config BR2_BINUTILS_VERSION_2_22
1486 bool "binutils 2.22 removed"
1487 select BR2_LEGACY
1488 help
1489 Binutils 2.22 has been removed, using a newer version is
1490 recommended.
1491
Gary Bisson4c0613e2015-05-26 10:19:37 +02001492config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1493 bool "gpu-viv-bin-mx6q"
1494 select BR2_LEGACY
1495 select BR2_PACKAGE_IMX_GPU_VIV
1496 help
1497 Vivante graphics libraries have been renamed to
1498 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1499 name.
1500
Matt Weber7742abe2015-06-02 08:28:35 -05001501config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
1502 depends on BR2_PACKAGE_PYTHON
1503 bool "libsemanage python bindings removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001504 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05001505 help
1506 This option has been removed, since the libsemanage Python
1507 bindings on the target were not useful.
1508
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001509config BR2_TARGET_UBOOT_NETWORK
1510 bool "U-Boot custom network settings removed"
1511 select BR2_LEGACY
1512 help
1513 U-Boot's custom network settings options have been removed.
1514
1515###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001516comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001517
Michał Leśniewskie3904a82015-05-19 20:26:30 +02001518config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1519 bool "jffs2 16kB erasesize NAND flash option renamed"
1520 select BR2_LEGACY
1521 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1522 help
1523 The JFFS2 NAND flash options now longer include the page
1524 size.
1525
1526config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1527 bool "jffs2 128kB erasesize NAND flash option renamed"
1528 select BR2_LEGACY
1529 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
1530 help
1531 The JFFS2 NAND flash options now longer include the page
1532 size.
1533
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02001534config BR2_PACKAGE_MONO_20
1535 bool "2.0/3.5 .Net Runtime"
1536 select BR2_LEGACY
1537 help
1538 This option no longer exists, all versions of the .Net
1539 runtime are now installed.
1540
1541config BR2_PACKAGE_MONO_40
1542 bool "4.0 .Net Runtime"
1543 select BR2_LEGACY
1544 help
1545 This option no longer exists, all versions of the .Net
1546 runtime are now installed.
1547
1548config BR2_PACKAGE_MONO_45
1549 bool "4.5 .Net Runtime"
1550 select BR2_LEGACY
1551 help
1552 This option no longer exists, all versions of the .Net
1553 runtime are now installed.
1554
Peter Korsgaardefd49e32015-04-27 22:29:05 +02001555config BR2_CIVETWEB_WITH_LUA
1556 bool "civetweb lua option renamed"
1557 select BR2_LEGACY
1558 select BR2_PACKAGE_CIVETWEB_WITH_LUA
1559 help
1560 civetweb's lua option has been renamed to
1561 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
1562 packages name options.
1563
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02001564config BR2_PACKAGE_TIFF_TIFF2PDF
1565 bool "tiff utility-specific option removed"
1566 select BR2_LEGACY
1567 select BR2_PACKAGE_TIFF_UTILITIES
1568 help
1569 utility-specific options have been removed in favour of
1570 the new option BR2_PACKAGE_TIFF_UTILITIES.
1571
1572config BR2_PACKAGE_TIFF_TIFFCP
1573 bool "tiff utility-specific option removed"
1574 select BR2_LEGACY
1575 select BR2_PACKAGE_TIFF_UTILITIES
1576 help
1577 utility-specific options have been removed in favour of
1578 the new option BR2_PACKAGE_TIFF_UTILITIES.
1579
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001580config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
1581 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001582 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001583 help
1584 This option has never worked, so it has been removed.
1585
Yann E. MORIN02917962015-03-24 19:54:15 +01001586config BR2_TARGET_GENERIC_PASSWD_DES
1587 bool "Encoding passwords with DES has been removed"
1588 select BR2_LEGACY
1589 help
1590 Paswords can now only be encoded with either of md5, sha256 or sha512.
1591 The default is md5, which is stronger that DES (but still pretty weak).
1592
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03001593config BR2_PACKAGE_GTK2_THEME_HICOLOR
1594 bool "hicolor (default theme) is a duplicate"
1595 select BR2_LEGACY
1596 select BR2_PACKAGE_HICOLOR_ICON_THEME
1597 help
1598 The option was just a duplicate of hicolor icon theme.
1599
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001600config BR2_PACKAGE_VALGRIND_PTRCHECK
1601 bool "valgrind's PTRCheck was renamed to SGCheck"
1602 select BR2_LEGACY
1603 select BR2_PACKAGE_VALGRIND_SGCHECK
1604 help
1605 PTRCheck was renamed to SGCheck in valgrind
1606
1607###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001608comment "Legacy options removed in 2015.02"
1609
Pedro Aguilar10900c02015-02-27 06:38:07 +02001610config BR2_PACKAGE_LIBGC
1611 bool "libgc package removed"
1612 select BR2_LEGACY
1613 select BR2_PACKAGE_BDWGC
1614 help
1615 libgc has been removed because we have the same package under a
1616 different name, bdwgc.
1617
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01001618config BR2_PACKAGE_WDCTL
1619 bool "util-linux' wdctl option has been renamed"
1620 select BR2_LEGACY
1621 select BR2_PACKAGE_UTIL_LINUX_WDCTL
1622 help
1623 util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
1624 to be aligned with how the other options are named.
1625
Danomi Manchegoe44edb82015-07-13 22:57:06 -04001626config BR2_PACKAGE_UTIL_LINUX_ARCH
1627 bool "util-linux' arch option has been removed"
1628 select BR2_LEGACY
1629 help
1630 util-linux' arch was dropped in util-linux 2.23, in favor of
1631 the coreutils version.
1632
1633config BR2_PACKAGE_UTIL_LINUX_DDATE
1634 bool "util-linux' ddate option has been removed"
1635 select BR2_LEGACY
1636 help
1637 util-linux' ddate was dropped in util-linux 2.23.
1638
Romain Naour3c476542015-01-18 20:53:08 +01001639config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
1640 bool "rpm's bzip2 payloads option has been removed"
1641 select BR2_LEGACY
1642 select BR2_PACKAGE_BZIP2
1643 help
1644 The bzip2 payloads option rely entirely on the dependant package bzip2.
1645 So, you need to select it to enable this feature.
1646
1647config BR2_PACKAGE_RPM_XZ_PAYLOADS
1648 bool "rpm's xz payloads option has been removed"
1649 select BR2_LEGACY
1650 select BR2_PACKAGE_XZ
1651 help
1652 The xz payloads option rely entirely on the dependant package xz.
1653 So, you need to select it to enable this feature.
1654
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03001655config BR2_PACKAGE_M4
1656 bool "m4 target package removed"
1657 select BR2_LEGACY
1658 help
1659 The m4 target package has been removed, it's been
1660 deprecated for some time now.
1661
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03001662config BR2_PACKAGE_FLEX_BINARY
1663 bool "flex binary in target option removed"
1664 select BR2_LEGACY
1665 help
1666 The flex binary in the target option has been removed.
1667 It's been deprecated for some time now and is essentially a
1668 development tool which isn't very useful in the target.
1669
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03001670config BR2_PACKAGE_BISON
1671 bool "bison target package removed"
1672 select BR2_LEGACY
1673 help
1674 The bison target package has been removed, it's been
1675 deprecated for some time now and is essentially a development
1676 tool which isn't very useful in the target.
1677
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03001678config BR2_PACKAGE_GOB2
1679 bool "gob2 target package removed"
1680 select BR2_LEGACY
1681 help
1682 The gob2 target package has been removed, it's been
1683 deprecated for some time now and was essentially useless
1684 without a target toolchain.
1685
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03001686config BR2_PACKAGE_DISTCC
1687 bool "distcc target package removed"
1688 select BR2_LEGACY
1689 help
1690 The distcc target package has been removed, it's been
1691 deprecated for some time now and was essentially useless
1692 without a target toolchain.
1693
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03001694config BR2_PACKAGE_HASERL_VERSION_0_8_X
1695 bool "haserl 0.8.x version removed"
1696 select BR2_LEGACY
1697 help
1698 The 0.8.x version option for haserl has been removed since it
1699 has been deprecated for some time now.
1700 You should be able to use the 0.9.x version without issues.
1701
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03001702config BR2_PACKAGE_STRONGSWAN_TOOLS
1703 bool "strongswan option has been removed"
1704 select BR2_LEGACY
1705 select BR2_PACKAGE_STRONGSWAN_PKI
1706 select BR2_PACKAGE_STRONGSWAN_SCEP
1707 help
1708 The tools option has been removed upstream and the different tools
1709 have been split between the pki and scep options, with others
1710 deprecated.
1711
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001712config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001713 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001714 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001715 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001716 According to the github project page:
1717 https://github.com/pipelka/xbmc-addon-xvdr
1718 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001719
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01001720config BR2_PACKAGE_XBMC_PVR_ADDONS
1721 bool "xbmc options have been renamed"
1722 select BR2_LEGACY
1723 select BR2_PACKAGE_KODI_PVR_ADDONS
1724 help
1725 The XBMC media center project was renamed to Kodi entertainment center
1726
Bernd Kuhls35784592014-12-23 18:46:27 +01001727config BR2_PACKAGE_XBMC
1728 bool "xbmc options have been renamed"
1729 select BR2_LEGACY
1730 select BR2_PACKAGE_KODI
1731 help
1732 The XBMC media center project was renamed to Kodi entertainment center
1733
1734config BR2_PACKAGE_XBMC_ALSA_LIB
1735 bool "xbmc options have been renamed"
1736 select BR2_LEGACY
1737 select BR2_PACKAGE_KODI_ALSA_LIB
1738 help
1739 The XBMC media center project was renamed to Kodi entertainment center
1740
1741config BR2_PACKAGE_XBMC_AVAHI
1742 bool "xbmc options have been renamed"
1743 select BR2_LEGACY
1744 select BR2_PACKAGE_KODI_AVAHI
1745 help
1746 The XBMC media center project was renamed to Kodi entertainment center
1747
1748config BR2_PACKAGE_XBMC_DBUS
1749 bool "xbmc options have been renamed"
1750 select BR2_LEGACY
1751 select BR2_PACKAGE_KODI_DBUS
1752 help
1753 The XBMC media center project was renamed to Kodi entertainment center
1754
1755config BR2_PACKAGE_XBMC_LIBBLURAY
1756 bool "xbmc options have been renamed"
1757 select BR2_LEGACY
1758 select BR2_PACKAGE_KODI_LIBBLURAY
1759 help
1760 The XBMC media center project was renamed to Kodi entertainment center
1761
1762config BR2_PACKAGE_XBMC_GOOM
1763 bool "xbmc options have been renamed"
1764 select BR2_LEGACY
1765 select BR2_PACKAGE_KODI_GOOM
1766 help
1767 The XBMC media center project was renamed to Kodi entertainment center
1768
1769config BR2_PACKAGE_XBMC_RSXS
1770 bool "xbmc options have been renamed"
1771 select BR2_LEGACY
1772 select BR2_PACKAGE_KODI_RSXS
1773 help
1774 The XBMC media center project was renamed to Kodi entertainment center
1775
1776config BR2_PACKAGE_XBMC_LIBCEC
1777 bool "xbmc options have been renamed"
1778 select BR2_LEGACY
1779 select BR2_PACKAGE_KODI_LIBCEC
1780 help
1781 The XBMC media center project was renamed to Kodi entertainment center
1782
1783config BR2_PACKAGE_XBMC_LIBMICROHTTPD
1784 bool "xbmc options have been renamed"
1785 select BR2_LEGACY
1786 select BR2_PACKAGE_KODI_LIBMICROHTTPD
1787 help
1788 The XBMC media center project was renamed to Kodi entertainment center
1789
1790config BR2_PACKAGE_XBMC_LIBNFS
1791 bool "xbmc options have been renamed"
1792 select BR2_LEGACY
1793 select BR2_PACKAGE_KODI_LIBNFS
1794 help
1795 The XBMC media center project was renamed to Kodi entertainment center
1796
1797config BR2_PACKAGE_XBMC_RTMPDUMP
1798 bool "xbmc options have been renamed"
1799 select BR2_LEGACY
1800 select BR2_PACKAGE_KODI_RTMPDUMP
1801 help
1802 The XBMC media center project was renamed to Kodi entertainment center
1803
1804config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
1805 bool "xbmc options have been renamed"
1806 select BR2_LEGACY
1807 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
1808 help
1809 The XBMC media center project was renamed to Kodi entertainment center
1810
1811config BR2_PACKAGE_XBMC_LIBSMBCLIENT
1812 bool "xbmc options have been renamed"
1813 select BR2_LEGACY
1814 select BR2_PACKAGE_KODI_LIBSMBCLIENT
1815 help
1816 The XBMC media center project was renamed to Kodi entertainment center
1817
1818config BR2_PACKAGE_XBMC_LIBTHEORA
1819 bool "xbmc options have been renamed"
1820 select BR2_LEGACY
1821 select BR2_PACKAGE_KODI_LIBTHEORA
1822 help
1823 The XBMC media center project was renamed to Kodi entertainment center
1824
1825config BR2_PACKAGE_XBMC_LIBUSB
1826 bool "xbmc options have been renamed"
1827 select BR2_LEGACY
1828 select BR2_PACKAGE_KODI_LIBUSB
1829 help
1830 The XBMC media center project was renamed to Kodi entertainment center
1831
1832config BR2_PACKAGE_XBMC_LIBVA
1833 bool "xbmc options have been renamed"
1834 select BR2_LEGACY
1835 select BR2_PACKAGE_KODI_LIBVA
1836 help
1837 The XBMC media center project was renamed to Kodi entertainment center
1838
1839config BR2_PACKAGE_XBMC_WAVPACK
1840 bool "xbmc options have been renamed"
1841 select BR2_LEGACY
1842 select BR2_PACKAGE_KODI_WAVPACK
1843 help
1844 The XBMC media center project was renamed to Kodi entertainment center
1845
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001846config BR2_PREFER_STATIC_LIB
1847 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01001848 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001849 help
1850 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
1851 highlights the fact that the option no longer "prefers"
1852 static libraries, but "enforces" static libraries (i.e
1853 shared libraries are completely unused).
1854
Samuel Martina44b1c12014-12-14 17:24:24 +01001855 Take care of updating the type of libraries you want under the
1856 "Build options" menu.
1857
Bernd Kuhls35784592014-12-23 18:46:27 +01001858###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02001859comment "Legacy options removed in 2014.11"
1860
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001861config BR2_x86_generic
1862 bool "x86 generic variant has been removed"
1863 select BR2_LEGACY
1864 help
1865 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02001866 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001867
Andreas Larsson40e18f22014-10-30 09:29:36 +01001868config BR2_GCC_VERSION_4_4_X
1869 bool "gcc 4.4.x has been removed"
1870 select BR2_LEGACY
1871 help
1872 The 4.4.x version of gcc has been removed. Use a newer
1873 version instead.
1874
Andreas Larsson43b78e72014-10-30 09:29:35 +01001875config BR2_sparc_sparchfleon
1876 bool "sparchfleon CPU has been removed"
1877 select BR2_LEGACY
1878 help
1879 The sparchfleon CPU was only supported in a patched gcc 4.4
1880 version. Its support has been removed in favor of the leon3
1881 CPU starting from gcc 4.8.x.
1882
1883config BR2_sparc_sparchfleonv8
1884 bool "sparchfleonv8 CPU has been removed"
1885 select BR2_LEGACY
1886 help
1887 The sparchfleonv8 CPU was only supported in a patched gcc
1888 4.4 version. Its support has been removed in favor of the
1889 leon3 CPU starting from gcc 4.8.x.
1890
1891config BR2_sparc_sparcsfleon
1892 bool "sparcsfleon CPU has been removed"
1893 select BR2_LEGACY
1894 help
1895 The sparcsfleon CPU was only supported in a patched gcc 4.4
1896 version. Its support has been removed in favor of the leon3
1897 CPU starting from gcc 4.8.x.
1898
1899config BR2_sparc_sparcsfleonv8
1900 bool "sparcsfleonv8 CPU has been removed"
1901 select BR2_LEGACY
1902 help
1903 The sparcsfleonv8 CPU was only supported in a patched gcc
1904 4.4 version. Its support has been removed in favor of the
1905 leon3 CPU starting from gcc 4.8.x.
1906
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02001907config BR2_PACKAGE_XLIB_LIBPCIACCESS
1908 bool "xlib-libpciaccess option has been renamed"
1909 depends on BR2_PACKAGE_XORG7
1910 select BR2_LEGACY
1911 select BR2_PACKAGE_LIBPCIACCESS
1912 help
1913 libpciaccess neither depends on X11 nor Xlib. Thus the
1914 package has been renamed BR2_PACKAGE_LIBPCIACCESS
1915
Yann E. MORINb581bba2014-09-21 20:38:13 +02001916config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
1917 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001918 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02001919 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
1920 help
1921 The Xceive xc5000 option now also handles older firmwares from
1922 Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
1923 from Cresta, who bought Xceive.
1924
Yann E. MORINdac546e2014-09-21 20:38:12 +02001925config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1926 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001927 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02001928 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1929 help
1930 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1931 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1932 to better account for the fact that a T5 variant exists.
1933
Yann E. MORIN120136e2014-09-21 20:38:09 +02001934config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
1935 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001936 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02001937 help
1938 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
1939 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
1940 select it in:
1941 Target packages -> Hardware handling ->
1942 Firmware -> linux-firmware -> WiFi firmware ->
1943 iwlwifi 3160/726x revision to use (revision 7)
1944
1945config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
1946 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001947 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02001948 help
1949 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
1950 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
1951 select it in:
1952 Target packages -> Hardware handling ->
1953 Firmware -> linux-firmware -> WiFi firmware ->
1954 iwlwifi 3160/726x revision to use (revision 8)
1955
1956###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001957comment "Legacy options removed in 2014.08"
1958
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02001959config BR2_PACKAGE_LIBELF
1960 bool "libelf has been removed"
1961 select BR2_PACKAGE_ELFUTILS
1962 select BR2_LEGACY
1963 help
1964 The libelf package provided an old version of the libelf library
1965 and is deprecated. The libelf library is now provided by the
1966 elfutils package.
1967
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001968config BR2_KERNEL_HEADERS_3_8
1969 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001970 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001971 select BR2_LEGACY
1972 help
1973 Version 3.8.x of the Linux kernel headers have been deprecated
1974 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001975 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001976 automatically selected in your configuration.
1977
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02001978config BR2_PACKAGE_GETTEXT_TOOLS
1979 bool "support for gettext-tools on target has been removed"
1980 select BR2_LEGACY
1981 help
1982 The option to install the gettext utilities on the target
1983 has been removed. This is not necessary as Buildroot is not
1984 designed to provide a full development environment on the
1985 target. gettext tools should be used on the build machine
1986 instead.
1987
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001988config BR2_PACKAGE_PROCPS
1989 bool "procps has been replaced by procps-ng"
1990 select BR2_PACKAGE_PROCPS_NG
1991 select BR2_LEGACY
1992 help
1993 The procps package has been replaced by the equivalent procps-ng.
1994
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02001995config BR2_BINUTILS_VERSION_2_20_1
1996 bool "binutils 2.20.1 has been removed"
1997 select BR2_LEGACY
1998 help
1999 The 2.20.1 version of binutils has been removed. Use a newer
2000 version instead.
2001
2002config BR2_BINUTILS_VERSION_2_21
2003 bool "binutils 2.21 has been removed"
2004 select BR2_LEGACY
2005 help
2006 The 2.21 version of binutils has been removed. Use a newer
2007 version instead.
2008
2009config BR2_BINUTILS_VERSION_2_23_1
2010 bool "binutils 2.23.1 has been removed"
2011 select BR2_LEGACY
2012 help
2013 The 2.23.1 version of binutils has been removed. Use a newer
2014 version instead.
2015
Thomas Petazzoni506b9642014-07-01 20:03:03 +02002016config BR2_UCLIBC_VERSION_0_9_32
2017 bool "uclibc 0.9.32 has been removed"
2018 select BR2_LEGACY
2019 help
2020 The 0.9.32 version of uClibc has been removed. Use a newer
2021 version instead.
2022
Thomas Petazzonid10e0802014-07-01 20:03:06 +02002023config BR2_GCC_VERSION_4_3_X
2024 bool "gcc 4.3.x has been removed"
2025 select BR2_LEGACY
2026 help
2027 The 4.3.x version of gcc has been removed. Use a newer
2028 version instead.
2029
2030config BR2_GCC_VERSION_4_6_X
2031 bool "gcc 4.6.x has been removed"
2032 select BR2_LEGACY
2033 help
2034 The 4.6.x version of gcc has been removed. Use a newer
2035 version instead.
2036
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002037config BR2_GDB_VERSION_7_4
2038 bool "gdb 7.4 has been removed"
2039 select BR2_LEGACY
2040 help
2041 The 7.4 version of gdb has been removed. Use a newer version
2042 instead.
2043
2044config BR2_GDB_VERSION_7_5
2045 bool "gdb 7.5 has been removed"
2046 select BR2_LEGACY
2047 help
2048 The 7.5 version of gdb has been removed. Use a newer version
2049 instead.
2050
Thomas Petazzonib18dca02014-07-01 20:03:09 +02002051config BR2_BUSYBOX_VERSION_1_19_X
2052 bool "busybox version selection has been removed"
2053 select BR2_LEGACY
2054 help
2055 The possibility of selecting the Busybox version has been
2056 removed. Use the latest version provided by the Busybox
2057 package instead.
2058
2059config BR2_BUSYBOX_VERSION_1_20_X
2060 bool "busybox version selection has been removed"
2061 select BR2_LEGACY
2062 help
2063 The possibility of selecting the Busybox version has been
2064 removed. Use the latest version provided by the Busybox
2065 package instead.
2066
2067config BR2_BUSYBOX_VERSION_1_21_X
2068 bool "busybox version selection has been removed"
2069 select BR2_LEGACY
2070 help
2071 The possibility of selecting the Busybox version has been
2072 removed. Use the latest version provided by the Busybox
2073 package instead.
2074
Ezequiel García07ac0452014-07-05 18:07:40 -03002075config BR2_PACKAGE_LIBV4L_DECODE_TM6000
2076 bool "decode_tm6000"
2077 select BR2_PACKAGE_LIBV4L_UTILS
2078 select BR2_LEGACY
2079 help
2080 This libv4l option has been deprecated and replaced by a single
2081 option to build all the libv4l utilities.
2082
2083config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
2084 bool "ir-keytable"
2085 select BR2_PACKAGE_LIBV4L_UTILS
2086 select BR2_LEGACY
2087 help
2088 This libv4l option has been deprecated and replaced by a single
2089 option to build all the libv4l utilities.
2090
2091config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
2092 bool "v4l2-compliance"
2093 select BR2_PACKAGE_LIBV4L_UTILS
2094 select BR2_LEGACY
2095 help
2096 This libv4l option has been deprecated and replaced by a single
2097 option to build all the libv4l utilities.
2098
2099config BR2_PACKAGE_LIBV4L_V4L2_CTL
2100 bool "v4l2-ctl"
2101 select BR2_PACKAGE_LIBV4L_UTILS
2102 select BR2_LEGACY
2103 help
2104 This libv4l option has been deprecated and replaced by a single
2105 option to build all the libv4l utilities.
2106
2107config BR2_PACKAGE_LIBV4L_V4L2_DBG
2108 bool "v4l2-dbg"
2109 select BR2_PACKAGE_LIBV4L_UTILS
2110 select BR2_LEGACY
2111 help
2112 This libv4l option has been deprecated and replaced by a single
2113 option to build all the libv4l utilities.
2114
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02002115###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002116comment "Legacy options removed in 2014.05"
2117
Peter Seiderer4990a382014-04-23 00:12:23 +02002118config BR2_PACKAGE_EVTEST_CAPTURE
2119 bool "evtest-capture support removed (dropped since evtest 1.31)"
2120 select BR2_LEGACY
2121 help
2122 Support for evtest-capture has been removed (dropped from
2123 evtest package since version 1.31), use evemu package
2124 instead.
2125
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002126config BR2_KERNEL_HEADERS_3_6
2127 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002128 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002129 select BR2_LEGACY
2130 help
2131 Version 3.6.x of the Linux kernel headers have been deprecated
2132 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002133 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002134 automatically selected in your configuration.
2135
2136config BR2_KERNEL_HEADERS_3_7
2137 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002138 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002139 select BR2_LEGACY
2140 help
2141 Version 3.7.x of the Linux kernel headers have been deprecated
2142 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002143 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02002144 automatically selected in your configuration.
2145
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02002146config BR2_PACKAGE_VALA
2147 bool "vala target package has been removed"
2148 select BR2_LEGACY
2149 help
2150 The 'vala' target package has been removed since it has been
2151 deprecated for more than four buildroot releases.
2152 Note: the host vala package still exists.
2153
Yann E. MORINd6a37912014-04-07 21:58:03 +02002154config BR2_TARGET_TZ_ZONELIST
2155 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
2156
2157config BR2_PACKAGE_TZDATA_ZONELIST
2158 string "tzdata: the timezone list option has been renamed"
2159 help
2160 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
2161 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
2162 menu. You'll need to select BR2_TARGET_TZ_INFO.
2163
2164config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
2165 bool
2166 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
2167 select BR2_LEGACY
2168
Yann E. MORINc97aeb72014-04-05 17:21:43 +02002169config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
2170 bool "Lua command-line editing none has been renamed"
2171 select BR2_LEGACY
2172 help
2173 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
2174 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
2175 it in the corresponding choice.
2176
2177config BR2_PACKAGE_LUA_INTERPRETER_READLINE
2178 bool "Lua command-line editing using readline has been renamed"
2179 select BR2_LEGACY
2180 help
2181 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
2182 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
2183 it in the corresponding choice.
2184
2185config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
2186 bool "Lua command-line editing using linenoise has been renamed"
2187 select BR2_LEGACY
2188 help
2189 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
2190 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
2191 it in the corresponding choice.
2192
Yann E. MORIN365ae612014-03-28 01:00:24 +01002193config BR2_PACKAGE_DVB_APPS_UTILS
2194 bool "dvb-apps utilities now built by default"
2195 select BR2_LEGACY
2196 help
2197 The dvb-apps utilities are now always built when the dvb-apps
2198 package is selected.
2199
Yann E. MORIN971e3312014-03-01 15:52:56 +01002200config BR2_KERNEL_HEADERS_SNAP
2201 bool "Local Linux snapshot support removed"
2202 select BR2_LEGACY
2203 help
2204 Support for using a custom snapshot to install the Linux
2205 kernel headers has been removed.
2206
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002207config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
2208 bool "/dev management by udev removed"
2209 select BR2_LEGACY
2210 help
2211 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002212 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002213
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002214 Therefore, if you are not using 'systemd' as init system, you
2215 must choose 'Dynamic using eudev' in the '/dev management'
2216 menu to get the same behaviour as in your old configuration.
2217
2218 If you are using 'systemd', its internal implementation of
2219 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002220
2221 You must also check the packages depending on 'udev' are still
2222 selected.
2223
2224config BR2_PACKAGE_UDEV
2225 bool "udev is now a virtual package"
2226 select BR2_LEGACY
2227 select BR2_PACKAGE_HAS_UDEV
2228 help
2229 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002230 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002231
2232 Your old configuration refers to packages depending on 'udev',
2233 either for build or at runtime.
2234
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002235 Check that a 'udev' provider is selected. If you are not using
2236 'systemd' as init system, 'eudev' should be selected, which is
2237 the case if '/dev management' is set to 'Dynamic using eudev'.
2238
2239 If you are using 'systemd', its internal implementation of 'udev'
2240 is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002241
2242config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002243 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002244 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002245 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
2246 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002247 help
2248 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002249 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002250
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002251 If you are not using 'systemd' as init system, udev rules
2252 generation will be handled by 'eudev'. Check that
2253 '/dev management' is set to 'Dynamic using eudev' to get
2254 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002255
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002256 If you are using 'systemd', it internal implementation of 'udev'
2257 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002258
2259config BR2_PACKAGE_UDEV_ALL_EXTRAS
2260 bool "udev extras removed"
2261 select BR2_LEGACY
2262 help
2263 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002264 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002265
2266 The option to enable the extra features of 'udev' (gudev, ...)
2267 has been removed. These features are automatically enabled in
2268 the 'udev' providers if the dependencies are selected. For
2269 example, selecting 'libglib2' will trigger the build of gudev.
2270
Bernd Kuhls5562be12014-03-01 16:41:10 +01002271config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
2272 bool "xlib-libpthread-stubs option has been renamed"
2273 depends on BR2_PACKAGE_XORG7
2274 select BR2_LEGACY
2275 select BR2_PACKAGE_LIBPTHREAD_STUBS
2276 help
2277 The pthread stubs neither depend on X11 nor Xlib. Thus the
2278 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
2279
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002280###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01002281comment "Legacy options removed in 2014.02"
2282
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002283config BR2_sh2
2284 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002285 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002286 help
2287 Due to an inexistent user base and generally poor Linux
2288 support, the support for the SH2 architecture was removed.
2289
2290config BR2_sh3
2291 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002292 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002293 help
2294 Due to an inexistent user base and generally poor Linux
2295 support, the support for the SH3 architecture was removed.
2296
2297config BR2_sh3eb
2298 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002299 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002300 help
2301 Due to an inexistent user base and generally poor Linux
2302 support, the support for the SH3eb architecture was removed.
2303
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002304config BR2_KERNEL_HEADERS_3_1
2305 bool "kernel headers version 3.1.x are no longer supported"
2306 select BR2_KERNEL_HEADERS_3_2
2307 select BR2_LEGACY
2308 help
2309 Version 3.1.x of the Linux kernel headers have been deprecated
2310 for more than four buildroot releases and are now removed.
2311 As an alternative, version 3.2.x of the headers have been
2312 automatically selected in your configuration.
2313
2314config BR2_KERNEL_HEADERS_3_3
2315 bool "kernel headers version 3.3.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002316 select BR2_KERNEL_HEADERS_3_2
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002317 select BR2_LEGACY
2318 help
2319 Version 3.3.x of the Linux kernel headers have been deprecated
2320 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002321 As an alternative, version 3.2.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002322 automatically selected in your configuration.
2323
2324config BR2_KERNEL_HEADERS_3_5
2325 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002326 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002327 select BR2_LEGACY
2328 help
2329 Version 3.5.x of the Linux kernel headers have been deprecated
2330 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002331 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002332 automatically selected in your configuration.
2333
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002334config BR2_GDB_VERSION_7_2
2335 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002336 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002337 select BR2_LEGACY
2338 help
2339 Version 7.2.x of gdb has been deprecated for more than four
2340 buildroot releases and is now removed. As an alternative, gdb
2341 7.5.x has been automatically selected in your configuration.
2342
2343config BR2_GDB_VERSION_7_3
2344 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002345 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002346 select BR2_LEGACY
2347 help
2348 Version 7.3.x of gdb has been deprecated for more than four
2349 buildroot releases and is now removed. As an alternative, gdb
2350 7.5.x has been automatically selected in your configuration.
2351
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01002352config BR2_PACKAGE_CCACHE
2353 bool "ccache target package has been removed"
2354 select BR2_LEGACY
2355 help
2356 The 'ccache' target package has been removed since it has been
2357 deprecated for more than four buildroot releases.
2358 Note: using ccache for speeding up builds is still supported.
2359
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01002360config BR2_HAVE_DOCUMENTATION
2361 bool "support for documentation on target has been removed"
2362 select BR2_LEGACY
2363 help
2364 Support for documentation on target has been removed since it has
2365 been deprecated for more than four buildroot releases.
2366
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01002367config BR2_PACKAGE_AUTOMAKE
2368 bool "automake target package has been removed"
2369 select BR2_LEGACY
2370 help
2371 The 'automake' target package has been removed since it has been
2372 deprecated for more than four buildroot releases.
2373 Note: the host automake still exists.
2374
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01002375config BR2_PACKAGE_AUTOCONF
2376 bool "autoconf target package has been removed"
2377 select BR2_LEGACY
2378 help
2379 The 'autoconf' target package has been removed since it has been
2380 deprecated for more than four buildroot releases.
2381 Note: the host autoconf still exists.
2382
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01002383config BR2_PACKAGE_XSTROKE
2384 bool "xstroke has been removed"
2385 select BR2_LEGACY
2386 help
2387 The 'xstroke' package has been removed since it has been
2388 deprecated for more than four buildroot releases.
2389
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01002390config BR2_PACKAGE_LZMA
2391 bool "lzma target package has been removed"
2392 select BR2_LEGACY
2393 help
2394 The 'lzma' target package has been removed since it has been
2395 deprecated for more than four buildroot releases.
2396 Note: generating lzma-compressed rootfs images is still supported.
2397
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01002398config BR2_PACKAGE_TTCP
2399 bool "ttcp has been removed"
2400 select BR2_LEGACY
2401 help
2402 The 'ttcp' package has been removed since it has been
2403 deprecated for more than four buildroot releases.
2404
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002405config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002406 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002407 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002408 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002409 help
2410 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002411 to 'libllcp'. We have added a new package for 'libllcp' and bumped
2412 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002413
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00002414config BR2_PACKAGE_MYSQL_CLIENT
2415 bool "MySQL client renamed to MySQL"
2416 select BR2_LEGACY
2417 select BR2_PACKAGE_MYSQL
2418 help
2419 The option has been renamed BR2_PACKAGE_MYSQL
2420
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01002421config BR2_PACKAGE_SQUASHFS3
2422 bool "squashfs3 has been removed"
2423 select BR2_LEGACY
2424 select BR2_PACKAGE_SQUASHFS
2425 help
2426 The 'squashfs3' package has been removed since it has been
2427 deprecated for more than four buildroot releases. Package
2428 'squashfs' (4) has been selected automatically as replacement.
2429
2430config BR2_TARGET_ROOTFS_SQUASHFS3
2431 bool "squashfs3 rootfs support has been removed"
2432 select BR2_LEGACY
2433 help
2434 Together with the removal of the squashfs3 package, support
2435 for squashfs3 root filesystems has been removed too. Squashfs
2436 root filesystems will automatically use squashfs4 now.
2437
Arnaud Aujon560fe852013-12-15 20:23:12 +01002438config BR2_PACKAGE_NETKITBASE
2439 bool "netkitbase has been removed"
2440 select BR2_LEGACY
2441 help
2442 The 'netkitbase' package has been removed since it has been
2443 deprecated since 2012.11. This package provided 'inetd'
2444 which is replaced by 'xinet' and 'ping' which is replaced by
2445 'busybox' or 'fping'.
2446
2447config BR2_PACKAGE_NETKITTELNET
2448 bool "netkittelnet has been removed"
2449 select BR2_LEGACY
2450 help
2451 The 'netkittelnet' package has been removed since it has
2452 been deprecated since 2012.11. 'busybox' provides a telnet
2453 client and should be used instead.
2454
Francois Perrad63058f82014-01-11 16:42:09 +01002455config BR2_PACKAGE_LUASQL
2456 bool "luasql has been replaced by luasql-sqlite3"
2457 select BR2_PACKAGE_LUASQL_SQLITE3
2458 select BR2_LEGACY
2459 help
2460 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2461
Francois Perrada6c53472014-01-11 16:42:08 +01002462config BR2_PACKAGE_LUACJSON
2463 bool "luacjson has been replaced by lua-cjson"
2464 select BR2_PACKAGE_LUA_CJSON
2465 select BR2_LEGACY
2466 help
2467 The option has been renamed BR2_PACKAGE_LUA_CJSON.
2468
Arnaud Aujon560fe852013-12-15 20:23:12 +01002469###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002470comment "Legacy options removed in 2013.11"
2471
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01002472config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2473 bool "lvm2's 'dmsetup only' option removed"
2474 select BR2_LEGACY
2475 help
2476 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2477 led to problems with other packages that need the full lvm2
2478 suite. Therefore, the option has been replaced with the positive
2479 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2480
2481# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2482# in order to automatically propagate old configs
2483
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01002484config BR2_PACKAGE_QT_JAVASCRIPTCORE
2485 bool "qt javascriptcore option removed"
2486 select BR2_LEGACY
2487 help
2488 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2489 force the activation or disabling of the JIT compiler in the
2490 Qt Javascript interpreter. However, the JIT compiler is not
2491 available for all architectures, so forcing its activation
2492 does not always work. Moreover, Qt knows by itself for which
2493 architectures JIT support is possible, and will
2494 automatically enable it if possible.
2495
2496 Therefore, this option was in fact useless, and causing
2497 build problems when enabled on architectures for which the
2498 JIT support was not available. It has been removed, and
2499 there is no replacement: Qt will enable JIT at compile time
2500 when possible.
2501
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002502config BR2_PACKAGE_MODULE_INIT_TOOLS
2503 bool "module-init-tools replaced by kmod"
2504 select BR2_PACKAGE_KMOD
2505 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01002506 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002507 help
2508 The 'module-init-tools' package has been removed, since it
2509 has been depracated upstream and replaced by 'kmod'.
2510
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02002511config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2512 string "u-boot: the git repository URL option has been renamed"
2513 help
2514 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2515 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2516
2517config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2518 bool
2519 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2520 select BR2_LEGACY
2521
2522# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2523# boot/uboot/Config.in
2524
2525config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2526 string "u-boot: the git repository version option has been renamed"
2527 help
2528 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
2529 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
2530
2531config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
2532 bool
2533 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
2534 select BR2_LEGACY
2535
2536# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
2537# boot/uboot/Config.in
2538
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02002539config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
2540 string "linux: the git repository URL option has been renamed"
2541 help
2542 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
2543 been renamed to
2544 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
2545
2546config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
2547 bool
2548 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
2549 select BR2_LEGACY
2550
2551# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
2552# linux/Config.in
2553
2554config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
2555 string "linux: the git repository version option has been renamed"
2556 help
2557 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
2558 been renamed to
2559 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
2560
2561config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
2562 bool
2563 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
2564 select BR2_LEGACY
2565
2566# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
2567# linux/Config.in
2568
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002569###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002570comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002571
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02002572config BR2_ARM_OABI
2573 bool "ARM OABI support has been removed"
2574 select BR2_LEGACY
2575 help
2576 The support for the ARM OABI was deprecated since a while,
2577 and has been removed completely from Buildroot. It is also
2578 deprecated in upstream gcc, since gcc 4.7. People should
2579 switch to EABI instead, which should not be a problem as
2580 long as you don't have pre-built OABI binaries in your
2581 system that you can't recompile.
2582
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002583config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
2584 bool "dosfstools dosfsck renamed to fsck.fat"
2585 select BR2_LEGACY
2586 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
2587 help
2588 dosfsck was renamed upstream to fsck.fat for consistency.
2589
2590config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
2591 bool "dosfstools dosfslabel renamed to fatlabel"
2592 select BR2_LEGACY
2593 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
2594 help
2595 doslabel was renamed upstream to fatlabel for consistency.
2596
2597config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
2598 bool "dosfstools mkdosfs renamed to mkfs.fat"
2599 select BR2_LEGACY
2600 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
2601 help
2602 mkdosfs was renamed upstream to mkfs.fat for consistency.
2603
Thomas Petazzonie21db002013-06-30 21:28:57 +02002604config BR2_ELF2FLT
2605 bool "the elf2flt option has been renamed"
2606 select BR2_LEGACY
2607 help
2608 The BR2_ELF2FLT option has been renamed to
2609 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
2610 the package infrastructure.
2611
Thomas Petazzonid8060052013-07-16 10:03:17 +02002612config BR2_VFP_FLOAT
2613 bool "the ARM VFP floating point option has been renamed"
2614 select BR2_LEGACY
2615 help
2616 Due to a major refactoring of the floating-point handling of
2617 the ARM architecture support, the BR2_VFP_FLOAT option has
2618 been replaced with a choice of options that allows to select
2619 between various VFP versions/capabilities.
2620
Samuel Martinba8f82b2013-08-30 06:08:59 +02002621config BR2_PACKAGE_GCC_TARGET
2622 bool "gcc on the target filesystem has been removed"
2623 select BR2_LEGACY
2624 help
2625 The support for gcc in the target filesystem was deprecated
2626 since a while, and has been removed completely from Buildroot.
2627 See Buildroot's documentation for more explanations.
2628
2629config BR2_HAVE_DEVFILES
2630 bool "development files in target filesystem has been removed"
2631 select BR2_LEGACY
2632 help
2633 The installation of the development files in the target
2634 filesystem was deprecated since a while, and has been removed
2635 completely from Buildroot.
2636 See Buildroot's documentation for more explanations.
2637
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002638###############################################################################
2639comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +00002640
2641config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
2642 bool "Realtek 8192 replaced by Realtek 81xx"
2643 select BR2_LEGACY
2644 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
2645 help
2646 Now covers the whole Realtek 81xx familly: 8188/8192.
2647
2648config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
2649 bool "Realtek 8712 replaced by Realtek 87xx"
2650 select BR2_LEGACY
2651 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
2652 help
2653 Now covers the whole Realtek 87xx familly: 8712/8723.
2654
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002655###############################################################################
2656comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002657
Gustavo Zacarias94744212013-04-04 07:29:45 +00002658config BR2_sa110
2659 bool "sa110 ARM target switched to strongarm"
2660 select BR2_LEGACY
2661 select BR2_strongarm
2662 help
2663 The SA110 is the same as a generic StrongARM, it just differs
2664 in speed, peripherals and cache.
2665
2666config BR2_sa1100
2667 bool "sa1100 ARM target switched to strongarm"
2668 select BR2_LEGACY
2669 select BR2_strongarm
2670 help
2671 The SA1100 is the same as a generic StrongARM, it just differs
2672 in speed, peripherals and cache.
2673
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002674config BR2_PACKAGE_GDISK
2675 bool "gdisk has been replaced by gptfdisk"
2676 select BR2_LEGACY
2677 select BR2_PACKAGE_GPTFDISK
2678 help
2679 The option has been renamed BR2_PACKAGE_GPTFDISK.
2680
2681config BR2_PACKAGE_GDISK_GDISK
2682 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
2683 select BR2_LEGACY
2684 select BR2_PACKAGE_GPTFDISK
2685 select BR2_PACKAGE_GPTFDISK_GDISK
2686 help
2687 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
2688
2689config BR2_PACKAGE_GDISK_SGDISK
2690 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
2691 select BR2_LEGACY
2692 select BR2_PACKAGE_GPTFDISK
2693 select BR2_PACKAGE_GPTFDISK_SGDISK
2694 help
2695 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00002696
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +00002697config BR2_PACKAGE_GDB_HOST
2698 bool "gdb for the host option has been renamed"
2699 select BR2_PACKAGE_HOST_GDB
2700 select BR2_LEGACY
2701 help
2702 Due to the conversion of gdb to the package infrastructure,
2703 the BR2_PACKAGE_GDB_HOST option has been renamed
2704 BR2_PACKAGE_HOST_GDB.
2705
Carsten Schoenert76de0f82013-03-10 08:32:46 +00002706config BR2_PACKAGE_DIRECTB_DITHER_RGB16
2707 bool "DirectFB RGB16 dithering option has been renamed"
2708 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
2709 select BR2_LEGACY
2710 help
2711 The option has been renamed
2712 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
2713
2714config BR2_PACKAGE_DIRECTB_TESTS
2715 bool "DirectFB Tests option has been renamed"
2716 select BR2_PACKAGE_DIRECTFB_TESTS
2717 select BR2_LEGACY
2718 help
2719 The option has been renamed
2720 BR2_PACKAGE_DIRECTFB_TESTS.
2721
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002722###############################################################################
2723comment "Legacy options removed in 2012.11"
2724
Thomas Petazzoni12ccc432013-02-07 11:58:45 +00002725config BR2_PACKAGE_CUSTOMIZE
2726 bool "customize package has been removed"
2727 select BR2_LEGACY
2728 help
2729 The 'customize' special package has been removed. Instead,
2730 we recommend to create either your own packages, or use a
2731 post-build script to customize your root filesystem. See
2732 Buildroot's documentation for more details.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002733
2734config BR2_PACKAGE_XSERVER_xorg
2735 bool "X.org modular server"
2736 select BR2_LEGACY
2737 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
2738 help
2739 The option has been renamed
2740 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
2741
2742config BR2_PACKAGE_XSERVER_tinyx
2743 bool "KDrive / TinyX server"
2744 select BR2_LEGACY
2745 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
2746 help
2747 The option has been renamed
2748 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
2749
2750config BR2_PACKAGE_PTHREAD_STUBS
2751 bool "pthread-stubs option has been renamed"
2752 select BR2_LEGACY
Bernd Kuhls5562be12014-03-01 16:41:10 +01002753 select BR2_PACKAGE_LIBPTHREAD_STUBS
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002754 help
2755 For consistency reason, the pthread-stubs package has been
Bernd Kuhls5562be12014-03-01 16:41:10 +01002756 renamed to libpthread-stubs.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002757
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002758###############################################################################
2759comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00002760
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +00002761config BR2_PACKAGE_GETTEXT_STATIC
2762 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
2763 select BR2_LEGACY
2764 help
2765 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
2766
2767
2768config BR2_PACKAGE_LIBINTL
2769 bool "libintl"
2770 select BR2_LEGACY
2771 select BR2_PACKAGE_GETTEXT
2772 help
2773 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
2774 only installs the library, not the executables.
2775
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +00002776config BR2_PACKAGE_INPUT_TOOLS_EVTEST
2777 bool "input-tools evtest is now a separate package evtest"
2778 select BR2_LEGACY
2779 select BR2_PACKAGE_EVTEST
2780 help
2781 The evtest program from input-tools is now a separate package.
2782
Sonic Zhang57133822013-05-03 00:39:34 +00002783config BR2_BFIN_FDPIC
2784 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
2785 select BR2_BINFMT_FDPIC
2786 select BR2_LEGACY
2787
2788config BR2_BFIN_FLAT
2789 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
2790 select BR2_BINFMT_FLAT
2791 select BR2_LEGACY
2792
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00002793endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02002794
2795endif # !SKIP_LEGACY