blob: ec5079da65148d5f3fc09d9ae385d1c7cd24d5e9 [file] [log] [blame]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00001#
2# Config.in.legacy - support for backward compatibility
3#
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +02004# When an existing Config.in symbol is removed, it should be added again in
5# this file, and take appropriate action to approximate backward compatibility.
6# This will make the transition for the user more convenient.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00007#
8# When adding legacy symbols to this file, add them to the front. The oldest
9# symbols will be removed again after about two years.
10#
11# The symbol should be copied as-is from the place where it was previously
12# defined, but the help text should be removed or replaced with something that
13# explains how to fix it.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020014#
15# For bool options, the old symbol should select BR2_LEGACY, so that the user
16# is informed at build-time about selected legacy options.
17# If there is an equivalent (set of) new symbols, these should be select'ed by
18# the old symbol for backwards compatibility.
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010019# It is not possible to select an option that is part of a choice. In that
20# case, the new option should use the old symbol as default. This requires a
21# change outside of Config.in.legacy, and this should be clearly marked as such
22# in a comment, so that removal of legacy options also include the removal of
23# these external references.
24#
25# [Example: renaming a bool option that is part of a choice from FOO to BAR]
26# original choice:
27# choice
28# prompt "Choose foobar"
29# config BR2_FOO_1
30# bool "foobar 1"
31# config BR2_FOO_2
32# bool "foobar 2"
33# endchoice
34#
35# becomes:
36# choice
37# prompt "Choose foobar"
38# default BR2_BAR_1 if BR2_FOO_1 # legacy
39# default BR2_BAR_2 if BR2_FOO_2 # legacy
40# config BR2_BAR_1
41# bool "foobar 1"
42# config BR2_BAR_2
43# bool "foobar 2"
44# endchoice
45#
46# and in Config.in.legacy:
47# config BR2_FOO_1
48# bool "foobar 1 has been renamed"
49# help
50# <suitable help text>
51# # Note: BR2_FOO_1 is still referenced from package/foo/Config.in
52# config BR2_FOO_2
53# bool "foobar 2 has been renamed"
54# help
55# <suitable help text>
56# # Note: BR2_FOO_2 is still referenced from package/foo/Config.in
57#
58# [End of example]
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020059#
60# For string options, it is not possible to directly select another symbol. In
61# this case, a hidden wrap bool option has to be added, that defaults to y if
62# the old string is not set at its default value. The wrap symbol should select
63# BR2_LEGACY.
64# If the original symbol has been renamed, the new symbol should use the value
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010065# of the old symbol as default. Like for choice options, a comment should be
66# added to flag that the symbol is still used in another file.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020067#
68# [Example: renaming a string option from FOO to BAR]
69# original symbol:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010070# config BR2_FOO_STRING
71# string "Some foo string"
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020072#
73# becomes:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010074# config BR2_BAR_STRING
75# string "Some bar string"
76# default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020077#
78# and in Config.in.legacy:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010079# config BR2_FOO_STRING
80# string "The foo string has been renamed"
81# help
82# <suitable help text>
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020083#
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010084# config BR2_FOO_STRING_WRAP
85# bool
86# default y if BR2_FOO_STRING != ""
87# select BR2_LEGACY
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020088#
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010089# # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020090#
91# [End of example]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000092
Arnout Vandecappelle53903a12015-04-11 01:49:02 +020093config BR2_SKIP_LEGACY
94 bool
95 option env="SKIP_LEGACY"
96
97if !BR2_SKIP_LEGACY
98
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000099config BR2_LEGACY
100 bool
101 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -0300102 This option is selected automatically when your old .config
103 uses an option that no longer exists in current buildroot. In
104 that case, the build will fail. Look for config options which
105 are selected in the menu below: they no longer exist and
106 should be replaced by something else.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000107
108# This comment fits exactly in a 80-column display
109comment "Legacy detected: check the content of the menu below"
110 depends on BR2_LEGACY
111
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000112menu "Legacy config options"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000113
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000114if BR2_LEGACY
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +0200115comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000116comment "Your old configuration uses legacy options that no "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +0200117comment "longer exist in buildroot, as indicated in the menu "
118comment "below. As long as these options stay selected, or in"
119comment "case of string options are non-empty, the build "
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000120comment "will fail. "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +0200121comment "* "
122comment "Where possible, an automatic conversion from old to "
123comment "new symbols has been performed. Before making any "
124comment "change in this legacy menu, make sure to exit the "
125comment "configuration editor a first time and save the "
126comment "configuration. Otherwise, the automatic conversion "
127comment "of symbols will be lost. "
128comment "* "
129comment "After this initial save, reopen the configuration "
130comment "editor, inspect the options selected below, read "
131comment "their help texts, and verify/update the new "
132comment "configuration in the corresponding configuration "
133comment "menus. When everything is ok, you can disable the "
134comment "legacy options in the menu below. Once you have "
135comment "disabled all legacy options, this text will "
136comment "disappear and you will be able to start the build. "
137comment "* "
Yann E. MORIN0b39b142017-12-27 00:39:04 +0100138comment "Note: legacy options older than 5 years have been "
139comment "removed, and configuration files that still have "
140comment "those options set, will fail to build, or run in "
141comment "unpredictable ways. "
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +0200142comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000143endif
144
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200145###############################################################################
Matt Weberbf362602018-12-05 20:06:29 -0600146
Fabrice Fontainec8421562019-03-05 23:01:04 +0100147comment "Legacy options removed in 2019.05"
148
Francois Perrad1f33ec42019-04-03 15:06:09 +0200149config BR2_PACKAGE_LUNIT
150 bool "lunit package removed"
151 select BR2_LEGACY
152 select BR2_PACKAGE_LUA_LUNITX
153 help
154 The lunit package was removed in favor of its fork lunitx,
155 which supports all versions of Lua.
156
Louis-Paul Cordier93be7882019-03-23 13:28:18 +0100157config BR2_PACKAGE_FFMPEG_FFSERVER
158 bool "ffmpeg ffserver removed"
159 select BR2_LEGACY
160 help
161 On July 10th, 2016, ffserver program has been dropped.
162
Francois Perradb643a752019-03-06 16:24:26 +0100163config BR2_PACKAGE_LIBUMP
164 bool "libump package removed"
165 select BR2_LEGACY
166 help
167 The libump package was removed, it was only used as a
168 dependency of sunxi-mali, which itself was removed.
169
Francois Perrad732066a2019-03-06 16:24:25 +0100170config BR2_PACKAGE_SUNXI_MALI
171 bool "sunxi-mali package removed"
172 select BR2_LEGACY
173 select BR2_PACKAGE_SUNXI_MALI_MAINLINE
174 help
175 The sunxi-mali package was removed, as the
176 sunxi-mali-mainline package replaces it for mainline
177 kernels on Allwinner platforms.
178
Romain Naour9a057592019-03-13 00:08:39 +0100179config BR2_BINUTILS_VERSION_2_29_X
180 bool "binutils version 2.29 support removed"
181 select BR2_LEGACY
182 help
183 Support for binutils version 2.29 has been removed. The
184 current default version (2.31 or later) has been selected
185 instead.
186
Romain Naourdc5d9512019-03-13 00:08:38 +0100187config BR2_BINUTILS_VERSION_2_28_X
188 bool "binutils version 2.28 support removed"
189 select BR2_LEGACY
190 help
191 Support for binutils version 2.28 has been removed. The
192 current default version (2.31 or later) has been selected
193 instead.
194
Fabrice Fontainec8421562019-03-05 23:01:04 +0100195config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK
196 bool "gst-plugins-bad apexsink option removed"
197 select BR2_LEGACY
198 help
199 The gst-plugins-bad apexsink option was removed.
200
Francois Perrad297613f2018-12-02 11:25:06 +0100201comment "Legacy options removed in 2019.02"
202
Peter Korsgaard5a8bc802019-02-06 15:10:58 +0100203config BR2_PACKAGE_QT
204 bool "qt package removed"
205 select BR2_LEGACY
206 help
207 The qt package was removed.
208
Peter Korsgaarde228a9f2019-02-06 15:10:52 +0100209config BR2_PACKAGE_QTUIO
210 bool "qtuio package removed"
211 select BR2_LEGACY
212 help
213 The qtuio package was removed.
214
Peter Korsgaard5de7c032019-02-06 15:10:51 +0100215config BR2_PACKAGE_PINENTRY_QT4
216 bool "pinentry-qt4 option removed"
217 select BR2_LEGACY
218 help
219 The pinentry-qt4 option was removed.
220
Peter Korsgaard3f821fc2019-02-06 15:10:50 +0100221config BR2_PACKAGE_POPPLER_QT
222 bool "poppler qt option removed"
223 select BR2_LEGACY
224 help
225 The poppler qt option was removed.
226
Peter Korsgaard3a3fdae2019-02-06 15:10:49 +0100227config BR2_PACKAGE_OPENCV3_WITH_QT
228 bool "opencv3 qt backend option removed"
229 select BR2_LEGACY
230 help
231 The opencv3 qt backend option was removed.
232
Peter Korsgaard882ab1c2019-02-06 15:10:48 +0100233config BR2_PACKAGE_OPENCV_WITH_QT
234 bool "opencv qt backend option removed"
235 select BR2_LEGACY
236 help
237 The opencv qt backend option was removed.
238
Peter Korsgaardef842792019-02-06 15:10:47 +0100239config BR2_PACKAGE_AMD_CATALYST_CCCLE
240 bool "catalyst control center option removed"
241 select BR2_LEGACY
242 help
243 The AMD Catalyst Control Center option was removed.
244
Peter Korsgaard3a56bc52019-02-06 15:10:46 +0100245config BR2_PACKAGE_SDL_QTOPIA
246 bool "sdl qtopia video driver option removed"
247 select BR2_LEGACY
248 help
249 The SDL QTopia video driver option was removed.
250
Peter Korsgaard90bbfe52019-02-06 15:10:44 +0100251config BR2_PACKAGE_PYTHON_PYQT
252 bool "python-pyqt package removed"
253 select BR2_LEGACY
254 help
255 The python-pyqt package was removed. Consider python-pyqt5
256 instead.
257
Peter Korsgaardfcd9c852019-02-06 15:10:43 +0100258config BR2_PACKAGE_GNURADIO_QTGUI
259 bool "gnuradio gr-qtgui option removed"
260 select BR2_LEGACY
261 help
262 The gr-qtgui option was removed.
263
Peter Korsgaarde0d540b2019-02-05 21:03:09 +0100264config BR2_PACKAGE_LUACRYPTO
265 bool "luacrypto package removed"
266 select BR2_LEGACY
267 help
268 The luacrypto package was removed. Consider luaossl instead.
269
Peter Korsgaard0478bea2019-02-05 20:01:09 +0100270config BR2_PACKAGE_TN5250
271 bool "tn5250 package removed"
272 select BR2_LEGACY
273 help
274 The tn5250 package was removed.
275
Fabrice Fontaine428ed392019-01-13 18:43:16 +0100276config BR2_PACKAGE_BOOST_SIGNALS
277 bool "Boost signals removed"
278 select BR2_LEGACY
279 help
280 Its removal was announced in boost 1.68 and its deprecation
281 was announced in 1.54. Users are encouraged to use Signals2
282 instead.
283
Thomas Petazzoni7883e552019-01-21 14:51:10 +0100284config BR2_PACKAGE_FFTW_PRECISION_SINGLE
285 bool "single"
286 select BR2_LEGACY
287 select BR2_PACKAGE_FFTW_SINGLE
288 help
289 This option has been removed in favor of
290 BR2_PACKAGE_FFTW_SINGLE.
291
292config BR2_PACKAGE_FFTW_PRECISION_DOUBLE
293 bool "double"
294 select BR2_LEGACY
295 select BR2_PACKAGE_FFTW_DOUBLE
296 help
297 This option has been removed in favor of
298 BR2_PACKAGE_FFTW_DOUBLE.
299
300config BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE
301 bool "long double"
302 depends on !(BR2_TOOLCHAIN_BUILDROOT_UCLIBC && \
303 (BR2_arm || BR2_mips || BR2_mipsel))
304 select BR2_LEGACY
305 select BR2_PACKAGE_FFTW_LONG_DOUBLE
306 help
307 This option has been removed in favor of
308 BR2_PACKAGE_FFTW_LONG_DOUBLE.
309
310config BR2_PACKAGE_FFTW_PRECISION_QUAD
311 bool "quad"
312 depends on (BR2_i386 || BR2_x86_64) && BR2_USE_WCHAR
313 select BR2_LEGACY
314 select BR2_PACKAGE_FFTW_QUAD
315 help
316 This option has been removed in favor of
317 BR2_PACKAGE_FFTW_QUAD.
318
Francois Perrad297613f2018-12-02 11:25:06 +0100319config BR2_PACKAGE_LUA_5_2
320 bool "Lua 5.2.x version removed"
321 select BR2_LEGACY
322 select BR2_PACKAGE_LUA_5_3
323 help
324 The Lua 5.2.x version was removed.
325
Matt Weberbf362602018-12-05 20:06:29 -0600326config BR2_TARGET_GENERIC_PASSWD_MD5
327 bool "target passwd md5 format support has been removed"
328 select BR2_LEGACY
329 help
330 The default has been moved to SHA256 and all C libraries
331 now support that method by default
332
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200333comment "Legacy options removed in 2018.11"
334
Matt Weber070b1832018-09-20 16:54:24 -0500335config BR2_TARGET_XLOADER
336 bool "xloader has been removed"
337 select BR2_LEGACY
338 help
339 The package has been removed as u-boot SPL provides
340 similar functionality
341
Matt Weber5e8790d2018-10-15 11:46:44 -0500342config BR2_PACKAGE_TIDSP_BINARIES
343 bool "tidsp-binaries package removed"
344 select BR2_LEGACY
345 help
346 The tidsp-binaries package was removed.
347
Matt Webere8eb7f52018-10-15 11:46:43 -0500348config BR2_PACKAGE_DSP_TOOLS
349 bool "dsp-tools package removed"
350 select BR2_LEGACY
351 help
352 The dsp-tools package was removed.
353
Matt Weber91542902018-10-15 11:46:42 -0500354config BR2_PACKAGE_GST_DSP
355 bool "gst-dsp package removed"
356 select BR2_LEGACY
357 help
358 The gst-dsp package was removed.
359
Fabrice Fontaine2c3c7c42018-09-30 16:02:06 +0200360config BR2_PACKAGE_BOOTUTILS
361 bool "bootutils package removed"
362 select BR2_LEGACY
363 help
364 The bootutils package was removed.
365
Romain Naouraddcc392018-09-30 14:55:46 +0200366config BR2_PACKAGE_EXPEDITE
367 bool "expedite package has been removed"
368 select BR2_LEGACY
369 help
370 expedite is not actively maintained anymore.
371 https://sourceforge.net/p/enlightenment/mailman/message/36428571
372
Bernd Kuhls3d3235f2018-09-10 18:30:00 +0200373config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT
374 bool "mesa3d opengl texture float option removed"
375 select BR2_LEGACY
376 help
377 mesa3d now unconditionally enables floating-point textures,
378 as the corresponding patent has expired.
379
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200380config BR2_KERNEL_HEADERS_4_10
381 bool "kernel headers version 4.10.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200382 select BR2_LEGACY
383 help
384 Version 4.10.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200385 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200386
387config BR2_KERNEL_HEADERS_4_11
388 bool "kernel headers version 4.11.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200389 select BR2_LEGACY
390 help
391 Version 4.11.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200392 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200393
394config BR2_KERNEL_HEADERS_4_12
395 bool "kernel headers version 4.12.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200396 select BR2_LEGACY
397 help
398 Version 4.12.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200399 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200400
401config BR2_KERNEL_HEADERS_4_13
402 bool "kernel headers version 4.13.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200403 select BR2_LEGACY
404 help
405 Version 4.13.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200406 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200407
408config BR2_KERNEL_HEADERS_4_15
409 bool "kernel headers version 4.15.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200410 select BR2_LEGACY
411 help
412 Version 4.15.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200413 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200414
Yann E. MORINd220ce62018-10-04 22:00:30 +0200415config BR2_KERNEL_HEADERS_4_17
416 bool "kernel headers version 4.17.x are no longer supported"
417 select BR2_LEGACY
418 help
419 Version 4.17.x of the Linux kernel headers are no longer
420 maintained upstream and are now removed.
421
Baruch Siach00d63a12018-11-16 08:40:43 +0200422config BR2_PACKAGE_LIBNFTNL_XML
423 bool "libnftl no longer supports XML output"
424 select BR2_LEGACY
425 help
426 libnftnl removed integration with libmxml.
427
Peter Korsgaardebee2c62019-01-02 14:52:45 +0100428config BR2_KERNEL_HEADERS_3_2
429 bool "kernel headers version 3.2.x are no longer supported"
430 select BR2_LEGACY
431 help
432 Version 3.2.x of the Linux kernel headers are no longer
433 maintained upstream and are now removed.
434
435config BR2_KERNEL_HEADERS_4_1
436 bool "kernel headers version 4.1.x are no longer supported"
437 select BR2_LEGACY
438 help
439 Version 4.1.x of the Linux kernel headers are no longer
440 maintained upstream and are now removed.
441
442config BR2_KERNEL_HEADERS_4_16
443 bool "kernel headers version 4.16.x are no longer supported"
444 select BR2_LEGACY
445 help
446 Version 4.16.x of the Linux kernel headers are no longer
447 maintained upstream and are now removed.
448
449config BR2_KERNEL_HEADERS_4_18
450 bool "kernel headers version 4.18.x are no longer supported"
451 select BR2_LEGACY
452 help
453 Version 4.18.x of the Linux kernel headers are no longer
454 maintained upstream and are now removed.
455
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200456###############################################################################
Romain Naour54a2e7a2018-06-24 15:53:09 +0200457comment "Legacy options removed in 2018.08"
458
Christian Stewartde336582018-11-27 00:56:55 -0800459config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT
460 bool "docker-engine static client option renamed"
461 select BR2_LEGACY
462 select BR2_PACKAGE_DOCKER_CLI_STATIC
463 help
464 BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT has been renamed to
465 BR2_PACKAGE_DOCKER_CLI_STATIC, following the package split of
466 docker-engine and docker-cli.
467
Bernd Kuhlsf9063022018-07-21 16:16:48 +0200468config BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_19
469 bool "Modular X.org server was updated to version 1.20.0"
470 select BR2_LEGACY
471 select BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_20
472 help
473 Modular X.org server was updated to version 1.20.0
474
Bernd Kuhls14c52532018-07-21 16:16:44 +0200475config BR2_PACKAGE_XPROTO_APPLEWMPROTO
476 bool "xproto-applewmproto package replaced by xorgproto"
477 select BR2_LEGACY
478 select BR2_PACKAGE_XORGPROTO
479 help
480 The xproto-applewmproto package has been replaced by the
481 xorgproto package, which combines all xproto_* packages.
482
483config BR2_PACKAGE_XPROTO_BIGREQSPROTO
484 bool "xproto-bigreqsproto package replaced by xorgproto"
485 select BR2_LEGACY
486 select BR2_PACKAGE_XORGPROTO
487 help
488 The xproto-bigreqsproto package has been replaced by the
489 xorgproto package, which combines all xproto_* packages.
490
491config BR2_PACKAGE_XPROTO_COMPOSITEPROTO
492 bool "xproto-compositeproto package replaced by xorgproto"
493 select BR2_LEGACY
494 select BR2_PACKAGE_XORGPROTO
495 help
496 The xproto-compositeproto package has been replaced by the
497 xorgproto package, which combines all xproto_* packages.
498
499config BR2_PACKAGE_XPROTO_DAMAGEPROTO
500 bool "xproto-dameproto package replaced by xorgproto"
501 select BR2_LEGACY
502 select BR2_PACKAGE_XORGPROTO
503 help
504 The xproto-dameproto package has been replaced by the
505 xorgproto package, which combines all xproto_* packages.
506
507config BR2_PACKAGE_XPROTO_DMXPROTO
508 bool "xproto-dmxproto package replaced by xorgproto"
509 select BR2_LEGACY
510 select BR2_PACKAGE_XORGPROTO
511 help
512 The xproto-dmxproto package has been replaced by the
513 xorgproto package, which combines all xproto_* packages.
514
515config BR2_PACKAGE_XPROTO_DRI2PROTO
516 bool "xproto-dri2proto package replaced by xorgproto"
517 select BR2_LEGACY
518 select BR2_PACKAGE_XORGPROTO
519 help
520 The xproto-dri2proto package has been replaced by the
521 xorgproto package, which combines all xproto_* packages.
522
523config BR2_PACKAGE_XPROTO_DRI3PROTO
524 bool "xproto-dri3proto package replaced by xorgproto"
525 select BR2_LEGACY
526 select BR2_PACKAGE_XORGPROTO
527 help
528 The xproto-dri3proto package has been replaced by the
529 xorgproto package, which combines all xproto_* packages.
530
531config BR2_PACKAGE_XPROTO_FIXESPROTO
532 bool "xproto-fixesproto package replaced by xorgproto"
533 select BR2_LEGACY
534 select BR2_PACKAGE_XORGPROTO
535 help
536 The xproto-fixesproto package has been replaced by the
537 xorgproto package, which combines all xproto_* packages.
538
539config BR2_PACKAGE_XPROTO_FONTCACHEPROTO
540 bool "xproto-fontcacheproto package replaced by xorgproto"
541 select BR2_LEGACY
542 select BR2_PACKAGE_XORGPROTO
543 help
544 The xproto-fontcacheproto package has been replaced by the
545 xorgproto package, which combines all xproto_* packages.
546
547config BR2_PACKAGE_XPROTO_FONTSPROTO
548 bool "xproto-fontsproto package replaced by xorgproto"
549 select BR2_LEGACY
550 select BR2_PACKAGE_XORGPROTO
551 help
552 The xproto-fontsproto package has been replaced by the
553 xorgproto package, which combines all xproto_* packages.
554
555config BR2_PACKAGE_XPROTO_GLPROTO
556 bool "xproto-glproto package replaced by xorgproto"
557 select BR2_LEGACY
558 select BR2_PACKAGE_XORGPROTO
559 help
560 The xproto-glproto package has been replaced by the
561 xorgproto package, which combines all xproto_* packages.
562
563config BR2_PACKAGE_XPROTO_INPUTPROTO
564 bool "xproto-inputproto package replaced by xorgproto"
565 select BR2_LEGACY
566 select BR2_PACKAGE_XORGPROTO
567 help
568 The xproto-inputproto package has been replaced by the
569 xorgproto package, which combines all xproto_* packages.
570
571config BR2_PACKAGE_XPROTO_KBPROTO
572 bool "xproto-kbproto package replaced by xorgproto"
573 select BR2_LEGACY
574 select BR2_PACKAGE_XORGPROTO
575 help
576 The xproto-kbproto package has been replaced by the
577 xorgproto package, which combines all xproto_* packages.
578
579config BR2_PACKAGE_XPROTO_PRESENTPROTO
580 bool "xproto-presentproto package replaced by xorgproto"
581 select BR2_LEGACY
582 select BR2_PACKAGE_XORGPROTO
583 help
584 The xproto-presentproto package has been replaced by the
585 xorgproto package, which combines all xproto_* packages.
586
587config BR2_PACKAGE_XPROTO_RANDRPROTO
588 bool "xproto-randrproto package replaced by xorgproto"
589 select BR2_LEGACY
590 select BR2_PACKAGE_XORGPROTO
591 help
592 The xproto-randrproto package has been replaced by the
593 xorgproto package, which combines all xproto_* packages.
594
595config BR2_PACKAGE_XPROTO_RECORDPROTO
596 bool "xproto-recordproto package replaced by xorgproto"
597 select BR2_LEGACY
598 select BR2_PACKAGE_XORGPROTO
599 help
600 The xproto-recordproto package has been replaced by the
601 xorgproto package, which combines all xproto_* packages.
602
603config BR2_PACKAGE_XPROTO_RENDERPROTO
604 bool "xproto-renderproto package replaced by xorgproto"
605 select BR2_LEGACY
606 select BR2_PACKAGE_XORGPROTO
607 help
608 The xproto-renderproto package has been replaced by the
609 xorgproto package, which combines all xproto_* packages.
610
611config BR2_PACKAGE_XPROTO_RESOURCEPROTO
612 bool "xproto-resourceproto package replaced by xorgproto"
613 select BR2_LEGACY
614 select BR2_PACKAGE_XORGPROTO
615 help
616 The xproto-resourceproto package has been replaced by the
617 xorgproto package, which combines all xproto_* packages.
618
619config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
620 bool "xproto-scrnsaverprot package replaced by xorgproto"
621 select BR2_LEGACY
622 select BR2_PACKAGE_XORGPROTO
623 help
624 The xproto-scrnsaverprot package has been replaced by the
625 xorgproto package, which combines all xproto_* packages.
626
627config BR2_PACKAGE_XPROTO_VIDEOPROTO
628 bool "xproto-videoproto package replaced by xorgproto"
629 select BR2_LEGACY
630 select BR2_PACKAGE_XORGPROTO
631 help
632 The xproto-videoproto package has been replaced by the
633 xorgproto package, which combines all xproto_* packages.
634
635config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO
636 bool "xproto-windowswmproto package replaced by xorgproto"
637 select BR2_LEGACY
638 select BR2_PACKAGE_XORGPROTO
639 help
640 The xproto-windowswmproto package has been replaced by the
641 xorgproto package, which combines all xproto_* packages.
642
643config BR2_PACKAGE_XPROTO_XCMISCPROTO
644 bool "xproto-xcmiscproto package replaced by xorgproto"
645 select BR2_LEGACY
646 select BR2_PACKAGE_XORGPROTO
647 help
648 The xproto-xcmiscproto package has been replaced by the
649 xorgproto package, which combines all xproto_* packages.
650
651config BR2_PACKAGE_XPROTO_XEXTPROTO
652 bool "xproto-xextproto package replaced by xorgproto"
653 select BR2_LEGACY
654 select BR2_PACKAGE_XORGPROTO
655 help
656 The xproto-xextproto package has been replaced by the
657 xorgproto package, which combines all xproto_* packages.
658
659config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
660 bool "xproto-xf86bigfontproto package replaced by xorgproto"
661 select BR2_LEGACY
662 select BR2_PACKAGE_XORGPROTO
663 help
664 The xproto-xf86bigfontproto package has been replaced by the
665 xorgproto package, which combines all xproto_* packages.
666
667config BR2_PACKAGE_XPROTO_XF86DGAPROTO
668 bool "xproto-xf86dgaproto package replaced by xorgproto"
669 select BR2_LEGACY
670 select BR2_PACKAGE_XORGPROTO
671 help
672 The xproto-xf86dgaproto package has been replaced by the
673 xorgproto package, which combines all xproto_* packages.
674
675config BR2_PACKAGE_XPROTO_XF86DRIPROTO
676 bool "xproto-xf86driproto package replaced by xorgproto"
677 select BR2_LEGACY
678 select BR2_PACKAGE_XORGPROTO
679 help
680 The xproto-xf86driproto package has been replaced by the
681 xorgproto package, which combines all xproto_* packages.
682
683config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
684 bool "xproto-xf86vidmodeproto package replaced by xorgproto"
685 select BR2_LEGACY
686 select BR2_PACKAGE_XORGPROTO
687 help
688 The xproto-xf86vidmodeproto package has been replaced by the
689 xorgproto package, which combines all xproto_* packages.
690
691config BR2_PACKAGE_XPROTO_XINERAMAPROTO
692 bool "xproto-xineramaproto package replaced by xorgproto"
693 select BR2_LEGACY
694 select BR2_PACKAGE_XORGPROTO
695 help
696 The xproto-xineramaproto package has been replaced by the
697 xorgproto package, which combines all xproto_* packages.
698
699config BR2_PACKAGE_XPROTO_XPROTO
700 bool "xproto-xproto package replaced by xorgproto"
701 select BR2_LEGACY
702 select BR2_PACKAGE_XORGPROTO
703 help
704 The xproto-xproto package has been replaced by the
705 xorgproto package, which combines all xproto_* packages.
706
707config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
708 bool "xproto-xproxymanagementprotocol package replaced by xorgproto"
709 select BR2_LEGACY
710 select BR2_PACKAGE_XORGPROTO
711 help
712 The xproto-xproxymanagementprotocol package has been
713 replaced by the xorgproto package, which combines all
714 xproto_* packages.
715
Adam Duskett3f2aef52018-06-24 00:35:22 +0200716config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL
717 bool "gst1-plugins-bad opengl option moved to gst1-plugins-base"
718 select BR2_LEGACY
719 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
720 help
721 The opengl option has been moved from gst1-plugins-bad to
722 gst1-plugins-base.
723
724config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2
725 bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base"
726 select BR2_LEGACY
727 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2
728 help
729 The gles2 option has been moved from gst1-plugins-bad to
730 gst1-plugins-base.
731
732config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX
733 bool "gst1-plugins-bad glx option moved to gst1-plugins-base"
734 select BR2_LEGACY
735 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX
736 help
737 The glx option has been moved from gst1-plugins-bad to
738 gst1-plugins-base.
739
740config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL
741 bool "gst1-plugins-bad egl option moved to gst1-plugins-base"
742 select BR2_LEGACY
743 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL
744 help
745 The egl option has been moved from gst1-plugins-bad to
746 gst1-plugins-base.
747
748config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11
749 bool "gst1-plugins-bad x11 option moved to gst1-plugins-base"
750 select BR2_LEGACY
751 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11
752 help
753 The x11 option has been moved from gst1-plugins-bad to
754 gst1-plugins-base.
755
756config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND
757 bool "gst1-plugins-bad wayland option moved to gst1-plugins-base"
758 select BR2_LEGACY
759 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND
760 help
761 The wayland option has been moved from gst1-plugins-bad to
762 gst1-plugins-base.
763
764config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX
765 bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base"
766 select BR2_LEGACY
767 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX
768 help
769 The dispmanx option has been moved from gst1-plugins-mad to
770 gst1-plugins-base.
771
772config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
773 bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base"
774 select BR2_LEGACY
775 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER
776 help
777 The audiomixer option has been moved from gst1-plugins-bad to
778 gst1-plugins-base.
779
780config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
781 bool "gst1-plugins-ugly lame option moved to gst1-plugins-good"
782 select BR2_LEGACY
783 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
784 help
785 The lame option has been moved from gst1-plugins-ugly to
786 gst1-plugins-good.
787
788config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
789 bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good"
790 select BR2_LEGACY
791 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
792 help
793 The mpg123 option has been moved from gst1-plugins-ugly to
794 gst1-plugins-good.
795
Romain Naourbae35c82018-06-24 15:53:10 +0200796config BR2_GDB_VERSION_7_11
797 bool "gdb 7.11 has been removed"
798 select BR2_LEGACY
799 help
800 The 7.11 version of gdb has been removed. Use a newer version
801 instead.
802
Romain Naour54a2e7a2018-06-24 15:53:09 +0200803config BR2_GDB_VERSION_7_10
804 bool "gdb 7.10 has been removed"
805 select BR2_LEGACY
806 help
807 The 7.10 version of gdb has been removed. Use a newer version
808 instead.
809
810###############################################################################
Bernd Kuhls9657e962018-04-01 15:58:08 +0200811comment "Legacy options removed in 2018.05"
812
Petr Vorel8553b392018-05-13 21:07:36 +0200813config BR2_PACKAGE_MEDIAART_BACKEND_NONE
814 bool "libmediaart none backend option renamed"
815 select BR2_LEGACY
816 help
817 For consistency reasons, the option
818 BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to
819 BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
820
821config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
822 bool "libmediaart gdk-pixbuf backend option renamed"
823 select BR2_LEGACY
824 help
825 For consistency reasons, the option
826 BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to
827 BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF
828
829config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
830 bool "libmediaart qt backend option renamed"
831 select BR2_LEGACY
832 help
833 For consistency reasons, the option
834 BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to
835 BR2_PACKAGE_LIBMEDIAART_BACKEND_QT
836
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200837# Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from
838# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200839config BR2_PACKAGE_TI_SGX_AM335X
840 bool "ti-sgx-km AM335X option renamed"
841 select BR2_LEGACY
842 help
843 For consistency reasons, the option
844 BR2_PACKAGE_TI_SGX_AM335X has been renamed to
845 BR2_PACKAGE_TI_SGX_KM_AM335X.
846
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200847# Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from
848# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200849config BR2_PACKAGE_TI_SGX_AM437X
850 bool "ti-sgx-km AM437X option renamed"
851 select BR2_LEGACY
852 help
853 For consistency reasons, the option
854 BR2_PACKAGE_TI_SGX_AM437X has been renamed to
855 BR2_PACKAGE_TI_SGX_KM_AM437X.
856
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200857# Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from
858# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200859config BR2_PACKAGE_TI_SGX_AM4430
860 bool "ti-sgx-km AM4430 option renamed"
861 select BR2_LEGACY
862 help
863 For consistency reasons, the option
864 BR2_PACKAGE_TI_SGX_AM4430 has been renamed to
865 BR2_PACKAGE_TI_SGX_KM_AM4430.
866
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200867# Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from
868# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200869config BR2_PACKAGE_TI_SGX_AM5430
870 bool "ti-sgx-km AM5430 option renamed"
871 select BR2_LEGACY
872 help
873 For consistency reasons, the option
874 BR2_PACKAGE_TI_SGX_AM5430 has been renamed to
875 BR2_PACKAGE_TI_SGX_KM_AM5430.
876
Thomas Petazzonia79df202018-05-13 21:07:34 +0200877config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
878 bool "janus-gateway audio-bridge option renamed"
879 select BR2_LEGACY
880 select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
881 help
882 For consistency reasons, the janus-gateway option
883 BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
884 BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
885
886config BR2_PACKAGE_JANUS_ECHO_TEST
887 bool "janus-gateway echo-test option renamed"
888 select BR2_LEGACY
889 select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
890 help
891 For consistency reasons, the janus-gateway option
892 BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
893 BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
894
895config BR2_PACKAGE_JANUS_RECORDPLAY
896 bool "janus-gateway recordplay option renamed"
897 select BR2_LEGACY
898 select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
899 help
900 For consistency reasons, the janus-gateway option
901 BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
902 BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
903
904config BR2_PACKAGE_JANUS_SIP_GATEWAY
905 bool "janus-gateway sip-gateway option renamed"
906 select BR2_LEGACY
907 select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
908 help
909 For consistency reasons, the janus-gateway option
910 BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
911 BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
912
913config BR2_PACKAGE_JANUS_STREAMING
914 bool "janus-gateway streaming option renamed"
915 select BR2_LEGACY
916 select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
917 help
918 For consistency reasons, the janus-gateway option
919 BR2_PACKAGE_JANUS_STREAMING has been renamed to
920 BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
921
922config BR2_PACKAGE_JANUS_TEXT_ROOM
923 bool "janus-gateway text-room option renamed"
924 select BR2_LEGACY
925 select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
926 help
927 For consistency reasons, the janus-gateway option
928 BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
929 BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
930
931config BR2_PACKAGE_JANUS_VIDEO_CALL
932 bool "janus-gateway video-call option renamed"
933 select BR2_LEGACY
934 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
935 help
936 For consistency reasons, the janus-gateway option
937 BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
938 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
939
940config BR2_PACKAGE_JANUS_VIDEO_ROOM
941 bool "janus-gateway video-room option renamed"
942 select BR2_LEGACY
943 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
944 help
945 For consistency reasons, the janus-gateway option
946 BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
947 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
948
949config BR2_PACKAGE_JANUS_MQTT
950 bool "janus-gateway mqtt option renamed"
951 select BR2_LEGACY
952 select BR2_PACKAGE_JANUS_GATEWAY_MQTT
953 help
954 For consistency reasons, the janus-gateway option
955 BR2_PACKAGE_JANUS_MQTT has been renamed to
956 BR2_PACKAGE_JANUS_GATEWAY_MQTT.
957
958config BR2_PACKAGE_JANUS_RABBITMQ
959 bool "janus-gateway rabbitmq option renamed"
960 select BR2_LEGACY
961 select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
962 help
963 For consistency reasons, the janus-gateway option
964 BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
965 BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
966
967config BR2_PACKAGE_JANUS_REST
968 bool "janus-gateway rest option renamed"
969 select BR2_LEGACY
970 select BR2_PACKAGE_JANUS_GATEWAY_REST
971 help
972 For consistency reasons, the janus-gateway option
973 BR2_PACKAGE_JANUS_REST has been renamed to
974 BR2_PACKAGE_JANUS_GATEWAY_REST.
975
976config BR2_PACKAGE_JANUS_UNIX_SOCKETS
977 bool "janus-gateway unix-sockets option renamed"
978 select BR2_LEGACY
979 select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
980 help
981 For consistency reasons, the janus-gateway option
982 BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
983 BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
984
985config BR2_PACKAGE_JANUS_WEBSOCKETS
986 bool "janus-gateway websockets option renamed"
987 select BR2_LEGACY
988 select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
989 help
990 For consistency reasons, the janus-gateway option
991 BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
992 BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
993
Thomas Petazzoni9d2c5c22018-05-13 21:07:33 +0200994config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
995 bool "ipsec-tools security context disable option renamed"
996 select BR2_LEGACY
997 help
998 For consistency reasons, the option
999 BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
1000 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
1001
1002config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
1003 bool "ipsec-tools SELinux security context enable option renamed"
1004 select BR2_LEGACY
1005 help
1006 For consistency reasons, the option
1007 BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
1008 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
1009
1010config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
1011 bool "ipsec-tools kernel security context enable option renamed"
1012 select BR2_LEGACY
1013 help
1014 For consistency reasons, the option
1015 BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
1016 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
1017
Thomas Petazzonidc4e4aa2018-05-13 21:07:32 +02001018config BR2_PACKAGE_LIBTFDI_CPP
1019 bool "libftdi C++ bindings option renamed"
1020 select BR2_LEGACY
1021 select BR2_PACKAGE_LIBFTDI_CPP
1022 help
1023 The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
1024 BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
1025 name.
1026
Thomas Petazzoni94c14622018-05-13 21:07:31 +02001027config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
1028 bool "jquery-ui-themes option black-tie renamed"
1029 select BR2_LEGACY
1030 help
1031 For consistency reasons, the jquery-ui-themes option for the
1032 black-tie theme has been renamed from
1033 BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
1034 BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
1035
1036config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
1037 bool "jquery-ui-themes option blitzer renamed"
1038 select BR2_LEGACY
1039 help
1040 For consistency reasons, the jquery-ui-themes option for the
1041 blitzer theme has been renamed from
1042 BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
1043 BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
1044
1045config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
1046 bool "jquery-ui-themes option cupertino renamed"
1047 select BR2_LEGACY
1048 help
1049 For consistency reasons, the jquery-ui-themes option for the
1050 cupertino theme has been renamed from
1051 BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
1052 BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
1053
1054config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
1055 bool "jquery-ui-themes option dark-hive renamed"
1056 select BR2_LEGACY
1057 help
1058 For consistency reasons, the jquery-ui-themes option for the
1059 dark-hive theme has been renamed from
1060 BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
1061 BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
1062
1063config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
1064 bool "jquery-ui-themes option dot-luv renamed"
1065 select BR2_LEGACY
1066 help
1067 For consistency reasons, the jquery-ui-themes option for the
1068 dot-luv theme has been renamed from
1069 BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
1070 BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
1071
1072config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
1073 bool "jquery-ui-themes option eggplant renamed"
1074 select BR2_LEGACY
1075 help
1076 For consistency reasons, the jquery-ui-themes option for the
1077 eggplant theme has been renamed from
1078 BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
1079 BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
1080
1081config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
1082 bool "jquery-ui-themes option excite-bike renamed"
1083 select BR2_LEGACY
1084 help
1085 For consistency reasons, the jquery-ui-themes option for the
1086 excite-bike theme has been renamed from
1087 BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
1088 BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
1089
1090config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
1091 bool "jquery-ui-themes option flick renamed"
1092 select BR2_LEGACY
1093 help
1094 For consistency reasons, the jquery-ui-themes option for the
1095 flick theme has been renamed from
1096 BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
1097 BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
1098
1099config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
1100 bool "jquery-ui-themes option hot-sneaks renamed"
1101 select BR2_LEGACY
1102 help
1103 For consistency reasons, the jquery-ui-themes option for the
1104 hot-sneaks theme has been renamed from
1105 BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
1106 BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
1107
1108config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
1109 bool "jquery-ui-themes option humanity renamed"
1110 select BR2_LEGACY
1111 help
1112 For consistency reasons, the jquery-ui-themes option for the
1113 humanity theme has been renamed from
1114 BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
1115 BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
1116
1117config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
1118 bool "jquery-ui-themes option le-frog renamed"
1119 select BR2_LEGACY
1120 help
1121 For consistency reasons, the jquery-ui-themes option for the
1122 le-frog theme has been renamed from
1123 BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
1124 BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
1125
1126config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
1127 bool "jquery-ui-themes option mint-choc renamed"
1128 select BR2_LEGACY
1129 help
1130 For consistency reasons, the jquery-ui-themes option for the
1131 mint-choc theme has been renamed from
1132 BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
1133 BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
1134
1135config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
1136 bool "jquery-ui-themes option overcast renamed"
1137 select BR2_LEGACY
1138 help
1139 For consistency reasons, the jquery-ui-themes option for the
1140 overcast theme has been renamed from
1141 BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
1142 BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
1143
1144config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
1145 bool "jquery-ui-themes option pepper-grinder renamed"
1146 select BR2_LEGACY
1147 help
1148 For consistency reasons, the jquery-ui-themes option for the
1149 pepper-grinder theme has been renamed from
1150 BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
1151 BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
1152
1153config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
1154 bool "jquery-ui-themes option redmond renamed"
1155 select BR2_LEGACY
1156 help
1157 For consistency reasons, the jquery-ui-themes option for the
1158 redmond theme has been renamed from
1159 BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
1160 BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
1161
1162config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
1163 bool "jquery-ui-themes option smoothness renamed"
1164 select BR2_LEGACY
1165 help
1166 For consistency reasons, the jquery-ui-themes option for the
1167 smoothness theme has been renamed from
1168 BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
1169 BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
1170
1171config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
1172 bool "jquery-ui-themes option south-street renamed"
1173 select BR2_LEGACY
1174 help
1175 For consistency reasons, the jquery-ui-themes option for the
1176 south-street theme has been renamed from
1177 BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
1178 BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
1179
1180config BR2_PACKAGE_JQUERY_UI_THEME_START
1181 bool "jquery-ui-themes option start renamed"
1182 select BR2_LEGACY
1183 help
1184 For consistency reasons, the jquery-ui-themes option for the
1185 start theme has been renamed from
1186 BR2_PACKAGE_JQUERY_UI_THEME_START to
1187 BR2_PACKAGE_JQUERY_UI_THEMES_START.
1188
1189config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
1190 bool "jquery-ui-themes option sunny renamed"
1191 select BR2_LEGACY
1192 help
1193 For consistency reasons, the jquery-ui-themes option for the
1194 sunny theme has been renamed from
1195 BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
1196 BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
1197
1198config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
1199 bool "jquery-ui-themes option swanky-purse renamed"
1200 select BR2_LEGACY
1201 help
1202 For consistency reasons, the jquery-ui-themes option for the
1203 swanky-purse theme has been renamed from
1204 BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
1205 BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
1206
1207config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
1208 bool "jquery-ui-themes option trontastic renamed"
1209 select BR2_LEGACY
1210 help
1211 For consistency reasons, the jquery-ui-themes option for the
1212 trontastic theme has been renamed from
1213 BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
1214 BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
1215
1216config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
1217 bool "jquery-ui-themes option ui-darkness renamed"
1218 select BR2_LEGACY
1219 help
1220 For consistency reasons, the jquery-ui-themes option for the
1221 ui-darkness theme has been renamed from
1222 BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
1223 BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
1224
1225config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
1226 bool "jquery-ui-themes option ui-lightness renamed"
1227 select BR2_LEGACY
1228 help
1229 For consistency reasons, the jquery-ui-themes option for the
1230 ui-lightness theme has been renamed from
1231 BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
1232 BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
1233
1234config BR2_PACKAGE_JQUERY_UI_THEME_VADER
1235 bool "jquery-ui-themes option vader renamed"
1236 select BR2_LEGACY
1237 help
1238 For consistency reasons, the jquery-ui-themes option for the
1239 vader theme has been renamed from
1240 BR2_PACKAGE_JQUERY_UI_THEME_VADER to
1241 BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
1242
Thomas Petazzonib2b874f2018-05-13 21:07:30 +02001243config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
1244 bool "bluez5-utils health plugin option renamed"
1245 select BR2_LEGACY
1246 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
1247 help
1248 For consistency reasons, the option
1249 BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
1250 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
1251
1252config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
1253 bool "bluez5-utils midi plugin option renamed"
1254 select BR2_LEGACY
1255 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
1256 help
1257 For consistency reasons, the option
1258 BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
1259 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
1260
1261config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
1262 bool "bluez5-utils nfc plugin option renamed"
1263 select BR2_LEGACY
1264 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
1265 help
1266 For consistency reasons, the option
1267 BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
1268 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
1269
1270config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
1271 bool "bluez5-utils sap plugin option renamed"
1272 select BR2_LEGACY
1273 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
1274 help
1275 For consistency reasons, the option
1276 BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
1277 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
1278
1279config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
1280 bool "bluez5-utils sixaxis plugin option renamed"
1281 select BR2_LEGACY
1282 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
1283 help
1284 For consistency reasons, the option
1285 BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
1286 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
1287
Bernd Kuhls79a678d2018-05-02 08:05:40 +02001288config BR2_PACKAGE_TRANSMISSION_REMOTE
1289 bool "transmission remote tool option removed"
1290 select BR2_LEGACY
1291 select BR2_PACKAGE_TRANSMISSION_DAEMON
1292 help
1293 Upstream does not provide a separate configure option for
1294 the tool transmission-remote, it is built when the
1295 transmission daemon has been enabled. Therefore, Buildroot
1296 has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
1297 for you.
1298
Fabrice Fontainef6421152018-05-07 00:09:01 +02001299config BR2_PACKAGE_LIBKCAPI_APPS
1300 bool "libkcapi test applications removed"
1301 select BR2_LEGACY
1302 select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
1303 select BR2_PACKAGE_LIBKCAPI_RNGAPP
1304 select BR2_PACKAGE_LIBKCAPI_SPEED
1305 select BR2_PACKAGE_LIBKCAPI_TEST
1306 help
1307 Test applications (hasher, rng read, speed-test, test) now
1308 have their own configuration options in the libkcapi menu.
1309
Bernd Kuhlsdacb1762018-05-01 09:10:17 +02001310config BR2_PACKAGE_MPLAYER
1311 bool "mplayer package removed"
1312 select BR2_LEGACY
1313 help
1314 The mplayer package was removed.
1315
1316config BR2_PACKAGE_MPLAYER_MPLAYER
1317 bool "mplayer package removed"
1318 select BR2_LEGACY
1319 help
1320 The mplayer package was removed.
1321
1322config BR2_PACKAGE_MPLAYER_MENCODER
1323 bool "mplayer package removed"
1324 select BR2_LEGACY
1325 help
1326 The mplayer package was removed.
1327
Bernd Kuhls3f449112018-05-01 09:10:14 +02001328config BR2_PACKAGE_LIBPLAYER_MPLAYER
1329 bool "mplayer support in libplayer removed"
1330 select BR2_LEGACY
1331 help
1332 The mplayer package was removed.
1333
Thomas Petazzoni46444ba2018-04-04 18:00:09 +02001334config BR2_PACKAGE_IQVLINUX
1335 bool "iqvlinux package removed"
1336 select BR2_LEGACY
1337 help
1338 This package contained a kernel module from Intel, which
1339 could only be used together with Intel userspace tools
1340 provided under NDA, which also come with the same kernel
1341 module. The copy of the kernel module available on
1342 SourceForge is provided only to comply with the GPLv2
1343 requirement. Intel engineers were even surprised it even
1344 built and were not willing to make any effort to fix their
1345 tarball naming to contain a version number. Therefore, it
1346 does not make sense for Buildroot to provide such a package.
1347
1348 See https://sourceforge.net/p/e1000/bugs/589/ for the
1349 discussion.
1350
Thomas Petazzonie2ea4152018-04-05 21:50:18 +02001351config BR2_BINFMT_FLAT_SEP_DATA
1352 bool "binfmt FLAT with separate code and data removed"
1353 select BR2_LEGACY
1354 help
1355 This FLAT binary format was only used on Blackfin, which has
1356 been removed.
1357
Thomas Petazzoni325bb372018-04-05 21:50:17 +02001358config BR2_bfin
1359 bool "Blackfin architecture support removed"
1360 select BR2_LEGACY
1361 help
1362 Following the removal of Blackfin support for the upstream
1363 Linux kernel, Buildroot has removed support for this CPU
1364 architecture.
1365
Bernd Kuhls9657e962018-04-01 15:58:08 +02001366config BR2_PACKAGE_KODI_ADSP_BASIC
1367 bool "kodi-adsp-basic package removed"
1368 select BR2_LEGACY
1369 help
1370 kodi-adsp-basic is unmaintained
1371
1372config BR2_PACKAGE_KODI_ADSP_FREESURROUND
1373 bool "kodi-adsp-freesurround package removed"
1374 select BR2_LEGACY
1375 help
1376 kodi-adsp-freesurround is unmaintained
1377
1378###############################################################################
Baruch Siach86dfb422017-11-14 14:02:38 +02001379comment "Legacy options removed in 2018.02"
1380
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001381config BR2_KERNEL_HEADERS_3_4
1382 bool "kernel headers version 3.4.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001383 select BR2_LEGACY
1384 help
1385 Version 3.4.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001386 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001387
1388config BR2_KERNEL_HEADERS_3_10
1389 bool "kernel headers version 3.10.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001390 select BR2_LEGACY
1391 help
1392 Version 3.10.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001393 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001394
1395config BR2_KERNEL_HEADERS_3_12
1396 bool "kernel headers version 3.12.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001397 select BR2_LEGACY
1398 help
1399 Version 3.12.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001400 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001401
Romain Naour453d29f2018-01-29 23:39:41 +01001402config BR2_BINUTILS_VERSION_2_27_X
1403 bool "binutils version 2.27 support removed"
1404 select BR2_LEGACY
1405 help
1406 Support for binutils version 2.27 has been removed. The
1407 current default version (2.29 or later) has been selected
1408 instead.
1409
Baruch Siach55d79ed2018-01-02 08:16:01 +02001410config BR2_PACKAGE_EEPROG
1411 bool "eeprog package removed"
1412 select BR2_LEGACY
1413 select BR2_PACKAGE_I2C_TOOLS
1414 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
1415 help
1416 The eeprog program is now provided by the i2c-tools package.
1417
Baruch Siach86dfb422017-11-14 14:02:38 +02001418config BR2_PACKAGE_GNUPG2_GPGV2
1419 bool "gnupg2 gpgv2 option removed"
1420 select BR2_LEGACY
1421 select BR2_PACKAGE_GNUPG2_GPGV
1422 help
1423 The gpgv2 executable is now named gpgv. The config option
1424 has been renamed accordingly.
1425
Gary Bissonf7a7d942018-01-05 15:39:36 +01001426config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
1427 bool "Vivante apitrace tool option removed"
1428 select BR2_LEGACY
1429 help
1430 The apitrace tool for Vivante is not provided by the
1431 imx-gpu-viv package any longer.
1432
1433config BR2_PACKAGE_IMX_GPU_VIV_G2D
1434 bool "Vivante G2D libraries from imx-gpu-viv removed"
1435 select BR2_LEGACY
1436 select BR2_PACKAGE_IMX_GPU_G2D
1437 help
1438 The G2D libraries are now provided by the imx-gpu-g2d package.
1439
Baruch Siach86dfb422017-11-14 14:02:38 +02001440###############################################################################
Carlos Santosf52af612017-09-01 21:41:38 -03001441comment "Legacy options removed in 2017.11"
1442
Carlos Santos6c10e402017-10-21 20:30:18 -02001443config BR2_PACKAGE_RFKILL
1444 bool "rfkill package removed"
1445 select BR2_LEGACY
1446 select BR2_PACKAGE_UTIL_LINUX
1447 select BR2_PACKAGE_UTIL_LINUX_RFKILL
1448 help
1449 The rfkill program is now provided by the util-linux package.
1450
Carlos Santosd4382002017-10-31 08:47:51 -02001451config BR2_PACKAGE_UTIL_LINUX_RESET
1452 bool "util-linux reset option removed"
1453 select BR2_LEGACY
1454 help
1455 The util-linux package no longer offers a "reset" command. Use
1456 either the reset command provided by BusyBox or select ncurses
1457 programs, which will install a symlink from "tset" to reset.
1458
Adam Duskett9d6da7a2017-10-17 18:32:18 -04001459config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
1460 bool "policycoreutils audit2allow option removed"
1461 select BR2_LEGACY
1462 select BR2_PACKAGE_SELINUX_PYTHON
1463 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
1464 help
1465 The policycoreutils package no longer offers audit2allow
1466 as a option. This package has been moved into the
1467 selinux-python package by the SELinux maintainers.
1468
1469config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
1470 bool "policycoreutils restorecond option removed"
1471 select BR2_LEGACY
1472 select BR2_PACKAGE_RESTORECOND
1473 help
1474 The policycoreutils package no longer offers restorecond
1475 as a option. This package has been moved into a seperate
1476 package maintained by the SELinux maintainers.
1477
1478config BR2_PACKAGE_SEPOLGEN
1479 bool "sepolgen package has been removed"
1480 select BR2_LEGACY
1481 select BR2_PACKAGE_SELINUX_PYTHON
1482 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
1483 help
1484 Sepolgen is no longer a individual package, but instead has
1485 been moved into the selinux-python package by the SELinux
1486 maintainers.
1487
Bernd Kuhls49a9fb02017-09-16 17:15:35 +02001488config BR2_PACKAGE_OPENOBEX_BLUEZ
1489 bool "openobex bluez option removed"
1490 select BR2_LEGACY
1491 select BR2_PACKAGE_BLUEZ_UTILS
1492 help
1493 The OpenOBEX package no longer offers an option to enable or
1494 disable BlueZ support. Instead, BlueZ support is always
1495 included when the bluez5_utils or bluez_utils package is
1496 selected.
1497
1498config BR2_PACKAGE_OPENOBEX_LIBUSB
1499 bool "openobex libusb option removed"
1500 select BR2_LEGACY
1501 select BR2_PACKAGE_LIBUSB
1502 help
1503 The OpenOBEX package no longer offers an option to enable or
1504 disable libusb support. Instead, USB support is always
1505 included when the libusb package is selected.
1506
1507config BR2_PACKAGE_OPENOBEX_APPS
1508 bool "openobex apps option removed"
1509 select BR2_LEGACY
1510 help
1511 The OpenOBEX package no longer offers an option to enable or
1512 disable apps support.
1513
1514config BR2_PACKAGE_OPENOBEX_SYSLOG
1515 bool "openobex syslog option removed"
1516 select BR2_LEGACY
1517 help
1518 The OpenOBEX package no longer offers an option to enable or
1519 disable syslog support.
1520
1521config BR2_PACKAGE_OPENOBEX_DUMP
1522 bool "openobex dump option removed"
1523 select BR2_LEGACY
1524 help
1525 The OpenOBEX package no longer offers an option to enable or
1526 disable dump support.
1527
Alexander Mukhinfca70382017-09-10 13:21:34 +03001528config BR2_PACKAGE_AICCU
1529 bool "aiccu utility removed"
1530 select BR2_LEGACY
1531 help
1532 As the SixXS project has ceased its operation on 2017-06-06,
1533 the AICCU utility has no use anymore and has been removed.
1534
1535 https://www.sixxs.net/sunset/
1536
Carlos Santosf52af612017-09-01 21:41:38 -03001537config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
1538 bool "util-linux login utilities option removed"
1539 select BR2_LEGACY
1540 select BR2_PACKAGE_UTIL_LINUX_LAST
1541 select BR2_PACKAGE_UTIL_LINUX_LOGIN
1542 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
1543 select BR2_PACKAGE_UTIL_LINUX_SU
1544 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
1545 help
1546 Login utilities (last, login, runuser, su, sulogin) now have
1547 their own configuration options in the util-linux menu.
1548
1549###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +02001550comment "Legacy options removed in 2017.08"
1551
Yann E. MORIN144dc9c2017-08-11 18:05:08 +02001552config BR2_TARGET_GRUB
1553 bool "grub (aka grub-legacy) has been removed"
1554 select BR2_LEGACY
1555 help
1556 grub-legacy is no longer maintained, and no longer builds with
1557 recent binutils versions.
1558
1559 Use grub2 or syslinux instead.
1560
Bin Meng20db0982017-08-30 08:55:25 -07001561config BR2_PACKAGE_SIMICSFS
1562 bool "simicsfs support removed"
1563 select BR2_LEGACY
1564 help
1565 Support for simicsfs kernel driver that provides access to a
1566 host computer's local filesystem when the target is
1567 executing within a SIMICS simulation has been removed.
1568
1569 Simics is now moving away from the simicsfs kernel module,
1570 as the kernel module has required too much maintenance
1571 work. Users should move to the user mode Simics agent
1572 instead.
1573
Thomas Petazzoni0b5dc312017-07-29 15:09:06 +02001574config BR2_BINUTILS_VERSION_2_26_X
1575 bool "binutils version 2.26 support removed"
1576 select BR2_LEGACY
1577 help
1578 Support for binutils version 2.26 has been removed. The
1579 current default version (2.28 or later) has been selected
1580 instead.
1581
Yann E. MORINb3b60702017-07-09 05:21:56 -07001582config BR2_XTENSA_OVERLAY_DIR
1583 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001584 help
Yann E. MORINb3b60702017-07-09 05:21:56 -07001585 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
1586 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
1587 path to the overlay file, not to the directory containing
1588 it.
1589
1590config BR2_XTENSA_OVERLAY_DIR_WRAP
1591 bool
1592 default y if BR2_XTENSA_OVERLAY_DIR != ""
1593 select BR2_LEGACY
1594
1595config BR2_XTENSA_CUSTOM_NAME
1596 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
1597 help
1598 The BR2_XTENSA_CUSTOM_NAME option has been removed.
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001599
1600config BR2_XTENSA_CUSTOM_NAME_WRAP
1601 bool
1602 default y if BR2_XTENSA_CUSTOM_NAME != ""
1603 select BR2_LEGACY
1604
Sébastien Szymanskif47fc952017-07-04 16:47:29 +02001605config BR2_PACKAGE_HOST_MKE2IMG
1606 bool "host mke2img has been removed"
1607 select BR2_LEGACY
1608 help
1609 We now call mkfs directly to generate ext2/3/4 filesystem
1610 image, so mke2img is no longer necessary.
1611
Samuel Martinbee9e882017-07-09 07:00:38 +02001612config BR2_TARGET_ROOTFS_EXT2_BLOCKS
1613 int "exact size in blocks has been removed"
1614 default 0
1615 help
1616 This option has been removed in favor of
1617 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
1618 to the value you had before. Set to 0 here to remove the
1619 warning.
1620
1621config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
1622 bool
1623 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
1624 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
1625 select BR2_LEGACY
1626
1627# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
1628
Samuel Martin235b6f12017-07-04 16:47:25 +02001629config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
1630 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
1631 default 0
1632 help
1633 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
1634 images. It now automatically selects the number of inodes
1635 based on the image size. The extra number of inodes can no
1636 longer be provided; instead, provide the total number of
1637 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
1638
1639config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
1640 bool
1641 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
1642 select BR2_LEGACY
1643
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001644config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
1645 bool "cdxaparse removed"
1646 select BR2_LEGACY
1647
1648config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
1649 bool "dataurisrc moved to gstreamer1"
1650 select BR2_LEGACY
1651 help
1652 Dataurisrc has moved to gstreamer core and is always built.
1653
1654config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
1655 bool "dccp removed"
1656 select BR2_LEGACY
1657
1658config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
1659 bool "hdvparse removed"
1660 select BR2_LEGACY
1661
1662config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
1663 bool "mve removed"
1664 select BR2_LEGACY
1665
1666config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
1667 bool "nuvdemux removed"
1668 select BR2_LEGACY
1669
1670config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
1671 bool "patchdetect removed"
1672 select BR2_LEGACY
1673
1674config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
1675 bool "sdi removed"
1676 select BR2_LEGACY
1677
1678config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
1679 bool "tta removed"
1680 select BR2_LEGACY
1681
1682config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
1683 bool "videomeasure removed"
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001684 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001685 select BR2_LEGACY
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001686 help
1687 videomeasure plugin has been removed and has been replaced by
1688 iqa, which has automatically been enabled.
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001689
1690config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
1691 bool "apexsink removed"
1692 select BR2_LEGACY
1693
1694config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
1695 bool "sdl removed"
1696 select BR2_LEGACY
1697
Vicente Olivert Rierab006fe12017-05-12 11:18:05 +01001698config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
1699 bool "mad (*.mp3 audio) removed"
1700 select BR2_LEGACY
1701
Yann E. MORIN0d643fd2017-07-01 14:51:21 +02001702config BR2_STRIP_none
1703 bool "Strip command 'none' has been removed"
1704 select BR2_LEGACY
1705 help
1706 The strip command choice has been changed into a single
1707 boolean option. Please check that the new setting is
1708 correct (in the "Build options" sub-menu)
1709
Bernd Kuhlsdd4d3c12017-06-11 14:48:51 +02001710config BR2_PACKAGE_BEECRYPT_CPP
1711 bool "C++ support removed in beecrypt"
1712 select BR2_LEGACY
1713 help
1714 Support for C++ depends on icu. The beecrypt package is
1715 incompatible with icu 59+.
1716
Peter Korsgaard622ff3d2017-06-22 00:07:42 +02001717config BR2_PACKAGE_SPICE_CLIENT
1718 bool "spice client support removed"
1719 select BR2_LEGACY
1720 help
1721 Spice client support has been removed upstream. The
1722 functionality now lives in the spice-gtk widget and
1723 virt-viewer.
1724
1725config BR2_PACKAGE_SPICE_GUI
1726 bool "spice gui support removed"
1727 select BR2_LEGACY
1728 help
1729 Spice gui support has been removed upstream. The
1730 functionality now lives in the spice-gtk widget and
1731 virt-viewer.
1732
Peter Korsgaard6f2c0222017-06-22 00:07:41 +02001733config BR2_PACKAGE_SPICE_TUNNEL
1734 bool "spice network redirection removed"
1735 select BR2_LEGACY
1736 help
1737 Spice network redirection, aka tunnelling has been removed
1738 upstream.
1739
Koen Martens438b2d12017-06-20 20:54:49 +02001740config BR2_PACKAGE_INPUT_TOOLS
1741 bool "input-tools removed"
1742 select BR2_LEGACY
1743 select BR2_PACKAGE_LINUXCONSOLETOOLS
1744 help
1745 input-tools has been removed, it is replaced by
1746 linuxconsoletools, which has automatically been enabled.
1747
1748config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
1749 bool "inputattach moved to linuxconsoletools"
1750 select BR2_LEGACY
1751 select BR2_PACKAGE_LINUXCONSOLETOOLS
1752 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
1753 help
1754 input-tools has been removed, inputattach is now part
1755 of linuxconsoletools, which has automatically been
1756 enabled.
1757
1758config BR2_PACKAGE_INPUT_TOOLS_JSCAL
1759 bool "jscal moved to linuxconsoletools"
1760 select BR2_LEGACY
1761 select BR2_PACKAGE_LINUXCONSOLETOOLS
1762 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1763 help
1764 input-tools has been removed, jscal is now part
1765 of linuxconsoletools, which has automatically been
1766 enabled.
1767
1768config BR2_PACKAGE_INPUT_TOOLS_JSTEST
1769 bool "jstest moved to linuxconsoletools"
1770 select BR2_LEGACY
1771 select BR2_PACKAGE_LINUXCONSOLETOOLS
1772 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1773 help
1774 input-tools has been removed, jstest is now part
1775 of linuxconsoletools, which has automatically been
1776 enabled.
1777
Baruch Siach6510a822017-06-16 06:32:48 +03001778config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
1779 bool "SH Sourcery toolchain has been removed"
1780 select BR2_LEGACY
1781 help
1782 The Sourcery CodeBench toolchain for the sh architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001783 been removed, since it uses glibc older than 2.17 that
1784 requires -lrt to link executables using clock_* system calls.
1785 This makes this toolchain difficult to maintain over time.
Baruch Siach6510a822017-06-16 06:32:48 +03001786
Baruch Siach06cac642017-06-16 06:32:47 +03001787config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
1788 bool "x86 Sourcery toolchain has been removed"
1789 select BR2_LEGACY
1790 help
1791 The Sourcery CodeBench toolchain for the x86 architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001792 been removed, since it uses glibc older than 2.17 that
1793 requires -lrt to link executables using clock_* system calls.
1794 This makes this toolchain difficult to maintain over time.
Baruch Siach06cac642017-06-16 06:32:47 +03001795
Romain Naourf6695212017-05-23 22:24:40 +02001796config BR2_GCC_VERSION_4_8_X
1797 bool "gcc 4.8.x support removed"
1798 select BR2_LEGACY
1799 help
1800 Support for gcc version 4.8.x has been removed. The current
1801 default version (5.x or later) has been selected instead.
1802
1803###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001804comment "Legacy options removed in 2017.05"
1805
Romain Naour95426af2017-02-21 22:43:16 +01001806config BR2_PACKAGE_SUNXI_MALI_R2P4
1807 bool "sunxi-mali r2p4 removed"
1808 select BR2_LEGACY
1809 help
1810 sunxi-mali libMali for r2p4 Mali kernel module has been
1811 removed since the libump package only provides libUMP.so.3.
1812 libMali for r2p4 Mali kernel module requires libUMP.so.2.
1813
Martin Barkd999a7f2017-05-06 14:19:13 +01001814config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
1815 bool "CoffeeScript option has been removed"
1816 select BR2_LEGACY
1817 help
1818 The option to enable NodeJS CoffeeScript has been removed.
1819 To continue using it, add "coffee-script" to
1820 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1821
Martin Bark096f8b12017-05-06 14:19:12 +01001822config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
1823 bool "Express web application framework option has been removed"
1824 select BR2_LEGACY
1825 help
1826 The option to enable the NodeJS Express web application
1827 framework has been removed. To continue using it, add
1828 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1829
Baruch Siach0364d442017-05-01 15:59:41 +03001830config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
1831 bool "bluez5_utils gatttool install option removed"
1832 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
1833 help
1834 The option to install gatttool specifically has been removed.
1835 Since version 5.44 gatttool is in the list of deprecated
1836 tools. The option to build and install deprecated tools has
1837 been automatically enabled.
1838
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +00001839config BR2_PACKAGE_OPENOCD_FT2XXX
1840 bool "openocd ft2232 support has been removed"
1841 select BR2_PACKAGE_OPENOCD_FTDI
1842 select BR2_LEGACY
1843 help
1844 FT2232 support in OpenOCD has been removed, it's replaced by
1845 FDTI support, which has automatically been enabled.
1846
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001847config BR2_PACKAGE_KODI_RTMPDUMP
1848 bool "kodi rtmp has been removed"
1849 select BR2_LEGACY
Bernd Kuhlsc8942672017-07-16 16:35:17 +02001850 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001851 help
1852 Internal rtmp support was removed from Kodi.
1853
Bernd Kuhlsd3936902017-04-29 10:37:21 +02001854config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
1855 bool "kodi-visualisation-fountain has been removed"
1856 select BR2_LEGACY
1857 help
1858 According to upstream 'the visualization is not currently
1859 in a working shape.'
1860
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +02001861config BR2_PACKAGE_PORTMAP
1862 bool "portmap has been removed"
1863 select BR2_LEGACY
1864 select BR2_PACKAGE_RPCBIND
1865 help
1866 The portmap upstream tarball is removed, no releases since
1867 ten years and latest change in upstream git in 2014.
1868 You should better use rpcbind as a RPC portmapper.
1869
Thomas Petazzoni58472912017-04-03 22:28:21 +02001870config BR2_BINUTILS_VERSION_2_25_X
1871 bool "binutils version 2.25 support removed"
1872 select BR2_LEGACY
1873 help
1874 Support for binutils version 2.25 has been removed. The
1875 current default version (2.27 or later) has been selected
1876 instead.
1877
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +02001878config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
1879 bool "uclibc RPC support has been removed"
1880 select BR2_LEGACY
1881 help
1882 uClibc-ng removed internal RPC implementation in 1.0.23. You
1883 should use libtirpc instead.
1884
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001885config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
1886 int "extra size in blocks has been removed"
1887 default 0
1888 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001889 Since the support for auto calculation of the filesystem size
1890 has been removed, this option is now useless and must be 0.
1891 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
1892 matchs your needs.
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001893
1894config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
1895 bool
1896 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
1897 select BR2_LEGACY
1898
Vicente Olivert Riera815f7132017-03-22 11:39:13 +00001899config BR2_PACKAGE_SYSTEMD_KDBUS
1900 bool "systemd-kdbus has been removed"
1901 select BR2_LEGACY
1902 help
1903 --enable/disable-kdbus configure option has been removed since
1904 systemd-231.
1905
Gustavo Zacariasd10b4932017-03-16 10:04:34 -03001906config BR2_PACKAGE_POLARSSL
1907 bool "polarssl has been removed"
1908 select BR2_LEGACY
1909 help
1910 The polarssl crypto library has been removed since the 1.2.x
1911 release branch is no longer maintained. Newer upstream
1912 branches/releases (mbedtls) have API changes so they're not
1913 drop-in replacements.
1914
Yann E. MORIN61551182017-03-12 10:58:15 +01001915config BR2_NBD_CLIENT
1916 bool "nbd client option was renamed"
1917 select BR2_LEGACY
1918 select BR2_PACKAGE_NBD_CLIENT
1919 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001920 The nbd client option has been renamed to
1921 BR2_PACKAGE_NBD_CLIENT.
Yann E. MORIN61551182017-03-12 10:58:15 +01001922
1923config BR2_NBD_SERVER
1924 bool "nbd server option was renamed"
1925 select BR2_LEGACY
1926 select BR2_PACKAGE_NBD_SERVER
1927 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001928 The nbd server option has been renamed to
1929 BR2_PACKAGE_NBD_SERVER.
Yann E. MORIN61551182017-03-12 10:58:15 +01001930
Carlos Santos6a9c6312017-02-14 09:05:16 -02001931config BR2_PACKAGE_GMOCK
1932 bool "gmock merged into gtest package"
1933 select BR2_LEGACY
1934 select BR2_PACKAGE_GTEST
1935 select BR2_PACKAGE_GTEST_GMOCK
1936 help
1937 GMock is now a suboption of the GTest package.
1938
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001939config BR2_KERNEL_HEADERS_4_8
1940 bool "kernel headers version 4.8.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001941 select BR2_LEGACY
1942 help
1943 Version 4.8.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001944 maintained upstream and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001945
1946config BR2_KERNEL_HEADERS_3_18
1947 bool "kernel headers version 3.18.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001948 select BR2_LEGACY
1949 help
1950 Version 3.18.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001951 maintained upstream and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001952
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001953config BR2_GLIBC_VERSION_2_22
1954 bool "glibc 2.22 removed"
1955 select BR2_LEGACY
1956 help
1957 Support for glibc version 2.22 has been removed. The current
1958 default version has been selected instead.
1959
1960###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +01001961comment "Legacy options removed in 2017.02"
1962
Francois Perrad8546ff32016-12-26 15:50:35 +01001963config BR2_PACKAGE_PERL_DB_FILE
1964 bool "perl-db-file removed"
1965 select BR2_LEGACY
1966 select BR2_PACKAGE_BERKELEYDB
1967 select BR2_PACKAGE_PERL
1968 help
1969 DB_File can be built as a core Perl module, so the separate
1970 perl-db-file package has been removed.
1971
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001972config BR2_KERNEL_HEADERS_4_7
1973 bool "kernel headers version 4.7.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001974 select BR2_LEGACY
1975 help
1976 Version 4.7.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001977 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001978
1979config BR2_KERNEL_HEADERS_4_6
1980 bool "kernel headers version 4.6.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001981 select BR2_LEGACY
1982 help
1983 Version 4.6.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001984 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001985
1986config BR2_KERNEL_HEADERS_4_5
1987 bool "kernel headers version 4.5.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001988 select BR2_LEGACY
1989 help
1990 Version 4.5.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001991 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001992
1993config BR2_KERNEL_HEADERS_3_14
1994 bool "kernel headers version 3.14.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001995 select BR2_LEGACY
1996 help
1997 Version 3.14.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001998 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001999
Romain Naour63abbcc2016-12-16 16:29:45 +01002000config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
2001 bool "musl-cross 1.1.12 toolchain removed"
2002 select BR2_LEGACY
2003 help
2004 The support for the prebuilt toolchain based on the Musl C
2005 library provided by the musl-cross project has been removed.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002006 Upstream doesn't provide any prebuilt toolchain anymore, use
2007 the Buildroot toolchain instead.
Romain Naour63abbcc2016-12-16 16:29:45 +01002008
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +01002009config BR2_UCLIBC_INSTALL_TEST_SUITE
2010 bool "uClibc tests now in uclibc-ng-test"
2011 select BR2_LEGACY
2012 select BR2_PACKAGE_UCLIBC_NG_TEST
2013 help
2014 The test suite of the uClibc C library has been moved into a
2015 separate package, uclibc-ng-test.
2016
Arnout Vandecappelle311bc132016-11-24 00:40:35 +01002017config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
2018 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
2019 select BR2_LEGACY
2020 help
2021 The ADI Blackfin toolchain has many bugs which are fixed in
2022 more recent gcc and uClibc-ng releases. Use the Buildroot
2023 toolchain instead.
2024
Arnout Vandecappelle207294f2016-11-23 15:14:04 +01002025config BR2_PACKAGE_MAKEDEVS
2026 bool "makedevs removed"
2027 select BR2_LEGACY
2028 help
2029 The makedevs tool is part of busybox. The Buildroot fork
2030 should not be used outside of the Buildroot infrastructure.
2031
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +01002032config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
2033 bool "Arago ARMv7 2011.09 removed"
2034 select BR2_LEGACY
2035 help
2036 The Arago toolchains are every old and not updated anymore.
2037
2038config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
2039 bool "Arago ARMv5 2011.09 removed"
2040 select BR2_LEGACY
2041 help
2042 The Arago toolchains are every old and not updated anymore.
2043
Thomas Petazzonied364d12016-11-05 14:32:38 +01002044config BR2_PACKAGE_SNOWBALL_HDMISERVICE
2045 bool "snowball-hdmiservice removed"
2046 select BR2_LEGACY
2047 help
2048 We no longer have support for the Snowball platform in
2049 Buildroot, so this package was no longer useful.
2050
2051config BR2_PACKAGE_SNOWBALL_INIT
2052 bool "snowball-init removed"
2053 select BR2_LEGACY
2054 help
2055 We no longer have support for the Snowball platform in
2056 Buildroot, so this package was no longer useful.
2057
Jörg Krause69aa0572016-12-14 14:40:58 +01002058config BR2_GDB_VERSION_7_9
2059 bool "gdb 7.9 has been removed"
2060 select BR2_LEGACY
2061 help
2062 The 7.9 version of gdb has been removed. Use a newer version
2063 instead.
2064
Thomas Petazzonied364d12016-11-05 14:32:38 +01002065###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +02002066comment "Legacy options removed in 2016.11"
2067
Fabrice Fontainec4572132016-09-12 23:31:07 +02002068config BR2_PACKAGE_PHP_SAPI_CLI_CGI
2069 bool "PHP CGI and CLI options are now seperate"
2070 select BR2_PACKAGE_PHP_SAPI_CLI
2071 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +02002072 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02002073 help
2074 The PHP Interface options have been split up into a
2075 separate option for each interface.
2076
2077config BR2_PACKAGE_PHP_SAPI_CLI_FPM
2078 bool "PHP CLI and FPM options are now separate"
2079 select BR2_PACKAGE_PHP_SAPI_CLI
2080 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +02002081 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02002082 help
2083 The PHP Interface options have been split up into a
2084 separate option for each interface.
2085
Arnout Vandecappelle35343992016-10-15 16:51:06 +02002086config BR2_PACKAGE_WVSTREAMS
2087 bool "wvstreams removed"
2088 select BR2_LEGACY
2089 help
2090 wvstreams is not maintained anymore since about 2009. It also
2091 doesn't build anymore with recent compilers (GCC 5+).
2092
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +02002093config BR2_PACKAGE_WVDIAL
2094 bool "wvdial removed"
2095 select BR2_LEGACY
2096 help
2097 wvdial is not maintained anymore since about 2009. It also
2098 doesn't build anymore with recent compilers (GCC 5+).
2099
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +02002100config BR2_PACKAGE_WEBKITGTK24
2101 bool "webkitgtk 2.4.x removed"
2102 select BR2_LEGACY
2103 help
2104 This legacy package only existed because some other packages
2105 depended on that specific version of webkitgtk. However, the
2106 other packages have been fixed. webkitgtk 2.4 is full of
2107 security issues so it needs to be removed.
2108
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +02002109config BR2_PACKAGE_TORSMO
2110 bool "torsmo removed"
2111 select BR2_LEGACY
2112 help
2113 torsmo has been unmaintained for a long time, and nobody
2114 seems to be interested in it.
2115
Arnout Vandecappelle290166f2016-10-15 16:51:02 +02002116config BR2_PACKAGE_SSTRIP
2117 bool "sstrip removed"
2118 select BR2_LEGACY
2119 help
2120 sstrip is unmaintained and potentially harmful. It doesn't
2121 save so much compared to normal binutils strip, and there is
2122 a big risk of binaries that don't work. Use normal strip
2123 instead.
2124
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002125config BR2_KERNEL_HEADERS_4_3
2126 bool "kernel headers version 4.3.x are no longer supported"
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002127 select BR2_LEGACY
2128 help
2129 Version 4.3.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02002130 maintained upstream and are now removed.
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002131
2132config BR2_KERNEL_HEADERS_4_2
2133 bool "kernel headers version 4.2.x are no longer supported"
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002134 select BR2_LEGACY
2135 help
2136 Version 4.2.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02002137 maintained upstream and are now removed.
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002138
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002139config BR2_PACKAGE_KODI_ADDON_XVDR
2140 bool "kodi-addon-xvdr removed"
2141 select BR2_LEGACY
2142 help
2143 According to the github project page:
2144 https://github.com/pipelka/xbmc-addon-xvdr
2145 this package is discontinued.
2146
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02002147config BR2_PACKAGE_IPKG
2148 bool "ipkg removed"
2149 select BR2_LEGACY
2150 help
2151 ipkg dates back to the early 2000s when Compaq started the
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002152 handhelds.org project and it hasn't seen development since
2153 2006. Use opkg as a replacement.
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02002154
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +02002155config BR2_GCC_VERSION_4_7_X
2156 bool "gcc 4.7.x support removed"
2157 select BR2_LEGACY
2158 help
2159 Support for gcc version 4.7.x has been removed. The current
2160 default version (4.9.x or later) has been selected instead.
2161
Arnout Vandecappelled8878112016-10-15 16:50:57 +02002162config BR2_BINUTILS_VERSION_2_24_X
2163 bool "binutils version 2.24 support removed"
2164 select BR2_LEGACY
2165 help
2166 Support for binutils version 2.24 has been removed. The
2167 current default version (2.26 or later) has been selected
2168 instead.
2169
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -03002170config BR2_PACKAGE_WESTON_RPI
2171 bool "Weston propietary RPI support is gone"
2172 select BR2_LEGACY
2173 help
2174 Upstream decided the propietary (rpi-userland) weston composer
2175 support wasn't worth the effort so it was removed. Switch to
2176 the open VC4 support.
2177
Yann E. MORIN20b14462016-09-06 16:29:14 +02002178config BR2_LINUX_KERNEL_TOOL_CPUPOWER
2179 bool "linux-tool cpupower"
2180 depends on BR2_LINUX_KERNEL
2181 select BR2_LEGACY
2182 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
2183 help
2184 Linux tool cpupower option was renamed.
2185
2186config BR2_LINUX_KERNEL_TOOL_PERF
2187 bool "linux-tool perf"
2188 depends on BR2_LINUX_KERNEL
2189 select BR2_LEGACY
2190 select BR2_PACKAGE_LINUX_TOOLS_PERF
2191 help
2192 Linux tool perf option was renamed.
2193
2194config BR2_LINUX_KERNEL_TOOL_SELFTESTS
2195 bool "linux-tool selftests"
2196 depends on BR2_LINUX_KERNEL
2197 select BR2_LEGACY
2198 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
2199 help
2200 Linux tool selftests option was renamed.
2201
Thomas Petazzoni50332a52016-08-11 15:25:38 +02002202config BR2_GCC_VERSION_4_8_ARC
2203 bool "gcc arc option renamed"
2204 select BR2_LEGACY
2205 select BR2_GCC_VERSION_ARC
2206 help
2207 The option that selects the gcc version for the ARC
2208 architecture has been renamed to BR2_GCC_VERSION_ARC.
2209
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002210config BR2_KERNEL_HEADERS_4_0
2211 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002212 select BR2_LEGACY
2213 help
2214 Version 4.0.x of the Linux kernel headers have been deprecated
2215 for more than four buildroot releases and are now removed.
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002216
2217config BR2_KERNEL_HEADERS_3_19
2218 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002219 select BR2_LEGACY
2220 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002221 Version 3.19.x of the Linux kernel headers have been
2222 deprecated for more than four buildroot releases and are now
2223 removed.
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002224
Romain Naour0e517312016-09-02 22:31:32 +02002225config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
2226 bool "libevas-generic-loaders package removed"
2227 select BR2_LEGACY
2228 select BR2_PACKAGE_EFL
2229 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002230 With EFL 1.18, libevas-generic-loaders is now provided by the
2231 efl package.
Romain Naour0e517312016-09-02 22:31:32 +02002232
Romain Naourc22b7582016-09-02 22:31:31 +02002233config BR2_PACKAGE_ELEMENTARY
2234 bool "elementary package removed"
2235 select BR2_LEGACY
2236 select BR2_PACKAGE_EFL
2237 help
2238 With EFL 1.18, elementary is now provided by the efl package.
2239
Yann E. MORINe782cd52016-08-28 01:03:04 +02002240config BR2_LINUX_KERNEL_CUSTOM_LOCAL
2241 bool "Linux kernel local directory option removed"
2242 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002243 The option to select a local directory as the source of the
2244 Linux kernel has been removed. It hurts reproducibility of
2245 builds.
Yann E. MORINe782cd52016-08-28 01:03:04 +02002246
2247 In case you were using this option during development of your
2248 Linux kernel, use the override mechanism instead.
2249
2250###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02002251comment "Legacy options removed in 2016.08"
2252
Arnout Vandecappelleac191072017-03-08 00:50:54 +01002253config BR2_PACKAGE_EFL_JP2K
2254 bool "libevas jp2k loader has been removed"
2255 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +01002256 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +01002257 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
2258 while Buildroot only packages openjpeg 2.x. Therefore, the
2259 JP2K loader has been removed from EFL.
2260
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002261config BR2_PACKAGE_SYSTEMD_COMPAT
2262 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +02002263 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002264 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +02002265 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002266 been removed. Theses libraries have been useless since a few
2267 version, and have been fully dropped from the source since
2268 v230.
2269
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +02002270config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
2271 bool "gst1-plugins-bad liveadder plugin removed"
2272 select BR2_LEGACY
2273 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
2274 help
2275 The functionality of the liveadder plugin of the
2276 gst1-plugins-bad package has been merged into audiomixer.
2277
Andrew Webster0f92b192016-06-10 14:13:29 -04002278config BR2_PACKAGE_LIBFSLVPUWRAP
2279 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
2280 select BR2_LEGACY
2281 select BR2_PACKAGE_IMX_VPUWRAP
2282 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002283 The libfslvpuwrap has been renamed to match the renamed
2284 package.
Andrew Webster0f92b192016-06-10 14:13:29 -04002285
Andrew Webster64998902016-06-10 14:13:18 -04002286config BR2_PACKAGE_LIBFSLPARSER
2287 bool "libfslparser has been renamed to imx-parser"
2288 select BR2_LEGACY
2289 select BR2_PACKAGE_IMX_PARSER
2290 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002291 The libfslparser has been renamed to match the renamed
2292 package.
Andrew Webster64998902016-06-10 14:13:18 -04002293
Andrew Webster47e62032016-06-10 14:13:05 -04002294config BR2_PACKAGE_LIBFSLCODEC
2295 bool "libfslcodec has been renamed to imx-codec"
2296 select BR2_LEGACY
2297 select BR2_PACKAGE_IMX_CODEC
2298 help
2299 The libfslcodec has been renamed to match the renamed package.
2300
Carlos Santosb5d99002016-06-03 16:35:39 -03002301config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
2302 bool "FIT support in uboot-tools has been refactored"
2303 select BR2_LEGACY
2304 select BR2_PACKAGE_DTC
2305 select BR2_PACKAGE_DTC_PROGRAMS
2306 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
2307 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
2308 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
2309 help
2310 This option has been removed in favor of a more fine-grained
2311 configuration, which is recommended. Selecting this option
2312 enables FIT and FIT signature support for the target packages.
2313 It will also select the dtc and openssl packages.
2314
Waldemar Brodkorbf253c142016-06-01 20:40:25 +02002315config BR2_PTHREADS_OLD
2316 bool "linuxthreads (stable/old)"
2317 select BR2_LEGACY
2318 help
2319 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
2320 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
2321
Thomas Petazzoniae466a62016-05-17 00:13:01 +02002322config BR2_BINUTILS_VERSION_2_23_X
2323 bool "binutils 2.23 removed"
2324 select BR2_LEGACY
2325 help
2326 Binutils 2.23 has been removed, using a newer version is
2327 recommended.
2328
Thomas Petazzoni500de252016-05-17 00:13:00 +02002329config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
2330 bool "eglibc support has been removed"
2331 select BR2_LEGACY
2332 help
2333 The eglibc project no longer exists, as it has been merged
2334 back into the glibc project. Therefore, support for eglibc
2335 has been removed, and glibc should be used instead.
2336
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02002337config BR2_GDB_VERSION_7_8
2338 bool "gdb 7.8 has been removed"
2339 select BR2_LEGACY
2340 help
2341 The 7.8 version of gdb has been removed. Use a newer version
2342 instead.
2343
2344###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01002345comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +01002346
Gustavo Zacarias3380da62016-05-14 10:33:47 -03002347config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
2348 bool "openvpn polarssl crypto backend removed"
2349 select BR2_LEGACY
2350 help
2351 The OpenVPN polarssl crypto backend option has been removed.
2352 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
2353 compatible with mbedtls (polarssl) series 2.x which is the
2354 version provided in buildroot. And both can't coexist.
2355 It now uses OpenSSL as the only option.
2356
Martin Bark4dfc2cb2016-05-03 10:36:54 +01002357config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
2358 bool "nginx http spdy module removed"
2359 select BR2_LEGACY
2360 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
2361 help
2362 The ngx_http_spdy_module has been superseded by the
2363 ngx_http_v2_module since nginx v1.9.5. The
2364 ngx_http_v2_module modules has been automatically selected
2365 in your configuration.
2366
Gustavo Zacarias0c956f22016-05-03 16:44:15 -03002367config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
2368 bool "gst1-plugins-bad rtp plugin moved to good"
2369 select BR2_LEGACY
2370 help
2371 The rtp plugin has been moved from gst1-plugins-base to
2372 gst1-plugins-good.
2373
Gustavo Zacarias4196cf92016-05-03 16:44:14 -03002374config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
2375 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
2376 select BR2_LEGACY
2377 help
2378 The mpg123 plugin has been moved from gst1-plugins-bad to
2379 gst1-plugins-ugly.
2380
Gustavo Zacarias8490e832016-04-29 10:18:56 -03002381config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
2382 bool "PowerPC Sourcery toolchain has been removed"
2383 select BR2_LEGACY
2384 help
2385 The Sourcery CodeBench toolchain for the PowerPC
2386 architecture has been removed, as it was very old, not
2387 maintained, and causing numerous build failures with modern
2388 userspace packages.
2389
2390config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
2391 bool "PowerPC Sourcery E500v2 toolchain has been removed"
2392 select BR2_LEGACY
2393 help
2394 The Sourcery CodeBench toolchain for the PowerPC E500v2
2395 architecture has been removed, as it was very old, not
2396 maintained, and causing numerous build failures with modern
2397 userspace packages.
2398
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02002399config BR2_x86_i386
2400 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +02002401 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02002402 help
2403 The support for the i386 processors of the x86 architecture
2404 has been removed.
2405
Julien CORJONf75ee802016-03-17 10:42:25 +01002406config BR2_PACKAGE_QT5QUICK1
2407 bool "qt5quick1 package removed"
2408 select BR2_LEGACY
2409 help
2410 The qt5quick1 package has been removed, since it was removed
2411 from upstream starting from Qt 5.6.
2412
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03002413config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -05002414 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03002415 help
2416 The uboot custom patch directory option has been removed. Use
2417 the improved BR2_TARGET_UBOOT_PATCH option instead.
2418
Danomi Manchegof61583f2016-12-19 22:10:12 -05002419config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
2420 bool
2421 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
2422 select BR2_LEGACY
2423
2424# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
2425# boot/uboot/Config.in
2426
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -03002427config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
2428 bool "xf86-input-void removed"
2429 select BR2_LEGACY
2430 help
2431 The xf86-input-void package has been removed, there's no need
2432 for it in any modern (post-2007) xorg server.
2433
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002434config BR2_KERNEL_HEADERS_3_17
2435 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002436 select BR2_LEGACY
2437 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002438 Version 3.17.x of the Linux kernel headers have been
2439 deprecated for more than four buildroot releases and are now
2440 removed.
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002441
Gustavo Zacariasffc324e2016-03-11 11:32:21 -03002442config BR2_GDB_VERSION_7_7
2443 bool "gdb 7.7 has been removed"
2444 select BR2_LEGACY
2445 help
2446 The 7.7 version of gdb has been removed. Use a newer version
2447 instead.
2448
Gustavo Zacarias75945dd2016-03-11 11:32:20 -03002449config BR2_PACKAGE_FOOMATIC_FILTERS
2450 bool "foomatic-filters"
2451 select BR2_LEGACY
2452 help
2453 The foomatic-filters package was removed.
2454
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -03002455config BR2_PACKAGE_SAMBA
2456 bool "samba"
2457 select BR2_LEGACY
2458 help
2459 The samba package was removed in favour of samba4 since the
2460 3.x series isn't supported by upstream any longer.
2461
Bernd Kuhls6922b412016-02-20 23:09:11 +01002462config BR2_PACKAGE_KODI_WAVPACK
2463 bool "wavpack"
2464 select BR2_LEGACY
2465 help
2466 wavpack support was removed in favour of ffmpeg:
2467 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
2468
Bernd Kuhls75ce17d2016-02-20 23:09:07 +01002469config BR2_PACKAGE_KODI_RSXS
2470 bool "rsxs support in Kodi was moved to an addon"
2471 select BR2_LEGACY
2472 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
2473 help
2474 rsxs support in Kodi was moved to an addon
2475
Bernd Kuhls56b80ec2016-02-20 23:09:06 +01002476config BR2_PACKAGE_KODI_GOOM
2477 bool "Goom support in Kodi was moved to an addon"
2478 select BR2_LEGACY
2479 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
2480 help
2481 Goom support in Kodi was moved to an addon
2482
Gabe Evanse5a073a2016-02-25 21:55:11 +00002483config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
2484 bool "systemd all extras option has been removed"
2485 select BR2_LEGACY
2486 select BR2_PACKAGE_XZ
2487 select BR2_PACKAGE_LIBGCRYPT
2488 help
2489 The systemd option to enable "all extras" has been
2490 removed. To get the same features, the libgcrypt and xz
2491 package should now be enabled.
2492
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -03002493config BR2_GCC_VERSION_4_5_X
2494 bool "gcc 4.5.x has been removed"
2495 select BR2_LEGACY
2496 help
2497 The 4.5.x version of gcc has been removed. Use a newer
2498 version instead.
2499
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01002500config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -05002501 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01002502 select BR2_PACKAGE_NCURSES
2503 select BR2_PACKAGE_READLINE
2504 select BR2_LEGACY
2505 help
2506 This option was removed in favour of the sqlite package
2507 deciding itself depending on the enabled packages whether
2508 command-line editing should be enabled, it also also takes
2509 libedit into account.
2510
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01002511###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +01002512comment "Legacy options removed in 2016.02"
2513
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +01002514config BR2_PACKAGE_DOVECOT_BZIP2
2515 bool "bzip2 support option has been removed"
2516 select BR2_LEGACY
2517 select BR2_PACKAGE_BZIP2
2518 help
2519 Bzip2 support is built if the bzip2 package is selected.
2520
2521config BR2_PACKAGE_DOVECOT_ZLIB
2522 bool "zlib support option has been removed"
2523 select BR2_LEGACY
2524 select BR2_PACKAGE_ZLIB
2525 help
2526 Zlib support is built if the zlib package is selected.
2527
James Knightead1df42016-02-12 11:40:05 -05002528config BR2_PACKAGE_E2FSPROGS_FINDFS
2529 bool "e2fsprogs findfs option has been removed"
2530 select BR2_LEGACY
2531 help
2532 This option attempted to enable findfs capabilities from
2533 e2fsprogs but has not worked since July 2015 (due to
2534 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +01002535 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -05002536
Romain Naourb1063a02016-02-07 17:56:56 +01002537config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
2538 bool "openpowerlink debug option has been removed"
2539 select BR2_LEGACY
2540 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002541 This option depends on BR2_ENABLE_DEBUG which should not be
2542 used by packages anymore.
Romain Naourb1063a02016-02-07 17:56:56 +01002543
2544config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
2545 bool "openpowerlink package has been updated"
2546 select BR2_LEGACY
2547 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
2548 help
2549 openpowerlink kernel modules are built if the
2550 kernel stack library is selected.
2551
2552config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
2553 bool "openpowerlink package has been updated"
2554 select BR2_LEGACY
2555 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
2556 help
2557 The user space support has been split in two part:
2558 - a monolitic user space library
2559 - a user spae deamon driver
2560
Yann E. MORINe3e05832016-02-06 00:06:17 +01002561config BR2_LINUX_KERNEL_SAME_AS_HEADERS
2562 bool "using the linux headers version for the kernel has been removed"
2563 select BR2_LEGACY
2564 help
2565 The option to use the version of the kernel headers for the
2566 kernel to build has been removed.
2567
2568 There is now the converse, better-suited and more versatile
2569 option to use the kernel version for the linux headers.
2570
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002571config BR2_PACKAGE_CUPS_PDFTOPS
2572 bool "Pdftops support has been removed from Cups"
Olivier Schonken917de0f2017-10-23 15:26:11 +02002573 select BR2_PACKAGE_CUPS_FILTERS
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002574 select BR2_LEGACY
2575 help
2576 Pdftops support has been removed from the cups package
2577 It is now part of the cups-filters package.
2578
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002579config BR2_KERNEL_HEADERS_3_16
2580 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002581 select BR2_LEGACY
2582 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002583 Version 3.16.x of the Linux kernel headers have been
2584 deprecated for more than four buildroot releases and are now
2585 removed.
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002586
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01002587config BR2_PACKAGE_PYTHON_PYXML
2588 bool "python-pyxml package has been removed"
2589 select BR2_LEGACY
2590 help
2591 PyXML is obsolete and its functionality is covered either via
2592 native Python XML support or python-lxml package.
2593
Steven Noonand29c7192015-12-27 12:07:31 +01002594# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
2595config BR2_ENABLE_SSP
2596 bool "Stack Smashing protection now has different levels"
2597 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002598 The protection offered by SSP can now be selected from
2599 different protection levels. Be sure to review the SSP level
2600 in the build options menu.
Steven Noonand29c7192015-12-27 12:07:31 +01002601
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002602config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002603 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002604 select BR2_LEGACY
2605 help
2606 The cle266 directfb driver support has been removed.
2607 It doesn't build in the latest version and it's unlikely
2608 anyone has any use for it.
2609
2610config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002611 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002612 select BR2_LEGACY
2613 help
2614 The unichrome directfb driver support has been removed.
2615 It doesn't build in the latest version and it's unlikely
2616 anyone has any use for it.
2617
Romain Naour820e1682015-12-19 17:39:14 +01002618config BR2_PACKAGE_LIBELEMENTARY
2619 bool "libelementary has been renamed to elementary"
2620 select BR2_LEGACY
2621 select BR2_PACKAGE_ELEMENTARY
2622 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002623 The libelementary package has been renamed to match the
2624 upstream name.
Romain Naour820e1682015-12-19 17:39:14 +01002625
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002626config BR2_PACKAGE_LIBEINA
2627 bool "libeina package has been removed"
2628 select BR2_LEGACY
2629 select BR2_PACKAGE_EFL
2630 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002631 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002632
Romain Naour49700f02015-12-15 23:40:37 +01002633config BR2_PACKAGE_LIBEET
2634 bool "libeet package has been removed"
2635 select BR2_LEGACY
2636 select BR2_PACKAGE_EFL
2637 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002638 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01002639
Romain Naoure5989d62015-12-15 23:40:36 +01002640config BR2_PACKAGE_LIBEVAS
2641 bool "libevas package has been removed"
2642 select BR2_LEGACY
2643 select BR2_PACKAGE_EFL
2644 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002645 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01002646
Romain Naour1fe1b602015-12-15 23:40:35 +01002647config BR2_PACKAGE_LIBECORE
2648 bool "libecore package has been removed"
2649 select BR2_LEGACY
2650 select BR2_PACKAGE_EFL
2651 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002652 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01002653
Romain Naour8c05c382015-12-15 23:40:34 +01002654config BR2_PACKAGE_LIBEDBUS
2655 bool "libedbus package has been removed"
2656 select BR2_LEGACY
2657 select BR2_PACKAGE_EFL
2658 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002659 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01002660
Romain Naourd2b042c2015-12-15 23:40:33 +01002661config BR2_PACKAGE_LIBEFREET
2662 bool "libefreet package has been removed"
2663 select BR2_LEGACY
2664 select BR2_PACKAGE_EFL
2665 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002666 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01002667
Romain Naoure155c952015-12-15 23:40:32 +01002668config BR2_PACKAGE_LIBEIO
2669 bool "libeio package has been removed"
2670 select BR2_LEGACY
2671 select BR2_PACKAGE_EFL
2672 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002673 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01002674
Romain Naourb728fb72015-12-15 23:40:31 +01002675config BR2_PACKAGE_LIBEMBRYO
2676 bool "libembryo package has been removed"
2677 select BR2_LEGACY
2678 select BR2_PACKAGE_EFL
2679 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002680 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01002681
Romain Naour4c93c102015-12-15 23:40:30 +01002682config BR2_PACKAGE_LIBEDJE
2683 bool "libedje package has been removed"
2684 select BR2_LEGACY
2685 select BR2_PACKAGE_EFL
2686 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002687 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01002688
Romain Naour905dba12015-12-15 23:40:29 +01002689config BR2_PACKAGE_LIBETHUMB
2690 bool "libethumb package has been removed"
2691 select BR2_LEGACY
2692 select BR2_PACKAGE_EFL
2693 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002694 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01002695
Luca Ceresolif0c94702015-11-27 18:38:00 +01002696config BR2_PACKAGE_INFOZIP
2697 bool "infozip option has been renamed to zip"
2698 select BR2_LEGACY
2699 select BR2_PACKAGE_ZIP
2700 help
2701 Info-Zip's Zip package has been renamed from infozip to zip,
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002702 to avoid ambiguities with Info-Zip's UnZip which has been
2703 added in the unzip package.
Luca Ceresolif0c94702015-11-27 18:38:00 +01002704
Martin Barka2d16602015-12-23 12:16:04 +00002705config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00002706 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00002707 select BR2_LEGACY
2708 select BR2_PACKAGE_NODEJS
2709 help
Martin Bark75b70492016-01-30 14:51:00 +00002710 nodejs 0.10.x option has been removed. 0.10.x is now
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002711 automatically chosen for ARMv5 architectures only and the
2712 latest nodejs for all other supported architectures. The
2713 correct nodejs version has been automatically selected in your
2714 configuration.
Martin Barka2d16602015-12-23 12:16:04 +00002715
Martin Barka314b872015-12-23 12:16:03 +00002716config BR2_BR2_PACKAGE_NODEJS_0_12_X
2717 bool "nodejs version 0.12.x has been removed"
2718 select BR2_LEGACY
2719 select BR2_PACKAGE_NODEJS
2720 help
2721 nodejs version 0.12.x has been removed. As an alternative,
2722 the latest nodejs version has been automatically selected in
2723 your configuration.
2724
Martin Bark90bf67c2015-12-23 12:16:02 +00002725config BR2_BR2_PACKAGE_NODEJS_4_X
2726 bool "nodejs version 4.x has been removed"
2727 select BR2_LEGACY
2728 select BR2_PACKAGE_NODEJS
2729 help
2730 nodejs version 4.x has been removed. As an alternative,
2731 the latest nodejs version has been automatically selected in
2732 your configuration.
2733
Luca Ceresolif0c94702015-11-27 18:38:00 +01002734###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002735comment "Legacy options removed in 2015.11"
2736
Peter Seiderer301e8ff2015-10-15 21:42:43 +02002737config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
2738 bool "gst1-plugins-bad real plugin has been removed"
2739 select BR2_LEGACY
2740 help
2741 The real plugin from GStreamer 1 bad plugins has been
2742 removed.
2743
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002744config BR2_PACKAGE_MEDIA_CTL
2745 bool "media-ctl package has been removed"
2746 select BR2_LEGACY
2747 select BR2_PACKAGE_LIBV4L
2748 select BR2_PACKAGE_LIBV4L_UTILS
2749 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002750 media-ctl source and developement have been moved to v4l-utils
2751 since June 2014. For an up-to-date media-ctl version select
2752 BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002753
Romain Naourf8031332015-10-03 18:35:05 +02002754config BR2_PACKAGE_SCHIFRA
2755 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002756 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02002757 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002758 Schifra package has been maked broken since 2014.11 release
2759 and haven't been fixed since then.
Romain Naourf8031332015-10-03 18:35:05 +02002760
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002761config BR2_PACKAGE_ZXING
2762 bool "zxing option has been renamed"
2763 select BR2_LEGACY
2764 select BR2_PACKAGE_ZXING_CPP
2765 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002766 ZXing no longer provides the cpp bindings, it has been renamed
2767 to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002768
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002769# Since FreeRDP has new dependencies, protect this legacy to avoid the
2770# infamous "unmet direct dependencies" kconfig error.
2771config BR2_PACKAGE_FREERDP_CLIENT
2772 bool "freerdp client option renamed"
2773 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02002774 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002775 select BR2_PACKAGE_FREERDP_CLIENT_X11
2776
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03002777config BR2_PACKAGE_BLACKBOX
2778 bool "blackbox package has been removed"
2779 select BR2_LEGACY
2780 help
2781 Upstream is dead and the package has been deprecated for
2782 some time. There are other alternative maintained WMs.
2783
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002784config BR2_KERNEL_HEADERS_3_0
2785 bool "kernel headers version 3.0.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002786 select BR2_LEGACY
2787 help
2788 Version 3.0.x of the Linux kernel headers have been deprecated
2789 for more than four buildroot releases and are now removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002790
2791config BR2_KERNEL_HEADERS_3_11
2792 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002793 select BR2_LEGACY
2794 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002795 Version 3.11.x of the Linux kernel headers have been
2796 deprecated for more than four buildroot releases and are now
2797 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002798
2799config BR2_KERNEL_HEADERS_3_13
2800 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002801 select BR2_LEGACY
2802 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002803 Version 3.13.x of the Linux kernel headers have been
2804 deprecated for more than four buildroot releases and are now
2805 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002806
2807config BR2_KERNEL_HEADERS_3_15
2808 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002809 select BR2_LEGACY
2810 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002811 Version 3.15.x of the Linux kernel headers have been
2812 deprecated for more than four buildroot releases and are now
2813 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002814
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002815config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
2816 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002817 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002818 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2819 help
2820 The per-DirectFB example options have been removed. The
2821 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2822 examples.
2823
2824config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
2825 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002826 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002827 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2828 help
2829 The per-DirectFB example options have been removed. The
2830 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2831 examples.
2832
2833config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
2834 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002835 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002836 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2837 help
2838 The per-DirectFB example options have been removed. The
2839 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2840 examples.
2841
2842config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
2843 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002844 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002845 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2846 help
2847 The per-DirectFB example options have been removed. The
2848 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2849 examples.
2850
2851config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
2852 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002853 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002854 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2855 help
2856 The per-DirectFB example options have been removed. The
2857 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2858 examples.
2859
2860config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
2861 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002862 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002863 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2864 help
2865 The per-DirectFB example options have been removed. The
2866 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2867 examples.
2868
2869config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
2870 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002871 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002872 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2873 help
2874 The per-DirectFB example options have been removed. The
2875 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2876 examples.
2877
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002878config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
2879 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002880 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002881 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2882 help
2883 The per-DirectFB example options have been removed. The
2884 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2885 examples.
2886
2887config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
2888 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002889 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002890 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2891 help
2892 The per-DirectFB example options have been removed. The
2893 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2894 examples.
2895
2896config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
2897 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002898 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002899 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2900 help
2901 The per-DirectFB example options have been removed. The
2902 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2903 examples.
2904
2905config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
2906 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002907 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002908 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2909 help
2910 The per-DirectFB example options have been removed. The
2911 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2912 examples.
2913
2914config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
2915 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002916 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002917 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2918 help
2919 The per-DirectFB example options have been removed. The
2920 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2921 examples.
2922
2923config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
2924 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002925 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002926 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2927 help
2928 The per-DirectFB example options have been removed. The
2929 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2930 examples.
2931
2932config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
2933 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002934 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002935 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2936 help
2937 The per-DirectFB example options have been removed. The
2938 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2939 examples.
2940
2941config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
2942 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002943 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002944 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2945 help
2946 The per-DirectFB example options have been removed. The
2947 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2948 examples.
2949
2950config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
2951 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002952 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002953 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2954 help
2955 The per-DirectFB example options have been removed. The
2956 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2957 examples.
2958
2959config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
2960 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002961 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002962 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2963 help
2964 The per-DirectFB example options have been removed. The
2965 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2966 examples.
2967
2968config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
2969 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002970 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002971 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2972 help
2973 The per-DirectFB example options have been removed. The
2974 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2975 examples.
2976
2977config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
2978 bool "DirectFB example df_palette has been removed"
2979 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2980 help
2981 The per-DirectFB example options have been removed. The
2982 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2983 examples.
2984
2985config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
2986 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002987 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002988 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2989 help
2990 The per-DirectFB example options have been removed. The
2991 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2992 examples.
2993
2994config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
2995 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002996 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002997 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2998 help
2999 The per-DirectFB example options have been removed. The
3000 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3001 examples.
3002
3003config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
3004 bool "DirectFB example df_stress has been removed"
3005 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3006 help
3007 The per-DirectFB example options have been removed. The
3008 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3009 examples.
3010
3011config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
3012 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003013 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02003014 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3015 help
3016 The per-DirectFB example options have been removed. The
3017 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3018 examples.
3019
3020config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
3021 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003022 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02003023 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3024 help
3025 The per-DirectFB example options have been removed. The
3026 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3027 examples.
3028
3029config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
3030 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003031 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02003032 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3033 help
3034 The per-DirectFB example options have been removed. The
3035 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3036 examples.
3037
3038config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
3039 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003040 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02003041 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3042 help
3043 The per-DirectFB example options have been removed. The
3044 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3045 examples.
3046
Gary Bisson2b78fb22015-09-23 15:39:27 +02003047config BR2_PACKAGE_KOBS_NG
3048 bool "kobs-ng was replaced by imx-kobs"
3049 select BR2_LEGACY
3050 select BR2_PACKAGE_IMX_KOBS
3051 help
3052 The outdated kobs-ng has been replaced by the Freescale-
3053 maintained imx-kobs package.
3054
Thomas Petazzoni11573f52015-09-02 00:01:11 +02003055config BR2_PACKAGE_SAWMAN
3056 bool "sawman package removed"
3057 select BR2_LEGACY
3058 select BR2_PACKAGE_DIRECTFB_SAWMAN
3059 help
3060 This option has been removed because the sawman package no
3061 longer exists: it was merged inside DirectFB itself. This
3062 feature can now be enabled using the
3063 BR2_PACKAGE_DIRECTFB_SAWMAN option.
3064
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02003065config BR2_PACKAGE_DIVINE
3066 bool "divine package removed"
3067 select BR2_LEGACY
3068 select BR2_PACKAGE_DIRECTFB_DIVINE
3069 help
3070 This option has been removed because the divine package no
3071 longer exists: it was merged inside DirectFB itself. This
3072 feature can now be enabled using the
3073 BR2_PACKAGE_DIRECTFB_DIVINE option.
3074
3075###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03003076comment "Legacy options removed in 2015.08"
3077
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02003078config BR2_PACKAGE_KODI_PVR_ADDONS
3079 bool "Kodi PVR addon was split"
3080 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02003081 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02003082 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02003083 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02003084 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02003085 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02003086 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02003087 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02003088 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02003089 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02003090 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02003091 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02003092 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02003093 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02003094 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02003095 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02003096 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02003097 help
3098 Kodi PVR addon was split into seperate modules
3099
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03003100config BR2_BINUTILS_VERSION_2_23_2
3101 bool "binutils 2.23 option renamed"
3102 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03003103 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02003104 Binutils 2.23.2 has been removed, using a newer version is
3105 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03003106
3107config BR2_BINUTILS_VERSION_2_24
3108 bool "binutils 2.24 option renamed"
3109 select BR2_LEGACY
3110 select BR2_BINUTILS_VERSION_2_24_X
3111 help
3112 The binutils version option has been renamed to match the
3113 same patchlevel logic used by gcc. The new option is now
3114 BR2_BINUTILS_VERSION_2_24_X.
3115
3116config BR2_BINUTILS_VERSION_2_25
3117 bool "binutils 2.25 option renamed"
3118 select BR2_LEGACY
3119 select BR2_BINUTILS_VERSION_2_25_X
3120 help
3121 The binutils version option has been renamed to match the
3122 same patchlevel logic used by gcc. The new option is now
3123 BR2_BINUTILS_VERSION_2_25_X.
3124
Romain Naour1326e762015-07-14 19:35:14 +02003125config BR2_PACKAGE_PERF
3126 bool "perf option has been renamed"
3127 select BR2_LEGACY
3128 select BR2_LINUX_KERNEL_TOOL_PERF
3129 help
3130 The perf package has been moved as a Linux tools package,
3131 and the option to enable it is now
3132 BR2_LINUX_KERNEL_TOOL_PERF.
3133
Thomas Petazzoni2f845952015-07-11 14:52:53 +02003134config BR2_BINUTILS_VERSION_2_22
3135 bool "binutils 2.22 removed"
3136 select BR2_LEGACY
3137 help
3138 Binutils 2.22 has been removed, using a newer version is
3139 recommended.
3140
Gary Bisson4c0613e2015-05-26 10:19:37 +02003141config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
3142 bool "gpu-viv-bin-mx6q"
3143 select BR2_LEGACY
3144 select BR2_PACKAGE_IMX_GPU_VIV
3145 help
3146 Vivante graphics libraries have been renamed to
3147 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
3148 name.
3149
Matt Weber7742abe2015-06-02 08:28:35 -05003150config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
Matt Weber7742abe2015-06-02 08:28:35 -05003151 bool "libsemanage python bindings removed"
Ricardo Martincoskia1264442018-04-01 02:08:33 -03003152 depends on BR2_PACKAGE_PYTHON
Peter Seiderer758c5c72015-10-07 23:56:49 +02003153 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05003154 help
3155 This option has been removed, since the libsemanage Python
3156 bindings on the target were not useful.
3157
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03003158config BR2_TARGET_UBOOT_NETWORK
3159 bool "U-Boot custom network settings removed"
3160 select BR2_LEGACY
3161 help
3162 U-Boot's custom network settings options have been removed.
3163
3164###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05003165comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003166
Michał Leśniewskie3904a82015-05-19 20:26:30 +02003167config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
3168 bool "jffs2 16kB erasesize NAND flash option renamed"
3169 select BR2_LEGACY
3170 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
3171 help
3172 The JFFS2 NAND flash options now longer include the page
3173 size.
3174
3175config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
3176 bool "jffs2 128kB erasesize NAND flash option renamed"
3177 select BR2_LEGACY
3178 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
3179 help
3180 The JFFS2 NAND flash options now longer include the page
3181 size.
3182
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02003183config BR2_PACKAGE_MONO_20
3184 bool "2.0/3.5 .Net Runtime"
3185 select BR2_LEGACY
3186 help
3187 This option no longer exists, all versions of the .Net
3188 runtime are now installed.
3189
3190config BR2_PACKAGE_MONO_40
3191 bool "4.0 .Net Runtime"
3192 select BR2_LEGACY
3193 help
3194 This option no longer exists, all versions of the .Net
3195 runtime are now installed.
3196
3197config BR2_PACKAGE_MONO_45
3198 bool "4.5 .Net Runtime"
3199 select BR2_LEGACY
3200 help
3201 This option no longer exists, all versions of the .Net
3202 runtime are now installed.
3203
Peter Korsgaardefd49e32015-04-27 22:29:05 +02003204config BR2_CIVETWEB_WITH_LUA
3205 bool "civetweb lua option renamed"
3206 select BR2_LEGACY
3207 select BR2_PACKAGE_CIVETWEB_WITH_LUA
3208 help
3209 civetweb's lua option has been renamed to
3210 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
3211 packages name options.
3212
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02003213config BR2_PACKAGE_TIFF_TIFF2PDF
3214 bool "tiff utility-specific option removed"
3215 select BR2_LEGACY
3216 select BR2_PACKAGE_TIFF_UTILITIES
3217 help
3218 utility-specific options have been removed in favour of
3219 the new option BR2_PACKAGE_TIFF_UTILITIES.
3220
3221config BR2_PACKAGE_TIFF_TIFFCP
3222 bool "tiff utility-specific option removed"
3223 select BR2_LEGACY
3224 select BR2_PACKAGE_TIFF_UTILITIES
3225 help
3226 utility-specific options have been removed in favour of
3227 the new option BR2_PACKAGE_TIFF_UTILITIES.
3228
Thomas Petazzonie7035d42015-04-21 23:36:28 +02003229config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
3230 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003231 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02003232 help
3233 This option has never worked, so it has been removed.
3234
Yann E. MORIN02917962015-03-24 19:54:15 +01003235config BR2_TARGET_GENERIC_PASSWD_DES
3236 bool "Encoding passwords with DES has been removed"
3237 select BR2_LEGACY
3238 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003239 Paswords can now only be encoded with either of md5, sha256 or
3240 sha512. The default is md5, which is stronger that DES (but
3241 still pretty weak).
Yann E. MORIN02917962015-03-24 19:54:15 +01003242
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03003243config BR2_PACKAGE_GTK2_THEME_HICOLOR
3244 bool "hicolor (default theme) is a duplicate"
3245 select BR2_LEGACY
3246 select BR2_PACKAGE_HICOLOR_ICON_THEME
3247 help
3248 The option was just a duplicate of hicolor icon theme.
3249
Mike Williamsfd0e5f62015-03-06 12:17:45 -05003250config BR2_PACKAGE_VALGRIND_PTRCHECK
3251 bool "valgrind's PTRCheck was renamed to SGCheck"
3252 select BR2_LEGACY
3253 select BR2_PACKAGE_VALGRIND_SGCHECK
3254 help
3255 PTRCheck was renamed to SGCheck in valgrind
3256
3257###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003258comment "Legacy options removed in 2015.02"
3259
Pedro Aguilar10900c02015-02-27 06:38:07 +02003260config BR2_PACKAGE_LIBGC
3261 bool "libgc package removed"
3262 select BR2_LEGACY
3263 select BR2_PACKAGE_BDWGC
3264 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003265 libgc has been removed because we have the same package under
3266 a different name, bdwgc.
Pedro Aguilar10900c02015-02-27 06:38:07 +02003267
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01003268config BR2_PACKAGE_WDCTL
3269 bool "util-linux' wdctl option has been renamed"
3270 select BR2_LEGACY
3271 select BR2_PACKAGE_UTIL_LINUX_WDCTL
3272 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003273 util-linux' wdctl option has been renamed to
3274 BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other
3275 options are named.
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01003276
Danomi Manchegoe44edb82015-07-13 22:57:06 -04003277config BR2_PACKAGE_UTIL_LINUX_ARCH
3278 bool "util-linux' arch option has been removed"
3279 select BR2_LEGACY
3280 help
3281 util-linux' arch was dropped in util-linux 2.23, in favor of
3282 the coreutils version.
3283
3284config BR2_PACKAGE_UTIL_LINUX_DDATE
3285 bool "util-linux' ddate option has been removed"
3286 select BR2_LEGACY
3287 help
3288 util-linux' ddate was dropped in util-linux 2.23.
3289
Romain Naour3c476542015-01-18 20:53:08 +01003290config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
3291 bool "rpm's bzip2 payloads option has been removed"
3292 select BR2_LEGACY
3293 select BR2_PACKAGE_BZIP2
3294 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003295 The bzip2 payloads option rely entirely on the dependant
3296 package bzip2. So, you need to select it to enable this
3297 feature.
Romain Naour3c476542015-01-18 20:53:08 +01003298
3299config BR2_PACKAGE_RPM_XZ_PAYLOADS
3300 bool "rpm's xz payloads option has been removed"
3301 select BR2_LEGACY
3302 select BR2_PACKAGE_XZ
3303 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003304 The xz payloads option rely entirely on the dependant package
3305 xz. So, you need to select it to enable this feature.
Romain Naour3c476542015-01-18 20:53:08 +01003306
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03003307config BR2_PACKAGE_M4
3308 bool "m4 target package removed"
3309 select BR2_LEGACY
3310 help
3311 The m4 target package has been removed, it's been
3312 deprecated for some time now.
3313
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03003314config BR2_PACKAGE_FLEX_BINARY
3315 bool "flex binary in target option removed"
3316 select BR2_LEGACY
3317 help
3318 The flex binary in the target option has been removed.
3319 It's been deprecated for some time now and is essentially a
3320 development tool which isn't very useful in the target.
3321
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03003322config BR2_PACKAGE_BISON
3323 bool "bison target package removed"
3324 select BR2_LEGACY
3325 help
3326 The bison target package has been removed, it's been
3327 deprecated for some time now and is essentially a development
3328 tool which isn't very useful in the target.
3329
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03003330config BR2_PACKAGE_GOB2
3331 bool "gob2 target package removed"
3332 select BR2_LEGACY
3333 help
3334 The gob2 target package has been removed, it's been
3335 deprecated for some time now and was essentially useless
3336 without a target toolchain.
3337
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03003338config BR2_PACKAGE_DISTCC
3339 bool "distcc target package removed"
3340 select BR2_LEGACY
3341 help
3342 The distcc target package has been removed, it's been
3343 deprecated for some time now and was essentially useless
3344 without a target toolchain.
3345
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03003346config BR2_PACKAGE_HASERL_VERSION_0_8_X
3347 bool "haserl 0.8.x version removed"
3348 select BR2_LEGACY
3349 help
3350 The 0.8.x version option for haserl has been removed since it
3351 has been deprecated for some time now.
3352 You should be able to use the 0.9.x version without issues.
3353
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03003354config BR2_PACKAGE_STRONGSWAN_TOOLS
3355 bool "strongswan option has been removed"
3356 select BR2_LEGACY
3357 select BR2_PACKAGE_STRONGSWAN_PKI
3358 select BR2_PACKAGE_STRONGSWAN_SCEP
3359 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003360 The tools option has been removed upstream and the different
3361 tools have been split between the pki and scep options, with
3362 others deprecated.
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03003363
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003364config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02003365 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003366 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003367 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02003368 According to the github project page:
3369 https://github.com/pipelka/xbmc-addon-xvdr
3370 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003371
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01003372config BR2_PACKAGE_XBMC_PVR_ADDONS
3373 bool "xbmc options have been renamed"
3374 select BR2_LEGACY
3375 select BR2_PACKAGE_KODI_PVR_ADDONS
3376 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003377 The XBMC media center project was renamed to Kodi
3378 entertainment center
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01003379
Bernd Kuhls35784592014-12-23 18:46:27 +01003380config BR2_PACKAGE_XBMC
3381 bool "xbmc options have been renamed"
3382 select BR2_LEGACY
3383 select BR2_PACKAGE_KODI
3384 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003385 The XBMC media center project was renamed to Kodi
3386 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003387
3388config BR2_PACKAGE_XBMC_ALSA_LIB
3389 bool "xbmc options have been renamed"
3390 select BR2_LEGACY
3391 select BR2_PACKAGE_KODI_ALSA_LIB
3392 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003393 The XBMC media center project was renamed to Kodi
3394 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003395
3396config BR2_PACKAGE_XBMC_AVAHI
3397 bool "xbmc options have been renamed"
3398 select BR2_LEGACY
3399 select BR2_PACKAGE_KODI_AVAHI
3400 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003401 The XBMC media center project was renamed to Kodi
3402 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003403
3404config BR2_PACKAGE_XBMC_DBUS
3405 bool "xbmc options have been renamed"
3406 select BR2_LEGACY
3407 select BR2_PACKAGE_KODI_DBUS
3408 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003409 The XBMC media center project was renamed to Kodi
3410 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003411
3412config BR2_PACKAGE_XBMC_LIBBLURAY
3413 bool "xbmc options have been renamed"
3414 select BR2_LEGACY
3415 select BR2_PACKAGE_KODI_LIBBLURAY
3416 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003417 The XBMC media center project was renamed to Kodi
3418 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003419
3420config BR2_PACKAGE_XBMC_GOOM
3421 bool "xbmc options have been renamed"
3422 select BR2_LEGACY
3423 select BR2_PACKAGE_KODI_GOOM
3424 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003425 The XBMC media center project was renamed to Kodi
3426 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003427
3428config BR2_PACKAGE_XBMC_RSXS
3429 bool "xbmc options have been renamed"
3430 select BR2_LEGACY
3431 select BR2_PACKAGE_KODI_RSXS
3432 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003433 The XBMC media center project was renamed to Kodi
3434 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003435
3436config BR2_PACKAGE_XBMC_LIBCEC
3437 bool "xbmc options have been renamed"
3438 select BR2_LEGACY
3439 select BR2_PACKAGE_KODI_LIBCEC
3440 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003441 The XBMC media center project was renamed to Kodi
3442 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003443
3444config BR2_PACKAGE_XBMC_LIBMICROHTTPD
3445 bool "xbmc options have been renamed"
3446 select BR2_LEGACY
3447 select BR2_PACKAGE_KODI_LIBMICROHTTPD
3448 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003449 The XBMC media center project was renamed to Kodi
3450 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003451
3452config BR2_PACKAGE_XBMC_LIBNFS
3453 bool "xbmc options have been renamed"
3454 select BR2_LEGACY
3455 select BR2_PACKAGE_KODI_LIBNFS
3456 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003457 The XBMC media center project was renamed to Kodi
3458 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003459
3460config BR2_PACKAGE_XBMC_RTMPDUMP
3461 bool "xbmc options have been renamed"
3462 select BR2_LEGACY
3463 select BR2_PACKAGE_KODI_RTMPDUMP
3464 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003465 The XBMC media center project was renamed to Kodi
3466 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003467
3468config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
3469 bool "xbmc options have been renamed"
3470 select BR2_LEGACY
3471 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
3472 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003473 The XBMC media center project was renamed to Kodi
3474 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003475
3476config BR2_PACKAGE_XBMC_LIBSMBCLIENT
3477 bool "xbmc options have been renamed"
3478 select BR2_LEGACY
3479 select BR2_PACKAGE_KODI_LIBSMBCLIENT
3480 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003481 The XBMC media center project was renamed to Kodi
3482 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003483
3484config BR2_PACKAGE_XBMC_LIBTHEORA
3485 bool "xbmc options have been renamed"
3486 select BR2_LEGACY
3487 select BR2_PACKAGE_KODI_LIBTHEORA
3488 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003489 The XBMC media center project was renamed to Kodi
3490 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003491
3492config BR2_PACKAGE_XBMC_LIBUSB
3493 bool "xbmc options have been renamed"
3494 select BR2_LEGACY
3495 select BR2_PACKAGE_KODI_LIBUSB
3496 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003497 The XBMC media center project was renamed to Kodi
3498 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003499
3500config BR2_PACKAGE_XBMC_LIBVA
3501 bool "xbmc options have been renamed"
3502 select BR2_LEGACY
3503 select BR2_PACKAGE_KODI_LIBVA
3504 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003505 The XBMC media center project was renamed to Kodi
3506 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003507
3508config BR2_PACKAGE_XBMC_WAVPACK
3509 bool "xbmc options have been renamed"
3510 select BR2_LEGACY
3511 select BR2_PACKAGE_KODI_WAVPACK
3512 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003513 The XBMC media center project was renamed to Kodi
3514 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003515
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003516config BR2_PREFER_STATIC_LIB
3517 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01003518 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003519 help
3520 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
3521 highlights the fact that the option no longer "prefers"
3522 static libraries, but "enforces" static libraries (i.e
3523 shared libraries are completely unused).
3524
Samuel Martina44b1c12014-12-14 17:24:24 +01003525 Take care of updating the type of libraries you want under the
3526 "Build options" menu.
3527
Bernd Kuhls35784592014-12-23 18:46:27 +01003528###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02003529comment "Legacy options removed in 2014.11"
3530
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003531config BR2_x86_generic
3532 bool "x86 generic variant has been removed"
3533 select BR2_LEGACY
3534 help
3535 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02003536 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003537
Andreas Larsson40e18f22014-10-30 09:29:36 +01003538config BR2_GCC_VERSION_4_4_X
3539 bool "gcc 4.4.x has been removed"
3540 select BR2_LEGACY
3541 help
3542 The 4.4.x version of gcc has been removed. Use a newer
3543 version instead.
3544
Andreas Larsson43b78e72014-10-30 09:29:35 +01003545config BR2_sparc_sparchfleon
3546 bool "sparchfleon CPU has been removed"
3547 select BR2_LEGACY
3548 help
3549 The sparchfleon CPU was only supported in a patched gcc 4.4
3550 version. Its support has been removed in favor of the leon3
3551 CPU starting from gcc 4.8.x.
3552
3553config BR2_sparc_sparchfleonv8
3554 bool "sparchfleonv8 CPU has been removed"
3555 select BR2_LEGACY
3556 help
3557 The sparchfleonv8 CPU was only supported in a patched gcc
3558 4.4 version. Its support has been removed in favor of the
3559 leon3 CPU starting from gcc 4.8.x.
3560
3561config BR2_sparc_sparcsfleon
3562 bool "sparcsfleon CPU has been removed"
3563 select BR2_LEGACY
3564 help
3565 The sparcsfleon CPU was only supported in a patched gcc 4.4
3566 version. Its support has been removed in favor of the leon3
3567 CPU starting from gcc 4.8.x.
3568
3569config BR2_sparc_sparcsfleonv8
3570 bool "sparcsfleonv8 CPU has been removed"
3571 select BR2_LEGACY
3572 help
3573 The sparcsfleonv8 CPU was only supported in a patched gcc
3574 4.4 version. Its support has been removed in favor of the
3575 leon3 CPU starting from gcc 4.8.x.
3576
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02003577config BR2_PACKAGE_XLIB_LIBPCIACCESS
3578 bool "xlib-libpciaccess option has been renamed"
3579 depends on BR2_PACKAGE_XORG7
3580 select BR2_LEGACY
3581 select BR2_PACKAGE_LIBPCIACCESS
3582 help
3583 libpciaccess neither depends on X11 nor Xlib. Thus the
3584 package has been renamed BR2_PACKAGE_LIBPCIACCESS
3585
Yann E. MORINb581bba2014-09-21 20:38:13 +02003586config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
3587 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003588 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02003589 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
3590 help
3591 The Xceive xc5000 option now also handles older firmwares from
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003592 Xceive (the xc4000 series), as well as new firmwares (the
3593 xc5000c) from Cresta, who bought Xceive.
Yann E. MORINb581bba2014-09-21 20:38:13 +02003594
Yann E. MORINdac546e2014-09-21 20:38:12 +02003595config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3596 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003597 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02003598 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3599 help
3600 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3601 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3602 to better account for the fact that a T5 variant exists.
3603
Yann E. MORIN120136e2014-09-21 20:38:09 +02003604config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
3605 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003606 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003607 help
3608 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
3609 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
3610 select it in:
3611 Target packages -> Hardware handling ->
3612 Firmware -> linux-firmware -> WiFi firmware ->
3613 iwlwifi 3160/726x revision to use (revision 7)
3614
3615config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
3616 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003617 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003618 help
3619 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
3620 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
3621 select it in:
3622 Target packages -> Hardware handling ->
3623 Firmware -> linux-firmware -> WiFi firmware ->
3624 iwlwifi 3160/726x revision to use (revision 8)
3625
3626###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003627comment "Legacy options removed in 2014.08"
3628
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003629config BR2_PACKAGE_LIBELF
3630 bool "libelf has been removed"
3631 select BR2_PACKAGE_ELFUTILS
3632 select BR2_LEGACY
3633 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003634 The libelf package provided an old version of the libelf
3635 library and is deprecated. The libelf library is now provided
3636 by the elfutils package.
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003637
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003638config BR2_KERNEL_HEADERS_3_8
3639 bool "kernel headers version 3.8.x are no longer supported"
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003640 select BR2_LEGACY
3641 help
3642 Version 3.8.x of the Linux kernel headers have been deprecated
3643 for more than four buildroot releases and are now removed.
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003644
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02003645config BR2_PACKAGE_GETTEXT_TOOLS
3646 bool "support for gettext-tools on target has been removed"
3647 select BR2_LEGACY
3648 help
3649 The option to install the gettext utilities on the target
3650 has been removed. This is not necessary as Buildroot is not
3651 designed to provide a full development environment on the
3652 target. gettext tools should be used on the build machine
3653 instead.
3654
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003655config BR2_PACKAGE_PROCPS
3656 bool "procps has been replaced by procps-ng"
3657 select BR2_PACKAGE_PROCPS_NG
3658 select BR2_LEGACY
3659 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003660 The procps package has been replaced by the equivalent
3661 procps-ng.
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003662
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02003663config BR2_BINUTILS_VERSION_2_20_1
3664 bool "binutils 2.20.1 has been removed"
3665 select BR2_LEGACY
3666 help
3667 The 2.20.1 version of binutils has been removed. Use a newer
3668 version instead.
3669
3670config BR2_BINUTILS_VERSION_2_21
3671 bool "binutils 2.21 has been removed"
3672 select BR2_LEGACY
3673 help
3674 The 2.21 version of binutils has been removed. Use a newer
3675 version instead.
3676
3677config BR2_BINUTILS_VERSION_2_23_1
3678 bool "binutils 2.23.1 has been removed"
3679 select BR2_LEGACY
3680 help
3681 The 2.23.1 version of binutils has been removed. Use a newer
3682 version instead.
3683
Thomas Petazzoni506b9642014-07-01 20:03:03 +02003684config BR2_UCLIBC_VERSION_0_9_32
3685 bool "uclibc 0.9.32 has been removed"
3686 select BR2_LEGACY
3687 help
3688 The 0.9.32 version of uClibc has been removed. Use a newer
3689 version instead.
3690
Thomas Petazzonid10e0802014-07-01 20:03:06 +02003691config BR2_GCC_VERSION_4_3_X
3692 bool "gcc 4.3.x has been removed"
3693 select BR2_LEGACY
3694 help
3695 The 4.3.x version of gcc has been removed. Use a newer
3696 version instead.
3697
3698config BR2_GCC_VERSION_4_6_X
3699 bool "gcc 4.6.x has been removed"
3700 select BR2_LEGACY
3701 help
3702 The 4.6.x version of gcc has been removed. Use a newer
3703 version instead.
3704
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003705config BR2_GDB_VERSION_7_4
3706 bool "gdb 7.4 has been removed"
3707 select BR2_LEGACY
3708 help
3709 The 7.4 version of gdb has been removed. Use a newer version
3710 instead.
3711
3712config BR2_GDB_VERSION_7_5
3713 bool "gdb 7.5 has been removed"
3714 select BR2_LEGACY
3715 help
3716 The 7.5 version of gdb has been removed. Use a newer version
3717 instead.
3718
Thomas Petazzonib18dca02014-07-01 20:03:09 +02003719config BR2_BUSYBOX_VERSION_1_19_X
3720 bool "busybox version selection has been removed"
3721 select BR2_LEGACY
3722 help
3723 The possibility of selecting the Busybox version has been
3724 removed. Use the latest version provided by the Busybox
3725 package instead.
3726
3727config BR2_BUSYBOX_VERSION_1_20_X
3728 bool "busybox version selection has been removed"
3729 select BR2_LEGACY
3730 help
3731 The possibility of selecting the Busybox version has been
3732 removed. Use the latest version provided by the Busybox
3733 package instead.
3734
3735config BR2_BUSYBOX_VERSION_1_21_X
3736 bool "busybox version selection has been removed"
3737 select BR2_LEGACY
3738 help
3739 The possibility of selecting the Busybox version has been
3740 removed. Use the latest version provided by the Busybox
3741 package instead.
3742
Ezequiel García07ac0452014-07-05 18:07:40 -03003743config BR2_PACKAGE_LIBV4L_DECODE_TM6000
3744 bool "decode_tm6000"
3745 select BR2_PACKAGE_LIBV4L_UTILS
3746 select BR2_LEGACY
3747 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003748 This libv4l option has been deprecated and replaced by a
3749 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003750
3751config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
3752 bool "ir-keytable"
3753 select BR2_PACKAGE_LIBV4L_UTILS
3754 select BR2_LEGACY
3755 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003756 This libv4l option has been deprecated and replaced by a
3757 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003758
3759config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
3760 bool "v4l2-compliance"
3761 select BR2_PACKAGE_LIBV4L_UTILS
3762 select BR2_LEGACY
3763 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003764 This libv4l option has been deprecated and replaced by a
3765 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003766
3767config BR2_PACKAGE_LIBV4L_V4L2_CTL
3768 bool "v4l2-ctl"
3769 select BR2_PACKAGE_LIBV4L_UTILS
3770 select BR2_LEGACY
3771 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003772 This libv4l option has been deprecated and replaced by a
3773 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003774
3775config BR2_PACKAGE_LIBV4L_V4L2_DBG
3776 bool "v4l2-dbg"
3777 select BR2_PACKAGE_LIBV4L_UTILS
3778 select BR2_LEGACY
3779 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003780 This libv4l option has been deprecated and replaced by a
3781 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003782
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003783###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003784comment "Legacy options removed in 2014.05"
3785
Peter Seiderer4990a382014-04-23 00:12:23 +02003786config BR2_PACKAGE_EVTEST_CAPTURE
3787 bool "evtest-capture support removed (dropped since evtest 1.31)"
3788 select BR2_LEGACY
3789 help
3790 Support for evtest-capture has been removed (dropped from
3791 evtest package since version 1.31), use evemu package
3792 instead.
3793
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003794config BR2_KERNEL_HEADERS_3_6
3795 bool "kernel headers version 3.6.x are no longer supported"
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003796 select BR2_LEGACY
3797 help
3798 Version 3.6.x of the Linux kernel headers have been deprecated
3799 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003800
3801config BR2_KERNEL_HEADERS_3_7
3802 bool "kernel headers version 3.7.x are no longer supported"
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003803 select BR2_LEGACY
3804 help
3805 Version 3.7.x of the Linux kernel headers have been deprecated
3806 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003807
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02003808config BR2_PACKAGE_VALA
3809 bool "vala target package has been removed"
3810 select BR2_LEGACY
3811 help
3812 The 'vala' target package has been removed since it has been
3813 deprecated for more than four buildroot releases.
3814 Note: the host vala package still exists.
3815
Yann E. MORINd6a37912014-04-07 21:58:03 +02003816config BR2_TARGET_TZ_ZONELIST
3817 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
3818
3819config BR2_PACKAGE_TZDATA_ZONELIST
3820 string "tzdata: the timezone list option has been renamed"
3821 help
3822 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003823 BR2_TARGET_TZ_ZONELIST, and moved to the "System
3824 configuration" menu. You'll need to select BR2_TARGET_TZ_INFO.
Yann E. MORINd6a37912014-04-07 21:58:03 +02003825
3826config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
3827 bool
3828 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
3829 select BR2_LEGACY
3830
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003831config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
3832 bool "Lua command-line editing none has been renamed"
3833 select BR2_LEGACY
3834 help
3835 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003836 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to
3837 select it in the corresponding choice.
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003838
3839config BR2_PACKAGE_LUA_INTERPRETER_READLINE
3840 bool "Lua command-line editing using readline has been renamed"
3841 select BR2_LEGACY
3842 help
3843 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
3844 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
3845 it in the corresponding choice.
3846
3847config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
3848 bool "Lua command-line editing using linenoise has been renamed"
3849 select BR2_LEGACY
3850 help
3851 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
3852 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
3853 it in the corresponding choice.
3854
Yann E. MORIN365ae612014-03-28 01:00:24 +01003855config BR2_PACKAGE_DVB_APPS_UTILS
3856 bool "dvb-apps utilities now built by default"
3857 select BR2_LEGACY
3858 help
3859 The dvb-apps utilities are now always built when the dvb-apps
3860 package is selected.
3861
Yann E. MORIN971e3312014-03-01 15:52:56 +01003862config BR2_KERNEL_HEADERS_SNAP
3863 bool "Local Linux snapshot support removed"
3864 select BR2_LEGACY
3865 help
3866 Support for using a custom snapshot to install the Linux
3867 kernel headers has been removed.
3868
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003869config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
3870 bool "/dev management by udev removed"
3871 select BR2_LEGACY
3872 help
3873 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003874 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003875
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003876 Therefore, if you are not using 'systemd' as init system, you
3877 must choose 'Dynamic using eudev' in the '/dev management'
3878 menu to get the same behaviour as in your old configuration.
3879
3880 If you are using 'systemd', its internal implementation of
3881 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003882
3883 You must also check the packages depending on 'udev' are still
3884 selected.
3885
3886config BR2_PACKAGE_UDEV
3887 bool "udev is now a virtual package"
3888 select BR2_LEGACY
3889 select BR2_PACKAGE_HAS_UDEV
3890 help
3891 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003892 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003893
3894 Your old configuration refers to packages depending on 'udev',
3895 either for build or at runtime.
3896
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003897 Check that a 'udev' provider is selected. If you are not using
3898 'systemd' as init system, 'eudev' should be selected, which is
3899 the case if '/dev management' is set to 'Dynamic using eudev'.
3900
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003901 If you are using 'systemd', its internal implementation of
3902 'udev' is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003903
3904config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003905 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003906 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003907 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
3908 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003909 help
3910 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003911 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003912
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003913 If you are not using 'systemd' as init system, udev rules
3914 generation will be handled by 'eudev'. Check that
3915 '/dev management' is set to 'Dynamic using eudev' to get
3916 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003917
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003918 If you are using 'systemd', it internal implementation of
3919 'udev' will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003920
3921config BR2_PACKAGE_UDEV_ALL_EXTRAS
3922 bool "udev extras removed"
3923 select BR2_LEGACY
3924 help
3925 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003926 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003927
3928 The option to enable the extra features of 'udev' (gudev, ...)
3929 has been removed. These features are automatically enabled in
3930 the 'udev' providers if the dependencies are selected. For
3931 example, selecting 'libglib2' will trigger the build of gudev.
3932
Bernd Kuhls5562be12014-03-01 16:41:10 +01003933config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
3934 bool "xlib-libpthread-stubs option has been renamed"
3935 depends on BR2_PACKAGE_XORG7
3936 select BR2_LEGACY
3937 select BR2_PACKAGE_LIBPTHREAD_STUBS
3938 help
3939 The pthread stubs neither depend on X11 nor Xlib. Thus the
3940 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
3941
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003942###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01003943comment "Legacy options removed in 2014.02"
3944
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003945config BR2_sh2
3946 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003947 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003948 help
3949 Due to an inexistent user base and generally poor Linux
3950 support, the support for the SH2 architecture was removed.
3951
3952config BR2_sh3
3953 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003954 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003955 help
3956 Due to an inexistent user base and generally poor Linux
3957 support, the support for the SH3 architecture was removed.
3958
3959config BR2_sh3eb
3960 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003961 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003962 help
3963 Due to an inexistent user base and generally poor Linux
3964 support, the support for the SH3eb architecture was removed.
3965
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003966config BR2_KERNEL_HEADERS_3_1
3967 bool "kernel headers version 3.1.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003968 select BR2_LEGACY
3969 help
3970 Version 3.1.x of the Linux kernel headers have been deprecated
3971 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003972
3973config BR2_KERNEL_HEADERS_3_3
3974 bool "kernel headers version 3.3.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003975 select BR2_LEGACY
3976 help
3977 Version 3.3.x of the Linux kernel headers have been deprecated
3978 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003979
3980config BR2_KERNEL_HEADERS_3_5
3981 bool "kernel headers version 3.5.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003982 select BR2_LEGACY
3983 help
3984 Version 3.5.x of the Linux kernel headers have been deprecated
3985 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003986
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003987config BR2_GDB_VERSION_7_2
3988 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003989 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003990 select BR2_LEGACY
3991 help
3992 Version 7.2.x of gdb has been deprecated for more than four
3993 buildroot releases and is now removed. As an alternative, gdb
3994 7.5.x has been automatically selected in your configuration.
3995
3996config BR2_GDB_VERSION_7_3
3997 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003998 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003999 select BR2_LEGACY
4000 help
4001 Version 7.3.x of gdb has been deprecated for more than four
4002 buildroot releases and is now removed. As an alternative, gdb
4003 7.5.x has been automatically selected in your configuration.
4004
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01004005config BR2_PACKAGE_CCACHE
4006 bool "ccache target package has been removed"
4007 select BR2_LEGACY
4008 help
4009 The 'ccache' target package has been removed since it has been
4010 deprecated for more than four buildroot releases.
4011 Note: using ccache for speeding up builds is still supported.
4012
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01004013config BR2_HAVE_DOCUMENTATION
4014 bool "support for documentation on target has been removed"
4015 select BR2_LEGACY
4016 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004017 Support for documentation on target has been removed since it
4018 has been deprecated for more than four buildroot releases.
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01004019
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01004020config BR2_PACKAGE_AUTOMAKE
4021 bool "automake target package has been removed"
4022 select BR2_LEGACY
4023 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004024 The 'automake' target package has been removed since it has
4025 been deprecated for more than four buildroot releases.
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01004026 Note: the host automake still exists.
4027
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01004028config BR2_PACKAGE_AUTOCONF
4029 bool "autoconf target package has been removed"
4030 select BR2_LEGACY
4031 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004032 The 'autoconf' target package has been removed since it has
4033 been deprecated for more than four buildroot releases.
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01004034 Note: the host autoconf still exists.
4035
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01004036config BR2_PACKAGE_XSTROKE
4037 bool "xstroke has been removed"
4038 select BR2_LEGACY
4039 help
4040 The 'xstroke' package has been removed since it has been
4041 deprecated for more than four buildroot releases.
4042
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01004043config BR2_PACKAGE_LZMA
4044 bool "lzma target package has been removed"
4045 select BR2_LEGACY
4046 help
4047 The 'lzma' target package has been removed since it has been
4048 deprecated for more than four buildroot releases.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004049 Note: generating lzma-compressed rootfs images is still
4050 supported.
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01004051
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01004052config BR2_PACKAGE_TTCP
4053 bool "ttcp has been removed"
4054 select BR2_LEGACY
4055 help
4056 The 'ttcp' package has been removed since it has been
4057 deprecated for more than four buildroot releases.
4058
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00004059config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01004060 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00004061 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01004062 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00004063 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004064 The 'libnfc-llcp' package has been removed since upstream
4065 renamed to 'libllcp'. We have added a new package for
4066 'libllcp' and bumped the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00004067
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00004068config BR2_PACKAGE_MYSQL_CLIENT
4069 bool "MySQL client renamed to MySQL"
4070 select BR2_LEGACY
4071 select BR2_PACKAGE_MYSQL
4072 help
4073 The option has been renamed BR2_PACKAGE_MYSQL
4074
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01004075config BR2_PACKAGE_SQUASHFS3
4076 bool "squashfs3 has been removed"
4077 select BR2_LEGACY
4078 select BR2_PACKAGE_SQUASHFS
4079 help
4080 The 'squashfs3' package has been removed since it has been
4081 deprecated for more than four buildroot releases. Package
4082 'squashfs' (4) has been selected automatically as replacement.
4083
4084config BR2_TARGET_ROOTFS_SQUASHFS3
4085 bool "squashfs3 rootfs support has been removed"
4086 select BR2_LEGACY
4087 help
4088 Together with the removal of the squashfs3 package, support
4089 for squashfs3 root filesystems has been removed too. Squashfs
4090 root filesystems will automatically use squashfs4 now.
4091
Arnaud Aujon560fe852013-12-15 20:23:12 +01004092config BR2_PACKAGE_NETKITBASE
4093 bool "netkitbase has been removed"
4094 select BR2_LEGACY
4095 help
4096 The 'netkitbase' package has been removed since it has been
4097 deprecated since 2012.11. This package provided 'inetd'
4098 which is replaced by 'xinet' and 'ping' which is replaced by
4099 'busybox' or 'fping'.
4100
4101config BR2_PACKAGE_NETKITTELNET
4102 bool "netkittelnet has been removed"
4103 select BR2_LEGACY
4104 help
4105 The 'netkittelnet' package has been removed since it has
4106 been deprecated since 2012.11. 'busybox' provides a telnet
4107 client and should be used instead.
4108
Francois Perrad63058f82014-01-11 16:42:09 +01004109config BR2_PACKAGE_LUASQL
4110 bool "luasql has been replaced by luasql-sqlite3"
4111 select BR2_PACKAGE_LUASQL_SQLITE3
4112 select BR2_LEGACY
4113 help
4114 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
4115
Francois Perrada6c53472014-01-11 16:42:08 +01004116config BR2_PACKAGE_LUACJSON
4117 bool "luacjson has been replaced by lua-cjson"
4118 select BR2_PACKAGE_LUA_CJSON
4119 select BR2_LEGACY
4120 help
4121 The option has been renamed BR2_PACKAGE_LUA_CJSON.
4122
Arnaud Aujon560fe852013-12-15 20:23:12 +01004123###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004124comment "Legacy options removed in 2013.11"
4125
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01004126config BR2_PACKAGE_LVM2_DMSETUP_ONLY
4127 bool "lvm2's 'dmsetup only' option removed"
4128 select BR2_LEGACY
4129 help
4130 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
4131 led to problems with other packages that need the full lvm2
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004132 suite. Therefore, the option has been replaced with the
4133 positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01004134
4135# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
4136# in order to automatically propagate old configs
4137
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01004138config BR2_PACKAGE_QT_JAVASCRIPTCORE
4139 bool "qt javascriptcore option removed"
4140 select BR2_LEGACY
4141 help
4142 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
4143 force the activation or disabling of the JIT compiler in the
4144 Qt Javascript interpreter. However, the JIT compiler is not
4145 available for all architectures, so forcing its activation
4146 does not always work. Moreover, Qt knows by itself for which
4147 architectures JIT support is possible, and will
4148 automatically enable it if possible.
4149
4150 Therefore, this option was in fact useless, and causing
4151 build problems when enabled on architectures for which the
4152 JIT support was not available. It has been removed, and
4153 there is no replacement: Qt will enable JIT at compile time
4154 when possible.
4155
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004156config BR2_PACKAGE_MODULE_INIT_TOOLS
4157 bool "module-init-tools replaced by kmod"
4158 select BR2_PACKAGE_KMOD
4159 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01004160 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004161 help
4162 The 'module-init-tools' package has been removed, since it
4163 has been depracated upstream and replaced by 'kmod'.
4164
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02004165config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
4166 string "u-boot: the git repository URL option has been renamed"
4167 help
4168 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
4169 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
4170
4171config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
4172 bool
4173 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
4174 select BR2_LEGACY
4175
4176# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
4177# boot/uboot/Config.in
4178
4179config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
4180 string "u-boot: the git repository version option has been renamed"
4181 help
4182 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
4183 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
4184
4185config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
4186 bool
4187 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
4188 select BR2_LEGACY
4189
4190# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
4191# boot/uboot/Config.in
4192
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02004193config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
4194 string "linux: the git repository URL option has been renamed"
4195 help
4196 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
4197 been renamed to
4198 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
4199
4200config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
4201 bool
4202 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
4203 select BR2_LEGACY
4204
4205# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
4206# linux/Config.in
4207
4208config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
4209 string "linux: the git repository version option has been renamed"
4210 help
4211 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
4212 been renamed to
4213 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
4214
4215config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
4216 bool
4217 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
4218 select BR2_LEGACY
4219
4220# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
4221# linux/Config.in
4222
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004223###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02004224comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03004225
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02004226config BR2_ARM_OABI
4227 bool "ARM OABI support has been removed"
4228 select BR2_LEGACY
4229 help
4230 The support for the ARM OABI was deprecated since a while,
4231 and has been removed completely from Buildroot. It is also
4232 deprecated in upstream gcc, since gcc 4.7. People should
4233 switch to EABI instead, which should not be a problem as
4234 long as you don't have pre-built OABI binaries in your
4235 system that you can't recompile.
4236
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03004237config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
4238 bool "dosfstools dosfsck renamed to fsck.fat"
4239 select BR2_LEGACY
4240 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
4241 help
4242 dosfsck was renamed upstream to fsck.fat for consistency.
4243
4244config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
4245 bool "dosfstools dosfslabel renamed to fatlabel"
4246 select BR2_LEGACY
4247 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
4248 help
4249 doslabel was renamed upstream to fatlabel for consistency.
4250
4251config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
4252 bool "dosfstools mkdosfs renamed to mkfs.fat"
4253 select BR2_LEGACY
4254 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
4255 help
4256 mkdosfs was renamed upstream to mkfs.fat for consistency.
4257
Thomas Petazzonie21db002013-06-30 21:28:57 +02004258config BR2_ELF2FLT
4259 bool "the elf2flt option has been renamed"
4260 select BR2_LEGACY
4261 help
4262 The BR2_ELF2FLT option has been renamed to
4263 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
4264 the package infrastructure.
4265
Thomas Petazzonid8060052013-07-16 10:03:17 +02004266config BR2_VFP_FLOAT
4267 bool "the ARM VFP floating point option has been renamed"
4268 select BR2_LEGACY
4269 help
4270 Due to a major refactoring of the floating-point handling of
4271 the ARM architecture support, the BR2_VFP_FLOAT option has
4272 been replaced with a choice of options that allows to select
4273 between various VFP versions/capabilities.
4274
Samuel Martinba8f82b2013-08-30 06:08:59 +02004275config BR2_PACKAGE_GCC_TARGET
4276 bool "gcc on the target filesystem has been removed"
4277 select BR2_LEGACY
4278 help
4279 The support for gcc in the target filesystem was deprecated
4280 since a while, and has been removed completely from Buildroot.
4281 See Buildroot's documentation for more explanations.
4282
4283config BR2_HAVE_DEVFILES
4284 bool "development files in target filesystem has been removed"
4285 select BR2_LEGACY
4286 help
4287 The installation of the development files in the target
4288 filesystem was deprecated since a while, and has been removed
4289 completely from Buildroot.
4290 See Buildroot's documentation for more explanations.
4291
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00004292endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02004293
4294endif # !SKIP_LEGACY