blob: 2fae812e012fdb2a97c45527c89a54aaf0b39f3f [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###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +0200146comment "Legacy options removed in 2016.11"
147
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -0300148config BR2_PACKAGE_WESTON_RPI
149 bool "Weston propietary RPI support is gone"
150 select BR2_LEGACY
151 help
152 Upstream decided the propietary (rpi-userland) weston composer
153 support wasn't worth the effort so it was removed. Switch to
154 the open VC4 support.
155
Yann E. MORIN20b14462016-09-06 16:29:14 +0200156config BR2_LINUX_KERNEL_TOOL_CPUPOWER
157 bool "linux-tool cpupower"
158 depends on BR2_LINUX_KERNEL
159 select BR2_LEGACY
160 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
161 help
162 Linux tool cpupower option was renamed.
163
164config BR2_LINUX_KERNEL_TOOL_PERF
165 bool "linux-tool perf"
166 depends on BR2_LINUX_KERNEL
167 select BR2_LEGACY
168 select BR2_PACKAGE_LINUX_TOOLS_PERF
169 help
170 Linux tool perf option was renamed.
171
172config BR2_LINUX_KERNEL_TOOL_SELFTESTS
173 bool "linux-tool selftests"
174 depends on BR2_LINUX_KERNEL
175 select BR2_LEGACY
176 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
177 help
178 Linux tool selftests option was renamed.
179
Thomas Petazzoni50332a52016-08-11 15:25:38 +0200180config BR2_GCC_VERSION_4_8_ARC
181 bool "gcc arc option renamed"
182 select BR2_LEGACY
183 select BR2_GCC_VERSION_ARC
184 help
185 The option that selects the gcc version for the ARC
186 architecture has been renamed to BR2_GCC_VERSION_ARC.
187
Gustavo Zacarias3c590a32016-09-09 12:20:54 -0300188config BR2_KERNEL_HEADERS_4_0
189 bool "kernel headers version 4.0.x are no longer supported"
190 select BR2_KERNEL_HEADERS_3_18
191 select BR2_LEGACY
192 help
193 Version 4.0.x of the Linux kernel headers have been deprecated
194 for more than four buildroot releases and are now removed.
195 As an alternative, version 3.18.x of the headers have been
196 automatically selected in your configuration.
197
198config BR2_KERNEL_HEADERS_3_19
199 bool "kernel headers version 3.19.x are no longer supported"
200 select BR2_KERNEL_HEADERS_3_18
201 select BR2_LEGACY
202 help
203 Version 3.19.x of the Linux kernel headers have been deprecated
204 for more than four buildroot releases and are now removed.
205 As an alternative, version 3.18.x of the headers have been
206 automatically selected in your configuration.
207
Romain Naour0e517312016-09-02 22:31:32 +0200208config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
209 bool "libevas-generic-loaders package removed"
210 select BR2_LEGACY
211 select BR2_PACKAGE_EFL
212 help
213 With EFL 1.18, libevas-generic-loaders is now provided by the efl
214 package.
215
Romain Naourc22b7582016-09-02 22:31:31 +0200216config BR2_PACKAGE_ELEMENTARY
217 bool "elementary package removed"
218 select BR2_LEGACY
219 select BR2_PACKAGE_EFL
220 help
221 With EFL 1.18, elementary is now provided by the efl package.
222
Yann E. MORINe782cd52016-08-28 01:03:04 +0200223config BR2_LINUX_KERNEL_CUSTOM_LOCAL
224 bool "Linux kernel local directory option removed"
225 help
226 The option to select a local directory as the source of the Linux
227 kernel has been removed. It hurts reproducibility of builds.
228
229 In case you were using this option during development of your
230 Linux kernel, use the override mechanism instead.
231
232###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200233comment "Legacy options removed in 2016.08"
234
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200235config BR2_PACKAGE_SYSTEMD_COMPAT
236 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +0200237 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200238 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +0200239 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +0200240 been removed. Theses libraries have been useless since a few
241 version, and have been fully dropped from the source since
242 v230.
243
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +0200244config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
245 bool "gst1-plugins-bad liveadder plugin removed"
246 select BR2_LEGACY
247 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
248 help
249 The functionality of the liveadder plugin of the
250 gst1-plugins-bad package has been merged into audiomixer.
251
Andrew Webster0f92b192016-06-10 14:13:29 -0400252config BR2_PACKAGE_LIBFSLVPUWRAP
253 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
254 select BR2_LEGACY
255 select BR2_PACKAGE_IMX_VPUWRAP
256 help
257 The libfslvpuwrap has been renamed to match the renamed package.
258
Andrew Webster64998902016-06-10 14:13:18 -0400259config BR2_PACKAGE_LIBFSLPARSER
260 bool "libfslparser has been renamed to imx-parser"
261 select BR2_LEGACY
262 select BR2_PACKAGE_IMX_PARSER
263 help
264 The libfslparser has been renamed to match the renamed package.
265
Andrew Webster47e62032016-06-10 14:13:05 -0400266config BR2_PACKAGE_LIBFSLCODEC
267 bool "libfslcodec has been renamed to imx-codec"
268 select BR2_LEGACY
269 select BR2_PACKAGE_IMX_CODEC
270 help
271 The libfslcodec has been renamed to match the renamed package.
272
Carlos Santosb5d99002016-06-03 16:35:39 -0300273config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
274 bool "FIT support in uboot-tools has been refactored"
275 select BR2_LEGACY
276 select BR2_PACKAGE_DTC
277 select BR2_PACKAGE_DTC_PROGRAMS
278 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
279 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
280 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
281 help
282 This option has been removed in favor of a more fine-grained
283 configuration, which is recommended. Selecting this option
284 enables FIT and FIT signature support for the target packages.
285 It will also select the dtc and openssl packages.
286
Waldemar Brodkorbf253c142016-06-01 20:40:25 +0200287config BR2_PTHREADS_OLD
288 bool "linuxthreads (stable/old)"
289 select BR2_LEGACY
290 help
291 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
292 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
293
Thomas Petazzoniae466a62016-05-17 00:13:01 +0200294config BR2_BINUTILS_VERSION_2_23_X
295 bool "binutils 2.23 removed"
296 select BR2_LEGACY
297 help
298 Binutils 2.23 has been removed, using a newer version is
299 recommended.
300
Thomas Petazzoni500de252016-05-17 00:13:00 +0200301config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
302 bool "eglibc support has been removed"
303 select BR2_LEGACY
304 help
305 The eglibc project no longer exists, as it has been merged
306 back into the glibc project. Therefore, support for eglibc
307 has been removed, and glibc should be used instead.
308
Thomas Petazzoni20ed8972016-05-17 00:12:58 +0200309config BR2_GDB_VERSION_7_8
310 bool "gdb 7.8 has been removed"
311 select BR2_LEGACY
312 help
313 The 7.8 version of gdb has been removed. Use a newer version
314 instead.
315
316###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100317comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +0100318
Gustavo Zacarias3380da62016-05-14 10:33:47 -0300319config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
320 bool "openvpn polarssl crypto backend removed"
321 select BR2_LEGACY
322 help
323 The OpenVPN polarssl crypto backend option has been removed.
324 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
325 compatible with mbedtls (polarssl) series 2.x which is the
326 version provided in buildroot. And both can't coexist.
327 It now uses OpenSSL as the only option.
328
329
Martin Bark4dfc2cb2016-05-03 10:36:54 +0100330config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
331 bool "nginx http spdy module removed"
332 select BR2_LEGACY
333 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
334 help
335 The ngx_http_spdy_module has been superseded by the
336 ngx_http_v2_module since nginx v1.9.5. The
337 ngx_http_v2_module modules has been automatically selected
338 in your configuration.
339
Gustavo Zacarias0c956f22016-05-03 16:44:15 -0300340config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
341 bool "gst1-plugins-bad rtp plugin moved to good"
342 select BR2_LEGACY
343 help
344 The rtp plugin has been moved from gst1-plugins-base to
345 gst1-plugins-good.
346
Gustavo Zacarias4196cf92016-05-03 16:44:14 -0300347config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
348 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
349 select BR2_LEGACY
350 help
351 The mpg123 plugin has been moved from gst1-plugins-bad to
352 gst1-plugins-ugly.
353
Gustavo Zacarias8490e832016-04-29 10:18:56 -0300354config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
355 bool "PowerPC Sourcery toolchain has been removed"
356 select BR2_LEGACY
357 help
358 The Sourcery CodeBench toolchain for the PowerPC
359 architecture has been removed, as it was very old, not
360 maintained, and causing numerous build failures with modern
361 userspace packages.
362
363config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
364 bool "PowerPC Sourcery E500v2 toolchain has been removed"
365 select BR2_LEGACY
366 help
367 The Sourcery CodeBench toolchain for the PowerPC E500v2
368 architecture has been removed, as it was very old, not
369 maintained, and causing numerous build failures with modern
370 userspace packages.
371
Thomas Petazzoni6cb48142016-04-17 23:31:34 +0200372config BR2_x86_i386
373 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +0200374 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +0200375 help
376 The support for the i386 processors of the x86 architecture
377 has been removed.
378
Julien CORJON940bfe22016-03-17 10:42:27 +0100379config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
380 bool "qt5webkit-examples package removed"
381 select BR2_LEGACY
382 help
383 The qt5webkit-examples package has been removed, since it
384 was removed from upstream starting from Qt 5.6.
385
Julien CORJONf75ee802016-03-17 10:42:25 +0100386config BR2_PACKAGE_QT5QUICK1
387 bool "qt5quick1 package removed"
388 select BR2_LEGACY
389 help
390 The qt5quick1 package has been removed, since it was removed
391 from upstream starting from Qt 5.6.
392
Gustavo Zacarias21b25d22016-03-11 11:32:24 -0300393config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
394 bool "uboot custom patch dir removed"
395 select BR2_LEGACY
396 help
397 The uboot custom patch directory option has been removed. Use
398 the improved BR2_TARGET_UBOOT_PATCH option instead.
399
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -0300400config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
401 bool "xf86-input-void removed"
402 select BR2_LEGACY
403 help
404 The xf86-input-void package has been removed, there's no need
405 for it in any modern (post-2007) xorg server.
406
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300407config BR2_KERNEL_HEADERS_3_17
408 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300409 select BR2_KERNEL_HEADERS_3_14
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300410 select BR2_LEGACY
411 help
412 Version 3.17.x of the Linux kernel headers have been deprecated
413 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300414 As an alternative, version 3.14.x of the headers have been
Gustavo Zacariasb8de1782016-03-11 11:32:22 -0300415 automatically selected in your configuration.
416
Gustavo Zacariasffc324e2016-03-11 11:32:21 -0300417config BR2_GDB_VERSION_7_7
418 bool "gdb 7.7 has been removed"
419 select BR2_LEGACY
420 help
421 The 7.7 version of gdb has been removed. Use a newer version
422 instead.
423
Gustavo Zacarias75945dd2016-03-11 11:32:20 -0300424config BR2_PACKAGE_FOOMATIC_FILTERS
425 bool "foomatic-filters"
426 select BR2_LEGACY
427 help
428 The foomatic-filters package was removed.
429
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -0300430config BR2_PACKAGE_SAMBA
431 bool "samba"
432 select BR2_LEGACY
433 help
434 The samba package was removed in favour of samba4 since the
435 3.x series isn't supported by upstream any longer.
436
Bernd Kuhls6922b412016-02-20 23:09:11 +0100437config BR2_PACKAGE_KODI_WAVPACK
438 bool "wavpack"
439 select BR2_LEGACY
440 help
441 wavpack support was removed in favour of ffmpeg:
442 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
443
Bernd Kuhls75ce17d2016-02-20 23:09:07 +0100444config BR2_PACKAGE_KODI_RSXS
445 bool "rsxs support in Kodi was moved to an addon"
446 select BR2_LEGACY
447 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
448 help
449 rsxs support in Kodi was moved to an addon
450
Bernd Kuhls56b80ec2016-02-20 23:09:06 +0100451config BR2_PACKAGE_KODI_GOOM
452 bool "Goom support in Kodi was moved to an addon"
453 select BR2_LEGACY
454 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
455 help
456 Goom support in Kodi was moved to an addon
457
Gabe Evanse5a073a2016-02-25 21:55:11 +0000458config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
459 bool "systemd all extras option has been removed"
460 select BR2_LEGACY
461 select BR2_PACKAGE_XZ
462 select BR2_PACKAGE_LIBGCRYPT
463 help
464 The systemd option to enable "all extras" has been
465 removed. To get the same features, the libgcrypt and xz
466 package should now be enabled.
467
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -0300468config BR2_GCC_VERSION_4_5_X
469 bool "gcc 4.5.x has been removed"
470 select BR2_LEGACY
471 help
472 The 4.5.x version of gcc has been removed. Use a newer
473 version instead.
474
Bernd Kuhls007c2ce2016-02-08 20:56:41 +0100475config BR2_PACKAGE_SQLITE_READLINE
476 bool "command-line editing support was updated"
477 select BR2_PACKAGE_NCURSES
478 select BR2_PACKAGE_READLINE
479 select BR2_LEGACY
480 help
481 This option was removed in favour of the sqlite package
482 deciding itself depending on the enabled packages whether
483 command-line editing should be enabled, it also also takes
484 libedit into account.
485
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +0100486###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +0100487comment "Legacy options removed in 2016.02"
488
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +0100489config BR2_PACKAGE_DOVECOT_BZIP2
490 bool "bzip2 support option has been removed"
491 select BR2_LEGACY
492 select BR2_PACKAGE_BZIP2
493 help
494 Bzip2 support is built if the bzip2 package is selected.
495
496config BR2_PACKAGE_DOVECOT_ZLIB
497 bool "zlib support option has been removed"
498 select BR2_LEGACY
499 select BR2_PACKAGE_ZLIB
500 help
501 Zlib support is built if the zlib package is selected.
502
James Knightead1df42016-02-12 11:40:05 -0500503config BR2_PACKAGE_E2FSPROGS_FINDFS
504 bool "e2fsprogs findfs option has been removed"
505 select BR2_LEGACY
506 help
507 This option attempted to enable findfs capabilities from
508 e2fsprogs but has not worked since July 2015 (due to
509 packaging changes). One can use BusyBox's findfs support or
510 enable the BR2_PACKAGE_UTIL_LINUX_FINDFS option.
511
Romain Naourb1063a02016-02-07 17:56:56 +0100512config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
513 bool "openpowerlink debug option has been removed"
514 select BR2_LEGACY
515 help
516 This option depends on BR2_ENABLE_DEBUG which should not be used
517 by packages anymore.
518
519config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
520 bool "openpowerlink package has been updated"
521 select BR2_LEGACY
522 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
523 help
524 openpowerlink kernel modules are built if the
525 kernel stack library is selected.
526
527config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
528 bool "openpowerlink package has been updated"
529 select BR2_LEGACY
530 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
531 help
532 The user space support has been split in two part:
533 - a monolitic user space library
534 - a user spae deamon driver
535
Yann E. MORINe3e05832016-02-06 00:06:17 +0100536config BR2_LINUX_KERNEL_SAME_AS_HEADERS
537 bool "using the linux headers version for the kernel has been removed"
538 select BR2_LEGACY
539 help
540 The option to use the version of the kernel headers for the
541 kernel to build has been removed.
542
543 There is now the converse, better-suited and more versatile
544 option to use the kernel version for the linux headers.
545
Olivier Schonkend37ce8e2016-01-21 00:17:43 +0200546config BR2_PACKAGE_CUPS_PDFTOPS
547 bool "Pdftops support has been removed from Cups"
548 select BR2_LEGACY
549 help
550 Pdftops support has been removed from the cups package
551 It is now part of the cups-filters package.
552
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300553config BR2_KERNEL_HEADERS_3_16
554 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300555 select BR2_KERNEL_HEADERS_3_14
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300556 select BR2_LEGACY
557 help
558 Version 3.16.x of the Linux kernel headers have been deprecated
559 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300560 As an alternative, version 3.14.x of the headers have been
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -0300561 automatically selected in your configuration.
562
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +0100563config BR2_PACKAGE_PYTHON_PYXML
564 bool "python-pyxml package has been removed"
565 select BR2_LEGACY
566 help
567 PyXML is obsolete and its functionality is covered either via
568 native Python XML support or python-lxml package.
569
Steven Noonand29c7192015-12-27 12:07:31 +0100570# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
571config BR2_ENABLE_SSP
572 bool "Stack Smashing protection now has different levels"
573 help
574 The protection offered by SSP can now be selected from different
575 protection levels. Be sure to review the SSP level in the build
576 options menu.
577
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300578config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -0300579 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300580 select BR2_LEGACY
581 help
582 The cle266 directfb driver support has been removed.
583 It doesn't build in the latest version and it's unlikely
584 anyone has any use for it.
585
586config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -0300587 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300588 select BR2_LEGACY
589 help
590 The unichrome directfb driver support has been removed.
591 It doesn't build in the latest version and it's unlikely
592 anyone has any use for it.
593
Romain Naour820e1682015-12-19 17:39:14 +0100594config BR2_PACKAGE_LIBELEMENTARY
595 bool "libelementary has been renamed to elementary"
596 select BR2_LEGACY
597 select BR2_PACKAGE_ELEMENTARY
598 help
599 The libelementary package has been renamed to match the upstream
600 name.
601
Romain Naoura9d1f5f2015-12-15 23:40:38 +0100602config BR2_PACKAGE_LIBEINA
603 bool "libeina package has been removed"
604 select BR2_LEGACY
605 select BR2_PACKAGE_EFL
606 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100607 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +0100608
Romain Naour49700f02015-12-15 23:40:37 +0100609config BR2_PACKAGE_LIBEET
610 bool "libeet package has been removed"
611 select BR2_LEGACY
612 select BR2_PACKAGE_EFL
613 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100614 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +0100615
Romain Naoure5989d62015-12-15 23:40:36 +0100616config BR2_PACKAGE_LIBEVAS
617 bool "libevas package has been removed"
618 select BR2_LEGACY
619 select BR2_PACKAGE_EFL
620 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100621 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +0100622
Romain Naour1fe1b602015-12-15 23:40:35 +0100623config BR2_PACKAGE_LIBECORE
624 bool "libecore package has been removed"
625 select BR2_LEGACY
626 select BR2_PACKAGE_EFL
627 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100628 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +0100629
Romain Naour8c05c382015-12-15 23:40:34 +0100630config BR2_PACKAGE_LIBEDBUS
631 bool "libedbus package has been removed"
632 select BR2_LEGACY
633 select BR2_PACKAGE_EFL
634 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100635 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +0100636
Romain Naourd2b042c2015-12-15 23:40:33 +0100637config BR2_PACKAGE_LIBEFREET
638 bool "libefreet package has been removed"
639 select BR2_LEGACY
640 select BR2_PACKAGE_EFL
641 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100642 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +0100643
Romain Naoure155c952015-12-15 23:40:32 +0100644config BR2_PACKAGE_LIBEIO
645 bool "libeio package has been removed"
646 select BR2_LEGACY
647 select BR2_PACKAGE_EFL
648 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100649 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +0100650
Romain Naourb728fb72015-12-15 23:40:31 +0100651config BR2_PACKAGE_LIBEMBRYO
652 bool "libembryo package has been removed"
653 select BR2_LEGACY
654 select BR2_PACKAGE_EFL
655 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100656 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +0100657
Romain Naour4c93c102015-12-15 23:40:30 +0100658config BR2_PACKAGE_LIBEDJE
659 bool "libedje package has been removed"
660 select BR2_LEGACY
661 select BR2_PACKAGE_EFL
662 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100663 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +0100664
Romain Naour905dba12015-12-15 23:40:29 +0100665config BR2_PACKAGE_LIBETHUMB
666 bool "libethumb package has been removed"
667 select BR2_LEGACY
668 select BR2_PACKAGE_EFL
669 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100670 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +0100671
Luca Ceresolif0c94702015-11-27 18:38:00 +0100672config BR2_PACKAGE_INFOZIP
673 bool "infozip option has been renamed to zip"
674 select BR2_LEGACY
675 select BR2_PACKAGE_ZIP
676 help
677 Info-Zip's Zip package has been renamed from infozip to zip,
678 to avoid ambiguities with Info-Zip's UnZip which has been added
679 in the unzip package.
680
Martin Barka2d16602015-12-23 12:16:04 +0000681config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +0000682 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +0000683 select BR2_LEGACY
684 select BR2_PACKAGE_NODEJS
685 help
Martin Bark75b70492016-01-30 14:51:00 +0000686 nodejs 0.10.x option has been removed. 0.10.x is now
687 automatically chosen for ARMv5 architectures only and the latest
688 nodejs for all other supported architectures. The correct nodejs
689 version has been automatically selected in your configuration.
Martin Barka2d16602015-12-23 12:16:04 +0000690
Martin Barka314b872015-12-23 12:16:03 +0000691config BR2_BR2_PACKAGE_NODEJS_0_12_X
692 bool "nodejs version 0.12.x has been removed"
693 select BR2_LEGACY
694 select BR2_PACKAGE_NODEJS
695 help
696 nodejs version 0.12.x has been removed. As an alternative,
697 the latest nodejs version has been automatically selected in
698 your configuration.
699
Martin Bark90bf67c2015-12-23 12:16:02 +0000700config BR2_BR2_PACKAGE_NODEJS_4_X
701 bool "nodejs version 4.x has been removed"
702 select BR2_LEGACY
703 select BR2_PACKAGE_NODEJS
704 help
705 nodejs version 4.x has been removed. As an alternative,
706 the latest nodejs version has been automatically selected in
707 your configuration.
708
Luca Ceresolif0c94702015-11-27 18:38:00 +0100709###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +0200710comment "Legacy options removed in 2015.11"
711
Peter Seiderer301e8ff2015-10-15 21:42:43 +0200712config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
713 bool "gst1-plugins-bad real plugin has been removed"
714 select BR2_LEGACY
715 help
716 The real plugin from GStreamer 1 bad plugins has been
717 removed.
718
Peter Seidererf7dd5cb2015-10-07 23:56:48 +0200719config BR2_PACKAGE_MEDIA_CTL
720 bool "media-ctl package has been removed"
721 select BR2_LEGACY
722 select BR2_PACKAGE_LIBV4L
723 select BR2_PACKAGE_LIBV4L_UTILS
724 help
725 media-ctl source and developement have been moved to
726 v4l-utils since June 2014. For an up-to-date media-ctl
727 version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
728
Romain Naourf8031332015-10-03 18:35:05 +0200729config BR2_PACKAGE_SCHIFRA
730 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200731 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +0200732 help
733 Schifra package has been maked broken since 2014.11 release and
734 haven't been fixed since then.
735
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +0200736config BR2_PACKAGE_ZXING
737 bool "zxing option has been renamed"
738 select BR2_LEGACY
739 select BR2_PACKAGE_ZXING_CPP
740 help
741 ZXing no longer provides the cpp bindings, it has been renamed to
742 BR2_PACKAGE_ZXING_CPP which uses a new upstream.
743
Yann E. MORIN4d131b42015-09-06 21:54:21 +0200744# Since FreeRDP has new dependencies, protect this legacy to avoid the
745# infamous "unmet direct dependencies" kconfig error.
746config BR2_PACKAGE_FREERDP_CLIENT
747 bool "freerdp client option renamed"
748 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +0200749 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +0200750 select BR2_PACKAGE_FREERDP_CLIENT_X11
751
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -0300752config BR2_PACKAGE_BLACKBOX
753 bool "blackbox package has been removed"
754 select BR2_LEGACY
755 help
756 Upstream is dead and the package has been deprecated for
757 some time. There are other alternative maintained WMs.
758
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300759config BR2_KERNEL_HEADERS_3_0
760 bool "kernel headers version 3.0.x are no longer supported"
761 select BR2_KERNEL_HEADERS_3_2
762 select BR2_LEGACY
763 help
764 Version 3.0.x of the Linux kernel headers have been deprecated
765 for more than four buildroot releases and are now removed.
766 As an alternative, version 3.2.x of the headers have been
767 automatically selected in your configuration.
768
769config BR2_KERNEL_HEADERS_3_11
770 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300771 select BR2_KERNEL_HEADERS_3_10
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300772 select BR2_LEGACY
773 help
774 Version 3.11.x of the Linux kernel headers have been deprecated
775 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300776 As an alternative, version 3.10.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300777 automatically selected in your configuration.
778
779config BR2_KERNEL_HEADERS_3_13
780 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300781 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300782 select BR2_LEGACY
783 help
784 Version 3.13.x of the Linux kernel headers have been deprecated
785 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300786 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300787 automatically selected in your configuration.
788
789config BR2_KERNEL_HEADERS_3_15
790 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300791 select BR2_KERNEL_HEADERS_3_14
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300792 select BR2_LEGACY
793 help
794 Version 3.15.x of the Linux kernel headers have been deprecated
795 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -0300796 As an alternative, version 3.14.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300797 automatically selected in your configuration.
798
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200799config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
800 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200801 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200802 select BR2_PACKAGE_DIRECTFB_EXAMPLES
803 help
804 The per-DirectFB example options have been removed. The
805 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
806 examples.
807
808config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
809 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200810 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200811 select BR2_PACKAGE_DIRECTFB_EXAMPLES
812 help
813 The per-DirectFB example options have been removed. The
814 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
815 examples.
816
817config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
818 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200819 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200820 select BR2_PACKAGE_DIRECTFB_EXAMPLES
821 help
822 The per-DirectFB example options have been removed. The
823 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
824 examples.
825
826config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
827 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200828 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200829 select BR2_PACKAGE_DIRECTFB_EXAMPLES
830 help
831 The per-DirectFB example options have been removed. The
832 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
833 examples.
834
835config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
836 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200837 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200838 select BR2_PACKAGE_DIRECTFB_EXAMPLES
839 help
840 The per-DirectFB example options have been removed. The
841 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
842 examples.
843
844config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
845 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200846 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200847 select BR2_PACKAGE_DIRECTFB_EXAMPLES
848 help
849 The per-DirectFB example options have been removed. The
850 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
851 examples.
852
853config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
854 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200855 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200856 select BR2_PACKAGE_DIRECTFB_EXAMPLES
857 help
858 The per-DirectFB example options have been removed. The
859 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
860 examples.
861
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200862config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
863 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200864 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200865 select BR2_PACKAGE_DIRECTFB_EXAMPLES
866 help
867 The per-DirectFB example options have been removed. The
868 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
869 examples.
870
871config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
872 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200873 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200874 select BR2_PACKAGE_DIRECTFB_EXAMPLES
875 help
876 The per-DirectFB example options have been removed. The
877 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
878 examples.
879
880config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
881 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200882 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200883 select BR2_PACKAGE_DIRECTFB_EXAMPLES
884 help
885 The per-DirectFB example options have been removed. The
886 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
887 examples.
888
889config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
890 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200891 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200892 select BR2_PACKAGE_DIRECTFB_EXAMPLES
893 help
894 The per-DirectFB example options have been removed. The
895 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
896 examples.
897
898config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
899 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200900 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200901 select BR2_PACKAGE_DIRECTFB_EXAMPLES
902 help
903 The per-DirectFB example options have been removed. The
904 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
905 examples.
906
907config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
908 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200909 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200910 select BR2_PACKAGE_DIRECTFB_EXAMPLES
911 help
912 The per-DirectFB example options have been removed. The
913 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
914 examples.
915
916config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
917 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200918 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200919 select BR2_PACKAGE_DIRECTFB_EXAMPLES
920 help
921 The per-DirectFB example options have been removed. The
922 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
923 examples.
924
925config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
926 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200927 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200928 select BR2_PACKAGE_DIRECTFB_EXAMPLES
929 help
930 The per-DirectFB example options have been removed. The
931 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
932 examples.
933
934config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
935 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200936 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200937 select BR2_PACKAGE_DIRECTFB_EXAMPLES
938 help
939 The per-DirectFB example options have been removed. The
940 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
941 examples.
942
943config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
944 bool "DirectFB example df_neo 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_NETLOAD
953 bool "DirectFB example df_netload 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_PALETTE
962 bool "DirectFB example df_palette has been removed"
963 select BR2_PACKAGE_DIRECTFB_EXAMPLES
964 help
965 The per-DirectFB example options have been removed. The
966 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
967 examples.
968
969config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
970 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200971 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200972 select BR2_PACKAGE_DIRECTFB_EXAMPLES
973 help
974 The per-DirectFB example options have been removed. The
975 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
976 examples.
977
978config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
979 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200980 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200981 select BR2_PACKAGE_DIRECTFB_EXAMPLES
982 help
983 The per-DirectFB example options have been removed. The
984 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
985 examples.
986
987config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
988 bool "DirectFB example df_stress has been removed"
989 select BR2_PACKAGE_DIRECTFB_EXAMPLES
990 help
991 The per-DirectFB example options have been removed. The
992 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
993 examples.
994
995config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
996 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200997 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200998 select BR2_PACKAGE_DIRECTFB_EXAMPLES
999 help
1000 The per-DirectFB example options have been removed. The
1001 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1002 examples.
1003
1004config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
1005 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001006 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001007 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1008 help
1009 The per-DirectFB example options have been removed. The
1010 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1011 examples.
1012
1013config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1014 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001015 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001016 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1017 help
1018 The per-DirectFB example options have been removed. The
1019 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1020 examples.
1021
1022config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1023 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001024 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02001025 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1026 help
1027 The per-DirectFB example options have been removed. The
1028 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1029 examples.
1030
Gary Bisson2b78fb22015-09-23 15:39:27 +02001031config BR2_PACKAGE_KOBS_NG
1032 bool "kobs-ng was replaced by imx-kobs"
1033 select BR2_LEGACY
1034 select BR2_PACKAGE_IMX_KOBS
1035 help
1036 The outdated kobs-ng has been replaced by the Freescale-
1037 maintained imx-kobs package.
1038
Thomas Petazzoni11573f52015-09-02 00:01:11 +02001039config BR2_PACKAGE_SAWMAN
1040 bool "sawman package removed"
1041 select BR2_LEGACY
1042 select BR2_PACKAGE_DIRECTFB_SAWMAN
1043 help
1044 This option has been removed because the sawman package no
1045 longer exists: it was merged inside DirectFB itself. This
1046 feature can now be enabled using the
1047 BR2_PACKAGE_DIRECTFB_SAWMAN option.
1048
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02001049config BR2_PACKAGE_DIVINE
1050 bool "divine package removed"
1051 select BR2_LEGACY
1052 select BR2_PACKAGE_DIRECTFB_DIVINE
1053 help
1054 This option has been removed because the divine package no
1055 longer exists: it was merged inside DirectFB itself. This
1056 feature can now be enabled using the
1057 BR2_PACKAGE_DIRECTFB_DIVINE option.
1058
1059###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001060comment "Legacy options removed in 2015.08"
1061
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001062config BR2_PACKAGE_KODI_PVR_ADDONS
1063 bool "Kodi PVR addon was split"
1064 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02001065 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02001066 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02001067 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02001068 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02001069 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02001070 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02001071 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02001072 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02001073 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02001074 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02001075 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02001076 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02001077 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02001078 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02001079 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02001080 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02001081 help
1082 Kodi PVR addon was split into seperate modules
1083
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001084config BR2_BINUTILS_VERSION_2_23_2
1085 bool "binutils 2.23 option renamed"
1086 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001087 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001088 Binutils 2.23.2 has been removed, using a newer version is
1089 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03001090
1091config BR2_BINUTILS_VERSION_2_24
1092 bool "binutils 2.24 option renamed"
1093 select BR2_LEGACY
1094 select BR2_BINUTILS_VERSION_2_24_X
1095 help
1096 The binutils version option has been renamed to match the
1097 same patchlevel logic used by gcc. The new option is now
1098 BR2_BINUTILS_VERSION_2_24_X.
1099
1100config BR2_BINUTILS_VERSION_2_25
1101 bool "binutils 2.25 option renamed"
1102 select BR2_LEGACY
1103 select BR2_BINUTILS_VERSION_2_25_X
1104 help
1105 The binutils version option has been renamed to match the
1106 same patchlevel logic used by gcc. The new option is now
1107 BR2_BINUTILS_VERSION_2_25_X.
1108
Romain Naour1326e762015-07-14 19:35:14 +02001109config BR2_PACKAGE_PERF
1110 bool "perf option has been renamed"
1111 select BR2_LEGACY
1112 select BR2_LINUX_KERNEL_TOOL_PERF
1113 help
1114 The perf package has been moved as a Linux tools package,
1115 and the option to enable it is now
1116 BR2_LINUX_KERNEL_TOOL_PERF.
1117
Thomas Petazzoni2f845952015-07-11 14:52:53 +02001118config BR2_BINUTILS_VERSION_2_22
1119 bool "binutils 2.22 removed"
1120 select BR2_LEGACY
1121 help
1122 Binutils 2.22 has been removed, using a newer version is
1123 recommended.
1124
Gary Bisson4c0613e2015-05-26 10:19:37 +02001125config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1126 bool "gpu-viv-bin-mx6q"
1127 select BR2_LEGACY
1128 select BR2_PACKAGE_IMX_GPU_VIV
1129 help
1130 Vivante graphics libraries have been renamed to
1131 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1132 name.
1133
Matt Weber7742abe2015-06-02 08:28:35 -05001134config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
1135 depends on BR2_PACKAGE_PYTHON
1136 bool "libsemanage python bindings removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001137 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05001138 help
1139 This option has been removed, since the libsemanage Python
1140 bindings on the target were not useful.
1141
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03001142config BR2_TARGET_UBOOT_NETWORK
1143 bool "U-Boot custom network settings removed"
1144 select BR2_LEGACY
1145 help
1146 U-Boot's custom network settings options have been removed.
1147
1148###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001149comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001150
Michał Leśniewskie3904a82015-05-19 20:26:30 +02001151config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1152 bool "jffs2 16kB erasesize NAND flash option renamed"
1153 select BR2_LEGACY
1154 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1155 help
1156 The JFFS2 NAND flash options now longer include the page
1157 size.
1158
1159config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1160 bool "jffs2 128kB erasesize NAND flash option renamed"
1161 select BR2_LEGACY
1162 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
1163 help
1164 The JFFS2 NAND flash options now longer include the page
1165 size.
1166
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02001167config BR2_PACKAGE_MONO_20
1168 bool "2.0/3.5 .Net Runtime"
1169 select BR2_LEGACY
1170 help
1171 This option no longer exists, all versions of the .Net
1172 runtime are now installed.
1173
1174config BR2_PACKAGE_MONO_40
1175 bool "4.0 .Net Runtime"
1176 select BR2_LEGACY
1177 help
1178 This option no longer exists, all versions of the .Net
1179 runtime are now installed.
1180
1181config BR2_PACKAGE_MONO_45
1182 bool "4.5 .Net Runtime"
1183 select BR2_LEGACY
1184 help
1185 This option no longer exists, all versions of the .Net
1186 runtime are now installed.
1187
Peter Korsgaardefd49e32015-04-27 22:29:05 +02001188config BR2_CIVETWEB_WITH_LUA
1189 bool "civetweb lua option renamed"
1190 select BR2_LEGACY
1191 select BR2_PACKAGE_CIVETWEB_WITH_LUA
1192 help
1193 civetweb's lua option has been renamed to
1194 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
1195 packages name options.
1196
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02001197config BR2_PACKAGE_TIFF_TIFF2PDF
1198 bool "tiff utility-specific option removed"
1199 select BR2_LEGACY
1200 select BR2_PACKAGE_TIFF_UTILITIES
1201 help
1202 utility-specific options have been removed in favour of
1203 the new option BR2_PACKAGE_TIFF_UTILITIES.
1204
1205config BR2_PACKAGE_TIFF_TIFFCP
1206 bool "tiff utility-specific option removed"
1207 select BR2_LEGACY
1208 select BR2_PACKAGE_TIFF_UTILITIES
1209 help
1210 utility-specific options have been removed in favour of
1211 the new option BR2_PACKAGE_TIFF_UTILITIES.
1212
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001213config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
1214 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001215 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02001216 help
1217 This option has never worked, so it has been removed.
1218
Yann E. MORIN02917962015-03-24 19:54:15 +01001219config BR2_TARGET_GENERIC_PASSWD_DES
1220 bool "Encoding passwords with DES has been removed"
1221 select BR2_LEGACY
1222 help
1223 Paswords can now only be encoded with either of md5, sha256 or sha512.
1224 The default is md5, which is stronger that DES (but still pretty weak).
1225
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03001226config BR2_PACKAGE_GTK2_THEME_HICOLOR
1227 bool "hicolor (default theme) is a duplicate"
1228 select BR2_LEGACY
1229 select BR2_PACKAGE_HICOLOR_ICON_THEME
1230 help
1231 The option was just a duplicate of hicolor icon theme.
1232
Mike Williamsfd0e5f62015-03-06 12:17:45 -05001233config BR2_PACKAGE_VALGRIND_PTRCHECK
1234 bool "valgrind's PTRCheck was renamed to SGCheck"
1235 select BR2_LEGACY
1236 select BR2_PACKAGE_VALGRIND_SGCHECK
1237 help
1238 PTRCheck was renamed to SGCheck in valgrind
1239
1240###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001241comment "Legacy options removed in 2015.02"
1242
Pedro Aguilar10900c02015-02-27 06:38:07 +02001243config BR2_PACKAGE_LIBGC
1244 bool "libgc package removed"
1245 select BR2_LEGACY
1246 select BR2_PACKAGE_BDWGC
1247 help
1248 libgc has been removed because we have the same package under a
1249 different name, bdwgc.
1250
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01001251config BR2_PACKAGE_WDCTL
1252 bool "util-linux' wdctl option has been renamed"
1253 select BR2_LEGACY
1254 select BR2_PACKAGE_UTIL_LINUX_WDCTL
1255 help
1256 util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
1257 to be aligned with how the other options are named.
1258
Danomi Manchegoe44edb82015-07-13 22:57:06 -04001259config BR2_PACKAGE_UTIL_LINUX_ARCH
1260 bool "util-linux' arch option has been removed"
1261 select BR2_LEGACY
1262 help
1263 util-linux' arch was dropped in util-linux 2.23, in favor of
1264 the coreutils version.
1265
1266config BR2_PACKAGE_UTIL_LINUX_DDATE
1267 bool "util-linux' ddate option has been removed"
1268 select BR2_LEGACY
1269 help
1270 util-linux' ddate was dropped in util-linux 2.23.
1271
Romain Naour3c476542015-01-18 20:53:08 +01001272config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
1273 bool "rpm's bzip2 payloads option has been removed"
1274 select BR2_LEGACY
1275 select BR2_PACKAGE_BZIP2
1276 help
1277 The bzip2 payloads option rely entirely on the dependant package bzip2.
1278 So, you need to select it to enable this feature.
1279
1280config BR2_PACKAGE_RPM_XZ_PAYLOADS
1281 bool "rpm's xz payloads option has been removed"
1282 select BR2_LEGACY
1283 select BR2_PACKAGE_XZ
1284 help
1285 The xz payloads option rely entirely on the dependant package xz.
1286 So, you need to select it to enable this feature.
1287
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03001288config BR2_PACKAGE_M4
1289 bool "m4 target package removed"
1290 select BR2_LEGACY
1291 help
1292 The m4 target package has been removed, it's been
1293 deprecated for some time now.
1294
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03001295config BR2_PACKAGE_FLEX_BINARY
1296 bool "flex binary in target option removed"
1297 select BR2_LEGACY
1298 help
1299 The flex binary in the target option has been removed.
1300 It's been deprecated for some time now and is essentially a
1301 development tool which isn't very useful in the target.
1302
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03001303config BR2_PACKAGE_BISON
1304 bool "bison target package removed"
1305 select BR2_LEGACY
1306 help
1307 The bison target package has been removed, it's been
1308 deprecated for some time now and is essentially a development
1309 tool which isn't very useful in the target.
1310
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03001311config BR2_PACKAGE_GOB2
1312 bool "gob2 target package removed"
1313 select BR2_LEGACY
1314 help
1315 The gob2 target package has been removed, it's been
1316 deprecated for some time now and was essentially useless
1317 without a target toolchain.
1318
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03001319config BR2_PACKAGE_DISTCC
1320 bool "distcc target package removed"
1321 select BR2_LEGACY
1322 help
1323 The distcc target package has been removed, it's been
1324 deprecated for some time now and was essentially useless
1325 without a target toolchain.
1326
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03001327config BR2_PACKAGE_HASERL_VERSION_0_8_X
1328 bool "haserl 0.8.x version removed"
1329 select BR2_LEGACY
1330 help
1331 The 0.8.x version option for haserl has been removed since it
1332 has been deprecated for some time now.
1333 You should be able to use the 0.9.x version without issues.
1334
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03001335config BR2_PACKAGE_STRONGSWAN_TOOLS
1336 bool "strongswan option has been removed"
1337 select BR2_LEGACY
1338 select BR2_PACKAGE_STRONGSWAN_PKI
1339 select BR2_PACKAGE_STRONGSWAN_SCEP
1340 help
1341 The tools option has been removed upstream and the different tools
1342 have been split between the pki and scep options, with others
1343 deprecated.
1344
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01001345config BR2_PACKAGE_XBMC_ADDON_XVDR
1346 bool "xbmc options have been renamed"
1347 select BR2_LEGACY
1348 select BR2_PACKAGE_KODI_ADDON_XVDR
1349 help
1350 The XBMC media center project was renamed to Kodi entertainment center
1351
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01001352config BR2_PACKAGE_XBMC_PVR_ADDONS
1353 bool "xbmc options have been renamed"
1354 select BR2_LEGACY
1355 select BR2_PACKAGE_KODI_PVR_ADDONS
1356 help
1357 The XBMC media center project was renamed to Kodi entertainment center
1358
Bernd Kuhls35784592014-12-23 18:46:27 +01001359config BR2_PACKAGE_XBMC
1360 bool "xbmc options have been renamed"
1361 select BR2_LEGACY
1362 select BR2_PACKAGE_KODI
1363 help
1364 The XBMC media center project was renamed to Kodi entertainment center
1365
1366config BR2_PACKAGE_XBMC_ALSA_LIB
1367 bool "xbmc options have been renamed"
1368 select BR2_LEGACY
1369 select BR2_PACKAGE_KODI_ALSA_LIB
1370 help
1371 The XBMC media center project was renamed to Kodi entertainment center
1372
1373config BR2_PACKAGE_XBMC_AVAHI
1374 bool "xbmc options have been renamed"
1375 select BR2_LEGACY
1376 select BR2_PACKAGE_KODI_AVAHI
1377 help
1378 The XBMC media center project was renamed to Kodi entertainment center
1379
1380config BR2_PACKAGE_XBMC_DBUS
1381 bool "xbmc options have been renamed"
1382 select BR2_LEGACY
1383 select BR2_PACKAGE_KODI_DBUS
1384 help
1385 The XBMC media center project was renamed to Kodi entertainment center
1386
1387config BR2_PACKAGE_XBMC_LIBBLURAY
1388 bool "xbmc options have been renamed"
1389 select BR2_LEGACY
1390 select BR2_PACKAGE_KODI_LIBBLURAY
1391 help
1392 The XBMC media center project was renamed to Kodi entertainment center
1393
1394config BR2_PACKAGE_XBMC_GOOM
1395 bool "xbmc options have been renamed"
1396 select BR2_LEGACY
1397 select BR2_PACKAGE_KODI_GOOM
1398 help
1399 The XBMC media center project was renamed to Kodi entertainment center
1400
1401config BR2_PACKAGE_XBMC_RSXS
1402 bool "xbmc options have been renamed"
1403 select BR2_LEGACY
1404 select BR2_PACKAGE_KODI_RSXS
1405 help
1406 The XBMC media center project was renamed to Kodi entertainment center
1407
1408config BR2_PACKAGE_XBMC_LIBCEC
1409 bool "xbmc options have been renamed"
1410 select BR2_LEGACY
1411 select BR2_PACKAGE_KODI_LIBCEC
1412 help
1413 The XBMC media center project was renamed to Kodi entertainment center
1414
1415config BR2_PACKAGE_XBMC_LIBMICROHTTPD
1416 bool "xbmc options have been renamed"
1417 select BR2_LEGACY
1418 select BR2_PACKAGE_KODI_LIBMICROHTTPD
1419 help
1420 The XBMC media center project was renamed to Kodi entertainment center
1421
1422config BR2_PACKAGE_XBMC_LIBNFS
1423 bool "xbmc options have been renamed"
1424 select BR2_LEGACY
1425 select BR2_PACKAGE_KODI_LIBNFS
1426 help
1427 The XBMC media center project was renamed to Kodi entertainment center
1428
1429config BR2_PACKAGE_XBMC_RTMPDUMP
1430 bool "xbmc options have been renamed"
1431 select BR2_LEGACY
1432 select BR2_PACKAGE_KODI_RTMPDUMP
1433 help
1434 The XBMC media center project was renamed to Kodi entertainment center
1435
1436config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
1437 bool "xbmc options have been renamed"
1438 select BR2_LEGACY
1439 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
1440 help
1441 The XBMC media center project was renamed to Kodi entertainment center
1442
1443config BR2_PACKAGE_XBMC_LIBSMBCLIENT
1444 bool "xbmc options have been renamed"
1445 select BR2_LEGACY
1446 select BR2_PACKAGE_KODI_LIBSMBCLIENT
1447 help
1448 The XBMC media center project was renamed to Kodi entertainment center
1449
1450config BR2_PACKAGE_XBMC_LIBTHEORA
1451 bool "xbmc options have been renamed"
1452 select BR2_LEGACY
1453 select BR2_PACKAGE_KODI_LIBTHEORA
1454 help
1455 The XBMC media center project was renamed to Kodi entertainment center
1456
1457config BR2_PACKAGE_XBMC_LIBUSB
1458 bool "xbmc options have been renamed"
1459 select BR2_LEGACY
1460 select BR2_PACKAGE_KODI_LIBUSB
1461 help
1462 The XBMC media center project was renamed to Kodi entertainment center
1463
1464config BR2_PACKAGE_XBMC_LIBVA
1465 bool "xbmc options have been renamed"
1466 select BR2_LEGACY
1467 select BR2_PACKAGE_KODI_LIBVA
1468 help
1469 The XBMC media center project was renamed to Kodi entertainment center
1470
1471config BR2_PACKAGE_XBMC_WAVPACK
1472 bool "xbmc options have been renamed"
1473 select BR2_LEGACY
1474 select BR2_PACKAGE_KODI_WAVPACK
1475 help
1476 The XBMC media center project was renamed to Kodi entertainment center
1477
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001478config BR2_PREFER_STATIC_LIB
1479 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01001480 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001481 help
1482 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
1483 highlights the fact that the option no longer "prefers"
1484 static libraries, but "enforces" static libraries (i.e
1485 shared libraries are completely unused).
1486
Samuel Martina44b1c12014-12-14 17:24:24 +01001487 Take care of updating the type of libraries you want under the
1488 "Build options" menu.
1489
Bernd Kuhls35784592014-12-23 18:46:27 +01001490###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02001491comment "Legacy options removed in 2014.11"
1492
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001493config BR2_x86_generic
1494 bool "x86 generic variant has been removed"
1495 select BR2_LEGACY
1496 help
1497 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02001498 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001499
Andreas Larsson40e18f22014-10-30 09:29:36 +01001500config BR2_GCC_VERSION_4_4_X
1501 bool "gcc 4.4.x has been removed"
1502 select BR2_LEGACY
1503 help
1504 The 4.4.x version of gcc has been removed. Use a newer
1505 version instead.
1506
Andreas Larsson43b78e72014-10-30 09:29:35 +01001507config BR2_sparc_sparchfleon
1508 bool "sparchfleon CPU has been removed"
1509 select BR2_LEGACY
1510 help
1511 The sparchfleon CPU was only supported in a patched gcc 4.4
1512 version. Its support has been removed in favor of the leon3
1513 CPU starting from gcc 4.8.x.
1514
1515config BR2_sparc_sparchfleonv8
1516 bool "sparchfleonv8 CPU has been removed"
1517 select BR2_LEGACY
1518 help
1519 The sparchfleonv8 CPU was only supported in a patched gcc
1520 4.4 version. Its support has been removed in favor of the
1521 leon3 CPU starting from gcc 4.8.x.
1522
1523config BR2_sparc_sparcsfleon
1524 bool "sparcsfleon CPU has been removed"
1525 select BR2_LEGACY
1526 help
1527 The sparcsfleon CPU was only supported in a patched gcc 4.4
1528 version. Its support has been removed in favor of the leon3
1529 CPU starting from gcc 4.8.x.
1530
1531config BR2_sparc_sparcsfleonv8
1532 bool "sparcsfleonv8 CPU has been removed"
1533 select BR2_LEGACY
1534 help
1535 The sparcsfleonv8 CPU was only supported in a patched gcc
1536 4.4 version. Its support has been removed in favor of the
1537 leon3 CPU starting from gcc 4.8.x.
1538
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02001539config BR2_PACKAGE_XLIB_LIBPCIACCESS
1540 bool "xlib-libpciaccess option has been renamed"
1541 depends on BR2_PACKAGE_XORG7
1542 select BR2_LEGACY
1543 select BR2_PACKAGE_LIBPCIACCESS
1544 help
1545 libpciaccess neither depends on X11 nor Xlib. Thus the
1546 package has been renamed BR2_PACKAGE_LIBPCIACCESS
1547
Yann E. MORINb581bba2014-09-21 20:38:13 +02001548config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
1549 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001550 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02001551 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
1552 help
1553 The Xceive xc5000 option now also handles older firmwares from
1554 Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
1555 from Cresta, who bought Xceive.
1556
Yann E. MORINdac546e2014-09-21 20:38:12 +02001557config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1558 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001559 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02001560 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1561 help
1562 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1563 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1564 to better account for the fact that a T5 variant exists.
1565
Yann E. MORIN120136e2014-09-21 20:38:09 +02001566config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
1567 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001568 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02001569 help
1570 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
1571 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
1572 select it in:
1573 Target packages -> Hardware handling ->
1574 Firmware -> linux-firmware -> WiFi firmware ->
1575 iwlwifi 3160/726x revision to use (revision 7)
1576
1577config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
1578 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001579 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02001580 help
1581 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
1582 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
1583 select it in:
1584 Target packages -> Hardware handling ->
1585 Firmware -> linux-firmware -> WiFi firmware ->
1586 iwlwifi 3160/726x revision to use (revision 8)
1587
1588###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001589comment "Legacy options removed in 2014.08"
1590
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02001591config BR2_PACKAGE_LIBELF
1592 bool "libelf has been removed"
1593 select BR2_PACKAGE_ELFUTILS
1594 select BR2_LEGACY
1595 help
1596 The libelf package provided an old version of the libelf library
1597 and is deprecated. The libelf library is now provided by the
1598 elfutils package.
1599
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001600config BR2_KERNEL_HEADERS_3_8
1601 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001602 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001603 select BR2_LEGACY
1604 help
1605 Version 3.8.x of the Linux kernel headers have been deprecated
1606 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001607 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001608 automatically selected in your configuration.
1609
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02001610config BR2_PACKAGE_GETTEXT_TOOLS
1611 bool "support for gettext-tools on target has been removed"
1612 select BR2_LEGACY
1613 help
1614 The option to install the gettext utilities on the target
1615 has been removed. This is not necessary as Buildroot is not
1616 designed to provide a full development environment on the
1617 target. gettext tools should be used on the build machine
1618 instead.
1619
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001620config BR2_PACKAGE_PROCPS
1621 bool "procps has been replaced by procps-ng"
1622 select BR2_PACKAGE_PROCPS_NG
1623 select BR2_LEGACY
1624 help
1625 The procps package has been replaced by the equivalent procps-ng.
1626
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02001627config BR2_BINUTILS_VERSION_2_20_1
1628 bool "binutils 2.20.1 has been removed"
1629 select BR2_LEGACY
1630 help
1631 The 2.20.1 version of binutils has been removed. Use a newer
1632 version instead.
1633
1634config BR2_BINUTILS_VERSION_2_21
1635 bool "binutils 2.21 has been removed"
1636 select BR2_LEGACY
1637 help
1638 The 2.21 version of binutils has been removed. Use a newer
1639 version instead.
1640
1641config BR2_BINUTILS_VERSION_2_23_1
1642 bool "binutils 2.23.1 has been removed"
1643 select BR2_LEGACY
1644 help
1645 The 2.23.1 version of binutils has been removed. Use a newer
1646 version instead.
1647
Thomas Petazzoni506b9642014-07-01 20:03:03 +02001648config BR2_UCLIBC_VERSION_0_9_32
1649 bool "uclibc 0.9.32 has been removed"
1650 select BR2_LEGACY
1651 help
1652 The 0.9.32 version of uClibc has been removed. Use a newer
1653 version instead.
1654
Thomas Petazzonid10e0802014-07-01 20:03:06 +02001655config BR2_GCC_VERSION_4_3_X
1656 bool "gcc 4.3.x has been removed"
1657 select BR2_LEGACY
1658 help
1659 The 4.3.x version of gcc has been removed. Use a newer
1660 version instead.
1661
1662config BR2_GCC_VERSION_4_6_X
1663 bool "gcc 4.6.x has been removed"
1664 select BR2_LEGACY
1665 help
1666 The 4.6.x version of gcc has been removed. Use a newer
1667 version instead.
1668
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02001669config BR2_GDB_VERSION_7_4
1670 bool "gdb 7.4 has been removed"
1671 select BR2_LEGACY
1672 help
1673 The 7.4 version of gdb has been removed. Use a newer version
1674 instead.
1675
1676config BR2_GDB_VERSION_7_5
1677 bool "gdb 7.5 has been removed"
1678 select BR2_LEGACY
1679 help
1680 The 7.5 version of gdb has been removed. Use a newer version
1681 instead.
1682
Thomas Petazzonib18dca02014-07-01 20:03:09 +02001683config BR2_BUSYBOX_VERSION_1_19_X
1684 bool "busybox version selection has been removed"
1685 select BR2_LEGACY
1686 help
1687 The possibility of selecting the Busybox version has been
1688 removed. Use the latest version provided by the Busybox
1689 package instead.
1690
1691config BR2_BUSYBOX_VERSION_1_20_X
1692 bool "busybox version selection has been removed"
1693 select BR2_LEGACY
1694 help
1695 The possibility of selecting the Busybox version has been
1696 removed. Use the latest version provided by the Busybox
1697 package instead.
1698
1699config BR2_BUSYBOX_VERSION_1_21_X
1700 bool "busybox version selection has been removed"
1701 select BR2_LEGACY
1702 help
1703 The possibility of selecting the Busybox version has been
1704 removed. Use the latest version provided by the Busybox
1705 package instead.
1706
Ezequiel García07ac0452014-07-05 18:07:40 -03001707config BR2_PACKAGE_LIBV4L_DECODE_TM6000
1708 bool "decode_tm6000"
1709 select BR2_PACKAGE_LIBV4L_UTILS
1710 select BR2_LEGACY
1711 help
1712 This libv4l option has been deprecated and replaced by a single
1713 option to build all the libv4l utilities.
1714
1715config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
1716 bool "ir-keytable"
1717 select BR2_PACKAGE_LIBV4L_UTILS
1718 select BR2_LEGACY
1719 help
1720 This libv4l option has been deprecated and replaced by a single
1721 option to build all the libv4l utilities.
1722
1723config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
1724 bool "v4l2-compliance"
1725 select BR2_PACKAGE_LIBV4L_UTILS
1726 select BR2_LEGACY
1727 help
1728 This libv4l option has been deprecated and replaced by a single
1729 option to build all the libv4l utilities.
1730
1731config BR2_PACKAGE_LIBV4L_V4L2_CTL
1732 bool "v4l2-ctl"
1733 select BR2_PACKAGE_LIBV4L_UTILS
1734 select BR2_LEGACY
1735 help
1736 This libv4l option has been deprecated and replaced by a single
1737 option to build all the libv4l utilities.
1738
1739config BR2_PACKAGE_LIBV4L_V4L2_DBG
1740 bool "v4l2-dbg"
1741 select BR2_PACKAGE_LIBV4L_UTILS
1742 select BR2_LEGACY
1743 help
1744 This libv4l option has been deprecated and replaced by a single
1745 option to build all the libv4l utilities.
1746
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001747###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001748comment "Legacy options removed in 2014.05"
1749
Peter Seiderer4990a382014-04-23 00:12:23 +02001750config BR2_PACKAGE_EVTEST_CAPTURE
1751 bool "evtest-capture support removed (dropped since evtest 1.31)"
1752 select BR2_LEGACY
1753 help
1754 Support for evtest-capture has been removed (dropped from
1755 evtest package since version 1.31), use evemu package
1756 instead.
1757
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001758config BR2_KERNEL_HEADERS_3_6
1759 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001760 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001761 select BR2_LEGACY
1762 help
1763 Version 3.6.x of the Linux kernel headers have been deprecated
1764 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001765 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001766 automatically selected in your configuration.
1767
1768config BR2_KERNEL_HEADERS_3_7
1769 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001770 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001771 select BR2_LEGACY
1772 help
1773 Version 3.7.x of the Linux kernel headers have been deprecated
1774 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001775 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001776 automatically selected in your configuration.
1777
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02001778config BR2_PACKAGE_VALA
1779 bool "vala target package has been removed"
1780 select BR2_LEGACY
1781 help
1782 The 'vala' target package has been removed since it has been
1783 deprecated for more than four buildroot releases.
1784 Note: the host vala package still exists.
1785
Yann E. MORINd6a37912014-04-07 21:58:03 +02001786config BR2_TARGET_TZ_ZONELIST
1787 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
1788
1789config BR2_PACKAGE_TZDATA_ZONELIST
1790 string "tzdata: the timezone list option has been renamed"
1791 help
1792 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
1793 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
1794 menu. You'll need to select BR2_TARGET_TZ_INFO.
1795
1796config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
1797 bool
1798 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
1799 select BR2_LEGACY
1800
Yann E. MORINc97aeb72014-04-05 17:21:43 +02001801config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
1802 bool "Lua command-line editing none has been renamed"
1803 select BR2_LEGACY
1804 help
1805 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
1806 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
1807 it in the corresponding choice.
1808
1809config BR2_PACKAGE_LUA_INTERPRETER_READLINE
1810 bool "Lua command-line editing using readline has been renamed"
1811 select BR2_LEGACY
1812 help
1813 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
1814 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
1815 it in the corresponding choice.
1816
1817config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
1818 bool "Lua command-line editing using linenoise has been renamed"
1819 select BR2_LEGACY
1820 help
1821 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
1822 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
1823 it in the corresponding choice.
1824
Yann E. MORIN365ae612014-03-28 01:00:24 +01001825config BR2_PACKAGE_DVB_APPS_UTILS
1826 bool "dvb-apps utilities now built by default"
1827 select BR2_LEGACY
1828 help
1829 The dvb-apps utilities are now always built when the dvb-apps
1830 package is selected.
1831
Yann E. MORIN971e3312014-03-01 15:52:56 +01001832config BR2_KERNEL_HEADERS_SNAP
1833 bool "Local Linux snapshot support removed"
1834 select BR2_LEGACY
1835 help
1836 Support for using a custom snapshot to install the Linux
1837 kernel headers has been removed.
1838
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001839config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
1840 bool "/dev management by udev removed"
1841 select BR2_LEGACY
1842 help
1843 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001844 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001845
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001846 Therefore, if you are not using 'systemd' as init system, you
1847 must choose 'Dynamic using eudev' in the '/dev management'
1848 menu to get the same behaviour as in your old configuration.
1849
1850 If you are using 'systemd', its internal implementation of
1851 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001852
1853 You must also check the packages depending on 'udev' are still
1854 selected.
1855
1856config BR2_PACKAGE_UDEV
1857 bool "udev is now a virtual package"
1858 select BR2_LEGACY
1859 select BR2_PACKAGE_HAS_UDEV
1860 help
1861 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001862 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001863
1864 Your old configuration refers to packages depending on 'udev',
1865 either for build or at runtime.
1866
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001867 Check that a 'udev' provider is selected. If you are not using
1868 'systemd' as init system, 'eudev' should be selected, which is
1869 the case if '/dev management' is set to 'Dynamic using eudev'.
1870
1871 If you are using 'systemd', its internal implementation of 'udev'
1872 is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001873
1874config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001875 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001876 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001877 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
1878 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001879 help
1880 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001881 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001882
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001883 If you are not using 'systemd' as init system, udev rules
1884 generation will be handled by 'eudev'. Check that
1885 '/dev management' is set to 'Dynamic using eudev' to get
1886 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001887
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001888 If you are using 'systemd', it internal implementation of 'udev'
1889 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001890
1891config BR2_PACKAGE_UDEV_ALL_EXTRAS
1892 bool "udev extras removed"
1893 select BR2_LEGACY
1894 help
1895 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001896 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001897
1898 The option to enable the extra features of 'udev' (gudev, ...)
1899 has been removed. These features are automatically enabled in
1900 the 'udev' providers if the dependencies are selected. For
1901 example, selecting 'libglib2' will trigger the build of gudev.
1902
Bernd Kuhls5562be12014-03-01 16:41:10 +01001903config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
1904 bool "xlib-libpthread-stubs option has been renamed"
1905 depends on BR2_PACKAGE_XORG7
1906 select BR2_LEGACY
1907 select BR2_PACKAGE_LIBPTHREAD_STUBS
1908 help
1909 The pthread stubs neither depend on X11 nor Xlib. Thus the
1910 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
1911
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001912###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01001913comment "Legacy options removed in 2014.02"
1914
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01001915config BR2_sh2
1916 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001917 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01001918 help
1919 Due to an inexistent user base and generally poor Linux
1920 support, the support for the SH2 architecture was removed.
1921
1922config BR2_sh3
1923 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001924 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01001925 help
1926 Due to an inexistent user base and generally poor Linux
1927 support, the support for the SH3 architecture was removed.
1928
1929config BR2_sh3eb
1930 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001931 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01001932 help
1933 Due to an inexistent user base and generally poor Linux
1934 support, the support for the SH3eb architecture was removed.
1935
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01001936config BR2_KERNEL_HEADERS_3_1
1937 bool "kernel headers version 3.1.x are no longer supported"
1938 select BR2_KERNEL_HEADERS_3_2
1939 select BR2_LEGACY
1940 help
1941 Version 3.1.x of the Linux kernel headers have been deprecated
1942 for more than four buildroot releases and are now removed.
1943 As an alternative, version 3.2.x of the headers have been
1944 automatically selected in your configuration.
1945
1946config BR2_KERNEL_HEADERS_3_3
1947 bool "kernel headers version 3.3.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001948 select BR2_KERNEL_HEADERS_3_2
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01001949 select BR2_LEGACY
1950 help
1951 Version 3.3.x of the Linux kernel headers have been deprecated
1952 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001953 As an alternative, version 3.2.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01001954 automatically selected in your configuration.
1955
1956config BR2_KERNEL_HEADERS_3_5
1957 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001958 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01001959 select BR2_LEGACY
1960 help
1961 Version 3.5.x of the Linux kernel headers have been deprecated
1962 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03001963 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01001964 automatically selected in your configuration.
1965
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01001966config BR2_GDB_VERSION_7_2
1967 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02001968 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01001969 select BR2_LEGACY
1970 help
1971 Version 7.2.x of gdb has been deprecated for more than four
1972 buildroot releases and is now removed. As an alternative, gdb
1973 7.5.x has been automatically selected in your configuration.
1974
1975config BR2_GDB_VERSION_7_3
1976 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02001977 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01001978 select BR2_LEGACY
1979 help
1980 Version 7.3.x of gdb has been deprecated for more than four
1981 buildroot releases and is now removed. As an alternative, gdb
1982 7.5.x has been automatically selected in your configuration.
1983
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01001984config BR2_PACKAGE_CCACHE
1985 bool "ccache target package has been removed"
1986 select BR2_LEGACY
1987 help
1988 The 'ccache' target package has been removed since it has been
1989 deprecated for more than four buildroot releases.
1990 Note: using ccache for speeding up builds is still supported.
1991
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01001992config BR2_HAVE_DOCUMENTATION
1993 bool "support for documentation on target has been removed"
1994 select BR2_LEGACY
1995 help
1996 Support for documentation on target has been removed since it has
1997 been deprecated for more than four buildroot releases.
1998
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01001999config BR2_PACKAGE_AUTOMAKE
2000 bool "automake target package has been removed"
2001 select BR2_LEGACY
2002 help
2003 The 'automake' target package has been removed since it has been
2004 deprecated for more than four buildroot releases.
2005 Note: the host automake still exists.
2006
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01002007config BR2_PACKAGE_AUTOCONF
2008 bool "autoconf target package has been removed"
2009 select BR2_LEGACY
2010 help
2011 The 'autoconf' target package has been removed since it has been
2012 deprecated for more than four buildroot releases.
2013 Note: the host autoconf still exists.
2014
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01002015config BR2_PACKAGE_XSTROKE
2016 bool "xstroke has been removed"
2017 select BR2_LEGACY
2018 help
2019 The 'xstroke' package has been removed since it has been
2020 deprecated for more than four buildroot releases.
2021
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01002022config BR2_PACKAGE_LZMA
2023 bool "lzma target package has been removed"
2024 select BR2_LEGACY
2025 help
2026 The 'lzma' target package has been removed since it has been
2027 deprecated for more than four buildroot releases.
2028 Note: generating lzma-compressed rootfs images is still supported.
2029
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01002030config BR2_PACKAGE_TTCP
2031 bool "ttcp has been removed"
2032 select BR2_LEGACY
2033 help
2034 The 'ttcp' package has been removed since it has been
2035 deprecated for more than four buildroot releases.
2036
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002037config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002038 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002039 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002040 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002041 help
2042 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +01002043 to 'libllcp'. We have added a new package for 'libllcp' and bumped
2044 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00002045
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00002046config BR2_PACKAGE_MYSQL_CLIENT
2047 bool "MySQL client renamed to MySQL"
2048 select BR2_LEGACY
2049 select BR2_PACKAGE_MYSQL
2050 help
2051 The option has been renamed BR2_PACKAGE_MYSQL
2052
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01002053config BR2_PACKAGE_SQUASHFS3
2054 bool "squashfs3 has been removed"
2055 select BR2_LEGACY
2056 select BR2_PACKAGE_SQUASHFS
2057 help
2058 The 'squashfs3' package has been removed since it has been
2059 deprecated for more than four buildroot releases. Package
2060 'squashfs' (4) has been selected automatically as replacement.
2061
2062config BR2_TARGET_ROOTFS_SQUASHFS3
2063 bool "squashfs3 rootfs support has been removed"
2064 select BR2_LEGACY
2065 help
2066 Together with the removal of the squashfs3 package, support
2067 for squashfs3 root filesystems has been removed too. Squashfs
2068 root filesystems will automatically use squashfs4 now.
2069
Arnaud Aujon560fe852013-12-15 20:23:12 +01002070config BR2_PACKAGE_NETKITBASE
2071 bool "netkitbase has been removed"
2072 select BR2_LEGACY
2073 help
2074 The 'netkitbase' package has been removed since it has been
2075 deprecated since 2012.11. This package provided 'inetd'
2076 which is replaced by 'xinet' and 'ping' which is replaced by
2077 'busybox' or 'fping'.
2078
2079config BR2_PACKAGE_NETKITTELNET
2080 bool "netkittelnet has been removed"
2081 select BR2_LEGACY
2082 help
2083 The 'netkittelnet' package has been removed since it has
2084 been deprecated since 2012.11. 'busybox' provides a telnet
2085 client and should be used instead.
2086
Francois Perrad63058f82014-01-11 16:42:09 +01002087config BR2_PACKAGE_LUASQL
2088 bool "luasql has been replaced by luasql-sqlite3"
2089 select BR2_PACKAGE_LUASQL_SQLITE3
2090 select BR2_LEGACY
2091 help
2092 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2093
Francois Perrada6c53472014-01-11 16:42:08 +01002094config BR2_PACKAGE_LUACJSON
2095 bool "luacjson has been replaced by lua-cjson"
2096 select BR2_PACKAGE_LUA_CJSON
2097 select BR2_LEGACY
2098 help
2099 The option has been renamed BR2_PACKAGE_LUA_CJSON.
2100
Arnaud Aujon560fe852013-12-15 20:23:12 +01002101###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002102comment "Legacy options removed in 2013.11"
2103
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01002104config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2105 bool "lvm2's 'dmsetup only' option removed"
2106 select BR2_LEGACY
2107 help
2108 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2109 led to problems with other packages that need the full lvm2
2110 suite. Therefore, the option has been replaced with the positive
2111 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2112
2113# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2114# in order to automatically propagate old configs
2115
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01002116config BR2_PACKAGE_QT_JAVASCRIPTCORE
2117 bool "qt javascriptcore option removed"
2118 select BR2_LEGACY
2119 help
2120 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2121 force the activation or disabling of the JIT compiler in the
2122 Qt Javascript interpreter. However, the JIT compiler is not
2123 available for all architectures, so forcing its activation
2124 does not always work. Moreover, Qt knows by itself for which
2125 architectures JIT support is possible, and will
2126 automatically enable it if possible.
2127
2128 Therefore, this option was in fact useless, and causing
2129 build problems when enabled on architectures for which the
2130 JIT support was not available. It has been removed, and
2131 there is no replacement: Qt will enable JIT at compile time
2132 when possible.
2133
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002134config BR2_PACKAGE_MODULE_INIT_TOOLS
2135 bool "module-init-tools replaced by kmod"
2136 select BR2_PACKAGE_KMOD
2137 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01002138 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002139 help
2140 The 'module-init-tools' package has been removed, since it
2141 has been depracated upstream and replaced by 'kmod'.
2142
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02002143config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2144 string "u-boot: the git repository URL option has been renamed"
2145 help
2146 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2147 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2148
2149config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2150 bool
2151 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2152 select BR2_LEGACY
2153
2154# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2155# boot/uboot/Config.in
2156
2157config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2158 string "u-boot: the git repository version option has been renamed"
2159 help
2160 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
2161 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
2162
2163config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
2164 bool
2165 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
2166 select BR2_LEGACY
2167
2168# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
2169# boot/uboot/Config.in
2170
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02002171config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
2172 string "linux: the git repository URL option has been renamed"
2173 help
2174 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
2175 been renamed to
2176 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
2177
2178config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
2179 bool
2180 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
2181 select BR2_LEGACY
2182
2183# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
2184# linux/Config.in
2185
2186config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
2187 string "linux: the git repository version option has been renamed"
2188 help
2189 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
2190 been renamed to
2191 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
2192
2193config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
2194 bool
2195 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
2196 select BR2_LEGACY
2197
2198# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
2199# linux/Config.in
2200
Thomas Petazzoni94c72082013-08-27 19:28:34 +02002201###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002202comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002203
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02002204config BR2_ARM_OABI
2205 bool "ARM OABI support has been removed"
2206 select BR2_LEGACY
2207 help
2208 The support for the ARM OABI was deprecated since a while,
2209 and has been removed completely from Buildroot. It is also
2210 deprecated in upstream gcc, since gcc 4.7. People should
2211 switch to EABI instead, which should not be a problem as
2212 long as you don't have pre-built OABI binaries in your
2213 system that you can't recompile.
2214
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03002215config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
2216 bool "dosfstools dosfsck renamed to fsck.fat"
2217 select BR2_LEGACY
2218 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
2219 help
2220 dosfsck was renamed upstream to fsck.fat for consistency.
2221
2222config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
2223 bool "dosfstools dosfslabel renamed to fatlabel"
2224 select BR2_LEGACY
2225 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
2226 help
2227 doslabel was renamed upstream to fatlabel for consistency.
2228
2229config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
2230 bool "dosfstools mkdosfs renamed to mkfs.fat"
2231 select BR2_LEGACY
2232 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
2233 help
2234 mkdosfs was renamed upstream to mkfs.fat for consistency.
2235
Thomas Petazzonie21db002013-06-30 21:28:57 +02002236config BR2_ELF2FLT
2237 bool "the elf2flt option has been renamed"
2238 select BR2_LEGACY
2239 help
2240 The BR2_ELF2FLT option has been renamed to
2241 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
2242 the package infrastructure.
2243
Thomas Petazzonid8060052013-07-16 10:03:17 +02002244config BR2_VFP_FLOAT
2245 bool "the ARM VFP floating point option has been renamed"
2246 select BR2_LEGACY
2247 help
2248 Due to a major refactoring of the floating-point handling of
2249 the ARM architecture support, the BR2_VFP_FLOAT option has
2250 been replaced with a choice of options that allows to select
2251 between various VFP versions/capabilities.
2252
Samuel Martinba8f82b2013-08-30 06:08:59 +02002253config BR2_PACKAGE_GCC_TARGET
2254 bool "gcc on the target filesystem has been removed"
2255 select BR2_LEGACY
2256 help
2257 The support for gcc in the target filesystem was deprecated
2258 since a while, and has been removed completely from Buildroot.
2259 See Buildroot's documentation for more explanations.
2260
2261config BR2_HAVE_DEVFILES
2262 bool "development files in target filesystem has been removed"
2263 select BR2_LEGACY
2264 help
2265 The installation of the development files in the target
2266 filesystem was deprecated since a while, and has been removed
2267 completely from Buildroot.
2268 See Buildroot's documentation for more explanations.
2269
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002270###############################################################################
2271comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +00002272
2273config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
2274 bool "Realtek 8192 replaced by Realtek 81xx"
2275 select BR2_LEGACY
2276 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
2277 help
2278 Now covers the whole Realtek 81xx familly: 8188/8192.
2279
2280config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
2281 bool "Realtek 8712 replaced by Realtek 87xx"
2282 select BR2_LEGACY
2283 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
2284 help
2285 Now covers the whole Realtek 87xx familly: 8712/8723.
2286
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002287###############################################################################
2288comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002289
Gustavo Zacarias94744212013-04-04 07:29:45 +00002290config BR2_sa110
2291 bool "sa110 ARM target switched to strongarm"
2292 select BR2_LEGACY
2293 select BR2_strongarm
2294 help
2295 The SA110 is the same as a generic StrongARM, it just differs
2296 in speed, peripherals and cache.
2297
2298config BR2_sa1100
2299 bool "sa1100 ARM target switched to strongarm"
2300 select BR2_LEGACY
2301 select BR2_strongarm
2302 help
2303 The SA1100 is the same as a generic StrongARM, it just differs
2304 in speed, peripherals and cache.
2305
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00002306config BR2_PACKAGE_GDISK
2307 bool "gdisk has been replaced by gptfdisk"
2308 select BR2_LEGACY
2309 select BR2_PACKAGE_GPTFDISK
2310 help
2311 The option has been renamed BR2_PACKAGE_GPTFDISK.
2312
2313config BR2_PACKAGE_GDISK_GDISK
2314 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
2315 select BR2_LEGACY
2316 select BR2_PACKAGE_GPTFDISK
2317 select BR2_PACKAGE_GPTFDISK_GDISK
2318 help
2319 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
2320
2321config BR2_PACKAGE_GDISK_SGDISK
2322 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
2323 select BR2_LEGACY
2324 select BR2_PACKAGE_GPTFDISK
2325 select BR2_PACKAGE_GPTFDISK_SGDISK
2326 help
2327 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00002328
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +00002329config BR2_PACKAGE_GDB_HOST
2330 bool "gdb for the host option has been renamed"
2331 select BR2_PACKAGE_HOST_GDB
2332 select BR2_LEGACY
2333 help
2334 Due to the conversion of gdb to the package infrastructure,
2335 the BR2_PACKAGE_GDB_HOST option has been renamed
2336 BR2_PACKAGE_HOST_GDB.
2337
Carsten Schoenert76de0f82013-03-10 08:32:46 +00002338config BR2_PACKAGE_DIRECTB_DITHER_RGB16
2339 bool "DirectFB RGB16 dithering option has been renamed"
2340 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
2341 select BR2_LEGACY
2342 help
2343 The option has been renamed
2344 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
2345
2346config BR2_PACKAGE_DIRECTB_TESTS
2347 bool "DirectFB Tests option has been renamed"
2348 select BR2_PACKAGE_DIRECTFB_TESTS
2349 select BR2_LEGACY
2350 help
2351 The option has been renamed
2352 BR2_PACKAGE_DIRECTFB_TESTS.
2353
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002354###############################################################################
2355comment "Legacy options removed in 2012.11"
2356
Thomas Petazzoni12ccc432013-02-07 11:58:45 +00002357config BR2_PACKAGE_CUSTOMIZE
2358 bool "customize package has been removed"
2359 select BR2_LEGACY
2360 help
2361 The 'customize' special package has been removed. Instead,
2362 we recommend to create either your own packages, or use a
2363 post-build script to customize your root filesystem. See
2364 Buildroot's documentation for more details.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002365
2366config BR2_PACKAGE_XSERVER_xorg
2367 bool "X.org modular server"
2368 select BR2_LEGACY
2369 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
2370 help
2371 The option has been renamed
2372 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
2373
2374config BR2_PACKAGE_XSERVER_tinyx
2375 bool "KDrive / TinyX server"
2376 select BR2_LEGACY
2377 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
2378 help
2379 The option has been renamed
2380 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
2381
2382config BR2_PACKAGE_PTHREAD_STUBS
2383 bool "pthread-stubs option has been renamed"
2384 select BR2_LEGACY
Bernd Kuhls5562be12014-03-01 16:41:10 +01002385 select BR2_PACKAGE_LIBPTHREAD_STUBS
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002386 help
2387 For consistency reason, the pthread-stubs package has been
Bernd Kuhls5562be12014-03-01 16:41:10 +01002388 renamed to libpthread-stubs.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00002389
Yann E. MORIN67eaf702013-06-30 00:38:12 +02002390###############################################################################
2391comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00002392
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +00002393config BR2_PACKAGE_GETTEXT_STATIC
2394 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
2395 select BR2_LEGACY
2396 help
2397 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
2398
2399
2400config BR2_PACKAGE_LIBINTL
2401 bool "libintl"
2402 select BR2_LEGACY
2403 select BR2_PACKAGE_GETTEXT
2404 help
2405 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
2406 only installs the library, not the executables.
2407
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +00002408config BR2_PACKAGE_INPUT_TOOLS_EVTEST
2409 bool "input-tools evtest is now a separate package evtest"
2410 select BR2_LEGACY
2411 select BR2_PACKAGE_EVTEST
2412 help
2413 The evtest program from input-tools is now a separate package.
2414
Sonic Zhang57133822013-05-03 00:39:34 +00002415config BR2_BFIN_FDPIC
2416 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
2417 select BR2_BINFMT_FDPIC
2418 select BR2_LEGACY
2419
2420config BR2_BFIN_FLAT
2421 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
2422 select BR2_BINFMT_FLAT
2423 select BR2_LEGACY
2424
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00002425endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02002426
2427endif # !SKIP_LEGACY