webkitgtk24: remove deprecated package
[buildroot-mgba.git] / Config.in.legacy
CommitLineData
ebcfa987
AVEM
1#
2# Config.in.legacy - support for backward compatibility
3#
f8c56f5f
TDS
4# 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.
ebcfa987
AVEM
7#
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.
f8c56f5f
TDS
14#
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.
94d403d7
AV
19# 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]
f8c56f5f
TDS
59#
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
94d403d7
AV
65# 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.
f8c56f5f
TDS
67#
68# [Example: renaming a string option from FOO to BAR]
69# original symbol:
94d403d7
AV
70# config BR2_FOO_STRING
71# string "Some foo string"
f8c56f5f
TDS
72#
73# becomes:
94d403d7
AV
74# config BR2_BAR_STRING
75# string "Some bar string"
76# default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
f8c56f5f
TDS
77#
78# and in Config.in.legacy:
94d403d7
AV
79# config BR2_FOO_STRING
80# string "The foo string has been renamed"
81# help
82# <suitable help text>
f8c56f5f 83#
94d403d7
AV
84# config BR2_FOO_STRING_WRAP
85# bool
86# default y if BR2_FOO_STRING != ""
87# select BR2_LEGACY
f8c56f5f 88#
94d403d7 89# # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
f8c56f5f
TDS
90#
91# [End of example]
ebcfa987 92
53903a15
AV
93config BR2_SKIP_LEGACY
94 bool
95 option env="SKIP_LEGACY"
96
97if !BR2_SKIP_LEGACY
98
ebcfa987
AVEM
99config 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
a91a5c16
AVEM
112menu "Legacy config options"
113
114if BR2_LEGACY
a25e4a4c 115comment "----------------------------------------------------"
a91a5c16 116comment "Your old configuration uses legacy options that no "
cce5baa8
TDS
117comment "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 "
a91a5c16 120comment "will fail. "
cce5baa8
TDS
121comment "* "
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 "* "
d2e706c3
YM
138comment "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. "
a25e4a4c 142comment "----------------------------------------------------"
a91a5c16 143endif
ebcfa987 144
e782cd5b
YM
145###############################################################################
146comment "Legacy options removed in 2016.11"
147
79c82a35
AV
148config BR2_PACKAGE_WEBKITGTK24
149 bool "webkitgtk 2.4.x removed"
150 select BR2_LEGACY
151 help
152 This legacy package only existed because some other packages
153 depended on that specific version of webkitgtk. However, the
154 other packages have been fixed. webkitgtk 2.4 is full of
155 security issues so it needs to be removed.
156
ea3a7ee0
AV
157config BR2_PACKAGE_TORSMO
158 bool "torsmo removed"
159 select BR2_LEGACY
160 help
161 torsmo has been unmaintained for a long time, and nobody
162 seems to be interested in it.
163
290166f2
AV
164config BR2_PACKAGE_SSTRIP
165 bool "sstrip removed"
166 select BR2_LEGACY
167 help
168 sstrip is unmaintained and potentially harmful. It doesn't
169 save so much compared to normal binutils strip, and there is
170 a big risk of binaries that don't work. Use normal strip
171 instead.
172
133466f5
AV
173config BR2_KERNEL_HEADERS_4_3
174 bool "kernel headers version 4.3.x are no longer supported"
175 select BR2_KERNEL_HEADERS_4_1
176 select BR2_LEGACY
177 help
178 Version 4.3.x of the Linux kernel headers are no longer
179 maintained upstream and are now removed. As an alternative,
180 version 4.1.x of the headers have been automatically
181 selected in your configuration.
182
183config BR2_KERNEL_HEADERS_4_2
184 bool "kernel headers version 4.2.x are no longer supported"
185 select BR2_KERNEL_HEADERS_4_1
186 select BR2_LEGACY
187 help
188 Version 4.2.x of the Linux kernel headers are no longer
189 maintained upstream and are now removed. As an alternative,
190 version 4.1.x of the headers have been automatically
191 selected in your configuration.
192
1c2a63ad
AV
193config BR2_PACKAGE_KODI_ADDON_XVDR
194 bool "kodi-addon-xvdr removed"
195 select BR2_LEGACY
196 help
197 According to the github project page:
198 https://github.com/pipelka/xbmc-addon-xvdr
199 this package is discontinued.
200
3b80ca89
AV
201config BR2_PACKAGE_IPKG
202 bool "ipkg removed"
203 select BR2_LEGACY
204 help
205 ipkg dates back to the early 2000s when Compaq started the
206 handhelds.org project and it hasn't seen development since 2006.
207 Use opkg as a replacement.
208
a7c13c1b
AV
209config BR2_GCC_VERSION_4_7_X
210 bool "gcc 4.7.x support removed"
211 select BR2_LEGACY
212 help
213 Support for gcc version 4.7.x has been removed. The current
214 default version (4.9.x or later) has been selected instead.
215
d8878112
AV
216config BR2_BINUTILS_VERSION_2_24_X
217 bool "binutils version 2.24 support removed"
218 select BR2_LEGACY
219 help
220 Support for binutils version 2.24 has been removed. The
221 current default version (2.26 or later) has been selected
222 instead.
223
8c85a5f0
GZ
224config BR2_PACKAGE_WESTON_RPI
225 bool "Weston propietary RPI support is gone"
226 select BR2_LEGACY
227 help
228 Upstream decided the propietary (rpi-userland) weston composer
229 support wasn't worth the effort so it was removed. Switch to
230 the open VC4 support.
231
20b14466
YM
232config BR2_LINUX_KERNEL_TOOL_CPUPOWER
233 bool "linux-tool cpupower"
234 depends on BR2_LINUX_KERNEL
235 select BR2_LEGACY
236 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
237 help
238 Linux tool cpupower option was renamed.
239
240config BR2_LINUX_KERNEL_TOOL_PERF
241 bool "linux-tool perf"
242 depends on BR2_LINUX_KERNEL
243 select BR2_LEGACY
244 select BR2_PACKAGE_LINUX_TOOLS_PERF
245 help
246 Linux tool perf option was renamed.
247
248config BR2_LINUX_KERNEL_TOOL_SELFTESTS
249 bool "linux-tool selftests"
250 depends on BR2_LINUX_KERNEL
251 select BR2_LEGACY
252 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
253 help
254 Linux tool selftests option was renamed.
255
50332a53
TP
256config BR2_GCC_VERSION_4_8_ARC
257 bool "gcc arc option renamed"
258 select BR2_LEGACY
259 select BR2_GCC_VERSION_ARC
260 help
261 The option that selects the gcc version for the ARC
262 architecture has been renamed to BR2_GCC_VERSION_ARC.
263
3c590a3e
GZ
264config BR2_KERNEL_HEADERS_4_0
265 bool "kernel headers version 4.0.x are no longer supported"
266 select BR2_KERNEL_HEADERS_3_18
267 select BR2_LEGACY
268 help
269 Version 4.0.x of the Linux kernel headers have been deprecated
270 for more than four buildroot releases and are now removed.
271 As an alternative, version 3.18.x of the headers have been
272 automatically selected in your configuration.
273
274config BR2_KERNEL_HEADERS_3_19
275 bool "kernel headers version 3.19.x are no longer supported"
276 select BR2_KERNEL_HEADERS_3_18
277 select BR2_LEGACY
278 help
279 Version 3.19.x of the Linux kernel headers have been deprecated
280 for more than four buildroot releases and are now removed.
281 As an alternative, version 3.18.x of the headers have been
282 automatically selected in your configuration.
283
0e517317
RN
284config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
285 bool "libevas-generic-loaders package removed"
286 select BR2_LEGACY
287 select BR2_PACKAGE_EFL
288 help
289 With EFL 1.18, libevas-generic-loaders is now provided by the efl
290 package.
291
c22b7580
RN
292config BR2_PACKAGE_ELEMENTARY
293 bool "elementary package removed"
294 select BR2_LEGACY
295 select BR2_PACKAGE_EFL
296 help
297 With EFL 1.18, elementary is now provided by the efl package.
298
e782cd5b
YM
299config BR2_LINUX_KERNEL_CUSTOM_LOCAL
300 bool "Linux kernel local directory option removed"
301 help
302 The option to select a local directory as the source of the Linux
303 kernel has been removed. It hurts reproducibility of builds.
304
305 In case you were using this option during development of your
306 Linux kernel, use the override mechanism instead.
307
20ed897b
TP
308###############################################################################
309comment "Legacy options removed in 2016.08"
310
638cfb5e
MH
311config BR2_PACKAGE_SYSTEMD_COMPAT
312 bool "systemd compatibility libraries have been removed"
d246b984 313 select BR2_LEGACY
638cfb5e 314 help
17bccf17 315 The systemd option to enable the compatibility libraries has
638cfb5e
MH
316 been removed. Theses libraries have been useless since a few
317 version, and have been fully dropped from the source since
318 v230.
319
5baa92b0
MN
320config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
321 bool "gst1-plugins-bad liveadder plugin removed"
322 select BR2_LEGACY
323 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
324 help
325 The functionality of the liveadder plugin of the
326 gst1-plugins-bad package has been merged into audiomixer.
327
0f92b19d
AW
328config BR2_PACKAGE_LIBFSLVPUWRAP
329 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
330 select BR2_LEGACY
331 select BR2_PACKAGE_IMX_VPUWRAP
332 help
333 The libfslvpuwrap has been renamed to match the renamed package.
334
64998907
AW
335config BR2_PACKAGE_LIBFSLPARSER
336 bool "libfslparser has been renamed to imx-parser"
337 select BR2_LEGACY
338 select BR2_PACKAGE_IMX_PARSER
339 help
340 The libfslparser has been renamed to match the renamed package.
341
47e6203f
AW
342config BR2_PACKAGE_LIBFSLCODEC
343 bool "libfslcodec has been renamed to imx-codec"
344 select BR2_LEGACY
345 select BR2_PACKAGE_IMX_CODEC
346 help
347 The libfslcodec has been renamed to match the renamed package.
348
b5d99008
CS
349config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
350 bool "FIT support in uboot-tools has been refactored"
351 select BR2_LEGACY
352 select BR2_PACKAGE_DTC
353 select BR2_PACKAGE_DTC_PROGRAMS
354 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
355 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
356 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
357 help
358 This option has been removed in favor of a more fine-grained
359 configuration, which is recommended. Selecting this option
360 enables FIT and FIT signature support for the target packages.
361 It will also select the dtc and openssl packages.
362
f253c146
WB
363config BR2_PTHREADS_OLD
364 bool "linuxthreads (stable/old)"
365 select BR2_LEGACY
366 help
367 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
368 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
369
ae466a60
TP
370config BR2_BINUTILS_VERSION_2_23_X
371 bool "binutils 2.23 removed"
372 select BR2_LEGACY
373 help
374 Binutils 2.23 has been removed, using a newer version is
375 recommended.
376
500de259
TP
377config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
378 bool "eglibc support has been removed"
379 select BR2_LEGACY
380 help
381 The eglibc project no longer exists, as it has been merged
382 back into the glibc project. Therefore, support for eglibc
383 has been removed, and glibc should be used instead.
384
20ed897b
TP
385config BR2_GDB_VERSION_7_8
386 bool "gdb 7.8 has been removed"
387 select BR2_LEGACY
388 help
389 The 7.8 version of gdb has been removed. Use a newer version
390 instead.
391
f0c94704 392###############################################################################
2661c4f1 393comment "Legacy options removed in 2016.05"
f0c94704 394
3380da69
GZ
395config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
396 bool "openvpn polarssl crypto backend removed"
397 select BR2_LEGACY
398 help
399 The OpenVPN polarssl crypto backend option has been removed.
400 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
401 compatible with mbedtls (polarssl) series 2.x which is the
402 version provided in buildroot. And both can't coexist.
403 It now uses OpenSSL as the only option.
404
405
4dfc2cb5
MB
406config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
407 bool "nginx http spdy module removed"
408 select BR2_LEGACY
409 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
410 help
411 The ngx_http_spdy_module has been superseded by the
412 ngx_http_v2_module since nginx v1.9.5. The
413 ngx_http_v2_module modules has been automatically selected
414 in your configuration.
415
0c956f2d
GZ
416config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
417 bool "gst1-plugins-bad rtp plugin moved to good"
418 select BR2_LEGACY
419 help
420 The rtp plugin has been moved from gst1-plugins-base to
421 gst1-plugins-good.
422
4196cf90
GZ
423config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
424 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
425 select BR2_LEGACY
426 help
427 The mpg123 plugin has been moved from gst1-plugins-bad to
428 gst1-plugins-ugly.
429
8490e833
GZ
430config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
431 bool "PowerPC Sourcery toolchain has been removed"
432 select BR2_LEGACY
433 help
434 The Sourcery CodeBench toolchain for the PowerPC
435 architecture has been removed, as it was very old, not
436 maintained, and causing numerous build failures with modern
437 userspace packages.
438
439config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
440 bool "PowerPC Sourcery E500v2 toolchain has been removed"
441 select BR2_LEGACY
442 help
443 The Sourcery CodeBench toolchain for the PowerPC E500v2
444 architecture has been removed, as it was very old, not
445 maintained, and causing numerous build failures with modern
446 userspace packages.
447
6cb4814c
TP
448config BR2_x86_i386
449 bool "x86 i386 support removed"
7aaa730c 450 select BR2_LEGACY
6cb4814c
TP
451 help
452 The support for the i386 processors of the x86 architecture
453 has been removed.
454
940bfe2f
JC
455config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
456 bool "qt5webkit-examples package removed"
457 select BR2_LEGACY
458 help
459 The qt5webkit-examples package has been removed, since it
460 was removed from upstream starting from Qt 5.6.
461
f75ee80d
JC
462config BR2_PACKAGE_QT5QUICK1
463 bool "qt5quick1 package removed"
464 select BR2_LEGACY
465 help
466 The qt5quick1 package has been removed, since it was removed
467 from upstream starting from Qt 5.6.
468
21b25d28
GZ
469config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
470 bool "uboot custom patch dir removed"
471 select BR2_LEGACY
472 help
473 The uboot custom patch directory option has been removed. Use
474 the improved BR2_TARGET_UBOOT_PATCH option instead.
475
f80ad2fd
GZ
476config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
477 bool "xf86-input-void removed"
478 select BR2_LEGACY
479 help
480 The xf86-input-void package has been removed, there's no need
481 for it in any modern (post-2007) xorg server.
482
b8de1788
GZ
483config BR2_KERNEL_HEADERS_3_17
484 bool "kernel headers version 3.17.x are no longer supported"
a26aa968 485 select BR2_KERNEL_HEADERS_3_14
b8de1788
GZ
486 select BR2_LEGACY
487 help
488 Version 3.17.x of the Linux kernel headers have been deprecated
489 for more than four buildroot releases and are now removed.
a26aa968 490 As an alternative, version 3.14.x of the headers have been
b8de1788
GZ
491 automatically selected in your configuration.
492
ffc324ea
GZ
493config BR2_GDB_VERSION_7_7
494 bool "gdb 7.7 has been removed"
495 select BR2_LEGACY
496 help
497 The 7.7 version of gdb has been removed. Use a newer version
498 instead.
499
75945ddc
GZ
500config BR2_PACKAGE_FOOMATIC_FILTERS
501 bool "foomatic-filters"
502 select BR2_LEGACY
503 help
504 The foomatic-filters package was removed.
505
7bd9dbc1
GZ
506config BR2_PACKAGE_SAMBA
507 bool "samba"
508 select BR2_LEGACY
509 help
510 The samba package was removed in favour of samba4 since the
511 3.x series isn't supported by upstream any longer.
512
6922b41d
BK
513config BR2_PACKAGE_KODI_WAVPACK
514 bool "wavpack"
515 select BR2_LEGACY
516 help
517 wavpack support was removed in favour of ffmpeg:
518 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
519
75ce17d0
BK
520config BR2_PACKAGE_KODI_RSXS
521 bool "rsxs support in Kodi was moved to an addon"
522 select BR2_LEGACY
523 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
524 help
525 rsxs support in Kodi was moved to an addon
526
56b80ece
BK
527config BR2_PACKAGE_KODI_GOOM
528 bool "Goom support in Kodi was moved to an addon"
529 select BR2_LEGACY
530 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
531 help
532 Goom support in Kodi was moved to an addon
533
e5a073ac
GE
534config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
535 bool "systemd all extras option has been removed"
536 select BR2_LEGACY
537 select BR2_PACKAGE_XZ
538 select BR2_PACKAGE_LIBGCRYPT
539 help
540 The systemd option to enable "all extras" has been
541 removed. To get the same features, the libgcrypt and xz
542 package should now be enabled.
543
8c0a367d
GZ
544config BR2_GCC_VERSION_4_5_X
545 bool "gcc 4.5.x has been removed"
546 select BR2_LEGACY
547 help
548 The 4.5.x version of gcc has been removed. Use a newer
549 version instead.
550
007c2ce9
BK
551config BR2_PACKAGE_SQLITE_READLINE
552 bool "command-line editing support was updated"
553 select BR2_PACKAGE_NCURSES
554 select BR2_PACKAGE_READLINE
555 select BR2_LEGACY
556 help
557 This option was removed in favour of the sqlite package
558 deciding itself depending on the enabled packages whether
559 command-line editing should be enabled, it also also takes
560 libedit into account.
561
f0c94704
LC
562###############################################################################
563comment "Legacy options removed in 2016.02"
564
f39ac4d2
BK
565config BR2_PACKAGE_DOVECOT_BZIP2
566 bool "bzip2 support option has been removed"
567 select BR2_LEGACY
568 select BR2_PACKAGE_BZIP2
569 help
570 Bzip2 support is built if the bzip2 package is selected.
571
572config BR2_PACKAGE_DOVECOT_ZLIB
573 bool "zlib support option has been removed"
574 select BR2_LEGACY
575 select BR2_PACKAGE_ZLIB
576 help
577 Zlib support is built if the zlib package is selected.
578
ead1df42
JK
579config BR2_PACKAGE_E2FSPROGS_FINDFS
580 bool "e2fsprogs findfs option has been removed"
581 select BR2_LEGACY
582 help
583 This option attempted to enable findfs capabilities from
584 e2fsprogs but has not worked since July 2015 (due to
585 packaging changes). One can use BusyBox's findfs support or
586 enable the BR2_PACKAGE_UTIL_LINUX_FINDFS option.
587
b1063a01
RN
588config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
589 bool "openpowerlink debug option has been removed"
590 select BR2_LEGACY
591 help
592 This option depends on BR2_ENABLE_DEBUG which should not be used
593 by packages anymore.
594
595config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
596 bool "openpowerlink package has been updated"
597 select BR2_LEGACY
598 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
599 help
600 openpowerlink kernel modules are built if the
601 kernel stack library is selected.
602
603config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
604 bool "openpowerlink package has been updated"
605 select BR2_LEGACY
606 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
607 help
608 The user space support has been split in two part:
609 - a monolitic user space library
610 - a user spae deamon driver
611
e3e0583f
YM
612config BR2_LINUX_KERNEL_SAME_AS_HEADERS
613 bool "using the linux headers version for the kernel has been removed"
614 select BR2_LEGACY
615 help
616 The option to use the version of the kernel headers for the
617 kernel to build has been removed.
618
619 There is now the converse, better-suited and more versatile
620 option to use the kernel version for the linux headers.
621
d37ce8e1
OS
622config BR2_PACKAGE_CUPS_PDFTOPS
623 bool "Pdftops support has been removed from Cups"
624 select BR2_LEGACY
625 help
626 Pdftops support has been removed from the cups package
627 It is now part of the cups-filters package.
628
d8da5f10
GZ
629config BR2_KERNEL_HEADERS_3_16
630 bool "kernel headers version 3.16.x are no longer supported"
a26aa968 631 select BR2_KERNEL_HEADERS_3_14
d8da5f10
GZ
632 select BR2_LEGACY
633 help
634 Version 3.16.x of the Linux kernel headers have been deprecated
635 for more than four buildroot releases and are now removed.
a26aa968 636 As an alternative, version 3.14.x of the headers have been
d8da5f10
GZ
637 automatically selected in your configuration.
638
af45a4f4
YY
639config BR2_PACKAGE_PYTHON_PYXML
640 bool "python-pyxml package has been removed"
641 select BR2_LEGACY
642 help
643 PyXML is obsolete and its functionality is covered either via
644 native Python XML support or python-lxml package.
645
d29c7196
SN
646# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
647config BR2_ENABLE_SSP
648 bool "Stack Smashing protection now has different levels"
649 help
650 The protection offered by SSP can now be selected from different
651 protection levels. Be sure to review the SSP level in the build
652 options menu.
653
1e3d2cad 654config BR2_PACKAGE_DIRECTFB_CLE266
e989ddbe 655 bool "cle266 driver for directfb removed"
1e3d2cad
GZ
656 select BR2_LEGACY
657 help
658 The cle266 directfb driver support has been removed.
659 It doesn't build in the latest version and it's unlikely
660 anyone has any use for it.
661
662config BR2_PACKAGE_DIRECTFB_UNICHROME
e989ddbe 663 bool "unichrome driver for directfb removed"
1e3d2cad
GZ
664 select BR2_LEGACY
665 help
666 The unichrome directfb driver support has been removed.
667 It doesn't build in the latest version and it's unlikely
668 anyone has any use for it.
669
820e1685
RN
670config BR2_PACKAGE_LIBELEMENTARY
671 bool "libelementary has been renamed to elementary"
672 select BR2_LEGACY
673 select BR2_PACKAGE_ELEMENTARY
674 help
675 The libelementary package has been renamed to match the upstream
676 name.
677
a9d1f5f6
RN
678config BR2_PACKAGE_LIBEINA
679 bool "libeina package has been removed"
680 select BR2_LEGACY
681 select BR2_PACKAGE_EFL
682 help
1f83a7a7 683 With EFL 1.15, libeina is now provided by the efl package.
a9d1f5f6 684
49700f08
RN
685config BR2_PACKAGE_LIBEET
686 bool "libeet package has been removed"
687 select BR2_LEGACY
688 select BR2_PACKAGE_EFL
689 help
1f83a7a7 690 With EFL 1.15, libeet is now provided by the efl package.
49700f08 691
e5989d6c
RN
692config BR2_PACKAGE_LIBEVAS
693 bool "libevas package has been removed"
694 select BR2_LEGACY
695 select BR2_PACKAGE_EFL
696 help
1f83a7a7 697 With EFL 1.15, libevas is now provided by the efl package.
e5989d6c 698
1fe1b60b
RN
699config BR2_PACKAGE_LIBECORE
700 bool "libecore package has been removed"
701 select BR2_LEGACY
702 select BR2_PACKAGE_EFL
703 help
1f83a7a7 704 With EFL 1.15, libecore is now provided by the efl package.
1fe1b60b 705
8c05c38d
RN
706config BR2_PACKAGE_LIBEDBUS
707 bool "libedbus package has been removed"
708 select BR2_LEGACY
709 select BR2_PACKAGE_EFL
710 help
1f83a7a7 711 With EFL 1.15, libedbus is now provided by the efl package.
8c05c38d 712
d2b042c1
RN
713config BR2_PACKAGE_LIBEFREET
714 bool "libefreet package has been removed"
715 select BR2_LEGACY
716 select BR2_PACKAGE_EFL
717 help
1f83a7a7 718 With EFL 1.15, libefreet is now provided by the efl package.
d2b042c1 719
e155c957
RN
720config BR2_PACKAGE_LIBEIO
721 bool "libeio package has been removed"
722 select BR2_LEGACY
723 select BR2_PACKAGE_EFL
724 help
1f83a7a7 725 With EFL 1.15, libeio is now provided by the efl package.
e155c957 726
b728fb77
RN
727config BR2_PACKAGE_LIBEMBRYO
728 bool "libembryo package has been removed"
729 select BR2_LEGACY
730 select BR2_PACKAGE_EFL
731 help
1f83a7a7 732 With EFL 1.15, libembryo is now provided by the efl package.
b728fb77 733
4c93c107
RN
734config BR2_PACKAGE_LIBEDJE
735 bool "libedje package has been removed"
736 select BR2_LEGACY
737 select BR2_PACKAGE_EFL
738 help
1f83a7a7 739 With EFL 1.15, libedje is now provided by the efl package.
4c93c107 740
905dba10
RN
741config BR2_PACKAGE_LIBETHUMB
742 bool "libethumb package has been removed"
743 select BR2_LEGACY
744 select BR2_PACKAGE_EFL
745 help
1f83a7a7 746 With EFL 1.15, libethumb is now provided by the efl package.
905dba10 747
f0c94704
LC
748config BR2_PACKAGE_INFOZIP
749 bool "infozip option has been renamed to zip"
750 select BR2_LEGACY
751 select BR2_PACKAGE_ZIP
752 help
753 Info-Zip's Zip package has been renamed from infozip to zip,
754 to avoid ambiguities with Info-Zip's UnZip which has been added
755 in the unzip package.
756
a2d16600 757config BR2_BR2_PACKAGE_NODEJS_0_10_X
75b70492 758 bool "nodejs 0.10.x option removed"
a2d16600
MB
759 select BR2_LEGACY
760 select BR2_PACKAGE_NODEJS
761 help
75b70492
MB
762 nodejs 0.10.x option has been removed. 0.10.x is now
763 automatically chosen for ARMv5 architectures only and the latest
764 nodejs for all other supported architectures. The correct nodejs
765 version has been automatically selected in your configuration.
a2d16600 766
a314b878
MB
767config BR2_BR2_PACKAGE_NODEJS_0_12_X
768 bool "nodejs version 0.12.x has been removed"
769 select BR2_LEGACY
770 select BR2_PACKAGE_NODEJS
771 help
772 nodejs version 0.12.x has been removed. As an alternative,
773 the latest nodejs version has been automatically selected in
774 your configuration.
775
90bf67c0
MB
776config BR2_BR2_PACKAGE_NODEJS_4_X
777 bool "nodejs version 4.x has been removed"
778 select BR2_LEGACY
779 select BR2_PACKAGE_NODEJS
780 help
781 nodejs version 4.x has been removed. As an alternative,
782 the latest nodejs version has been automatically selected in
783 your configuration.
784
16b8e813 785###############################################################################
ae46e8f9
TP
786comment "Legacy options removed in 2015.11"
787
301e8ffb
PS
788config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
789 bool "gst1-plugins-bad real plugin has been removed"
790 select BR2_LEGACY
791 help
792 The real plugin from GStreamer 1 bad plugins has been
793 removed.
794
f7dd5cb2
PS
795config BR2_PACKAGE_MEDIA_CTL
796 bool "media-ctl package has been removed"
797 select BR2_LEGACY
798 select BR2_PACKAGE_LIBV4L
799 select BR2_PACKAGE_LIBV4L_UTILS
800 help
801 media-ctl source and developement have been moved to
802 v4l-utils since June 2014. For an up-to-date media-ctl
803 version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
804
f8031339
RN
805config BR2_PACKAGE_SCHIFRA
806 bool "schifra package has been removed"
758c5c7f 807 select BR2_LEGACY
f8031339
RN
808 help
809 Schifra package has been maked broken since 2014.11 release and
810 haven't been fixed since then.
811
7e5ddbcb
MH
812config BR2_PACKAGE_ZXING
813 bool "zxing option has been renamed"
814 select BR2_LEGACY
815 select BR2_PACKAGE_ZXING_CPP
816 help
817 ZXing no longer provides the cpp bindings, it has been renamed to
818 BR2_PACKAGE_ZXING_CPP which uses a new upstream.
819
4d131b4d
YM
820# Since FreeRDP has new dependencies, protect this legacy to avoid the
821# infamous "unmet direct dependencies" kconfig error.
822config BR2_PACKAGE_FREERDP_CLIENT
823 bool "freerdp client option renamed"
824 depends on BR2_PACKAGE_FREERDP
758c5c7f 825 select BR2_LEGACY
4d131b4d
YM
826 select BR2_PACKAGE_FREERDP_CLIENT_X11
827
a658c4d1
GZ
828config BR2_PACKAGE_BLACKBOX
829 bool "blackbox package has been removed"
830 select BR2_LEGACY
831 help
832 Upstream is dead and the package has been deprecated for
833 some time. There are other alternative maintained WMs.
834
4ac4bc32
GZ
835config BR2_KERNEL_HEADERS_3_0
836 bool "kernel headers version 3.0.x are no longer supported"
837 select BR2_KERNEL_HEADERS_3_2
838 select BR2_LEGACY
839 help
840 Version 3.0.x of the Linux kernel headers have been deprecated
841 for more than four buildroot releases and are now removed.
842 As an alternative, version 3.2.x of the headers have been
843 automatically selected in your configuration.
844
845config BR2_KERNEL_HEADERS_3_11
846 bool "kernel headers version 3.11.x are no longer supported"
a26aa968 847 select BR2_KERNEL_HEADERS_3_10
4ac4bc32
GZ
848 select BR2_LEGACY
849 help
850 Version 3.11.x of the Linux kernel headers have been deprecated
851 for more than four buildroot releases and are now removed.
a26aa968 852 As an alternative, version 3.10.x of the headers have been
4ac4bc32
GZ
853 automatically selected in your configuration.
854
855config BR2_KERNEL_HEADERS_3_13
856 bool "kernel headers version 3.13.x are no longer supported"
a26aa968 857 select BR2_KERNEL_HEADERS_3_12
4ac4bc32
GZ
858 select BR2_LEGACY
859 help
860 Version 3.13.x of the Linux kernel headers have been deprecated
861 for more than four buildroot releases and are now removed.
a26aa968 862 As an alternative, version 3.12.x of the headers have been
4ac4bc32
GZ
863 automatically selected in your configuration.
864
865config BR2_KERNEL_HEADERS_3_15
866 bool "kernel headers version 3.15.x are no longer supported"
a26aa968 867 select BR2_KERNEL_HEADERS_3_14
4ac4bc32
GZ
868 select BR2_LEGACY
869 help
870 Version 3.15.x of the Linux kernel headers have been deprecated
871 for more than four buildroot releases and are now removed.
a26aa968 872 As an alternative, version 3.14.x of the headers have been
4ac4bc32
GZ
873 automatically selected in your configuration.
874
80404e8c
TP
875config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
876 bool "DirectFB example df_andi has been removed"
758c5c7f 877 select BR2_LEGACY
80404e8c
TP
878 select BR2_PACKAGE_DIRECTFB_EXAMPLES
879 help
880 The per-DirectFB example options have been removed. The
881 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
882 examples.
883
884config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
885 bool "DirectFB example df_bltload has been removed"
758c5c7f 886 select BR2_LEGACY
80404e8c
TP
887 select BR2_PACKAGE_DIRECTFB_EXAMPLES
888 help
889 The per-DirectFB example options have been removed. The
890 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
891 examples.
892
893config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
894 bool "DirectFB example df_cpuload has been removed"
758c5c7f 895 select BR2_LEGACY
80404e8c
TP
896 select BR2_PACKAGE_DIRECTFB_EXAMPLES
897 help
898 The per-DirectFB example options have been removed. The
899 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
900 examples.
901
902config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
903 bool "DirectFB example df_databuffer has been removed"
758c5c7f 904 select BR2_LEGACY
80404e8c
TP
905 select BR2_PACKAGE_DIRECTFB_EXAMPLES
906 help
907 The per-DirectFB example options have been removed. The
908 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
909 examples.
910
911config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
912 bool "DirectFB example df_dioload has been removed"
758c5c7f 913 select BR2_LEGACY
80404e8c
TP
914 select BR2_PACKAGE_DIRECTFB_EXAMPLES
915 help
916 The per-DirectFB example options have been removed. The
917 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
918 examples.
919
920config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
921 bool "DirectFB example df_dok has been removed"
758c5c7f 922 select BR2_LEGACY
80404e8c
TP
923 select BR2_PACKAGE_DIRECTFB_EXAMPLES
924 help
925 The per-DirectFB example options have been removed. The
926 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
927 examples.
928
929config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
930 bool "DirectFB example df_drivertest has been removed"
758c5c7f 931 select BR2_LEGACY
80404e8c
TP
932 select BR2_PACKAGE_DIRECTFB_EXAMPLES
933 help
934 The per-DirectFB example options have been removed. The
935 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
936 examples.
937
80404e8c
TP
938config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
939 bool "DirectFB example df_fire has been removed"
758c5c7f 940 select BR2_LEGACY
80404e8c
TP
941 select BR2_PACKAGE_DIRECTFB_EXAMPLES
942 help
943 The per-DirectFB example options have been removed. The
944 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
945 examples.
946
947config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
948 bool "DirectFB example df_flip has been removed"
758c5c7f 949 select BR2_LEGACY
80404e8c
TP
950 select BR2_PACKAGE_DIRECTFB_EXAMPLES
951 help
952 The per-DirectFB example options have been removed. The
953 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
954 examples.
955
956config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
957 bool "DirectFB example df_fonts has been removed"
758c5c7f 958 select BR2_LEGACY
80404e8c
TP
959 select BR2_PACKAGE_DIRECTFB_EXAMPLES
960 help
961 The per-DirectFB example options have been removed. The
962 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
963 examples.
964
965config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
966 bool "DirectFB example df_input has been removed"
758c5c7f 967 select BR2_LEGACY
80404e8c
TP
968 select BR2_PACKAGE_DIRECTFB_EXAMPLES
969 help
970 The per-DirectFB example options have been removed. The
971 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
972 examples.
973
974config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
975 bool "DirectFB example df_joystick has been removed"
758c5c7f 976 select BR2_LEGACY
80404e8c
TP
977 select BR2_PACKAGE_DIRECTFB_EXAMPLES
978 help
979 The per-DirectFB example options have been removed. The
980 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
981 examples.
982
983config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
984 bool "DirectFB example df_knuckles has been removed"
758c5c7f 985 select BR2_LEGACY
80404e8c
TP
986 select BR2_PACKAGE_DIRECTFB_EXAMPLES
987 help
988 The per-DirectFB example options have been removed. The
989 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
990 examples.
991
992config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
993 bool "DirectFB example df_layer has been removed"
758c5c7f 994 select BR2_LEGACY
80404e8c
TP
995 select BR2_PACKAGE_DIRECTFB_EXAMPLES
996 help
997 The per-DirectFB example options have been removed. The
998 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
999 examples.
1000
1001config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
1002 bool "DirectFB example df_matrix has been removed"
758c5c7f 1003 select BR2_LEGACY
80404e8c
TP
1004 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1005 help
1006 The per-DirectFB example options have been removed. The
1007 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1008 examples.
1009
1010config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
1011 bool "DirectFB example df_matrix_water has been removed"
758c5c7f 1012 select BR2_LEGACY
80404e8c
TP
1013 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1014 help
1015 The per-DirectFB example options have been removed. The
1016 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1017 examples.
1018
1019config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
1020 bool "DirectFB example df_neo has been removed"
758c5c7f 1021 select BR2_LEGACY
80404e8c
TP
1022 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1023 help
1024 The per-DirectFB example options have been removed. The
1025 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1026 examples.
1027
1028config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
1029 bool "DirectFB example df_netload has been removed"
758c5c7f 1030 select BR2_LEGACY
80404e8c
TP
1031 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1032 help
1033 The per-DirectFB example options have been removed. The
1034 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1035 examples.
1036
1037config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
1038 bool "DirectFB example df_palette has been removed"
1039 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1040 help
1041 The per-DirectFB example options have been removed. The
1042 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1043 examples.
1044
1045config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
1046 bool "DirectFB example df_particle has been removed"
758c5c7f 1047 select BR2_LEGACY
80404e8c
TP
1048 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1049 help
1050 The per-DirectFB example options have been removed. The
1051 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1052 examples.
1053
1054config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
1055 bool "DirectFB example df_porter has been removed"
758c5c7f 1056 select BR2_LEGACY
80404e8c
TP
1057 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1058 help
1059 The per-DirectFB example options have been removed. The
1060 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1061 examples.
1062
1063config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
1064 bool "DirectFB example df_stress has been removed"
1065 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1066 help
1067 The per-DirectFB example options have been removed. The
1068 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1069 examples.
1070
1071config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
1072 bool "DirectFB example df_texture has been removed"
758c5c7f 1073 select BR2_LEGACY
80404e8c
TP
1074 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1075 help
1076 The per-DirectFB example options have been removed. The
1077 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1078 examples.
1079
1080config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
1081 bool "DirectFB example df_video has been removed"
758c5c7f 1082 select BR2_LEGACY
80404e8c
TP
1083 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1084 help
1085 The per-DirectFB example options have been removed. The
1086 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1087 examples.
1088
1089config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1090 bool "DirectFB example df_video_particle has been removed"
758c5c7f 1091 select BR2_LEGACY
80404e8c
TP
1092 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1093 help
1094 The per-DirectFB example options have been removed. The
1095 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1096 examples.
1097
1098config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1099 bool "DirectFB example df_window has been removed"
758c5c7f 1100 select BR2_LEGACY
80404e8c
TP
1101 select BR2_PACKAGE_DIRECTFB_EXAMPLES
1102 help
1103 The per-DirectFB example options have been removed. The
1104 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1105 examples.
1106
2b78fb21
GB
1107config BR2_PACKAGE_KOBS_NG
1108 bool "kobs-ng was replaced by imx-kobs"
1109 select BR2_LEGACY
1110 select BR2_PACKAGE_IMX_KOBS
1111 help
1112 The outdated kobs-ng has been replaced by the Freescale-
1113 maintained imx-kobs package.
1114
11573f5a
TP
1115config BR2_PACKAGE_SAWMAN
1116 bool "sawman package removed"
1117 select BR2_LEGACY
1118 select BR2_PACKAGE_DIRECTFB_SAWMAN
1119 help
1120 This option has been removed because the sawman package no
1121 longer exists: it was merged inside DirectFB itself. This
1122 feature can now be enabled using the
1123 BR2_PACKAGE_DIRECTFB_SAWMAN option.
1124
ae46e8f9
TP
1125config BR2_PACKAGE_DIVINE
1126 bool "divine package removed"
1127 select BR2_LEGACY
1128 select BR2_PACKAGE_DIRECTFB_DIVINE
1129 help
1130 This option has been removed because the divine package no
1131 longer exists: it was merged inside DirectFB itself. This
1132 feature can now be enabled using the
1133 BR2_PACKAGE_DIRECTFB_DIVINE option.
1134
1135###############################################################################
16b8e813
GZ
1136comment "Legacy options removed in 2015.08"
1137
9d9f1a92
BK
1138config BR2_PACKAGE_KODI_PVR_ADDONS
1139 bool "Kodi PVR addon was split"
1140 select BR2_LEGACY
2579ec20 1141 select BR2_PACKAGE_KODI_PVR_ARGUSTV
a69eca43 1142 select BR2_PACKAGE_KODI_PVR_DVBLINK
6894c6c7 1143 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
313e45cd 1144 select BR2_PACKAGE_KODI_PVR_FILMON
6940d66a 1145 select BR2_PACKAGE_KODI_PVR_HTS
8c326ff8 1146 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
a571287d 1147 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
afb2f155 1148 select BR2_PACKAGE_KODI_PVR_MYTHTV
0757c7d3 1149 select BR2_PACKAGE_KODI_PVR_NEXTPVR
805e9c15 1150 select BR2_PACKAGE_KODI_PVR_NJOY
8776003d 1151 select BR2_PACKAGE_KODI_PVR_PCTV
70cf949f 1152 select BR2_PACKAGE_KODI_PVR_STALKER
610a3701 1153 select BR2_PACKAGE_KODI_PVR_VBOX
7457d487 1154 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
eaf250c1 1155 select BR2_PACKAGE_KODI_PVR_VUPLUS
967a4e9a 1156 select BR2_PACKAGE_KODI_PVR_WMC
9d9f1a92
BK
1157 help
1158 Kodi PVR addon was split into seperate modules
1159
f84cc202
GZ
1160config BR2_BINUTILS_VERSION_2_23_2
1161 bool "binutils 2.23 option renamed"
1162 select BR2_LEGACY
f84cc202 1163 help
ae466a60
TP
1164 Binutils 2.23.2 has been removed, using a newer version is
1165 recommended.
f84cc202
GZ
1166
1167config BR2_BINUTILS_VERSION_2_24
1168 bool "binutils 2.24 option renamed"
1169 select BR2_LEGACY
1170 select BR2_BINUTILS_VERSION_2_24_X
1171 help
1172 The binutils version option has been renamed to match the
1173 same patchlevel logic used by gcc. The new option is now
1174 BR2_BINUTILS_VERSION_2_24_X.
1175
1176config BR2_BINUTILS_VERSION_2_25
1177 bool "binutils 2.25 option renamed"
1178 select BR2_LEGACY
1179 select BR2_BINUTILS_VERSION_2_25_X
1180 help
1181 The binutils version option has been renamed to match the
1182 same patchlevel logic used by gcc. The new option is now
1183 BR2_BINUTILS_VERSION_2_25_X.
1184
1326e761
RN
1185config BR2_PACKAGE_PERF
1186 bool "perf option has been renamed"
1187 select BR2_LEGACY
1188 select BR2_LINUX_KERNEL_TOOL_PERF
1189 help
1190 The perf package has been moved as a Linux tools package,
1191 and the option to enable it is now
1192 BR2_LINUX_KERNEL_TOOL_PERF.
1193
2f845953
TP
1194config BR2_BINUTILS_VERSION_2_22
1195 bool "binutils 2.22 removed"
1196 select BR2_LEGACY
1197 help
1198 Binutils 2.22 has been removed, using a newer version is
1199 recommended.
1200
4c0613e7
GB
1201config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1202 bool "gpu-viv-bin-mx6q"
1203 select BR2_LEGACY
1204 select BR2_PACKAGE_IMX_GPU_VIV
1205 help
1206 Vivante graphics libraries have been renamed to
1207 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1208 name.
1209
7742abe0
MW
1210config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
1211 depends on BR2_PACKAGE_PYTHON
1212 bool "libsemanage python bindings removed"
758c5c7f 1213 select BR2_LEGACY
7742abe0
MW
1214 help
1215 This option has been removed, since the libsemanage Python
1216 bindings on the target were not useful.
1217
16b8e813
GZ
1218config BR2_TARGET_UBOOT_NETWORK
1219 bool "U-Boot custom network settings removed"
1220 select BR2_LEGACY
1221 help
1222 U-Boot's custom network settings options have been removed.
1223
120136ee 1224###############################################################################
fd0e5f6b 1225comment "Legacy options removed in 2015.05"
665e13c8 1226
e3904a89
ML
1227config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1228 bool "jffs2 16kB erasesize NAND flash option renamed"
1229 select BR2_LEGACY
1230 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1231 help
1232 The JFFS2 NAND flash options now longer include the page
1233 size.
1234
1235config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1236 bool "jffs2 128kB erasesize NAND flash option renamed"
1237 select BR2_LEGACY
1238 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
1239 help
1240 The JFFS2 NAND flash options now longer include the page
1241 size.
1242
eff7c144
AC
1243config BR2_PACKAGE_MONO_20
1244 bool "2.0/3.5 .Net Runtime"
1245 select BR2_LEGACY
1246 help
1247 This option no longer exists, all versions of the .Net
1248 runtime are now installed.
1249
1250config BR2_PACKAGE_MONO_40
1251 bool "4.0 .Net Runtime"
1252 select BR2_LEGACY
1253 help
1254 This option no longer exists, all versions of the .Net
1255 runtime are now installed.
1256
1257config BR2_PACKAGE_MONO_45
1258 bool "4.5 .Net Runtime"
1259 select BR2_LEGACY
1260 help
1261 This option no longer exists, all versions of the .Net
1262 runtime are now installed.
1263
efd49e33
PK
1264config BR2_CIVETWEB_WITH_LUA
1265 bool "civetweb lua option renamed"
1266 select BR2_LEGACY
1267 select BR2_PACKAGE_CIVETWEB_WITH_LUA
1268 help
1269 civetweb's lua option has been renamed to
1270 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
1271 packages name options.
1272
e6c7ad17
BK
1273config BR2_PACKAGE_TIFF_TIFF2PDF
1274 bool "tiff utility-specific option removed"
1275 select BR2_LEGACY
1276 select BR2_PACKAGE_TIFF_UTILITIES
1277 help
1278 utility-specific options have been removed in favour of
1279 the new option BR2_PACKAGE_TIFF_UTILITIES.
1280
1281config BR2_PACKAGE_TIFF_TIFFCP
1282 bool "tiff utility-specific option removed"
1283 select BR2_LEGACY
1284 select BR2_PACKAGE_TIFF_UTILITIES
1285 help
1286 utility-specific options have been removed in favour of
1287 the new option BR2_PACKAGE_TIFF_UTILITIES.
1288
e7035d4e
TP
1289config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
1290 bool "RTAI patch file path has been removed"
758c5c7f 1291 select BR2_LEGACY
e7035d4e
TP
1292 help
1293 This option has never worked, so it has been removed.
1294
02917961
YM
1295config BR2_TARGET_GENERIC_PASSWD_DES
1296 bool "Encoding passwords with DES has been removed"
1297 select BR2_LEGACY
1298 help
1299 Paswords can now only be encoded with either of md5, sha256 or sha512.
1300 The default is md5, which is stronger that DES (but still pretty weak).
1301
0d31b5e4
GZ
1302config BR2_PACKAGE_GTK2_THEME_HICOLOR
1303 bool "hicolor (default theme) is a duplicate"
1304 select BR2_LEGACY
1305 select BR2_PACKAGE_HICOLOR_ICON_THEME
1306 help
1307 The option was just a duplicate of hicolor icon theme.
1308
fd0e5f6b
MW
1309config BR2_PACKAGE_VALGRIND_PTRCHECK
1310 bool "valgrind's PTRCheck was renamed to SGCheck"
1311 select BR2_LEGACY
1312 select BR2_PACKAGE_VALGRIND_SGCHECK
1313 help
1314 PTRCheck was renamed to SGCheck in valgrind
1315
1316###############################################################################
665e13c8
TP
1317comment "Legacy options removed in 2015.02"
1318
10900c07
PA
1319config BR2_PACKAGE_LIBGC
1320 bool "libgc package removed"
1321 select BR2_LEGACY
1322 select BR2_PACKAGE_BDWGC
1323 help
1324 libgc has been removed because we have the same package under a
1325 different name, bdwgc.
1326
8d702aca
YM
1327config BR2_PACKAGE_WDCTL
1328 bool "util-linux' wdctl option has been renamed"
1329 select BR2_LEGACY
1330 select BR2_PACKAGE_UTIL_LINUX_WDCTL
1331 help
1332 util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
1333 to be aligned with how the other options are named.
1334
e44edb82
DM
1335config BR2_PACKAGE_UTIL_LINUX_ARCH
1336 bool "util-linux' arch option has been removed"
1337 select BR2_LEGACY
1338 help
1339 util-linux' arch was dropped in util-linux 2.23, in favor of
1340 the coreutils version.
1341
1342config BR2_PACKAGE_UTIL_LINUX_DDATE
1343 bool "util-linux' ddate option has been removed"
1344 select BR2_LEGACY
1345 help
1346 util-linux' ddate was dropped in util-linux 2.23.
1347
3c476540
RN
1348config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
1349 bool "rpm's bzip2 payloads option has been removed"
1350 select BR2_LEGACY
1351 select BR2_PACKAGE_BZIP2
1352 help
1353 The bzip2 payloads option rely entirely on the dependant package bzip2.
1354 So, you need to select it to enable this feature.
1355
1356config BR2_PACKAGE_RPM_XZ_PAYLOADS
1357 bool "rpm's xz payloads option has been removed"
1358 select BR2_LEGACY
1359 select BR2_PACKAGE_XZ
1360 help
1361 The xz payloads option rely entirely on the dependant package xz.
1362 So, you need to select it to enable this feature.
1363
6927bc91
GZ
1364config BR2_PACKAGE_M4
1365 bool "m4 target package removed"
1366 select BR2_LEGACY
1367 help
1368 The m4 target package has been removed, it's been
1369 deprecated for some time now.
1370
aa6ea7ab
GZ
1371config BR2_PACKAGE_FLEX_BINARY
1372 bool "flex binary in target option removed"
1373 select BR2_LEGACY
1374 help
1375 The flex binary in the target option has been removed.
1376 It's been deprecated for some time now and is essentially a
1377 development tool which isn't very useful in the target.
1378
38dabc6e
GZ
1379config BR2_PACKAGE_BISON
1380 bool "bison target package removed"
1381 select BR2_LEGACY
1382 help
1383 The bison target package has been removed, it's been
1384 deprecated for some time now and is essentially a development
1385 tool which isn't very useful in the target.
1386
7f9d4441
GZ
1387config BR2_PACKAGE_GOB2
1388 bool "gob2 target package removed"
1389 select BR2_LEGACY
1390 help
1391 The gob2 target package has been removed, it's been
1392 deprecated for some time now and was essentially useless
1393 without a target toolchain.
1394
c2e3d0be
GZ
1395config BR2_PACKAGE_DISTCC
1396 bool "distcc target package removed"
1397 select BR2_LEGACY
1398 help
1399 The distcc target package has been removed, it's been
1400 deprecated for some time now and was essentially useless
1401 without a target toolchain.
1402
b64cde60
GZ
1403config BR2_PACKAGE_HASERL_VERSION_0_8_X
1404 bool "haserl 0.8.x version removed"
1405 select BR2_LEGACY
1406 help
1407 The 0.8.x version option for haserl has been removed since it
1408 has been deprecated for some time now.
1409 You should be able to use the 0.9.x version without issues.
1410
0120d9f3
GZ
1411config BR2_PACKAGE_STRONGSWAN_TOOLS
1412 bool "strongswan option has been removed"
1413 select BR2_LEGACY
1414 select BR2_PACKAGE_STRONGSWAN_PKI
1415 select BR2_PACKAGE_STRONGSWAN_SCEP
1416 help
1417 The tools option has been removed upstream and the different tools
1418 have been split between the pki and scep options, with others
1419 deprecated.
1420
db78eb07 1421config BR2_PACKAGE_XBMC_ADDON_XVDR
1c2a63ad 1422 bool "xbmc-addon-xvdr removed"
db78eb07 1423 select BR2_LEGACY
db78eb07 1424 help
1c2a63ad
AV
1425 According to the github project page:
1426 https://github.com/pipelka/xbmc-addon-xvdr
1427 this package is discontinued.
db78eb07 1428
b3df2a35
BK
1429config BR2_PACKAGE_XBMC_PVR_ADDONS
1430 bool "xbmc options have been renamed"
1431 select BR2_LEGACY
1432 select BR2_PACKAGE_KODI_PVR_ADDONS
1433 help
1434 The XBMC media center project was renamed to Kodi entertainment center
1435
35784597
BK
1436config BR2_PACKAGE_XBMC
1437 bool "xbmc options have been renamed"
1438 select BR2_LEGACY
1439 select BR2_PACKAGE_KODI
1440 help
1441 The XBMC media center project was renamed to Kodi entertainment center
1442
1443config BR2_PACKAGE_XBMC_ALSA_LIB
1444 bool "xbmc options have been renamed"
1445 select BR2_LEGACY
1446 select BR2_PACKAGE_KODI_ALSA_LIB
1447 help
1448 The XBMC media center project was renamed to Kodi entertainment center
1449
1450config BR2_PACKAGE_XBMC_AVAHI
1451 bool "xbmc options have been renamed"
1452 select BR2_LEGACY
1453 select BR2_PACKAGE_KODI_AVAHI
1454 help
1455 The XBMC media center project was renamed to Kodi entertainment center
1456
1457config BR2_PACKAGE_XBMC_DBUS
1458 bool "xbmc options have been renamed"
1459 select BR2_LEGACY
1460 select BR2_PACKAGE_KODI_DBUS
1461 help
1462 The XBMC media center project was renamed to Kodi entertainment center
1463
1464config BR2_PACKAGE_XBMC_LIBBLURAY
1465 bool "xbmc options have been renamed"
1466 select BR2_LEGACY
1467 select BR2_PACKAGE_KODI_LIBBLURAY
1468 help
1469 The XBMC media center project was renamed to Kodi entertainment center
1470
1471config BR2_PACKAGE_XBMC_GOOM
1472 bool "xbmc options have been renamed"
1473 select BR2_LEGACY
1474 select BR2_PACKAGE_KODI_GOOM
1475 help
1476 The XBMC media center project was renamed to Kodi entertainment center
1477
1478config BR2_PACKAGE_XBMC_RSXS
1479 bool "xbmc options have been renamed"
1480 select BR2_LEGACY
1481 select BR2_PACKAGE_KODI_RSXS
1482 help
1483 The XBMC media center project was renamed to Kodi entertainment center
1484
1485config BR2_PACKAGE_XBMC_LIBCEC
1486 bool "xbmc options have been renamed"
1487 select BR2_LEGACY
1488 select BR2_PACKAGE_KODI_LIBCEC
1489 help
1490 The XBMC media center project was renamed to Kodi entertainment center
1491
1492config BR2_PACKAGE_XBMC_LIBMICROHTTPD
1493 bool "xbmc options have been renamed"
1494 select BR2_LEGACY
1495 select BR2_PACKAGE_KODI_LIBMICROHTTPD
1496 help
1497 The XBMC media center project was renamed to Kodi entertainment center
1498
1499config BR2_PACKAGE_XBMC_LIBNFS
1500 bool "xbmc options have been renamed"
1501 select BR2_LEGACY
1502 select BR2_PACKAGE_KODI_LIBNFS
1503 help
1504 The XBMC media center project was renamed to Kodi entertainment center
1505
1506config BR2_PACKAGE_XBMC_RTMPDUMP
1507 bool "xbmc options have been renamed"
1508 select BR2_LEGACY
1509 select BR2_PACKAGE_KODI_RTMPDUMP
1510 help
1511 The XBMC media center project was renamed to Kodi entertainment center
1512
1513config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
1514 bool "xbmc options have been renamed"
1515 select BR2_LEGACY
1516 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
1517 help
1518 The XBMC media center project was renamed to Kodi entertainment center
1519
1520config BR2_PACKAGE_XBMC_LIBSMBCLIENT
1521 bool "xbmc options have been renamed"
1522 select BR2_LEGACY
1523 select BR2_PACKAGE_KODI_LIBSMBCLIENT
1524 help
1525 The XBMC media center project was renamed to Kodi entertainment center
1526
1527config BR2_PACKAGE_XBMC_LIBTHEORA
1528 bool "xbmc options have been renamed"
1529 select BR2_LEGACY
1530 select BR2_PACKAGE_KODI_LIBTHEORA
1531 help
1532 The XBMC media center project was renamed to Kodi entertainment center
1533
1534config BR2_PACKAGE_XBMC_LIBUSB
1535 bool "xbmc options have been renamed"
1536 select BR2_LEGACY
1537 select BR2_PACKAGE_KODI_LIBUSB
1538 help
1539 The XBMC media center project was renamed to Kodi entertainment center
1540
1541config BR2_PACKAGE_XBMC_LIBVA
1542 bool "xbmc options have been renamed"
1543 select BR2_LEGACY
1544 select BR2_PACKAGE_KODI_LIBVA
1545 help
1546 The XBMC media center project was renamed to Kodi entertainment center
1547
1548config BR2_PACKAGE_XBMC_WAVPACK
1549 bool "xbmc options have been renamed"
1550 select BR2_LEGACY
1551 select BR2_PACKAGE_KODI_WAVPACK
1552 help
1553 The XBMC media center project was renamed to Kodi entertainment center
1554
665e13c8
TP
1555config BR2_PREFER_STATIC_LIB
1556 bool "static library option renamed"
a44b1c14 1557 select BR2_LEGACY
665e13c8
TP
1558 help
1559 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
1560 highlights the fact that the option no longer "prefers"
1561 static libraries, but "enforces" static libraries (i.e
1562 shared libraries are completely unused).
1563
a44b1c14
SM
1564 Take care of updating the type of libraries you want under the
1565 "Build options" menu.
1566
35784597 1567###############################################################################
120136ee
YM
1568comment "Legacy options removed in 2014.11"
1569
a52bad85
PK
1570config BR2_x86_generic
1571 bool "x86 generic variant has been removed"
1572 select BR2_LEGACY
1573 help
1574 The generic x86 CPU variant has been removed. Use another
a95e98c0 1575 CPU variant instead.
a52bad85 1576
40e18f29
AL
1577config BR2_GCC_VERSION_4_4_X
1578 bool "gcc 4.4.x has been removed"
1579 select BR2_LEGACY
1580 help
1581 The 4.4.x version of gcc has been removed. Use a newer
1582 version instead.
1583
43b78e72
AL
1584config BR2_sparc_sparchfleon
1585 bool "sparchfleon CPU has been removed"
1586 select BR2_LEGACY
1587 help
1588 The sparchfleon CPU was only supported in a patched gcc 4.4
1589 version. Its support has been removed in favor of the leon3
1590 CPU starting from gcc 4.8.x.
1591
1592config BR2_sparc_sparchfleonv8
1593 bool "sparchfleonv8 CPU has been removed"
1594 select BR2_LEGACY
1595 help
1596 The sparchfleonv8 CPU was only supported in a patched gcc
1597 4.4 version. Its support has been removed in favor of the
1598 leon3 CPU starting from gcc 4.8.x.
1599
1600config BR2_sparc_sparcsfleon
1601 bool "sparcsfleon CPU has been removed"
1602 select BR2_LEGACY
1603 help
1604 The sparcsfleon CPU was only supported in a patched gcc 4.4
1605 version. Its support has been removed in favor of the leon3
1606 CPU starting from gcc 4.8.x.
1607
1608config BR2_sparc_sparcsfleonv8
1609 bool "sparcsfleonv8 CPU has been removed"
1610 select BR2_LEGACY
1611 help
1612 The sparcsfleonv8 CPU was only supported in a patched gcc
1613 4.4 version. Its support has been removed in favor of the
1614 leon3 CPU starting from gcc 4.8.x.
1615
bfd87877
BK
1616config BR2_PACKAGE_XLIB_LIBPCIACCESS
1617 bool "xlib-libpciaccess option has been renamed"
1618 depends on BR2_PACKAGE_XORG7
1619 select BR2_LEGACY
1620 select BR2_PACKAGE_LIBPCIACCESS
1621 help
1622 libpciaccess neither depends on X11 nor Xlib. Thus the
1623 package has been renamed BR2_PACKAGE_LIBPCIACCESS
1624
b581bba9
YM
1625config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
1626 bool "Xceive xc5000 option has been renamed"
758c5c7f 1627 select BR2_LEGACY
b581bba9
YM
1628 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
1629 help
1630 The Xceive xc5000 option now also handles older firmwares from
1631 Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
1632 from Cresta, who bought Xceive.
1633
dac546e9
YM
1634config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1635 bool "Chelsio T4 option has been renamed"
758c5c7f 1636 select BR2_LEGACY
dac546e9
YM
1637 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1638 help
1639 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1640 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1641 to better account for the fact that a T5 variant exists.
1642
120136ee
YM
1643config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
1644 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
758c5c7f 1645 select BR2_LEGACY
120136ee
YM
1646 help
1647 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
1648 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
1649 select it in:
1650 Target packages -> Hardware handling ->
1651 Firmware -> linux-firmware -> WiFi firmware ->
1652 iwlwifi 3160/726x revision to use (revision 7)
1653
1654config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
1655 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
758c5c7f 1656 select BR2_LEGACY
120136ee
YM
1657 help
1658 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
1659 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
1660 select it in:
1661 Target packages -> Hardware handling ->
1662 Firmware -> linux-firmware -> WiFi firmware ->
1663 iwlwifi 3160/726x revision to use (revision 8)
1664
5cd1c4fe
YM
1665###############################################################################
1666comment "Legacy options removed in 2014.08"
1667
52fac6a2
GC
1668config BR2_PACKAGE_LIBELF
1669 bool "libelf has been removed"
1670 select BR2_PACKAGE_ELFUTILS
1671 select BR2_LEGACY
1672 help
1673 The libelf package provided an old version of the libelf library
1674 and is deprecated. The libelf library is now provided by the
1675 elfutils package.
1676
dfae6f67
TDS
1677config BR2_KERNEL_HEADERS_3_8
1678 bool "kernel headers version 3.8.x are no longer supported"
a26aa968 1679 select BR2_KERNEL_HEADERS_3_4
dfae6f67
TDS
1680 select BR2_LEGACY
1681 help
1682 Version 3.8.x of the Linux kernel headers have been deprecated
1683 for more than four buildroot releases and are now removed.
a26aa968 1684 As an alternative, version 3.4.x of the headers have been
dfae6f67
TDS
1685 automatically selected in your configuration.
1686
187b4d68
TP
1687config BR2_PACKAGE_GETTEXT_TOOLS
1688 bool "support for gettext-tools on target has been removed"
1689 select BR2_LEGACY
1690 help
1691 The option to install the gettext utilities on the target
1692 has been removed. This is not necessary as Buildroot is not
1693 designed to provide a full development environment on the
1694 target. gettext tools should be used on the build machine
1695 instead.
1696
5cd1c4fe
YM
1697config BR2_PACKAGE_PROCPS
1698 bool "procps has been replaced by procps-ng"
1699 select BR2_PACKAGE_PROCPS_NG
1700 select BR2_LEGACY
1701 help
1702 The procps package has been replaced by the equivalent procps-ng.
1703
d4839ffc
TP
1704config BR2_BINUTILS_VERSION_2_20_1
1705 bool "binutils 2.20.1 has been removed"
1706 select BR2_LEGACY
1707 help
1708 The 2.20.1 version of binutils has been removed. Use a newer
1709 version instead.
1710
1711config BR2_BINUTILS_VERSION_2_21
1712 bool "binutils 2.21 has been removed"
1713 select BR2_LEGACY
1714 help
1715 The 2.21 version of binutils has been removed. Use a newer
1716 version instead.
1717
1718config BR2_BINUTILS_VERSION_2_23_1
1719 bool "binutils 2.23.1 has been removed"
1720 select BR2_LEGACY
1721 help
1722 The 2.23.1 version of binutils has been removed. Use a newer
1723 version instead.
1724
506b964d
TP
1725config BR2_UCLIBC_VERSION_0_9_32
1726 bool "uclibc 0.9.32 has been removed"
1727 select BR2_LEGACY
1728 help
1729 The 0.9.32 version of uClibc has been removed. Use a newer
1730 version instead.
1731
d10e0805
TP
1732config BR2_GCC_VERSION_4_3_X
1733 bool "gcc 4.3.x has been removed"
1734 select BR2_LEGACY
1735 help
1736 The 4.3.x version of gcc has been removed. Use a newer
1737 version instead.
1738
1739config BR2_GCC_VERSION_4_6_X
1740 bool "gcc 4.6.x has been removed"
1741 select BR2_LEGACY
1742 help
1743 The 4.6.x version of gcc has been removed. Use a newer
1744 version instead.
1745
02d85f65
TP
1746config BR2_GDB_VERSION_7_4
1747 bool "gdb 7.4 has been removed"
1748 select BR2_LEGACY
1749 help
1750 The 7.4 version of gdb has been removed. Use a newer version
1751 instead.
1752
1753config BR2_GDB_VERSION_7_5
1754 bool "gdb 7.5 has been removed"
1755 select BR2_LEGACY
1756 help
1757 The 7.5 version of gdb has been removed. Use a newer version
1758 instead.
1759
b18dca0d
TP
1760config BR2_BUSYBOX_VERSION_1_19_X
1761 bool "busybox version selection has been removed"
1762 select BR2_LEGACY
1763 help
1764 The possibility of selecting the Busybox version has been
1765 removed. Use the latest version provided by the Busybox
1766 package instead.
1767
1768config BR2_BUSYBOX_VERSION_1_20_X
1769 bool "busybox version selection has been removed"
1770 select BR2_LEGACY
1771 help
1772 The possibility of selecting the Busybox version has been
1773 removed. Use the latest version provided by the Busybox
1774 package instead.
1775
1776config BR2_BUSYBOX_VERSION_1_21_X
1777 bool "busybox version selection has been removed"
1778 select BR2_LEGACY
1779 help
1780 The possibility of selecting the Busybox version has been
1781 removed. Use the latest version provided by the Busybox
1782 package instead.
1783
07ac0456
EG
1784config BR2_PACKAGE_LIBV4L_DECODE_TM6000
1785 bool "decode_tm6000"
1786 select BR2_PACKAGE_LIBV4L_UTILS
1787 select BR2_LEGACY
1788 help
1789 This libv4l option has been deprecated and replaced by a single
1790 option to build all the libv4l utilities.
1791
1792config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
1793 bool "ir-keytable"
1794 select BR2_PACKAGE_LIBV4L_UTILS
1795 select BR2_LEGACY
1796 help
1797 This libv4l option has been deprecated and replaced by a single
1798 option to build all the libv4l utilities.
1799
1800config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
1801 bool "v4l2-compliance"
1802 select BR2_PACKAGE_LIBV4L_UTILS
1803 select BR2_LEGACY
1804 help
1805 This libv4l option has been deprecated and replaced by a single
1806 option to build all the libv4l utilities.
1807
1808config BR2_PACKAGE_LIBV4L_V4L2_CTL
1809 bool "v4l2-ctl"
1810 select BR2_PACKAGE_LIBV4L_UTILS
1811 select BR2_LEGACY
1812 help
1813 This libv4l option has been deprecated and replaced by a single
1814 option to build all the libv4l utilities.
1815
1816config BR2_PACKAGE_LIBV4L_V4L2_DBG
1817 bool "v4l2-dbg"
1818 select BR2_PACKAGE_LIBV4L_UTILS
1819 select BR2_LEGACY
1820 help
1821 This libv4l option has been deprecated and replaced by a single
1822 option to build all the libv4l utilities.
1823
fabcb119 1824###############################################################################
1825comment "Legacy options removed in 2014.05"
1826
4990a381
PS
1827config BR2_PACKAGE_EVTEST_CAPTURE
1828 bool "evtest-capture support removed (dropped since evtest 1.31)"
1829 select BR2_LEGACY
1830 help
1831 Support for evtest-capture has been removed (dropped from
1832 evtest package since version 1.31), use evemu package
1833 instead.
1834
47c2d1b4
TDS
1835config BR2_KERNEL_HEADERS_3_6
1836 bool "kernel headers version 3.6.x are no longer supported"
a26aa968 1837 select BR2_KERNEL_HEADERS_3_4
47c2d1b4
TDS
1838 select BR2_LEGACY
1839 help
1840 Version 3.6.x of the Linux kernel headers have been deprecated
1841 for more than four buildroot releases and are now removed.
a26aa968 1842 As an alternative, version 3.4.x of the headers have been
47c2d1b4
TDS
1843 automatically selected in your configuration.
1844
1845config BR2_KERNEL_HEADERS_3_7
1846 bool "kernel headers version 3.7.x are no longer supported"
a26aa968 1847 select BR2_KERNEL_HEADERS_3_4
47c2d1b4
TDS
1848 select BR2_LEGACY
1849 help
1850 Version 3.7.x of the Linux kernel headers have been deprecated
1851 for more than four buildroot releases and are now removed.
a26aa968 1852 As an alternative, version 3.4.x of the headers have been
47c2d1b4
TDS
1853 automatically selected in your configuration.
1854
947ca9e1
TDS
1855config BR2_PACKAGE_VALA
1856 bool "vala target package has been removed"
1857 select BR2_LEGACY
1858 help
1859 The 'vala' target package has been removed since it has been
1860 deprecated for more than four buildroot releases.
1861 Note: the host vala package still exists.
1862
d6a37917
YM
1863config BR2_TARGET_TZ_ZONELIST
1864 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
1865
1866config BR2_PACKAGE_TZDATA_ZONELIST
1867 string "tzdata: the timezone list option has been renamed"
1868 help
1869 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
1870 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
1871 menu. You'll need to select BR2_TARGET_TZ_INFO.
1872
1873config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
1874 bool
1875 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
1876 select BR2_LEGACY
1877
c97aeb7e
YM
1878config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
1879 bool "Lua command-line editing none has been renamed"
1880 select BR2_LEGACY
1881 help
1882 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
1883 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
1884 it in the corresponding choice.
1885
1886config BR2_PACKAGE_LUA_INTERPRETER_READLINE
1887 bool "Lua command-line editing using readline has been renamed"
1888 select BR2_LEGACY
1889 help
1890 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
1891 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
1892 it in the corresponding choice.
1893
1894config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
1895 bool "Lua command-line editing using linenoise has been renamed"
1896 select BR2_LEGACY
1897 help
1898 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
1899 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
1900 it in the corresponding choice.
1901
365ae61c
YM
1902config BR2_PACKAGE_DVB_APPS_UTILS
1903 bool "dvb-apps utilities now built by default"
1904 select BR2_LEGACY
1905 help
1906 The dvb-apps utilities are now always built when the dvb-apps
1907 package is selected.
1908
971e331c
YM
1909config BR2_KERNEL_HEADERS_SNAP
1910 bool "Local Linux snapshot support removed"
1911 select BR2_LEGACY
1912 help
1913 Support for using a custom snapshot to install the Linux
1914 kernel headers has been removed.
1915
fabcb119 1916config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
1917 bool "/dev management by udev removed"
1918 select BR2_LEGACY
1919 help
1920 The 'udev' package has been converted to a virtual package.
2c66e442 1921 The providers for this feature are: 'eudev', 'systemd'.
fabcb119 1922
2c66e442 1923 Therefore, if you are not using 'systemd' as init system, you
1924 must choose 'Dynamic using eudev' in the '/dev management'
1925 menu to get the same behaviour as in your old configuration.
1926
1927 If you are using 'systemd', its internal implementation of
1928 'udev' will be used automatically.
fabcb119 1929
1930 You must also check the packages depending on 'udev' are still
1931 selected.
1932
1933config BR2_PACKAGE_UDEV
1934 bool "udev is now a virtual package"
1935 select BR2_LEGACY
1936 select BR2_PACKAGE_HAS_UDEV
1937 help
1938 The 'udev' package has been converted to a virtual package.
2c66e442 1939 The providers for this feature are: 'eudev', 'systemd'.
fabcb119 1940
1941 Your old configuration refers to packages depending on 'udev',
1942 either for build or at runtime.
1943
2c66e442 1944 Check that a 'udev' provider is selected. If you are not using
1945 'systemd' as init system, 'eudev' should be selected, which is
1946 the case if '/dev management' is set to 'Dynamic using eudev'.
1947
1948 If you are using 'systemd', its internal implementation of 'udev'
1949 is used.
fabcb119 1950
1951config BR2_PACKAGE_UDEV_RULES_GEN
2c66e442 1952 bool "udev rules generation handled by provider"
fabcb119 1953 select BR2_LEGACY
2c66e442 1954 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
1955 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
fabcb119 1956 help
1957 The 'udev' package has been converted to a virtual package.
2c66e442 1958 The providers for this feature are: 'eudev', 'systemd'.
fabcb119 1959
2c66e442 1960 If you are not using 'systemd' as init system, udev rules
1961 generation will be handled by 'eudev'. Check that
1962 '/dev management' is set to 'Dynamic using eudev' to get
1963 the same behaviour as in your old configuration.
fabcb119 1964
2c66e442 1965 If you are using 'systemd', it internal implementation of 'udev'
1966 will generate the rules.
fabcb119 1967
1968config BR2_PACKAGE_UDEV_ALL_EXTRAS
1969 bool "udev extras removed"
1970 select BR2_LEGACY
1971 help
1972 The 'udev' package has been converted to a virtual package.
2c66e442 1973 The providers for this feature are: 'eudev', 'systemd'.
fabcb119 1974
1975 The option to enable the extra features of 'udev' (gudev, ...)
1976 has been removed. These features are automatically enabled in
1977 the 'udev' providers if the dependencies are selected. For
1978 example, selecting 'libglib2' will trigger the build of gudev.
1979
5562be13
BK
1980config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
1981 bool "xlib-libpthread-stubs option has been renamed"
1982 depends on BR2_PACKAGE_XORG7
1983 select BR2_LEGACY
1984 select BR2_PACKAGE_LIBPTHREAD_STUBS
1985 help
1986 The pthread stubs neither depend on X11 nor Xlib. Thus the
1987 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
1988
8b2e2357 1989###############################################################################
f169e5e1
YM
1990comment "Legacy options removed in 2014.02"
1991
e543f5a1
TP
1992config BR2_sh2
1993 bool "sh2 support removed"
758c5c7f 1994 select BR2_LEGACY
e543f5a1
TP
1995 help
1996 Due to an inexistent user base and generally poor Linux
1997 support, the support for the SH2 architecture was removed.
1998
1999config BR2_sh3
2000 bool "sh3 support removed"
758c5c7f 2001 select BR2_LEGACY
e543f5a1
TP
2002 help
2003 Due to an inexistent user base and generally poor Linux
2004 support, the support for the SH3 architecture was removed.
2005
2006config BR2_sh3eb
2007 bool "sh3eb support removed"
758c5c7f 2008 select BR2_LEGACY
e543f5a1
TP
2009 help
2010 Due to an inexistent user base and generally poor Linux
2011 support, the support for the SH3eb architecture was removed.
2012
334dca61
TDS
2013config BR2_KERNEL_HEADERS_3_1
2014 bool "kernel headers version 3.1.x are no longer supported"
2015 select BR2_KERNEL_HEADERS_3_2
2016 select BR2_LEGACY
2017 help
2018 Version 3.1.x of the Linux kernel headers have been deprecated
2019 for more than four buildroot releases and are now removed.
2020 As an alternative, version 3.2.x of the headers have been
2021 automatically selected in your configuration.
2022
2023config BR2_KERNEL_HEADERS_3_3
2024 bool "kernel headers version 3.3.x are no longer supported"
a26aa968 2025 select BR2_KERNEL_HEADERS_3_2
334dca61
TDS
2026 select BR2_LEGACY
2027 help
2028 Version 3.3.x of the Linux kernel headers have been deprecated
2029 for more than four buildroot releases and are now removed.
a26aa968 2030 As an alternative, version 3.2.x of the headers have been
334dca61
TDS
2031 automatically selected in your configuration.
2032
2033config BR2_KERNEL_HEADERS_3_5
2034 bool "kernel headers version 3.5.x are no longer supported"
a26aa968 2035 select BR2_KERNEL_HEADERS_3_4
334dca61
TDS
2036 select BR2_LEGACY
2037 help
2038 Version 3.5.x of the Linux kernel headers have been deprecated
2039 for more than four buildroot releases and are now removed.
a26aa968 2040 As an alternative, version 3.4.x of the headers have been
334dca61
TDS
2041 automatically selected in your configuration.
2042
348060f9
TDS
2043config BR2_GDB_VERSION_7_2
2044 bool "gdb 7.2.x is no longer supported"
02d85f65 2045 select BR2_GDB_VERSION_7_6
348060f9
TDS
2046 select BR2_LEGACY
2047 help
2048 Version 7.2.x of gdb has been deprecated for more than four
2049 buildroot releases and is now removed. As an alternative, gdb
2050 7.5.x has been automatically selected in your configuration.
2051
2052config BR2_GDB_VERSION_7_3
2053 bool "gdb 7.3.x is no longer supported"
02d85f65 2054 select BR2_GDB_VERSION_7_6
348060f9
TDS
2055 select BR2_LEGACY
2056 help
2057 Version 7.3.x of gdb has been deprecated for more than four
2058 buildroot releases and is now removed. As an alternative, gdb
2059 7.5.x has been automatically selected in your configuration.
2060
831624c4
TDS
2061config BR2_PACKAGE_CCACHE
2062 bool "ccache target package has been removed"
2063 select BR2_LEGACY
2064 help
2065 The 'ccache' target package has been removed since it has been
2066 deprecated for more than four buildroot releases.
2067 Note: using ccache for speeding up builds is still supported.
2068
7164a326
TDS
2069config BR2_HAVE_DOCUMENTATION
2070 bool "support for documentation on target has been removed"
2071 select BR2_LEGACY
2072 help
2073 Support for documentation on target has been removed since it has
2074 been deprecated for more than four buildroot releases.
2075
f75245d9
TDS
2076config BR2_PACKAGE_AUTOMAKE
2077 bool "automake target package has been removed"
2078 select BR2_LEGACY
2079 help
2080 The 'automake' target package has been removed since it has been
2081 deprecated for more than four buildroot releases.
2082 Note: the host automake still exists.
2083
e7af2ac6
TDS
2084config BR2_PACKAGE_AUTOCONF
2085 bool "autoconf target package has been removed"
2086 select BR2_LEGACY
2087 help
2088 The 'autoconf' target package has been removed since it has been
2089 deprecated for more than four buildroot releases.
2090 Note: the host autoconf still exists.
2091
ddf5424f
TDS
2092config BR2_PACKAGE_XSTROKE
2093 bool "xstroke has been removed"
2094 select BR2_LEGACY
2095 help
2096 The 'xstroke' package has been removed since it has been
2097 deprecated for more than four buildroot releases.
2098
0a077319
TDS
2099config BR2_PACKAGE_LZMA
2100 bool "lzma target package has been removed"
2101 select BR2_LEGACY
2102 help
2103 The 'lzma' target package has been removed since it has been
2104 deprecated for more than four buildroot releases.
2105 Note: generating lzma-compressed rootfs images is still supported.
2106
7ef5c3a5
TDS
2107config BR2_PACKAGE_TTCP
2108 bool "ttcp has been removed"
2109 select BR2_LEGACY
2110 help
2111 The 'ttcp' package has been removed since it has been
2112 deprecated for more than four buildroot releases.
2113
8b2e2357 2114config BR2_PACKAGE_LIBNFC_LLCP
93341046 2115 bool "libnfc-llcp has been replaced by libllcp"
8b2e2357 2116 select BR2_LEGACY
93341046 2117 select BR2_PACKAGE_LIBLLCP
8b2e2357
VOR
2118 help
2119 The 'libnfc-llcp' package has been removed since upstream renamed
93341046
TDS
2120 to 'libllcp'. We have added a new package for 'libllcp' and bumped
2121 the version at the same time.
8b2e2357 2122
06c82128
MGUF
2123config BR2_PACKAGE_MYSQL_CLIENT
2124 bool "MySQL client renamed to MySQL"
2125 select BR2_LEGACY
2126 select BR2_PACKAGE_MYSQL
2127 help
2128 The option has been renamed BR2_PACKAGE_MYSQL
2129
2f7a53ee
TDS
2130config BR2_PACKAGE_SQUASHFS3
2131 bool "squashfs3 has been removed"
2132 select BR2_LEGACY
2133 select BR2_PACKAGE_SQUASHFS
2134 help
2135 The 'squashfs3' package has been removed since it has been
2136 deprecated for more than four buildroot releases. Package
2137 'squashfs' (4) has been selected automatically as replacement.
2138
2139config BR2_TARGET_ROOTFS_SQUASHFS3
2140 bool "squashfs3 rootfs support has been removed"
2141 select BR2_LEGACY
2142 help
2143 Together with the removal of the squashfs3 package, support
2144 for squashfs3 root filesystems has been removed too. Squashfs
2145 root filesystems will automatically use squashfs4 now.
2146
560fe85b
AA
2147config BR2_PACKAGE_NETKITBASE
2148 bool "netkitbase has been removed"
2149 select BR2_LEGACY
2150 help
2151 The 'netkitbase' package has been removed since it has been
2152 deprecated since 2012.11. This package provided 'inetd'
2153 which is replaced by 'xinet' and 'ping' which is replaced by
2154 'busybox' or 'fping'.
2155
2156config BR2_PACKAGE_NETKITTELNET
2157 bool "netkittelnet has been removed"
2158 select BR2_LEGACY
2159 help
2160 The 'netkittelnet' package has been removed since it has
2161 been deprecated since 2012.11. 'busybox' provides a telnet
2162 client and should be used instead.
2163
63058f8b
FP
2164config BR2_PACKAGE_LUASQL
2165 bool "luasql has been replaced by luasql-sqlite3"
2166 select BR2_PACKAGE_LUASQL_SQLITE3
2167 select BR2_LEGACY
2168 help
2169 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2170
a6c53478
FP
2171config BR2_PACKAGE_LUACJSON
2172 bool "luacjson has been replaced by lua-cjson"
2173 select BR2_PACKAGE_LUA_CJSON
2174 select BR2_LEGACY
2175 help
2176 The option has been renamed BR2_PACKAGE_LUA_CJSON.
2177
94c72087
TP
2178###############################################################################
2179comment "Legacy options removed in 2013.11"
2180
ff0f55e3
AV
2181config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2182 bool "lvm2's 'dmsetup only' option removed"
2183 select BR2_LEGACY
2184 help
2185 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2186 led to problems with other packages that need the full lvm2
2187 suite. Therefore, the option has been replaced with the positive
2188 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2189
2190# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2191# in order to automatically propagate old configs
2192
1f9c04f6
TP
2193config BR2_PACKAGE_QT_JAVASCRIPTCORE
2194 bool "qt javascriptcore option removed"
2195 select BR2_LEGACY
2196 help
2197 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2198 force the activation or disabling of the JIT compiler in the
2199 Qt Javascript interpreter. However, the JIT compiler is not
2200 available for all architectures, so forcing its activation
2201 does not always work. Moreover, Qt knows by itself for which
2202 architectures JIT support is possible, and will
2203 automatically enable it if possible.
2204
2205 Therefore, this option was in fact useless, and causing
2206 build problems when enabled on architectures for which the
2207 JIT support was not available. It has been removed, and
2208 there is no replacement: Qt will enable JIT at compile time
2209 when possible.
2210
94c72087
TP
2211config BR2_PACKAGE_MODULE_INIT_TOOLS
2212 bool "module-init-tools replaced by kmod"
2213 select BR2_PACKAGE_KMOD
2214 select BR2_PACKAGE_KMOD_TOOLS
0f401f91 2215 select BR2_LEGACY
94c72087
TP
2216 help
2217 The 'module-init-tools' package has been removed, since it
2218 has been depracated upstream and replaced by 'kmod'.
2219
f2c2193b
TDS
2220config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2221 string "u-boot: the git repository URL option has been renamed"
2222 help
2223 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2224 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2225
2226config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2227 bool
2228 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2229 select BR2_LEGACY
2230
2231# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2232# boot/uboot/Config.in
2233
2234config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2235 string "u-boot: the git repository version option has been renamed"
2236 help
2237 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
2238 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
2239
2240config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
2241 bool
2242 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
2243 select BR2_LEGACY
2244
2245# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
2246# boot/uboot/Config.in
2247
63ecded2
TDS
2248config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
2249 string "linux: the git repository URL option has been renamed"
2250 help
2251 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
2252 been renamed to
2253 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
2254
2255config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
2256 bool
2257 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
2258 select BR2_LEGACY
2259
2260# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
2261# linux/Config.in
2262
2263config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
2264 string "linux: the git repository version option has been renamed"
2265 help
2266 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
2267 been renamed to
2268 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
2269
2270config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
2271 bool
2272 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
2273 select BR2_LEGACY
2274
2275# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
2276# linux/Config.in
2277
67eaf705
YM
2278###############################################################################
2279comment "Legacy options removed in 2013.08"
c6e4fcb1 2280
1f3078b1
TP
2281config BR2_ARM_OABI
2282 bool "ARM OABI support has been removed"
2283 select BR2_LEGACY
2284 help
2285 The support for the ARM OABI was deprecated since a while,
2286 and has been removed completely from Buildroot. It is also
2287 deprecated in upstream gcc, since gcc 4.7. People should
2288 switch to EABI instead, which should not be a problem as
2289 long as you don't have pre-built OABI binaries in your
2290 system that you can't recompile.
2291
c6e4fcb1
GZ
2292config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
2293 bool "dosfstools dosfsck renamed to fsck.fat"
2294 select BR2_LEGACY
2295 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
2296 help
2297 dosfsck was renamed upstream to fsck.fat for consistency.
2298
2299config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
2300 bool "dosfstools dosfslabel renamed to fatlabel"
2301 select BR2_LEGACY
2302 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
2303 help
2304 doslabel was renamed upstream to fatlabel for consistency.
2305
2306config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
2307 bool "dosfstools mkdosfs renamed to mkfs.fat"
2308 select BR2_LEGACY
2309 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
2310 help
2311 mkdosfs was renamed upstream to mkfs.fat for consistency.
2312
e21db000
TP
2313config BR2_ELF2FLT
2314 bool "the elf2flt option has been renamed"
2315 select BR2_LEGACY
2316 help
2317 The BR2_ELF2FLT option has been renamed to
2318 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
2319 the package infrastructure.
2320
d806005b
TP
2321config BR2_VFP_FLOAT
2322 bool "the ARM VFP floating point option has been renamed"
2323 select BR2_LEGACY
2324 help
2325 Due to a major refactoring of the floating-point handling of
2326 the ARM architecture support, the BR2_VFP_FLOAT option has
2327 been replaced with a choice of options that allows to select
2328 between various VFP versions/capabilities.
2329
ba8f82b0
SM
2330config BR2_PACKAGE_GCC_TARGET
2331 bool "gcc on the target filesystem has been removed"
2332 select BR2_LEGACY
2333 help
2334 The support for gcc in the target filesystem was deprecated
2335 since a while, and has been removed completely from Buildroot.
2336 See Buildroot's documentation for more explanations.
2337
2338config BR2_HAVE_DEVFILES
2339 bool "development files in target filesystem has been removed"
2340 select BR2_LEGACY
2341 help
2342 The installation of the development files in the target
2343 filesystem was deprecated since a while, and has been removed
2344 completely from Buildroot.
2345 See Buildroot's documentation for more explanations.
2346
67eaf705
YM
2347###############################################################################
2348comment "Legacy options removed in 2013.05"
860d37a2
YM
2349
2350config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
2351 bool "Realtek 8192 replaced by Realtek 81xx"
2352 select BR2_LEGACY
2353 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
2354 help
2355 Now covers the whole Realtek 81xx familly: 8188/8192.
2356
2357config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
2358 bool "Realtek 8712 replaced by Realtek 87xx"
2359 select BR2_LEGACY
2360 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
2361 help
2362 Now covers the whole Realtek 87xx familly: 8712/8723.
2363
67eaf705
YM
2364###############################################################################
2365comment "Legacy options removed in 2013.02"
29b83f05 2366
9474421d
GZ
2367config BR2_sa110
2368 bool "sa110 ARM target switched to strongarm"
2369 select BR2_LEGACY
2370 select BR2_strongarm
2371 help
2372 The SA110 is the same as a generic StrongARM, it just differs
2373 in speed, peripherals and cache.
2374
2375config BR2_sa1100
2376 bool "sa1100 ARM target switched to strongarm"
2377 select BR2_LEGACY
2378 select BR2_strongarm
2379 help
2380 The SA1100 is the same as a generic StrongARM, it just differs
2381 in speed, peripherals and cache.
2382
29b83f05
TP
2383config BR2_PACKAGE_GDISK
2384 bool "gdisk has been replaced by gptfdisk"
2385 select BR2_LEGACY
2386 select BR2_PACKAGE_GPTFDISK
2387 help
2388 The option has been renamed BR2_PACKAGE_GPTFDISK.
2389
2390config BR2_PACKAGE_GDISK_GDISK
2391 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
2392 select BR2_LEGACY
2393 select BR2_PACKAGE_GPTFDISK
2394 select BR2_PACKAGE_GPTFDISK_GDISK
2395 help
2396 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
2397
2398config BR2_PACKAGE_GDISK_SGDISK
2399 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
2400 select BR2_LEGACY
2401 select BR2_PACKAGE_GPTFDISK
2402 select BR2_PACKAGE_GPTFDISK_SGDISK
2403 help
2404 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
ebcfa987 2405
a0b6faaa
TP
2406config BR2_PACKAGE_GDB_HOST
2407 bool "gdb for the host option has been renamed"
2408 select BR2_PACKAGE_HOST_GDB
2409 select BR2_LEGACY
2410 help
2411 Due to the conversion of gdb to the package infrastructure,
2412 the BR2_PACKAGE_GDB_HOST option has been renamed
2413 BR2_PACKAGE_HOST_GDB.
2414
76de0f80
CS
2415config BR2_PACKAGE_DIRECTB_DITHER_RGB16
2416 bool "DirectFB RGB16 dithering option has been renamed"
2417 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
2418 select BR2_LEGACY
2419 help
2420 The option has been renamed
2421 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
2422
2423config BR2_PACKAGE_DIRECTB_TESTS
2424 bool "DirectFB Tests option has been renamed"
2425 select BR2_PACKAGE_DIRECTFB_TESTS
2426 select BR2_LEGACY
2427 help
2428 The option has been renamed
2429 BR2_PACKAGE_DIRECTFB_TESTS.
2430
67eaf705
YM
2431###############################################################################
2432comment "Legacy options removed in 2012.11"
2433
12ccc43f
TP
2434config BR2_PACKAGE_CUSTOMIZE
2435 bool "customize package has been removed"
2436 select BR2_LEGACY
2437 help
2438 The 'customize' special package has been removed. Instead,
2439 we recommend to create either your own packages, or use a
2440 post-build script to customize your root filesystem. See
2441 Buildroot's documentation for more details.
2cd9121c
AVEM
2442
2443config BR2_PACKAGE_XSERVER_xorg
2444 bool "X.org modular server"
2445 select BR2_LEGACY
2446 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
2447 help
2448 The option has been renamed
2449 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
2450
2451config BR2_PACKAGE_XSERVER_tinyx
2452 bool "KDrive / TinyX server"
2453 select BR2_LEGACY
2454 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
2455 help
2456 The option has been renamed
2457 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
2458
2459config BR2_PACKAGE_PTHREAD_STUBS
2460 bool "pthread-stubs option has been renamed"
2461 select BR2_LEGACY
5562be13 2462 select BR2_PACKAGE_LIBPTHREAD_STUBS
2cd9121c
AVEM
2463 help
2464 For consistency reason, the pthread-stubs package has been
5562be13 2465 renamed to libpthread-stubs.
2cd9121c 2466
67eaf705
YM
2467###############################################################################
2468comment "Legacy options removed in 2012.08"
ebcfa987 2469
26803e88
AVEM
2470config BR2_PACKAGE_GETTEXT_STATIC
2471 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
2472 select BR2_LEGACY
2473 help
2474 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
2475
2476
2477config BR2_PACKAGE_LIBINTL
2478 bool "libintl"
2479 select BR2_LEGACY
2480 select BR2_PACKAGE_GETTEXT
2481 help
2482 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
2483 only installs the library, not the executables.
2484
c430fab2
AVEM
2485config BR2_PACKAGE_INPUT_TOOLS_EVTEST
2486 bool "input-tools evtest is now a separate package evtest"
2487 select BR2_LEGACY
2488 select BR2_PACKAGE_EVTEST
2489 help
2490 The evtest program from input-tools is now a separate package.
2491
57133825
SZ
2492config BR2_BFIN_FDPIC
2493 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
2494 select BR2_BINFMT_FDPIC
2495 select BR2_LEGACY
2496
2497config BR2_BFIN_FLAT
2498 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
2499 select BR2_BINFMT_FLAT
2500 select BR2_LEGACY
2501
a91a5c16 2502endmenu
53903a15
AV
2503
2504endif # !SKIP_LEGACY
This page took 0.730217 seconds and 4 git commands to generate.