modem-manager: select libgudev, if systemd is enabled
[buildroot-gz.git] / Config.in.legacy
blob18231fd308f6b957ae47d391c7dbd69696bd204a
2 # Config.in.legacy - support for backward compatibility
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.
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.
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.
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.
20 # For string options, it is not possible to directly select another symbol. In
21 # this case, a hidden wrap bool option has to be added, that defaults to y if
22 # the old string is not set at its default value. The wrap symbol should select
23 # BR2_LEGACY.
24 # If the original symbol has been renamed, the new symbol should use the value
25 # of the old symbol as default. This requires a change outside of
26 # Config.in.legacy, and this should be clearly marked as such below, so that
27 # removal of legacy options also include the removal of these external
28 # references.
30 # [Example: renaming a string option from FOO to BAR]
31 # original symbol:
32 #     config BR2_FOO_STRING
33 #             string "Some foo string"
35 # becomes:
36 #     config BR2_BAR_STRING
37 #             string "Some bar string"
38 #             default BR2_FOO_STRING if BR2_FOO_STRING != ""  # legacy
40 # and in Config.in.legacy:
41 #     config BR2_FOO_STRING
42 #             string "The foo string has been renamed"
43 #             help
44 #               <suitable help text>
46 #     config BR2_FOO_STRING_WRAP
47 #             bool
48 #             default y if BR2_FOO_STRING != ""
49 #             select BR2_LEGACY
51 #     # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
53 # [End of example]
55 config BR2_SKIP_LEGACY
56         bool
57         option env="SKIP_LEGACY"
59 if !BR2_SKIP_LEGACY
61 config BR2_LEGACY
62         bool
63         help
64           This option is selected automatically when your old .config uses an
65           option that no longer exists in current buildroot. In that case, the
66           build will fail. Look for config options which are selected in the
67           menu below: they no longer exist and should be replaced by something
68           else.
70 # This comment fits exactly in a 80-column display
71 comment "Legacy detected: check the content of the menu below"
72         depends on BR2_LEGACY
74 menu "Legacy config options"
76 if BR2_LEGACY
77 comment "----------------------------------------------------"
78 comment "Your old configuration uses legacy options that no  "
79 comment "longer exist in buildroot, as indicated in the menu "
80 comment "below. As long as these options stay selected, or in"
81 comment "case of string options are non-empty, the build     "
82 comment "will fail.                                          "
83 comment "*                                                   "
84 comment "Where possible, an automatic conversion from old to "
85 comment "new symbols has been performed. Before making any   "
86 comment "change in this legacy menu, make sure to exit the   "
87 comment "configuration editor a first time and save the      "
88 comment "configuration. Otherwise, the automatic conversion  "
89 comment "of symbols will be lost.                            "
90 comment "*                                                   "
91 comment "After this initial save, reopen the configuration   "
92 comment "editor, inspect the options selected below, read    "
93 comment "their help texts, and verify/update the new         "
94 comment "configuration in the corresponding configuration    "
95 comment "menus. When everything is ok, you can disable the   "
96 comment "legacy options in the menu below. Once you have     "
97 comment "disabled all legacy options, this text will         "
98 comment "disappear and you will be able to start the build.  "
99 comment "*                                                   "
100 comment "Note: at some point in the future, the oldest legacy"
101 comment "options will be removed, and configuration files    "
102 comment "that still have those options set, will fail to     "
103 comment "build, or run, in unpredictable ways.               "
104 comment "----------------------------------------------------"
105 endif
107 ###############################################################################
108 comment "Legacy options removed in 2015.11"
110 config BR2_PACKAGE_BLACKBOX
111         bool "blackbox package has been removed"
112         select BR2_LEGACY
113         help
114           Upstream is dead and the package has been deprecated for
115           some time. There are other alternative maintained WMs.
117 config BR2_KERNEL_HEADERS_3_0
118         bool "kernel headers version 3.0.x are no longer supported"
119         select BR2_KERNEL_HEADERS_3_2
120         select BR2_LEGACY
121         help
122           Version 3.0.x of the Linux kernel headers have been deprecated
123           for more than four buildroot releases and are now removed.
124           As an alternative, version 3.2.x of the headers have been
125           automatically selected in your configuration.
127 config BR2_KERNEL_HEADERS_3_11
128         bool "kernel headers version 3.11.x are no longer supported"
129         select BR2_KERNEL_HEADERS_3_12
130         select BR2_LEGACY
131         help
132           Version 3.11.x of the Linux kernel headers have been deprecated
133           for more than four buildroot releases and are now removed.
134           As an alternative, version 3.12.x of the headers have been
135           automatically selected in your configuration.
137 config BR2_KERNEL_HEADERS_3_13
138         bool "kernel headers version 3.13.x are no longer supported"
139         select BR2_KERNEL_HEADERS_3_14
140         select BR2_LEGACY
141         help
142           Version 3.13.x of the Linux kernel headers have been deprecated
143           for more than four buildroot releases and are now removed.
144           As an alternative, version 3.14.x of the headers have been
145           automatically selected in your configuration.
147 config BR2_KERNEL_HEADERS_3_15
148         bool "kernel headers version 3.15.x are no longer supported"
149         select BR2_KERNEL_HEADERS_3_18
150         select BR2_LEGACY
151         help
152           Version 3.15.x of the Linux kernel headers have been deprecated
153           for more than four buildroot releases and are now removed.
154           As an alternative, version 3.18.x of the headers have been
155           automatically selected in your configuration.
157 config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
158         bool "DirectFB example df_andi has been removed"
159         select BR2_PACKAGE_DIRECTFB_EXAMPLES
160         help
161           The per-DirectFB example options have been removed. The
162           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
163           examples.
165 config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
166         bool "DirectFB example df_bltload has been removed"
167         select BR2_PACKAGE_DIRECTFB_EXAMPLES
168         help
169           The per-DirectFB example options have been removed. The
170           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
171           examples.
173 config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
174         bool "DirectFB example df_cpuload has been removed"
175         select BR2_PACKAGE_DIRECTFB_EXAMPLES
176         help
177           The per-DirectFB example options have been removed. The
178           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
179           examples.
181 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
182         bool "DirectFB example df_databuffer has been removed"
183         select BR2_PACKAGE_DIRECTFB_EXAMPLES
184         help
185           The per-DirectFB example options have been removed. The
186           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
187           examples.
189 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
190         bool "DirectFB example df_dioload has been removed"
191         select BR2_PACKAGE_DIRECTFB_EXAMPLES
192         help
193           The per-DirectFB example options have been removed. The
194           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
195           examples.
197 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
198         bool "DirectFB example df_dok has been removed"
199         select BR2_PACKAGE_DIRECTFB_EXAMPLES
200         help
201           The per-DirectFB example options have been removed. The
202           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
203           examples.
205 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
206         bool "DirectFB example df_drivertest has been removed"
207         select BR2_PACKAGE_DIRECTFB_EXAMPLES
208         help
209           The per-DirectFB example options have been removed. The
210           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
211           examples.
214 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
215         bool "DirectFB example df_fire has been removed"
216         select BR2_PACKAGE_DIRECTFB_EXAMPLES
217         help
218           The per-DirectFB example options have been removed. The
219           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
220           examples.
222 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
223         bool "DirectFB example df_flip has been removed"
224         select BR2_PACKAGE_DIRECTFB_EXAMPLES
225         help
226           The per-DirectFB example options have been removed. The
227           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
228           examples.
230 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
231         bool "DirectFB example df_fonts has been removed"
232         select BR2_PACKAGE_DIRECTFB_EXAMPLES
233         help
234           The per-DirectFB example options have been removed. The
235           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
236           examples.
238 config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
239         bool "DirectFB example df_input has been removed"
240         select BR2_PACKAGE_DIRECTFB_EXAMPLES
241         help
242           The per-DirectFB example options have been removed. The
243           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
244           examples.
246 config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
247         bool "DirectFB example df_joystick has been removed"
248         select BR2_PACKAGE_DIRECTFB_EXAMPLES
249         help
250           The per-DirectFB example options have been removed. The
251           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
252           examples.
254 config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
255         bool "DirectFB example df_knuckles has been removed"
256         select BR2_PACKAGE_DIRECTFB_EXAMPLES
257         help
258           The per-DirectFB example options have been removed. The
259           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
260           examples.
262 config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
263         bool "DirectFB example df_layer has been removed"
264         select BR2_PACKAGE_DIRECTFB_EXAMPLES
265         help
266           The per-DirectFB example options have been removed. The
267           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
268           examples.
270 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
271         bool "DirectFB example df_matrix has been removed"
272         select BR2_PACKAGE_DIRECTFB_EXAMPLES
273         help
274           The per-DirectFB example options have been removed. The
275           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
276           examples.
278 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
279         bool "DirectFB example df_matrix_water has been removed"
280         select BR2_PACKAGE_DIRECTFB_EXAMPLES
281         help
282           The per-DirectFB example options have been removed. The
283           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
284           examples.
286 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
287         bool "DirectFB example df_neo has been removed"
288         select BR2_PACKAGE_DIRECTFB_EXAMPLES
289         help
290           The per-DirectFB example options have been removed. The
291           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
292           examples.
294 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
295         bool "DirectFB example df_netload has been removed"
296         select BR2_PACKAGE_DIRECTFB_EXAMPLES
297         help
298           The per-DirectFB example options have been removed. The
299           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
300           examples.
302 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
303         bool "DirectFB example df_palette has been removed"
304         select BR2_PACKAGE_DIRECTFB_EXAMPLES
305         help
306           The per-DirectFB example options have been removed. The
307           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
308           examples.
310 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
311         bool "DirectFB example df_particle has been removed"
312         select BR2_PACKAGE_DIRECTFB_EXAMPLES
313         help
314           The per-DirectFB example options have been removed. The
315           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
316           examples.
318 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
319         bool "DirectFB example df_porter has been removed"
320         select BR2_PACKAGE_DIRECTFB_EXAMPLES
321         help
322           The per-DirectFB example options have been removed. The
323           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
324           examples.
326 config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
327         bool "DirectFB example df_stress has been removed"
328         select BR2_PACKAGE_DIRECTFB_EXAMPLES
329         help
330           The per-DirectFB example options have been removed. The
331           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
332           examples.
334 config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
335         bool "DirectFB example df_texture has been removed"
336         select BR2_PACKAGE_DIRECTFB_EXAMPLES
337         help
338           The per-DirectFB example options have been removed. The
339           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
340           examples.
342 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
343         bool "DirectFB example df_video has been removed"
344         select BR2_PACKAGE_DIRECTFB_EXAMPLES
345         help
346           The per-DirectFB example options have been removed. The
347           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
348           examples.
350 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
351         bool "DirectFB example df_video_particle has been removed"
352         select BR2_PACKAGE_DIRECTFB_EXAMPLES
353         help
354           The per-DirectFB example options have been removed. The
355           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
356           examples.
358 config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
359         bool "DirectFB example df_window has been removed"
360         select BR2_PACKAGE_DIRECTFB_EXAMPLES
361         help
362           The per-DirectFB example options have been removed. The
363           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
364           examples.
366 config BR2_PACKAGE_SAWMAN
367         bool "sawman package removed"
368         select BR2_LEGACY
369         select BR2_PACKAGE_DIRECTFB_SAWMAN
370         help
371           This option has been removed because the sawman package no
372           longer exists: it was merged inside DirectFB itself. This
373           feature can now be enabled using the
374           BR2_PACKAGE_DIRECTFB_SAWMAN option.
376 config BR2_PACKAGE_DIVINE
377         bool "divine package removed"
378         select BR2_LEGACY
379         select BR2_PACKAGE_DIRECTFB_DIVINE
380         help
381           This option has been removed because the divine package no
382           longer exists: it was merged inside DirectFB itself. This
383           feature can now be enabled using the
384           BR2_PACKAGE_DIRECTFB_DIVINE option.
386 ###############################################################################
387 comment "Legacy options removed in 2015.08"
389 config BR2_PACKAGE_KODI_PVR_ADDONS
390         bool "Kodi PVR addon was split"
391         select BR2_LEGACY
392         select BR2_PACKAGE_KODI_PVR_ARGUSTV
393         select BR2_PACKAGE_KODI_PVR_DVBLINK
394         select BR2_PACKAGE_KODI_PVR_DVBVIEWER
395         select BR2_PACKAGE_KODI_PVR_FILMON
396         select BR2_PACKAGE_KODI_PVR_HTS
397         select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
398         select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
399         select BR2_PACKAGE_KODI_PVR_MYTHTV
400         select BR2_PACKAGE_KODI_PVR_NEXTPVR
401         select BR2_PACKAGE_KODI_PVR_NJOY
402         select BR2_PACKAGE_KODI_PVR_PCTV
403         select BR2_PACKAGE_KODI_PVR_STALKER
404         select BR2_PACKAGE_KODI_PVR_VBOX
405         select BR2_PACKAGE_KODI_PVR_VDR_VNSI
406         select BR2_PACKAGE_KODI_PVR_VUPLUS
407         select BR2_PACKAGE_KODI_PVR_WMC
408         help
409           Kodi PVR addon was split into seperate modules
411 config BR2_BINUTILS_VERSION_2_23_2
412         bool "binutils 2.23 option renamed"
413         select BR2_LEGACY
414         select BR2_BINUTILS_VERSION_2_23_X
415         help
416           The binutils version option has been renamed to match the
417           same patchlevel logic used by gcc. The new option is now
418           BR2_BINUTILS_VERSION_2_23_X.
420 config BR2_BINUTILS_VERSION_2_24
421         bool "binutils 2.24 option renamed"
422         select BR2_LEGACY
423         select BR2_BINUTILS_VERSION_2_24_X
424         help
425           The binutils version option has been renamed to match the
426           same patchlevel logic used by gcc. The new option is now
427           BR2_BINUTILS_VERSION_2_24_X.
429 config BR2_BINUTILS_VERSION_2_25
430         bool "binutils 2.25 option renamed"
431         select BR2_LEGACY
432         select BR2_BINUTILS_VERSION_2_25_X
433         help
434           The binutils version option has been renamed to match the
435           same patchlevel logic used by gcc. The new option is now
436           BR2_BINUTILS_VERSION_2_25_X.
438 config BR2_PACKAGE_PERF
439         bool "perf option has been renamed"
440         select BR2_LEGACY
441         select BR2_LINUX_KERNEL_TOOL_PERF
442         help
443           The perf package has been moved as a Linux tools package,
444           and the option to enable it is now
445           BR2_LINUX_KERNEL_TOOL_PERF.
447 config BR2_BINUTILS_VERSION_2_22
448         bool "binutils 2.22 removed"
449         select BR2_LEGACY
450         help
451           Binutils 2.22 has been removed, using a newer version is
452           recommended.
454 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
455         bool "gpu-viv-bin-mx6q"
456         select BR2_LEGACY
457         select BR2_PACKAGE_IMX_GPU_VIV
458         help
459           Vivante graphics libraries have been renamed to
460           BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
461           name.
463 config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
464         depends on BR2_PACKAGE_PYTHON
465         bool "libsemanage python bindings removed"
466         help
467           This option has been removed, since the libsemanage Python
468           bindings on the target were not useful.
470 config BR2_TARGET_UBOOT_NETWORK
471         bool "U-Boot custom network settings removed"
472         select BR2_LEGACY
473         help
474           U-Boot's custom network settings options have been removed.
476 ###############################################################################
477 comment "Legacy options removed in 2015.05"
479 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
480         bool "jffs2 16kB erasesize NAND flash option renamed"
481         select BR2_LEGACY
482         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
483         help
484           The JFFS2 NAND flash options now longer include the page
485           size.
487 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
488         bool "jffs2 128kB erasesize NAND flash option renamed"
489         select BR2_LEGACY
490         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
491         help
492           The JFFS2 NAND flash options now longer include the page
493           size.
495 config BR2_PACKAGE_MONO_20
496         bool "2.0/3.5 .Net Runtime"
497         select BR2_LEGACY
498         help
499           This option no longer exists, all versions of the .Net
500           runtime are now installed.
502 config BR2_PACKAGE_MONO_40
503         bool "4.0 .Net Runtime"
504         select BR2_LEGACY
505         help
506           This option no longer exists, all versions of the .Net
507           runtime are now installed.
509 config BR2_PACKAGE_MONO_45
510         bool "4.5 .Net Runtime"
511         select BR2_LEGACY
512         help
513           This option no longer exists, all versions of the .Net
514           runtime are now installed.
516 config BR2_CIVETWEB_WITH_LUA
517         bool "civetweb lua option renamed"
518         select BR2_LEGACY
519         select BR2_PACKAGE_CIVETWEB_WITH_LUA
520         help
521           civetweb's lua option has been renamed to
522           BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
523           packages name options.
525 config BR2_PACKAGE_TIFF_TIFF2PDF
526         bool "tiff utility-specific option removed"
527         select BR2_LEGACY
528         select BR2_PACKAGE_TIFF_UTILITIES
529         help
530           utility-specific options have been removed in favour of
531           the new option BR2_PACKAGE_TIFF_UTILITIES.
533 config BR2_PACKAGE_TIFF_TIFFCP
534         bool "tiff utility-specific option removed"
535         select BR2_LEGACY
536         select BR2_PACKAGE_TIFF_UTILITIES
537         help
538           utility-specific options have been removed in favour of
539           the new option BR2_PACKAGE_TIFF_UTILITIES.
541 config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
542         bool "RTAI patch file path has been removed"
543         help
544           This option has never worked, so it has been removed.
546 config BR2_TARGET_GENERIC_PASSWD_DES
547         bool "Encoding passwords with DES has been removed"
548         select BR2_LEGACY
549         help
550           Paswords can now only be encoded with either of md5, sha256 or sha512.
551           The default is md5, which is stronger that DES (but still pretty weak).
553 config BR2_PACKAGE_GTK2_THEME_HICOLOR
554         bool "hicolor (default theme) is a duplicate"
555         select BR2_LEGACY
556         select BR2_PACKAGE_HICOLOR_ICON_THEME
557         help
558           The option was just a duplicate of hicolor icon theme.
560 config BR2_PACKAGE_VALGRIND_PTRCHECK
561         bool "valgrind's PTRCheck was renamed to SGCheck"
562         select BR2_LEGACY
563         select BR2_PACKAGE_VALGRIND_SGCHECK
564         help
565           PTRCheck was renamed to SGCheck in valgrind
567 ###############################################################################
568 comment "Legacy options removed in 2015.02"
570 config BR2_PACKAGE_LIBGC
571         bool "libgc package removed"
572         select BR2_LEGACY
573         select BR2_PACKAGE_BDWGC
574         help
575           libgc has been removed because we have the same package under a
576           different name, bdwgc.
578 config BR2_PACKAGE_WDCTL
579         bool "util-linux' wdctl option has been renamed"
580         select BR2_LEGACY
581         select BR2_PACKAGE_UTIL_LINUX_WDCTL
582         help
583           util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
584           to be aligned with how the other options are named.
586 config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
587         bool "rpm's bzip2 payloads option has been removed"
588         select BR2_LEGACY
589         select BR2_PACKAGE_BZIP2
590         help
591           The bzip2 payloads option rely entirely on the dependant package bzip2.
592           So, you need to select it to enable this feature.
594 config BR2_PACKAGE_RPM_XZ_PAYLOADS
595         bool "rpm's xz payloads option has been removed"
596         select BR2_LEGACY
597         select BR2_PACKAGE_XZ
598         help
599           The xz payloads option rely entirely on the dependant package xz.
600           So, you need to select it to enable this feature.
602 config BR2_PACKAGE_M4
603         bool "m4 target package removed"
604         select BR2_LEGACY
605         help
606           The m4 target package has been removed, it's been
607           deprecated for some time now.
609 config BR2_PACKAGE_FLEX_BINARY
610         bool "flex binary in target option removed"
611         select BR2_LEGACY
612         help
613           The flex binary in the target option has been removed.
614           It's been deprecated for some time now and is essentially a
615           development tool which isn't very useful in the target.
617 config BR2_PACKAGE_BISON
618         bool "bison target package removed"
619         select BR2_LEGACY
620         help
621           The bison target package has been removed, it's been
622           deprecated for some time now and is essentially a development
623           tool which isn't very useful in the target.
625 config BR2_PACKAGE_GOB2
626         bool "gob2 target package removed"
627         select BR2_LEGACY
628         help
629           The gob2 target package has been removed, it's been
630           deprecated for some time now and was essentially useless
631           without a target toolchain.
633 config BR2_PACKAGE_DISTCC
634         bool "distcc target package removed"
635         select BR2_LEGACY
636         help
637           The distcc target package has been removed, it's been
638           deprecated for some time now and was essentially useless
639           without a target toolchain.
641 config BR2_PACKAGE_HASERL_VERSION_0_8_X
642         bool "haserl 0.8.x version removed"
643         select BR2_LEGACY
644         help
645           The 0.8.x version option for haserl has been removed since it
646           has been deprecated for some time now.
647           You should be able to use the 0.9.x version without issues.
649 config BR2_PACKAGE_STRONGSWAN_TOOLS
650         bool "strongswan option has been removed"
651         select BR2_LEGACY
652         select BR2_PACKAGE_STRONGSWAN_PKI
653         select BR2_PACKAGE_STRONGSWAN_SCEP
654         help
655           The tools option has been removed upstream and the different tools
656           have been split between the pki and scep options, with others
657           deprecated.
659 config BR2_PACKAGE_XBMC_ADDON_XVDR
660         bool "xbmc options have been renamed"
661         select BR2_LEGACY
662         select BR2_PACKAGE_KODI_ADDON_XVDR
663         help
664           The XBMC media center project was renamed to Kodi entertainment center
666 config BR2_PACKAGE_XBMC_PVR_ADDONS
667         bool "xbmc options have been renamed"
668         select BR2_LEGACY
669         select BR2_PACKAGE_KODI_PVR_ADDONS
670         help
671           The XBMC media center project was renamed to Kodi entertainment center
673 config BR2_PACKAGE_XBMC
674         bool "xbmc options have been renamed"
675         select BR2_LEGACY
676         select BR2_PACKAGE_KODI
677         help
678           The XBMC media center project was renamed to Kodi entertainment center
680 config BR2_PACKAGE_XBMC_ALSA_LIB
681         bool "xbmc options have been renamed"
682         select BR2_LEGACY
683         select BR2_PACKAGE_KODI_ALSA_LIB
684         help
685           The XBMC media center project was renamed to Kodi entertainment center
687 config BR2_PACKAGE_XBMC_AVAHI
688         bool "xbmc options have been renamed"
689         select BR2_LEGACY
690         select BR2_PACKAGE_KODI_AVAHI
691         help
692           The XBMC media center project was renamed to Kodi entertainment center
694 config BR2_PACKAGE_XBMC_DBUS
695         bool "xbmc options have been renamed"
696         select BR2_LEGACY
697         select BR2_PACKAGE_KODI_DBUS
698         help
699           The XBMC media center project was renamed to Kodi entertainment center
701 config BR2_PACKAGE_XBMC_LIBBLURAY
702         bool "xbmc options have been renamed"
703         select BR2_LEGACY
704         select BR2_PACKAGE_KODI_LIBBLURAY
705         help
706           The XBMC media center project was renamed to Kodi entertainment center
708 config BR2_PACKAGE_XBMC_GOOM
709         bool "xbmc options have been renamed"
710         select BR2_LEGACY
711         select BR2_PACKAGE_KODI_GOOM
712         help
713           The XBMC media center project was renamed to Kodi entertainment center
715 config BR2_PACKAGE_XBMC_RSXS
716         bool "xbmc options have been renamed"
717         select BR2_LEGACY
718         select BR2_PACKAGE_KODI_RSXS
719         help
720           The XBMC media center project was renamed to Kodi entertainment center
722 config BR2_PACKAGE_XBMC_LIBCEC
723         bool "xbmc options have been renamed"
724         select BR2_LEGACY
725         select BR2_PACKAGE_KODI_LIBCEC
726         help
727           The XBMC media center project was renamed to Kodi entertainment center
729 config BR2_PACKAGE_XBMC_LIBMICROHTTPD
730         bool "xbmc options have been renamed"
731         select BR2_LEGACY
732         select BR2_PACKAGE_KODI_LIBMICROHTTPD
733         help
734           The XBMC media center project was renamed to Kodi entertainment center
736 config BR2_PACKAGE_XBMC_LIBNFS
737         bool "xbmc options have been renamed"
738         select BR2_LEGACY
739         select BR2_PACKAGE_KODI_LIBNFS
740         help
741           The XBMC media center project was renamed to Kodi entertainment center
743 config BR2_PACKAGE_XBMC_RTMPDUMP
744         bool "xbmc options have been renamed"
745         select BR2_LEGACY
746         select BR2_PACKAGE_KODI_RTMPDUMP
747         help
748           The XBMC media center project was renamed to Kodi entertainment center
750 config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
751         bool "xbmc options have been renamed"
752         select BR2_LEGACY
753         select BR2_PACKAGE_KODI_LIBSHAIRPLAY
754         help
755           The XBMC media center project was renamed to Kodi entertainment center
757 config BR2_PACKAGE_XBMC_LIBSMBCLIENT
758         bool "xbmc options have been renamed"
759         select BR2_LEGACY
760         select BR2_PACKAGE_KODI_LIBSMBCLIENT
761         help
762           The XBMC media center project was renamed to Kodi entertainment center
764 config BR2_PACKAGE_XBMC_LIBTHEORA
765         bool "xbmc options have been renamed"
766         select BR2_LEGACY
767         select BR2_PACKAGE_KODI_LIBTHEORA
768         help
769           The XBMC media center project was renamed to Kodi entertainment center
771 config BR2_PACKAGE_XBMC_LIBUSB
772         bool "xbmc options have been renamed"
773         select BR2_LEGACY
774         select BR2_PACKAGE_KODI_LIBUSB
775         help
776           The XBMC media center project was renamed to Kodi entertainment center
778 config BR2_PACKAGE_XBMC_LIBVA
779         bool "xbmc options have been renamed"
780         select BR2_LEGACY
781         select BR2_PACKAGE_KODI_LIBVA
782         help
783           The XBMC media center project was renamed to Kodi entertainment center
785 config BR2_PACKAGE_XBMC_WAVPACK
786         bool "xbmc options have been renamed"
787         select BR2_LEGACY
788         select BR2_PACKAGE_KODI_WAVPACK
789         help
790           The XBMC media center project was renamed to Kodi entertainment center
792 config BR2_PREFER_STATIC_LIB
793         bool "static library option renamed"
794         select BR2_LEGACY
795         help
796           The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
797           highlights the fact that the option no longer "prefers"
798           static libraries, but "enforces" static libraries (i.e
799           shared libraries are completely unused).
801           Take care of updating the type of libraries you want under the
802           "Build options" menu.
804 ###############################################################################
805 comment "Legacy options removed in 2014.11"
807 config BR2_x86_generic
808         bool "x86 generic variant has been removed"
809         select BR2_LEGACY
810         help
811           The generic x86 CPU variant has been removed. Use another
812           CPU variant instead.
814 config BR2_GCC_VERSION_4_4_X
815         bool "gcc 4.4.x has been removed"
816         select BR2_LEGACY
817         help
818           The 4.4.x version of gcc has been removed. Use a newer
819           version instead.
821 config BR2_sparc_sparchfleon
822         bool "sparchfleon CPU has been removed"
823         select BR2_LEGACY
824         help
825           The sparchfleon CPU was only supported in a patched gcc 4.4
826           version. Its support has been removed in favor of the leon3
827           CPU starting from gcc 4.8.x.
829 config BR2_sparc_sparchfleonv8
830         bool "sparchfleonv8 CPU has been removed"
831         select BR2_LEGACY
832         help
833           The sparchfleonv8 CPU was only supported in a patched gcc
834           4.4 version. Its support has been removed in favor of the
835           leon3 CPU starting from gcc 4.8.x.
837 config BR2_sparc_sparcsfleon
838         bool "sparcsfleon CPU has been removed"
839         select BR2_LEGACY
840         help
841           The sparcsfleon CPU was only supported in a patched gcc 4.4
842           version. Its support has been removed in favor of the leon3
843           CPU starting from gcc 4.8.x.
845 config BR2_sparc_sparcsfleonv8
846         bool "sparcsfleonv8 CPU has been removed"
847         select BR2_LEGACY
848         help
849           The sparcsfleonv8 CPU was only supported in a patched gcc
850           4.4 version. Its support has been removed in favor of the
851           leon3 CPU starting from gcc 4.8.x.
853 config BR2_PACKAGE_XLIB_LIBPCIACCESS
854         bool "xlib-libpciaccess option has been renamed"
855         depends on BR2_PACKAGE_XORG7
856         select BR2_LEGACY
857         select BR2_PACKAGE_LIBPCIACCESS
858         help
859           libpciaccess neither depends on X11 nor Xlib. Thus the
860           package has been renamed BR2_PACKAGE_LIBPCIACCESS
862 config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
863         bool "Xceive xc5000 option has been renamed"
864         select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
865         help
866           The Xceive xc5000 option now also handles older firmwares from
867           Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
868           from Cresta, who bought Xceive.
870 config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
871         bool "Chelsio T4 option has been renamed"
872         select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
873         help
874           The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
875           has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
876           to better account for the fact that a T5 variant exists.
878 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
879         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
880         help
881           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
882           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
883           select it in:
884               Target packages -> Hardware handling ->
885               Firmware -> linux-firmware -> WiFi firmware ->
886               iwlwifi 3160/726x revision to use (revision 7)
888 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
889         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
890         help
891           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
892           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
893           select it in:
894               Target packages -> Hardware handling ->
895               Firmware -> linux-firmware -> WiFi firmware ->
896               iwlwifi 3160/726x revision to use (revision 8)
898 ###############################################################################
899 comment "Legacy options removed in 2014.08"
901 config BR2_PACKAGE_LIBELF
902         bool "libelf has been removed"
903         select BR2_PACKAGE_ELFUTILS
904         select BR2_LEGACY
905         help
906           The libelf package provided an old version of the libelf library
907           and is deprecated. The libelf library is now provided by the
908           elfutils package.
910 config BR2_KERNEL_HEADERS_3_8
911         bool "kernel headers version 3.8.x are no longer supported"
912         select BR2_KERNEL_HEADERS_3_10
913         select BR2_LEGACY
914         help
915           Version 3.8.x of the Linux kernel headers have been deprecated
916           for more than four buildroot releases and are now removed.
917           As an alternative, version 3.10.x of the headers have been
918           automatically selected in your configuration.
920 config BR2_PACKAGE_GETTEXT_TOOLS
921         bool "support for gettext-tools on target has been removed"
922         select BR2_LEGACY
923         help
924           The option to install the gettext utilities on the target
925           has been removed. This is not necessary as Buildroot is not
926           designed to provide a full development environment on the
927           target. gettext tools should be used on the build machine
928           instead.
930 config BR2_PACKAGE_PROCPS
931         bool "procps has been replaced by procps-ng"
932         select BR2_PACKAGE_PROCPS_NG
933         select BR2_LEGACY
934         help
935           The procps package has been replaced by the equivalent procps-ng.
937 config BR2_BINUTILS_VERSION_2_20_1
938         bool "binutils 2.20.1 has been removed"
939         select BR2_LEGACY
940         help
941           The 2.20.1 version of binutils has been removed. Use a newer
942           version instead.
944 config BR2_BINUTILS_VERSION_2_21
945         bool "binutils 2.21 has been removed"
946         select BR2_LEGACY
947         help
948           The 2.21 version of binutils has been removed. Use a newer
949           version instead.
951 config BR2_BINUTILS_VERSION_2_23_1
952         bool "binutils 2.23.1 has been removed"
953         select BR2_LEGACY
954         help
955           The 2.23.1 version of binutils has been removed. Use a newer
956           version instead.
958 config BR2_UCLIBC_VERSION_0_9_32
959         bool "uclibc 0.9.32 has been removed"
960         select BR2_LEGACY
961         help
962           The 0.9.32 version of uClibc has been removed. Use a newer
963           version instead.
965 config BR2_GCC_VERSION_4_3_X
966         bool "gcc 4.3.x has been removed"
967         select BR2_LEGACY
968         help
969           The 4.3.x version of gcc has been removed. Use a newer
970           version instead.
972 config BR2_GCC_VERSION_4_6_X
973         bool "gcc 4.6.x has been removed"
974         select BR2_LEGACY
975         help
976           The 4.6.x version of gcc has been removed. Use a newer
977           version instead.
979 config BR2_GDB_VERSION_7_4
980         bool "gdb 7.4 has been removed"
981         select BR2_LEGACY
982         help
983           The 7.4 version of gdb has been removed. Use a newer version
984           instead.
986 config BR2_GDB_VERSION_7_5
987         bool "gdb 7.5 has been removed"
988         select BR2_LEGACY
989         help
990           The 7.5 version of gdb has been removed. Use a newer version
991           instead.
993 config BR2_BUSYBOX_VERSION_1_19_X
994         bool "busybox version selection has been removed"
995         select BR2_LEGACY
996         help
997           The possibility of selecting the Busybox version has been
998           removed. Use the latest version provided by the Busybox
999           package instead.
1001 config BR2_BUSYBOX_VERSION_1_20_X
1002         bool "busybox version selection has been removed"
1003         select BR2_LEGACY
1004         help
1005           The possibility of selecting the Busybox version has been
1006           removed. Use the latest version provided by the Busybox
1007           package instead.
1009 config BR2_BUSYBOX_VERSION_1_21_X
1010         bool "busybox version selection has been removed"
1011         select BR2_LEGACY
1012         help
1013           The possibility of selecting the Busybox version has been
1014           removed. Use the latest version provided by the Busybox
1015           package instead.
1017 config BR2_PACKAGE_LIBV4L_DECODE_TM6000
1018         bool "decode_tm6000"
1019         select BR2_PACKAGE_LIBV4L_UTILS
1020         select BR2_LEGACY
1021         help
1022           This libv4l option has been deprecated and replaced by a single
1023           option to build all the libv4l utilities.
1025 config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
1026         bool "ir-keytable"
1027         select BR2_PACKAGE_LIBV4L_UTILS
1028         select BR2_LEGACY
1029         help
1030           This libv4l option has been deprecated and replaced by a single
1031           option to build all the libv4l utilities.
1033 config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
1034         bool "v4l2-compliance"
1035         select BR2_PACKAGE_LIBV4L_UTILS
1036         select BR2_LEGACY
1037         help
1038           This libv4l option has been deprecated and replaced by a single
1039           option to build all the libv4l utilities.
1041 config BR2_PACKAGE_LIBV4L_V4L2_CTL
1042         bool "v4l2-ctl"
1043         select BR2_PACKAGE_LIBV4L_UTILS
1044         select BR2_LEGACY
1045         help
1046           This libv4l option has been deprecated and replaced by a single
1047           option to build all the libv4l utilities.
1049 config BR2_PACKAGE_LIBV4L_V4L2_DBG
1050         bool "v4l2-dbg"
1051         select BR2_PACKAGE_LIBV4L_UTILS
1052         select BR2_LEGACY
1053         help
1054           This libv4l option has been deprecated and replaced by a single
1055           option to build all the libv4l utilities.
1057 ###############################################################################
1058 comment "Legacy options removed in 2014.05"
1060 config BR2_PACKAGE_EVTEST_CAPTURE
1061         bool "evtest-capture support removed (dropped since evtest 1.31)"
1062         select BR2_LEGACY
1063         help
1064           Support for evtest-capture has been removed (dropped from
1065           evtest package since version 1.31), use evemu package
1066           instead.
1068 config BR2_KERNEL_HEADERS_3_6
1069         bool "kernel headers version 3.6.x are no longer supported"
1070         select BR2_KERNEL_HEADERS_3_10
1071         select BR2_LEGACY
1072         help
1073           Version 3.6.x of the Linux kernel headers have been deprecated
1074           for more than four buildroot releases and are now removed.
1075           As an alternative, version 3.10.x of the headers have been
1076           automatically selected in your configuration.
1078 config BR2_KERNEL_HEADERS_3_7
1079         bool "kernel headers version 3.7.x are no longer supported"
1080         select BR2_KERNEL_HEADERS_3_10
1081         select BR2_LEGACY
1082         help
1083           Version 3.7.x of the Linux kernel headers have been deprecated
1084           for more than four buildroot releases and are now removed.
1085           As an alternative, version 3.10.x of the headers have been
1086           automatically selected in your configuration.
1088 config BR2_PACKAGE_VALA
1089         bool "vala target package has been removed"
1090         select BR2_LEGACY
1091         help
1092           The 'vala' target package has been removed since it has been
1093           deprecated for more than four buildroot releases.
1094           Note: the host vala package still exists.
1096 config BR2_TARGET_TZ_ZONELIST
1097         default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
1099 config BR2_PACKAGE_TZDATA_ZONELIST
1100         string "tzdata: the timezone list option has been renamed"
1101         help
1102           The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
1103           BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
1104           menu. You'll need to select BR2_TARGET_TZ_INFO.
1106 config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
1107         bool
1108         default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
1109         select BR2_LEGACY
1111 config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
1112         bool "Lua command-line editing none has been renamed"
1113         select BR2_LEGACY
1114         help
1115           The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
1116           renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
1117           it in the corresponding choice.
1119 config BR2_PACKAGE_LUA_INTERPRETER_READLINE
1120         bool "Lua command-line editing using readline has been renamed"
1121         select BR2_LEGACY
1122         help
1123           The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
1124           renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
1125           it in the corresponding choice.
1127 config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
1128         bool "Lua command-line editing using linenoise has been renamed"
1129         select BR2_LEGACY
1130         help
1131           The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
1132           renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
1133           it in the corresponding choice.
1135 config BR2_PACKAGE_DVB_APPS_UTILS
1136         bool "dvb-apps utilities now built by default"
1137         select BR2_LEGACY
1138         help
1139           The dvb-apps utilities are now always built when the dvb-apps
1140           package is selected.
1142 config BR2_KERNEL_HEADERS_SNAP
1143         bool "Local Linux snapshot support removed"
1144         select BR2_LEGACY
1145         help
1146           Support for using a custom snapshot to install the Linux
1147           kernel headers has been removed.
1149 config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
1150         bool "/dev management by udev removed"
1151         select BR2_LEGACY
1152         help
1153           The 'udev' package has been converted to a virtual package.
1154           The providers for this feature are: 'eudev', 'systemd'.
1156           Therefore, if you are not using 'systemd' as init system, you
1157           must choose 'Dynamic using eudev' in the '/dev management'
1158           menu to get the same behaviour as in your old configuration.
1160           If you are using 'systemd', its internal implementation of
1161           'udev' will be used automatically.
1163           You must also check the packages depending on 'udev' are still
1164           selected.
1166 config BR2_PACKAGE_UDEV
1167         bool "udev is now a virtual package"
1168         select BR2_LEGACY
1169         select BR2_PACKAGE_HAS_UDEV
1170         help
1171           The 'udev' package has been converted to a virtual package.
1172           The providers for this feature are: 'eudev', 'systemd'.
1174           Your old configuration refers to packages depending on 'udev',
1175           either for build or at runtime.
1177           Check that a 'udev' provider is selected. If you are not using
1178           'systemd' as init system, 'eudev' should be selected, which is
1179           the case if '/dev management' is set to 'Dynamic using eudev'.
1181           If you are using 'systemd', its internal implementation of 'udev'
1182           is used.
1184 config BR2_PACKAGE_UDEV_RULES_GEN
1185         bool "udev rules generation handled by provider"
1186         select BR2_LEGACY
1187         select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
1188         select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
1189         help
1190           The 'udev' package has been converted to a virtual package.
1191           The providers for this feature are: 'eudev', 'systemd'.
1193           If you are not using 'systemd' as init system, udev rules
1194           generation will be handled by 'eudev'. Check that
1195           '/dev management' is set to 'Dynamic using eudev' to get
1196           the same behaviour as in your old configuration.
1198           If you are using 'systemd', it internal implementation of 'udev'
1199           will generate the rules.
1201 config BR2_PACKAGE_UDEV_ALL_EXTRAS
1202         bool "udev extras removed"
1203         select BR2_LEGACY
1204         help
1205           The 'udev' package has been converted to a virtual package.
1206           The providers for this feature are: 'eudev', 'systemd'.
1208           The option to enable the extra features of 'udev' (gudev, ...)
1209           has been removed. These features are automatically enabled in
1210           the 'udev' providers if the dependencies are selected. For
1211           example, selecting 'libglib2' will trigger the build of gudev.
1213 config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
1214         bool "xlib-libpthread-stubs option has been renamed"
1215         depends on BR2_PACKAGE_XORG7
1216         select BR2_LEGACY
1217         select BR2_PACKAGE_LIBPTHREAD_STUBS
1218         help
1219           The pthread stubs neither depend on X11 nor Xlib. Thus the
1220           package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
1222 ###############################################################################
1223 comment "Legacy options removed in 2014.02"
1225 config BR2_sh2
1226         bool "sh2 support removed"
1227         help
1228           Due to an inexistent user base and generally poor Linux
1229           support, the support for the SH2 architecture was removed.
1231 config BR2_sh3
1232         bool "sh3 support removed"
1233         help
1234           Due to an inexistent user base and generally poor Linux
1235           support, the support for the SH3 architecture was removed.
1237 config BR2_sh3eb
1238         bool "sh3eb support removed"
1239         help
1240           Due to an inexistent user base and generally poor Linux
1241           support, the support for the SH3eb architecture was removed.
1243 config BR2_KERNEL_HEADERS_3_1
1244         bool "kernel headers version 3.1.x are no longer supported"
1245         select BR2_KERNEL_HEADERS_3_2
1246         select BR2_LEGACY
1247         help
1248           Version 3.1.x of the Linux kernel headers have been deprecated
1249           for more than four buildroot releases and are now removed.
1250           As an alternative, version 3.2.x of the headers have been
1251           automatically selected in your configuration.
1253 config BR2_KERNEL_HEADERS_3_3
1254         bool "kernel headers version 3.3.x are no longer supported"
1255         select BR2_KERNEL_HEADERS_3_4
1256         select BR2_LEGACY
1257         help
1258           Version 3.3.x of the Linux kernel headers have been deprecated
1259           for more than four buildroot releases and are now removed.
1260           As an alternative, version 3.4.x of the headers have been
1261           automatically selected in your configuration.
1263 config BR2_KERNEL_HEADERS_3_5
1264         bool "kernel headers version 3.5.x are no longer supported"
1265         select BR2_KERNEL_HEADERS_3_10
1266         select BR2_LEGACY
1267         help
1268           Version 3.5.x of the Linux kernel headers have been deprecated
1269           for more than four buildroot releases and are now removed.
1270           As an alternative, version 3.10.x of the headers have been
1271           automatically selected in your configuration.
1273 config BR2_GDB_VERSION_7_2
1274         bool "gdb 7.2.x is no longer supported"
1275         select BR2_GDB_VERSION_7_6
1276         select BR2_LEGACY
1277         help
1278           Version 7.2.x of gdb has been deprecated for more than four
1279           buildroot releases and is now removed. As an alternative, gdb
1280           7.5.x has been automatically selected in your configuration.
1282 config BR2_GDB_VERSION_7_3
1283         bool "gdb 7.3.x is no longer supported"
1284         select BR2_GDB_VERSION_7_6
1285         select BR2_LEGACY
1286         help
1287           Version 7.3.x of gdb has been deprecated for more than four
1288           buildroot releases and is now removed. As an alternative, gdb
1289           7.5.x has been automatically selected in your configuration.
1291 config BR2_PACKAGE_CCACHE
1292         bool "ccache target package has been removed"
1293         select BR2_LEGACY
1294         help
1295           The 'ccache' target package has been removed since it has been
1296           deprecated for more than four buildroot releases.
1297           Note: using ccache for speeding up builds is still supported.
1299 config BR2_HAVE_DOCUMENTATION
1300         bool "support for documentation on target has been removed"
1301         select BR2_LEGACY
1302         help
1303           Support for documentation on target has been removed since it has
1304           been deprecated for more than four buildroot releases.
1306 config BR2_PACKAGE_AUTOMAKE
1307         bool "automake target package has been removed"
1308         select BR2_LEGACY
1309         help
1310           The 'automake' target package has been removed since it has been
1311           deprecated for more than four buildroot releases.
1312           Note: the host automake still exists.
1314 config BR2_PACKAGE_AUTOCONF
1315         bool "autoconf target package has been removed"
1316         select BR2_LEGACY
1317         help
1318           The 'autoconf' target package has been removed since it has been
1319           deprecated for more than four buildroot releases.
1320           Note: the host autoconf still exists.
1322 config BR2_PACKAGE_XSTROKE
1323         bool "xstroke has been removed"
1324         select BR2_LEGACY
1325         help
1326           The 'xstroke' package has been removed since it has been
1327           deprecated for more than four buildroot releases.
1329 config BR2_PACKAGE_LZMA
1330         bool "lzma target package has been removed"
1331         select BR2_LEGACY
1332         help
1333           The 'lzma' target package has been removed since it has been
1334           deprecated for more than four buildroot releases.
1335           Note: generating lzma-compressed rootfs images is still supported.
1337 config BR2_PACKAGE_TTCP
1338         bool "ttcp has been removed"
1339         select BR2_LEGACY
1340         help
1341           The 'ttcp' package has been removed since it has been
1342           deprecated for more than four buildroot releases.
1344 config BR2_PACKAGE_LIBNFC_LLCP
1345         bool "libnfc-llcp has been replaced by libllcp"
1346         select BR2_LEGACY
1347         select BR2_PACKAGE_LIBLLCP
1348         help
1349           The 'libnfc-llcp' package has been removed since upstream renamed
1350           to 'libllcp'. We have added a new package for 'libllcp' and bumped
1351           the version at the same time.
1353 config BR2_PACKAGE_MYSQL_CLIENT
1354         bool "MySQL client renamed to MySQL"
1355         select BR2_LEGACY
1356         select BR2_PACKAGE_MYSQL
1357         help
1358           The option has been renamed BR2_PACKAGE_MYSQL
1360 config BR2_PACKAGE_SQUASHFS3
1361         bool "squashfs3 has been removed"
1362         select BR2_LEGACY
1363         select BR2_PACKAGE_SQUASHFS
1364         help
1365           The 'squashfs3' package has been removed since it has been
1366           deprecated for more than four buildroot releases. Package
1367           'squashfs' (4) has been selected automatically as replacement.
1369 config BR2_TARGET_ROOTFS_SQUASHFS3
1370         bool "squashfs3 rootfs support has been removed"
1371         select BR2_LEGACY
1372         help
1373           Together with the removal of the squashfs3 package, support
1374           for squashfs3 root filesystems has been removed too. Squashfs
1375           root filesystems will automatically use squashfs4 now.
1377 config BR2_PACKAGE_NETKITBASE
1378         bool "netkitbase has been removed"
1379         select BR2_LEGACY
1380         help
1381           The 'netkitbase' package has been removed since it has been
1382           deprecated since 2012.11. This package provided 'inetd'
1383           which is replaced by 'xinet' and 'ping' which is replaced by
1384           'busybox' or 'fping'.
1386 config BR2_PACKAGE_NETKITTELNET
1387         bool "netkittelnet has been removed"
1388         select BR2_LEGACY
1389         help
1390           The 'netkittelnet' package has been removed since it has
1391           been deprecated since 2012.11. 'busybox' provides a telnet
1392           client and should be used instead.
1394 config BR2_PACKAGE_LUASQL
1395         bool "luasql has been replaced by luasql-sqlite3"
1396         select BR2_PACKAGE_LUASQL_SQLITE3
1397         select BR2_LEGACY
1398         help
1399           The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
1401 config BR2_PACKAGE_LUACJSON
1402         bool "luacjson has been replaced by lua-cjson"
1403         select BR2_PACKAGE_LUA_CJSON
1404         select BR2_LEGACY
1405         help
1406           The option has been renamed BR2_PACKAGE_LUA_CJSON.
1408 ###############################################################################
1409 comment "Legacy options removed in 2013.11"
1411 config BR2_PACKAGE_LVM2_DMSETUP_ONLY
1412         bool "lvm2's 'dmsetup only' option removed"
1413         select BR2_LEGACY
1414         help
1415           The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
1416           led to problems with other packages that need the full lvm2
1417           suite. Therefore, the option has been replaced with the positive
1418           BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
1420 # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
1421 # in order to automatically propagate old configs
1423 config BR2_PACKAGE_QT_JAVASCRIPTCORE
1424         bool "qt javascriptcore option removed"
1425         select BR2_LEGACY
1426         help
1427           The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
1428           force the activation or disabling of the JIT compiler in the
1429           Qt Javascript interpreter. However, the JIT compiler is not
1430           available for all architectures, so forcing its activation
1431           does not always work. Moreover, Qt knows by itself for which
1432           architectures JIT support is possible, and will
1433           automatically enable it if possible.
1435           Therefore, this option was in fact useless, and causing
1436           build problems when enabled on architectures for which the
1437           JIT support was not available. It has been removed, and
1438           there is no replacement: Qt will enable JIT at compile time
1439           when possible.
1441 config BR2_PACKAGE_MODULE_INIT_TOOLS
1442         bool "module-init-tools replaced by kmod"
1443         select BR2_PACKAGE_KMOD
1444         select BR2_PACKAGE_KMOD_TOOLS
1445         select BR2_LEGACY
1446         help
1447           The 'module-init-tools' package has been removed, since it
1448           has been depracated upstream and replaced by 'kmod'.
1450 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
1451         string "u-boot: the git repository URL option has been renamed"
1452         help
1453           The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
1454           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
1456 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
1457         bool
1458         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
1459         select BR2_LEGACY
1461 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
1462 # boot/uboot/Config.in
1464 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
1465         string "u-boot: the git repository version option has been renamed"
1466         help
1467           The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
1468           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
1470 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
1471         bool
1472         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
1473         select BR2_LEGACY
1475 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
1476 # boot/uboot/Config.in
1478 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
1479         string "linux: the git repository URL option has been renamed"
1480         help
1481           The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
1482           been renamed to
1483           BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
1485 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
1486         bool
1487         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
1488         select BR2_LEGACY
1490 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
1491 # linux/Config.in
1493 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
1494         string "linux: the git repository version option has been renamed"
1495         help
1496           The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
1497           been renamed to
1498           BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
1500 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
1501         bool
1502         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
1503         select BR2_LEGACY
1505 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
1506 # linux/Config.in
1508 ###############################################################################
1509 comment "Legacy options removed in 2013.08"
1511 config BR2_ARM_OABI
1512         bool "ARM OABI support has been removed"
1513         select BR2_LEGACY
1514         help
1515           The support for the ARM OABI was deprecated since a while,
1516           and has been removed completely from Buildroot. It is also
1517           deprecated in upstream gcc, since gcc 4.7. People should
1518           switch to EABI instead, which should not be a problem as
1519           long as you don't have pre-built OABI binaries in your
1520           system that you can't recompile.
1522 config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
1523         bool "dosfstools dosfsck renamed to fsck.fat"
1524         select BR2_LEGACY
1525         select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
1526         help
1527           dosfsck was renamed upstream to fsck.fat for consistency.
1529 config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
1530         bool "dosfstools dosfslabel renamed to fatlabel"
1531         select BR2_LEGACY
1532         select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
1533         help
1534           doslabel was renamed upstream to fatlabel for consistency.
1536 config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
1537         bool "dosfstools mkdosfs renamed to mkfs.fat"
1538         select BR2_LEGACY
1539         select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
1540         help
1541           mkdosfs was renamed upstream to mkfs.fat for consistency.
1543 config BR2_ELF2FLT
1544         bool "the elf2flt option has been renamed"
1545         select BR2_LEGACY
1546         help
1547           The BR2_ELF2FLT option has been renamed to
1548           BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
1549           the package infrastructure.
1551 config BR2_VFP_FLOAT
1552         bool "the ARM VFP floating point option has been renamed"
1553         select BR2_LEGACY
1554         help
1555           Due to a major refactoring of the floating-point handling of
1556           the ARM architecture support, the BR2_VFP_FLOAT option has
1557           been replaced with a choice of options that allows to select
1558           between various VFP versions/capabilities.
1560 config BR2_PACKAGE_GCC_TARGET
1561         bool "gcc on the target filesystem has been removed"
1562         select BR2_LEGACY
1563         help
1564           The support for gcc in the target filesystem was deprecated
1565           since a while, and has been removed completely from Buildroot.
1566           See Buildroot's documentation for more explanations.
1568 config BR2_HAVE_DEVFILES
1569         bool "development files in target filesystem has been removed"
1570         select BR2_LEGACY
1571         help
1572           The installation of the development files in the target
1573           filesystem was deprecated since a while, and has been removed
1574           completely from Buildroot.
1575           See Buildroot's documentation for more explanations.
1577 ###############################################################################
1578 comment "Legacy options removed in 2013.05"
1580 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
1581         bool "Realtek 8192 replaced by Realtek 81xx"
1582         select BR2_LEGACY
1583         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
1584         help
1585           Now covers the whole Realtek 81xx familly: 8188/8192.
1587 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
1588         bool "Realtek 8712 replaced by Realtek 87xx"
1589         select BR2_LEGACY
1590         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
1591         help
1592           Now covers the whole Realtek 87xx familly: 8712/8723.
1594 ###############################################################################
1595 comment "Legacy options removed in 2013.02"
1597 config BR2_sa110
1598         bool "sa110 ARM target switched to strongarm"
1599         select BR2_LEGACY
1600         select BR2_strongarm
1601         help
1602           The SA110 is the same as a generic StrongARM, it just differs
1603           in speed, peripherals and cache.
1605 config BR2_sa1100
1606         bool "sa1100 ARM target switched to strongarm"
1607         select BR2_LEGACY
1608         select BR2_strongarm
1609         help
1610           The SA1100 is the same as a generic StrongARM, it just differs
1611           in speed, peripherals and cache.
1613 config BR2_PACKAGE_GDISK
1614         bool "gdisk has been replaced by gptfdisk"
1615         select BR2_LEGACY
1616         select BR2_PACKAGE_GPTFDISK
1617         help
1618           The option has been renamed BR2_PACKAGE_GPTFDISK.
1620 config BR2_PACKAGE_GDISK_GDISK
1621         bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
1622         select BR2_LEGACY
1623         select BR2_PACKAGE_GPTFDISK
1624         select BR2_PACKAGE_GPTFDISK_GDISK
1625         help
1626           The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
1628 config BR2_PACKAGE_GDISK_SGDISK
1629         bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
1630         select BR2_LEGACY
1631         select BR2_PACKAGE_GPTFDISK
1632         select BR2_PACKAGE_GPTFDISK_SGDISK
1633         help
1634           The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
1636 config BR2_PACKAGE_GDB_HOST
1637         bool "gdb for the host option has been renamed"
1638         select BR2_PACKAGE_HOST_GDB
1639         select BR2_LEGACY
1640         help
1641           Due to the conversion of gdb to the package infrastructure,
1642           the BR2_PACKAGE_GDB_HOST option has been renamed
1643           BR2_PACKAGE_HOST_GDB.
1645 config BR2_PACKAGE_DIRECTB_DITHER_RGB16
1646         bool "DirectFB RGB16 dithering option has been renamed"
1647         select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
1648         select BR2_LEGACY
1649         help
1650           The option has been renamed
1651           BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
1653 config BR2_PACKAGE_DIRECTB_TESTS
1654         bool "DirectFB Tests option has been renamed"
1655         select BR2_PACKAGE_DIRECTFB_TESTS
1656         select BR2_LEGACY
1657         help
1658           The option has been renamed
1659           BR2_PACKAGE_DIRECTFB_TESTS.
1661 ###############################################################################
1662 comment "Legacy options removed in 2012.11"
1664 config BR2_PACKAGE_CUSTOMIZE
1665         bool "customize package has been removed"
1666         select BR2_LEGACY
1667         help
1668           The 'customize' special package has been removed. Instead,
1669           we recommend to create either your own packages, or use a
1670           post-build script to customize your root filesystem. See
1671           Buildroot's documentation for more details.
1673 config BR2_PACKAGE_XSERVER_xorg
1674         bool "X.org modular server"
1675         select BR2_LEGACY
1676         select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
1677         help
1678           The option has been renamed
1679           BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
1681 config BR2_PACKAGE_XSERVER_tinyx
1682         bool "KDrive / TinyX server"
1683         select BR2_LEGACY
1684         select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
1685         help
1686           The option has been renamed
1687           BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
1689 config BR2_PACKAGE_PTHREAD_STUBS
1690         bool "pthread-stubs option has been renamed"
1691         select BR2_LEGACY
1692         select BR2_PACKAGE_LIBPTHREAD_STUBS
1693         help
1694           For consistency reason, the pthread-stubs package has been
1695           renamed to libpthread-stubs.
1697 ###############################################################################
1698 comment "Legacy options removed in 2012.08"
1700 config BR2_PACKAGE_GETTEXT_STATIC
1701         bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
1702         select BR2_LEGACY
1703         help
1704           To build a static gettext library, select BR2_PREFER_STATIC_LIB.
1707 config BR2_PACKAGE_LIBINTL
1708         bool "libintl"
1709         select BR2_LEGACY
1710         select BR2_PACKAGE_GETTEXT
1711         help
1712           libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
1713           only installs the library, not the executables.
1715 config BR2_PACKAGE_INPUT_TOOLS_EVTEST
1716         bool "input-tools evtest is now a separate package evtest"
1717         select BR2_LEGACY
1718         select BR2_PACKAGE_EVTEST
1719         help
1720           The evtest program from input-tools is now a separate package.
1722 config BR2_BFIN_FDPIC
1723         bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
1724         select BR2_BINFMT_FDPIC
1725         select BR2_LEGACY
1727 config BR2_BFIN_FLAT
1728         bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
1729         select BR2_BINFMT_FLAT
1730         select BR2_LEGACY
1732 endmenu
1734 endif # !SKIP_LEGACY