blob: f2991814473a3d1d3e88298581cfa16f23ab06e5 [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
Guo Ren55c64222019-05-31 14:38:59 +0800149config BR2_CSKY_DSP
150 bool "C-SKY DSP support removed"
151 select BR2_LEGACY
152 help
153 C-SKY DSP instruction support for ck810 / ck807 was removed,
Guo Rend2658ca2019-05-31 14:38:59 +0800154 as it was no longer supported in C-SKY gcc. Perhaps the VDSP
155 instructions should be used instead, using the BR2_CSKY_VDSP
156 option.
Guo Ren55c64222019-05-31 14:38:59 +0800157
Adam Duskett8efabd12019-05-02 11:16:16 -0400158config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_COMPOSITOR
159 bool "compositor moved to gst1-plugins-base"
160 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_COMPOSITOR
161 select BR2_LEGACY
162 help
163 The gst1-plugins-bad compositor plugin has moved
164 to gst1-plugins-base.
165
166config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Adam Duskett8efabd12019-05-02 11:16:16 -0400167 bool "gst-plugins-bad IQA option was removed"
Arnout Vandecappelle (Essensium/Mind)950e0812019-05-05 23:55:11 +0200168 select BR2_LEGACY
Adam Duskett8efabd12019-05-02 11:16:16 -0400169 help
170 The gst1-plugins-bad IQA option was removed.
171
172config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_OPENCV
173 bool "gst-plugins-bad opencv option was removed"
174 select BR2_LEGACY
175 help
176 The gst1-plugins-bad opencv option was removed because
177 buildroot does not have the opencv_contrib package which
178 is required for the bgsegm module which gst1-plugins-bad
179 now requires along with opencv3.
180
181config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_STEREO
182 bool "stereo was merged into audiofx in gst1-plugins-good"
183 select BR2_LEGACY
184 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_AUDIOFX
185 help
186 The gst1-plugins-bad stereo plugin has merged with the
187 gst1-plugins-base audiofx plugin.
188
189config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VCD
190 bool "gst-plugins-bad vcd plugin was removed."
191 select BR2_LEGACY
192 help
193 The gst1-plugins-bad vcd plugin was removed.
194
Francois Perrad1f33ec42019-04-03 15:06:09 +0200195config BR2_PACKAGE_LUNIT
196 bool "lunit package removed"
197 select BR2_LEGACY
198 select BR2_PACKAGE_LUA_LUNITX
199 help
200 The lunit package was removed in favor of its fork lunitx,
201 which supports all versions of Lua.
202
Louis-Paul Cordier93be7882019-03-23 13:28:18 +0100203config BR2_PACKAGE_FFMPEG_FFSERVER
204 bool "ffmpeg ffserver removed"
205 select BR2_LEGACY
206 help
207 On July 10th, 2016, ffserver program has been dropped.
208
Francois Perradb643a752019-03-06 16:24:26 +0100209config BR2_PACKAGE_LIBUMP
210 bool "libump package removed"
211 select BR2_LEGACY
212 help
213 The libump package was removed, it was only used as a
214 dependency of sunxi-mali, which itself was removed.
215
Francois Perrad732066a2019-03-06 16:24:25 +0100216config BR2_PACKAGE_SUNXI_MALI
217 bool "sunxi-mali package removed"
218 select BR2_LEGACY
219 select BR2_PACKAGE_SUNXI_MALI_MAINLINE
220 help
221 The sunxi-mali package was removed, as the
222 sunxi-mali-mainline package replaces it for mainline
223 kernels on Allwinner platforms.
224
Romain Naour9a057592019-03-13 00:08:39 +0100225config BR2_BINUTILS_VERSION_2_29_X
226 bool "binutils version 2.29 support removed"
227 select BR2_LEGACY
228 help
229 Support for binutils version 2.29 has been removed. The
230 current default version (2.31 or later) has been selected
231 instead.
232
Romain Naourdc5d9512019-03-13 00:08:38 +0100233config BR2_BINUTILS_VERSION_2_28_X
234 bool "binutils version 2.28 support removed"
235 select BR2_LEGACY
236 help
237 Support for binutils version 2.28 has been removed. The
238 current default version (2.31 or later) has been selected
239 instead.
240
Fabrice Fontainec8421562019-03-05 23:01:04 +0100241config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK
242 bool "gst-plugins-bad apexsink option removed"
243 select BR2_LEGACY
244 help
245 The gst-plugins-bad apexsink option was removed.
246
Francois Perrad297613f2018-12-02 11:25:06 +0100247comment "Legacy options removed in 2019.02"
248
Peter Korsgaard5a8bc802019-02-06 15:10:58 +0100249config BR2_PACKAGE_QT
250 bool "qt package removed"
251 select BR2_LEGACY
252 help
253 The qt package was removed.
254
Peter Korsgaarde228a9f2019-02-06 15:10:52 +0100255config BR2_PACKAGE_QTUIO
256 bool "qtuio package removed"
257 select BR2_LEGACY
258 help
259 The qtuio package was removed.
260
Peter Korsgaard5de7c032019-02-06 15:10:51 +0100261config BR2_PACKAGE_PINENTRY_QT4
262 bool "pinentry-qt4 option removed"
263 select BR2_LEGACY
264 help
265 The pinentry-qt4 option was removed.
266
Peter Korsgaard3f821fc2019-02-06 15:10:50 +0100267config BR2_PACKAGE_POPPLER_QT
268 bool "poppler qt option removed"
269 select BR2_LEGACY
270 help
271 The poppler qt option was removed.
272
Peter Korsgaard3a3fdae2019-02-06 15:10:49 +0100273config BR2_PACKAGE_OPENCV3_WITH_QT
274 bool "opencv3 qt backend option removed"
275 select BR2_LEGACY
276 help
277 The opencv3 qt backend option was removed.
278
Peter Korsgaard882ab1c2019-02-06 15:10:48 +0100279config BR2_PACKAGE_OPENCV_WITH_QT
280 bool "opencv qt backend option removed"
281 select BR2_LEGACY
282 help
283 The opencv qt backend option was removed.
284
Peter Korsgaardef842792019-02-06 15:10:47 +0100285config BR2_PACKAGE_AMD_CATALYST_CCCLE
286 bool "catalyst control center option removed"
287 select BR2_LEGACY
288 help
289 The AMD Catalyst Control Center option was removed.
290
Peter Korsgaard3a56bc52019-02-06 15:10:46 +0100291config BR2_PACKAGE_SDL_QTOPIA
292 bool "sdl qtopia video driver option removed"
293 select BR2_LEGACY
294 help
295 The SDL QTopia video driver option was removed.
296
Peter Korsgaard90bbfe52019-02-06 15:10:44 +0100297config BR2_PACKAGE_PYTHON_PYQT
298 bool "python-pyqt package removed"
299 select BR2_LEGACY
300 help
301 The python-pyqt package was removed. Consider python-pyqt5
302 instead.
303
Peter Korsgaardfcd9c852019-02-06 15:10:43 +0100304config BR2_PACKAGE_GNURADIO_QTGUI
305 bool "gnuradio gr-qtgui option removed"
306 select BR2_LEGACY
307 help
308 The gr-qtgui option was removed.
309
Peter Korsgaarde0d540b2019-02-05 21:03:09 +0100310config BR2_PACKAGE_LUACRYPTO
311 bool "luacrypto package removed"
312 select BR2_LEGACY
313 help
314 The luacrypto package was removed. Consider luaossl instead.
315
Peter Korsgaard0478bea2019-02-05 20:01:09 +0100316config BR2_PACKAGE_TN5250
317 bool "tn5250 package removed"
318 select BR2_LEGACY
319 help
320 The tn5250 package was removed.
321
Fabrice Fontaine428ed392019-01-13 18:43:16 +0100322config BR2_PACKAGE_BOOST_SIGNALS
323 bool "Boost signals removed"
324 select BR2_LEGACY
325 help
326 Its removal was announced in boost 1.68 and its deprecation
327 was announced in 1.54. Users are encouraged to use Signals2
328 instead.
329
Thomas Petazzoni7883e552019-01-21 14:51:10 +0100330config BR2_PACKAGE_FFTW_PRECISION_SINGLE
331 bool "single"
332 select BR2_LEGACY
333 select BR2_PACKAGE_FFTW_SINGLE
334 help
335 This option has been removed in favor of
336 BR2_PACKAGE_FFTW_SINGLE.
337
338config BR2_PACKAGE_FFTW_PRECISION_DOUBLE
339 bool "double"
340 select BR2_LEGACY
341 select BR2_PACKAGE_FFTW_DOUBLE
342 help
343 This option has been removed in favor of
344 BR2_PACKAGE_FFTW_DOUBLE.
345
346config BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE
347 bool "long double"
348 depends on !(BR2_TOOLCHAIN_BUILDROOT_UCLIBC && \
349 (BR2_arm || BR2_mips || BR2_mipsel))
350 select BR2_LEGACY
351 select BR2_PACKAGE_FFTW_LONG_DOUBLE
352 help
353 This option has been removed in favor of
354 BR2_PACKAGE_FFTW_LONG_DOUBLE.
355
356config BR2_PACKAGE_FFTW_PRECISION_QUAD
357 bool "quad"
358 depends on (BR2_i386 || BR2_x86_64) && BR2_USE_WCHAR
359 select BR2_LEGACY
360 select BR2_PACKAGE_FFTW_QUAD
361 help
362 This option has been removed in favor of
363 BR2_PACKAGE_FFTW_QUAD.
364
Francois Perrad297613f2018-12-02 11:25:06 +0100365config BR2_PACKAGE_LUA_5_2
366 bool "Lua 5.2.x version removed"
367 select BR2_LEGACY
368 select BR2_PACKAGE_LUA_5_3
369 help
370 The Lua 5.2.x version was removed.
371
Matt Weberbf362602018-12-05 20:06:29 -0600372config BR2_TARGET_GENERIC_PASSWD_MD5
373 bool "target passwd md5 format support has been removed"
374 select BR2_LEGACY
375 help
376 The default has been moved to SHA256 and all C libraries
377 now support that method by default
378
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200379comment "Legacy options removed in 2018.11"
380
Matt Weber070b1832018-09-20 16:54:24 -0500381config BR2_TARGET_XLOADER
382 bool "xloader has been removed"
383 select BR2_LEGACY
384 help
385 The package has been removed as u-boot SPL provides
386 similar functionality
387
Matt Weber5e8790d2018-10-15 11:46:44 -0500388config BR2_PACKAGE_TIDSP_BINARIES
389 bool "tidsp-binaries package removed"
390 select BR2_LEGACY
391 help
392 The tidsp-binaries package was removed.
393
Matt Webere8eb7f52018-10-15 11:46:43 -0500394config BR2_PACKAGE_DSP_TOOLS
395 bool "dsp-tools package removed"
396 select BR2_LEGACY
397 help
398 The dsp-tools package was removed.
399
Matt Weber91542902018-10-15 11:46:42 -0500400config BR2_PACKAGE_GST_DSP
401 bool "gst-dsp package removed"
402 select BR2_LEGACY
403 help
404 The gst-dsp package was removed.
405
Fabrice Fontaine2c3c7c42018-09-30 16:02:06 +0200406config BR2_PACKAGE_BOOTUTILS
407 bool "bootutils package removed"
408 select BR2_LEGACY
409 help
410 The bootutils package was removed.
411
Romain Naouraddcc392018-09-30 14:55:46 +0200412config BR2_PACKAGE_EXPEDITE
413 bool "expedite package has been removed"
414 select BR2_LEGACY
415 help
416 expedite is not actively maintained anymore.
417 https://sourceforge.net/p/enlightenment/mailman/message/36428571
418
Bernd Kuhls3d3235f2018-09-10 18:30:00 +0200419config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT
420 bool "mesa3d opengl texture float option removed"
421 select BR2_LEGACY
422 help
423 mesa3d now unconditionally enables floating-point textures,
424 as the corresponding patent has expired.
425
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200426config BR2_KERNEL_HEADERS_4_10
427 bool "kernel headers version 4.10.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200428 select BR2_LEGACY
429 help
430 Version 4.10.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200431 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200432
433config BR2_KERNEL_HEADERS_4_11
434 bool "kernel headers version 4.11.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200435 select BR2_LEGACY
436 help
437 Version 4.11.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200438 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200439
440config BR2_KERNEL_HEADERS_4_12
441 bool "kernel headers version 4.12.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200442 select BR2_LEGACY
443 help
444 Version 4.12.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200445 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200446
447config BR2_KERNEL_HEADERS_4_13
448 bool "kernel headers version 4.13.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200449 select BR2_LEGACY
450 help
451 Version 4.13.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200452 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200453
454config BR2_KERNEL_HEADERS_4_15
455 bool "kernel headers version 4.15.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200456 select BR2_LEGACY
457 help
458 Version 4.15.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200459 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200460
Yann E. MORINd220ce62018-10-04 22:00:30 +0200461config BR2_KERNEL_HEADERS_4_17
462 bool "kernel headers version 4.17.x are no longer supported"
463 select BR2_LEGACY
464 help
465 Version 4.17.x of the Linux kernel headers are no longer
466 maintained upstream and are now removed.
467
Baruch Siach00d63a12018-11-16 08:40:43 +0200468config BR2_PACKAGE_LIBNFTNL_XML
469 bool "libnftl no longer supports XML output"
470 select BR2_LEGACY
471 help
472 libnftnl removed integration with libmxml.
473
Peter Korsgaardebee2c62019-01-02 14:52:45 +0100474config BR2_KERNEL_HEADERS_3_2
475 bool "kernel headers version 3.2.x are no longer supported"
476 select BR2_LEGACY
477 help
478 Version 3.2.x of the Linux kernel headers are no longer
479 maintained upstream and are now removed.
480
481config BR2_KERNEL_HEADERS_4_1
482 bool "kernel headers version 4.1.x are no longer supported"
483 select BR2_LEGACY
484 help
485 Version 4.1.x of the Linux kernel headers are no longer
486 maintained upstream and are now removed.
487
488config BR2_KERNEL_HEADERS_4_16
489 bool "kernel headers version 4.16.x are no longer supported"
490 select BR2_LEGACY
491 help
492 Version 4.16.x of the Linux kernel headers are no longer
493 maintained upstream and are now removed.
494
495config BR2_KERNEL_HEADERS_4_18
496 bool "kernel headers version 4.18.x are no longer supported"
497 select BR2_LEGACY
498 help
499 Version 4.18.x of the Linux kernel headers are no longer
500 maintained upstream and are now removed.
501
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200502###############################################################################
Romain Naour54a2e7a2018-06-24 15:53:09 +0200503comment "Legacy options removed in 2018.08"
504
Christian Stewartde336582018-11-27 00:56:55 -0800505config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT
506 bool "docker-engine static client option renamed"
507 select BR2_LEGACY
508 select BR2_PACKAGE_DOCKER_CLI_STATIC
509 help
510 BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT has been renamed to
511 BR2_PACKAGE_DOCKER_CLI_STATIC, following the package split of
512 docker-engine and docker-cli.
513
Bernd Kuhlsf9063022018-07-21 16:16:48 +0200514config BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_19
515 bool "Modular X.org server was updated to version 1.20.0"
516 select BR2_LEGACY
517 select BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_20
518 help
519 Modular X.org server was updated to version 1.20.0
520
Bernd Kuhls14c52532018-07-21 16:16:44 +0200521config BR2_PACKAGE_XPROTO_APPLEWMPROTO
522 bool "xproto-applewmproto package replaced by xorgproto"
523 select BR2_LEGACY
524 select BR2_PACKAGE_XORGPROTO
525 help
526 The xproto-applewmproto package has been replaced by the
527 xorgproto package, which combines all xproto_* packages.
528
529config BR2_PACKAGE_XPROTO_BIGREQSPROTO
530 bool "xproto-bigreqsproto package replaced by xorgproto"
531 select BR2_LEGACY
532 select BR2_PACKAGE_XORGPROTO
533 help
534 The xproto-bigreqsproto package has been replaced by the
535 xorgproto package, which combines all xproto_* packages.
536
537config BR2_PACKAGE_XPROTO_COMPOSITEPROTO
538 bool "xproto-compositeproto package replaced by xorgproto"
539 select BR2_LEGACY
540 select BR2_PACKAGE_XORGPROTO
541 help
542 The xproto-compositeproto package has been replaced by the
543 xorgproto package, which combines all xproto_* packages.
544
545config BR2_PACKAGE_XPROTO_DAMAGEPROTO
546 bool "xproto-dameproto package replaced by xorgproto"
547 select BR2_LEGACY
548 select BR2_PACKAGE_XORGPROTO
549 help
550 The xproto-dameproto package has been replaced by the
551 xorgproto package, which combines all xproto_* packages.
552
553config BR2_PACKAGE_XPROTO_DMXPROTO
554 bool "xproto-dmxproto package replaced by xorgproto"
555 select BR2_LEGACY
556 select BR2_PACKAGE_XORGPROTO
557 help
558 The xproto-dmxproto package has been replaced by the
559 xorgproto package, which combines all xproto_* packages.
560
561config BR2_PACKAGE_XPROTO_DRI2PROTO
562 bool "xproto-dri2proto package replaced by xorgproto"
563 select BR2_LEGACY
564 select BR2_PACKAGE_XORGPROTO
565 help
566 The xproto-dri2proto package has been replaced by the
567 xorgproto package, which combines all xproto_* packages.
568
569config BR2_PACKAGE_XPROTO_DRI3PROTO
570 bool "xproto-dri3proto package replaced by xorgproto"
571 select BR2_LEGACY
572 select BR2_PACKAGE_XORGPROTO
573 help
574 The xproto-dri3proto package has been replaced by the
575 xorgproto package, which combines all xproto_* packages.
576
577config BR2_PACKAGE_XPROTO_FIXESPROTO
578 bool "xproto-fixesproto package replaced by xorgproto"
579 select BR2_LEGACY
580 select BR2_PACKAGE_XORGPROTO
581 help
582 The xproto-fixesproto package has been replaced by the
583 xorgproto package, which combines all xproto_* packages.
584
585config BR2_PACKAGE_XPROTO_FONTCACHEPROTO
586 bool "xproto-fontcacheproto package replaced by xorgproto"
587 select BR2_LEGACY
588 select BR2_PACKAGE_XORGPROTO
589 help
590 The xproto-fontcacheproto package has been replaced by the
591 xorgproto package, which combines all xproto_* packages.
592
593config BR2_PACKAGE_XPROTO_FONTSPROTO
594 bool "xproto-fontsproto package replaced by xorgproto"
595 select BR2_LEGACY
596 select BR2_PACKAGE_XORGPROTO
597 help
598 The xproto-fontsproto package has been replaced by the
599 xorgproto package, which combines all xproto_* packages.
600
601config BR2_PACKAGE_XPROTO_GLPROTO
602 bool "xproto-glproto package replaced by xorgproto"
603 select BR2_LEGACY
604 select BR2_PACKAGE_XORGPROTO
605 help
606 The xproto-glproto package has been replaced by the
607 xorgproto package, which combines all xproto_* packages.
608
609config BR2_PACKAGE_XPROTO_INPUTPROTO
610 bool "xproto-inputproto package replaced by xorgproto"
611 select BR2_LEGACY
612 select BR2_PACKAGE_XORGPROTO
613 help
614 The xproto-inputproto package has been replaced by the
615 xorgproto package, which combines all xproto_* packages.
616
617config BR2_PACKAGE_XPROTO_KBPROTO
618 bool "xproto-kbproto package replaced by xorgproto"
619 select BR2_LEGACY
620 select BR2_PACKAGE_XORGPROTO
621 help
622 The xproto-kbproto package has been replaced by the
623 xorgproto package, which combines all xproto_* packages.
624
625config BR2_PACKAGE_XPROTO_PRESENTPROTO
626 bool "xproto-presentproto package replaced by xorgproto"
627 select BR2_LEGACY
628 select BR2_PACKAGE_XORGPROTO
629 help
630 The xproto-presentproto package has been replaced by the
631 xorgproto package, which combines all xproto_* packages.
632
633config BR2_PACKAGE_XPROTO_RANDRPROTO
634 bool "xproto-randrproto package replaced by xorgproto"
635 select BR2_LEGACY
636 select BR2_PACKAGE_XORGPROTO
637 help
638 The xproto-randrproto package has been replaced by the
639 xorgproto package, which combines all xproto_* packages.
640
641config BR2_PACKAGE_XPROTO_RECORDPROTO
642 bool "xproto-recordproto package replaced by xorgproto"
643 select BR2_LEGACY
644 select BR2_PACKAGE_XORGPROTO
645 help
646 The xproto-recordproto package has been replaced by the
647 xorgproto package, which combines all xproto_* packages.
648
649config BR2_PACKAGE_XPROTO_RENDERPROTO
650 bool "xproto-renderproto package replaced by xorgproto"
651 select BR2_LEGACY
652 select BR2_PACKAGE_XORGPROTO
653 help
654 The xproto-renderproto package has been replaced by the
655 xorgproto package, which combines all xproto_* packages.
656
657config BR2_PACKAGE_XPROTO_RESOURCEPROTO
658 bool "xproto-resourceproto package replaced by xorgproto"
659 select BR2_LEGACY
660 select BR2_PACKAGE_XORGPROTO
661 help
662 The xproto-resourceproto package has been replaced by the
663 xorgproto package, which combines all xproto_* packages.
664
665config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
666 bool "xproto-scrnsaverprot package replaced by xorgproto"
667 select BR2_LEGACY
668 select BR2_PACKAGE_XORGPROTO
669 help
670 The xproto-scrnsaverprot package has been replaced by the
671 xorgproto package, which combines all xproto_* packages.
672
673config BR2_PACKAGE_XPROTO_VIDEOPROTO
674 bool "xproto-videoproto package replaced by xorgproto"
675 select BR2_LEGACY
676 select BR2_PACKAGE_XORGPROTO
677 help
678 The xproto-videoproto package has been replaced by the
679 xorgproto package, which combines all xproto_* packages.
680
681config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO
682 bool "xproto-windowswmproto package replaced by xorgproto"
683 select BR2_LEGACY
684 select BR2_PACKAGE_XORGPROTO
685 help
686 The xproto-windowswmproto package has been replaced by the
687 xorgproto package, which combines all xproto_* packages.
688
689config BR2_PACKAGE_XPROTO_XCMISCPROTO
690 bool "xproto-xcmiscproto package replaced by xorgproto"
691 select BR2_LEGACY
692 select BR2_PACKAGE_XORGPROTO
693 help
694 The xproto-xcmiscproto package has been replaced by the
695 xorgproto package, which combines all xproto_* packages.
696
697config BR2_PACKAGE_XPROTO_XEXTPROTO
698 bool "xproto-xextproto package replaced by xorgproto"
699 select BR2_LEGACY
700 select BR2_PACKAGE_XORGPROTO
701 help
702 The xproto-xextproto package has been replaced by the
703 xorgproto package, which combines all xproto_* packages.
704
705config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
706 bool "xproto-xf86bigfontproto package replaced by xorgproto"
707 select BR2_LEGACY
708 select BR2_PACKAGE_XORGPROTO
709 help
710 The xproto-xf86bigfontproto package has been replaced by the
711 xorgproto package, which combines all xproto_* packages.
712
713config BR2_PACKAGE_XPROTO_XF86DGAPROTO
714 bool "xproto-xf86dgaproto package replaced by xorgproto"
715 select BR2_LEGACY
716 select BR2_PACKAGE_XORGPROTO
717 help
718 The xproto-xf86dgaproto package has been replaced by the
719 xorgproto package, which combines all xproto_* packages.
720
721config BR2_PACKAGE_XPROTO_XF86DRIPROTO
722 bool "xproto-xf86driproto package replaced by xorgproto"
723 select BR2_LEGACY
724 select BR2_PACKAGE_XORGPROTO
725 help
726 The xproto-xf86driproto package has been replaced by the
727 xorgproto package, which combines all xproto_* packages.
728
729config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
730 bool "xproto-xf86vidmodeproto package replaced by xorgproto"
731 select BR2_LEGACY
732 select BR2_PACKAGE_XORGPROTO
733 help
734 The xproto-xf86vidmodeproto package has been replaced by the
735 xorgproto package, which combines all xproto_* packages.
736
737config BR2_PACKAGE_XPROTO_XINERAMAPROTO
738 bool "xproto-xineramaproto package replaced by xorgproto"
739 select BR2_LEGACY
740 select BR2_PACKAGE_XORGPROTO
741 help
742 The xproto-xineramaproto package has been replaced by the
743 xorgproto package, which combines all xproto_* packages.
744
745config BR2_PACKAGE_XPROTO_XPROTO
746 bool "xproto-xproto package replaced by xorgproto"
747 select BR2_LEGACY
748 select BR2_PACKAGE_XORGPROTO
749 help
750 The xproto-xproto package has been replaced by the
751 xorgproto package, which combines all xproto_* packages.
752
753config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
754 bool "xproto-xproxymanagementprotocol package replaced by xorgproto"
755 select BR2_LEGACY
756 select BR2_PACKAGE_XORGPROTO
757 help
758 The xproto-xproxymanagementprotocol package has been
759 replaced by the xorgproto package, which combines all
760 xproto_* packages.
761
Adam Duskett3f2aef52018-06-24 00:35:22 +0200762config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL
763 bool "gst1-plugins-bad opengl option moved to gst1-plugins-base"
764 select BR2_LEGACY
765 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
766 help
767 The opengl option has been moved from gst1-plugins-bad to
768 gst1-plugins-base.
769
770config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2
771 bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base"
772 select BR2_LEGACY
773 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2
774 help
775 The gles2 option has been moved from gst1-plugins-bad to
776 gst1-plugins-base.
777
778config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX
779 bool "gst1-plugins-bad glx option moved to gst1-plugins-base"
780 select BR2_LEGACY
781 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX
782 help
783 The glx option has been moved from gst1-plugins-bad to
784 gst1-plugins-base.
785
786config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL
787 bool "gst1-plugins-bad egl option moved to gst1-plugins-base"
788 select BR2_LEGACY
789 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL
790 help
791 The egl option has been moved from gst1-plugins-bad to
792 gst1-plugins-base.
793
794config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11
795 bool "gst1-plugins-bad x11 option moved to gst1-plugins-base"
796 select BR2_LEGACY
797 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11
798 help
799 The x11 option has been moved from gst1-plugins-bad to
800 gst1-plugins-base.
801
802config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND
803 bool "gst1-plugins-bad wayland option moved to gst1-plugins-base"
804 select BR2_LEGACY
805 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND
806 help
807 The wayland option has been moved from gst1-plugins-bad to
808 gst1-plugins-base.
809
810config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX
811 bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base"
812 select BR2_LEGACY
813 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX
814 help
815 The dispmanx option has been moved from gst1-plugins-mad to
816 gst1-plugins-base.
817
818config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
819 bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base"
820 select BR2_LEGACY
821 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER
822 help
823 The audiomixer option has been moved from gst1-plugins-bad to
824 gst1-plugins-base.
825
826config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
827 bool "gst1-plugins-ugly lame option moved to gst1-plugins-good"
828 select BR2_LEGACY
829 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
830 help
831 The lame option has been moved from gst1-plugins-ugly to
832 gst1-plugins-good.
833
834config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
835 bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good"
836 select BR2_LEGACY
837 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
838 help
839 The mpg123 option has been moved from gst1-plugins-ugly to
840 gst1-plugins-good.
841
Romain Naourbae35c82018-06-24 15:53:10 +0200842config BR2_GDB_VERSION_7_11
843 bool "gdb 7.11 has been removed"
844 select BR2_LEGACY
845 help
846 The 7.11 version of gdb has been removed. Use a newer version
847 instead.
848
Romain Naour54a2e7a2018-06-24 15:53:09 +0200849config BR2_GDB_VERSION_7_10
850 bool "gdb 7.10 has been removed"
851 select BR2_LEGACY
852 help
853 The 7.10 version of gdb has been removed. Use a newer version
854 instead.
855
856###############################################################################
Bernd Kuhls9657e962018-04-01 15:58:08 +0200857comment "Legacy options removed in 2018.05"
858
Petr Vorel8553b392018-05-13 21:07:36 +0200859config BR2_PACKAGE_MEDIAART_BACKEND_NONE
860 bool "libmediaart none backend option renamed"
861 select BR2_LEGACY
862 help
863 For consistency reasons, the option
864 BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to
865 BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
866
867config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
868 bool "libmediaart gdk-pixbuf backend option renamed"
869 select BR2_LEGACY
870 help
871 For consistency reasons, the option
872 BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to
873 BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF
874
875config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
876 bool "libmediaart qt backend option renamed"
877 select BR2_LEGACY
878 help
879 For consistency reasons, the option
880 BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to
881 BR2_PACKAGE_LIBMEDIAART_BACKEND_QT
882
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200883# Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from
884# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200885config BR2_PACKAGE_TI_SGX_AM335X
886 bool "ti-sgx-km AM335X option renamed"
887 select BR2_LEGACY
888 help
889 For consistency reasons, the option
890 BR2_PACKAGE_TI_SGX_AM335X has been renamed to
891 BR2_PACKAGE_TI_SGX_KM_AM335X.
892
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200893# Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from
894# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200895config BR2_PACKAGE_TI_SGX_AM437X
896 bool "ti-sgx-km AM437X option renamed"
897 select BR2_LEGACY
898 help
899 For consistency reasons, the option
900 BR2_PACKAGE_TI_SGX_AM437X has been renamed to
901 BR2_PACKAGE_TI_SGX_KM_AM437X.
902
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200903# Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from
904# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200905config BR2_PACKAGE_TI_SGX_AM4430
906 bool "ti-sgx-km AM4430 option renamed"
907 select BR2_LEGACY
908 help
909 For consistency reasons, the option
910 BR2_PACKAGE_TI_SGX_AM4430 has been renamed to
911 BR2_PACKAGE_TI_SGX_KM_AM4430.
912
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200913# Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from
914# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200915config BR2_PACKAGE_TI_SGX_AM5430
916 bool "ti-sgx-km AM5430 option renamed"
917 select BR2_LEGACY
918 help
919 For consistency reasons, the option
920 BR2_PACKAGE_TI_SGX_AM5430 has been renamed to
921 BR2_PACKAGE_TI_SGX_KM_AM5430.
922
Thomas Petazzonia79df202018-05-13 21:07:34 +0200923config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
924 bool "janus-gateway audio-bridge option renamed"
925 select BR2_LEGACY
926 select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
927 help
928 For consistency reasons, the janus-gateway option
929 BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
930 BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
931
932config BR2_PACKAGE_JANUS_ECHO_TEST
933 bool "janus-gateway echo-test option renamed"
934 select BR2_LEGACY
935 select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
936 help
937 For consistency reasons, the janus-gateway option
938 BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
939 BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
940
941config BR2_PACKAGE_JANUS_RECORDPLAY
942 bool "janus-gateway recordplay option renamed"
943 select BR2_LEGACY
944 select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
945 help
946 For consistency reasons, the janus-gateway option
947 BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
948 BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
949
950config BR2_PACKAGE_JANUS_SIP_GATEWAY
951 bool "janus-gateway sip-gateway option renamed"
952 select BR2_LEGACY
953 select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
954 help
955 For consistency reasons, the janus-gateway option
956 BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
957 BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
958
959config BR2_PACKAGE_JANUS_STREAMING
960 bool "janus-gateway streaming option renamed"
961 select BR2_LEGACY
962 select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
963 help
964 For consistency reasons, the janus-gateway option
965 BR2_PACKAGE_JANUS_STREAMING has been renamed to
966 BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
967
968config BR2_PACKAGE_JANUS_TEXT_ROOM
969 bool "janus-gateway text-room option renamed"
970 select BR2_LEGACY
971 select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
972 help
973 For consistency reasons, the janus-gateway option
974 BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
975 BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
976
977config BR2_PACKAGE_JANUS_VIDEO_CALL
978 bool "janus-gateway video-call option renamed"
979 select BR2_LEGACY
980 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
981 help
982 For consistency reasons, the janus-gateway option
983 BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
984 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
985
986config BR2_PACKAGE_JANUS_VIDEO_ROOM
987 bool "janus-gateway video-room option renamed"
988 select BR2_LEGACY
989 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
990 help
991 For consistency reasons, the janus-gateway option
992 BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
993 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
994
995config BR2_PACKAGE_JANUS_MQTT
996 bool "janus-gateway mqtt option renamed"
997 select BR2_LEGACY
998 select BR2_PACKAGE_JANUS_GATEWAY_MQTT
999 help
1000 For consistency reasons, the janus-gateway option
1001 BR2_PACKAGE_JANUS_MQTT has been renamed to
1002 BR2_PACKAGE_JANUS_GATEWAY_MQTT.
1003
1004config BR2_PACKAGE_JANUS_RABBITMQ
1005 bool "janus-gateway rabbitmq option renamed"
1006 select BR2_LEGACY
1007 select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
1008 help
1009 For consistency reasons, the janus-gateway option
1010 BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
1011 BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
1012
1013config BR2_PACKAGE_JANUS_REST
1014 bool "janus-gateway rest option renamed"
1015 select BR2_LEGACY
1016 select BR2_PACKAGE_JANUS_GATEWAY_REST
1017 help
1018 For consistency reasons, the janus-gateway option
1019 BR2_PACKAGE_JANUS_REST has been renamed to
1020 BR2_PACKAGE_JANUS_GATEWAY_REST.
1021
1022config BR2_PACKAGE_JANUS_UNIX_SOCKETS
1023 bool "janus-gateway unix-sockets option renamed"
1024 select BR2_LEGACY
1025 select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
1026 help
1027 For consistency reasons, the janus-gateway option
1028 BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
1029 BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
1030
1031config BR2_PACKAGE_JANUS_WEBSOCKETS
1032 bool "janus-gateway websockets option renamed"
1033 select BR2_LEGACY
1034 select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
1035 help
1036 For consistency reasons, the janus-gateway option
1037 BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
1038 BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
1039
Thomas Petazzoni9d2c5c22018-05-13 21:07:33 +02001040config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
1041 bool "ipsec-tools security context disable option renamed"
1042 select BR2_LEGACY
1043 help
1044 For consistency reasons, the option
1045 BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
1046 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
1047
1048config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
1049 bool "ipsec-tools SELinux security context enable option renamed"
1050 select BR2_LEGACY
1051 help
1052 For consistency reasons, the option
1053 BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
1054 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
1055
1056config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
1057 bool "ipsec-tools kernel security context enable option renamed"
1058 select BR2_LEGACY
1059 help
1060 For consistency reasons, the option
1061 BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
1062 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
1063
Thomas Petazzonidc4e4aa2018-05-13 21:07:32 +02001064config BR2_PACKAGE_LIBTFDI_CPP
1065 bool "libftdi C++ bindings option renamed"
1066 select BR2_LEGACY
1067 select BR2_PACKAGE_LIBFTDI_CPP
1068 help
1069 The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
1070 BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
1071 name.
1072
Thomas Petazzoni94c14622018-05-13 21:07:31 +02001073config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
1074 bool "jquery-ui-themes option black-tie renamed"
1075 select BR2_LEGACY
1076 help
1077 For consistency reasons, the jquery-ui-themes option for the
1078 black-tie theme has been renamed from
1079 BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
1080 BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
1081
1082config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
1083 bool "jquery-ui-themes option blitzer renamed"
1084 select BR2_LEGACY
1085 help
1086 For consistency reasons, the jquery-ui-themes option for the
1087 blitzer theme has been renamed from
1088 BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
1089 BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
1090
1091config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
1092 bool "jquery-ui-themes option cupertino renamed"
1093 select BR2_LEGACY
1094 help
1095 For consistency reasons, the jquery-ui-themes option for the
1096 cupertino theme has been renamed from
1097 BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
1098 BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
1099
1100config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
1101 bool "jquery-ui-themes option dark-hive renamed"
1102 select BR2_LEGACY
1103 help
1104 For consistency reasons, the jquery-ui-themes option for the
1105 dark-hive theme has been renamed from
1106 BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
1107 BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
1108
1109config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
1110 bool "jquery-ui-themes option dot-luv renamed"
1111 select BR2_LEGACY
1112 help
1113 For consistency reasons, the jquery-ui-themes option for the
1114 dot-luv theme has been renamed from
1115 BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
1116 BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
1117
1118config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
1119 bool "jquery-ui-themes option eggplant renamed"
1120 select BR2_LEGACY
1121 help
1122 For consistency reasons, the jquery-ui-themes option for the
1123 eggplant theme has been renamed from
1124 BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
1125 BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
1126
1127config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
1128 bool "jquery-ui-themes option excite-bike renamed"
1129 select BR2_LEGACY
1130 help
1131 For consistency reasons, the jquery-ui-themes option for the
1132 excite-bike theme has been renamed from
1133 BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
1134 BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
1135
1136config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
1137 bool "jquery-ui-themes option flick renamed"
1138 select BR2_LEGACY
1139 help
1140 For consistency reasons, the jquery-ui-themes option for the
1141 flick theme has been renamed from
1142 BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
1143 BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
1144
1145config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
1146 bool "jquery-ui-themes option hot-sneaks renamed"
1147 select BR2_LEGACY
1148 help
1149 For consistency reasons, the jquery-ui-themes option for the
1150 hot-sneaks theme has been renamed from
1151 BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
1152 BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
1153
1154config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
1155 bool "jquery-ui-themes option humanity renamed"
1156 select BR2_LEGACY
1157 help
1158 For consistency reasons, the jquery-ui-themes option for the
1159 humanity theme has been renamed from
1160 BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
1161 BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
1162
1163config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
1164 bool "jquery-ui-themes option le-frog renamed"
1165 select BR2_LEGACY
1166 help
1167 For consistency reasons, the jquery-ui-themes option for the
1168 le-frog theme has been renamed from
1169 BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
1170 BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
1171
1172config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
1173 bool "jquery-ui-themes option mint-choc renamed"
1174 select BR2_LEGACY
1175 help
1176 For consistency reasons, the jquery-ui-themes option for the
1177 mint-choc theme has been renamed from
1178 BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
1179 BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
1180
1181config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
1182 bool "jquery-ui-themes option overcast renamed"
1183 select BR2_LEGACY
1184 help
1185 For consistency reasons, the jquery-ui-themes option for the
1186 overcast theme has been renamed from
1187 BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
1188 BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
1189
1190config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
1191 bool "jquery-ui-themes option pepper-grinder renamed"
1192 select BR2_LEGACY
1193 help
1194 For consistency reasons, the jquery-ui-themes option for the
1195 pepper-grinder theme has been renamed from
1196 BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
1197 BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
1198
1199config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
1200 bool "jquery-ui-themes option redmond renamed"
1201 select BR2_LEGACY
1202 help
1203 For consistency reasons, the jquery-ui-themes option for the
1204 redmond theme has been renamed from
1205 BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
1206 BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
1207
1208config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
1209 bool "jquery-ui-themes option smoothness renamed"
1210 select BR2_LEGACY
1211 help
1212 For consistency reasons, the jquery-ui-themes option for the
1213 smoothness theme has been renamed from
1214 BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
1215 BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
1216
1217config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
1218 bool "jquery-ui-themes option south-street renamed"
1219 select BR2_LEGACY
1220 help
1221 For consistency reasons, the jquery-ui-themes option for the
1222 south-street theme has been renamed from
1223 BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
1224 BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
1225
1226config BR2_PACKAGE_JQUERY_UI_THEME_START
1227 bool "jquery-ui-themes option start renamed"
1228 select BR2_LEGACY
1229 help
1230 For consistency reasons, the jquery-ui-themes option for the
1231 start theme has been renamed from
1232 BR2_PACKAGE_JQUERY_UI_THEME_START to
1233 BR2_PACKAGE_JQUERY_UI_THEMES_START.
1234
1235config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
1236 bool "jquery-ui-themes option sunny renamed"
1237 select BR2_LEGACY
1238 help
1239 For consistency reasons, the jquery-ui-themes option for the
1240 sunny theme has been renamed from
1241 BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
1242 BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
1243
1244config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
1245 bool "jquery-ui-themes option swanky-purse renamed"
1246 select BR2_LEGACY
1247 help
1248 For consistency reasons, the jquery-ui-themes option for the
1249 swanky-purse theme has been renamed from
1250 BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
1251 BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
1252
1253config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
1254 bool "jquery-ui-themes option trontastic renamed"
1255 select BR2_LEGACY
1256 help
1257 For consistency reasons, the jquery-ui-themes option for the
1258 trontastic theme has been renamed from
1259 BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
1260 BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
1261
1262config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
1263 bool "jquery-ui-themes option ui-darkness renamed"
1264 select BR2_LEGACY
1265 help
1266 For consistency reasons, the jquery-ui-themes option for the
1267 ui-darkness theme has been renamed from
1268 BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
1269 BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
1270
1271config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
1272 bool "jquery-ui-themes option ui-lightness renamed"
1273 select BR2_LEGACY
1274 help
1275 For consistency reasons, the jquery-ui-themes option for the
1276 ui-lightness theme has been renamed from
1277 BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
1278 BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
1279
1280config BR2_PACKAGE_JQUERY_UI_THEME_VADER
1281 bool "jquery-ui-themes option vader renamed"
1282 select BR2_LEGACY
1283 help
1284 For consistency reasons, the jquery-ui-themes option for the
1285 vader theme has been renamed from
1286 BR2_PACKAGE_JQUERY_UI_THEME_VADER to
1287 BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
1288
Thomas Petazzonib2b874f2018-05-13 21:07:30 +02001289config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
1290 bool "bluez5-utils health plugin option renamed"
1291 select BR2_LEGACY
1292 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
1293 help
1294 For consistency reasons, the option
1295 BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
1296 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
1297
1298config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
1299 bool "bluez5-utils midi plugin option renamed"
1300 select BR2_LEGACY
1301 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
1302 help
1303 For consistency reasons, the option
1304 BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
1305 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
1306
1307config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
1308 bool "bluez5-utils nfc plugin option renamed"
1309 select BR2_LEGACY
1310 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
1311 help
1312 For consistency reasons, the option
1313 BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
1314 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
1315
1316config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
1317 bool "bluez5-utils sap plugin option renamed"
1318 select BR2_LEGACY
1319 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
1320 help
1321 For consistency reasons, the option
1322 BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
1323 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
1324
1325config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
1326 bool "bluez5-utils sixaxis plugin option renamed"
1327 select BR2_LEGACY
1328 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
1329 help
1330 For consistency reasons, the option
1331 BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
1332 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
1333
Bernd Kuhls79a678d2018-05-02 08:05:40 +02001334config BR2_PACKAGE_TRANSMISSION_REMOTE
1335 bool "transmission remote tool option removed"
1336 select BR2_LEGACY
1337 select BR2_PACKAGE_TRANSMISSION_DAEMON
1338 help
1339 Upstream does not provide a separate configure option for
1340 the tool transmission-remote, it is built when the
1341 transmission daemon has been enabled. Therefore, Buildroot
1342 has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
1343 for you.
1344
Fabrice Fontainef6421152018-05-07 00:09:01 +02001345config BR2_PACKAGE_LIBKCAPI_APPS
1346 bool "libkcapi test applications removed"
1347 select BR2_LEGACY
1348 select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
1349 select BR2_PACKAGE_LIBKCAPI_RNGAPP
1350 select BR2_PACKAGE_LIBKCAPI_SPEED
1351 select BR2_PACKAGE_LIBKCAPI_TEST
1352 help
1353 Test applications (hasher, rng read, speed-test, test) now
1354 have their own configuration options in the libkcapi menu.
1355
Bernd Kuhlsdacb1762018-05-01 09:10:17 +02001356config BR2_PACKAGE_MPLAYER
1357 bool "mplayer package removed"
1358 select BR2_LEGACY
1359 help
1360 The mplayer package was removed.
1361
1362config BR2_PACKAGE_MPLAYER_MPLAYER
1363 bool "mplayer package removed"
1364 select BR2_LEGACY
1365 help
1366 The mplayer package was removed.
1367
1368config BR2_PACKAGE_MPLAYER_MENCODER
1369 bool "mplayer package removed"
1370 select BR2_LEGACY
1371 help
1372 The mplayer package was removed.
1373
Bernd Kuhls3f449112018-05-01 09:10:14 +02001374config BR2_PACKAGE_LIBPLAYER_MPLAYER
1375 bool "mplayer support in libplayer removed"
1376 select BR2_LEGACY
1377 help
1378 The mplayer package was removed.
1379
Thomas Petazzoni46444ba2018-04-04 18:00:09 +02001380config BR2_PACKAGE_IQVLINUX
1381 bool "iqvlinux package removed"
1382 select BR2_LEGACY
1383 help
1384 This package contained a kernel module from Intel, which
1385 could only be used together with Intel userspace tools
1386 provided under NDA, which also come with the same kernel
1387 module. The copy of the kernel module available on
1388 SourceForge is provided only to comply with the GPLv2
1389 requirement. Intel engineers were even surprised it even
1390 built and were not willing to make any effort to fix their
1391 tarball naming to contain a version number. Therefore, it
1392 does not make sense for Buildroot to provide such a package.
1393
1394 See https://sourceforge.net/p/e1000/bugs/589/ for the
1395 discussion.
1396
Thomas Petazzonie2ea4152018-04-05 21:50:18 +02001397config BR2_BINFMT_FLAT_SEP_DATA
1398 bool "binfmt FLAT with separate code and data removed"
1399 select BR2_LEGACY
1400 help
1401 This FLAT binary format was only used on Blackfin, which has
1402 been removed.
1403
Thomas Petazzoni325bb372018-04-05 21:50:17 +02001404config BR2_bfin
1405 bool "Blackfin architecture support removed"
1406 select BR2_LEGACY
1407 help
1408 Following the removal of Blackfin support for the upstream
1409 Linux kernel, Buildroot has removed support for this CPU
1410 architecture.
1411
Bernd Kuhls9657e962018-04-01 15:58:08 +02001412config BR2_PACKAGE_KODI_ADSP_BASIC
1413 bool "kodi-adsp-basic package removed"
1414 select BR2_LEGACY
1415 help
1416 kodi-adsp-basic is unmaintained
1417
1418config BR2_PACKAGE_KODI_ADSP_FREESURROUND
1419 bool "kodi-adsp-freesurround package removed"
1420 select BR2_LEGACY
1421 help
1422 kodi-adsp-freesurround is unmaintained
1423
1424###############################################################################
Baruch Siach86dfb422017-11-14 14:02:38 +02001425comment "Legacy options removed in 2018.02"
1426
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001427config BR2_KERNEL_HEADERS_3_4
1428 bool "kernel headers version 3.4.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001429 select BR2_LEGACY
1430 help
1431 Version 3.4.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001432 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001433
1434config BR2_KERNEL_HEADERS_3_10
1435 bool "kernel headers version 3.10.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001436 select BR2_LEGACY
1437 help
1438 Version 3.10.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001439 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001440
1441config BR2_KERNEL_HEADERS_3_12
1442 bool "kernel headers version 3.12.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001443 select BR2_LEGACY
1444 help
1445 Version 3.12.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001446 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001447
Romain Naour453d29f2018-01-29 23:39:41 +01001448config BR2_BINUTILS_VERSION_2_27_X
1449 bool "binutils version 2.27 support removed"
1450 select BR2_LEGACY
1451 help
1452 Support for binutils version 2.27 has been removed. The
1453 current default version (2.29 or later) has been selected
1454 instead.
1455
Baruch Siach55d79ed2018-01-02 08:16:01 +02001456config BR2_PACKAGE_EEPROG
1457 bool "eeprog package removed"
1458 select BR2_LEGACY
1459 select BR2_PACKAGE_I2C_TOOLS
1460 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
1461 help
1462 The eeprog program is now provided by the i2c-tools package.
1463
Baruch Siach86dfb422017-11-14 14:02:38 +02001464config BR2_PACKAGE_GNUPG2_GPGV2
1465 bool "gnupg2 gpgv2 option removed"
1466 select BR2_LEGACY
1467 select BR2_PACKAGE_GNUPG2_GPGV
1468 help
1469 The gpgv2 executable is now named gpgv. The config option
1470 has been renamed accordingly.
1471
Gary Bissonf7a7d942018-01-05 15:39:36 +01001472config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
1473 bool "Vivante apitrace tool option removed"
1474 select BR2_LEGACY
1475 help
1476 The apitrace tool for Vivante is not provided by the
1477 imx-gpu-viv package any longer.
1478
1479config BR2_PACKAGE_IMX_GPU_VIV_G2D
1480 bool "Vivante G2D libraries from imx-gpu-viv removed"
1481 select BR2_LEGACY
1482 select BR2_PACKAGE_IMX_GPU_G2D
1483 help
1484 The G2D libraries are now provided by the imx-gpu-g2d package.
1485
Baruch Siach86dfb422017-11-14 14:02:38 +02001486###############################################################################
Carlos Santosf52af612017-09-01 21:41:38 -03001487comment "Legacy options removed in 2017.11"
1488
Carlos Santos6c10e402017-10-21 20:30:18 -02001489config BR2_PACKAGE_RFKILL
1490 bool "rfkill package removed"
1491 select BR2_LEGACY
1492 select BR2_PACKAGE_UTIL_LINUX
1493 select BR2_PACKAGE_UTIL_LINUX_RFKILL
1494 help
1495 The rfkill program is now provided by the util-linux package.
1496
Carlos Santosd4382002017-10-31 08:47:51 -02001497config BR2_PACKAGE_UTIL_LINUX_RESET
1498 bool "util-linux reset option removed"
1499 select BR2_LEGACY
1500 help
1501 The util-linux package no longer offers a "reset" command. Use
1502 either the reset command provided by BusyBox or select ncurses
1503 programs, which will install a symlink from "tset" to reset.
1504
Adam Duskett9d6da7a2017-10-17 18:32:18 -04001505config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
1506 bool "policycoreutils audit2allow option removed"
1507 select BR2_LEGACY
1508 select BR2_PACKAGE_SELINUX_PYTHON
1509 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
1510 help
1511 The policycoreutils package no longer offers audit2allow
1512 as a option. This package has been moved into the
1513 selinux-python package by the SELinux maintainers.
1514
1515config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
1516 bool "policycoreutils restorecond option removed"
1517 select BR2_LEGACY
1518 select BR2_PACKAGE_RESTORECOND
1519 help
1520 The policycoreutils package no longer offers restorecond
1521 as a option. This package has been moved into a seperate
1522 package maintained by the SELinux maintainers.
1523
1524config BR2_PACKAGE_SEPOLGEN
1525 bool "sepolgen package has been removed"
1526 select BR2_LEGACY
1527 select BR2_PACKAGE_SELINUX_PYTHON
1528 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
1529 help
1530 Sepolgen is no longer a individual package, but instead has
1531 been moved into the selinux-python package by the SELinux
1532 maintainers.
1533
Bernd Kuhls49a9fb02017-09-16 17:15:35 +02001534config BR2_PACKAGE_OPENOBEX_BLUEZ
1535 bool "openobex bluez option removed"
1536 select BR2_LEGACY
1537 select BR2_PACKAGE_BLUEZ_UTILS
1538 help
1539 The OpenOBEX package no longer offers an option to enable or
1540 disable BlueZ support. Instead, BlueZ support is always
1541 included when the bluez5_utils or bluez_utils package is
1542 selected.
1543
1544config BR2_PACKAGE_OPENOBEX_LIBUSB
1545 bool "openobex libusb option removed"
1546 select BR2_LEGACY
1547 select BR2_PACKAGE_LIBUSB
1548 help
1549 The OpenOBEX package no longer offers an option to enable or
1550 disable libusb support. Instead, USB support is always
1551 included when the libusb package is selected.
1552
1553config BR2_PACKAGE_OPENOBEX_APPS
1554 bool "openobex apps option removed"
1555 select BR2_LEGACY
1556 help
1557 The OpenOBEX package no longer offers an option to enable or
1558 disable apps support.
1559
1560config BR2_PACKAGE_OPENOBEX_SYSLOG
1561 bool "openobex syslog option removed"
1562 select BR2_LEGACY
1563 help
1564 The OpenOBEX package no longer offers an option to enable or
1565 disable syslog support.
1566
1567config BR2_PACKAGE_OPENOBEX_DUMP
1568 bool "openobex dump option removed"
1569 select BR2_LEGACY
1570 help
1571 The OpenOBEX package no longer offers an option to enable or
1572 disable dump support.
1573
Alexander Mukhinfca70382017-09-10 13:21:34 +03001574config BR2_PACKAGE_AICCU
1575 bool "aiccu utility removed"
1576 select BR2_LEGACY
1577 help
1578 As the SixXS project has ceased its operation on 2017-06-06,
1579 the AICCU utility has no use anymore and has been removed.
1580
1581 https://www.sixxs.net/sunset/
1582
Carlos Santosf52af612017-09-01 21:41:38 -03001583config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
1584 bool "util-linux login utilities option removed"
1585 select BR2_LEGACY
1586 select BR2_PACKAGE_UTIL_LINUX_LAST
1587 select BR2_PACKAGE_UTIL_LINUX_LOGIN
1588 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
1589 select BR2_PACKAGE_UTIL_LINUX_SU
1590 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
1591 help
1592 Login utilities (last, login, runuser, su, sulogin) now have
1593 their own configuration options in the util-linux menu.
1594
1595###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +02001596comment "Legacy options removed in 2017.08"
1597
Yann E. MORIN144dc9c2017-08-11 18:05:08 +02001598config BR2_TARGET_GRUB
1599 bool "grub (aka grub-legacy) has been removed"
1600 select BR2_LEGACY
1601 help
1602 grub-legacy is no longer maintained, and no longer builds with
1603 recent binutils versions.
1604
1605 Use grub2 or syslinux instead.
1606
Bin Meng20db0982017-08-30 08:55:25 -07001607config BR2_PACKAGE_SIMICSFS
1608 bool "simicsfs support removed"
1609 select BR2_LEGACY
1610 help
1611 Support for simicsfs kernel driver that provides access to a
1612 host computer's local filesystem when the target is
1613 executing within a SIMICS simulation has been removed.
1614
1615 Simics is now moving away from the simicsfs kernel module,
1616 as the kernel module has required too much maintenance
1617 work. Users should move to the user mode Simics agent
1618 instead.
1619
Thomas Petazzoni0b5dc312017-07-29 15:09:06 +02001620config BR2_BINUTILS_VERSION_2_26_X
1621 bool "binutils version 2.26 support removed"
1622 select BR2_LEGACY
1623 help
1624 Support for binutils version 2.26 has been removed. The
1625 current default version (2.28 or later) has been selected
1626 instead.
1627
Yann E. MORINb3b60702017-07-09 05:21:56 -07001628config BR2_XTENSA_OVERLAY_DIR
1629 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001630 help
Yann E. MORINb3b60702017-07-09 05:21:56 -07001631 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
1632 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
1633 path to the overlay file, not to the directory containing
1634 it.
1635
1636config BR2_XTENSA_OVERLAY_DIR_WRAP
1637 bool
1638 default y if BR2_XTENSA_OVERLAY_DIR != ""
1639 select BR2_LEGACY
1640
1641config BR2_XTENSA_CUSTOM_NAME
1642 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
1643 help
1644 The BR2_XTENSA_CUSTOM_NAME option has been removed.
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001645
1646config BR2_XTENSA_CUSTOM_NAME_WRAP
1647 bool
1648 default y if BR2_XTENSA_CUSTOM_NAME != ""
1649 select BR2_LEGACY
1650
Sébastien Szymanskif47fc952017-07-04 16:47:29 +02001651config BR2_PACKAGE_HOST_MKE2IMG
1652 bool "host mke2img has been removed"
1653 select BR2_LEGACY
1654 help
1655 We now call mkfs directly to generate ext2/3/4 filesystem
1656 image, so mke2img is no longer necessary.
1657
Samuel Martinbee9e882017-07-09 07:00:38 +02001658config BR2_TARGET_ROOTFS_EXT2_BLOCKS
1659 int "exact size in blocks has been removed"
1660 default 0
1661 help
1662 This option has been removed in favor of
1663 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
1664 to the value you had before. Set to 0 here to remove the
1665 warning.
1666
1667config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
1668 bool
1669 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
1670 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
1671 select BR2_LEGACY
1672
1673# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
1674
Samuel Martin235b6f12017-07-04 16:47:25 +02001675config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
1676 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
1677 default 0
1678 help
1679 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
1680 images. It now automatically selects the number of inodes
1681 based on the image size. The extra number of inodes can no
1682 longer be provided; instead, provide the total number of
1683 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
1684
1685config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
1686 bool
1687 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
1688 select BR2_LEGACY
1689
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001690config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
1691 bool "cdxaparse removed"
1692 select BR2_LEGACY
1693
1694config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
1695 bool "dataurisrc moved to gstreamer1"
1696 select BR2_LEGACY
1697 help
1698 Dataurisrc has moved to gstreamer core and is always built.
1699
1700config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
1701 bool "dccp removed"
1702 select BR2_LEGACY
1703
1704config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
1705 bool "hdvparse removed"
1706 select BR2_LEGACY
1707
1708config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
1709 bool "mve removed"
1710 select BR2_LEGACY
1711
1712config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
1713 bool "nuvdemux removed"
1714 select BR2_LEGACY
1715
1716config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
1717 bool "patchdetect removed"
1718 select BR2_LEGACY
1719
1720config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
1721 bool "sdi removed"
1722 select BR2_LEGACY
1723
1724config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
1725 bool "tta removed"
1726 select BR2_LEGACY
1727
1728config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
1729 bool "videomeasure removed"
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001730 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001731 select BR2_LEGACY
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001732 help
1733 videomeasure plugin has been removed and has been replaced by
1734 iqa, which has automatically been enabled.
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001735
1736config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
1737 bool "apexsink removed"
1738 select BR2_LEGACY
1739
1740config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
1741 bool "sdl removed"
1742 select BR2_LEGACY
1743
Vicente Olivert Rierab006fe12017-05-12 11:18:05 +01001744config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
1745 bool "mad (*.mp3 audio) removed"
1746 select BR2_LEGACY
1747
Yann E. MORIN0d643fd2017-07-01 14:51:21 +02001748config BR2_STRIP_none
1749 bool "Strip command 'none' has been removed"
1750 select BR2_LEGACY
1751 help
1752 The strip command choice has been changed into a single
1753 boolean option. Please check that the new setting is
1754 correct (in the "Build options" sub-menu)
1755
Bernd Kuhlsdd4d3c12017-06-11 14:48:51 +02001756config BR2_PACKAGE_BEECRYPT_CPP
1757 bool "C++ support removed in beecrypt"
1758 select BR2_LEGACY
1759 help
1760 Support for C++ depends on icu. The beecrypt package is
1761 incompatible with icu 59+.
1762
Peter Korsgaard622ff3d2017-06-22 00:07:42 +02001763config BR2_PACKAGE_SPICE_CLIENT
1764 bool "spice client support removed"
1765 select BR2_LEGACY
1766 help
1767 Spice client support has been removed upstream. The
1768 functionality now lives in the spice-gtk widget and
1769 virt-viewer.
1770
1771config BR2_PACKAGE_SPICE_GUI
1772 bool "spice gui support removed"
1773 select BR2_LEGACY
1774 help
1775 Spice gui support has been removed upstream. The
1776 functionality now lives in the spice-gtk widget and
1777 virt-viewer.
1778
Peter Korsgaard6f2c0222017-06-22 00:07:41 +02001779config BR2_PACKAGE_SPICE_TUNNEL
1780 bool "spice network redirection removed"
1781 select BR2_LEGACY
1782 help
1783 Spice network redirection, aka tunnelling has been removed
1784 upstream.
1785
Koen Martens438b2d12017-06-20 20:54:49 +02001786config BR2_PACKAGE_INPUT_TOOLS
1787 bool "input-tools removed"
1788 select BR2_LEGACY
1789 select BR2_PACKAGE_LINUXCONSOLETOOLS
1790 help
1791 input-tools has been removed, it is replaced by
1792 linuxconsoletools, which has automatically been enabled.
1793
1794config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
1795 bool "inputattach moved to linuxconsoletools"
1796 select BR2_LEGACY
1797 select BR2_PACKAGE_LINUXCONSOLETOOLS
1798 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
1799 help
1800 input-tools has been removed, inputattach is now part
1801 of linuxconsoletools, which has automatically been
1802 enabled.
1803
1804config BR2_PACKAGE_INPUT_TOOLS_JSCAL
1805 bool "jscal moved to linuxconsoletools"
1806 select BR2_LEGACY
1807 select BR2_PACKAGE_LINUXCONSOLETOOLS
1808 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1809 help
1810 input-tools has been removed, jscal is now part
1811 of linuxconsoletools, which has automatically been
1812 enabled.
1813
1814config BR2_PACKAGE_INPUT_TOOLS_JSTEST
1815 bool "jstest moved to linuxconsoletools"
1816 select BR2_LEGACY
1817 select BR2_PACKAGE_LINUXCONSOLETOOLS
1818 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1819 help
1820 input-tools has been removed, jstest is now part
1821 of linuxconsoletools, which has automatically been
1822 enabled.
1823
Baruch Siach6510a822017-06-16 06:32:48 +03001824config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
1825 bool "SH Sourcery toolchain has been removed"
1826 select BR2_LEGACY
1827 help
1828 The Sourcery CodeBench toolchain for the sh architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001829 been removed, since it uses glibc older than 2.17 that
1830 requires -lrt to link executables using clock_* system calls.
1831 This makes this toolchain difficult to maintain over time.
Baruch Siach6510a822017-06-16 06:32:48 +03001832
Baruch Siach06cac642017-06-16 06:32:47 +03001833config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
1834 bool "x86 Sourcery toolchain has been removed"
1835 select BR2_LEGACY
1836 help
1837 The Sourcery CodeBench toolchain for the x86 architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001838 been removed, since it uses glibc older than 2.17 that
1839 requires -lrt to link executables using clock_* system calls.
1840 This makes this toolchain difficult to maintain over time.
Baruch Siach06cac642017-06-16 06:32:47 +03001841
Romain Naourf6695212017-05-23 22:24:40 +02001842config BR2_GCC_VERSION_4_8_X
1843 bool "gcc 4.8.x support removed"
1844 select BR2_LEGACY
1845 help
1846 Support for gcc version 4.8.x has been removed. The current
1847 default version (5.x or later) has been selected instead.
1848
1849###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001850comment "Legacy options removed in 2017.05"
1851
Romain Naour95426af2017-02-21 22:43:16 +01001852config BR2_PACKAGE_SUNXI_MALI_R2P4
1853 bool "sunxi-mali r2p4 removed"
1854 select BR2_LEGACY
1855 help
1856 sunxi-mali libMali for r2p4 Mali kernel module has been
1857 removed since the libump package only provides libUMP.so.3.
1858 libMali for r2p4 Mali kernel module requires libUMP.so.2.
1859
Martin Barkd999a7f2017-05-06 14:19:13 +01001860config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
1861 bool "CoffeeScript option has been removed"
1862 select BR2_LEGACY
1863 help
1864 The option to enable NodeJS CoffeeScript has been removed.
1865 To continue using it, add "coffee-script" to
1866 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1867
Martin Bark096f8b12017-05-06 14:19:12 +01001868config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
1869 bool "Express web application framework option has been removed"
1870 select BR2_LEGACY
1871 help
1872 The option to enable the NodeJS Express web application
1873 framework has been removed. To continue using it, add
1874 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1875
Baruch Siach0364d442017-05-01 15:59:41 +03001876config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
1877 bool "bluez5_utils gatttool install option removed"
1878 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
1879 help
1880 The option to install gatttool specifically has been removed.
1881 Since version 5.44 gatttool is in the list of deprecated
1882 tools. The option to build and install deprecated tools has
1883 been automatically enabled.
1884
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +00001885config BR2_PACKAGE_OPENOCD_FT2XXX
1886 bool "openocd ft2232 support has been removed"
1887 select BR2_PACKAGE_OPENOCD_FTDI
1888 select BR2_LEGACY
1889 help
1890 FT2232 support in OpenOCD has been removed, it's replaced by
1891 FDTI support, which has automatically been enabled.
1892
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001893config BR2_PACKAGE_KODI_RTMPDUMP
1894 bool "kodi rtmp has been removed"
1895 select BR2_LEGACY
Bernd Kuhlsc8942672017-07-16 16:35:17 +02001896 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001897 help
1898 Internal rtmp support was removed from Kodi.
1899
Bernd Kuhlsd3936902017-04-29 10:37:21 +02001900config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
1901 bool "kodi-visualisation-fountain has been removed"
1902 select BR2_LEGACY
1903 help
1904 According to upstream 'the visualization is not currently
1905 in a working shape.'
1906
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +02001907config BR2_PACKAGE_PORTMAP
1908 bool "portmap has been removed"
1909 select BR2_LEGACY
1910 select BR2_PACKAGE_RPCBIND
1911 help
1912 The portmap upstream tarball is removed, no releases since
1913 ten years and latest change in upstream git in 2014.
1914 You should better use rpcbind as a RPC portmapper.
1915
Thomas Petazzoni58472912017-04-03 22:28:21 +02001916config BR2_BINUTILS_VERSION_2_25_X
1917 bool "binutils version 2.25 support removed"
1918 select BR2_LEGACY
1919 help
1920 Support for binutils version 2.25 has been removed. The
1921 current default version (2.27 or later) has been selected
1922 instead.
1923
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +02001924config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
1925 bool "uclibc RPC support has been removed"
1926 select BR2_LEGACY
1927 help
1928 uClibc-ng removed internal RPC implementation in 1.0.23. You
1929 should use libtirpc instead.
1930
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001931config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
1932 int "extra size in blocks has been removed"
1933 default 0
1934 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001935 Since the support for auto calculation of the filesystem size
1936 has been removed, this option is now useless and must be 0.
1937 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
1938 matchs your needs.
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001939
1940config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
1941 bool
1942 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
1943 select BR2_LEGACY
1944
Vicente Olivert Riera815f7132017-03-22 11:39:13 +00001945config BR2_PACKAGE_SYSTEMD_KDBUS
1946 bool "systemd-kdbus has been removed"
1947 select BR2_LEGACY
1948 help
1949 --enable/disable-kdbus configure option has been removed since
1950 systemd-231.
1951
Gustavo Zacariasd10b4932017-03-16 10:04:34 -03001952config BR2_PACKAGE_POLARSSL
1953 bool "polarssl has been removed"
1954 select BR2_LEGACY
1955 help
1956 The polarssl crypto library has been removed since the 1.2.x
1957 release branch is no longer maintained. Newer upstream
1958 branches/releases (mbedtls) have API changes so they're not
1959 drop-in replacements.
1960
Yann E. MORIN61551182017-03-12 10:58:15 +01001961config BR2_NBD_CLIENT
1962 bool "nbd client option was renamed"
1963 select BR2_LEGACY
1964 select BR2_PACKAGE_NBD_CLIENT
1965 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001966 The nbd client option has been renamed to
1967 BR2_PACKAGE_NBD_CLIENT.
Yann E. MORIN61551182017-03-12 10:58:15 +01001968
1969config BR2_NBD_SERVER
1970 bool "nbd server option was renamed"
1971 select BR2_LEGACY
1972 select BR2_PACKAGE_NBD_SERVER
1973 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001974 The nbd server option has been renamed to
1975 BR2_PACKAGE_NBD_SERVER.
Yann E. MORIN61551182017-03-12 10:58:15 +01001976
Carlos Santos6a9c6312017-02-14 09:05:16 -02001977config BR2_PACKAGE_GMOCK
1978 bool "gmock merged into gtest package"
1979 select BR2_LEGACY
1980 select BR2_PACKAGE_GTEST
1981 select BR2_PACKAGE_GTEST_GMOCK
1982 help
1983 GMock is now a suboption of the GTest package.
1984
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001985config BR2_KERNEL_HEADERS_4_8
1986 bool "kernel headers version 4.8.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001987 select BR2_LEGACY
1988 help
1989 Version 4.8.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001990 maintained upstream and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001991
1992config BR2_KERNEL_HEADERS_3_18
1993 bool "kernel headers version 3.18.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001994 select BR2_LEGACY
1995 help
1996 Version 3.18.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001997 maintained upstream and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001998
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001999config BR2_GLIBC_VERSION_2_22
2000 bool "glibc 2.22 removed"
2001 select BR2_LEGACY
2002 help
2003 Support for glibc version 2.22 has been removed. The current
2004 default version has been selected instead.
2005
2006###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +01002007comment "Legacy options removed in 2017.02"
2008
Francois Perrad8546ff32016-12-26 15:50:35 +01002009config BR2_PACKAGE_PERL_DB_FILE
2010 bool "perl-db-file removed"
2011 select BR2_LEGACY
2012 select BR2_PACKAGE_BERKELEYDB
2013 select BR2_PACKAGE_PERL
2014 help
2015 DB_File can be built as a core Perl module, so the separate
2016 perl-db-file package has been removed.
2017
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002018config BR2_KERNEL_HEADERS_4_7
2019 bool "kernel headers version 4.7.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002020 select BR2_LEGACY
2021 help
2022 Version 4.7.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02002023 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002024
2025config BR2_KERNEL_HEADERS_4_6
2026 bool "kernel headers version 4.6.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002027 select BR2_LEGACY
2028 help
2029 Version 4.6.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02002030 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002031
2032config BR2_KERNEL_HEADERS_4_5
2033 bool "kernel headers version 4.5.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002034 select BR2_LEGACY
2035 help
2036 Version 4.5.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02002037 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002038
2039config BR2_KERNEL_HEADERS_3_14
2040 bool "kernel headers version 3.14.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002041 select BR2_LEGACY
2042 help
2043 Version 3.14.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02002044 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002045
Romain Naour63abbcc2016-12-16 16:29:45 +01002046config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
2047 bool "musl-cross 1.1.12 toolchain removed"
2048 select BR2_LEGACY
2049 help
2050 The support for the prebuilt toolchain based on the Musl C
2051 library provided by the musl-cross project has been removed.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002052 Upstream doesn't provide any prebuilt toolchain anymore, use
2053 the Buildroot toolchain instead.
Romain Naour63abbcc2016-12-16 16:29:45 +01002054
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +01002055config BR2_UCLIBC_INSTALL_TEST_SUITE
2056 bool "uClibc tests now in uclibc-ng-test"
2057 select BR2_LEGACY
2058 select BR2_PACKAGE_UCLIBC_NG_TEST
2059 help
2060 The test suite of the uClibc C library has been moved into a
2061 separate package, uclibc-ng-test.
2062
Arnout Vandecappelle311bc132016-11-24 00:40:35 +01002063config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
2064 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
2065 select BR2_LEGACY
2066 help
2067 The ADI Blackfin toolchain has many bugs which are fixed in
2068 more recent gcc and uClibc-ng releases. Use the Buildroot
2069 toolchain instead.
2070
Arnout Vandecappelle207294f2016-11-23 15:14:04 +01002071config BR2_PACKAGE_MAKEDEVS
2072 bool "makedevs removed"
2073 select BR2_LEGACY
2074 help
2075 The makedevs tool is part of busybox. The Buildroot fork
2076 should not be used outside of the Buildroot infrastructure.
2077
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +01002078config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
2079 bool "Arago ARMv7 2011.09 removed"
2080 select BR2_LEGACY
2081 help
2082 The Arago toolchains are every old and not updated anymore.
2083
2084config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
2085 bool "Arago ARMv5 2011.09 removed"
2086 select BR2_LEGACY
2087 help
2088 The Arago toolchains are every old and not updated anymore.
2089
Thomas Petazzonied364d12016-11-05 14:32:38 +01002090config BR2_PACKAGE_SNOWBALL_HDMISERVICE
2091 bool "snowball-hdmiservice removed"
2092 select BR2_LEGACY
2093 help
2094 We no longer have support for the Snowball platform in
2095 Buildroot, so this package was no longer useful.
2096
2097config BR2_PACKAGE_SNOWBALL_INIT
2098 bool "snowball-init removed"
2099 select BR2_LEGACY
2100 help
2101 We no longer have support for the Snowball platform in
2102 Buildroot, so this package was no longer useful.
2103
Jörg Krause69aa0572016-12-14 14:40:58 +01002104config BR2_GDB_VERSION_7_9
2105 bool "gdb 7.9 has been removed"
2106 select BR2_LEGACY
2107 help
2108 The 7.9 version of gdb has been removed. Use a newer version
2109 instead.
2110
Thomas Petazzonied364d12016-11-05 14:32:38 +01002111###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +02002112comment "Legacy options removed in 2016.11"
2113
Fabrice Fontainec4572132016-09-12 23:31:07 +02002114config BR2_PACKAGE_PHP_SAPI_CLI_CGI
2115 bool "PHP CGI and CLI options are now seperate"
2116 select BR2_PACKAGE_PHP_SAPI_CLI
2117 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +02002118 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02002119 help
2120 The PHP Interface options have been split up into a
2121 separate option for each interface.
2122
2123config BR2_PACKAGE_PHP_SAPI_CLI_FPM
2124 bool "PHP CLI and FPM options are now separate"
2125 select BR2_PACKAGE_PHP_SAPI_CLI
2126 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +02002127 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02002128 help
2129 The PHP Interface options have been split up into a
2130 separate option for each interface.
2131
Arnout Vandecappelle35343992016-10-15 16:51:06 +02002132config BR2_PACKAGE_WVSTREAMS
2133 bool "wvstreams removed"
2134 select BR2_LEGACY
2135 help
2136 wvstreams is not maintained anymore since about 2009. It also
2137 doesn't build anymore with recent compilers (GCC 5+).
2138
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +02002139config BR2_PACKAGE_WVDIAL
2140 bool "wvdial removed"
2141 select BR2_LEGACY
2142 help
2143 wvdial is not maintained anymore since about 2009. It also
2144 doesn't build anymore with recent compilers (GCC 5+).
2145
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +02002146config BR2_PACKAGE_WEBKITGTK24
2147 bool "webkitgtk 2.4.x removed"
2148 select BR2_LEGACY
2149 help
2150 This legacy package only existed because some other packages
2151 depended on that specific version of webkitgtk. However, the
2152 other packages have been fixed. webkitgtk 2.4 is full of
2153 security issues so it needs to be removed.
2154
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +02002155config BR2_PACKAGE_TORSMO
2156 bool "torsmo removed"
2157 select BR2_LEGACY
2158 help
2159 torsmo has been unmaintained for a long time, and nobody
2160 seems to be interested in it.
2161
Arnout Vandecappelle290166f2016-10-15 16:51:02 +02002162config BR2_PACKAGE_SSTRIP
2163 bool "sstrip removed"
2164 select BR2_LEGACY
2165 help
2166 sstrip is unmaintained and potentially harmful. It doesn't
2167 save so much compared to normal binutils strip, and there is
2168 a big risk of binaries that don't work. Use normal strip
2169 instead.
2170
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002171config BR2_KERNEL_HEADERS_4_3
2172 bool "kernel headers version 4.3.x are no longer supported"
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002173 select BR2_LEGACY
2174 help
2175 Version 4.3.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02002176 maintained upstream and are now removed.
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002177
2178config BR2_KERNEL_HEADERS_4_2
2179 bool "kernel headers version 4.2.x are no longer supported"
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002180 select BR2_LEGACY
2181 help
2182 Version 4.2.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02002183 maintained upstream and are now removed.
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002184
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002185config BR2_PACKAGE_KODI_ADDON_XVDR
2186 bool "kodi-addon-xvdr removed"
2187 select BR2_LEGACY
2188 help
2189 According to the github project page:
2190 https://github.com/pipelka/xbmc-addon-xvdr
2191 this package is discontinued.
2192
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02002193config BR2_PACKAGE_IPKG
2194 bool "ipkg removed"
2195 select BR2_LEGACY
2196 help
2197 ipkg dates back to the early 2000s when Compaq started the
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002198 handhelds.org project and it hasn't seen development since
2199 2006. Use opkg as a replacement.
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02002200
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +02002201config BR2_GCC_VERSION_4_7_X
2202 bool "gcc 4.7.x support removed"
2203 select BR2_LEGACY
2204 help
2205 Support for gcc version 4.7.x has been removed. The current
2206 default version (4.9.x or later) has been selected instead.
2207
Arnout Vandecappelled8878112016-10-15 16:50:57 +02002208config BR2_BINUTILS_VERSION_2_24_X
2209 bool "binutils version 2.24 support removed"
2210 select BR2_LEGACY
2211 help
2212 Support for binutils version 2.24 has been removed. The
2213 current default version (2.26 or later) has been selected
2214 instead.
2215
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -03002216config BR2_PACKAGE_WESTON_RPI
2217 bool "Weston propietary RPI support is gone"
2218 select BR2_LEGACY
2219 help
2220 Upstream decided the propietary (rpi-userland) weston composer
2221 support wasn't worth the effort so it was removed. Switch to
2222 the open VC4 support.
2223
Yann E. MORIN20b14462016-09-06 16:29:14 +02002224config BR2_LINUX_KERNEL_TOOL_CPUPOWER
2225 bool "linux-tool cpupower"
2226 depends on BR2_LINUX_KERNEL
2227 select BR2_LEGACY
2228 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
2229 help
2230 Linux tool cpupower option was renamed.
2231
2232config BR2_LINUX_KERNEL_TOOL_PERF
2233 bool "linux-tool perf"
2234 depends on BR2_LINUX_KERNEL
2235 select BR2_LEGACY
2236 select BR2_PACKAGE_LINUX_TOOLS_PERF
2237 help
2238 Linux tool perf option was renamed.
2239
2240config BR2_LINUX_KERNEL_TOOL_SELFTESTS
2241 bool "linux-tool selftests"
2242 depends on BR2_LINUX_KERNEL
2243 select BR2_LEGACY
2244 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
2245 help
2246 Linux tool selftests option was renamed.
2247
Thomas Petazzoni50332a52016-08-11 15:25:38 +02002248config BR2_GCC_VERSION_4_8_ARC
2249 bool "gcc arc option renamed"
2250 select BR2_LEGACY
2251 select BR2_GCC_VERSION_ARC
2252 help
2253 The option that selects the gcc version for the ARC
2254 architecture has been renamed to BR2_GCC_VERSION_ARC.
2255
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002256config BR2_KERNEL_HEADERS_4_0
2257 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002258 select BR2_LEGACY
2259 help
2260 Version 4.0.x of the Linux kernel headers have been deprecated
2261 for more than four buildroot releases and are now removed.
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002262
2263config BR2_KERNEL_HEADERS_3_19
2264 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002265 select BR2_LEGACY
2266 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002267 Version 3.19.x of the Linux kernel headers have been
2268 deprecated for more than four buildroot releases and are now
2269 removed.
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002270
Romain Naour0e517312016-09-02 22:31:32 +02002271config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
2272 bool "libevas-generic-loaders package removed"
2273 select BR2_LEGACY
2274 select BR2_PACKAGE_EFL
2275 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002276 With EFL 1.18, libevas-generic-loaders is now provided by the
2277 efl package.
Romain Naour0e517312016-09-02 22:31:32 +02002278
Romain Naourc22b7582016-09-02 22:31:31 +02002279config BR2_PACKAGE_ELEMENTARY
2280 bool "elementary package removed"
2281 select BR2_LEGACY
2282 select BR2_PACKAGE_EFL
2283 help
2284 With EFL 1.18, elementary is now provided by the efl package.
2285
Yann E. MORINe782cd52016-08-28 01:03:04 +02002286config BR2_LINUX_KERNEL_CUSTOM_LOCAL
2287 bool "Linux kernel local directory option removed"
2288 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002289 The option to select a local directory as the source of the
2290 Linux kernel has been removed. It hurts reproducibility of
2291 builds.
Yann E. MORINe782cd52016-08-28 01:03:04 +02002292
2293 In case you were using this option during development of your
2294 Linux kernel, use the override mechanism instead.
2295
2296###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02002297comment "Legacy options removed in 2016.08"
2298
Arnout Vandecappelleac191072017-03-08 00:50:54 +01002299config BR2_PACKAGE_EFL_JP2K
2300 bool "libevas jp2k loader has been removed"
2301 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +01002302 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +01002303 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
2304 while Buildroot only packages openjpeg 2.x. Therefore, the
2305 JP2K loader has been removed from EFL.
2306
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002307config BR2_PACKAGE_SYSTEMD_COMPAT
2308 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +02002309 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002310 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +02002311 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002312 been removed. Theses libraries have been useless since a few
2313 version, and have been fully dropped from the source since
2314 v230.
2315
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +02002316config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
2317 bool "gst1-plugins-bad liveadder plugin removed"
2318 select BR2_LEGACY
2319 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
2320 help
2321 The functionality of the liveadder plugin of the
2322 gst1-plugins-bad package has been merged into audiomixer.
2323
Andrew Webster0f92b192016-06-10 14:13:29 -04002324config BR2_PACKAGE_LIBFSLVPUWRAP
2325 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
2326 select BR2_LEGACY
2327 select BR2_PACKAGE_IMX_VPUWRAP
2328 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002329 The libfslvpuwrap has been renamed to match the renamed
2330 package.
Andrew Webster0f92b192016-06-10 14:13:29 -04002331
Andrew Webster64998902016-06-10 14:13:18 -04002332config BR2_PACKAGE_LIBFSLPARSER
2333 bool "libfslparser has been renamed to imx-parser"
2334 select BR2_LEGACY
2335 select BR2_PACKAGE_IMX_PARSER
2336 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002337 The libfslparser has been renamed to match the renamed
2338 package.
Andrew Webster64998902016-06-10 14:13:18 -04002339
Andrew Webster47e62032016-06-10 14:13:05 -04002340config BR2_PACKAGE_LIBFSLCODEC
2341 bool "libfslcodec has been renamed to imx-codec"
2342 select BR2_LEGACY
2343 select BR2_PACKAGE_IMX_CODEC
2344 help
2345 The libfslcodec has been renamed to match the renamed package.
2346
Carlos Santosb5d99002016-06-03 16:35:39 -03002347config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
2348 bool "FIT support in uboot-tools has been refactored"
2349 select BR2_LEGACY
2350 select BR2_PACKAGE_DTC
2351 select BR2_PACKAGE_DTC_PROGRAMS
2352 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
2353 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
2354 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
2355 help
2356 This option has been removed in favor of a more fine-grained
2357 configuration, which is recommended. Selecting this option
2358 enables FIT and FIT signature support for the target packages.
2359 It will also select the dtc and openssl packages.
2360
Waldemar Brodkorbf253c142016-06-01 20:40:25 +02002361config BR2_PTHREADS_OLD
2362 bool "linuxthreads (stable/old)"
2363 select BR2_LEGACY
2364 help
2365 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
2366 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
2367
Thomas Petazzoniae466a62016-05-17 00:13:01 +02002368config BR2_BINUTILS_VERSION_2_23_X
2369 bool "binutils 2.23 removed"
2370 select BR2_LEGACY
2371 help
2372 Binutils 2.23 has been removed, using a newer version is
2373 recommended.
2374
Thomas Petazzoni500de252016-05-17 00:13:00 +02002375config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
2376 bool "eglibc support has been removed"
2377 select BR2_LEGACY
2378 help
2379 The eglibc project no longer exists, as it has been merged
2380 back into the glibc project. Therefore, support for eglibc
2381 has been removed, and glibc should be used instead.
2382
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02002383config BR2_GDB_VERSION_7_8
2384 bool "gdb 7.8 has been removed"
2385 select BR2_LEGACY
2386 help
2387 The 7.8 version of gdb has been removed. Use a newer version
2388 instead.
2389
2390###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01002391comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +01002392
Gustavo Zacarias3380da62016-05-14 10:33:47 -03002393config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
2394 bool "openvpn polarssl crypto backend removed"
2395 select BR2_LEGACY
2396 help
2397 The OpenVPN polarssl crypto backend option has been removed.
2398 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
2399 compatible with mbedtls (polarssl) series 2.x which is the
2400 version provided in buildroot. And both can't coexist.
2401 It now uses OpenSSL as the only option.
2402
Martin Bark4dfc2cb2016-05-03 10:36:54 +01002403config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
2404 bool "nginx http spdy module removed"
2405 select BR2_LEGACY
2406 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
2407 help
2408 The ngx_http_spdy_module has been superseded by the
2409 ngx_http_v2_module since nginx v1.9.5. The
2410 ngx_http_v2_module modules has been automatically selected
2411 in your configuration.
2412
Gustavo Zacarias0c956f22016-05-03 16:44:15 -03002413config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
2414 bool "gst1-plugins-bad rtp plugin moved to good"
2415 select BR2_LEGACY
2416 help
2417 The rtp plugin has been moved from gst1-plugins-base to
2418 gst1-plugins-good.
2419
Gustavo Zacarias4196cf92016-05-03 16:44:14 -03002420config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
2421 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
2422 select BR2_LEGACY
2423 help
2424 The mpg123 plugin has been moved from gst1-plugins-bad to
2425 gst1-plugins-ugly.
2426
Gustavo Zacarias8490e832016-04-29 10:18:56 -03002427config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
2428 bool "PowerPC Sourcery toolchain has been removed"
2429 select BR2_LEGACY
2430 help
2431 The Sourcery CodeBench toolchain for the PowerPC
2432 architecture has been removed, as it was very old, not
2433 maintained, and causing numerous build failures with modern
2434 userspace packages.
2435
2436config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
2437 bool "PowerPC Sourcery E500v2 toolchain has been removed"
2438 select BR2_LEGACY
2439 help
2440 The Sourcery CodeBench toolchain for the PowerPC E500v2
2441 architecture has been removed, as it was very old, not
2442 maintained, and causing numerous build failures with modern
2443 userspace packages.
2444
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02002445config BR2_x86_i386
2446 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +02002447 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02002448 help
2449 The support for the i386 processors of the x86 architecture
2450 has been removed.
2451
Julien CORJONf75ee802016-03-17 10:42:25 +01002452config BR2_PACKAGE_QT5QUICK1
2453 bool "qt5quick1 package removed"
2454 select BR2_LEGACY
2455 help
2456 The qt5quick1 package has been removed, since it was removed
2457 from upstream starting from Qt 5.6.
2458
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03002459config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -05002460 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03002461 help
2462 The uboot custom patch directory option has been removed. Use
2463 the improved BR2_TARGET_UBOOT_PATCH option instead.
2464
Danomi Manchegof61583f2016-12-19 22:10:12 -05002465config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
2466 bool
2467 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
2468 select BR2_LEGACY
2469
2470# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
2471# boot/uboot/Config.in
2472
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -03002473config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
2474 bool "xf86-input-void removed"
2475 select BR2_LEGACY
2476 help
2477 The xf86-input-void package has been removed, there's no need
2478 for it in any modern (post-2007) xorg server.
2479
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002480config BR2_KERNEL_HEADERS_3_17
2481 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002482 select BR2_LEGACY
2483 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002484 Version 3.17.x of the Linux kernel headers have been
2485 deprecated for more than four buildroot releases and are now
2486 removed.
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002487
Gustavo Zacariasffc324e2016-03-11 11:32:21 -03002488config BR2_GDB_VERSION_7_7
2489 bool "gdb 7.7 has been removed"
2490 select BR2_LEGACY
2491 help
2492 The 7.7 version of gdb has been removed. Use a newer version
2493 instead.
2494
Gustavo Zacarias75945dd2016-03-11 11:32:20 -03002495config BR2_PACKAGE_FOOMATIC_FILTERS
2496 bool "foomatic-filters"
2497 select BR2_LEGACY
2498 help
2499 The foomatic-filters package was removed.
2500
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -03002501config BR2_PACKAGE_SAMBA
2502 bool "samba"
2503 select BR2_LEGACY
2504 help
2505 The samba package was removed in favour of samba4 since the
2506 3.x series isn't supported by upstream any longer.
2507
Bernd Kuhls6922b412016-02-20 23:09:11 +01002508config BR2_PACKAGE_KODI_WAVPACK
2509 bool "wavpack"
2510 select BR2_LEGACY
2511 help
2512 wavpack support was removed in favour of ffmpeg:
2513 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
2514
Bernd Kuhls75ce17d2016-02-20 23:09:07 +01002515config BR2_PACKAGE_KODI_RSXS
2516 bool "rsxs support in Kodi was moved to an addon"
2517 select BR2_LEGACY
2518 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
2519 help
2520 rsxs support in Kodi was moved to an addon
2521
Bernd Kuhls56b80ec2016-02-20 23:09:06 +01002522config BR2_PACKAGE_KODI_GOOM
2523 bool "Goom support in Kodi was moved to an addon"
2524 select BR2_LEGACY
2525 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
2526 help
2527 Goom support in Kodi was moved to an addon
2528
Gabe Evanse5a073a2016-02-25 21:55:11 +00002529config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
2530 bool "systemd all extras option has been removed"
2531 select BR2_LEGACY
2532 select BR2_PACKAGE_XZ
2533 select BR2_PACKAGE_LIBGCRYPT
2534 help
2535 The systemd option to enable "all extras" has been
2536 removed. To get the same features, the libgcrypt and xz
2537 package should now be enabled.
2538
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -03002539config BR2_GCC_VERSION_4_5_X
2540 bool "gcc 4.5.x has been removed"
2541 select BR2_LEGACY
2542 help
2543 The 4.5.x version of gcc has been removed. Use a newer
2544 version instead.
2545
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01002546config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -05002547 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01002548 select BR2_PACKAGE_NCURSES
2549 select BR2_PACKAGE_READLINE
2550 select BR2_LEGACY
2551 help
2552 This option was removed in favour of the sqlite package
2553 deciding itself depending on the enabled packages whether
2554 command-line editing should be enabled, it also also takes
2555 libedit into account.
2556
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01002557###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +01002558comment "Legacy options removed in 2016.02"
2559
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +01002560config BR2_PACKAGE_DOVECOT_BZIP2
2561 bool "bzip2 support option has been removed"
2562 select BR2_LEGACY
2563 select BR2_PACKAGE_BZIP2
2564 help
2565 Bzip2 support is built if the bzip2 package is selected.
2566
2567config BR2_PACKAGE_DOVECOT_ZLIB
2568 bool "zlib support option has been removed"
2569 select BR2_LEGACY
2570 select BR2_PACKAGE_ZLIB
2571 help
2572 Zlib support is built if the zlib package is selected.
2573
James Knightead1df42016-02-12 11:40:05 -05002574config BR2_PACKAGE_E2FSPROGS_FINDFS
2575 bool "e2fsprogs findfs option has been removed"
2576 select BR2_LEGACY
2577 help
2578 This option attempted to enable findfs capabilities from
2579 e2fsprogs but has not worked since July 2015 (due to
2580 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +01002581 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -05002582
Romain Naourb1063a02016-02-07 17:56:56 +01002583config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
2584 bool "openpowerlink debug option has been removed"
2585 select BR2_LEGACY
2586 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002587 This option depends on BR2_ENABLE_DEBUG which should not be
2588 used by packages anymore.
Romain Naourb1063a02016-02-07 17:56:56 +01002589
2590config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
2591 bool "openpowerlink package has been updated"
2592 select BR2_LEGACY
2593 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
2594 help
2595 openpowerlink kernel modules are built if the
2596 kernel stack library is selected.
2597
2598config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
2599 bool "openpowerlink package has been updated"
2600 select BR2_LEGACY
2601 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
2602 help
2603 The user space support has been split in two part:
2604 - a monolitic user space library
2605 - a user spae deamon driver
2606
Yann E. MORINe3e05832016-02-06 00:06:17 +01002607config BR2_LINUX_KERNEL_SAME_AS_HEADERS
2608 bool "using the linux headers version for the kernel has been removed"
2609 select BR2_LEGACY
2610 help
2611 The option to use the version of the kernel headers for the
2612 kernel to build has been removed.
2613
2614 There is now the converse, better-suited and more versatile
2615 option to use the kernel version for the linux headers.
2616
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002617config BR2_PACKAGE_CUPS_PDFTOPS
2618 bool "Pdftops support has been removed from Cups"
Olivier Schonken917de0f2017-10-23 15:26:11 +02002619 select BR2_PACKAGE_CUPS_FILTERS
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002620 select BR2_LEGACY
2621 help
2622 Pdftops support has been removed from the cups package
2623 It is now part of the cups-filters package.
2624
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002625config BR2_KERNEL_HEADERS_3_16
2626 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002627 select BR2_LEGACY
2628 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002629 Version 3.16.x of the Linux kernel headers have been
2630 deprecated for more than four buildroot releases and are now
2631 removed.
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002632
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01002633config BR2_PACKAGE_PYTHON_PYXML
2634 bool "python-pyxml package has been removed"
2635 select BR2_LEGACY
2636 help
2637 PyXML is obsolete and its functionality is covered either via
2638 native Python XML support or python-lxml package.
2639
Steven Noonand29c7192015-12-27 12:07:31 +01002640# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
2641config BR2_ENABLE_SSP
2642 bool "Stack Smashing protection now has different levels"
2643 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002644 The protection offered by SSP can now be selected from
2645 different protection levels. Be sure to review the SSP level
2646 in the build options menu.
Steven Noonand29c7192015-12-27 12:07:31 +01002647
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002648config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002649 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002650 select BR2_LEGACY
2651 help
2652 The cle266 directfb driver support has been removed.
2653 It doesn't build in the latest version and it's unlikely
2654 anyone has any use for it.
2655
2656config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002657 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002658 select BR2_LEGACY
2659 help
2660 The unichrome directfb driver support has been removed.
2661 It doesn't build in the latest version and it's unlikely
2662 anyone has any use for it.
2663
Romain Naour820e1682015-12-19 17:39:14 +01002664config BR2_PACKAGE_LIBELEMENTARY
2665 bool "libelementary has been renamed to elementary"
2666 select BR2_LEGACY
2667 select BR2_PACKAGE_ELEMENTARY
2668 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002669 The libelementary package has been renamed to match the
2670 upstream name.
Romain Naour820e1682015-12-19 17:39:14 +01002671
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002672config BR2_PACKAGE_LIBEINA
2673 bool "libeina package has been removed"
2674 select BR2_LEGACY
2675 select BR2_PACKAGE_EFL
2676 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002677 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002678
Romain Naour49700f02015-12-15 23:40:37 +01002679config BR2_PACKAGE_LIBEET
2680 bool "libeet package has been removed"
2681 select BR2_LEGACY
2682 select BR2_PACKAGE_EFL
2683 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002684 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01002685
Romain Naoure5989d62015-12-15 23:40:36 +01002686config BR2_PACKAGE_LIBEVAS
2687 bool "libevas package has been removed"
2688 select BR2_LEGACY
2689 select BR2_PACKAGE_EFL
2690 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002691 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01002692
Romain Naour1fe1b602015-12-15 23:40:35 +01002693config BR2_PACKAGE_LIBECORE
2694 bool "libecore package has been removed"
2695 select BR2_LEGACY
2696 select BR2_PACKAGE_EFL
2697 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002698 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01002699
Romain Naour8c05c382015-12-15 23:40:34 +01002700config BR2_PACKAGE_LIBEDBUS
2701 bool "libedbus package has been removed"
2702 select BR2_LEGACY
2703 select BR2_PACKAGE_EFL
2704 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002705 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01002706
Romain Naourd2b042c2015-12-15 23:40:33 +01002707config BR2_PACKAGE_LIBEFREET
2708 bool "libefreet package has been removed"
2709 select BR2_LEGACY
2710 select BR2_PACKAGE_EFL
2711 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002712 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01002713
Romain Naoure155c952015-12-15 23:40:32 +01002714config BR2_PACKAGE_LIBEIO
2715 bool "libeio package has been removed"
2716 select BR2_LEGACY
2717 select BR2_PACKAGE_EFL
2718 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002719 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01002720
Romain Naourb728fb72015-12-15 23:40:31 +01002721config BR2_PACKAGE_LIBEMBRYO
2722 bool "libembryo package has been removed"
2723 select BR2_LEGACY
2724 select BR2_PACKAGE_EFL
2725 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002726 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01002727
Romain Naour4c93c102015-12-15 23:40:30 +01002728config BR2_PACKAGE_LIBEDJE
2729 bool "libedje package has been removed"
2730 select BR2_LEGACY
2731 select BR2_PACKAGE_EFL
2732 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002733 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01002734
Romain Naour905dba12015-12-15 23:40:29 +01002735config BR2_PACKAGE_LIBETHUMB
2736 bool "libethumb package has been removed"
2737 select BR2_LEGACY
2738 select BR2_PACKAGE_EFL
2739 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002740 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01002741
Luca Ceresolif0c94702015-11-27 18:38:00 +01002742config BR2_PACKAGE_INFOZIP
2743 bool "infozip option has been renamed to zip"
2744 select BR2_LEGACY
2745 select BR2_PACKAGE_ZIP
2746 help
2747 Info-Zip's Zip package has been renamed from infozip to zip,
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002748 to avoid ambiguities with Info-Zip's UnZip which has been
2749 added in the unzip package.
Luca Ceresolif0c94702015-11-27 18:38:00 +01002750
Martin Barka2d16602015-12-23 12:16:04 +00002751config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00002752 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00002753 select BR2_LEGACY
2754 select BR2_PACKAGE_NODEJS
2755 help
Martin Bark75b70492016-01-30 14:51:00 +00002756 nodejs 0.10.x option has been removed. 0.10.x is now
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002757 automatically chosen for ARMv5 architectures only and the
2758 latest nodejs for all other supported architectures. The
2759 correct nodejs version has been automatically selected in your
2760 configuration.
Martin Barka2d16602015-12-23 12:16:04 +00002761
Martin Barka314b872015-12-23 12:16:03 +00002762config BR2_BR2_PACKAGE_NODEJS_0_12_X
2763 bool "nodejs version 0.12.x has been removed"
2764 select BR2_LEGACY
2765 select BR2_PACKAGE_NODEJS
2766 help
2767 nodejs version 0.12.x has been removed. As an alternative,
2768 the latest nodejs version has been automatically selected in
2769 your configuration.
2770
Martin Bark90bf67c2015-12-23 12:16:02 +00002771config BR2_BR2_PACKAGE_NODEJS_4_X
2772 bool "nodejs version 4.x has been removed"
2773 select BR2_LEGACY
2774 select BR2_PACKAGE_NODEJS
2775 help
2776 nodejs version 4.x has been removed. As an alternative,
2777 the latest nodejs version has been automatically selected in
2778 your configuration.
2779
Luca Ceresolif0c94702015-11-27 18:38:00 +01002780###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002781comment "Legacy options removed in 2015.11"
2782
Peter Seiderer301e8ff2015-10-15 21:42:43 +02002783config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
2784 bool "gst1-plugins-bad real plugin has been removed"
2785 select BR2_LEGACY
2786 help
2787 The real plugin from GStreamer 1 bad plugins has been
2788 removed.
2789
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002790config BR2_PACKAGE_MEDIA_CTL
2791 bool "media-ctl package has been removed"
2792 select BR2_LEGACY
2793 select BR2_PACKAGE_LIBV4L
2794 select BR2_PACKAGE_LIBV4L_UTILS
2795 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002796 media-ctl source and developement have been moved to v4l-utils
2797 since June 2014. For an up-to-date media-ctl version select
2798 BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002799
Romain Naourf8031332015-10-03 18:35:05 +02002800config BR2_PACKAGE_SCHIFRA
2801 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002802 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02002803 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002804 Schifra package has been maked broken since 2014.11 release
2805 and haven't been fixed since then.
Romain Naourf8031332015-10-03 18:35:05 +02002806
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002807config BR2_PACKAGE_ZXING
2808 bool "zxing option has been renamed"
2809 select BR2_LEGACY
2810 select BR2_PACKAGE_ZXING_CPP
2811 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002812 ZXing no longer provides the cpp bindings, it has been renamed
2813 to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002814
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002815# Since FreeRDP has new dependencies, protect this legacy to avoid the
2816# infamous "unmet direct dependencies" kconfig error.
2817config BR2_PACKAGE_FREERDP_CLIENT
2818 bool "freerdp client option renamed"
2819 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02002820 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002821 select BR2_PACKAGE_FREERDP_CLIENT_X11
2822
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03002823config BR2_PACKAGE_BLACKBOX
2824 bool "blackbox package has been removed"
2825 select BR2_LEGACY
2826 help
2827 Upstream is dead and the package has been deprecated for
2828 some time. There are other alternative maintained WMs.
2829
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002830config BR2_KERNEL_HEADERS_3_0
2831 bool "kernel headers version 3.0.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002832 select BR2_LEGACY
2833 help
2834 Version 3.0.x of the Linux kernel headers have been deprecated
2835 for more than four buildroot releases and are now removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002836
2837config BR2_KERNEL_HEADERS_3_11
2838 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002839 select BR2_LEGACY
2840 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002841 Version 3.11.x of the Linux kernel headers have been
2842 deprecated for more than four buildroot releases and are now
2843 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002844
2845config BR2_KERNEL_HEADERS_3_13
2846 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002847 select BR2_LEGACY
2848 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002849 Version 3.13.x of the Linux kernel headers have been
2850 deprecated for more than four buildroot releases and are now
2851 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002852
2853config BR2_KERNEL_HEADERS_3_15
2854 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002855 select BR2_LEGACY
2856 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002857 Version 3.15.x of the Linux kernel headers have been
2858 deprecated for more than four buildroot releases and are now
2859 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002860
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002861config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
2862 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002863 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002864 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2865 help
2866 The per-DirectFB example options have been removed. The
2867 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2868 examples.
2869
2870config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
2871 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002872 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002873 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2874 help
2875 The per-DirectFB example options have been removed. The
2876 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2877 examples.
2878
2879config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
2880 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002881 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002882 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2883 help
2884 The per-DirectFB example options have been removed. The
2885 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2886 examples.
2887
2888config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
2889 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002890 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002891 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2892 help
2893 The per-DirectFB example options have been removed. The
2894 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2895 examples.
2896
2897config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
2898 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002899 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002900 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2901 help
2902 The per-DirectFB example options have been removed. The
2903 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2904 examples.
2905
2906config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
2907 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002908 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002909 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2910 help
2911 The per-DirectFB example options have been removed. The
2912 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2913 examples.
2914
2915config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
2916 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002917 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002918 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2919 help
2920 The per-DirectFB example options have been removed. The
2921 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2922 examples.
2923
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002924config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
2925 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002926 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002927 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2928 help
2929 The per-DirectFB example options have been removed. The
2930 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2931 examples.
2932
2933config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
2934 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002935 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002936 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2937 help
2938 The per-DirectFB example options have been removed. The
2939 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2940 examples.
2941
2942config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
2943 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002944 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002945 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2946 help
2947 The per-DirectFB example options have been removed. The
2948 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2949 examples.
2950
2951config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
2952 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002953 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002954 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2955 help
2956 The per-DirectFB example options have been removed. The
2957 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2958 examples.
2959
2960config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
2961 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002962 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002963 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2964 help
2965 The per-DirectFB example options have been removed. The
2966 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2967 examples.
2968
2969config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
2970 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002971 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002972 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2973 help
2974 The per-DirectFB example options have been removed. The
2975 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2976 examples.
2977
2978config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
2979 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002980 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002981 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2982 help
2983 The per-DirectFB example options have been removed. The
2984 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2985 examples.
2986
2987config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
2988 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002989 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002990 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2991 help
2992 The per-DirectFB example options have been removed. The
2993 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2994 examples.
2995
2996config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
2997 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002998 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002999 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3000 help
3001 The per-DirectFB example options have been removed. The
3002 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3003 examples.
3004
3005config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
3006 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003007 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02003008 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3009 help
3010 The per-DirectFB example options have been removed. The
3011 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3012 examples.
3013
3014config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
3015 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003016 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02003017 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3018 help
3019 The per-DirectFB example options have been removed. The
3020 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3021 examples.
3022
3023config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
3024 bool "DirectFB example df_palette has been removed"
3025 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3026 help
3027 The per-DirectFB example options have been removed. The
3028 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3029 examples.
3030
3031config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
3032 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003033 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02003034 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3035 help
3036 The per-DirectFB example options have been removed. The
3037 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3038 examples.
3039
3040config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
3041 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003042 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02003043 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3044 help
3045 The per-DirectFB example options have been removed. The
3046 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3047 examples.
3048
3049config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
3050 bool "DirectFB example df_stress has been removed"
3051 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3052 help
3053 The per-DirectFB example options have been removed. The
3054 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3055 examples.
3056
3057config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
3058 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003059 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02003060 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3061 help
3062 The per-DirectFB example options have been removed. The
3063 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3064 examples.
3065
3066config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
3067 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003068 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02003069 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3070 help
3071 The per-DirectFB example options have been removed. The
3072 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3073 examples.
3074
3075config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
3076 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003077 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02003078 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3079 help
3080 The per-DirectFB example options have been removed. The
3081 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3082 examples.
3083
3084config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
3085 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003086 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02003087 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3088 help
3089 The per-DirectFB example options have been removed. The
3090 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3091 examples.
3092
Gary Bisson2b78fb22015-09-23 15:39:27 +02003093config BR2_PACKAGE_KOBS_NG
3094 bool "kobs-ng was replaced by imx-kobs"
3095 select BR2_LEGACY
3096 select BR2_PACKAGE_IMX_KOBS
3097 help
3098 The outdated kobs-ng has been replaced by the Freescale-
3099 maintained imx-kobs package.
3100
Thomas Petazzoni11573f52015-09-02 00:01:11 +02003101config BR2_PACKAGE_SAWMAN
3102 bool "sawman package removed"
3103 select BR2_LEGACY
3104 select BR2_PACKAGE_DIRECTFB_SAWMAN
3105 help
3106 This option has been removed because the sawman package no
3107 longer exists: it was merged inside DirectFB itself. This
3108 feature can now be enabled using the
3109 BR2_PACKAGE_DIRECTFB_SAWMAN option.
3110
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02003111config BR2_PACKAGE_DIVINE
3112 bool "divine package removed"
3113 select BR2_LEGACY
3114 select BR2_PACKAGE_DIRECTFB_DIVINE
3115 help
3116 This option has been removed because the divine package no
3117 longer exists: it was merged inside DirectFB itself. This
3118 feature can now be enabled using the
3119 BR2_PACKAGE_DIRECTFB_DIVINE option.
3120
3121###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03003122comment "Legacy options removed in 2015.08"
3123
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02003124config BR2_PACKAGE_KODI_PVR_ADDONS
3125 bool "Kodi PVR addon was split"
3126 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02003127 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02003128 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02003129 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02003130 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02003131 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02003132 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02003133 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02003134 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02003135 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02003136 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02003137 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02003138 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02003139 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02003140 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02003141 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02003142 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02003143 help
3144 Kodi PVR addon was split into seperate modules
3145
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03003146config BR2_BINUTILS_VERSION_2_23_2
3147 bool "binutils 2.23 option renamed"
3148 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03003149 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02003150 Binutils 2.23.2 has been removed, using a newer version is
3151 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03003152
3153config BR2_BINUTILS_VERSION_2_24
3154 bool "binutils 2.24 option renamed"
3155 select BR2_LEGACY
3156 select BR2_BINUTILS_VERSION_2_24_X
3157 help
3158 The binutils version option has been renamed to match the
3159 same patchlevel logic used by gcc. The new option is now
3160 BR2_BINUTILS_VERSION_2_24_X.
3161
3162config BR2_BINUTILS_VERSION_2_25
3163 bool "binutils 2.25 option renamed"
3164 select BR2_LEGACY
3165 select BR2_BINUTILS_VERSION_2_25_X
3166 help
3167 The binutils version option has been renamed to match the
3168 same patchlevel logic used by gcc. The new option is now
3169 BR2_BINUTILS_VERSION_2_25_X.
3170
Romain Naour1326e762015-07-14 19:35:14 +02003171config BR2_PACKAGE_PERF
3172 bool "perf option has been renamed"
3173 select BR2_LEGACY
3174 select BR2_LINUX_KERNEL_TOOL_PERF
3175 help
3176 The perf package has been moved as a Linux tools package,
3177 and the option to enable it is now
3178 BR2_LINUX_KERNEL_TOOL_PERF.
3179
Thomas Petazzoni2f845952015-07-11 14:52:53 +02003180config BR2_BINUTILS_VERSION_2_22
3181 bool "binutils 2.22 removed"
3182 select BR2_LEGACY
3183 help
3184 Binutils 2.22 has been removed, using a newer version is
3185 recommended.
3186
Gary Bisson4c0613e2015-05-26 10:19:37 +02003187config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
3188 bool "gpu-viv-bin-mx6q"
3189 select BR2_LEGACY
3190 select BR2_PACKAGE_IMX_GPU_VIV
3191 help
3192 Vivante graphics libraries have been renamed to
3193 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
3194 name.
3195
Matt Weber7742abe2015-06-02 08:28:35 -05003196config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
Matt Weber7742abe2015-06-02 08:28:35 -05003197 bool "libsemanage python bindings removed"
Ricardo Martincoskia1264442018-04-01 02:08:33 -03003198 depends on BR2_PACKAGE_PYTHON
Peter Seiderer758c5c72015-10-07 23:56:49 +02003199 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05003200 help
3201 This option has been removed, since the libsemanage Python
3202 bindings on the target were not useful.
3203
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03003204config BR2_TARGET_UBOOT_NETWORK
3205 bool "U-Boot custom network settings removed"
3206 select BR2_LEGACY
3207 help
3208 U-Boot's custom network settings options have been removed.
3209
3210###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05003211comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003212
Michał Leśniewskie3904a82015-05-19 20:26:30 +02003213config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
3214 bool "jffs2 16kB erasesize NAND flash option renamed"
3215 select BR2_LEGACY
3216 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
3217 help
3218 The JFFS2 NAND flash options now longer include the page
3219 size.
3220
3221config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
3222 bool "jffs2 128kB erasesize NAND flash option renamed"
3223 select BR2_LEGACY
3224 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
3225 help
3226 The JFFS2 NAND flash options now longer include the page
3227 size.
3228
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02003229config BR2_PACKAGE_MONO_20
3230 bool "2.0/3.5 .Net Runtime"
3231 select BR2_LEGACY
3232 help
3233 This option no longer exists, all versions of the .Net
3234 runtime are now installed.
3235
3236config BR2_PACKAGE_MONO_40
3237 bool "4.0 .Net Runtime"
3238 select BR2_LEGACY
3239 help
3240 This option no longer exists, all versions of the .Net
3241 runtime are now installed.
3242
3243config BR2_PACKAGE_MONO_45
3244 bool "4.5 .Net Runtime"
3245 select BR2_LEGACY
3246 help
3247 This option no longer exists, all versions of the .Net
3248 runtime are now installed.
3249
Peter Korsgaardefd49e32015-04-27 22:29:05 +02003250config BR2_CIVETWEB_WITH_LUA
3251 bool "civetweb lua option renamed"
3252 select BR2_LEGACY
3253 select BR2_PACKAGE_CIVETWEB_WITH_LUA
3254 help
3255 civetweb's lua option has been renamed to
3256 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
3257 packages name options.
3258
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02003259config BR2_PACKAGE_TIFF_TIFF2PDF
3260 bool "tiff utility-specific option removed"
3261 select BR2_LEGACY
3262 select BR2_PACKAGE_TIFF_UTILITIES
3263 help
3264 utility-specific options have been removed in favour of
3265 the new option BR2_PACKAGE_TIFF_UTILITIES.
3266
3267config BR2_PACKAGE_TIFF_TIFFCP
3268 bool "tiff utility-specific option removed"
3269 select BR2_LEGACY
3270 select BR2_PACKAGE_TIFF_UTILITIES
3271 help
3272 utility-specific options have been removed in favour of
3273 the new option BR2_PACKAGE_TIFF_UTILITIES.
3274
Thomas Petazzonie7035d42015-04-21 23:36:28 +02003275config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
3276 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003277 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02003278 help
3279 This option has never worked, so it has been removed.
3280
Yann E. MORIN02917962015-03-24 19:54:15 +01003281config BR2_TARGET_GENERIC_PASSWD_DES
3282 bool "Encoding passwords with DES has been removed"
3283 select BR2_LEGACY
3284 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003285 Paswords can now only be encoded with either of md5, sha256 or
3286 sha512. The default is md5, which is stronger that DES (but
3287 still pretty weak).
Yann E. MORIN02917962015-03-24 19:54:15 +01003288
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03003289config BR2_PACKAGE_GTK2_THEME_HICOLOR
3290 bool "hicolor (default theme) is a duplicate"
3291 select BR2_LEGACY
3292 select BR2_PACKAGE_HICOLOR_ICON_THEME
3293 help
3294 The option was just a duplicate of hicolor icon theme.
3295
Mike Williamsfd0e5f62015-03-06 12:17:45 -05003296config BR2_PACKAGE_VALGRIND_PTRCHECK
3297 bool "valgrind's PTRCheck was renamed to SGCheck"
3298 select BR2_LEGACY
3299 select BR2_PACKAGE_VALGRIND_SGCHECK
3300 help
3301 PTRCheck was renamed to SGCheck in valgrind
3302
3303###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003304comment "Legacy options removed in 2015.02"
3305
Pedro Aguilar10900c02015-02-27 06:38:07 +02003306config BR2_PACKAGE_LIBGC
3307 bool "libgc package removed"
3308 select BR2_LEGACY
3309 select BR2_PACKAGE_BDWGC
3310 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003311 libgc has been removed because we have the same package under
3312 a different name, bdwgc.
Pedro Aguilar10900c02015-02-27 06:38:07 +02003313
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01003314config BR2_PACKAGE_WDCTL
3315 bool "util-linux' wdctl option has been renamed"
3316 select BR2_LEGACY
3317 select BR2_PACKAGE_UTIL_LINUX_WDCTL
3318 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003319 util-linux' wdctl option has been renamed to
3320 BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other
3321 options are named.
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01003322
Danomi Manchegoe44edb82015-07-13 22:57:06 -04003323config BR2_PACKAGE_UTIL_LINUX_ARCH
3324 bool "util-linux' arch option has been removed"
3325 select BR2_LEGACY
3326 help
3327 util-linux' arch was dropped in util-linux 2.23, in favor of
3328 the coreutils version.
3329
3330config BR2_PACKAGE_UTIL_LINUX_DDATE
3331 bool "util-linux' ddate option has been removed"
3332 select BR2_LEGACY
3333 help
3334 util-linux' ddate was dropped in util-linux 2.23.
3335
Romain Naour3c476542015-01-18 20:53:08 +01003336config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
3337 bool "rpm's bzip2 payloads option has been removed"
3338 select BR2_LEGACY
3339 select BR2_PACKAGE_BZIP2
3340 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003341 The bzip2 payloads option rely entirely on the dependant
3342 package bzip2. So, you need to select it to enable this
3343 feature.
Romain Naour3c476542015-01-18 20:53:08 +01003344
3345config BR2_PACKAGE_RPM_XZ_PAYLOADS
3346 bool "rpm's xz payloads option has been removed"
3347 select BR2_LEGACY
3348 select BR2_PACKAGE_XZ
3349 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003350 The xz payloads option rely entirely on the dependant package
3351 xz. So, you need to select it to enable this feature.
Romain Naour3c476542015-01-18 20:53:08 +01003352
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03003353config BR2_PACKAGE_M4
3354 bool "m4 target package removed"
3355 select BR2_LEGACY
3356 help
3357 The m4 target package has been removed, it's been
3358 deprecated for some time now.
3359
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03003360config BR2_PACKAGE_FLEX_BINARY
3361 bool "flex binary in target option removed"
3362 select BR2_LEGACY
3363 help
3364 The flex binary in the target option has been removed.
3365 It's been deprecated for some time now and is essentially a
3366 development tool which isn't very useful in the target.
3367
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03003368config BR2_PACKAGE_BISON
3369 bool "bison target package removed"
3370 select BR2_LEGACY
3371 help
3372 The bison target package has been removed, it's been
3373 deprecated for some time now and is essentially a development
3374 tool which isn't very useful in the target.
3375
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03003376config BR2_PACKAGE_GOB2
3377 bool "gob2 target package removed"
3378 select BR2_LEGACY
3379 help
3380 The gob2 target package has been removed, it's been
3381 deprecated for some time now and was essentially useless
3382 without a target toolchain.
3383
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03003384config BR2_PACKAGE_DISTCC
3385 bool "distcc target package removed"
3386 select BR2_LEGACY
3387 help
3388 The distcc target package has been removed, it's been
3389 deprecated for some time now and was essentially useless
3390 without a target toolchain.
3391
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03003392config BR2_PACKAGE_HASERL_VERSION_0_8_X
3393 bool "haserl 0.8.x version removed"
3394 select BR2_LEGACY
3395 help
3396 The 0.8.x version option for haserl has been removed since it
3397 has been deprecated for some time now.
3398 You should be able to use the 0.9.x version without issues.
3399
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03003400config BR2_PACKAGE_STRONGSWAN_TOOLS
3401 bool "strongswan option has been removed"
3402 select BR2_LEGACY
3403 select BR2_PACKAGE_STRONGSWAN_PKI
3404 select BR2_PACKAGE_STRONGSWAN_SCEP
3405 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003406 The tools option has been removed upstream and the different
3407 tools have been split between the pki and scep options, with
3408 others deprecated.
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03003409
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003410config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02003411 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003412 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003413 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02003414 According to the github project page:
3415 https://github.com/pipelka/xbmc-addon-xvdr
3416 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003417
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01003418config BR2_PACKAGE_XBMC_PVR_ADDONS
3419 bool "xbmc options have been renamed"
3420 select BR2_LEGACY
3421 select BR2_PACKAGE_KODI_PVR_ADDONS
3422 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003423 The XBMC media center project was renamed to Kodi
3424 entertainment center
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01003425
Bernd Kuhls35784592014-12-23 18:46:27 +01003426config BR2_PACKAGE_XBMC
3427 bool "xbmc options have been renamed"
3428 select BR2_LEGACY
3429 select BR2_PACKAGE_KODI
3430 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003431 The XBMC media center project was renamed to Kodi
3432 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003433
3434config BR2_PACKAGE_XBMC_ALSA_LIB
3435 bool "xbmc options have been renamed"
3436 select BR2_LEGACY
3437 select BR2_PACKAGE_KODI_ALSA_LIB
3438 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003439 The XBMC media center project was renamed to Kodi
3440 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003441
3442config BR2_PACKAGE_XBMC_AVAHI
3443 bool "xbmc options have been renamed"
3444 select BR2_LEGACY
3445 select BR2_PACKAGE_KODI_AVAHI
3446 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003447 The XBMC media center project was renamed to Kodi
3448 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003449
3450config BR2_PACKAGE_XBMC_DBUS
3451 bool "xbmc options have been renamed"
3452 select BR2_LEGACY
3453 select BR2_PACKAGE_KODI_DBUS
3454 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003455 The XBMC media center project was renamed to Kodi
3456 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003457
3458config BR2_PACKAGE_XBMC_LIBBLURAY
3459 bool "xbmc options have been renamed"
3460 select BR2_LEGACY
3461 select BR2_PACKAGE_KODI_LIBBLURAY
3462 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003463 The XBMC media center project was renamed to Kodi
3464 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003465
3466config BR2_PACKAGE_XBMC_GOOM
3467 bool "xbmc options have been renamed"
3468 select BR2_LEGACY
3469 select BR2_PACKAGE_KODI_GOOM
3470 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003471 The XBMC media center project was renamed to Kodi
3472 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003473
3474config BR2_PACKAGE_XBMC_RSXS
3475 bool "xbmc options have been renamed"
3476 select BR2_LEGACY
3477 select BR2_PACKAGE_KODI_RSXS
3478 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003479 The XBMC media center project was renamed to Kodi
3480 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003481
3482config BR2_PACKAGE_XBMC_LIBCEC
3483 bool "xbmc options have been renamed"
3484 select BR2_LEGACY
3485 select BR2_PACKAGE_KODI_LIBCEC
3486 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003487 The XBMC media center project was renamed to Kodi
3488 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003489
3490config BR2_PACKAGE_XBMC_LIBMICROHTTPD
3491 bool "xbmc options have been renamed"
3492 select BR2_LEGACY
3493 select BR2_PACKAGE_KODI_LIBMICROHTTPD
3494 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003495 The XBMC media center project was renamed to Kodi
3496 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003497
3498config BR2_PACKAGE_XBMC_LIBNFS
3499 bool "xbmc options have been renamed"
3500 select BR2_LEGACY
3501 select BR2_PACKAGE_KODI_LIBNFS
3502 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003503 The XBMC media center project was renamed to Kodi
3504 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003505
3506config BR2_PACKAGE_XBMC_RTMPDUMP
3507 bool "xbmc options have been renamed"
3508 select BR2_LEGACY
3509 select BR2_PACKAGE_KODI_RTMPDUMP
3510 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003511 The XBMC media center project was renamed to Kodi
3512 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003513
3514config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
3515 bool "xbmc options have been renamed"
3516 select BR2_LEGACY
3517 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
3518 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003519 The XBMC media center project was renamed to Kodi
3520 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003521
3522config BR2_PACKAGE_XBMC_LIBSMBCLIENT
3523 bool "xbmc options have been renamed"
3524 select BR2_LEGACY
3525 select BR2_PACKAGE_KODI_LIBSMBCLIENT
3526 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003527 The XBMC media center project was renamed to Kodi
3528 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003529
3530config BR2_PACKAGE_XBMC_LIBTHEORA
3531 bool "xbmc options have been renamed"
3532 select BR2_LEGACY
3533 select BR2_PACKAGE_KODI_LIBTHEORA
3534 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003535 The XBMC media center project was renamed to Kodi
3536 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003537
3538config BR2_PACKAGE_XBMC_LIBUSB
3539 bool "xbmc options have been renamed"
3540 select BR2_LEGACY
3541 select BR2_PACKAGE_KODI_LIBUSB
3542 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003543 The XBMC media center project was renamed to Kodi
3544 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003545
3546config BR2_PACKAGE_XBMC_LIBVA
3547 bool "xbmc options have been renamed"
3548 select BR2_LEGACY
3549 select BR2_PACKAGE_KODI_LIBVA
3550 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003551 The XBMC media center project was renamed to Kodi
3552 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003553
3554config BR2_PACKAGE_XBMC_WAVPACK
3555 bool "xbmc options have been renamed"
3556 select BR2_LEGACY
3557 select BR2_PACKAGE_KODI_WAVPACK
3558 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003559 The XBMC media center project was renamed to Kodi
3560 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003561
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003562config BR2_PREFER_STATIC_LIB
3563 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01003564 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003565 help
3566 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
3567 highlights the fact that the option no longer "prefers"
3568 static libraries, but "enforces" static libraries (i.e
3569 shared libraries are completely unused).
3570
Samuel Martina44b1c12014-12-14 17:24:24 +01003571 Take care of updating the type of libraries you want under the
3572 "Build options" menu.
3573
Bernd Kuhls35784592014-12-23 18:46:27 +01003574###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02003575comment "Legacy options removed in 2014.11"
3576
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003577config BR2_x86_generic
3578 bool "x86 generic variant has been removed"
3579 select BR2_LEGACY
3580 help
3581 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02003582 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003583
Andreas Larsson40e18f22014-10-30 09:29:36 +01003584config BR2_GCC_VERSION_4_4_X
3585 bool "gcc 4.4.x has been removed"
3586 select BR2_LEGACY
3587 help
3588 The 4.4.x version of gcc has been removed. Use a newer
3589 version instead.
3590
Andreas Larsson43b78e72014-10-30 09:29:35 +01003591config BR2_sparc_sparchfleon
3592 bool "sparchfleon CPU has been removed"
3593 select BR2_LEGACY
3594 help
3595 The sparchfleon CPU was only supported in a patched gcc 4.4
3596 version. Its support has been removed in favor of the leon3
3597 CPU starting from gcc 4.8.x.
3598
3599config BR2_sparc_sparchfleonv8
3600 bool "sparchfleonv8 CPU has been removed"
3601 select BR2_LEGACY
3602 help
3603 The sparchfleonv8 CPU was only supported in a patched gcc
3604 4.4 version. Its support has been removed in favor of the
3605 leon3 CPU starting from gcc 4.8.x.
3606
3607config BR2_sparc_sparcsfleon
3608 bool "sparcsfleon CPU has been removed"
3609 select BR2_LEGACY
3610 help
3611 The sparcsfleon CPU was only supported in a patched gcc 4.4
3612 version. Its support has been removed in favor of the leon3
3613 CPU starting from gcc 4.8.x.
3614
3615config BR2_sparc_sparcsfleonv8
3616 bool "sparcsfleonv8 CPU has been removed"
3617 select BR2_LEGACY
3618 help
3619 The sparcsfleonv8 CPU was only supported in a patched gcc
3620 4.4 version. Its support has been removed in favor of the
3621 leon3 CPU starting from gcc 4.8.x.
3622
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02003623config BR2_PACKAGE_XLIB_LIBPCIACCESS
3624 bool "xlib-libpciaccess option has been renamed"
3625 depends on BR2_PACKAGE_XORG7
3626 select BR2_LEGACY
3627 select BR2_PACKAGE_LIBPCIACCESS
3628 help
3629 libpciaccess neither depends on X11 nor Xlib. Thus the
3630 package has been renamed BR2_PACKAGE_LIBPCIACCESS
3631
Yann E. MORINb581bba2014-09-21 20:38:13 +02003632config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
3633 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003634 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02003635 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
3636 help
3637 The Xceive xc5000 option now also handles older firmwares from
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003638 Xceive (the xc4000 series), as well as new firmwares (the
3639 xc5000c) from Cresta, who bought Xceive.
Yann E. MORINb581bba2014-09-21 20:38:13 +02003640
Yann E. MORINdac546e2014-09-21 20:38:12 +02003641config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3642 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003643 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02003644 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3645 help
3646 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3647 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3648 to better account for the fact that a T5 variant exists.
3649
Yann E. MORIN120136e2014-09-21 20:38:09 +02003650config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
3651 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003652 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003653 help
3654 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
3655 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
3656 select it in:
3657 Target packages -> Hardware handling ->
3658 Firmware -> linux-firmware -> WiFi firmware ->
3659 iwlwifi 3160/726x revision to use (revision 7)
3660
3661config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
3662 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003663 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003664 help
3665 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
3666 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
3667 select it in:
3668 Target packages -> Hardware handling ->
3669 Firmware -> linux-firmware -> WiFi firmware ->
3670 iwlwifi 3160/726x revision to use (revision 8)
3671
3672###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003673comment "Legacy options removed in 2014.08"
3674
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003675config BR2_PACKAGE_LIBELF
3676 bool "libelf has been removed"
3677 select BR2_PACKAGE_ELFUTILS
3678 select BR2_LEGACY
3679 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003680 The libelf package provided an old version of the libelf
3681 library and is deprecated. The libelf library is now provided
3682 by the elfutils package.
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003683
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003684config BR2_KERNEL_HEADERS_3_8
3685 bool "kernel headers version 3.8.x are no longer supported"
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003686 select BR2_LEGACY
3687 help
3688 Version 3.8.x of the Linux kernel headers have been deprecated
3689 for more than four buildroot releases and are now removed.
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003690
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02003691config BR2_PACKAGE_GETTEXT_TOOLS
3692 bool "support for gettext-tools on target has been removed"
3693 select BR2_LEGACY
3694 help
3695 The option to install the gettext utilities on the target
3696 has been removed. This is not necessary as Buildroot is not
3697 designed to provide a full development environment on the
3698 target. gettext tools should be used on the build machine
3699 instead.
3700
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003701config BR2_PACKAGE_PROCPS
3702 bool "procps has been replaced by procps-ng"
3703 select BR2_PACKAGE_PROCPS_NG
3704 select BR2_LEGACY
3705 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003706 The procps package has been replaced by the equivalent
3707 procps-ng.
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003708
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02003709config BR2_BINUTILS_VERSION_2_20_1
3710 bool "binutils 2.20.1 has been removed"
3711 select BR2_LEGACY
3712 help
3713 The 2.20.1 version of binutils has been removed. Use a newer
3714 version instead.
3715
3716config BR2_BINUTILS_VERSION_2_21
3717 bool "binutils 2.21 has been removed"
3718 select BR2_LEGACY
3719 help
3720 The 2.21 version of binutils has been removed. Use a newer
3721 version instead.
3722
3723config BR2_BINUTILS_VERSION_2_23_1
3724 bool "binutils 2.23.1 has been removed"
3725 select BR2_LEGACY
3726 help
3727 The 2.23.1 version of binutils has been removed. Use a newer
3728 version instead.
3729
Thomas Petazzoni506b9642014-07-01 20:03:03 +02003730config BR2_UCLIBC_VERSION_0_9_32
3731 bool "uclibc 0.9.32 has been removed"
3732 select BR2_LEGACY
3733 help
3734 The 0.9.32 version of uClibc has been removed. Use a newer
3735 version instead.
3736
Thomas Petazzonid10e0802014-07-01 20:03:06 +02003737config BR2_GCC_VERSION_4_3_X
3738 bool "gcc 4.3.x has been removed"
3739 select BR2_LEGACY
3740 help
3741 The 4.3.x version of gcc has been removed. Use a newer
3742 version instead.
3743
3744config BR2_GCC_VERSION_4_6_X
3745 bool "gcc 4.6.x has been removed"
3746 select BR2_LEGACY
3747 help
3748 The 4.6.x version of gcc has been removed. Use a newer
3749 version instead.
3750
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003751config BR2_GDB_VERSION_7_4
3752 bool "gdb 7.4 has been removed"
3753 select BR2_LEGACY
3754 help
3755 The 7.4 version of gdb has been removed. Use a newer version
3756 instead.
3757
3758config BR2_GDB_VERSION_7_5
3759 bool "gdb 7.5 has been removed"
3760 select BR2_LEGACY
3761 help
3762 The 7.5 version of gdb has been removed. Use a newer version
3763 instead.
3764
Thomas Petazzonib18dca02014-07-01 20:03:09 +02003765config BR2_BUSYBOX_VERSION_1_19_X
3766 bool "busybox version selection has been removed"
3767 select BR2_LEGACY
3768 help
3769 The possibility of selecting the Busybox version has been
3770 removed. Use the latest version provided by the Busybox
3771 package instead.
3772
3773config BR2_BUSYBOX_VERSION_1_20_X
3774 bool "busybox version selection has been removed"
3775 select BR2_LEGACY
3776 help
3777 The possibility of selecting the Busybox version has been
3778 removed. Use the latest version provided by the Busybox
3779 package instead.
3780
3781config BR2_BUSYBOX_VERSION_1_21_X
3782 bool "busybox version selection has been removed"
3783 select BR2_LEGACY
3784 help
3785 The possibility of selecting the Busybox version has been
3786 removed. Use the latest version provided by the Busybox
3787 package instead.
3788
Ezequiel García07ac0452014-07-05 18:07:40 -03003789config BR2_PACKAGE_LIBV4L_DECODE_TM6000
3790 bool "decode_tm6000"
3791 select BR2_PACKAGE_LIBV4L_UTILS
3792 select BR2_LEGACY
3793 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003794 This libv4l option has been deprecated and replaced by a
3795 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003796
3797config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
3798 bool "ir-keytable"
3799 select BR2_PACKAGE_LIBV4L_UTILS
3800 select BR2_LEGACY
3801 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003802 This libv4l option has been deprecated and replaced by a
3803 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003804
3805config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
3806 bool "v4l2-compliance"
3807 select BR2_PACKAGE_LIBV4L_UTILS
3808 select BR2_LEGACY
3809 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003810 This libv4l option has been deprecated and replaced by a
3811 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003812
3813config BR2_PACKAGE_LIBV4L_V4L2_CTL
3814 bool "v4l2-ctl"
3815 select BR2_PACKAGE_LIBV4L_UTILS
3816 select BR2_LEGACY
3817 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003818 This libv4l option has been deprecated and replaced by a
3819 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003820
3821config BR2_PACKAGE_LIBV4L_V4L2_DBG
3822 bool "v4l2-dbg"
3823 select BR2_PACKAGE_LIBV4L_UTILS
3824 select BR2_LEGACY
3825 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003826 This libv4l option has been deprecated and replaced by a
3827 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003828
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003829###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003830comment "Legacy options removed in 2014.05"
3831
Peter Seiderer4990a382014-04-23 00:12:23 +02003832config BR2_PACKAGE_EVTEST_CAPTURE
3833 bool "evtest-capture support removed (dropped since evtest 1.31)"
3834 select BR2_LEGACY
3835 help
3836 Support for evtest-capture has been removed (dropped from
3837 evtest package since version 1.31), use evemu package
3838 instead.
3839
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003840config BR2_KERNEL_HEADERS_3_6
3841 bool "kernel headers version 3.6.x are no longer supported"
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003842 select BR2_LEGACY
3843 help
3844 Version 3.6.x of the Linux kernel headers have been deprecated
3845 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003846
3847config BR2_KERNEL_HEADERS_3_7
3848 bool "kernel headers version 3.7.x are no longer supported"
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003849 select BR2_LEGACY
3850 help
3851 Version 3.7.x of the Linux kernel headers have been deprecated
3852 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003853
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02003854config BR2_PACKAGE_VALA
3855 bool "vala target package has been removed"
3856 select BR2_LEGACY
3857 help
3858 The 'vala' target package has been removed since it has been
3859 deprecated for more than four buildroot releases.
3860 Note: the host vala package still exists.
3861
Yann E. MORINd6a37912014-04-07 21:58:03 +02003862config BR2_TARGET_TZ_ZONELIST
3863 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
3864
3865config BR2_PACKAGE_TZDATA_ZONELIST
3866 string "tzdata: the timezone list option has been renamed"
3867 help
3868 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003869 BR2_TARGET_TZ_ZONELIST, and moved to the "System
3870 configuration" menu. You'll need to select BR2_TARGET_TZ_INFO.
Yann E. MORINd6a37912014-04-07 21:58:03 +02003871
3872config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
3873 bool
3874 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
3875 select BR2_LEGACY
3876
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003877config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
3878 bool "Lua command-line editing none has been renamed"
3879 select BR2_LEGACY
3880 help
3881 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003882 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to
3883 select it in the corresponding choice.
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003884
3885config BR2_PACKAGE_LUA_INTERPRETER_READLINE
3886 bool "Lua command-line editing using readline has been renamed"
3887 select BR2_LEGACY
3888 help
3889 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
3890 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
3891 it in the corresponding choice.
3892
3893config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
3894 bool "Lua command-line editing using linenoise has been renamed"
3895 select BR2_LEGACY
3896 help
3897 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
3898 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
3899 it in the corresponding choice.
3900
Yann E. MORIN365ae612014-03-28 01:00:24 +01003901config BR2_PACKAGE_DVB_APPS_UTILS
3902 bool "dvb-apps utilities now built by default"
3903 select BR2_LEGACY
3904 help
3905 The dvb-apps utilities are now always built when the dvb-apps
3906 package is selected.
3907
Yann E. MORIN971e3312014-03-01 15:52:56 +01003908config BR2_KERNEL_HEADERS_SNAP
3909 bool "Local Linux snapshot support removed"
3910 select BR2_LEGACY
3911 help
3912 Support for using a custom snapshot to install the Linux
3913 kernel headers has been removed.
3914
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003915config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
3916 bool "/dev management by udev removed"
3917 select BR2_LEGACY
3918 help
3919 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003920 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003921
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003922 Therefore, if you are not using 'systemd' as init system, you
3923 must choose 'Dynamic using eudev' in the '/dev management'
3924 menu to get the same behaviour as in your old configuration.
3925
3926 If you are using 'systemd', its internal implementation of
3927 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003928
3929 You must also check the packages depending on 'udev' are still
3930 selected.
3931
3932config BR2_PACKAGE_UDEV
3933 bool "udev is now a virtual package"
3934 select BR2_LEGACY
3935 select BR2_PACKAGE_HAS_UDEV
3936 help
3937 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003938 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003939
3940 Your old configuration refers to packages depending on 'udev',
3941 either for build or at runtime.
3942
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003943 Check that a 'udev' provider is selected. If you are not using
3944 'systemd' as init system, 'eudev' should be selected, which is
3945 the case if '/dev management' is set to 'Dynamic using eudev'.
3946
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003947 If you are using 'systemd', its internal implementation of
3948 'udev' is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003949
3950config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003951 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003952 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003953 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
3954 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003955 help
3956 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003957 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003958
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003959 If you are not using 'systemd' as init system, udev rules
3960 generation will be handled by 'eudev'. Check that
3961 '/dev management' is set to 'Dynamic using eudev' to get
3962 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003963
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003964 If you are using 'systemd', it internal implementation of
3965 'udev' will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003966
3967config BR2_PACKAGE_UDEV_ALL_EXTRAS
3968 bool "udev extras removed"
3969 select BR2_LEGACY
3970 help
3971 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003972 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003973
3974 The option to enable the extra features of 'udev' (gudev, ...)
3975 has been removed. These features are automatically enabled in
3976 the 'udev' providers if the dependencies are selected. For
3977 example, selecting 'libglib2' will trigger the build of gudev.
3978
Bernd Kuhls5562be12014-03-01 16:41:10 +01003979config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
3980 bool "xlib-libpthread-stubs option has been renamed"
3981 depends on BR2_PACKAGE_XORG7
3982 select BR2_LEGACY
3983 select BR2_PACKAGE_LIBPTHREAD_STUBS
3984 help
3985 The pthread stubs neither depend on X11 nor Xlib. Thus the
3986 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
3987
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003988###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01003989comment "Legacy options removed in 2014.02"
3990
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003991config BR2_sh2
3992 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003993 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003994 help
3995 Due to an inexistent user base and generally poor Linux
3996 support, the support for the SH2 architecture was removed.
3997
3998config BR2_sh3
3999 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02004000 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01004001 help
4002 Due to an inexistent user base and generally poor Linux
4003 support, the support for the SH3 architecture was removed.
4004
4005config BR2_sh3eb
4006 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02004007 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01004008 help
4009 Due to an inexistent user base and generally poor Linux
4010 support, the support for the SH3eb architecture was removed.
4011
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01004012config BR2_KERNEL_HEADERS_3_1
4013 bool "kernel headers version 3.1.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01004014 select BR2_LEGACY
4015 help
4016 Version 3.1.x of the Linux kernel headers have been deprecated
4017 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01004018
4019config BR2_KERNEL_HEADERS_3_3
4020 bool "kernel headers version 3.3.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01004021 select BR2_LEGACY
4022 help
4023 Version 3.3.x of the Linux kernel headers have been deprecated
4024 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01004025
4026config BR2_KERNEL_HEADERS_3_5
4027 bool "kernel headers version 3.5.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01004028 select BR2_LEGACY
4029 help
4030 Version 3.5.x of the Linux kernel headers have been deprecated
4031 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01004032
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01004033config BR2_GDB_VERSION_7_2
4034 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02004035 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01004036 select BR2_LEGACY
4037 help
4038 Version 7.2.x of gdb has been deprecated for more than four
4039 buildroot releases and is now removed. As an alternative, gdb
4040 7.5.x has been automatically selected in your configuration.
4041
4042config BR2_GDB_VERSION_7_3
4043 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02004044 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01004045 select BR2_LEGACY
4046 help
4047 Version 7.3.x of gdb has been deprecated for more than four
4048 buildroot releases and is now removed. As an alternative, gdb
4049 7.5.x has been automatically selected in your configuration.
4050
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01004051config BR2_PACKAGE_CCACHE
4052 bool "ccache target package has been removed"
4053 select BR2_LEGACY
4054 help
4055 The 'ccache' target package has been removed since it has been
4056 deprecated for more than four buildroot releases.
4057 Note: using ccache for speeding up builds is still supported.
4058
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01004059config BR2_HAVE_DOCUMENTATION
4060 bool "support for documentation on target has been removed"
4061 select BR2_LEGACY
4062 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004063 Support for documentation on target has been removed since it
4064 has been deprecated for more than four buildroot releases.
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01004065
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01004066config BR2_PACKAGE_AUTOMAKE
4067 bool "automake target package has been removed"
4068 select BR2_LEGACY
4069 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004070 The 'automake' target package has been removed since it has
4071 been deprecated for more than four buildroot releases.
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01004072 Note: the host automake still exists.
4073
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01004074config BR2_PACKAGE_AUTOCONF
4075 bool "autoconf target package has been removed"
4076 select BR2_LEGACY
4077 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004078 The 'autoconf' target package has been removed since it has
4079 been deprecated for more than four buildroot releases.
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01004080 Note: the host autoconf still exists.
4081
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01004082config BR2_PACKAGE_XSTROKE
4083 bool "xstroke has been removed"
4084 select BR2_LEGACY
4085 help
4086 The 'xstroke' package has been removed since it has been
4087 deprecated for more than four buildroot releases.
4088
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01004089config BR2_PACKAGE_LZMA
4090 bool "lzma target package has been removed"
4091 select BR2_LEGACY
4092 help
4093 The 'lzma' target package has been removed since it has been
4094 deprecated for more than four buildroot releases.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004095 Note: generating lzma-compressed rootfs images is still
4096 supported.
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01004097
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01004098config BR2_PACKAGE_TTCP
4099 bool "ttcp has been removed"
4100 select BR2_LEGACY
4101 help
4102 The 'ttcp' package has been removed since it has been
4103 deprecated for more than four buildroot releases.
4104
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00004105config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01004106 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00004107 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01004108 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00004109 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004110 The 'libnfc-llcp' package has been removed since upstream
4111 renamed to 'libllcp'. We have added a new package for
4112 'libllcp' and bumped the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00004113
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00004114config BR2_PACKAGE_MYSQL_CLIENT
4115 bool "MySQL client renamed to MySQL"
4116 select BR2_LEGACY
4117 select BR2_PACKAGE_MYSQL
4118 help
4119 The option has been renamed BR2_PACKAGE_MYSQL
4120
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01004121config BR2_PACKAGE_SQUASHFS3
4122 bool "squashfs3 has been removed"
4123 select BR2_LEGACY
4124 select BR2_PACKAGE_SQUASHFS
4125 help
4126 The 'squashfs3' package has been removed since it has been
4127 deprecated for more than four buildroot releases. Package
4128 'squashfs' (4) has been selected automatically as replacement.
4129
4130config BR2_TARGET_ROOTFS_SQUASHFS3
4131 bool "squashfs3 rootfs support has been removed"
4132 select BR2_LEGACY
4133 help
4134 Together with the removal of the squashfs3 package, support
4135 for squashfs3 root filesystems has been removed too. Squashfs
4136 root filesystems will automatically use squashfs4 now.
4137
Arnaud Aujon560fe852013-12-15 20:23:12 +01004138config BR2_PACKAGE_NETKITBASE
4139 bool "netkitbase has been removed"
4140 select BR2_LEGACY
4141 help
4142 The 'netkitbase' package has been removed since it has been
4143 deprecated since 2012.11. This package provided 'inetd'
4144 which is replaced by 'xinet' and 'ping' which is replaced by
4145 'busybox' or 'fping'.
4146
4147config BR2_PACKAGE_NETKITTELNET
4148 bool "netkittelnet has been removed"
4149 select BR2_LEGACY
4150 help
4151 The 'netkittelnet' package has been removed since it has
4152 been deprecated since 2012.11. 'busybox' provides a telnet
4153 client and should be used instead.
4154
Francois Perrad63058f82014-01-11 16:42:09 +01004155config BR2_PACKAGE_LUASQL
4156 bool "luasql has been replaced by luasql-sqlite3"
4157 select BR2_PACKAGE_LUASQL_SQLITE3
4158 select BR2_LEGACY
4159 help
4160 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
4161
Francois Perrada6c53472014-01-11 16:42:08 +01004162config BR2_PACKAGE_LUACJSON
4163 bool "luacjson has been replaced by lua-cjson"
4164 select BR2_PACKAGE_LUA_CJSON
4165 select BR2_LEGACY
4166 help
4167 The option has been renamed BR2_PACKAGE_LUA_CJSON.
4168
Arnaud Aujon560fe852013-12-15 20:23:12 +01004169###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004170comment "Legacy options removed in 2013.11"
4171
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01004172config BR2_PACKAGE_LVM2_DMSETUP_ONLY
4173 bool "lvm2's 'dmsetup only' option removed"
4174 select BR2_LEGACY
4175 help
4176 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
4177 led to problems with other packages that need the full lvm2
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004178 suite. Therefore, the option has been replaced with the
4179 positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01004180
4181# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
4182# in order to automatically propagate old configs
4183
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01004184config BR2_PACKAGE_QT_JAVASCRIPTCORE
4185 bool "qt javascriptcore option removed"
4186 select BR2_LEGACY
4187 help
4188 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
4189 force the activation or disabling of the JIT compiler in the
4190 Qt Javascript interpreter. However, the JIT compiler is not
4191 available for all architectures, so forcing its activation
4192 does not always work. Moreover, Qt knows by itself for which
4193 architectures JIT support is possible, and will
4194 automatically enable it if possible.
4195
4196 Therefore, this option was in fact useless, and causing
4197 build problems when enabled on architectures for which the
4198 JIT support was not available. It has been removed, and
4199 there is no replacement: Qt will enable JIT at compile time
4200 when possible.
4201
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004202config BR2_PACKAGE_MODULE_INIT_TOOLS
4203 bool "module-init-tools replaced by kmod"
4204 select BR2_PACKAGE_KMOD
4205 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01004206 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004207 help
4208 The 'module-init-tools' package has been removed, since it
4209 has been depracated upstream and replaced by 'kmod'.
4210
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02004211config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
4212 string "u-boot: the git repository URL option has been renamed"
4213 help
4214 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
4215 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
4216
4217config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
4218 bool
4219 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
4220 select BR2_LEGACY
4221
4222# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
4223# boot/uboot/Config.in
4224
4225config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
4226 string "u-boot: the git repository version option has been renamed"
4227 help
4228 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
4229 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
4230
4231config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
4232 bool
4233 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
4234 select BR2_LEGACY
4235
4236# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
4237# boot/uboot/Config.in
4238
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02004239config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
4240 string "linux: the git repository URL option has been renamed"
4241 help
4242 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
4243 been renamed to
4244 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
4245
4246config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
4247 bool
4248 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
4249 select BR2_LEGACY
4250
4251# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
4252# linux/Config.in
4253
4254config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
4255 string "linux: the git repository version option has been renamed"
4256 help
4257 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
4258 been renamed to
4259 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
4260
4261config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
4262 bool
4263 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
4264 select BR2_LEGACY
4265
4266# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
4267# linux/Config.in
4268
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004269###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02004270comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03004271
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02004272config BR2_ARM_OABI
4273 bool "ARM OABI support has been removed"
4274 select BR2_LEGACY
4275 help
4276 The support for the ARM OABI was deprecated since a while,
4277 and has been removed completely from Buildroot. It is also
4278 deprecated in upstream gcc, since gcc 4.7. People should
4279 switch to EABI instead, which should not be a problem as
4280 long as you don't have pre-built OABI binaries in your
4281 system that you can't recompile.
4282
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03004283config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
4284 bool "dosfstools dosfsck renamed to fsck.fat"
4285 select BR2_LEGACY
4286 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
4287 help
4288 dosfsck was renamed upstream to fsck.fat for consistency.
4289
4290config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
4291 bool "dosfstools dosfslabel renamed to fatlabel"
4292 select BR2_LEGACY
4293 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
4294 help
4295 doslabel was renamed upstream to fatlabel for consistency.
4296
4297config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
4298 bool "dosfstools mkdosfs renamed to mkfs.fat"
4299 select BR2_LEGACY
4300 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
4301 help
4302 mkdosfs was renamed upstream to mkfs.fat for consistency.
4303
Thomas Petazzonie21db002013-06-30 21:28:57 +02004304config BR2_ELF2FLT
4305 bool "the elf2flt option has been renamed"
4306 select BR2_LEGACY
4307 help
4308 The BR2_ELF2FLT option has been renamed to
4309 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
4310 the package infrastructure.
4311
Thomas Petazzonid8060052013-07-16 10:03:17 +02004312config BR2_VFP_FLOAT
4313 bool "the ARM VFP floating point option has been renamed"
4314 select BR2_LEGACY
4315 help
4316 Due to a major refactoring of the floating-point handling of
4317 the ARM architecture support, the BR2_VFP_FLOAT option has
4318 been replaced with a choice of options that allows to select
4319 between various VFP versions/capabilities.
4320
Samuel Martinba8f82b2013-08-30 06:08:59 +02004321config BR2_PACKAGE_GCC_TARGET
4322 bool "gcc on the target filesystem has been removed"
4323 select BR2_LEGACY
4324 help
4325 The support for gcc in the target filesystem was deprecated
4326 since a while, and has been removed completely from Buildroot.
4327 See Buildroot's documentation for more explanations.
4328
4329config BR2_HAVE_DEVFILES
4330 bool "development files in target filesystem has been removed"
4331 select BR2_LEGACY
4332 help
4333 The installation of the development files in the target
4334 filesystem was deprecated since a while, and has been removed
4335 completely from Buildroot.
4336 See Buildroot's documentation for more explanations.
4337
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00004338endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02004339
4340endif # !SKIP_LEGACY