blob: cfb127610a13fc4eb35288d4c80955969812f87d [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###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +0100146comment "Legacy options removed in 2017.02"
147
Arnout Vandecappelle207294f2016-11-23 15:14:04 +0100148config BR2_PACKAGE_MAKEDEVS
149 bool "makedevs removed"
150 select BR2_LEGACY
151 help
152 The makedevs tool is part of busybox. The Buildroot fork
153 should not be used outside of the Buildroot infrastructure.
154
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +0100155config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
156 bool "Arago ARMv7 2011.09 removed"
157 select BR2_LEGACY
158 help
159 The Arago toolchains are every old and not updated anymore.
160
161config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
162 bool "Arago ARMv5 2011.09 removed"
163 select BR2_LEGACY
164 help
165 The Arago toolchains are every old and not updated anymore.
166
Thomas Petazzonied364d12016-11-05 14:32:38 +0100167config BR2_PACKAGE_SNOWBALL_HDMISERVICE
168 bool "snowball-hdmiservice removed"
169 select BR2_LEGACY
170 help
171 We no longer have support for the Snowball platform in
172 Buildroot, so this package was no longer useful.
173
174config BR2_PACKAGE_SNOWBALL_INIT
175 bool "snowball-init removed"
176 select BR2_LEGACY
177 help
178 We no longer have support for the Snowball platform in
179 Buildroot, so this package was no longer useful.
180
181###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +0200182comment "Legacy options removed in 2016.11"
183
Fabrice Fontainec4572132016-09-12 23:31:07 +0200184config BR2_PACKAGE_PHP_SAPI_CLI_CGI
185 bool "PHP CGI and CLI options are now seperate"
186 select BR2_PACKAGE_PHP_SAPI_CLI
187 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200188 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200189 help
190 The PHP Interface options have been split up into a
191 separate option for each interface.
192
193config BR2_PACKAGE_PHP_SAPI_CLI_FPM
194 bool "PHP CLI and FPM options are now separate"
195 select BR2_PACKAGE_PHP_SAPI_CLI
196 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +0200197 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +0200198 help
199 The PHP Interface options have been split up into a
200 separate option for each interface.
201
Arnout Vandecappelle35343992016-10-15 16:51:06 +0200202config BR2_PACKAGE_WVSTREAMS
203 bool "wvstreams removed"
204 select BR2_LEGACY
205 help
206 wvstreams is not maintained anymore since about 2009. It also
207 doesn't build anymore with recent compilers (GCC 5+).
208
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +0200209config BR2_PACKAGE_WVDIAL
210 bool "wvdial removed"
211 select BR2_LEGACY
212 help
213 wvdial is not maintained anymore since about 2009. It also
214 doesn't build anymore with recent compilers (GCC 5+).
215
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +0200216config BR2_PACKAGE_WEBKITGTK24
217 bool "webkitgtk 2.4.x removed"
218 select BR2_LEGACY
219 help
220 This legacy package only existed because some other packages
221 depended on that specific version of webkitgtk. However, the
222 other packages have been fixed. webkitgtk 2.4 is full of
223 security issues so it needs to be removed.
224
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +0200225config BR2_PACKAGE_TORSMO
226 bool "torsmo removed"
227 select BR2_LEGACY
228 help
229 torsmo has been unmaintained for a long time, and nobody
230 seems to be interested in it.
231
Arnout Vandecappelle290166f2016-10-15 16:51:02 +0200232config BR2_PACKAGE_SSTRIP
233 bool "sstrip removed"
234 select BR2_LEGACY
235 help
236 sstrip is unmaintained and potentially harmful. It doesn't
237 save so much compared to normal binutils strip, and there is
238 a big risk of binaries that don't work. Use normal strip
239 instead.
240
Arnout Vandecappelle133466f2016-10-15 16:51:01 +0200241config BR2_KERNEL_HEADERS_4_3
242 bool "kernel headers version 4.3.x are no longer supported"
243 select BR2_KERNEL_HEADERS_4_1
244 select BR2_LEGACY
245 help
246 Version 4.3.x of the Linux kernel headers are no longer
247 maintained upstream and are now removed. As an alternative,
248 version 4.1.x of the headers have been automatically
249 selected in your configuration.
250
251config BR2_KERNEL_HEADERS_4_2
252 bool "kernel headers version 4.2.x are no longer supported"
253 select BR2_KERNEL_HEADERS_4_1
254 select BR2_LEGACY
255 help
256 Version 4.2.x of the Linux kernel headers are no longer
257 maintained upstream and are now removed. As an alternative,
258 version 4.1.x of the headers have been automatically
259 selected in your configuration.
260
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +0200261config BR2_PACKAGE_KODI_ADDON_XVDR
262 bool "kodi-addon-xvdr removed"
263 select BR2_LEGACY
264 help
265 According to the github project page:
266 https://github.com/pipelka/xbmc-addon-xvdr
267 this package is discontinued.
268
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +0200269config BR2_PACKAGE_IPKG
270 bool "ipkg removed"
271 select BR2_LEGACY
272 help
273 ipkg dates back to the early 2000s when Compaq started the
274 handhelds.org project and it hasn't seen development since 2006.
275 Use opkg as a replacement.
276
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +0200277config BR2_GCC_VERSION_4_7_X
278 bool "gcc 4.7.x support removed"
279 select BR2_LEGACY
280 help
281 Support for gcc version 4.7.x has been removed. The current
282 default version (4.9.x or later) has been selected instead.
283
Arnout Vandecappelled8878112016-10-15 16:50:57 +0200284config BR2_BINUTILS_VERSION_2_24_X
285 bool "binutils version 2.24 support removed"
286 select BR2_LEGACY
287 help
288 Support for binutils version 2.24 has been removed. The
289 current default version (2.26 or later) has been selected
290 instead.
291
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -0300292config BR2_PACKAGE_WESTON_RPI
293 bool "Weston propietary RPI support is gone"
294 select BR2_LEGACY
295 help
296 Upstream decided the propietary (rpi-userland) weston composer
297 support wasn't worth the effort so it was removed. Switch to
298 the open VC4 support.
299
Yann E. MORIN20b14462016-09-06 16:29:14 +0200300config BR2_LINUX_KERNEL_TOOL_CPUPOWER
301 bool "linux-tool cpupower"
302 depends on BR2_LINUX_KERNEL
303 select BR2_LEGACY
304 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
305 help
306 Linux tool cpupower option was renamed.
307
308config BR2_LINUX_KERNEL_TOOL_PERF
309 bool "linux-tool perf"
310 depends on BR2_LINUX_KERNEL
311 select BR2_LEGACY
312 select BR2_PACKAGE_LINUX_TOOLS_PERF
313 help
314 Linux tool perf option was renamed.
315
316config BR2_LINUX_KERNEL_TOOL_SELFTESTS
317 bool "linux-tool selftests"
318 depends on BR2_LINUX_KERNEL
319 select BR2_LEGACY
320 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
321 help
322 Linux tool selftests option was renamed.
323
Thomas Petazzoni50332a52016-08-11 15:25:38 +0200324config BR2_GCC_VERSION_4_8_ARC
325 bool "gcc arc option renamed"
326 select BR2_LEGACY
327 select BR2_GCC_VERSION_ARC
328 help
329 The option that selects the gcc version for the ARC
330 architecture has been renamed to BR2_GCC_VERSION_ARC.
331
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300332config BR2_KERNEL_HEADERS_4_0
333 bool "kernel headers version 4.0.x are no longer supported"
334 select BR2_KERNEL_HEADERS_3_18
335 select BR2_LEGACY
336 help
337 Version 4.0.x of the Linux kernel headers have been deprecated
338 for more than four buildroot releases and are now removed.
339 As an alternative, version 3.18.x of the headers have been
340 automatically selected in your configuration.
341
342config BR2_KERNEL_HEADERS_3_19
343 bool "kernel headers version 3.19.x are no longer supported"
344 select BR2_KERNEL_HEADERS_3_18
345 select BR2_LEGACY
346 help
347 Version 3.19.x of the Linux kernel headers have been deprecated
348 for more than four buildroot releases and are now removed.
349 As an alternative, version 3.18.x of the headers have been
350 automatically selected in your configuration.
351
Romain Naour0e517312016-09-02 22:31:32 +0200352config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
353 bool "libevas-generic-loaders package removed"
354 select BR2_LEGACY
355 select BR2_PACKAGE_EFL
356 help
357 With EFL 1.18, libevas-generic-loaders is now provided by the efl
358 package.
359
Romain Naourc22b7582016-09-02 22:31:31 +0200360config BR2_PACKAGE_ELEMENTARY
361 bool "elementary package removed"
362 select BR2_LEGACY
363 select BR2_PACKAGE_EFL
364 help
365 With EFL 1.18, elementary is now provided by the efl package.
366
Yann E. MORINe782cd52016-08-28 01:03:04 +0200367config BR2_LINUX_KERNEL_CUSTOM_LOCAL
368 bool "Linux kernel local directory option removed"
369 help
370 The option to select a local directory as the source of the Linux
371 kernel has been removed. It hurts reproducibility of builds.
372
373 In case you were using this option during development of your
374 Linux kernel, use the override mechanism instead.
375
376###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200377comment "Legacy options removed in 2016.08"
378
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200379config BR2_PACKAGE_SYSTEMD_COMPAT
380 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +0200381 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200382 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +0200383 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200384 been removed. Theses libraries have been useless since a few
385 version, and have been fully dropped from the source since
386 v230.
387
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +0200388config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
389 bool "gst1-plugins-bad liveadder plugin removed"
390 select BR2_LEGACY
391 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
392 help
393 The functionality of the liveadder plugin of the
394 gst1-plugins-bad package has been merged into audiomixer.
395
Andrew Webster0f92b192016-06-10 14:13:29 -0400396config BR2_PACKAGE_LIBFSLVPUWRAP
397 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
398 select BR2_LEGACY
399 select BR2_PACKAGE_IMX_VPUWRAP
400 help
401 The libfslvpuwrap has been renamed to match the renamed package.
402
Andrew Webster64998902016-06-10 14:13:18 -0400403config BR2_PACKAGE_LIBFSLPARSER
404 bool "libfslparser has been renamed to imx-parser"
405 select BR2_LEGACY
406 select BR2_PACKAGE_IMX_PARSER
407 help
408 The libfslparser has been renamed to match the renamed package.
409
Andrew Webster47e62032016-06-10 14:13:05 -0400410config BR2_PACKAGE_LIBFSLCODEC
411 bool "libfslcodec has been renamed to imx-codec"
412 select BR2_LEGACY
413 select BR2_PACKAGE_IMX_CODEC
414 help
415 The libfslcodec has been renamed to match the renamed package.
416
Carlos Santosb5d99002016-06-03 16:35:39 -0300417config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
418 bool "FIT support in uboot-tools has been refactored"
419 select BR2_LEGACY
420 select BR2_PACKAGE_DTC
421 select BR2_PACKAGE_DTC_PROGRAMS
422 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
423 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
424 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
425 help
426 This option has been removed in favor of a more fine-grained
427 configuration, which is recommended. Selecting this option
428 enables FIT and FIT signature support for the target packages.
429 It will also select the dtc and openssl packages.
430
Waldemar Brodkorbf253c142016-06-01 20:40:25 +0200431config BR2_PTHREADS_OLD
432 bool "linuxthreads (stable/old)"
433 select BR2_LEGACY
434 help
435 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
436 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
437
Thomas Petazzoniae466a62016-05-17 00:13:01 +0200438config BR2_BINUTILS_VERSION_2_23_X
439 bool "binutils 2.23 removed"
440 select BR2_LEGACY
441 help
442 Binutils 2.23 has been removed, using a newer version is
443 recommended.
444
Thomas Petazzoni500de252016-05-17 00:13:00 +0200445config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
446 bool "eglibc support has been removed"
447 select BR2_LEGACY
448 help
449 The eglibc project no longer exists, as it has been merged
450 back into the glibc project. Therefore, support for eglibc
451 has been removed, and glibc should be used instead.
452
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200453config BR2_GDB_VERSION_7_8
454 bool "gdb 7.8 has been removed"
455 select BR2_LEGACY
456 help
457 The 7.8 version of gdb has been removed. Use a newer version
458 instead.
459
460###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100461comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +0100462
Gustavo Zacarias3380da62016-05-14 10:33:47 -0300463config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
464 bool "openvpn polarssl crypto backend removed"
465 select BR2_LEGACY
466 help
467 The OpenVPN polarssl crypto backend option has been removed.
468 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
469 compatible with mbedtls (polarssl) series 2.x which is the
470 version provided in buildroot. And both can't coexist.
471 It now uses OpenSSL as the only option.
472
473
Martin Bark4dfc2cb2016-05-03 10:36:54 +0100474config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
475 bool "nginx http spdy module removed"
476 select BR2_LEGACY
477 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
478 help
479 The ngx_http_spdy_module has been superseded by the
480 ngx_http_v2_module since nginx v1.9.5. The
481 ngx_http_v2_module modules has been automatically selected
482 in your configuration.
483
Gustavo Zacarias0c956f22016-05-03 16:44:15 -0300484config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
485 bool "gst1-plugins-bad rtp plugin moved to good"
486 select BR2_LEGACY
487 help
488 The rtp plugin has been moved from gst1-plugins-base to
489 gst1-plugins-good.
490
Gustavo Zacarias4196cf92016-05-03 16:44:14 -0300491config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
492 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
493 select BR2_LEGACY
494 help
495 The mpg123 plugin has been moved from gst1-plugins-bad to
496 gst1-plugins-ugly.
497
Gustavo Zacarias8490e832016-04-29 10:18:56 -0300498config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
499 bool "PowerPC Sourcery toolchain has been removed"
500 select BR2_LEGACY
501 help
502 The Sourcery CodeBench toolchain for the PowerPC
503 architecture has been removed, as it was very old, not
504 maintained, and causing numerous build failures with modern
505 userspace packages.
506
507config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
508 bool "PowerPC Sourcery E500v2 toolchain has been removed"
509 select BR2_LEGACY
510 help
511 The Sourcery CodeBench toolchain for the PowerPC E500v2
512 architecture has been removed, as it was very old, not
513 maintained, and causing numerous build failures with modern
514 userspace packages.
515
Thomas Petazzoni6cb48142016-04-17 23:31:34 +0200516config BR2_x86_i386
517 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +0200518 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +0200519 help
520 The support for the i386 processors of the x86 architecture
521 has been removed.
522
Julien CORJON940bfe22016-03-17 10:42:27 +0100523config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
524 bool "qt5webkit-examples package removed"
525 select BR2_LEGACY
526 help
527 The qt5webkit-examples package has been removed, since it
528 was removed from upstream starting from Qt 5.6.
529
Julien CORJONf75ee802016-03-17 10:42:25 +0100530config BR2_PACKAGE_QT5QUICK1
531 bool "qt5quick1 package removed"
532 select BR2_LEGACY
533 help
534 The qt5quick1 package has been removed, since it was removed
535 from upstream starting from Qt 5.6.
536
Gustavo Zacarias21b25d22016-03-11 11:32:24 -0300537config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
538 bool "uboot custom patch dir removed"
539 select BR2_LEGACY
540 help
541 The uboot custom patch directory option has been removed. Use
542 the improved BR2_TARGET_UBOOT_PATCH option instead.
543
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -0300544config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
545 bool "xf86-input-void removed"
546 select BR2_LEGACY
547 help
548 The xf86-input-void package has been removed, there's no need
549 for it in any modern (post-2007) xorg server.
550
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300551config BR2_KERNEL_HEADERS_3_17
552 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300553 select BR2_KERNEL_HEADERS_3_14
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300554 select BR2_LEGACY
555 help
556 Version 3.17.x of the Linux kernel headers have been deprecated
557 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300558 As an alternative, version 3.14.x of the headers have been
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300559 automatically selected in your configuration.
560
Gustavo Zacariasffc324e2016-03-11 11:32:21 -0300561config BR2_GDB_VERSION_7_7
562 bool "gdb 7.7 has been removed"
563 select BR2_LEGACY
564 help
565 The 7.7 version of gdb has been removed. Use a newer version
566 instead.
567
Gustavo Zacarias75945dd2016-03-11 11:32:20 -0300568config BR2_PACKAGE_FOOMATIC_FILTERS
569 bool "foomatic-filters"
570 select BR2_LEGACY
571 help
572 The foomatic-filters package was removed.
573
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -0300574config BR2_PACKAGE_SAMBA
575 bool "samba"
576 select BR2_LEGACY
577 help
578 The samba package was removed in favour of samba4 since the
579 3.x series isn't supported by upstream any longer.
580
Bernd Kuhls6922b412016-02-20 23:09:11 +0100581config BR2_PACKAGE_KODI_WAVPACK
582 bool "wavpack"
583 select BR2_LEGACY
584 help
585 wavpack support was removed in favour of ffmpeg:
586 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
587
Bernd Kuhls75ce17d2016-02-20 23:09:07 +0100588config BR2_PACKAGE_KODI_RSXS
589 bool "rsxs support in Kodi was moved to an addon"
590 select BR2_LEGACY
591 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
592 help
593 rsxs support in Kodi was moved to an addon
594
Bernd Kuhls56b80ec2016-02-20 23:09:06 +0100595config BR2_PACKAGE_KODI_GOOM
596 bool "Goom support in Kodi was moved to an addon"
597 select BR2_LEGACY
598 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
599 help
600 Goom support in Kodi was moved to an addon
601
Gabe Evanse5a073a2016-02-25 21:55:11 +0000602config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
603 bool "systemd all extras option has been removed"
604 select BR2_LEGACY
605 select BR2_PACKAGE_XZ
606 select BR2_PACKAGE_LIBGCRYPT
607 help
608 The systemd option to enable "all extras" has been
609 removed. To get the same features, the libgcrypt and xz
610 package should now be enabled.
611
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -0300612config BR2_GCC_VERSION_4_5_X
613 bool "gcc 4.5.x has been removed"
614 select BR2_LEGACY
615 help
616 The 4.5.x version of gcc has been removed. Use a newer
617 version instead.
618
Bernd Kuhls007c2ce2016-02-08 20:56:41 +0100619config BR2_PACKAGE_SQLITE_READLINE
620 bool "command-line editing support was updated"
621 select BR2_PACKAGE_NCURSES
622 select BR2_PACKAGE_READLINE
623 select BR2_LEGACY
624 help
625 This option was removed in favour of the sqlite package
626 deciding itself depending on the enabled packages whether
627 command-line editing should be enabled, it also also takes
628 libedit into account.
629
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100630###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +0100631comment "Legacy options removed in 2016.02"
632
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +0100633config BR2_PACKAGE_DOVECOT_BZIP2
634 bool "bzip2 support option has been removed"
635 select BR2_LEGACY
636 select BR2_PACKAGE_BZIP2
637 help
638 Bzip2 support is built if the bzip2 package is selected.
639
640config BR2_PACKAGE_DOVECOT_ZLIB
641 bool "zlib support option has been removed"
642 select BR2_LEGACY
643 select BR2_PACKAGE_ZLIB
644 help
645 Zlib support is built if the zlib package is selected.
646
James Knightead1df42016-02-12 11:40:05 -0500647config BR2_PACKAGE_E2FSPROGS_FINDFS
648 bool "e2fsprogs findfs option has been removed"
649 select BR2_LEGACY
650 help
651 This option attempted to enable findfs capabilities from
652 e2fsprogs but has not worked since July 2015 (due to
653 packaging changes). One can use BusyBox's findfs support or
654 enable the BR2_PACKAGE_UTIL_LINUX_FINDFS option.
655
Romain Naourb1063a02016-02-07 17:56:56 +0100656config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
657 bool "openpowerlink debug option has been removed"
658 select BR2_LEGACY
659 help
660 This option depends on BR2_ENABLE_DEBUG which should not be used
661 by packages anymore.
662
663config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
664 bool "openpowerlink package has been updated"
665 select BR2_LEGACY
666 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
667 help
668 openpowerlink kernel modules are built if the
669 kernel stack library is selected.
670
671config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
672 bool "openpowerlink package has been updated"
673 select BR2_LEGACY
674 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
675 help
676 The user space support has been split in two part:
677 - a monolitic user space library
678 - a user spae deamon driver
679
Yann E. MORINe3e05832016-02-06 00:06:17 +0100680config BR2_LINUX_KERNEL_SAME_AS_HEADERS
681 bool "using the linux headers version for the kernel has been removed"
682 select BR2_LEGACY
683 help
684 The option to use the version of the kernel headers for the
685 kernel to build has been removed.
686
687 There is now the converse, better-suited and more versatile
688 option to use the kernel version for the linux headers.
689
Olivier Schonkend37ce8e2016-01-21 00:17:43 +0200690config BR2_PACKAGE_CUPS_PDFTOPS
691 bool "Pdftops support has been removed from Cups"
692 select BR2_LEGACY
693 help
694 Pdftops support has been removed from the cups package
695 It is now part of the cups-filters package.
696
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300697config BR2_KERNEL_HEADERS_3_16
698 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300699 select BR2_KERNEL_HEADERS_3_14
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300700 select BR2_LEGACY
701 help
702 Version 3.16.x of the Linux kernel headers have been deprecated
703 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300704 As an alternative, version 3.14.x of the headers have been
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300705 automatically selected in your configuration.
706
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +0100707config BR2_PACKAGE_PYTHON_PYXML
708 bool "python-pyxml package has been removed"
709 select BR2_LEGACY
710 help
711 PyXML is obsolete and its functionality is covered either via
712 native Python XML support or python-lxml package.
713
Steven Noonand29c7192015-12-27 12:07:31 +0100714# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
715config BR2_ENABLE_SSP
716 bool "Stack Smashing protection now has different levels"
717 help
718 The protection offered by SSP can now be selected from different
719 protection levels. Be sure to review the SSP level in the build
720 options menu.
721
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300722config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -0300723 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300724 select BR2_LEGACY
725 help
726 The cle266 directfb driver support has been removed.
727 It doesn't build in the latest version and it's unlikely
728 anyone has any use for it.
729
730config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -0300731 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300732 select BR2_LEGACY
733 help
734 The unichrome directfb driver support has been removed.
735 It doesn't build in the latest version and it's unlikely
736 anyone has any use for it.
737
Romain Naour820e1682015-12-19 17:39:14 +0100738config BR2_PACKAGE_LIBELEMENTARY
739 bool "libelementary has been renamed to elementary"
740 select BR2_LEGACY
741 select BR2_PACKAGE_ELEMENTARY
742 help
743 The libelementary package has been renamed to match the upstream
744 name.
745
Romain Naoura9d1f5f2015-12-15 23:40:38 +0100746config BR2_PACKAGE_LIBEINA
747 bool "libeina package has been removed"
748 select BR2_LEGACY
749 select BR2_PACKAGE_EFL
750 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100751 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +0100752
Romain Naour49700f02015-12-15 23:40:37 +0100753config BR2_PACKAGE_LIBEET
754 bool "libeet package has been removed"
755 select BR2_LEGACY
756 select BR2_PACKAGE_EFL
757 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100758 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +0100759
Romain Naoure5989d62015-12-15 23:40:36 +0100760config BR2_PACKAGE_LIBEVAS
761 bool "libevas package has been removed"
762 select BR2_LEGACY
763 select BR2_PACKAGE_EFL
764 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100765 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +0100766
Romain Naour1fe1b602015-12-15 23:40:35 +0100767config BR2_PACKAGE_LIBECORE
768 bool "libecore package has been removed"
769 select BR2_LEGACY
770 select BR2_PACKAGE_EFL
771 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100772 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +0100773
Romain Naour8c05c382015-12-15 23:40:34 +0100774config BR2_PACKAGE_LIBEDBUS
775 bool "libedbus package has been removed"
776 select BR2_LEGACY
777 select BR2_PACKAGE_EFL
778 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100779 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +0100780
Romain Naourd2b042c2015-12-15 23:40:33 +0100781config BR2_PACKAGE_LIBEFREET
782 bool "libefreet package has been removed"
783 select BR2_LEGACY
784 select BR2_PACKAGE_EFL
785 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100786 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +0100787
Romain Naoure155c952015-12-15 23:40:32 +0100788config BR2_PACKAGE_LIBEIO
789 bool "libeio package has been removed"
790 select BR2_LEGACY
791 select BR2_PACKAGE_EFL
792 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100793 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +0100794
Romain Naourb728fb72015-12-15 23:40:31 +0100795config BR2_PACKAGE_LIBEMBRYO
796 bool "libembryo package has been removed"
797 select BR2_LEGACY
798 select BR2_PACKAGE_EFL
799 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100800 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +0100801
Romain Naour4c93c102015-12-15 23:40:30 +0100802config BR2_PACKAGE_LIBEDJE
803 bool "libedje package has been removed"
804 select BR2_LEGACY
805 select BR2_PACKAGE_EFL
806 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100807 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +0100808
Romain Naour905dba12015-12-15 23:40:29 +0100809config BR2_PACKAGE_LIBETHUMB
810 bool "libethumb package has been removed"
811 select BR2_LEGACY
812 select BR2_PACKAGE_EFL
813 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100814 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +0100815
Luca Ceresolif0c94702015-11-27 18:38:00 +0100816config BR2_PACKAGE_INFOZIP
817 bool "infozip option has been renamed to zip"
818 select BR2_LEGACY
819 select BR2_PACKAGE_ZIP
820 help
821 Info-Zip's Zip package has been renamed from infozip to zip,
822 to avoid ambiguities with Info-Zip's UnZip which has been added
823 in the unzip package.
824
Martin Barka2d16602015-12-23 12:16:04 +0000825config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +0000826 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +0000827 select BR2_LEGACY
828 select BR2_PACKAGE_NODEJS
829 help
Martin Bark75b70492016-01-30 14:51:00 +0000830 nodejs 0.10.x option has been removed. 0.10.x is now
831 automatically chosen for ARMv5 architectures only and the latest
832 nodejs for all other supported architectures. The correct nodejs
833 version has been automatically selected in your configuration.
Martin Barka2d16602015-12-23 12:16:04 +0000834
Martin Barka314b872015-12-23 12:16:03 +0000835config BR2_BR2_PACKAGE_NODEJS_0_12_X
836 bool "nodejs version 0.12.x has been removed"
837 select BR2_LEGACY
838 select BR2_PACKAGE_NODEJS
839 help
840 nodejs version 0.12.x has been removed. As an alternative,
841 the latest nodejs version has been automatically selected in
842 your configuration.
843
Martin Bark90bf67c2015-12-23 12:16:02 +0000844config BR2_BR2_PACKAGE_NODEJS_4_X
845 bool "nodejs version 4.x has been removed"
846 select BR2_LEGACY
847 select BR2_PACKAGE_NODEJS
848 help
849 nodejs version 4.x has been removed. As an alternative,
850 the latest nodejs version has been automatically selected in
851 your configuration.
852
Luca Ceresolif0c94702015-11-27 18:38:00 +0100853###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +0200854comment "Legacy options removed in 2015.11"
855
Peter Seiderer301e8ff2015-10-15 21:42:43 +0200856config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
857 bool "gst1-plugins-bad real plugin has been removed"
858 select BR2_LEGACY
859 help
860 The real plugin from GStreamer 1 bad plugins has been
861 removed.
862
Peter Seidererf7dd5cb2015-10-07 23:56:48 +0200863config BR2_PACKAGE_MEDIA_CTL
864 bool "media-ctl package has been removed"
865 select BR2_LEGACY
866 select BR2_PACKAGE_LIBV4L
867 select BR2_PACKAGE_LIBV4L_UTILS
868 help
869 media-ctl source and developement have been moved to
870 v4l-utils since June 2014. For an up-to-date media-ctl
871 version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
872
Romain Naourf8031332015-10-03 18:35:05 +0200873config BR2_PACKAGE_SCHIFRA
874 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200875 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +0200876 help
877 Schifra package has been maked broken since 2014.11 release and
878 haven't been fixed since then.
879
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +0200880config BR2_PACKAGE_ZXING
881 bool "zxing option has been renamed"
882 select BR2_LEGACY
883 select BR2_PACKAGE_ZXING_CPP
884 help
885 ZXing no longer provides the cpp bindings, it has been renamed to
886 BR2_PACKAGE_ZXING_CPP which uses a new upstream.
887
Yann E. MORIN4d131b42015-09-06 21:54:21 +0200888# Since FreeRDP has new dependencies, protect this legacy to avoid the
889# infamous "unmet direct dependencies" kconfig error.
890config BR2_PACKAGE_FREERDP_CLIENT
891 bool "freerdp client option renamed"
892 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +0200893 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +0200894 select BR2_PACKAGE_FREERDP_CLIENT_X11
895
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -0300896config BR2_PACKAGE_BLACKBOX
897 bool "blackbox package has been removed"
898 select BR2_LEGACY
899 help
900 Upstream is dead and the package has been deprecated for
901 some time. There are other alternative maintained WMs.
902
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300903config BR2_KERNEL_HEADERS_3_0
904 bool "kernel headers version 3.0.x are no longer supported"
905 select BR2_KERNEL_HEADERS_3_2
906 select BR2_LEGACY
907 help
908 Version 3.0.x of the Linux kernel headers have been deprecated
909 for more than four buildroot releases and are now removed.
910 As an alternative, version 3.2.x of the headers have been
911 automatically selected in your configuration.
912
913config BR2_KERNEL_HEADERS_3_11
914 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300915 select BR2_KERNEL_HEADERS_3_10
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300916 select BR2_LEGACY
917 help
918 Version 3.11.x of the Linux kernel headers have been deprecated
919 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300920 As an alternative, version 3.10.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300921 automatically selected in your configuration.
922
923config BR2_KERNEL_HEADERS_3_13
924 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300925 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300926 select BR2_LEGACY
927 help
928 Version 3.13.x of the Linux kernel headers have been deprecated
929 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300930 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300931 automatically selected in your configuration.
932
933config BR2_KERNEL_HEADERS_3_15
934 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300935 select BR2_KERNEL_HEADERS_3_14
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300936 select BR2_LEGACY
937 help
938 Version 3.15.x of the Linux kernel headers have been deprecated
939 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300940 As an alternative, version 3.14.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300941 automatically selected in your configuration.
942
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200943config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
944 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200945 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200946 select BR2_PACKAGE_DIRECTFB_EXAMPLES
947 help
948 The per-DirectFB example options have been removed. The
949 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
950 examples.
951
952config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
953 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200954 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200955 select BR2_PACKAGE_DIRECTFB_EXAMPLES
956 help
957 The per-DirectFB example options have been removed. The
958 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
959 examples.
960
961config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
962 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200963 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200964 select BR2_PACKAGE_DIRECTFB_EXAMPLES
965 help
966 The per-DirectFB example options have been removed. The
967 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
968 examples.
969
970config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
971 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200972 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200973 select BR2_PACKAGE_DIRECTFB_EXAMPLES
974 help
975 The per-DirectFB example options have been removed. The
976 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
977 examples.
978
979config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
980 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200981 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200982 select BR2_PACKAGE_DIRECTFB_EXAMPLES
983 help
984 The per-DirectFB example options have been removed. The
985 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
986 examples.
987
988config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
989 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200990 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200991 select BR2_PACKAGE_DIRECTFB_EXAMPLES
992 help
993 The per-DirectFB example options have been removed. The
994 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
995 examples.
996
997config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
998 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200999 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001000 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1001 help
1002 The per-DirectFB example options have been removed. The
1003 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1004 examples.
1005
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001006config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
1007 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001008 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001009 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1010 help
1011 The per-DirectFB example options have been removed. The
1012 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1013 examples.
1014
1015config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
1016 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001017 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001018 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1019 help
1020 The per-DirectFB example options have been removed. The
1021 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1022 examples.
1023
1024config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
1025 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001026 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001027 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1028 help
1029 The per-DirectFB example options have been removed. The
1030 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1031 examples.
1032
1033config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
1034 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001035 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001036 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1037 help
1038 The per-DirectFB example options have been removed. The
1039 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1040 examples.
1041
1042config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
1043 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001044 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001045 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1046 help
1047 The per-DirectFB example options have been removed. The
1048 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1049 examples.
1050
1051config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
1052 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001053 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001054 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1055 help
1056 The per-DirectFB example options have been removed. The
1057 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1058 examples.
1059
1060config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
1061 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001062 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001063 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1064 help
1065 The per-DirectFB example options have been removed. The
1066 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1067 examples.
1068
1069config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
1070 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001071 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001072 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1073 help
1074 The per-DirectFB example options have been removed. The
1075 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1076 examples.
1077
1078config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
1079 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001080 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001081 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1082 help
1083 The per-DirectFB example options have been removed. The
1084 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1085 examples.
1086
1087config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
1088 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001089 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001090 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1091 help
1092 The per-DirectFB example options have been removed. The
1093 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1094 examples.
1095
1096config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
1097 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001098 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001099 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1100 help
1101 The per-DirectFB example options have been removed. The
1102 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1103 examples.
1104
1105config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
1106 bool "DirectFB example df_palette has been removed"
1107 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1108 help
1109 The per-DirectFB example options have been removed. The
1110 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1111 examples.
1112
1113config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
1114 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001115 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001116 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1117 help
1118 The per-DirectFB example options have been removed. The
1119 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1120 examples.
1121
1122config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
1123 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001124 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001125 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1126 help
1127 The per-DirectFB example options have been removed. The
1128 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1129 examples.
1130
1131config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
1132 bool "DirectFB example df_stress has been removed"
1133 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1134 help
1135 The per-DirectFB example options have been removed. The
1136 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1137 examples.
1138
1139config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
1140 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001141 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001142 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1143 help
1144 The per-DirectFB example options have been removed. The
1145 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1146 examples.
1147
1148config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
1149 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001150 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001151 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1152 help
1153 The per-DirectFB example options have been removed. The
1154 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1155 examples.
1156
1157config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1158 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001159 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001160 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1161 help
1162 The per-DirectFB example options have been removed. The
1163 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1164 examples.
1165
1166config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1167 bool "DirectFB example df_window 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
Gary Bisson2b78fb22015-09-23 15:39:27 +02001175config BR2_PACKAGE_KOBS_NG
1176 bool "kobs-ng was replaced by imx-kobs"
1177 select BR2_LEGACY
1178 select BR2_PACKAGE_IMX_KOBS
1179 help
1180 The outdated kobs-ng has been replaced by the Freescale-
1181 maintained imx-kobs package.
1182
Thomas Petazzoni11573f52015-09-02 00:01:11 +02001183config BR2_PACKAGE_SAWMAN
1184 bool "sawman package removed"
1185 select BR2_LEGACY
1186 select BR2_PACKAGE_DIRECTFB_SAWMAN
1187 help
1188 This option has been removed because the sawman package no
1189 longer exists: it was merged inside DirectFB itself. This
1190 feature can now be enabled using the
1191 BR2_PACKAGE_DIRECTFB_SAWMAN option.
1192
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001193config BR2_PACKAGE_DIVINE
1194 bool "divine package removed"
1195 select BR2_LEGACY
1196 select BR2_PACKAGE_DIRECTFB_DIVINE
1197 help
1198 This option has been removed because the divine package no
1199 longer exists: it was merged inside DirectFB itself. This
1200 feature can now be enabled using the
1201 BR2_PACKAGE_DIRECTFB_DIVINE option.
1202
1203###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001204comment "Legacy options removed in 2015.08"
1205
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001206config BR2_PACKAGE_KODI_PVR_ADDONS
1207 bool "Kodi PVR addon was split"
1208 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02001209 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02001210 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02001211 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02001212 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02001213 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02001214 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02001215 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02001216 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02001217 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02001218 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02001219 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02001220 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02001221 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02001222 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02001223 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02001224 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001225 help
1226 Kodi PVR addon was split into seperate modules
1227
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001228config BR2_BINUTILS_VERSION_2_23_2
1229 bool "binutils 2.23 option renamed"
1230 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001231 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001232 Binutils 2.23.2 has been removed, using a newer version is
1233 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001234
1235config BR2_BINUTILS_VERSION_2_24
1236 bool "binutils 2.24 option renamed"
1237 select BR2_LEGACY
1238 select BR2_BINUTILS_VERSION_2_24_X
1239 help
1240 The binutils version option has been renamed to match the
1241 same patchlevel logic used by gcc. The new option is now
1242 BR2_BINUTILS_VERSION_2_24_X.
1243
1244config BR2_BINUTILS_VERSION_2_25
1245 bool "binutils 2.25 option renamed"
1246 select BR2_LEGACY
1247 select BR2_BINUTILS_VERSION_2_25_X
1248 help
1249 The binutils version option has been renamed to match the
1250 same patchlevel logic used by gcc. The new option is now
1251 BR2_BINUTILS_VERSION_2_25_X.
1252
Romain Naour1326e762015-07-14 19:35:14 +02001253config BR2_PACKAGE_PERF
1254 bool "perf option has been renamed"
1255 select BR2_LEGACY
1256 select BR2_LINUX_KERNEL_TOOL_PERF
1257 help
1258 The perf package has been moved as a Linux tools package,
1259 and the option to enable it is now
1260 BR2_LINUX_KERNEL_TOOL_PERF.
1261
Thomas Petazzoni2f845952015-07-11 14:52:53 +02001262config BR2_BINUTILS_VERSION_2_22
1263 bool "binutils 2.22 removed"
1264 select BR2_LEGACY
1265 help
1266 Binutils 2.22 has been removed, using a newer version is
1267 recommended.
1268
Gary Bisson4c0613e2015-05-26 10:19:37 +02001269config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1270 bool "gpu-viv-bin-mx6q"
1271 select BR2_LEGACY
1272 select BR2_PACKAGE_IMX_GPU_VIV
1273 help
1274 Vivante graphics libraries have been renamed to
1275 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1276 name.
1277
Matt Weber7742abe2015-06-02 08:28:35 -05001278config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
1279 depends on BR2_PACKAGE_PYTHON
1280 bool "libsemanage python bindings removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001281 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05001282 help
1283 This option has been removed, since the libsemanage Python
1284 bindings on the target were not useful.
1285
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001286config BR2_TARGET_UBOOT_NETWORK
1287 bool "U-Boot custom network settings removed"
1288 select BR2_LEGACY
1289 help
1290 U-Boot's custom network settings options have been removed.
1291
1292###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001293comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001294
Michał Leśniewskie3904a82015-05-19 20:26:30 +02001295config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1296 bool "jffs2 16kB erasesize NAND flash option renamed"
1297 select BR2_LEGACY
1298 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1299 help
1300 The JFFS2 NAND flash options now longer include the page
1301 size.
1302
1303config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1304 bool "jffs2 128kB erasesize NAND flash option renamed"
1305 select BR2_LEGACY
1306 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
1307 help
1308 The JFFS2 NAND flash options now longer include the page
1309 size.
1310
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02001311config BR2_PACKAGE_MONO_20
1312 bool "2.0/3.5 .Net Runtime"
1313 select BR2_LEGACY
1314 help
1315 This option no longer exists, all versions of the .Net
1316 runtime are now installed.
1317
1318config BR2_PACKAGE_MONO_40
1319 bool "4.0 .Net Runtime"
1320 select BR2_LEGACY
1321 help
1322 This option no longer exists, all versions of the .Net
1323 runtime are now installed.
1324
1325config BR2_PACKAGE_MONO_45
1326 bool "4.5 .Net Runtime"
1327 select BR2_LEGACY
1328 help
1329 This option no longer exists, all versions of the .Net
1330 runtime are now installed.
1331
Peter Korsgaardefd49e32015-04-27 22:29:05 +02001332config BR2_CIVETWEB_WITH_LUA
1333 bool "civetweb lua option renamed"
1334 select BR2_LEGACY
1335 select BR2_PACKAGE_CIVETWEB_WITH_LUA
1336 help
1337 civetweb's lua option has been renamed to
1338 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
1339 packages name options.
1340
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02001341config BR2_PACKAGE_TIFF_TIFF2PDF
1342 bool "tiff utility-specific option removed"
1343 select BR2_LEGACY
1344 select BR2_PACKAGE_TIFF_UTILITIES
1345 help
1346 utility-specific options have been removed in favour of
1347 the new option BR2_PACKAGE_TIFF_UTILITIES.
1348
1349config BR2_PACKAGE_TIFF_TIFFCP
1350 bool "tiff utility-specific option removed"
1351 select BR2_LEGACY
1352 select BR2_PACKAGE_TIFF_UTILITIES
1353 help
1354 utility-specific options have been removed in favour of
1355 the new option BR2_PACKAGE_TIFF_UTILITIES.
1356
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001357config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
1358 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001359 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001360 help
1361 This option has never worked, so it has been removed.
1362
Yann E. MORIN02917962015-03-24 19:54:15 +01001363config BR2_TARGET_GENERIC_PASSWD_DES
1364 bool "Encoding passwords with DES has been removed"
1365 select BR2_LEGACY
1366 help
1367 Paswords can now only be encoded with either of md5, sha256 or sha512.
1368 The default is md5, which is stronger that DES (but still pretty weak).
1369
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03001370config BR2_PACKAGE_GTK2_THEME_HICOLOR
1371 bool "hicolor (default theme) is a duplicate"
1372 select BR2_LEGACY
1373 select BR2_PACKAGE_HICOLOR_ICON_THEME
1374 help
1375 The option was just a duplicate of hicolor icon theme.
1376
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001377config BR2_PACKAGE_VALGRIND_PTRCHECK
1378 bool "valgrind's PTRCheck was renamed to SGCheck"
1379 select BR2_LEGACY
1380 select BR2_PACKAGE_VALGRIND_SGCHECK
1381 help
1382 PTRCheck was renamed to SGCheck in valgrind
1383
1384###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001385comment "Legacy options removed in 2015.02"
1386
Pedro Aguilar10900c02015-02-27 06:38:07 +02001387config BR2_PACKAGE_LIBGC
1388 bool "libgc package removed"
1389 select BR2_LEGACY
1390 select BR2_PACKAGE_BDWGC
1391 help
1392 libgc has been removed because we have the same package under a
1393 different name, bdwgc.
1394
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01001395config BR2_PACKAGE_WDCTL
1396 bool "util-linux' wdctl option has been renamed"
1397 select BR2_LEGACY
1398 select BR2_PACKAGE_UTIL_LINUX_WDCTL
1399 help
1400 util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
1401 to be aligned with how the other options are named.
1402
Danomi Manchegoe44edb82015-07-13 22:57:06 -04001403config BR2_PACKAGE_UTIL_LINUX_ARCH
1404 bool "util-linux' arch option has been removed"
1405 select BR2_LEGACY
1406 help
1407 util-linux' arch was dropped in util-linux 2.23, in favor of
1408 the coreutils version.
1409
1410config BR2_PACKAGE_UTIL_LINUX_DDATE
1411 bool "util-linux' ddate option has been removed"
1412 select BR2_LEGACY
1413 help
1414 util-linux' ddate was dropped in util-linux 2.23.
1415
Romain Naour3c476542015-01-18 20:53:08 +01001416config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
1417 bool "rpm's bzip2 payloads option has been removed"
1418 select BR2_LEGACY
1419 select BR2_PACKAGE_BZIP2
1420 help
1421 The bzip2 payloads option rely entirely on the dependant package bzip2.
1422 So, you need to select it to enable this feature.
1423
1424config BR2_PACKAGE_RPM_XZ_PAYLOADS
1425 bool "rpm's xz payloads option has been removed"
1426 select BR2_LEGACY
1427 select BR2_PACKAGE_XZ
1428 help
1429 The xz payloads option rely entirely on the dependant package xz.
1430 So, you need to select it to enable this feature.
1431
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03001432config BR2_PACKAGE_M4
1433 bool "m4 target package removed"
1434 select BR2_LEGACY
1435 help
1436 The m4 target package has been removed, it's been
1437 deprecated for some time now.
1438
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03001439config BR2_PACKAGE_FLEX_BINARY
1440 bool "flex binary in target option removed"
1441 select BR2_LEGACY
1442 help
1443 The flex binary in the target option has been removed.
1444 It's been deprecated for some time now and is essentially a
1445 development tool which isn't very useful in the target.
1446
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03001447config BR2_PACKAGE_BISON
1448 bool "bison target package removed"
1449 select BR2_LEGACY
1450 help
1451 The bison target package has been removed, it's been
1452 deprecated for some time now and is essentially a development
1453 tool which isn't very useful in the target.
1454
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03001455config BR2_PACKAGE_GOB2
1456 bool "gob2 target package removed"
1457 select BR2_LEGACY
1458 help
1459 The gob2 target package has been removed, it's been
1460 deprecated for some time now and was essentially useless
1461 without a target toolchain.
1462
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03001463config BR2_PACKAGE_DISTCC
1464 bool "distcc target package removed"
1465 select BR2_LEGACY
1466 help
1467 The distcc target package has been removed, it's been
1468 deprecated for some time now and was essentially useless
1469 without a target toolchain.
1470
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03001471config BR2_PACKAGE_HASERL_VERSION_0_8_X
1472 bool "haserl 0.8.x version removed"
1473 select BR2_LEGACY
1474 help
1475 The 0.8.x version option for haserl has been removed since it
1476 has been deprecated for some time now.
1477 You should be able to use the 0.9.x version without issues.
1478
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03001479config BR2_PACKAGE_STRONGSWAN_TOOLS
1480 bool "strongswan option has been removed"
1481 select BR2_LEGACY
1482 select BR2_PACKAGE_STRONGSWAN_PKI
1483 select BR2_PACKAGE_STRONGSWAN_SCEP
1484 help
1485 The tools option has been removed upstream and the different tools
1486 have been split between the pki and scep options, with others
1487 deprecated.
1488
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001489config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001490 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001491 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001492 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001493 According to the github project page:
1494 https://github.com/pipelka/xbmc-addon-xvdr
1495 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001496
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01001497config BR2_PACKAGE_XBMC_PVR_ADDONS
1498 bool "xbmc options have been renamed"
1499 select BR2_LEGACY
1500 select BR2_PACKAGE_KODI_PVR_ADDONS
1501 help
1502 The XBMC media center project was renamed to Kodi entertainment center
1503
Bernd Kuhls35784592014-12-23 18:46:27 +01001504config BR2_PACKAGE_XBMC
1505 bool "xbmc options have been renamed"
1506 select BR2_LEGACY
1507 select BR2_PACKAGE_KODI
1508 help
1509 The XBMC media center project was renamed to Kodi entertainment center
1510
1511config BR2_PACKAGE_XBMC_ALSA_LIB
1512 bool "xbmc options have been renamed"
1513 select BR2_LEGACY
1514 select BR2_PACKAGE_KODI_ALSA_LIB
1515 help
1516 The XBMC media center project was renamed to Kodi entertainment center
1517
1518config BR2_PACKAGE_XBMC_AVAHI
1519 bool "xbmc options have been renamed"
1520 select BR2_LEGACY
1521 select BR2_PACKAGE_KODI_AVAHI
1522 help
1523 The XBMC media center project was renamed to Kodi entertainment center
1524
1525config BR2_PACKAGE_XBMC_DBUS
1526 bool "xbmc options have been renamed"
1527 select BR2_LEGACY
1528 select BR2_PACKAGE_KODI_DBUS
1529 help
1530 The XBMC media center project was renamed to Kodi entertainment center
1531
1532config BR2_PACKAGE_XBMC_LIBBLURAY
1533 bool "xbmc options have been renamed"
1534 select BR2_LEGACY
1535 select BR2_PACKAGE_KODI_LIBBLURAY
1536 help
1537 The XBMC media center project was renamed to Kodi entertainment center
1538
1539config BR2_PACKAGE_XBMC_GOOM
1540 bool "xbmc options have been renamed"
1541 select BR2_LEGACY
1542 select BR2_PACKAGE_KODI_GOOM
1543 help
1544 The XBMC media center project was renamed to Kodi entertainment center
1545
1546config BR2_PACKAGE_XBMC_RSXS
1547 bool "xbmc options have been renamed"
1548 select BR2_LEGACY
1549 select BR2_PACKAGE_KODI_RSXS
1550 help
1551 The XBMC media center project was renamed to Kodi entertainment center
1552
1553config BR2_PACKAGE_XBMC_LIBCEC
1554 bool "xbmc options have been renamed"
1555 select BR2_LEGACY
1556 select BR2_PACKAGE_KODI_LIBCEC
1557 help
1558 The XBMC media center project was renamed to Kodi entertainment center
1559
1560config BR2_PACKAGE_XBMC_LIBMICROHTTPD
1561 bool "xbmc options have been renamed"
1562 select BR2_LEGACY
1563 select BR2_PACKAGE_KODI_LIBMICROHTTPD
1564 help
1565 The XBMC media center project was renamed to Kodi entertainment center
1566
1567config BR2_PACKAGE_XBMC_LIBNFS
1568 bool "xbmc options have been renamed"
1569 select BR2_LEGACY
1570 select BR2_PACKAGE_KODI_LIBNFS
1571 help
1572 The XBMC media center project was renamed to Kodi entertainment center
1573
1574config BR2_PACKAGE_XBMC_RTMPDUMP
1575 bool "xbmc options have been renamed"
1576 select BR2_LEGACY
1577 select BR2_PACKAGE_KODI_RTMPDUMP
1578 help
1579 The XBMC media center project was renamed to Kodi entertainment center
1580
1581config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
1582 bool "xbmc options have been renamed"
1583 select BR2_LEGACY
1584 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
1585 help
1586 The XBMC media center project was renamed to Kodi entertainment center
1587
1588config BR2_PACKAGE_XBMC_LIBSMBCLIENT
1589 bool "xbmc options have been renamed"
1590 select BR2_LEGACY
1591 select BR2_PACKAGE_KODI_LIBSMBCLIENT
1592 help
1593 The XBMC media center project was renamed to Kodi entertainment center
1594
1595config BR2_PACKAGE_XBMC_LIBTHEORA
1596 bool "xbmc options have been renamed"
1597 select BR2_LEGACY
1598 select BR2_PACKAGE_KODI_LIBTHEORA
1599 help
1600 The XBMC media center project was renamed to Kodi entertainment center
1601
1602config BR2_PACKAGE_XBMC_LIBUSB
1603 bool "xbmc options have been renamed"
1604 select BR2_LEGACY
1605 select BR2_PACKAGE_KODI_LIBUSB
1606 help
1607 The XBMC media center project was renamed to Kodi entertainment center
1608
1609config BR2_PACKAGE_XBMC_LIBVA
1610 bool "xbmc options have been renamed"
1611 select BR2_LEGACY
1612 select BR2_PACKAGE_KODI_LIBVA
1613 help
1614 The XBMC media center project was renamed to Kodi entertainment center
1615
1616config BR2_PACKAGE_XBMC_WAVPACK
1617 bool "xbmc options have been renamed"
1618 select BR2_LEGACY
1619 select BR2_PACKAGE_KODI_WAVPACK
1620 help
1621 The XBMC media center project was renamed to Kodi entertainment center
1622
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001623config BR2_PREFER_STATIC_LIB
1624 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01001625 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001626 help
1627 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
1628 highlights the fact that the option no longer "prefers"
1629 static libraries, but "enforces" static libraries (i.e
1630 shared libraries are completely unused).
1631
Samuel Martina44b1c12014-12-14 17:24:24 +01001632 Take care of updating the type of libraries you want under the
1633 "Build options" menu.
1634
Bernd Kuhls35784592014-12-23 18:46:27 +01001635###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02001636comment "Legacy options removed in 2014.11"
1637
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001638config BR2_x86_generic
1639 bool "x86 generic variant has been removed"
1640 select BR2_LEGACY
1641 help
1642 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02001643 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001644
Andreas Larsson40e18f22014-10-30 09:29:36 +01001645config BR2_GCC_VERSION_4_4_X
1646 bool "gcc 4.4.x has been removed"
1647 select BR2_LEGACY
1648 help
1649 The 4.4.x version of gcc has been removed. Use a newer
1650 version instead.
1651
Andreas Larsson43b78e72014-10-30 09:29:35 +01001652config BR2_sparc_sparchfleon
1653 bool "sparchfleon CPU has been removed"
1654 select BR2_LEGACY
1655 help
1656 The sparchfleon CPU was only supported in a patched gcc 4.4
1657 version. Its support has been removed in favor of the leon3
1658 CPU starting from gcc 4.8.x.
1659
1660config BR2_sparc_sparchfleonv8
1661 bool "sparchfleonv8 CPU has been removed"
1662 select BR2_LEGACY
1663 help
1664 The sparchfleonv8 CPU was only supported in a patched gcc
1665 4.4 version. Its support has been removed in favor of the
1666 leon3 CPU starting from gcc 4.8.x.
1667
1668config BR2_sparc_sparcsfleon
1669 bool "sparcsfleon CPU has been removed"
1670 select BR2_LEGACY
1671 help
1672 The sparcsfleon CPU was only supported in a patched gcc 4.4
1673 version. Its support has been removed in favor of the leon3
1674 CPU starting from gcc 4.8.x.
1675
1676config BR2_sparc_sparcsfleonv8
1677 bool "sparcsfleonv8 CPU has been removed"
1678 select BR2_LEGACY
1679 help
1680 The sparcsfleonv8 CPU was only supported in a patched gcc
1681 4.4 version. Its support has been removed in favor of the
1682 leon3 CPU starting from gcc 4.8.x.
1683
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02001684config BR2_PACKAGE_XLIB_LIBPCIACCESS
1685 bool "xlib-libpciaccess option has been renamed"
1686 depends on BR2_PACKAGE_XORG7
1687 select BR2_LEGACY
1688 select BR2_PACKAGE_LIBPCIACCESS
1689 help
1690 libpciaccess neither depends on X11 nor Xlib. Thus the
1691 package has been renamed BR2_PACKAGE_LIBPCIACCESS
1692
Yann E. MORINb581bba2014-09-21 20:38:13 +02001693config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
1694 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001695 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02001696 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
1697 help
1698 The Xceive xc5000 option now also handles older firmwares from
1699 Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
1700 from Cresta, who bought Xceive.
1701
Yann E. MORINdac546e2014-09-21 20:38:12 +02001702config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1703 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001704 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02001705 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1706 help
1707 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1708 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1709 to better account for the fact that a T5 variant exists.
1710
Yann E. MORIN120136e2014-09-21 20:38:09 +02001711config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
1712 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001713 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02001714 help
1715 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
1716 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
1717 select it in:
1718 Target packages -> Hardware handling ->
1719 Firmware -> linux-firmware -> WiFi firmware ->
1720 iwlwifi 3160/726x revision to use (revision 7)
1721
1722config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
1723 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001724 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02001725 help
1726 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
1727 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
1728 select it in:
1729 Target packages -> Hardware handling ->
1730 Firmware -> linux-firmware -> WiFi firmware ->
1731 iwlwifi 3160/726x revision to use (revision 8)
1732
1733###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001734comment "Legacy options removed in 2014.08"
1735
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02001736config BR2_PACKAGE_LIBELF
1737 bool "libelf has been removed"
1738 select BR2_PACKAGE_ELFUTILS
1739 select BR2_LEGACY
1740 help
1741 The libelf package provided an old version of the libelf library
1742 and is deprecated. The libelf library is now provided by the
1743 elfutils package.
1744
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001745config BR2_KERNEL_HEADERS_3_8
1746 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001747 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001748 select BR2_LEGACY
1749 help
1750 Version 3.8.x of the Linux kernel headers have been deprecated
1751 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001752 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001753 automatically selected in your configuration.
1754
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02001755config BR2_PACKAGE_GETTEXT_TOOLS
1756 bool "support for gettext-tools on target has been removed"
1757 select BR2_LEGACY
1758 help
1759 The option to install the gettext utilities on the target
1760 has been removed. This is not necessary as Buildroot is not
1761 designed to provide a full development environment on the
1762 target. gettext tools should be used on the build machine
1763 instead.
1764
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001765config BR2_PACKAGE_PROCPS
1766 bool "procps has been replaced by procps-ng"
1767 select BR2_PACKAGE_PROCPS_NG
1768 select BR2_LEGACY
1769 help
1770 The procps package has been replaced by the equivalent procps-ng.
1771
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02001772config BR2_BINUTILS_VERSION_2_20_1
1773 bool "binutils 2.20.1 has been removed"
1774 select BR2_LEGACY
1775 help
1776 The 2.20.1 version of binutils has been removed. Use a newer
1777 version instead.
1778
1779config BR2_BINUTILS_VERSION_2_21
1780 bool "binutils 2.21 has been removed"
1781 select BR2_LEGACY
1782 help
1783 The 2.21 version of binutils has been removed. Use a newer
1784 version instead.
1785
1786config BR2_BINUTILS_VERSION_2_23_1
1787 bool "binutils 2.23.1 has been removed"
1788 select BR2_LEGACY
1789 help
1790 The 2.23.1 version of binutils has been removed. Use a newer
1791 version instead.
1792
Thomas Petazzoni506b9642014-07-01 20:03:03 +02001793config BR2_UCLIBC_VERSION_0_9_32
1794 bool "uclibc 0.9.32 has been removed"
1795 select BR2_LEGACY
1796 help
1797 The 0.9.32 version of uClibc has been removed. Use a newer
1798 version instead.
1799
Thomas Petazzonid10e0802014-07-01 20:03:06 +02001800config BR2_GCC_VERSION_4_3_X
1801 bool "gcc 4.3.x has been removed"
1802 select BR2_LEGACY
1803 help
1804 The 4.3.x version of gcc has been removed. Use a newer
1805 version instead.
1806
1807config BR2_GCC_VERSION_4_6_X
1808 bool "gcc 4.6.x has been removed"
1809 select BR2_LEGACY
1810 help
1811 The 4.6.x version of gcc has been removed. Use a newer
1812 version instead.
1813
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02001814config BR2_GDB_VERSION_7_4
1815 bool "gdb 7.4 has been removed"
1816 select BR2_LEGACY
1817 help
1818 The 7.4 version of gdb has been removed. Use a newer version
1819 instead.
1820
1821config BR2_GDB_VERSION_7_5
1822 bool "gdb 7.5 has been removed"
1823 select BR2_LEGACY
1824 help
1825 The 7.5 version of gdb has been removed. Use a newer version
1826 instead.
1827
Thomas Petazzonib18dca02014-07-01 20:03:09 +02001828config BR2_BUSYBOX_VERSION_1_19_X
1829 bool "busybox version selection has been removed"
1830 select BR2_LEGACY
1831 help
1832 The possibility of selecting the Busybox version has been
1833 removed. Use the latest version provided by the Busybox
1834 package instead.
1835
1836config BR2_BUSYBOX_VERSION_1_20_X
1837 bool "busybox version selection has been removed"
1838 select BR2_LEGACY
1839 help
1840 The possibility of selecting the Busybox version has been
1841 removed. Use the latest version provided by the Busybox
1842 package instead.
1843
1844config BR2_BUSYBOX_VERSION_1_21_X
1845 bool "busybox version selection has been removed"
1846 select BR2_LEGACY
1847 help
1848 The possibility of selecting the Busybox version has been
1849 removed. Use the latest version provided by the Busybox
1850 package instead.
1851
Ezequiel García07ac0452014-07-05 18:07:40 -03001852config BR2_PACKAGE_LIBV4L_DECODE_TM6000
1853 bool "decode_tm6000"
1854 select BR2_PACKAGE_LIBV4L_UTILS
1855 select BR2_LEGACY
1856 help
1857 This libv4l option has been deprecated and replaced by a single
1858 option to build all the libv4l utilities.
1859
1860config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
1861 bool "ir-keytable"
1862 select BR2_PACKAGE_LIBV4L_UTILS
1863 select BR2_LEGACY
1864 help
1865 This libv4l option has been deprecated and replaced by a single
1866 option to build all the libv4l utilities.
1867
1868config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
1869 bool "v4l2-compliance"
1870 select BR2_PACKAGE_LIBV4L_UTILS
1871 select BR2_LEGACY
1872 help
1873 This libv4l option has been deprecated and replaced by a single
1874 option to build all the libv4l utilities.
1875
1876config BR2_PACKAGE_LIBV4L_V4L2_CTL
1877 bool "v4l2-ctl"
1878 select BR2_PACKAGE_LIBV4L_UTILS
1879 select BR2_LEGACY
1880 help
1881 This libv4l option has been deprecated and replaced by a single
1882 option to build all the libv4l utilities.
1883
1884config BR2_PACKAGE_LIBV4L_V4L2_DBG
1885 bool "v4l2-dbg"
1886 select BR2_PACKAGE_LIBV4L_UTILS
1887 select BR2_LEGACY
1888 help
1889 This libv4l option has been deprecated and replaced by a single
1890 option to build all the libv4l utilities.
1891
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001892###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001893comment "Legacy options removed in 2014.05"
1894
Peter Seiderer4990a382014-04-23 00:12:23 +02001895config BR2_PACKAGE_EVTEST_CAPTURE
1896 bool "evtest-capture support removed (dropped since evtest 1.31)"
1897 select BR2_LEGACY
1898 help
1899 Support for evtest-capture has been removed (dropped from
1900 evtest package since version 1.31), use evemu package
1901 instead.
1902
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001903config BR2_KERNEL_HEADERS_3_6
1904 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001905 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001906 select BR2_LEGACY
1907 help
1908 Version 3.6.x of the Linux kernel headers have been deprecated
1909 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001910 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001911 automatically selected in your configuration.
1912
1913config BR2_KERNEL_HEADERS_3_7
1914 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001915 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001916 select BR2_LEGACY
1917 help
1918 Version 3.7.x of the Linux kernel headers have been deprecated
1919 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001920 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001921 automatically selected in your configuration.
1922
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02001923config BR2_PACKAGE_VALA
1924 bool "vala target package has been removed"
1925 select BR2_LEGACY
1926 help
1927 The 'vala' target package has been removed since it has been
1928 deprecated for more than four buildroot releases.
1929 Note: the host vala package still exists.
1930
Yann E. MORINd6a37912014-04-07 21:58:03 +02001931config BR2_TARGET_TZ_ZONELIST
1932 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
1933
1934config BR2_PACKAGE_TZDATA_ZONELIST
1935 string "tzdata: the timezone list option has been renamed"
1936 help
1937 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
1938 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
1939 menu. You'll need to select BR2_TARGET_TZ_INFO.
1940
1941config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
1942 bool
1943 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
1944 select BR2_LEGACY
1945
Yann E. MORINc97aeb72014-04-05 17:21:43 +02001946config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
1947 bool "Lua command-line editing none has been renamed"
1948 select BR2_LEGACY
1949 help
1950 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
1951 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
1952 it in the corresponding choice.
1953
1954config BR2_PACKAGE_LUA_INTERPRETER_READLINE
1955 bool "Lua command-line editing using readline has been renamed"
1956 select BR2_LEGACY
1957 help
1958 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
1959 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
1960 it in the corresponding choice.
1961
1962config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
1963 bool "Lua command-line editing using linenoise has been renamed"
1964 select BR2_LEGACY
1965 help
1966 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
1967 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
1968 it in the corresponding choice.
1969
Yann E. MORIN365ae612014-03-28 01:00:24 +01001970config BR2_PACKAGE_DVB_APPS_UTILS
1971 bool "dvb-apps utilities now built by default"
1972 select BR2_LEGACY
1973 help
1974 The dvb-apps utilities are now always built when the dvb-apps
1975 package is selected.
1976
Yann E. MORIN971e3312014-03-01 15:52:56 +01001977config BR2_KERNEL_HEADERS_SNAP
1978 bool "Local Linux snapshot support removed"
1979 select BR2_LEGACY
1980 help
1981 Support for using a custom snapshot to install the Linux
1982 kernel headers has been removed.
1983
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001984config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
1985 bool "/dev management by udev removed"
1986 select BR2_LEGACY
1987 help
1988 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001989 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001990
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001991 Therefore, if you are not using 'systemd' as init system, you
1992 must choose 'Dynamic using eudev' in the '/dev management'
1993 menu to get the same behaviour as in your old configuration.
1994
1995 If you are using 'systemd', its internal implementation of
1996 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001997
1998 You must also check the packages depending on 'udev' are still
1999 selected.
2000
2001config BR2_PACKAGE_UDEV
2002 bool "udev is now a virtual package"
2003 select BR2_LEGACY
2004 select BR2_PACKAGE_HAS_UDEV
2005 help
2006 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002007 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002008
2009 Your old configuration refers to packages depending on 'udev',
2010 either for build or at runtime.
2011
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002012 Check that a 'udev' provider is selected. If you are not using
2013 'systemd' as init system, 'eudev' should be selected, which is
2014 the case if '/dev management' is set to 'Dynamic using eudev'.
2015
2016 If you are using 'systemd', its internal implementation of 'udev'
2017 is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002018
2019config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002020 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002021 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002022 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
2023 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002024 help
2025 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002026 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002027
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002028 If you are not using 'systemd' as init system, udev rules
2029 generation will be handled by 'eudev'. Check that
2030 '/dev management' is set to 'Dynamic using eudev' to get
2031 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002032
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002033 If you are using 'systemd', it internal implementation of 'udev'
2034 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002035
2036config BR2_PACKAGE_UDEV_ALL_EXTRAS
2037 bool "udev extras removed"
2038 select BR2_LEGACY
2039 help
2040 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01002041 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002042
2043 The option to enable the extra features of 'udev' (gudev, ...)
2044 has been removed. These features are automatically enabled in
2045 the 'udev' providers if the dependencies are selected. For
2046 example, selecting 'libglib2' will trigger the build of gudev.
2047
Bernd Kuhls5562be12014-03-01 16:41:10 +01002048config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
2049 bool "xlib-libpthread-stubs option has been renamed"
2050 depends on BR2_PACKAGE_XORG7
2051 select BR2_LEGACY
2052 select BR2_PACKAGE_LIBPTHREAD_STUBS
2053 help
2054 The pthread stubs neither depend on X11 nor Xlib. Thus the
2055 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
2056
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01002057###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01002058comment "Legacy options removed in 2014.02"
2059
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002060config BR2_sh2
2061 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002062 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002063 help
2064 Due to an inexistent user base and generally poor Linux
2065 support, the support for the SH2 architecture was removed.
2066
2067config BR2_sh3
2068 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002069 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002070 help
2071 Due to an inexistent user base and generally poor Linux
2072 support, the support for the SH3 architecture was removed.
2073
2074config BR2_sh3eb
2075 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002076 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01002077 help
2078 Due to an inexistent user base and generally poor Linux
2079 support, the support for the SH3eb architecture was removed.
2080
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002081config BR2_KERNEL_HEADERS_3_1
2082 bool "kernel headers version 3.1.x are no longer supported"
2083 select BR2_KERNEL_HEADERS_3_2
2084 select BR2_LEGACY
2085 help
2086 Version 3.1.x of the Linux kernel headers have been deprecated
2087 for more than four buildroot releases and are now removed.
2088 As an alternative, version 3.2.x of the headers have been
2089 automatically selected in your configuration.
2090
2091config BR2_KERNEL_HEADERS_3_3
2092 bool "kernel headers version 3.3.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002093 select BR2_KERNEL_HEADERS_3_2
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002094 select BR2_LEGACY
2095 help
2096 Version 3.3.x of the Linux kernel headers have been deprecated
2097 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002098 As an alternative, version 3.2.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002099 automatically selected in your configuration.
2100
2101config BR2_KERNEL_HEADERS_3_5
2102 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002103 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002104 select BR2_LEGACY
2105 help
2106 Version 3.5.x of the Linux kernel headers have been deprecated
2107 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002108 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01002109 automatically selected in your configuration.
2110
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002111config BR2_GDB_VERSION_7_2
2112 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002113 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002114 select BR2_LEGACY
2115 help
2116 Version 7.2.x of gdb has been deprecated for more than four
2117 buildroot releases and is now removed. As an alternative, gdb
2118 7.5.x has been automatically selected in your configuration.
2119
2120config BR2_GDB_VERSION_7_3
2121 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02002122 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01002123 select BR2_LEGACY
2124 help
2125 Version 7.3.x of gdb has been deprecated for more than four
2126 buildroot releases and is now removed. As an alternative, gdb
2127 7.5.x has been automatically selected in your configuration.
2128
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01002129config BR2_PACKAGE_CCACHE
2130 bool "ccache target package has been removed"
2131 select BR2_LEGACY
2132 help
2133 The 'ccache' target package has been removed since it has been
2134 deprecated for more than four buildroot releases.
2135 Note: using ccache for speeding up builds is still supported.
2136
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01002137config BR2_HAVE_DOCUMENTATION
2138 bool "support for documentation on target has been removed"
2139 select BR2_LEGACY
2140 help
2141 Support for documentation on target has been removed since it has
2142 been deprecated for more than four buildroot releases.
2143
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01002144config BR2_PACKAGE_AUTOMAKE
2145 bool "automake target package has been removed"
2146 select BR2_LEGACY
2147 help
2148 The 'automake' target package has been removed since it has been
2149 deprecated for more than four buildroot releases.
2150 Note: the host automake still exists.
2151
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01002152config BR2_PACKAGE_AUTOCONF
2153 bool "autoconf target package has been removed"
2154 select BR2_LEGACY
2155 help
2156 The 'autoconf' target package has been removed since it has been
2157 deprecated for more than four buildroot releases.
2158 Note: the host autoconf still exists.
2159
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01002160config BR2_PACKAGE_XSTROKE
2161 bool "xstroke has been removed"
2162 select BR2_LEGACY
2163 help
2164 The 'xstroke' package has been removed since it has been
2165 deprecated for more than four buildroot releases.
2166
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01002167config BR2_PACKAGE_LZMA
2168 bool "lzma target package has been removed"
2169 select BR2_LEGACY
2170 help
2171 The 'lzma' target package has been removed since it has been
2172 deprecated for more than four buildroot releases.
2173 Note: generating lzma-compressed rootfs images is still supported.
2174
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01002175config BR2_PACKAGE_TTCP
2176 bool "ttcp has been removed"
2177 select BR2_LEGACY
2178 help
2179 The 'ttcp' package has been removed since it has been
2180 deprecated for more than four buildroot releases.
2181
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002182config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002183 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002184 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002185 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002186 help
2187 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002188 to 'libllcp'. We have added a new package for 'libllcp' and bumped
2189 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002190
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00002191config BR2_PACKAGE_MYSQL_CLIENT
2192 bool "MySQL client renamed to MySQL"
2193 select BR2_LEGACY
2194 select BR2_PACKAGE_MYSQL
2195 help
2196 The option has been renamed BR2_PACKAGE_MYSQL
2197
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01002198config BR2_PACKAGE_SQUASHFS3
2199 bool "squashfs3 has been removed"
2200 select BR2_LEGACY
2201 select BR2_PACKAGE_SQUASHFS
2202 help
2203 The 'squashfs3' package has been removed since it has been
2204 deprecated for more than four buildroot releases. Package
2205 'squashfs' (4) has been selected automatically as replacement.
2206
2207config BR2_TARGET_ROOTFS_SQUASHFS3
2208 bool "squashfs3 rootfs support has been removed"
2209 select BR2_LEGACY
2210 help
2211 Together with the removal of the squashfs3 package, support
2212 for squashfs3 root filesystems has been removed too. Squashfs
2213 root filesystems will automatically use squashfs4 now.
2214
Arnaud Aujon560fe852013-12-15 20:23:12 +01002215config BR2_PACKAGE_NETKITBASE
2216 bool "netkitbase has been removed"
2217 select BR2_LEGACY
2218 help
2219 The 'netkitbase' package has been removed since it has been
2220 deprecated since 2012.11. This package provided 'inetd'
2221 which is replaced by 'xinet' and 'ping' which is replaced by
2222 'busybox' or 'fping'.
2223
2224config BR2_PACKAGE_NETKITTELNET
2225 bool "netkittelnet has been removed"
2226 select BR2_LEGACY
2227 help
2228 The 'netkittelnet' package has been removed since it has
2229 been deprecated since 2012.11. 'busybox' provides a telnet
2230 client and should be used instead.
2231
Francois Perrad63058f82014-01-11 16:42:09 +01002232config BR2_PACKAGE_LUASQL
2233 bool "luasql has been replaced by luasql-sqlite3"
2234 select BR2_PACKAGE_LUASQL_SQLITE3
2235 select BR2_LEGACY
2236 help
2237 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2238
Francois Perrada6c53472014-01-11 16:42:08 +01002239config BR2_PACKAGE_LUACJSON
2240 bool "luacjson has been replaced by lua-cjson"
2241 select BR2_PACKAGE_LUA_CJSON
2242 select BR2_LEGACY
2243 help
2244 The option has been renamed BR2_PACKAGE_LUA_CJSON.
2245
Arnaud Aujon560fe852013-12-15 20:23:12 +01002246###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002247comment "Legacy options removed in 2013.11"
2248
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01002249config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2250 bool "lvm2's 'dmsetup only' option removed"
2251 select BR2_LEGACY
2252 help
2253 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2254 led to problems with other packages that need the full lvm2
2255 suite. Therefore, the option has been replaced with the positive
2256 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2257
2258# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2259# in order to automatically propagate old configs
2260
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01002261config BR2_PACKAGE_QT_JAVASCRIPTCORE
2262 bool "qt javascriptcore option removed"
2263 select BR2_LEGACY
2264 help
2265 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2266 force the activation or disabling of the JIT compiler in the
2267 Qt Javascript interpreter. However, the JIT compiler is not
2268 available for all architectures, so forcing its activation
2269 does not always work. Moreover, Qt knows by itself for which
2270 architectures JIT support is possible, and will
2271 automatically enable it if possible.
2272
2273 Therefore, this option was in fact useless, and causing
2274 build problems when enabled on architectures for which the
2275 JIT support was not available. It has been removed, and
2276 there is no replacement: Qt will enable JIT at compile time
2277 when possible.
2278
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002279config BR2_PACKAGE_MODULE_INIT_TOOLS
2280 bool "module-init-tools replaced by kmod"
2281 select BR2_PACKAGE_KMOD
2282 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01002283 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002284 help
2285 The 'module-init-tools' package has been removed, since it
2286 has been depracated upstream and replaced by 'kmod'.
2287
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02002288config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2289 string "u-boot: the git repository URL option has been renamed"
2290 help
2291 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2292 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2293
2294config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2295 bool
2296 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2297 select BR2_LEGACY
2298
2299# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2300# boot/uboot/Config.in
2301
2302config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2303 string "u-boot: the git repository version option has been renamed"
2304 help
2305 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
2306 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
2307
2308config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
2309 bool
2310 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
2311 select BR2_LEGACY
2312
2313# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
2314# boot/uboot/Config.in
2315
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02002316config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
2317 string "linux: the git repository URL option has been renamed"
2318 help
2319 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
2320 been renamed to
2321 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
2322
2323config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
2324 bool
2325 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
2326 select BR2_LEGACY
2327
2328# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
2329# linux/Config.in
2330
2331config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
2332 string "linux: the git repository version option has been renamed"
2333 help
2334 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
2335 been renamed to
2336 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
2337
2338config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
2339 bool
2340 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
2341 select BR2_LEGACY
2342
2343# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
2344# linux/Config.in
2345
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002346###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002347comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002348
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02002349config BR2_ARM_OABI
2350 bool "ARM OABI support has been removed"
2351 select BR2_LEGACY
2352 help
2353 The support for the ARM OABI was deprecated since a while,
2354 and has been removed completely from Buildroot. It is also
2355 deprecated in upstream gcc, since gcc 4.7. People should
2356 switch to EABI instead, which should not be a problem as
2357 long as you don't have pre-built OABI binaries in your
2358 system that you can't recompile.
2359
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002360config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
2361 bool "dosfstools dosfsck renamed to fsck.fat"
2362 select BR2_LEGACY
2363 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
2364 help
2365 dosfsck was renamed upstream to fsck.fat for consistency.
2366
2367config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
2368 bool "dosfstools dosfslabel renamed to fatlabel"
2369 select BR2_LEGACY
2370 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
2371 help
2372 doslabel was renamed upstream to fatlabel for consistency.
2373
2374config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
2375 bool "dosfstools mkdosfs renamed to mkfs.fat"
2376 select BR2_LEGACY
2377 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
2378 help
2379 mkdosfs was renamed upstream to mkfs.fat for consistency.
2380
Thomas Petazzonie21db002013-06-30 21:28:57 +02002381config BR2_ELF2FLT
2382 bool "the elf2flt option has been renamed"
2383 select BR2_LEGACY
2384 help
2385 The BR2_ELF2FLT option has been renamed to
2386 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
2387 the package infrastructure.
2388
Thomas Petazzonid8060052013-07-16 10:03:17 +02002389config BR2_VFP_FLOAT
2390 bool "the ARM VFP floating point option has been renamed"
2391 select BR2_LEGACY
2392 help
2393 Due to a major refactoring of the floating-point handling of
2394 the ARM architecture support, the BR2_VFP_FLOAT option has
2395 been replaced with a choice of options that allows to select
2396 between various VFP versions/capabilities.
2397
Samuel Martinba8f82b2013-08-30 06:08:59 +02002398config BR2_PACKAGE_GCC_TARGET
2399 bool "gcc on the target filesystem has been removed"
2400 select BR2_LEGACY
2401 help
2402 The support for gcc in the target filesystem was deprecated
2403 since a while, and has been removed completely from Buildroot.
2404 See Buildroot's documentation for more explanations.
2405
2406config BR2_HAVE_DEVFILES
2407 bool "development files in target filesystem has been removed"
2408 select BR2_LEGACY
2409 help
2410 The installation of the development files in the target
2411 filesystem was deprecated since a while, and has been removed
2412 completely from Buildroot.
2413 See Buildroot's documentation for more explanations.
2414
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002415###############################################################################
2416comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +00002417
2418config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
2419 bool "Realtek 8192 replaced by Realtek 81xx"
2420 select BR2_LEGACY
2421 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
2422 help
2423 Now covers the whole Realtek 81xx familly: 8188/8192.
2424
2425config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
2426 bool "Realtek 8712 replaced by Realtek 87xx"
2427 select BR2_LEGACY
2428 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
2429 help
2430 Now covers the whole Realtek 87xx familly: 8712/8723.
2431
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002432###############################################################################
2433comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002434
Gustavo Zacarias94744212013-04-04 07:29:45 +00002435config BR2_sa110
2436 bool "sa110 ARM target switched to strongarm"
2437 select BR2_LEGACY
2438 select BR2_strongarm
2439 help
2440 The SA110 is the same as a generic StrongARM, it just differs
2441 in speed, peripherals and cache.
2442
2443config BR2_sa1100
2444 bool "sa1100 ARM target switched to strongarm"
2445 select BR2_LEGACY
2446 select BR2_strongarm
2447 help
2448 The SA1100 is the same as a generic StrongARM, it just differs
2449 in speed, peripherals and cache.
2450
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002451config BR2_PACKAGE_GDISK
2452 bool "gdisk has been replaced by gptfdisk"
2453 select BR2_LEGACY
2454 select BR2_PACKAGE_GPTFDISK
2455 help
2456 The option has been renamed BR2_PACKAGE_GPTFDISK.
2457
2458config BR2_PACKAGE_GDISK_GDISK
2459 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
2460 select BR2_LEGACY
2461 select BR2_PACKAGE_GPTFDISK
2462 select BR2_PACKAGE_GPTFDISK_GDISK
2463 help
2464 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
2465
2466config BR2_PACKAGE_GDISK_SGDISK
2467 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
2468 select BR2_LEGACY
2469 select BR2_PACKAGE_GPTFDISK
2470 select BR2_PACKAGE_GPTFDISK_SGDISK
2471 help
2472 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00002473
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +00002474config BR2_PACKAGE_GDB_HOST
2475 bool "gdb for the host option has been renamed"
2476 select BR2_PACKAGE_HOST_GDB
2477 select BR2_LEGACY
2478 help
2479 Due to the conversion of gdb to the package infrastructure,
2480 the BR2_PACKAGE_GDB_HOST option has been renamed
2481 BR2_PACKAGE_HOST_GDB.
2482
Carsten Schoenert76de0f82013-03-10 08:32:46 +00002483config BR2_PACKAGE_DIRECTB_DITHER_RGB16
2484 bool "DirectFB RGB16 dithering option has been renamed"
2485 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
2486 select BR2_LEGACY
2487 help
2488 The option has been renamed
2489 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
2490
2491config BR2_PACKAGE_DIRECTB_TESTS
2492 bool "DirectFB Tests option has been renamed"
2493 select BR2_PACKAGE_DIRECTFB_TESTS
2494 select BR2_LEGACY
2495 help
2496 The option has been renamed
2497 BR2_PACKAGE_DIRECTFB_TESTS.
2498
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002499###############################################################################
2500comment "Legacy options removed in 2012.11"
2501
Thomas Petazzoni12ccc432013-02-07 11:58:45 +00002502config BR2_PACKAGE_CUSTOMIZE
2503 bool "customize package has been removed"
2504 select BR2_LEGACY
2505 help
2506 The 'customize' special package has been removed. Instead,
2507 we recommend to create either your own packages, or use a
2508 post-build script to customize your root filesystem. See
2509 Buildroot's documentation for more details.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002510
2511config BR2_PACKAGE_XSERVER_xorg
2512 bool "X.org modular server"
2513 select BR2_LEGACY
2514 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
2515 help
2516 The option has been renamed
2517 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
2518
2519config BR2_PACKAGE_XSERVER_tinyx
2520 bool "KDrive / TinyX server"
2521 select BR2_LEGACY
2522 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
2523 help
2524 The option has been renamed
2525 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
2526
2527config BR2_PACKAGE_PTHREAD_STUBS
2528 bool "pthread-stubs option has been renamed"
2529 select BR2_LEGACY
Bernd Kuhls5562be12014-03-01 16:41:10 +01002530 select BR2_PACKAGE_LIBPTHREAD_STUBS
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002531 help
2532 For consistency reason, the pthread-stubs package has been
Bernd Kuhls5562be12014-03-01 16:41:10 +01002533 renamed to libpthread-stubs.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002534
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002535###############################################################################
2536comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00002537
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +00002538config BR2_PACKAGE_GETTEXT_STATIC
2539 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
2540 select BR2_LEGACY
2541 help
2542 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
2543
2544
2545config BR2_PACKAGE_LIBINTL
2546 bool "libintl"
2547 select BR2_LEGACY
2548 select BR2_PACKAGE_GETTEXT
2549 help
2550 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
2551 only installs the library, not the executables.
2552
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +00002553config BR2_PACKAGE_INPUT_TOOLS_EVTEST
2554 bool "input-tools evtest is now a separate package evtest"
2555 select BR2_LEGACY
2556 select BR2_PACKAGE_EVTEST
2557 help
2558 The evtest program from input-tools is now a separate package.
2559
Sonic Zhang57133822013-05-03 00:39:34 +00002560config BR2_BFIN_FDPIC
2561 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
2562 select BR2_BINFMT_FDPIC
2563 select BR2_LEGACY
2564
2565config BR2_BFIN_FLAT
2566 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
2567 select BR2_BINFMT_FLAT
2568 select BR2_LEGACY
2569
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00002570endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02002571
2572endif # !SKIP_LEGACY