blob: 25b48fba82e0574f53f0bb99c764a8d8f0dd3568 [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
Francois Perrad297613f2018-12-02 11:25:06 +0100147comment "Legacy options removed in 2019.02"
148
Peter Korsgaard5a8bc802019-02-06 15:10:58 +0100149config BR2_PACKAGE_QT
150 bool "qt package removed"
151 select BR2_LEGACY
152 help
153 The qt package was removed.
154
Peter Korsgaarde228a9f2019-02-06 15:10:52 +0100155config BR2_PACKAGE_QTUIO
156 bool "qtuio package removed"
157 select BR2_LEGACY
158 help
159 The qtuio package was removed.
160
Peter Korsgaard5de7c032019-02-06 15:10:51 +0100161config BR2_PACKAGE_PINENTRY_QT4
162 bool "pinentry-qt4 option removed"
163 select BR2_LEGACY
164 help
165 The pinentry-qt4 option was removed.
166
Peter Korsgaard3f821fc2019-02-06 15:10:50 +0100167config BR2_PACKAGE_POPPLER_QT
168 bool "poppler qt option removed"
169 select BR2_LEGACY
170 help
171 The poppler qt option was removed.
172
Peter Korsgaard3a3fdae2019-02-06 15:10:49 +0100173config BR2_PACKAGE_OPENCV3_WITH_QT
174 bool "opencv3 qt backend option removed"
175 select BR2_LEGACY
176 help
177 The opencv3 qt backend option was removed.
178
Peter Korsgaard882ab1c2019-02-06 15:10:48 +0100179config BR2_PACKAGE_OPENCV_WITH_QT
180 bool "opencv qt backend option removed"
181 select BR2_LEGACY
182 help
183 The opencv qt backend option was removed.
184
Peter Korsgaardef842792019-02-06 15:10:47 +0100185config BR2_PACKAGE_AMD_CATALYST_CCCLE
186 bool "catalyst control center option removed"
187 select BR2_LEGACY
188 help
189 The AMD Catalyst Control Center option was removed.
190
Peter Korsgaard3a56bc52019-02-06 15:10:46 +0100191config BR2_PACKAGE_SDL_QTOPIA
192 bool "sdl qtopia video driver option removed"
193 select BR2_LEGACY
194 help
195 The SDL QTopia video driver option was removed.
196
Peter Korsgaard90bbfe52019-02-06 15:10:44 +0100197config BR2_PACKAGE_PYTHON_PYQT
198 bool "python-pyqt package removed"
199 select BR2_LEGACY
200 help
201 The python-pyqt package was removed. Consider python-pyqt5
202 instead.
203
Peter Korsgaardfcd9c852019-02-06 15:10:43 +0100204config BR2_PACKAGE_GNURADIO_QTGUI
205 bool "gnuradio gr-qtgui option removed"
206 select BR2_LEGACY
207 help
208 The gr-qtgui option was removed.
209
Peter Korsgaarde0d540b2019-02-05 21:03:09 +0100210config BR2_PACKAGE_LUACRYPTO
211 bool "luacrypto package removed"
212 select BR2_LEGACY
213 help
214 The luacrypto package was removed. Consider luaossl instead.
215
Peter Korsgaard0478bea2019-02-05 20:01:09 +0100216config BR2_PACKAGE_TN5250
217 bool "tn5250 package removed"
218 select BR2_LEGACY
219 help
220 The tn5250 package was removed.
221
Fabrice Fontaine428ed392019-01-13 18:43:16 +0100222config BR2_PACKAGE_BOOST_SIGNALS
223 bool "Boost signals removed"
224 select BR2_LEGACY
225 help
226 Its removal was announced in boost 1.68 and its deprecation
227 was announced in 1.54. Users are encouraged to use Signals2
228 instead.
229
Thomas Petazzoni7883e552019-01-21 14:51:10 +0100230config BR2_PACKAGE_FFTW_PRECISION_SINGLE
231 bool "single"
232 select BR2_LEGACY
233 select BR2_PACKAGE_FFTW_SINGLE
234 help
235 This option has been removed in favor of
236 BR2_PACKAGE_FFTW_SINGLE.
237
238config BR2_PACKAGE_FFTW_PRECISION_DOUBLE
239 bool "double"
240 select BR2_LEGACY
241 select BR2_PACKAGE_FFTW_DOUBLE
242 help
243 This option has been removed in favor of
244 BR2_PACKAGE_FFTW_DOUBLE.
245
246config BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE
247 bool "long double"
248 depends on !(BR2_TOOLCHAIN_BUILDROOT_UCLIBC && \
249 (BR2_arm || BR2_mips || BR2_mipsel))
250 select BR2_LEGACY
251 select BR2_PACKAGE_FFTW_LONG_DOUBLE
252 help
253 This option has been removed in favor of
254 BR2_PACKAGE_FFTW_LONG_DOUBLE.
255
256config BR2_PACKAGE_FFTW_PRECISION_QUAD
257 bool "quad"
258 depends on (BR2_i386 || BR2_x86_64) && BR2_USE_WCHAR
259 select BR2_LEGACY
260 select BR2_PACKAGE_FFTW_QUAD
261 help
262 This option has been removed in favor of
263 BR2_PACKAGE_FFTW_QUAD.
264
Francois Perrad297613f2018-12-02 11:25:06 +0100265config BR2_PACKAGE_LUA_5_2
266 bool "Lua 5.2.x version removed"
267 select BR2_LEGACY
268 select BR2_PACKAGE_LUA_5_3
269 help
270 The Lua 5.2.x version was removed.
271
Matt Weberbf362602018-12-05 20:06:29 -0600272config BR2_TARGET_GENERIC_PASSWD_MD5
273 bool "target passwd md5 format support has been removed"
274 select BR2_LEGACY
275 help
276 The default has been moved to SHA256 and all C libraries
277 now support that method by default
278
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200279comment "Legacy options removed in 2018.11"
280
Matt Weber070b1832018-09-20 16:54:24 -0500281config BR2_TARGET_XLOADER
282 bool "xloader has been removed"
283 select BR2_LEGACY
284 help
285 The package has been removed as u-boot SPL provides
286 similar functionality
287
Matt Weber5e8790d2018-10-15 11:46:44 -0500288config BR2_PACKAGE_TIDSP_BINARIES
289 bool "tidsp-binaries package removed"
290 select BR2_LEGACY
291 help
292 The tidsp-binaries package was removed.
293
Matt Webere8eb7f52018-10-15 11:46:43 -0500294config BR2_PACKAGE_DSP_TOOLS
295 bool "dsp-tools package removed"
296 select BR2_LEGACY
297 help
298 The dsp-tools package was removed.
299
Matt Weber91542902018-10-15 11:46:42 -0500300config BR2_PACKAGE_GST_DSP
301 bool "gst-dsp package removed"
302 select BR2_LEGACY
303 help
304 The gst-dsp package was removed.
305
Fabrice Fontaine2c3c7c42018-09-30 16:02:06 +0200306config BR2_PACKAGE_BOOTUTILS
307 bool "bootutils package removed"
308 select BR2_LEGACY
309 help
310 The bootutils package was removed.
311
Romain Naouraddcc392018-09-30 14:55:46 +0200312config BR2_PACKAGE_EXPEDITE
313 bool "expedite package has been removed"
314 select BR2_LEGACY
315 help
316 expedite is not actively maintained anymore.
317 https://sourceforge.net/p/enlightenment/mailman/message/36428571
318
Bernd Kuhls3d3235f2018-09-10 18:30:00 +0200319config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT
320 bool "mesa3d opengl texture float option removed"
321 select BR2_LEGACY
322 help
323 mesa3d now unconditionally enables floating-point textures,
324 as the corresponding patent has expired.
325
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200326config BR2_KERNEL_HEADERS_4_10
327 bool "kernel headers version 4.10.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200328 select BR2_LEGACY
329 help
330 Version 4.10.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200331 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200332
333config BR2_KERNEL_HEADERS_4_11
334 bool "kernel headers version 4.11.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200335 select BR2_LEGACY
336 help
337 Version 4.11.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200338 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200339
340config BR2_KERNEL_HEADERS_4_12
341 bool "kernel headers version 4.12.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200342 select BR2_LEGACY
343 help
344 Version 4.12.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200345 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200346
347config BR2_KERNEL_HEADERS_4_13
348 bool "kernel headers version 4.13.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200349 select BR2_LEGACY
350 help
351 Version 4.13.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200352 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200353
354config BR2_KERNEL_HEADERS_4_15
355 bool "kernel headers version 4.15.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200356 select BR2_LEGACY
357 help
358 Version 4.15.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200359 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200360
Yann E. MORINd220ce62018-10-04 22:00:30 +0200361config BR2_KERNEL_HEADERS_4_17
362 bool "kernel headers version 4.17.x are no longer supported"
363 select BR2_LEGACY
364 help
365 Version 4.17.x of the Linux kernel headers are no longer
366 maintained upstream and are now removed.
367
Baruch Siach00d63a12018-11-16 08:40:43 +0200368config BR2_PACKAGE_LIBNFTNL_XML
369 bool "libnftl no longer supports XML output"
370 select BR2_LEGACY
371 help
372 libnftnl removed integration with libmxml.
373
Peter Korsgaardebee2c62019-01-02 14:52:45 +0100374config BR2_KERNEL_HEADERS_3_2
375 bool "kernel headers version 3.2.x are no longer supported"
376 select BR2_LEGACY
377 help
378 Version 3.2.x of the Linux kernel headers are no longer
379 maintained upstream and are now removed.
380
381config BR2_KERNEL_HEADERS_4_1
382 bool "kernel headers version 4.1.x are no longer supported"
383 select BR2_LEGACY
384 help
385 Version 4.1.x of the Linux kernel headers are no longer
386 maintained upstream and are now removed.
387
388config BR2_KERNEL_HEADERS_4_16
389 bool "kernel headers version 4.16.x are no longer supported"
390 select BR2_LEGACY
391 help
392 Version 4.16.x of the Linux kernel headers are no longer
393 maintained upstream and are now removed.
394
395config BR2_KERNEL_HEADERS_4_18
396 bool "kernel headers version 4.18.x are no longer supported"
397 select BR2_LEGACY
398 help
399 Version 4.18.x of the Linux kernel headers are no longer
400 maintained upstream and are now removed.
401
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200402###############################################################################
Romain Naour54a2e7a2018-06-24 15:53:09 +0200403comment "Legacy options removed in 2018.08"
404
Christian Stewartde336582018-11-27 00:56:55 -0800405config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT
406 bool "docker-engine static client option renamed"
407 select BR2_LEGACY
408 select BR2_PACKAGE_DOCKER_CLI_STATIC
409 help
410 BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT has been renamed to
411 BR2_PACKAGE_DOCKER_CLI_STATIC, following the package split of
412 docker-engine and docker-cli.
413
Bernd Kuhlsf9063022018-07-21 16:16:48 +0200414config BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_19
415 bool "Modular X.org server was updated to version 1.20.0"
416 select BR2_LEGACY
417 select BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_20
418 help
419 Modular X.org server was updated to version 1.20.0
420
Bernd Kuhls14c52532018-07-21 16:16:44 +0200421config BR2_PACKAGE_XPROTO_APPLEWMPROTO
422 bool "xproto-applewmproto package replaced by xorgproto"
423 select BR2_LEGACY
424 select BR2_PACKAGE_XORGPROTO
425 help
426 The xproto-applewmproto package has been replaced by the
427 xorgproto package, which combines all xproto_* packages.
428
429config BR2_PACKAGE_XPROTO_BIGREQSPROTO
430 bool "xproto-bigreqsproto package replaced by xorgproto"
431 select BR2_LEGACY
432 select BR2_PACKAGE_XORGPROTO
433 help
434 The xproto-bigreqsproto package has been replaced by the
435 xorgproto package, which combines all xproto_* packages.
436
437config BR2_PACKAGE_XPROTO_COMPOSITEPROTO
438 bool "xproto-compositeproto package replaced by xorgproto"
439 select BR2_LEGACY
440 select BR2_PACKAGE_XORGPROTO
441 help
442 The xproto-compositeproto package has been replaced by the
443 xorgproto package, which combines all xproto_* packages.
444
445config BR2_PACKAGE_XPROTO_DAMAGEPROTO
446 bool "xproto-dameproto package replaced by xorgproto"
447 select BR2_LEGACY
448 select BR2_PACKAGE_XORGPROTO
449 help
450 The xproto-dameproto package has been replaced by the
451 xorgproto package, which combines all xproto_* packages.
452
453config BR2_PACKAGE_XPROTO_DMXPROTO
454 bool "xproto-dmxproto package replaced by xorgproto"
455 select BR2_LEGACY
456 select BR2_PACKAGE_XORGPROTO
457 help
458 The xproto-dmxproto package has been replaced by the
459 xorgproto package, which combines all xproto_* packages.
460
461config BR2_PACKAGE_XPROTO_DRI2PROTO
462 bool "xproto-dri2proto package replaced by xorgproto"
463 select BR2_LEGACY
464 select BR2_PACKAGE_XORGPROTO
465 help
466 The xproto-dri2proto package has been replaced by the
467 xorgproto package, which combines all xproto_* packages.
468
469config BR2_PACKAGE_XPROTO_DRI3PROTO
470 bool "xproto-dri3proto package replaced by xorgproto"
471 select BR2_LEGACY
472 select BR2_PACKAGE_XORGPROTO
473 help
474 The xproto-dri3proto package has been replaced by the
475 xorgproto package, which combines all xproto_* packages.
476
477config BR2_PACKAGE_XPROTO_FIXESPROTO
478 bool "xproto-fixesproto package replaced by xorgproto"
479 select BR2_LEGACY
480 select BR2_PACKAGE_XORGPROTO
481 help
482 The xproto-fixesproto package has been replaced by the
483 xorgproto package, which combines all xproto_* packages.
484
485config BR2_PACKAGE_XPROTO_FONTCACHEPROTO
486 bool "xproto-fontcacheproto package replaced by xorgproto"
487 select BR2_LEGACY
488 select BR2_PACKAGE_XORGPROTO
489 help
490 The xproto-fontcacheproto package has been replaced by the
491 xorgproto package, which combines all xproto_* packages.
492
493config BR2_PACKAGE_XPROTO_FONTSPROTO
494 bool "xproto-fontsproto package replaced by xorgproto"
495 select BR2_LEGACY
496 select BR2_PACKAGE_XORGPROTO
497 help
498 The xproto-fontsproto package has been replaced by the
499 xorgproto package, which combines all xproto_* packages.
500
501config BR2_PACKAGE_XPROTO_GLPROTO
502 bool "xproto-glproto package replaced by xorgproto"
503 select BR2_LEGACY
504 select BR2_PACKAGE_XORGPROTO
505 help
506 The xproto-glproto package has been replaced by the
507 xorgproto package, which combines all xproto_* packages.
508
509config BR2_PACKAGE_XPROTO_INPUTPROTO
510 bool "xproto-inputproto package replaced by xorgproto"
511 select BR2_LEGACY
512 select BR2_PACKAGE_XORGPROTO
513 help
514 The xproto-inputproto package has been replaced by the
515 xorgproto package, which combines all xproto_* packages.
516
517config BR2_PACKAGE_XPROTO_KBPROTO
518 bool "xproto-kbproto package replaced by xorgproto"
519 select BR2_LEGACY
520 select BR2_PACKAGE_XORGPROTO
521 help
522 The xproto-kbproto package has been replaced by the
523 xorgproto package, which combines all xproto_* packages.
524
525config BR2_PACKAGE_XPROTO_PRESENTPROTO
526 bool "xproto-presentproto package replaced by xorgproto"
527 select BR2_LEGACY
528 select BR2_PACKAGE_XORGPROTO
529 help
530 The xproto-presentproto package has been replaced by the
531 xorgproto package, which combines all xproto_* packages.
532
533config BR2_PACKAGE_XPROTO_RANDRPROTO
534 bool "xproto-randrproto package replaced by xorgproto"
535 select BR2_LEGACY
536 select BR2_PACKAGE_XORGPROTO
537 help
538 The xproto-randrproto package has been replaced by the
539 xorgproto package, which combines all xproto_* packages.
540
541config BR2_PACKAGE_XPROTO_RECORDPROTO
542 bool "xproto-recordproto package replaced by xorgproto"
543 select BR2_LEGACY
544 select BR2_PACKAGE_XORGPROTO
545 help
546 The xproto-recordproto package has been replaced by the
547 xorgproto package, which combines all xproto_* packages.
548
549config BR2_PACKAGE_XPROTO_RENDERPROTO
550 bool "xproto-renderproto package replaced by xorgproto"
551 select BR2_LEGACY
552 select BR2_PACKAGE_XORGPROTO
553 help
554 The xproto-renderproto package has been replaced by the
555 xorgproto package, which combines all xproto_* packages.
556
557config BR2_PACKAGE_XPROTO_RESOURCEPROTO
558 bool "xproto-resourceproto package replaced by xorgproto"
559 select BR2_LEGACY
560 select BR2_PACKAGE_XORGPROTO
561 help
562 The xproto-resourceproto package has been replaced by the
563 xorgproto package, which combines all xproto_* packages.
564
565config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
566 bool "xproto-scrnsaverprot package replaced by xorgproto"
567 select BR2_LEGACY
568 select BR2_PACKAGE_XORGPROTO
569 help
570 The xproto-scrnsaverprot package has been replaced by the
571 xorgproto package, which combines all xproto_* packages.
572
573config BR2_PACKAGE_XPROTO_VIDEOPROTO
574 bool "xproto-videoproto package replaced by xorgproto"
575 select BR2_LEGACY
576 select BR2_PACKAGE_XORGPROTO
577 help
578 The xproto-videoproto package has been replaced by the
579 xorgproto package, which combines all xproto_* packages.
580
581config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO
582 bool "xproto-windowswmproto package replaced by xorgproto"
583 select BR2_LEGACY
584 select BR2_PACKAGE_XORGPROTO
585 help
586 The xproto-windowswmproto package has been replaced by the
587 xorgproto package, which combines all xproto_* packages.
588
589config BR2_PACKAGE_XPROTO_XCMISCPROTO
590 bool "xproto-xcmiscproto package replaced by xorgproto"
591 select BR2_LEGACY
592 select BR2_PACKAGE_XORGPROTO
593 help
594 The xproto-xcmiscproto package has been replaced by the
595 xorgproto package, which combines all xproto_* packages.
596
597config BR2_PACKAGE_XPROTO_XEXTPROTO
598 bool "xproto-xextproto package replaced by xorgproto"
599 select BR2_LEGACY
600 select BR2_PACKAGE_XORGPROTO
601 help
602 The xproto-xextproto package has been replaced by the
603 xorgproto package, which combines all xproto_* packages.
604
605config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
606 bool "xproto-xf86bigfontproto package replaced by xorgproto"
607 select BR2_LEGACY
608 select BR2_PACKAGE_XORGPROTO
609 help
610 The xproto-xf86bigfontproto package has been replaced by the
611 xorgproto package, which combines all xproto_* packages.
612
613config BR2_PACKAGE_XPROTO_XF86DGAPROTO
614 bool "xproto-xf86dgaproto package replaced by xorgproto"
615 select BR2_LEGACY
616 select BR2_PACKAGE_XORGPROTO
617 help
618 The xproto-xf86dgaproto package has been replaced by the
619 xorgproto package, which combines all xproto_* packages.
620
621config BR2_PACKAGE_XPROTO_XF86DRIPROTO
622 bool "xproto-xf86driproto package replaced by xorgproto"
623 select BR2_LEGACY
624 select BR2_PACKAGE_XORGPROTO
625 help
626 The xproto-xf86driproto package has been replaced by the
627 xorgproto package, which combines all xproto_* packages.
628
629config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
630 bool "xproto-xf86vidmodeproto package replaced by xorgproto"
631 select BR2_LEGACY
632 select BR2_PACKAGE_XORGPROTO
633 help
634 The xproto-xf86vidmodeproto package has been replaced by the
635 xorgproto package, which combines all xproto_* packages.
636
637config BR2_PACKAGE_XPROTO_XINERAMAPROTO
638 bool "xproto-xineramaproto package replaced by xorgproto"
639 select BR2_LEGACY
640 select BR2_PACKAGE_XORGPROTO
641 help
642 The xproto-xineramaproto package has been replaced by the
643 xorgproto package, which combines all xproto_* packages.
644
645config BR2_PACKAGE_XPROTO_XPROTO
646 bool "xproto-xproto package replaced by xorgproto"
647 select BR2_LEGACY
648 select BR2_PACKAGE_XORGPROTO
649 help
650 The xproto-xproto package has been replaced by the
651 xorgproto package, which combines all xproto_* packages.
652
653config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
654 bool "xproto-xproxymanagementprotocol package replaced by xorgproto"
655 select BR2_LEGACY
656 select BR2_PACKAGE_XORGPROTO
657 help
658 The xproto-xproxymanagementprotocol package has been
659 replaced by the xorgproto package, which combines all
660 xproto_* packages.
661
Adam Duskett3f2aef52018-06-24 00:35:22 +0200662config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL
663 bool "gst1-plugins-bad opengl option moved to gst1-plugins-base"
664 select BR2_LEGACY
665 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
666 help
667 The opengl option has been moved from gst1-plugins-bad to
668 gst1-plugins-base.
669
670config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2
671 bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base"
672 select BR2_LEGACY
673 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2
674 help
675 The gles2 option has been moved from gst1-plugins-bad to
676 gst1-plugins-base.
677
678config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX
679 bool "gst1-plugins-bad glx option moved to gst1-plugins-base"
680 select BR2_LEGACY
681 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX
682 help
683 The glx option has been moved from gst1-plugins-bad to
684 gst1-plugins-base.
685
686config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL
687 bool "gst1-plugins-bad egl option moved to gst1-plugins-base"
688 select BR2_LEGACY
689 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL
690 help
691 The egl option has been moved from gst1-plugins-bad to
692 gst1-plugins-base.
693
694config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11
695 bool "gst1-plugins-bad x11 option moved to gst1-plugins-base"
696 select BR2_LEGACY
697 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11
698 help
699 The x11 option has been moved from gst1-plugins-bad to
700 gst1-plugins-base.
701
702config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND
703 bool "gst1-plugins-bad wayland option moved to gst1-plugins-base"
704 select BR2_LEGACY
705 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND
706 help
707 The wayland option has been moved from gst1-plugins-bad to
708 gst1-plugins-base.
709
710config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX
711 bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base"
712 select BR2_LEGACY
713 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX
714 help
715 The dispmanx option has been moved from gst1-plugins-mad to
716 gst1-plugins-base.
717
718config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
719 bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base"
720 select BR2_LEGACY
721 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER
722 help
723 The audiomixer option has been moved from gst1-plugins-bad to
724 gst1-plugins-base.
725
726config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
727 bool "gst1-plugins-ugly lame option moved to gst1-plugins-good"
728 select BR2_LEGACY
729 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
730 help
731 The lame option has been moved from gst1-plugins-ugly to
732 gst1-plugins-good.
733
734config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
735 bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good"
736 select BR2_LEGACY
737 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
738 help
739 The mpg123 option has been moved from gst1-plugins-ugly to
740 gst1-plugins-good.
741
Romain Naourbae35c82018-06-24 15:53:10 +0200742config BR2_GDB_VERSION_7_11
743 bool "gdb 7.11 has been removed"
744 select BR2_LEGACY
745 help
746 The 7.11 version of gdb has been removed. Use a newer version
747 instead.
748
Romain Naour54a2e7a2018-06-24 15:53:09 +0200749config BR2_GDB_VERSION_7_10
750 bool "gdb 7.10 has been removed"
751 select BR2_LEGACY
752 help
753 The 7.10 version of gdb has been removed. Use a newer version
754 instead.
755
756###############################################################################
Bernd Kuhls9657e962018-04-01 15:58:08 +0200757comment "Legacy options removed in 2018.05"
758
Petr Vorel8553b392018-05-13 21:07:36 +0200759config BR2_PACKAGE_MEDIAART_BACKEND_NONE
760 bool "libmediaart none backend option renamed"
761 select BR2_LEGACY
762 help
763 For consistency reasons, the option
764 BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to
765 BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
766
767config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
768 bool "libmediaart gdk-pixbuf backend option renamed"
769 select BR2_LEGACY
770 help
771 For consistency reasons, the option
772 BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to
773 BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF
774
775config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
776 bool "libmediaart qt backend option renamed"
777 select BR2_LEGACY
778 help
779 For consistency reasons, the option
780 BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to
781 BR2_PACKAGE_LIBMEDIAART_BACKEND_QT
782
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200783# Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from
784# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200785config BR2_PACKAGE_TI_SGX_AM335X
786 bool "ti-sgx-km AM335X option renamed"
787 select BR2_LEGACY
788 help
789 For consistency reasons, the option
790 BR2_PACKAGE_TI_SGX_AM335X has been renamed to
791 BR2_PACKAGE_TI_SGX_KM_AM335X.
792
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200793# Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from
794# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200795config BR2_PACKAGE_TI_SGX_AM437X
796 bool "ti-sgx-km AM437X option renamed"
797 select BR2_LEGACY
798 help
799 For consistency reasons, the option
800 BR2_PACKAGE_TI_SGX_AM437X has been renamed to
801 BR2_PACKAGE_TI_SGX_KM_AM437X.
802
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200803# Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from
804# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200805config BR2_PACKAGE_TI_SGX_AM4430
806 bool "ti-sgx-km AM4430 option renamed"
807 select BR2_LEGACY
808 help
809 For consistency reasons, the option
810 BR2_PACKAGE_TI_SGX_AM4430 has been renamed to
811 BR2_PACKAGE_TI_SGX_KM_AM4430.
812
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200813# Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from
814# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200815config BR2_PACKAGE_TI_SGX_AM5430
816 bool "ti-sgx-km AM5430 option renamed"
817 select BR2_LEGACY
818 help
819 For consistency reasons, the option
820 BR2_PACKAGE_TI_SGX_AM5430 has been renamed to
821 BR2_PACKAGE_TI_SGX_KM_AM5430.
822
Thomas Petazzonia79df202018-05-13 21:07:34 +0200823config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
824 bool "janus-gateway audio-bridge option renamed"
825 select BR2_LEGACY
826 select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
827 help
828 For consistency reasons, the janus-gateway option
829 BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
830 BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
831
832config BR2_PACKAGE_JANUS_ECHO_TEST
833 bool "janus-gateway echo-test option renamed"
834 select BR2_LEGACY
835 select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
836 help
837 For consistency reasons, the janus-gateway option
838 BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
839 BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
840
841config BR2_PACKAGE_JANUS_RECORDPLAY
842 bool "janus-gateway recordplay option renamed"
843 select BR2_LEGACY
844 select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
845 help
846 For consistency reasons, the janus-gateway option
847 BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
848 BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
849
850config BR2_PACKAGE_JANUS_SIP_GATEWAY
851 bool "janus-gateway sip-gateway option renamed"
852 select BR2_LEGACY
853 select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
854 help
855 For consistency reasons, the janus-gateway option
856 BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
857 BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
858
859config BR2_PACKAGE_JANUS_STREAMING
860 bool "janus-gateway streaming option renamed"
861 select BR2_LEGACY
862 select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
863 help
864 For consistency reasons, the janus-gateway option
865 BR2_PACKAGE_JANUS_STREAMING has been renamed to
866 BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
867
868config BR2_PACKAGE_JANUS_TEXT_ROOM
869 bool "janus-gateway text-room option renamed"
870 select BR2_LEGACY
871 select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
872 help
873 For consistency reasons, the janus-gateway option
874 BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
875 BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
876
877config BR2_PACKAGE_JANUS_VIDEO_CALL
878 bool "janus-gateway video-call option renamed"
879 select BR2_LEGACY
880 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
881 help
882 For consistency reasons, the janus-gateway option
883 BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
884 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
885
886config BR2_PACKAGE_JANUS_VIDEO_ROOM
887 bool "janus-gateway video-room option renamed"
888 select BR2_LEGACY
889 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
890 help
891 For consistency reasons, the janus-gateway option
892 BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
893 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
894
895config BR2_PACKAGE_JANUS_MQTT
896 bool "janus-gateway mqtt option renamed"
897 select BR2_LEGACY
898 select BR2_PACKAGE_JANUS_GATEWAY_MQTT
899 help
900 For consistency reasons, the janus-gateway option
901 BR2_PACKAGE_JANUS_MQTT has been renamed to
902 BR2_PACKAGE_JANUS_GATEWAY_MQTT.
903
904config BR2_PACKAGE_JANUS_RABBITMQ
905 bool "janus-gateway rabbitmq option renamed"
906 select BR2_LEGACY
907 select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
908 help
909 For consistency reasons, the janus-gateway option
910 BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
911 BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
912
913config BR2_PACKAGE_JANUS_REST
914 bool "janus-gateway rest option renamed"
915 select BR2_LEGACY
916 select BR2_PACKAGE_JANUS_GATEWAY_REST
917 help
918 For consistency reasons, the janus-gateway option
919 BR2_PACKAGE_JANUS_REST has been renamed to
920 BR2_PACKAGE_JANUS_GATEWAY_REST.
921
922config BR2_PACKAGE_JANUS_UNIX_SOCKETS
923 bool "janus-gateway unix-sockets option renamed"
924 select BR2_LEGACY
925 select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
926 help
927 For consistency reasons, the janus-gateway option
928 BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
929 BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
930
931config BR2_PACKAGE_JANUS_WEBSOCKETS
932 bool "janus-gateway websockets option renamed"
933 select BR2_LEGACY
934 select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
935 help
936 For consistency reasons, the janus-gateway option
937 BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
938 BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
939
Thomas Petazzoni9d2c5c22018-05-13 21:07:33 +0200940config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
941 bool "ipsec-tools security context disable option renamed"
942 select BR2_LEGACY
943 help
944 For consistency reasons, the option
945 BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
946 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
947
948config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
949 bool "ipsec-tools SELinux security context enable option renamed"
950 select BR2_LEGACY
951 help
952 For consistency reasons, the option
953 BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
954 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
955
956config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
957 bool "ipsec-tools kernel security context enable option renamed"
958 select BR2_LEGACY
959 help
960 For consistency reasons, the option
961 BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
962 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
963
Thomas Petazzonidc4e4aa2018-05-13 21:07:32 +0200964config BR2_PACKAGE_LIBTFDI_CPP
965 bool "libftdi C++ bindings option renamed"
966 select BR2_LEGACY
967 select BR2_PACKAGE_LIBFTDI_CPP
968 help
969 The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
970 BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
971 name.
972
Thomas Petazzoni94c14622018-05-13 21:07:31 +0200973config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
974 bool "jquery-ui-themes option black-tie renamed"
975 select BR2_LEGACY
976 help
977 For consistency reasons, the jquery-ui-themes option for the
978 black-tie theme has been renamed from
979 BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
980 BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
981
982config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
983 bool "jquery-ui-themes option blitzer renamed"
984 select BR2_LEGACY
985 help
986 For consistency reasons, the jquery-ui-themes option for the
987 blitzer theme has been renamed from
988 BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
989 BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
990
991config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
992 bool "jquery-ui-themes option cupertino renamed"
993 select BR2_LEGACY
994 help
995 For consistency reasons, the jquery-ui-themes option for the
996 cupertino theme has been renamed from
997 BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
998 BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
999
1000config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
1001 bool "jquery-ui-themes option dark-hive renamed"
1002 select BR2_LEGACY
1003 help
1004 For consistency reasons, the jquery-ui-themes option for the
1005 dark-hive theme has been renamed from
1006 BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
1007 BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
1008
1009config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
1010 bool "jquery-ui-themes option dot-luv renamed"
1011 select BR2_LEGACY
1012 help
1013 For consistency reasons, the jquery-ui-themes option for the
1014 dot-luv theme has been renamed from
1015 BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
1016 BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
1017
1018config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
1019 bool "jquery-ui-themes option eggplant renamed"
1020 select BR2_LEGACY
1021 help
1022 For consistency reasons, the jquery-ui-themes option for the
1023 eggplant theme has been renamed from
1024 BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
1025 BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
1026
1027config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
1028 bool "jquery-ui-themes option excite-bike renamed"
1029 select BR2_LEGACY
1030 help
1031 For consistency reasons, the jquery-ui-themes option for the
1032 excite-bike theme has been renamed from
1033 BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
1034 BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
1035
1036config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
1037 bool "jquery-ui-themes option flick renamed"
1038 select BR2_LEGACY
1039 help
1040 For consistency reasons, the jquery-ui-themes option for the
1041 flick theme has been renamed from
1042 BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
1043 BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
1044
1045config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
1046 bool "jquery-ui-themes option hot-sneaks renamed"
1047 select BR2_LEGACY
1048 help
1049 For consistency reasons, the jquery-ui-themes option for the
1050 hot-sneaks theme has been renamed from
1051 BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
1052 BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
1053
1054config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
1055 bool "jquery-ui-themes option humanity renamed"
1056 select BR2_LEGACY
1057 help
1058 For consistency reasons, the jquery-ui-themes option for the
1059 humanity theme has been renamed from
1060 BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
1061 BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
1062
1063config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
1064 bool "jquery-ui-themes option le-frog renamed"
1065 select BR2_LEGACY
1066 help
1067 For consistency reasons, the jquery-ui-themes option for the
1068 le-frog theme has been renamed from
1069 BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
1070 BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
1071
1072config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
1073 bool "jquery-ui-themes option mint-choc renamed"
1074 select BR2_LEGACY
1075 help
1076 For consistency reasons, the jquery-ui-themes option for the
1077 mint-choc theme has been renamed from
1078 BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
1079 BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
1080
1081config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
1082 bool "jquery-ui-themes option overcast renamed"
1083 select BR2_LEGACY
1084 help
1085 For consistency reasons, the jquery-ui-themes option for the
1086 overcast theme has been renamed from
1087 BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
1088 BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
1089
1090config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
1091 bool "jquery-ui-themes option pepper-grinder renamed"
1092 select BR2_LEGACY
1093 help
1094 For consistency reasons, the jquery-ui-themes option for the
1095 pepper-grinder theme has been renamed from
1096 BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
1097 BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
1098
1099config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
1100 bool "jquery-ui-themes option redmond renamed"
1101 select BR2_LEGACY
1102 help
1103 For consistency reasons, the jquery-ui-themes option for the
1104 redmond theme has been renamed from
1105 BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
1106 BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
1107
1108config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
1109 bool "jquery-ui-themes option smoothness renamed"
1110 select BR2_LEGACY
1111 help
1112 For consistency reasons, the jquery-ui-themes option for the
1113 smoothness theme has been renamed from
1114 BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
1115 BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
1116
1117config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
1118 bool "jquery-ui-themes option south-street renamed"
1119 select BR2_LEGACY
1120 help
1121 For consistency reasons, the jquery-ui-themes option for the
1122 south-street theme has been renamed from
1123 BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
1124 BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
1125
1126config BR2_PACKAGE_JQUERY_UI_THEME_START
1127 bool "jquery-ui-themes option start renamed"
1128 select BR2_LEGACY
1129 help
1130 For consistency reasons, the jquery-ui-themes option for the
1131 start theme has been renamed from
1132 BR2_PACKAGE_JQUERY_UI_THEME_START to
1133 BR2_PACKAGE_JQUERY_UI_THEMES_START.
1134
1135config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
1136 bool "jquery-ui-themes option sunny renamed"
1137 select BR2_LEGACY
1138 help
1139 For consistency reasons, the jquery-ui-themes option for the
1140 sunny theme has been renamed from
1141 BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
1142 BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
1143
1144config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
1145 bool "jquery-ui-themes option swanky-purse renamed"
1146 select BR2_LEGACY
1147 help
1148 For consistency reasons, the jquery-ui-themes option for the
1149 swanky-purse theme has been renamed from
1150 BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
1151 BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
1152
1153config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
1154 bool "jquery-ui-themes option trontastic renamed"
1155 select BR2_LEGACY
1156 help
1157 For consistency reasons, the jquery-ui-themes option for the
1158 trontastic theme has been renamed from
1159 BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
1160 BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
1161
1162config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
1163 bool "jquery-ui-themes option ui-darkness renamed"
1164 select BR2_LEGACY
1165 help
1166 For consistency reasons, the jquery-ui-themes option for the
1167 ui-darkness theme has been renamed from
1168 BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
1169 BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
1170
1171config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
1172 bool "jquery-ui-themes option ui-lightness renamed"
1173 select BR2_LEGACY
1174 help
1175 For consistency reasons, the jquery-ui-themes option for the
1176 ui-lightness theme has been renamed from
1177 BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
1178 BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
1179
1180config BR2_PACKAGE_JQUERY_UI_THEME_VADER
1181 bool "jquery-ui-themes option vader renamed"
1182 select BR2_LEGACY
1183 help
1184 For consistency reasons, the jquery-ui-themes option for the
1185 vader theme has been renamed from
1186 BR2_PACKAGE_JQUERY_UI_THEME_VADER to
1187 BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
1188
Thomas Petazzonib2b874f2018-05-13 21:07:30 +02001189config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
1190 bool "bluez5-utils health plugin option renamed"
1191 select BR2_LEGACY
1192 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
1193 help
1194 For consistency reasons, the option
1195 BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
1196 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
1197
1198config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
1199 bool "bluez5-utils midi plugin option renamed"
1200 select BR2_LEGACY
1201 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
1202 help
1203 For consistency reasons, the option
1204 BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
1205 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
1206
1207config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
1208 bool "bluez5-utils nfc plugin option renamed"
1209 select BR2_LEGACY
1210 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
1211 help
1212 For consistency reasons, the option
1213 BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
1214 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
1215
1216config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
1217 bool "bluez5-utils sap plugin option renamed"
1218 select BR2_LEGACY
1219 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
1220 help
1221 For consistency reasons, the option
1222 BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
1223 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
1224
1225config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
1226 bool "bluez5-utils sixaxis plugin option renamed"
1227 select BR2_LEGACY
1228 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
1229 help
1230 For consistency reasons, the option
1231 BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
1232 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
1233
Bernd Kuhls79a678d2018-05-02 08:05:40 +02001234config BR2_PACKAGE_TRANSMISSION_REMOTE
1235 bool "transmission remote tool option removed"
1236 select BR2_LEGACY
1237 select BR2_PACKAGE_TRANSMISSION_DAEMON
1238 help
1239 Upstream does not provide a separate configure option for
1240 the tool transmission-remote, it is built when the
1241 transmission daemon has been enabled. Therefore, Buildroot
1242 has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
1243 for you.
1244
Fabrice Fontainef6421152018-05-07 00:09:01 +02001245config BR2_PACKAGE_LIBKCAPI_APPS
1246 bool "libkcapi test applications removed"
1247 select BR2_LEGACY
1248 select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
1249 select BR2_PACKAGE_LIBKCAPI_RNGAPP
1250 select BR2_PACKAGE_LIBKCAPI_SPEED
1251 select BR2_PACKAGE_LIBKCAPI_TEST
1252 help
1253 Test applications (hasher, rng read, speed-test, test) now
1254 have their own configuration options in the libkcapi menu.
1255
Bernd Kuhlsdacb1762018-05-01 09:10:17 +02001256config BR2_PACKAGE_MPLAYER
1257 bool "mplayer package removed"
1258 select BR2_LEGACY
1259 help
1260 The mplayer package was removed.
1261
1262config BR2_PACKAGE_MPLAYER_MPLAYER
1263 bool "mplayer package removed"
1264 select BR2_LEGACY
1265 help
1266 The mplayer package was removed.
1267
1268config BR2_PACKAGE_MPLAYER_MENCODER
1269 bool "mplayer package removed"
1270 select BR2_LEGACY
1271 help
1272 The mplayer package was removed.
1273
Bernd Kuhls3f449112018-05-01 09:10:14 +02001274config BR2_PACKAGE_LIBPLAYER_MPLAYER
1275 bool "mplayer support in libplayer removed"
1276 select BR2_LEGACY
1277 help
1278 The mplayer package was removed.
1279
Thomas Petazzoni46444ba2018-04-04 18:00:09 +02001280config BR2_PACKAGE_IQVLINUX
1281 bool "iqvlinux package removed"
1282 select BR2_LEGACY
1283 help
1284 This package contained a kernel module from Intel, which
1285 could only be used together with Intel userspace tools
1286 provided under NDA, which also come with the same kernel
1287 module. The copy of the kernel module available on
1288 SourceForge is provided only to comply with the GPLv2
1289 requirement. Intel engineers were even surprised it even
1290 built and were not willing to make any effort to fix their
1291 tarball naming to contain a version number. Therefore, it
1292 does not make sense for Buildroot to provide such a package.
1293
1294 See https://sourceforge.net/p/e1000/bugs/589/ for the
1295 discussion.
1296
Thomas Petazzonie2ea4152018-04-05 21:50:18 +02001297config BR2_BINFMT_FLAT_SEP_DATA
1298 bool "binfmt FLAT with separate code and data removed"
1299 select BR2_LEGACY
1300 help
1301 This FLAT binary format was only used on Blackfin, which has
1302 been removed.
1303
Thomas Petazzoni325bb372018-04-05 21:50:17 +02001304config BR2_bfin
1305 bool "Blackfin architecture support removed"
1306 select BR2_LEGACY
1307 help
1308 Following the removal of Blackfin support for the upstream
1309 Linux kernel, Buildroot has removed support for this CPU
1310 architecture.
1311
Bernd Kuhls9657e962018-04-01 15:58:08 +02001312config BR2_PACKAGE_KODI_ADSP_BASIC
1313 bool "kodi-adsp-basic package removed"
1314 select BR2_LEGACY
1315 help
1316 kodi-adsp-basic is unmaintained
1317
1318config BR2_PACKAGE_KODI_ADSP_FREESURROUND
1319 bool "kodi-adsp-freesurround package removed"
1320 select BR2_LEGACY
1321 help
1322 kodi-adsp-freesurround is unmaintained
1323
1324###############################################################################
Baruch Siach86dfb422017-11-14 14:02:38 +02001325comment "Legacy options removed in 2018.02"
1326
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001327config BR2_KERNEL_HEADERS_3_4
1328 bool "kernel headers version 3.4.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001329 select BR2_LEGACY
1330 help
1331 Version 3.4.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001332 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001333
1334config BR2_KERNEL_HEADERS_3_10
1335 bool "kernel headers version 3.10.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001336 select BR2_LEGACY
1337 help
1338 Version 3.10.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001339 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001340
1341config BR2_KERNEL_HEADERS_3_12
1342 bool "kernel headers version 3.12.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001343 select BR2_LEGACY
1344 help
1345 Version 3.12.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001346 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001347
Romain Naour453d29f2018-01-29 23:39:41 +01001348config BR2_BINUTILS_VERSION_2_27_X
1349 bool "binutils version 2.27 support removed"
1350 select BR2_LEGACY
1351 help
1352 Support for binutils version 2.27 has been removed. The
1353 current default version (2.29 or later) has been selected
1354 instead.
1355
Baruch Siach55d79ed2018-01-02 08:16:01 +02001356config BR2_PACKAGE_EEPROG
1357 bool "eeprog package removed"
1358 select BR2_LEGACY
1359 select BR2_PACKAGE_I2C_TOOLS
1360 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
1361 help
1362 The eeprog program is now provided by the i2c-tools package.
1363
Baruch Siach86dfb422017-11-14 14:02:38 +02001364config BR2_PACKAGE_GNUPG2_GPGV2
1365 bool "gnupg2 gpgv2 option removed"
1366 select BR2_LEGACY
1367 select BR2_PACKAGE_GNUPG2_GPGV
1368 help
1369 The gpgv2 executable is now named gpgv. The config option
1370 has been renamed accordingly.
1371
Gary Bissonf7a7d942018-01-05 15:39:36 +01001372config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
1373 bool "Vivante apitrace tool option removed"
1374 select BR2_LEGACY
1375 help
1376 The apitrace tool for Vivante is not provided by the
1377 imx-gpu-viv package any longer.
1378
1379config BR2_PACKAGE_IMX_GPU_VIV_G2D
1380 bool "Vivante G2D libraries from imx-gpu-viv removed"
1381 select BR2_LEGACY
1382 select BR2_PACKAGE_IMX_GPU_G2D
1383 help
1384 The G2D libraries are now provided by the imx-gpu-g2d package.
1385
Baruch Siach86dfb422017-11-14 14:02:38 +02001386###############################################################################
Carlos Santosf52af612017-09-01 21:41:38 -03001387comment "Legacy options removed in 2017.11"
1388
Carlos Santos6c10e402017-10-21 20:30:18 -02001389config BR2_PACKAGE_RFKILL
1390 bool "rfkill package removed"
1391 select BR2_LEGACY
1392 select BR2_PACKAGE_UTIL_LINUX
1393 select BR2_PACKAGE_UTIL_LINUX_RFKILL
1394 help
1395 The rfkill program is now provided by the util-linux package.
1396
Carlos Santosd4382002017-10-31 08:47:51 -02001397config BR2_PACKAGE_UTIL_LINUX_RESET
1398 bool "util-linux reset option removed"
1399 select BR2_LEGACY
1400 help
1401 The util-linux package no longer offers a "reset" command. Use
1402 either the reset command provided by BusyBox or select ncurses
1403 programs, which will install a symlink from "tset" to reset.
1404
Adam Duskett9d6da7a2017-10-17 18:32:18 -04001405config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
1406 bool "policycoreutils audit2allow option removed"
1407 select BR2_LEGACY
1408 select BR2_PACKAGE_SELINUX_PYTHON
1409 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
1410 help
1411 The policycoreutils package no longer offers audit2allow
1412 as a option. This package has been moved into the
1413 selinux-python package by the SELinux maintainers.
1414
1415config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
1416 bool "policycoreutils restorecond option removed"
1417 select BR2_LEGACY
1418 select BR2_PACKAGE_RESTORECOND
1419 help
1420 The policycoreutils package no longer offers restorecond
1421 as a option. This package has been moved into a seperate
1422 package maintained by the SELinux maintainers.
1423
1424config BR2_PACKAGE_SEPOLGEN
1425 bool "sepolgen package has been removed"
1426 select BR2_LEGACY
1427 select BR2_PACKAGE_SELINUX_PYTHON
1428 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
1429 help
1430 Sepolgen is no longer a individual package, but instead has
1431 been moved into the selinux-python package by the SELinux
1432 maintainers.
1433
Bernd Kuhls49a9fb02017-09-16 17:15:35 +02001434config BR2_PACKAGE_OPENOBEX_BLUEZ
1435 bool "openobex bluez option removed"
1436 select BR2_LEGACY
1437 select BR2_PACKAGE_BLUEZ_UTILS
1438 help
1439 The OpenOBEX package no longer offers an option to enable or
1440 disable BlueZ support. Instead, BlueZ support is always
1441 included when the bluez5_utils or bluez_utils package is
1442 selected.
1443
1444config BR2_PACKAGE_OPENOBEX_LIBUSB
1445 bool "openobex libusb option removed"
1446 select BR2_LEGACY
1447 select BR2_PACKAGE_LIBUSB
1448 help
1449 The OpenOBEX package no longer offers an option to enable or
1450 disable libusb support. Instead, USB support is always
1451 included when the libusb package is selected.
1452
1453config BR2_PACKAGE_OPENOBEX_APPS
1454 bool "openobex apps option removed"
1455 select BR2_LEGACY
1456 help
1457 The OpenOBEX package no longer offers an option to enable or
1458 disable apps support.
1459
1460config BR2_PACKAGE_OPENOBEX_SYSLOG
1461 bool "openobex syslog option removed"
1462 select BR2_LEGACY
1463 help
1464 The OpenOBEX package no longer offers an option to enable or
1465 disable syslog support.
1466
1467config BR2_PACKAGE_OPENOBEX_DUMP
1468 bool "openobex dump option removed"
1469 select BR2_LEGACY
1470 help
1471 The OpenOBEX package no longer offers an option to enable or
1472 disable dump support.
1473
Alexander Mukhinfca70382017-09-10 13:21:34 +03001474config BR2_PACKAGE_AICCU
1475 bool "aiccu utility removed"
1476 select BR2_LEGACY
1477 help
1478 As the SixXS project has ceased its operation on 2017-06-06,
1479 the AICCU utility has no use anymore and has been removed.
1480
1481 https://www.sixxs.net/sunset/
1482
Carlos Santosf52af612017-09-01 21:41:38 -03001483config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
1484 bool "util-linux login utilities option removed"
1485 select BR2_LEGACY
1486 select BR2_PACKAGE_UTIL_LINUX_LAST
1487 select BR2_PACKAGE_UTIL_LINUX_LOGIN
1488 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
1489 select BR2_PACKAGE_UTIL_LINUX_SU
1490 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
1491 help
1492 Login utilities (last, login, runuser, su, sulogin) now have
1493 their own configuration options in the util-linux menu.
1494
1495###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +02001496comment "Legacy options removed in 2017.08"
1497
Yann E. MORIN144dc9c2017-08-11 18:05:08 +02001498config BR2_TARGET_GRUB
1499 bool "grub (aka grub-legacy) has been removed"
1500 select BR2_LEGACY
1501 help
1502 grub-legacy is no longer maintained, and no longer builds with
1503 recent binutils versions.
1504
1505 Use grub2 or syslinux instead.
1506
Bin Meng20db0982017-08-30 08:55:25 -07001507config BR2_PACKAGE_SIMICSFS
1508 bool "simicsfs support removed"
1509 select BR2_LEGACY
1510 help
1511 Support for simicsfs kernel driver that provides access to a
1512 host computer's local filesystem when the target is
1513 executing within a SIMICS simulation has been removed.
1514
1515 Simics is now moving away from the simicsfs kernel module,
1516 as the kernel module has required too much maintenance
1517 work. Users should move to the user mode Simics agent
1518 instead.
1519
Thomas Petazzoni0b5dc312017-07-29 15:09:06 +02001520config BR2_BINUTILS_VERSION_2_26_X
1521 bool "binutils version 2.26 support removed"
1522 select BR2_LEGACY
1523 help
1524 Support for binutils version 2.26 has been removed. The
1525 current default version (2.28 or later) has been selected
1526 instead.
1527
Yann E. MORINb3b60702017-07-09 05:21:56 -07001528config BR2_XTENSA_OVERLAY_DIR
1529 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001530 help
Yann E. MORINb3b60702017-07-09 05:21:56 -07001531 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
1532 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
1533 path to the overlay file, not to the directory containing
1534 it.
1535
1536config BR2_XTENSA_OVERLAY_DIR_WRAP
1537 bool
1538 default y if BR2_XTENSA_OVERLAY_DIR != ""
1539 select BR2_LEGACY
1540
1541config BR2_XTENSA_CUSTOM_NAME
1542 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
1543 help
1544 The BR2_XTENSA_CUSTOM_NAME option has been removed.
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001545
1546config BR2_XTENSA_CUSTOM_NAME_WRAP
1547 bool
1548 default y if BR2_XTENSA_CUSTOM_NAME != ""
1549 select BR2_LEGACY
1550
Sébastien Szymanskif47fc952017-07-04 16:47:29 +02001551config BR2_PACKAGE_HOST_MKE2IMG
1552 bool "host mke2img has been removed"
1553 select BR2_LEGACY
1554 help
1555 We now call mkfs directly to generate ext2/3/4 filesystem
1556 image, so mke2img is no longer necessary.
1557
Samuel Martinbee9e882017-07-09 07:00:38 +02001558config BR2_TARGET_ROOTFS_EXT2_BLOCKS
1559 int "exact size in blocks has been removed"
1560 default 0
1561 help
1562 This option has been removed in favor of
1563 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
1564 to the value you had before. Set to 0 here to remove the
1565 warning.
1566
1567config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
1568 bool
1569 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
1570 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
1571 select BR2_LEGACY
1572
1573# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
1574
Samuel Martin235b6f12017-07-04 16:47:25 +02001575config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
1576 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
1577 default 0
1578 help
1579 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
1580 images. It now automatically selects the number of inodes
1581 based on the image size. The extra number of inodes can no
1582 longer be provided; instead, provide the total number of
1583 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
1584
1585config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
1586 bool
1587 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
1588 select BR2_LEGACY
1589
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001590config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
1591 bool "cdxaparse removed"
1592 select BR2_LEGACY
1593
1594config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
1595 bool "dataurisrc moved to gstreamer1"
1596 select BR2_LEGACY
1597 help
1598 Dataurisrc has moved to gstreamer core and is always built.
1599
1600config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
1601 bool "dccp removed"
1602 select BR2_LEGACY
1603
1604config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
1605 bool "hdvparse removed"
1606 select BR2_LEGACY
1607
1608config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
1609 bool "mve removed"
1610 select BR2_LEGACY
1611
1612config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
1613 bool "nuvdemux removed"
1614 select BR2_LEGACY
1615
1616config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
1617 bool "patchdetect removed"
1618 select BR2_LEGACY
1619
1620config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
1621 bool "sdi removed"
1622 select BR2_LEGACY
1623
1624config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
1625 bool "tta removed"
1626 select BR2_LEGACY
1627
1628config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
1629 bool "videomeasure removed"
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001630 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001631 select BR2_LEGACY
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001632 help
1633 videomeasure plugin has been removed and has been replaced by
1634 iqa, which has automatically been enabled.
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001635
1636config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
1637 bool "apexsink removed"
1638 select BR2_LEGACY
1639
1640config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
1641 bool "sdl removed"
1642 select BR2_LEGACY
1643
Vicente Olivert Rierab006fe12017-05-12 11:18:05 +01001644config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
1645 bool "mad (*.mp3 audio) removed"
1646 select BR2_LEGACY
1647
Thomas Petazzoni4c06d242017-07-04 10:11:54 +02001648config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
1649 bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
1650 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
1651 select BR2_LEGACY
1652 help
1653 The WebRTC plugin in GStreamer 1.x has always been named
1654 webrtcdsp, but was wrongly introduced in Buildroot under the
1655 name webrtc. Therefore, we have renamed the option to match
1656 the actual name of the GStreamer plugin.
1657
Yann E. MORIN0d643fd2017-07-01 14:51:21 +02001658config BR2_STRIP_none
1659 bool "Strip command 'none' has been removed"
1660 select BR2_LEGACY
1661 help
1662 The strip command choice has been changed into a single
1663 boolean option. Please check that the new setting is
1664 correct (in the "Build options" sub-menu)
1665
Bernd Kuhlsdd4d3c12017-06-11 14:48:51 +02001666config BR2_PACKAGE_BEECRYPT_CPP
1667 bool "C++ support removed in beecrypt"
1668 select BR2_LEGACY
1669 help
1670 Support for C++ depends on icu. The beecrypt package is
1671 incompatible with icu 59+.
1672
Peter Korsgaard622ff3d2017-06-22 00:07:42 +02001673config BR2_PACKAGE_SPICE_CLIENT
1674 bool "spice client support removed"
1675 select BR2_LEGACY
1676 help
1677 Spice client support has been removed upstream. The
1678 functionality now lives in the spice-gtk widget and
1679 virt-viewer.
1680
1681config BR2_PACKAGE_SPICE_GUI
1682 bool "spice gui support removed"
1683 select BR2_LEGACY
1684 help
1685 Spice gui support has been removed upstream. The
1686 functionality now lives in the spice-gtk widget and
1687 virt-viewer.
1688
Peter Korsgaard6f2c0222017-06-22 00:07:41 +02001689config BR2_PACKAGE_SPICE_TUNNEL
1690 bool "spice network redirection removed"
1691 select BR2_LEGACY
1692 help
1693 Spice network redirection, aka tunnelling has been removed
1694 upstream.
1695
Koen Martens438b2d12017-06-20 20:54:49 +02001696config BR2_PACKAGE_INPUT_TOOLS
1697 bool "input-tools removed"
1698 select BR2_LEGACY
1699 select BR2_PACKAGE_LINUXCONSOLETOOLS
1700 help
1701 input-tools has been removed, it is replaced by
1702 linuxconsoletools, which has automatically been enabled.
1703
1704config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
1705 bool "inputattach moved to linuxconsoletools"
1706 select BR2_LEGACY
1707 select BR2_PACKAGE_LINUXCONSOLETOOLS
1708 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
1709 help
1710 input-tools has been removed, inputattach is now part
1711 of linuxconsoletools, which has automatically been
1712 enabled.
1713
1714config BR2_PACKAGE_INPUT_TOOLS_JSCAL
1715 bool "jscal moved to linuxconsoletools"
1716 select BR2_LEGACY
1717 select BR2_PACKAGE_LINUXCONSOLETOOLS
1718 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1719 help
1720 input-tools has been removed, jscal is now part
1721 of linuxconsoletools, which has automatically been
1722 enabled.
1723
1724config BR2_PACKAGE_INPUT_TOOLS_JSTEST
1725 bool "jstest moved to linuxconsoletools"
1726 select BR2_LEGACY
1727 select BR2_PACKAGE_LINUXCONSOLETOOLS
1728 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1729 help
1730 input-tools has been removed, jstest is now part
1731 of linuxconsoletools, which has automatically been
1732 enabled.
1733
Baruch Siach6510a822017-06-16 06:32:48 +03001734config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
1735 bool "SH Sourcery toolchain has been removed"
1736 select BR2_LEGACY
1737 help
1738 The Sourcery CodeBench toolchain for the sh architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001739 been removed, since it uses glibc older than 2.17 that
1740 requires -lrt to link executables using clock_* system calls.
1741 This makes this toolchain difficult to maintain over time.
Baruch Siach6510a822017-06-16 06:32:48 +03001742
Baruch Siach06cac642017-06-16 06:32:47 +03001743config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
1744 bool "x86 Sourcery toolchain has been removed"
1745 select BR2_LEGACY
1746 help
1747 The Sourcery CodeBench toolchain for the x86 architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001748 been removed, since it uses glibc older than 2.17 that
1749 requires -lrt to link executables using clock_* system calls.
1750 This makes this toolchain difficult to maintain over time.
Baruch Siach06cac642017-06-16 06:32:47 +03001751
Romain Naourf6695212017-05-23 22:24:40 +02001752config BR2_GCC_VERSION_4_8_X
1753 bool "gcc 4.8.x support removed"
1754 select BR2_LEGACY
1755 help
1756 Support for gcc version 4.8.x has been removed. The current
1757 default version (5.x or later) has been selected instead.
1758
1759###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001760comment "Legacy options removed in 2017.05"
1761
Romain Naour95426af2017-02-21 22:43:16 +01001762config BR2_PACKAGE_SUNXI_MALI_R2P4
1763 bool "sunxi-mali r2p4 removed"
1764 select BR2_LEGACY
1765 help
1766 sunxi-mali libMali for r2p4 Mali kernel module has been
1767 removed since the libump package only provides libUMP.so.3.
1768 libMali for r2p4 Mali kernel module requires libUMP.so.2.
1769
Martin Barkd999a7f2017-05-06 14:19:13 +01001770config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
1771 bool "CoffeeScript option has been removed"
1772 select BR2_LEGACY
1773 help
1774 The option to enable NodeJS CoffeeScript has been removed.
1775 To continue using it, add "coffee-script" to
1776 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1777
Martin Bark096f8b12017-05-06 14:19:12 +01001778config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
1779 bool "Express web application framework option has been removed"
1780 select BR2_LEGACY
1781 help
1782 The option to enable the NodeJS Express web application
1783 framework has been removed. To continue using it, add
1784 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1785
Baruch Siach0364d442017-05-01 15:59:41 +03001786config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
1787 bool "bluez5_utils gatttool install option removed"
1788 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
1789 help
1790 The option to install gatttool specifically has been removed.
1791 Since version 5.44 gatttool is in the list of deprecated
1792 tools. The option to build and install deprecated tools has
1793 been automatically enabled.
1794
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +00001795config BR2_PACKAGE_OPENOCD_FT2XXX
1796 bool "openocd ft2232 support has been removed"
1797 select BR2_PACKAGE_OPENOCD_FTDI
1798 select BR2_LEGACY
1799 help
1800 FT2232 support in OpenOCD has been removed, it's replaced by
1801 FDTI support, which has automatically been enabled.
1802
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001803config BR2_PACKAGE_KODI_RTMPDUMP
1804 bool "kodi rtmp has been removed"
1805 select BR2_LEGACY
Bernd Kuhlsc8942672017-07-16 16:35:17 +02001806 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001807 help
1808 Internal rtmp support was removed from Kodi.
1809
Bernd Kuhlsd3936902017-04-29 10:37:21 +02001810config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
1811 bool "kodi-visualisation-fountain has been removed"
1812 select BR2_LEGACY
1813 help
1814 According to upstream 'the visualization is not currently
1815 in a working shape.'
1816
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +02001817config BR2_PACKAGE_PORTMAP
1818 bool "portmap has been removed"
1819 select BR2_LEGACY
1820 select BR2_PACKAGE_RPCBIND
1821 help
1822 The portmap upstream tarball is removed, no releases since
1823 ten years and latest change in upstream git in 2014.
1824 You should better use rpcbind as a RPC portmapper.
1825
Thomas Petazzoni58472912017-04-03 22:28:21 +02001826config BR2_BINUTILS_VERSION_2_25_X
1827 bool "binutils version 2.25 support removed"
1828 select BR2_LEGACY
1829 help
1830 Support for binutils version 2.25 has been removed. The
1831 current default version (2.27 or later) has been selected
1832 instead.
1833
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +02001834config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
1835 bool "uclibc RPC support has been removed"
1836 select BR2_LEGACY
1837 help
1838 uClibc-ng removed internal RPC implementation in 1.0.23. You
1839 should use libtirpc instead.
1840
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001841config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
1842 int "extra size in blocks has been removed"
1843 default 0
1844 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001845 Since the support for auto calculation of the filesystem size
1846 has been removed, this option is now useless and must be 0.
1847 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
1848 matchs your needs.
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001849
1850config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
1851 bool
1852 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
1853 select BR2_LEGACY
1854
Vicente Olivert Riera815f7132017-03-22 11:39:13 +00001855config BR2_PACKAGE_SYSTEMD_KDBUS
1856 bool "systemd-kdbus has been removed"
1857 select BR2_LEGACY
1858 help
1859 --enable/disable-kdbus configure option has been removed since
1860 systemd-231.
1861
Gustavo Zacariasd10b4932017-03-16 10:04:34 -03001862config BR2_PACKAGE_POLARSSL
1863 bool "polarssl has been removed"
1864 select BR2_LEGACY
1865 help
1866 The polarssl crypto library has been removed since the 1.2.x
1867 release branch is no longer maintained. Newer upstream
1868 branches/releases (mbedtls) have API changes so they're not
1869 drop-in replacements.
1870
Yann E. MORIN61551182017-03-12 10:58:15 +01001871config BR2_NBD_CLIENT
1872 bool "nbd client option was renamed"
1873 select BR2_LEGACY
1874 select BR2_PACKAGE_NBD_CLIENT
1875 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001876 The nbd client option has been renamed to
1877 BR2_PACKAGE_NBD_CLIENT.
Yann E. MORIN61551182017-03-12 10:58:15 +01001878
1879config BR2_NBD_SERVER
1880 bool "nbd server option was renamed"
1881 select BR2_LEGACY
1882 select BR2_PACKAGE_NBD_SERVER
1883 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001884 The nbd server option has been renamed to
1885 BR2_PACKAGE_NBD_SERVER.
Yann E. MORIN61551182017-03-12 10:58:15 +01001886
Carlos Santos6a9c6312017-02-14 09:05:16 -02001887config BR2_PACKAGE_GMOCK
1888 bool "gmock merged into gtest package"
1889 select BR2_LEGACY
1890 select BR2_PACKAGE_GTEST
1891 select BR2_PACKAGE_GTEST_GMOCK
1892 help
1893 GMock is now a suboption of the GTest package.
1894
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001895config BR2_KERNEL_HEADERS_4_8
1896 bool "kernel headers version 4.8.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001897 select BR2_LEGACY
1898 help
1899 Version 4.8.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001900 maintained upstream and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001901
1902config BR2_KERNEL_HEADERS_3_18
1903 bool "kernel headers version 3.18.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001904 select BR2_LEGACY
1905 help
1906 Version 3.18.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001907 maintained upstream and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001908
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001909config BR2_GLIBC_VERSION_2_22
1910 bool "glibc 2.22 removed"
1911 select BR2_LEGACY
1912 help
1913 Support for glibc version 2.22 has been removed. The current
1914 default version has been selected instead.
1915
1916###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +01001917comment "Legacy options removed in 2017.02"
1918
Francois Perrad8546ff32016-12-26 15:50:35 +01001919config BR2_PACKAGE_PERL_DB_FILE
1920 bool "perl-db-file removed"
1921 select BR2_LEGACY
1922 select BR2_PACKAGE_BERKELEYDB
1923 select BR2_PACKAGE_PERL
1924 help
1925 DB_File can be built as a core Perl module, so the separate
1926 perl-db-file package has been removed.
1927
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001928config BR2_KERNEL_HEADERS_4_7
1929 bool "kernel headers version 4.7.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001930 select BR2_LEGACY
1931 help
1932 Version 4.7.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001933 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001934
1935config BR2_KERNEL_HEADERS_4_6
1936 bool "kernel headers version 4.6.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001937 select BR2_LEGACY
1938 help
1939 Version 4.6.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001940 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001941
1942config BR2_KERNEL_HEADERS_4_5
1943 bool "kernel headers version 4.5.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001944 select BR2_LEGACY
1945 help
1946 Version 4.5.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001947 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001948
1949config BR2_KERNEL_HEADERS_3_14
1950 bool "kernel headers version 3.14.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001951 select BR2_LEGACY
1952 help
1953 Version 3.14.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001954 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001955
Romain Naour63abbcc2016-12-16 16:29:45 +01001956config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
1957 bool "musl-cross 1.1.12 toolchain removed"
1958 select BR2_LEGACY
1959 help
1960 The support for the prebuilt toolchain based on the Musl C
1961 library provided by the musl-cross project has been removed.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001962 Upstream doesn't provide any prebuilt toolchain anymore, use
1963 the Buildroot toolchain instead.
Romain Naour63abbcc2016-12-16 16:29:45 +01001964
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +01001965config BR2_UCLIBC_INSTALL_TEST_SUITE
1966 bool "uClibc tests now in uclibc-ng-test"
1967 select BR2_LEGACY
1968 select BR2_PACKAGE_UCLIBC_NG_TEST
1969 help
1970 The test suite of the uClibc C library has been moved into a
1971 separate package, uclibc-ng-test.
1972
Arnout Vandecappelle311bc132016-11-24 00:40:35 +01001973config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
1974 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
1975 select BR2_LEGACY
1976 help
1977 The ADI Blackfin toolchain has many bugs which are fixed in
1978 more recent gcc and uClibc-ng releases. Use the Buildroot
1979 toolchain instead.
1980
Arnout Vandecappelle207294f2016-11-23 15:14:04 +01001981config BR2_PACKAGE_MAKEDEVS
1982 bool "makedevs removed"
1983 select BR2_LEGACY
1984 help
1985 The makedevs tool is part of busybox. The Buildroot fork
1986 should not be used outside of the Buildroot infrastructure.
1987
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +01001988config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
1989 bool "Arago ARMv7 2011.09 removed"
1990 select BR2_LEGACY
1991 help
1992 The Arago toolchains are every old and not updated anymore.
1993
1994config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
1995 bool "Arago ARMv5 2011.09 removed"
1996 select BR2_LEGACY
1997 help
1998 The Arago toolchains are every old and not updated anymore.
1999
Thomas Petazzonied364d12016-11-05 14:32:38 +01002000config BR2_PACKAGE_SNOWBALL_HDMISERVICE
2001 bool "snowball-hdmiservice removed"
2002 select BR2_LEGACY
2003 help
2004 We no longer have support for the Snowball platform in
2005 Buildroot, so this package was no longer useful.
2006
2007config BR2_PACKAGE_SNOWBALL_INIT
2008 bool "snowball-init removed"
2009 select BR2_LEGACY
2010 help
2011 We no longer have support for the Snowball platform in
2012 Buildroot, so this package was no longer useful.
2013
Jörg Krause69aa0572016-12-14 14:40:58 +01002014config BR2_GDB_VERSION_7_9
2015 bool "gdb 7.9 has been removed"
2016 select BR2_LEGACY
2017 help
2018 The 7.9 version of gdb has been removed. Use a newer version
2019 instead.
2020
Thomas Petazzonied364d12016-11-05 14:32:38 +01002021###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +02002022comment "Legacy options removed in 2016.11"
2023
Fabrice Fontainec4572132016-09-12 23:31:07 +02002024config BR2_PACKAGE_PHP_SAPI_CLI_CGI
2025 bool "PHP CGI and CLI options are now seperate"
2026 select BR2_PACKAGE_PHP_SAPI_CLI
2027 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +02002028 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02002029 help
2030 The PHP Interface options have been split up into a
2031 separate option for each interface.
2032
2033config BR2_PACKAGE_PHP_SAPI_CLI_FPM
2034 bool "PHP CLI and FPM options are now separate"
2035 select BR2_PACKAGE_PHP_SAPI_CLI
2036 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +02002037 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02002038 help
2039 The PHP Interface options have been split up into a
2040 separate option for each interface.
2041
Arnout Vandecappelle35343992016-10-15 16:51:06 +02002042config BR2_PACKAGE_WVSTREAMS
2043 bool "wvstreams removed"
2044 select BR2_LEGACY
2045 help
2046 wvstreams is not maintained anymore since about 2009. It also
2047 doesn't build anymore with recent compilers (GCC 5+).
2048
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +02002049config BR2_PACKAGE_WVDIAL
2050 bool "wvdial removed"
2051 select BR2_LEGACY
2052 help
2053 wvdial is not maintained anymore since about 2009. It also
2054 doesn't build anymore with recent compilers (GCC 5+).
2055
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +02002056config BR2_PACKAGE_WEBKITGTK24
2057 bool "webkitgtk 2.4.x removed"
2058 select BR2_LEGACY
2059 help
2060 This legacy package only existed because some other packages
2061 depended on that specific version of webkitgtk. However, the
2062 other packages have been fixed. webkitgtk 2.4 is full of
2063 security issues so it needs to be removed.
2064
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +02002065config BR2_PACKAGE_TORSMO
2066 bool "torsmo removed"
2067 select BR2_LEGACY
2068 help
2069 torsmo has been unmaintained for a long time, and nobody
2070 seems to be interested in it.
2071
Arnout Vandecappelle290166f2016-10-15 16:51:02 +02002072config BR2_PACKAGE_SSTRIP
2073 bool "sstrip removed"
2074 select BR2_LEGACY
2075 help
2076 sstrip is unmaintained and potentially harmful. It doesn't
2077 save so much compared to normal binutils strip, and there is
2078 a big risk of binaries that don't work. Use normal strip
2079 instead.
2080
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002081config BR2_KERNEL_HEADERS_4_3
2082 bool "kernel headers version 4.3.x are no longer supported"
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002083 select BR2_LEGACY
2084 help
2085 Version 4.3.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02002086 maintained upstream and are now removed.
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002087
2088config BR2_KERNEL_HEADERS_4_2
2089 bool "kernel headers version 4.2.x are no longer supported"
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002090 select BR2_LEGACY
2091 help
2092 Version 4.2.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02002093 maintained upstream and are now removed.
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02002094
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002095config BR2_PACKAGE_KODI_ADDON_XVDR
2096 bool "kodi-addon-xvdr removed"
2097 select BR2_LEGACY
2098 help
2099 According to the github project page:
2100 https://github.com/pipelka/xbmc-addon-xvdr
2101 this package is discontinued.
2102
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02002103config BR2_PACKAGE_IPKG
2104 bool "ipkg removed"
2105 select BR2_LEGACY
2106 help
2107 ipkg dates back to the early 2000s when Compaq started the
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002108 handhelds.org project and it hasn't seen development since
2109 2006. Use opkg as a replacement.
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02002110
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +02002111config BR2_GCC_VERSION_4_7_X
2112 bool "gcc 4.7.x support removed"
2113 select BR2_LEGACY
2114 help
2115 Support for gcc version 4.7.x has been removed. The current
2116 default version (4.9.x or later) has been selected instead.
2117
Arnout Vandecappelled8878112016-10-15 16:50:57 +02002118config BR2_BINUTILS_VERSION_2_24_X
2119 bool "binutils version 2.24 support removed"
2120 select BR2_LEGACY
2121 help
2122 Support for binutils version 2.24 has been removed. The
2123 current default version (2.26 or later) has been selected
2124 instead.
2125
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -03002126config BR2_PACKAGE_WESTON_RPI
2127 bool "Weston propietary RPI support is gone"
2128 select BR2_LEGACY
2129 help
2130 Upstream decided the propietary (rpi-userland) weston composer
2131 support wasn't worth the effort so it was removed. Switch to
2132 the open VC4 support.
2133
Yann E. MORIN20b14462016-09-06 16:29:14 +02002134config BR2_LINUX_KERNEL_TOOL_CPUPOWER
2135 bool "linux-tool cpupower"
2136 depends on BR2_LINUX_KERNEL
2137 select BR2_LEGACY
2138 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
2139 help
2140 Linux tool cpupower option was renamed.
2141
2142config BR2_LINUX_KERNEL_TOOL_PERF
2143 bool "linux-tool perf"
2144 depends on BR2_LINUX_KERNEL
2145 select BR2_LEGACY
2146 select BR2_PACKAGE_LINUX_TOOLS_PERF
2147 help
2148 Linux tool perf option was renamed.
2149
2150config BR2_LINUX_KERNEL_TOOL_SELFTESTS
2151 bool "linux-tool selftests"
2152 depends on BR2_LINUX_KERNEL
2153 select BR2_LEGACY
2154 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
2155 help
2156 Linux tool selftests option was renamed.
2157
Thomas Petazzoni50332a52016-08-11 15:25:38 +02002158config BR2_GCC_VERSION_4_8_ARC
2159 bool "gcc arc option renamed"
2160 select BR2_LEGACY
2161 select BR2_GCC_VERSION_ARC
2162 help
2163 The option that selects the gcc version for the ARC
2164 architecture has been renamed to BR2_GCC_VERSION_ARC.
2165
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002166config BR2_KERNEL_HEADERS_4_0
2167 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002168 select BR2_LEGACY
2169 help
2170 Version 4.0.x of the Linux kernel headers have been deprecated
2171 for more than four buildroot releases and are now removed.
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002172
2173config BR2_KERNEL_HEADERS_3_19
2174 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002175 select BR2_LEGACY
2176 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002177 Version 3.19.x of the Linux kernel headers have been
2178 deprecated for more than four buildroot releases and are now
2179 removed.
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002180
Romain Naour0e517312016-09-02 22:31:32 +02002181config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
2182 bool "libevas-generic-loaders package removed"
2183 select BR2_LEGACY
2184 select BR2_PACKAGE_EFL
2185 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002186 With EFL 1.18, libevas-generic-loaders is now provided by the
2187 efl package.
Romain Naour0e517312016-09-02 22:31:32 +02002188
Romain Naourc22b7582016-09-02 22:31:31 +02002189config BR2_PACKAGE_ELEMENTARY
2190 bool "elementary package removed"
2191 select BR2_LEGACY
2192 select BR2_PACKAGE_EFL
2193 help
2194 With EFL 1.18, elementary is now provided by the efl package.
2195
Yann E. MORINe782cd52016-08-28 01:03:04 +02002196config BR2_LINUX_KERNEL_CUSTOM_LOCAL
2197 bool "Linux kernel local directory option removed"
2198 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002199 The option to select a local directory as the source of the
2200 Linux kernel has been removed. It hurts reproducibility of
2201 builds.
Yann E. MORINe782cd52016-08-28 01:03:04 +02002202
2203 In case you were using this option during development of your
2204 Linux kernel, use the override mechanism instead.
2205
2206###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02002207comment "Legacy options removed in 2016.08"
2208
Arnout Vandecappelleac191072017-03-08 00:50:54 +01002209config BR2_PACKAGE_EFL_JP2K
2210 bool "libevas jp2k loader has been removed"
2211 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +01002212 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +01002213 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
2214 while Buildroot only packages openjpeg 2.x. Therefore, the
2215 JP2K loader has been removed from EFL.
2216
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002217config BR2_PACKAGE_SYSTEMD_COMPAT
2218 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +02002219 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002220 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +02002221 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002222 been removed. Theses libraries have been useless since a few
2223 version, and have been fully dropped from the source since
2224 v230.
2225
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +02002226config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
2227 bool "gst1-plugins-bad liveadder plugin removed"
2228 select BR2_LEGACY
2229 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
2230 help
2231 The functionality of the liveadder plugin of the
2232 gst1-plugins-bad package has been merged into audiomixer.
2233
Andrew Webster0f92b192016-06-10 14:13:29 -04002234config BR2_PACKAGE_LIBFSLVPUWRAP
2235 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
2236 select BR2_LEGACY
2237 select BR2_PACKAGE_IMX_VPUWRAP
2238 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002239 The libfslvpuwrap has been renamed to match the renamed
2240 package.
Andrew Webster0f92b192016-06-10 14:13:29 -04002241
Andrew Webster64998902016-06-10 14:13:18 -04002242config BR2_PACKAGE_LIBFSLPARSER
2243 bool "libfslparser has been renamed to imx-parser"
2244 select BR2_LEGACY
2245 select BR2_PACKAGE_IMX_PARSER
2246 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002247 The libfslparser has been renamed to match the renamed
2248 package.
Andrew Webster64998902016-06-10 14:13:18 -04002249
Andrew Webster47e62032016-06-10 14:13:05 -04002250config BR2_PACKAGE_LIBFSLCODEC
2251 bool "libfslcodec has been renamed to imx-codec"
2252 select BR2_LEGACY
2253 select BR2_PACKAGE_IMX_CODEC
2254 help
2255 The libfslcodec has been renamed to match the renamed package.
2256
Carlos Santosb5d99002016-06-03 16:35:39 -03002257config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
2258 bool "FIT support in uboot-tools has been refactored"
2259 select BR2_LEGACY
2260 select BR2_PACKAGE_DTC
2261 select BR2_PACKAGE_DTC_PROGRAMS
2262 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
2263 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
2264 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
2265 help
2266 This option has been removed in favor of a more fine-grained
2267 configuration, which is recommended. Selecting this option
2268 enables FIT and FIT signature support for the target packages.
2269 It will also select the dtc and openssl packages.
2270
Waldemar Brodkorbf253c142016-06-01 20:40:25 +02002271config BR2_PTHREADS_OLD
2272 bool "linuxthreads (stable/old)"
2273 select BR2_LEGACY
2274 help
2275 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
2276 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
2277
Thomas Petazzoniae466a62016-05-17 00:13:01 +02002278config BR2_BINUTILS_VERSION_2_23_X
2279 bool "binutils 2.23 removed"
2280 select BR2_LEGACY
2281 help
2282 Binutils 2.23 has been removed, using a newer version is
2283 recommended.
2284
Thomas Petazzoni500de252016-05-17 00:13:00 +02002285config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
2286 bool "eglibc support has been removed"
2287 select BR2_LEGACY
2288 help
2289 The eglibc project no longer exists, as it has been merged
2290 back into the glibc project. Therefore, support for eglibc
2291 has been removed, and glibc should be used instead.
2292
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02002293config BR2_GDB_VERSION_7_8
2294 bool "gdb 7.8 has been removed"
2295 select BR2_LEGACY
2296 help
2297 The 7.8 version of gdb has been removed. Use a newer version
2298 instead.
2299
2300###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01002301comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +01002302
Gustavo Zacarias3380da62016-05-14 10:33:47 -03002303config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
2304 bool "openvpn polarssl crypto backend removed"
2305 select BR2_LEGACY
2306 help
2307 The OpenVPN polarssl crypto backend option has been removed.
2308 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
2309 compatible with mbedtls (polarssl) series 2.x which is the
2310 version provided in buildroot. And both can't coexist.
2311 It now uses OpenSSL as the only option.
2312
Martin Bark4dfc2cb2016-05-03 10:36:54 +01002313config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
2314 bool "nginx http spdy module removed"
2315 select BR2_LEGACY
2316 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
2317 help
2318 The ngx_http_spdy_module has been superseded by the
2319 ngx_http_v2_module since nginx v1.9.5. The
2320 ngx_http_v2_module modules has been automatically selected
2321 in your configuration.
2322
Gustavo Zacarias0c956f22016-05-03 16:44:15 -03002323config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
2324 bool "gst1-plugins-bad rtp plugin moved to good"
2325 select BR2_LEGACY
2326 help
2327 The rtp plugin has been moved from gst1-plugins-base to
2328 gst1-plugins-good.
2329
Gustavo Zacarias4196cf92016-05-03 16:44:14 -03002330config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
2331 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
2332 select BR2_LEGACY
2333 help
2334 The mpg123 plugin has been moved from gst1-plugins-bad to
2335 gst1-plugins-ugly.
2336
Gustavo Zacarias8490e832016-04-29 10:18:56 -03002337config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
2338 bool "PowerPC Sourcery toolchain has been removed"
2339 select BR2_LEGACY
2340 help
2341 The Sourcery CodeBench toolchain for the PowerPC
2342 architecture has been removed, as it was very old, not
2343 maintained, and causing numerous build failures with modern
2344 userspace packages.
2345
2346config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
2347 bool "PowerPC Sourcery E500v2 toolchain has been removed"
2348 select BR2_LEGACY
2349 help
2350 The Sourcery CodeBench toolchain for the PowerPC E500v2
2351 architecture has been removed, as it was very old, not
2352 maintained, and causing numerous build failures with modern
2353 userspace packages.
2354
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02002355config BR2_x86_i386
2356 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +02002357 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02002358 help
2359 The support for the i386 processors of the x86 architecture
2360 has been removed.
2361
Julien CORJONf75ee802016-03-17 10:42:25 +01002362config BR2_PACKAGE_QT5QUICK1
2363 bool "qt5quick1 package removed"
2364 select BR2_LEGACY
2365 help
2366 The qt5quick1 package has been removed, since it was removed
2367 from upstream starting from Qt 5.6.
2368
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03002369config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -05002370 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03002371 help
2372 The uboot custom patch directory option has been removed. Use
2373 the improved BR2_TARGET_UBOOT_PATCH option instead.
2374
Danomi Manchegof61583f2016-12-19 22:10:12 -05002375config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
2376 bool
2377 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
2378 select BR2_LEGACY
2379
2380# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
2381# boot/uboot/Config.in
2382
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -03002383config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
2384 bool "xf86-input-void removed"
2385 select BR2_LEGACY
2386 help
2387 The xf86-input-void package has been removed, there's no need
2388 for it in any modern (post-2007) xorg server.
2389
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002390config BR2_KERNEL_HEADERS_3_17
2391 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002392 select BR2_LEGACY
2393 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002394 Version 3.17.x of the Linux kernel headers have been
2395 deprecated for more than four buildroot releases and are now
2396 removed.
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002397
Gustavo Zacariasffc324e2016-03-11 11:32:21 -03002398config BR2_GDB_VERSION_7_7
2399 bool "gdb 7.7 has been removed"
2400 select BR2_LEGACY
2401 help
2402 The 7.7 version of gdb has been removed. Use a newer version
2403 instead.
2404
Gustavo Zacarias75945dd2016-03-11 11:32:20 -03002405config BR2_PACKAGE_FOOMATIC_FILTERS
2406 bool "foomatic-filters"
2407 select BR2_LEGACY
2408 help
2409 The foomatic-filters package was removed.
2410
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -03002411config BR2_PACKAGE_SAMBA
2412 bool "samba"
2413 select BR2_LEGACY
2414 help
2415 The samba package was removed in favour of samba4 since the
2416 3.x series isn't supported by upstream any longer.
2417
Bernd Kuhls6922b412016-02-20 23:09:11 +01002418config BR2_PACKAGE_KODI_WAVPACK
2419 bool "wavpack"
2420 select BR2_LEGACY
2421 help
2422 wavpack support was removed in favour of ffmpeg:
2423 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
2424
Bernd Kuhls75ce17d2016-02-20 23:09:07 +01002425config BR2_PACKAGE_KODI_RSXS
2426 bool "rsxs support in Kodi was moved to an addon"
2427 select BR2_LEGACY
2428 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
2429 help
2430 rsxs support in Kodi was moved to an addon
2431
Bernd Kuhls56b80ec2016-02-20 23:09:06 +01002432config BR2_PACKAGE_KODI_GOOM
2433 bool "Goom support in Kodi was moved to an addon"
2434 select BR2_LEGACY
2435 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
2436 help
2437 Goom support in Kodi was moved to an addon
2438
Gabe Evanse5a073a2016-02-25 21:55:11 +00002439config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
2440 bool "systemd all extras option has been removed"
2441 select BR2_LEGACY
2442 select BR2_PACKAGE_XZ
2443 select BR2_PACKAGE_LIBGCRYPT
2444 help
2445 The systemd option to enable "all extras" has been
2446 removed. To get the same features, the libgcrypt and xz
2447 package should now be enabled.
2448
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -03002449config BR2_GCC_VERSION_4_5_X
2450 bool "gcc 4.5.x has been removed"
2451 select BR2_LEGACY
2452 help
2453 The 4.5.x version of gcc has been removed. Use a newer
2454 version instead.
2455
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01002456config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -05002457 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01002458 select BR2_PACKAGE_NCURSES
2459 select BR2_PACKAGE_READLINE
2460 select BR2_LEGACY
2461 help
2462 This option was removed in favour of the sqlite package
2463 deciding itself depending on the enabled packages whether
2464 command-line editing should be enabled, it also also takes
2465 libedit into account.
2466
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01002467###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +01002468comment "Legacy options removed in 2016.02"
2469
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +01002470config BR2_PACKAGE_DOVECOT_BZIP2
2471 bool "bzip2 support option has been removed"
2472 select BR2_LEGACY
2473 select BR2_PACKAGE_BZIP2
2474 help
2475 Bzip2 support is built if the bzip2 package is selected.
2476
2477config BR2_PACKAGE_DOVECOT_ZLIB
2478 bool "zlib support option has been removed"
2479 select BR2_LEGACY
2480 select BR2_PACKAGE_ZLIB
2481 help
2482 Zlib support is built if the zlib package is selected.
2483
James Knightead1df42016-02-12 11:40:05 -05002484config BR2_PACKAGE_E2FSPROGS_FINDFS
2485 bool "e2fsprogs findfs option has been removed"
2486 select BR2_LEGACY
2487 help
2488 This option attempted to enable findfs capabilities from
2489 e2fsprogs but has not worked since July 2015 (due to
2490 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +01002491 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -05002492
Romain Naourb1063a02016-02-07 17:56:56 +01002493config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
2494 bool "openpowerlink debug option has been removed"
2495 select BR2_LEGACY
2496 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002497 This option depends on BR2_ENABLE_DEBUG which should not be
2498 used by packages anymore.
Romain Naourb1063a02016-02-07 17:56:56 +01002499
2500config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
2501 bool "openpowerlink package has been updated"
2502 select BR2_LEGACY
2503 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
2504 help
2505 openpowerlink kernel modules are built if the
2506 kernel stack library is selected.
2507
2508config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
2509 bool "openpowerlink package has been updated"
2510 select BR2_LEGACY
2511 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
2512 help
2513 The user space support has been split in two part:
2514 - a monolitic user space library
2515 - a user spae deamon driver
2516
Yann E. MORINe3e05832016-02-06 00:06:17 +01002517config BR2_LINUX_KERNEL_SAME_AS_HEADERS
2518 bool "using the linux headers version for the kernel has been removed"
2519 select BR2_LEGACY
2520 help
2521 The option to use the version of the kernel headers for the
2522 kernel to build has been removed.
2523
2524 There is now the converse, better-suited and more versatile
2525 option to use the kernel version for the linux headers.
2526
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002527config BR2_PACKAGE_CUPS_PDFTOPS
2528 bool "Pdftops support has been removed from Cups"
Olivier Schonken917de0f2017-10-23 15:26:11 +02002529 select BR2_PACKAGE_CUPS_FILTERS
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002530 select BR2_LEGACY
2531 help
2532 Pdftops support has been removed from the cups package
2533 It is now part of the cups-filters package.
2534
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002535config BR2_KERNEL_HEADERS_3_16
2536 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002537 select BR2_LEGACY
2538 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002539 Version 3.16.x of the Linux kernel headers have been
2540 deprecated for more than four buildroot releases and are now
2541 removed.
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002542
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01002543config BR2_PACKAGE_PYTHON_PYXML
2544 bool "python-pyxml package has been removed"
2545 select BR2_LEGACY
2546 help
2547 PyXML is obsolete and its functionality is covered either via
2548 native Python XML support or python-lxml package.
2549
Steven Noonand29c7192015-12-27 12:07:31 +01002550# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
2551config BR2_ENABLE_SSP
2552 bool "Stack Smashing protection now has different levels"
2553 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002554 The protection offered by SSP can now be selected from
2555 different protection levels. Be sure to review the SSP level
2556 in the build options menu.
Steven Noonand29c7192015-12-27 12:07:31 +01002557
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002558config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002559 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002560 select BR2_LEGACY
2561 help
2562 The cle266 directfb driver support has been removed.
2563 It doesn't build in the latest version and it's unlikely
2564 anyone has any use for it.
2565
2566config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002567 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002568 select BR2_LEGACY
2569 help
2570 The unichrome directfb driver support has been removed.
2571 It doesn't build in the latest version and it's unlikely
2572 anyone has any use for it.
2573
Romain Naour820e1682015-12-19 17:39:14 +01002574config BR2_PACKAGE_LIBELEMENTARY
2575 bool "libelementary has been renamed to elementary"
2576 select BR2_LEGACY
2577 select BR2_PACKAGE_ELEMENTARY
2578 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002579 The libelementary package has been renamed to match the
2580 upstream name.
Romain Naour820e1682015-12-19 17:39:14 +01002581
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002582config BR2_PACKAGE_LIBEINA
2583 bool "libeina package has been removed"
2584 select BR2_LEGACY
2585 select BR2_PACKAGE_EFL
2586 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002587 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002588
Romain Naour49700f02015-12-15 23:40:37 +01002589config BR2_PACKAGE_LIBEET
2590 bool "libeet package has been removed"
2591 select BR2_LEGACY
2592 select BR2_PACKAGE_EFL
2593 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002594 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01002595
Romain Naoure5989d62015-12-15 23:40:36 +01002596config BR2_PACKAGE_LIBEVAS
2597 bool "libevas package has been removed"
2598 select BR2_LEGACY
2599 select BR2_PACKAGE_EFL
2600 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002601 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01002602
Romain Naour1fe1b602015-12-15 23:40:35 +01002603config BR2_PACKAGE_LIBECORE
2604 bool "libecore package has been removed"
2605 select BR2_LEGACY
2606 select BR2_PACKAGE_EFL
2607 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002608 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01002609
Romain Naour8c05c382015-12-15 23:40:34 +01002610config BR2_PACKAGE_LIBEDBUS
2611 bool "libedbus package has been removed"
2612 select BR2_LEGACY
2613 select BR2_PACKAGE_EFL
2614 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002615 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01002616
Romain Naourd2b042c2015-12-15 23:40:33 +01002617config BR2_PACKAGE_LIBEFREET
2618 bool "libefreet package has been removed"
2619 select BR2_LEGACY
2620 select BR2_PACKAGE_EFL
2621 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002622 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01002623
Romain Naoure155c952015-12-15 23:40:32 +01002624config BR2_PACKAGE_LIBEIO
2625 bool "libeio package has been removed"
2626 select BR2_LEGACY
2627 select BR2_PACKAGE_EFL
2628 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002629 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01002630
Romain Naourb728fb72015-12-15 23:40:31 +01002631config BR2_PACKAGE_LIBEMBRYO
2632 bool "libembryo package has been removed"
2633 select BR2_LEGACY
2634 select BR2_PACKAGE_EFL
2635 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002636 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01002637
Romain Naour4c93c102015-12-15 23:40:30 +01002638config BR2_PACKAGE_LIBEDJE
2639 bool "libedje package has been removed"
2640 select BR2_LEGACY
2641 select BR2_PACKAGE_EFL
2642 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002643 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01002644
Romain Naour905dba12015-12-15 23:40:29 +01002645config BR2_PACKAGE_LIBETHUMB
2646 bool "libethumb package has been removed"
2647 select BR2_LEGACY
2648 select BR2_PACKAGE_EFL
2649 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002650 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01002651
Luca Ceresolif0c94702015-11-27 18:38:00 +01002652config BR2_PACKAGE_INFOZIP
2653 bool "infozip option has been renamed to zip"
2654 select BR2_LEGACY
2655 select BR2_PACKAGE_ZIP
2656 help
2657 Info-Zip's Zip package has been renamed from infozip to zip,
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002658 to avoid ambiguities with Info-Zip's UnZip which has been
2659 added in the unzip package.
Luca Ceresolif0c94702015-11-27 18:38:00 +01002660
Martin Barka2d16602015-12-23 12:16:04 +00002661config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00002662 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00002663 select BR2_LEGACY
2664 select BR2_PACKAGE_NODEJS
2665 help
Martin Bark75b70492016-01-30 14:51:00 +00002666 nodejs 0.10.x option has been removed. 0.10.x is now
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002667 automatically chosen for ARMv5 architectures only and the
2668 latest nodejs for all other supported architectures. The
2669 correct nodejs version has been automatically selected in your
2670 configuration.
Martin Barka2d16602015-12-23 12:16:04 +00002671
Martin Barka314b872015-12-23 12:16:03 +00002672config BR2_BR2_PACKAGE_NODEJS_0_12_X
2673 bool "nodejs version 0.12.x has been removed"
2674 select BR2_LEGACY
2675 select BR2_PACKAGE_NODEJS
2676 help
2677 nodejs version 0.12.x has been removed. As an alternative,
2678 the latest nodejs version has been automatically selected in
2679 your configuration.
2680
Martin Bark90bf67c2015-12-23 12:16:02 +00002681config BR2_BR2_PACKAGE_NODEJS_4_X
2682 bool "nodejs version 4.x has been removed"
2683 select BR2_LEGACY
2684 select BR2_PACKAGE_NODEJS
2685 help
2686 nodejs version 4.x has been removed. As an alternative,
2687 the latest nodejs version has been automatically selected in
2688 your configuration.
2689
Luca Ceresolif0c94702015-11-27 18:38:00 +01002690###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002691comment "Legacy options removed in 2015.11"
2692
Peter Seiderer301e8ff2015-10-15 21:42:43 +02002693config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
2694 bool "gst1-plugins-bad real plugin has been removed"
2695 select BR2_LEGACY
2696 help
2697 The real plugin from GStreamer 1 bad plugins has been
2698 removed.
2699
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002700config BR2_PACKAGE_MEDIA_CTL
2701 bool "media-ctl package has been removed"
2702 select BR2_LEGACY
2703 select BR2_PACKAGE_LIBV4L
2704 select BR2_PACKAGE_LIBV4L_UTILS
2705 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002706 media-ctl source and developement have been moved to v4l-utils
2707 since June 2014. For an up-to-date media-ctl version select
2708 BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002709
Romain Naourf8031332015-10-03 18:35:05 +02002710config BR2_PACKAGE_SCHIFRA
2711 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002712 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02002713 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002714 Schifra package has been maked broken since 2014.11 release
2715 and haven't been fixed since then.
Romain Naourf8031332015-10-03 18:35:05 +02002716
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002717config BR2_PACKAGE_ZXING
2718 bool "zxing option has been renamed"
2719 select BR2_LEGACY
2720 select BR2_PACKAGE_ZXING_CPP
2721 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002722 ZXing no longer provides the cpp bindings, it has been renamed
2723 to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002724
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002725# Since FreeRDP has new dependencies, protect this legacy to avoid the
2726# infamous "unmet direct dependencies" kconfig error.
2727config BR2_PACKAGE_FREERDP_CLIENT
2728 bool "freerdp client option renamed"
2729 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02002730 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002731 select BR2_PACKAGE_FREERDP_CLIENT_X11
2732
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03002733config BR2_PACKAGE_BLACKBOX
2734 bool "blackbox package has been removed"
2735 select BR2_LEGACY
2736 help
2737 Upstream is dead and the package has been deprecated for
2738 some time. There are other alternative maintained WMs.
2739
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002740config BR2_KERNEL_HEADERS_3_0
2741 bool "kernel headers version 3.0.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002742 select BR2_LEGACY
2743 help
2744 Version 3.0.x of the Linux kernel headers have been deprecated
2745 for more than four buildroot releases and are now removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002746
2747config BR2_KERNEL_HEADERS_3_11
2748 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002749 select BR2_LEGACY
2750 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002751 Version 3.11.x of the Linux kernel headers have been
2752 deprecated for more than four buildroot releases and are now
2753 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002754
2755config BR2_KERNEL_HEADERS_3_13
2756 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002757 select BR2_LEGACY
2758 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002759 Version 3.13.x of the Linux kernel headers have been
2760 deprecated for more than four buildroot releases and are now
2761 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002762
2763config BR2_KERNEL_HEADERS_3_15
2764 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002765 select BR2_LEGACY
2766 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002767 Version 3.15.x of the Linux kernel headers have been
2768 deprecated for more than four buildroot releases and are now
2769 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002770
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002771config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
2772 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002773 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002774 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2775 help
2776 The per-DirectFB example options have been removed. The
2777 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2778 examples.
2779
2780config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
2781 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002782 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002783 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2784 help
2785 The per-DirectFB example options have been removed. The
2786 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2787 examples.
2788
2789config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
2790 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002791 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002792 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2793 help
2794 The per-DirectFB example options have been removed. The
2795 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2796 examples.
2797
2798config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
2799 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002800 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002801 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2802 help
2803 The per-DirectFB example options have been removed. The
2804 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2805 examples.
2806
2807config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
2808 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002809 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002810 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2811 help
2812 The per-DirectFB example options have been removed. The
2813 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2814 examples.
2815
2816config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
2817 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002818 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002819 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2820 help
2821 The per-DirectFB example options have been removed. The
2822 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2823 examples.
2824
2825config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
2826 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002827 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002828 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2829 help
2830 The per-DirectFB example options have been removed. The
2831 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2832 examples.
2833
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002834config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
2835 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002836 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002837 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2838 help
2839 The per-DirectFB example options have been removed. The
2840 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2841 examples.
2842
2843config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
2844 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002845 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002846 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2847 help
2848 The per-DirectFB example options have been removed. The
2849 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2850 examples.
2851
2852config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
2853 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002854 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002855 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2856 help
2857 The per-DirectFB example options have been removed. The
2858 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2859 examples.
2860
2861config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
2862 bool "DirectFB example df_input 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_JOYSTICK
2871 bool "DirectFB example df_joystick 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_KNUCKLES
2880 bool "DirectFB example df_knuckles 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_LAYER
2889 bool "DirectFB example df_layer 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_MATRIX
2898 bool "DirectFB example df_matrix 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_MATRIX_WATER
2907 bool "DirectFB example df_matrix_water 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_NEO
2916 bool "DirectFB example df_neo 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
2924config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
2925 bool "DirectFB example df_netload 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_PALETTE
2934 bool "DirectFB example df_palette has been removed"
2935 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2936 help
2937 The per-DirectFB example options have been removed. The
2938 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2939 examples.
2940
2941config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
2942 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002943 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002944 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2945 help
2946 The per-DirectFB example options have been removed. The
2947 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2948 examples.
2949
2950config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
2951 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002952 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002953 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2954 help
2955 The per-DirectFB example options have been removed. The
2956 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2957 examples.
2958
2959config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
2960 bool "DirectFB example df_stress has been removed"
2961 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2962 help
2963 The per-DirectFB example options have been removed. The
2964 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2965 examples.
2966
2967config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
2968 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002969 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002970 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2971 help
2972 The per-DirectFB example options have been removed. The
2973 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2974 examples.
2975
2976config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
2977 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002978 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002979 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2980 help
2981 The per-DirectFB example options have been removed. The
2982 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2983 examples.
2984
2985config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
2986 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002987 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002988 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2989 help
2990 The per-DirectFB example options have been removed. The
2991 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2992 examples.
2993
2994config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
2995 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002996 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002997 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2998 help
2999 The per-DirectFB example options have been removed. The
3000 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3001 examples.
3002
Gary Bisson2b78fb22015-09-23 15:39:27 +02003003config BR2_PACKAGE_KOBS_NG
3004 bool "kobs-ng was replaced by imx-kobs"
3005 select BR2_LEGACY
3006 select BR2_PACKAGE_IMX_KOBS
3007 help
3008 The outdated kobs-ng has been replaced by the Freescale-
3009 maintained imx-kobs package.
3010
Thomas Petazzoni11573f52015-09-02 00:01:11 +02003011config BR2_PACKAGE_SAWMAN
3012 bool "sawman package removed"
3013 select BR2_LEGACY
3014 select BR2_PACKAGE_DIRECTFB_SAWMAN
3015 help
3016 This option has been removed because the sawman package no
3017 longer exists: it was merged inside DirectFB itself. This
3018 feature can now be enabled using the
3019 BR2_PACKAGE_DIRECTFB_SAWMAN option.
3020
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02003021config BR2_PACKAGE_DIVINE
3022 bool "divine package removed"
3023 select BR2_LEGACY
3024 select BR2_PACKAGE_DIRECTFB_DIVINE
3025 help
3026 This option has been removed because the divine package no
3027 longer exists: it was merged inside DirectFB itself. This
3028 feature can now be enabled using the
3029 BR2_PACKAGE_DIRECTFB_DIVINE option.
3030
3031###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03003032comment "Legacy options removed in 2015.08"
3033
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02003034config BR2_PACKAGE_KODI_PVR_ADDONS
3035 bool "Kodi PVR addon was split"
3036 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02003037 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02003038 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02003039 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02003040 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02003041 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02003042 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02003043 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02003044 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02003045 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02003046 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02003047 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02003048 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02003049 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02003050 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02003051 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02003052 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02003053 help
3054 Kodi PVR addon was split into seperate modules
3055
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03003056config BR2_BINUTILS_VERSION_2_23_2
3057 bool "binutils 2.23 option renamed"
3058 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03003059 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02003060 Binutils 2.23.2 has been removed, using a newer version is
3061 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03003062
3063config BR2_BINUTILS_VERSION_2_24
3064 bool "binutils 2.24 option renamed"
3065 select BR2_LEGACY
3066 select BR2_BINUTILS_VERSION_2_24_X
3067 help
3068 The binutils version option has been renamed to match the
3069 same patchlevel logic used by gcc. The new option is now
3070 BR2_BINUTILS_VERSION_2_24_X.
3071
3072config BR2_BINUTILS_VERSION_2_25
3073 bool "binutils 2.25 option renamed"
3074 select BR2_LEGACY
3075 select BR2_BINUTILS_VERSION_2_25_X
3076 help
3077 The binutils version option has been renamed to match the
3078 same patchlevel logic used by gcc. The new option is now
3079 BR2_BINUTILS_VERSION_2_25_X.
3080
Romain Naour1326e762015-07-14 19:35:14 +02003081config BR2_PACKAGE_PERF
3082 bool "perf option has been renamed"
3083 select BR2_LEGACY
3084 select BR2_LINUX_KERNEL_TOOL_PERF
3085 help
3086 The perf package has been moved as a Linux tools package,
3087 and the option to enable it is now
3088 BR2_LINUX_KERNEL_TOOL_PERF.
3089
Thomas Petazzoni2f845952015-07-11 14:52:53 +02003090config BR2_BINUTILS_VERSION_2_22
3091 bool "binutils 2.22 removed"
3092 select BR2_LEGACY
3093 help
3094 Binutils 2.22 has been removed, using a newer version is
3095 recommended.
3096
Gary Bisson4c0613e2015-05-26 10:19:37 +02003097config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
3098 bool "gpu-viv-bin-mx6q"
3099 select BR2_LEGACY
3100 select BR2_PACKAGE_IMX_GPU_VIV
3101 help
3102 Vivante graphics libraries have been renamed to
3103 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
3104 name.
3105
Matt Weber7742abe2015-06-02 08:28:35 -05003106config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
Matt Weber7742abe2015-06-02 08:28:35 -05003107 bool "libsemanage python bindings removed"
Ricardo Martincoskia1264442018-04-01 02:08:33 -03003108 depends on BR2_PACKAGE_PYTHON
Peter Seiderer758c5c72015-10-07 23:56:49 +02003109 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05003110 help
3111 This option has been removed, since the libsemanage Python
3112 bindings on the target were not useful.
3113
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03003114config BR2_TARGET_UBOOT_NETWORK
3115 bool "U-Boot custom network settings removed"
3116 select BR2_LEGACY
3117 help
3118 U-Boot's custom network settings options have been removed.
3119
3120###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05003121comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003122
Michał Leśniewskie3904a82015-05-19 20:26:30 +02003123config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
3124 bool "jffs2 16kB erasesize NAND flash option renamed"
3125 select BR2_LEGACY
3126 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
3127 help
3128 The JFFS2 NAND flash options now longer include the page
3129 size.
3130
3131config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
3132 bool "jffs2 128kB erasesize NAND flash option renamed"
3133 select BR2_LEGACY
3134 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
3135 help
3136 The JFFS2 NAND flash options now longer include the page
3137 size.
3138
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02003139config BR2_PACKAGE_MONO_20
3140 bool "2.0/3.5 .Net Runtime"
3141 select BR2_LEGACY
3142 help
3143 This option no longer exists, all versions of the .Net
3144 runtime are now installed.
3145
3146config BR2_PACKAGE_MONO_40
3147 bool "4.0 .Net Runtime"
3148 select BR2_LEGACY
3149 help
3150 This option no longer exists, all versions of the .Net
3151 runtime are now installed.
3152
3153config BR2_PACKAGE_MONO_45
3154 bool "4.5 .Net Runtime"
3155 select BR2_LEGACY
3156 help
3157 This option no longer exists, all versions of the .Net
3158 runtime are now installed.
3159
Peter Korsgaardefd49e32015-04-27 22:29:05 +02003160config BR2_CIVETWEB_WITH_LUA
3161 bool "civetweb lua option renamed"
3162 select BR2_LEGACY
3163 select BR2_PACKAGE_CIVETWEB_WITH_LUA
3164 help
3165 civetweb's lua option has been renamed to
3166 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
3167 packages name options.
3168
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02003169config BR2_PACKAGE_TIFF_TIFF2PDF
3170 bool "tiff utility-specific option removed"
3171 select BR2_LEGACY
3172 select BR2_PACKAGE_TIFF_UTILITIES
3173 help
3174 utility-specific options have been removed in favour of
3175 the new option BR2_PACKAGE_TIFF_UTILITIES.
3176
3177config BR2_PACKAGE_TIFF_TIFFCP
3178 bool "tiff utility-specific option removed"
3179 select BR2_LEGACY
3180 select BR2_PACKAGE_TIFF_UTILITIES
3181 help
3182 utility-specific options have been removed in favour of
3183 the new option BR2_PACKAGE_TIFF_UTILITIES.
3184
Thomas Petazzonie7035d42015-04-21 23:36:28 +02003185config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
3186 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003187 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02003188 help
3189 This option has never worked, so it has been removed.
3190
Yann E. MORIN02917962015-03-24 19:54:15 +01003191config BR2_TARGET_GENERIC_PASSWD_DES
3192 bool "Encoding passwords with DES has been removed"
3193 select BR2_LEGACY
3194 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003195 Paswords can now only be encoded with either of md5, sha256 or
3196 sha512. The default is md5, which is stronger that DES (but
3197 still pretty weak).
Yann E. MORIN02917962015-03-24 19:54:15 +01003198
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03003199config BR2_PACKAGE_GTK2_THEME_HICOLOR
3200 bool "hicolor (default theme) is a duplicate"
3201 select BR2_LEGACY
3202 select BR2_PACKAGE_HICOLOR_ICON_THEME
3203 help
3204 The option was just a duplicate of hicolor icon theme.
3205
Mike Williamsfd0e5f62015-03-06 12:17:45 -05003206config BR2_PACKAGE_VALGRIND_PTRCHECK
3207 bool "valgrind's PTRCheck was renamed to SGCheck"
3208 select BR2_LEGACY
3209 select BR2_PACKAGE_VALGRIND_SGCHECK
3210 help
3211 PTRCheck was renamed to SGCheck in valgrind
3212
3213###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003214comment "Legacy options removed in 2015.02"
3215
Pedro Aguilar10900c02015-02-27 06:38:07 +02003216config BR2_PACKAGE_LIBGC
3217 bool "libgc package removed"
3218 select BR2_LEGACY
3219 select BR2_PACKAGE_BDWGC
3220 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003221 libgc has been removed because we have the same package under
3222 a different name, bdwgc.
Pedro Aguilar10900c02015-02-27 06:38:07 +02003223
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01003224config BR2_PACKAGE_WDCTL
3225 bool "util-linux' wdctl option has been renamed"
3226 select BR2_LEGACY
3227 select BR2_PACKAGE_UTIL_LINUX_WDCTL
3228 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003229 util-linux' wdctl option has been renamed to
3230 BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other
3231 options are named.
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01003232
Danomi Manchegoe44edb82015-07-13 22:57:06 -04003233config BR2_PACKAGE_UTIL_LINUX_ARCH
3234 bool "util-linux' arch option has been removed"
3235 select BR2_LEGACY
3236 help
3237 util-linux' arch was dropped in util-linux 2.23, in favor of
3238 the coreutils version.
3239
3240config BR2_PACKAGE_UTIL_LINUX_DDATE
3241 bool "util-linux' ddate option has been removed"
3242 select BR2_LEGACY
3243 help
3244 util-linux' ddate was dropped in util-linux 2.23.
3245
Romain Naour3c476542015-01-18 20:53:08 +01003246config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
3247 bool "rpm's bzip2 payloads option has been removed"
3248 select BR2_LEGACY
3249 select BR2_PACKAGE_BZIP2
3250 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003251 The bzip2 payloads option rely entirely on the dependant
3252 package bzip2. So, you need to select it to enable this
3253 feature.
Romain Naour3c476542015-01-18 20:53:08 +01003254
3255config BR2_PACKAGE_RPM_XZ_PAYLOADS
3256 bool "rpm's xz payloads option has been removed"
3257 select BR2_LEGACY
3258 select BR2_PACKAGE_XZ
3259 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003260 The xz payloads option rely entirely on the dependant package
3261 xz. So, you need to select it to enable this feature.
Romain Naour3c476542015-01-18 20:53:08 +01003262
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03003263config BR2_PACKAGE_M4
3264 bool "m4 target package removed"
3265 select BR2_LEGACY
3266 help
3267 The m4 target package has been removed, it's been
3268 deprecated for some time now.
3269
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03003270config BR2_PACKAGE_FLEX_BINARY
3271 bool "flex binary in target option removed"
3272 select BR2_LEGACY
3273 help
3274 The flex binary in the target option has been removed.
3275 It's been deprecated for some time now and is essentially a
3276 development tool which isn't very useful in the target.
3277
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03003278config BR2_PACKAGE_BISON
3279 bool "bison target package removed"
3280 select BR2_LEGACY
3281 help
3282 The bison target package has been removed, it's been
3283 deprecated for some time now and is essentially a development
3284 tool which isn't very useful in the target.
3285
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03003286config BR2_PACKAGE_GOB2
3287 bool "gob2 target package removed"
3288 select BR2_LEGACY
3289 help
3290 The gob2 target package has been removed, it's been
3291 deprecated for some time now and was essentially useless
3292 without a target toolchain.
3293
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03003294config BR2_PACKAGE_DISTCC
3295 bool "distcc target package removed"
3296 select BR2_LEGACY
3297 help
3298 The distcc target package has been removed, it's been
3299 deprecated for some time now and was essentially useless
3300 without a target toolchain.
3301
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03003302config BR2_PACKAGE_HASERL_VERSION_0_8_X
3303 bool "haserl 0.8.x version removed"
3304 select BR2_LEGACY
3305 help
3306 The 0.8.x version option for haserl has been removed since it
3307 has been deprecated for some time now.
3308 You should be able to use the 0.9.x version without issues.
3309
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03003310config BR2_PACKAGE_STRONGSWAN_TOOLS
3311 bool "strongswan option has been removed"
3312 select BR2_LEGACY
3313 select BR2_PACKAGE_STRONGSWAN_PKI
3314 select BR2_PACKAGE_STRONGSWAN_SCEP
3315 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003316 The tools option has been removed upstream and the different
3317 tools have been split between the pki and scep options, with
3318 others deprecated.
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03003319
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003320config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02003321 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003322 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003323 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02003324 According to the github project page:
3325 https://github.com/pipelka/xbmc-addon-xvdr
3326 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003327
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01003328config BR2_PACKAGE_XBMC_PVR_ADDONS
3329 bool "xbmc options have been renamed"
3330 select BR2_LEGACY
3331 select BR2_PACKAGE_KODI_PVR_ADDONS
3332 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003333 The XBMC media center project was renamed to Kodi
3334 entertainment center
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01003335
Bernd Kuhls35784592014-12-23 18:46:27 +01003336config BR2_PACKAGE_XBMC
3337 bool "xbmc options have been renamed"
3338 select BR2_LEGACY
3339 select BR2_PACKAGE_KODI
3340 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003341 The XBMC media center project was renamed to Kodi
3342 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003343
3344config BR2_PACKAGE_XBMC_ALSA_LIB
3345 bool "xbmc options have been renamed"
3346 select BR2_LEGACY
3347 select BR2_PACKAGE_KODI_ALSA_LIB
3348 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003349 The XBMC media center project was renamed to Kodi
3350 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003351
3352config BR2_PACKAGE_XBMC_AVAHI
3353 bool "xbmc options have been renamed"
3354 select BR2_LEGACY
3355 select BR2_PACKAGE_KODI_AVAHI
3356 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003357 The XBMC media center project was renamed to Kodi
3358 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003359
3360config BR2_PACKAGE_XBMC_DBUS
3361 bool "xbmc options have been renamed"
3362 select BR2_LEGACY
3363 select BR2_PACKAGE_KODI_DBUS
3364 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003365 The XBMC media center project was renamed to Kodi
3366 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003367
3368config BR2_PACKAGE_XBMC_LIBBLURAY
3369 bool "xbmc options have been renamed"
3370 select BR2_LEGACY
3371 select BR2_PACKAGE_KODI_LIBBLURAY
3372 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003373 The XBMC media center project was renamed to Kodi
3374 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003375
3376config BR2_PACKAGE_XBMC_GOOM
3377 bool "xbmc options have been renamed"
3378 select BR2_LEGACY
3379 select BR2_PACKAGE_KODI_GOOM
3380 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003381 The XBMC media center project was renamed to Kodi
3382 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003383
3384config BR2_PACKAGE_XBMC_RSXS
3385 bool "xbmc options have been renamed"
3386 select BR2_LEGACY
3387 select BR2_PACKAGE_KODI_RSXS
3388 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003389 The XBMC media center project was renamed to Kodi
3390 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003391
3392config BR2_PACKAGE_XBMC_LIBCEC
3393 bool "xbmc options have been renamed"
3394 select BR2_LEGACY
3395 select BR2_PACKAGE_KODI_LIBCEC
3396 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003397 The XBMC media center project was renamed to Kodi
3398 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003399
3400config BR2_PACKAGE_XBMC_LIBMICROHTTPD
3401 bool "xbmc options have been renamed"
3402 select BR2_LEGACY
3403 select BR2_PACKAGE_KODI_LIBMICROHTTPD
3404 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003405 The XBMC media center project was renamed to Kodi
3406 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003407
3408config BR2_PACKAGE_XBMC_LIBNFS
3409 bool "xbmc options have been renamed"
3410 select BR2_LEGACY
3411 select BR2_PACKAGE_KODI_LIBNFS
3412 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003413 The XBMC media center project was renamed to Kodi
3414 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003415
3416config BR2_PACKAGE_XBMC_RTMPDUMP
3417 bool "xbmc options have been renamed"
3418 select BR2_LEGACY
3419 select BR2_PACKAGE_KODI_RTMPDUMP
3420 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003421 The XBMC media center project was renamed to Kodi
3422 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003423
3424config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
3425 bool "xbmc options have been renamed"
3426 select BR2_LEGACY
3427 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
3428 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003429 The XBMC media center project was renamed to Kodi
3430 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003431
3432config BR2_PACKAGE_XBMC_LIBSMBCLIENT
3433 bool "xbmc options have been renamed"
3434 select BR2_LEGACY
3435 select BR2_PACKAGE_KODI_LIBSMBCLIENT
3436 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003437 The XBMC media center project was renamed to Kodi
3438 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003439
3440config BR2_PACKAGE_XBMC_LIBTHEORA
3441 bool "xbmc options have been renamed"
3442 select BR2_LEGACY
3443 select BR2_PACKAGE_KODI_LIBTHEORA
3444 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003445 The XBMC media center project was renamed to Kodi
3446 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003447
3448config BR2_PACKAGE_XBMC_LIBUSB
3449 bool "xbmc options have been renamed"
3450 select BR2_LEGACY
3451 select BR2_PACKAGE_KODI_LIBUSB
3452 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003453 The XBMC media center project was renamed to Kodi
3454 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003455
3456config BR2_PACKAGE_XBMC_LIBVA
3457 bool "xbmc options have been renamed"
3458 select BR2_LEGACY
3459 select BR2_PACKAGE_KODI_LIBVA
3460 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003461 The XBMC media center project was renamed to Kodi
3462 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003463
3464config BR2_PACKAGE_XBMC_WAVPACK
3465 bool "xbmc options have been renamed"
3466 select BR2_LEGACY
3467 select BR2_PACKAGE_KODI_WAVPACK
3468 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003469 The XBMC media center project was renamed to Kodi
3470 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003471
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003472config BR2_PREFER_STATIC_LIB
3473 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01003474 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003475 help
3476 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
3477 highlights the fact that the option no longer "prefers"
3478 static libraries, but "enforces" static libraries (i.e
3479 shared libraries are completely unused).
3480
Samuel Martina44b1c12014-12-14 17:24:24 +01003481 Take care of updating the type of libraries you want under the
3482 "Build options" menu.
3483
Bernd Kuhls35784592014-12-23 18:46:27 +01003484###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02003485comment "Legacy options removed in 2014.11"
3486
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003487config BR2_x86_generic
3488 bool "x86 generic variant has been removed"
3489 select BR2_LEGACY
3490 help
3491 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02003492 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003493
Andreas Larsson40e18f22014-10-30 09:29:36 +01003494config BR2_GCC_VERSION_4_4_X
3495 bool "gcc 4.4.x has been removed"
3496 select BR2_LEGACY
3497 help
3498 The 4.4.x version of gcc has been removed. Use a newer
3499 version instead.
3500
Andreas Larsson43b78e72014-10-30 09:29:35 +01003501config BR2_sparc_sparchfleon
3502 bool "sparchfleon CPU has been removed"
3503 select BR2_LEGACY
3504 help
3505 The sparchfleon CPU was only supported in a patched gcc 4.4
3506 version. Its support has been removed in favor of the leon3
3507 CPU starting from gcc 4.8.x.
3508
3509config BR2_sparc_sparchfleonv8
3510 bool "sparchfleonv8 CPU has been removed"
3511 select BR2_LEGACY
3512 help
3513 The sparchfleonv8 CPU was only supported in a patched gcc
3514 4.4 version. Its support has been removed in favor of the
3515 leon3 CPU starting from gcc 4.8.x.
3516
3517config BR2_sparc_sparcsfleon
3518 bool "sparcsfleon CPU has been removed"
3519 select BR2_LEGACY
3520 help
3521 The sparcsfleon CPU was only supported in a patched gcc 4.4
3522 version. Its support has been removed in favor of the leon3
3523 CPU starting from gcc 4.8.x.
3524
3525config BR2_sparc_sparcsfleonv8
3526 bool "sparcsfleonv8 CPU has been removed"
3527 select BR2_LEGACY
3528 help
3529 The sparcsfleonv8 CPU was only supported in a patched gcc
3530 4.4 version. Its support has been removed in favor of the
3531 leon3 CPU starting from gcc 4.8.x.
3532
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02003533config BR2_PACKAGE_XLIB_LIBPCIACCESS
3534 bool "xlib-libpciaccess option has been renamed"
3535 depends on BR2_PACKAGE_XORG7
3536 select BR2_LEGACY
3537 select BR2_PACKAGE_LIBPCIACCESS
3538 help
3539 libpciaccess neither depends on X11 nor Xlib. Thus the
3540 package has been renamed BR2_PACKAGE_LIBPCIACCESS
3541
Yann E. MORINb581bba2014-09-21 20:38:13 +02003542config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
3543 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003544 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02003545 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
3546 help
3547 The Xceive xc5000 option now also handles older firmwares from
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003548 Xceive (the xc4000 series), as well as new firmwares (the
3549 xc5000c) from Cresta, who bought Xceive.
Yann E. MORINb581bba2014-09-21 20:38:13 +02003550
Yann E. MORINdac546e2014-09-21 20:38:12 +02003551config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3552 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003553 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02003554 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3555 help
3556 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3557 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3558 to better account for the fact that a T5 variant exists.
3559
Yann E. MORIN120136e2014-09-21 20:38:09 +02003560config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
3561 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003562 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003563 help
3564 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
3565 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
3566 select it in:
3567 Target packages -> Hardware handling ->
3568 Firmware -> linux-firmware -> WiFi firmware ->
3569 iwlwifi 3160/726x revision to use (revision 7)
3570
3571config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
3572 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003573 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003574 help
3575 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
3576 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
3577 select it in:
3578 Target packages -> Hardware handling ->
3579 Firmware -> linux-firmware -> WiFi firmware ->
3580 iwlwifi 3160/726x revision to use (revision 8)
3581
3582###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003583comment "Legacy options removed in 2014.08"
3584
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003585config BR2_PACKAGE_LIBELF
3586 bool "libelf has been removed"
3587 select BR2_PACKAGE_ELFUTILS
3588 select BR2_LEGACY
3589 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003590 The libelf package provided an old version of the libelf
3591 library and is deprecated. The libelf library is now provided
3592 by the elfutils package.
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003593
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003594config BR2_KERNEL_HEADERS_3_8
3595 bool "kernel headers version 3.8.x are no longer supported"
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003596 select BR2_LEGACY
3597 help
3598 Version 3.8.x of the Linux kernel headers have been deprecated
3599 for more than four buildroot releases and are now removed.
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003600
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02003601config BR2_PACKAGE_GETTEXT_TOOLS
3602 bool "support for gettext-tools on target has been removed"
3603 select BR2_LEGACY
3604 help
3605 The option to install the gettext utilities on the target
3606 has been removed. This is not necessary as Buildroot is not
3607 designed to provide a full development environment on the
3608 target. gettext tools should be used on the build machine
3609 instead.
3610
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003611config BR2_PACKAGE_PROCPS
3612 bool "procps has been replaced by procps-ng"
3613 select BR2_PACKAGE_PROCPS_NG
3614 select BR2_LEGACY
3615 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003616 The procps package has been replaced by the equivalent
3617 procps-ng.
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003618
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02003619config BR2_BINUTILS_VERSION_2_20_1
3620 bool "binutils 2.20.1 has been removed"
3621 select BR2_LEGACY
3622 help
3623 The 2.20.1 version of binutils has been removed. Use a newer
3624 version instead.
3625
3626config BR2_BINUTILS_VERSION_2_21
3627 bool "binutils 2.21 has been removed"
3628 select BR2_LEGACY
3629 help
3630 The 2.21 version of binutils has been removed. Use a newer
3631 version instead.
3632
3633config BR2_BINUTILS_VERSION_2_23_1
3634 bool "binutils 2.23.1 has been removed"
3635 select BR2_LEGACY
3636 help
3637 The 2.23.1 version of binutils has been removed. Use a newer
3638 version instead.
3639
Thomas Petazzoni506b9642014-07-01 20:03:03 +02003640config BR2_UCLIBC_VERSION_0_9_32
3641 bool "uclibc 0.9.32 has been removed"
3642 select BR2_LEGACY
3643 help
3644 The 0.9.32 version of uClibc has been removed. Use a newer
3645 version instead.
3646
Thomas Petazzonid10e0802014-07-01 20:03:06 +02003647config BR2_GCC_VERSION_4_3_X
3648 bool "gcc 4.3.x has been removed"
3649 select BR2_LEGACY
3650 help
3651 The 4.3.x version of gcc has been removed. Use a newer
3652 version instead.
3653
3654config BR2_GCC_VERSION_4_6_X
3655 bool "gcc 4.6.x has been removed"
3656 select BR2_LEGACY
3657 help
3658 The 4.6.x version of gcc has been removed. Use a newer
3659 version instead.
3660
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003661config BR2_GDB_VERSION_7_4
3662 bool "gdb 7.4 has been removed"
3663 select BR2_LEGACY
3664 help
3665 The 7.4 version of gdb has been removed. Use a newer version
3666 instead.
3667
3668config BR2_GDB_VERSION_7_5
3669 bool "gdb 7.5 has been removed"
3670 select BR2_LEGACY
3671 help
3672 The 7.5 version of gdb has been removed. Use a newer version
3673 instead.
3674
Thomas Petazzonib18dca02014-07-01 20:03:09 +02003675config BR2_BUSYBOX_VERSION_1_19_X
3676 bool "busybox version selection has been removed"
3677 select BR2_LEGACY
3678 help
3679 The possibility of selecting the Busybox version has been
3680 removed. Use the latest version provided by the Busybox
3681 package instead.
3682
3683config BR2_BUSYBOX_VERSION_1_20_X
3684 bool "busybox version selection has been removed"
3685 select BR2_LEGACY
3686 help
3687 The possibility of selecting the Busybox version has been
3688 removed. Use the latest version provided by the Busybox
3689 package instead.
3690
3691config BR2_BUSYBOX_VERSION_1_21_X
3692 bool "busybox version selection has been removed"
3693 select BR2_LEGACY
3694 help
3695 The possibility of selecting the Busybox version has been
3696 removed. Use the latest version provided by the Busybox
3697 package instead.
3698
Ezequiel García07ac0452014-07-05 18:07:40 -03003699config BR2_PACKAGE_LIBV4L_DECODE_TM6000
3700 bool "decode_tm6000"
3701 select BR2_PACKAGE_LIBV4L_UTILS
3702 select BR2_LEGACY
3703 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003704 This libv4l option has been deprecated and replaced by a
3705 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003706
3707config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
3708 bool "ir-keytable"
3709 select BR2_PACKAGE_LIBV4L_UTILS
3710 select BR2_LEGACY
3711 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003712 This libv4l option has been deprecated and replaced by a
3713 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003714
3715config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
3716 bool "v4l2-compliance"
3717 select BR2_PACKAGE_LIBV4L_UTILS
3718 select BR2_LEGACY
3719 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003720 This libv4l option has been deprecated and replaced by a
3721 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003722
3723config BR2_PACKAGE_LIBV4L_V4L2_CTL
3724 bool "v4l2-ctl"
3725 select BR2_PACKAGE_LIBV4L_UTILS
3726 select BR2_LEGACY
3727 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003728 This libv4l option has been deprecated and replaced by a
3729 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003730
3731config BR2_PACKAGE_LIBV4L_V4L2_DBG
3732 bool "v4l2-dbg"
3733 select BR2_PACKAGE_LIBV4L_UTILS
3734 select BR2_LEGACY
3735 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003736 This libv4l option has been deprecated and replaced by a
3737 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003738
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003739###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003740comment "Legacy options removed in 2014.05"
3741
Peter Seiderer4990a382014-04-23 00:12:23 +02003742config BR2_PACKAGE_EVTEST_CAPTURE
3743 bool "evtest-capture support removed (dropped since evtest 1.31)"
3744 select BR2_LEGACY
3745 help
3746 Support for evtest-capture has been removed (dropped from
3747 evtest package since version 1.31), use evemu package
3748 instead.
3749
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003750config BR2_KERNEL_HEADERS_3_6
3751 bool "kernel headers version 3.6.x are no longer supported"
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003752 select BR2_LEGACY
3753 help
3754 Version 3.6.x of the Linux kernel headers have been deprecated
3755 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003756
3757config BR2_KERNEL_HEADERS_3_7
3758 bool "kernel headers version 3.7.x are no longer supported"
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003759 select BR2_LEGACY
3760 help
3761 Version 3.7.x of the Linux kernel headers have been deprecated
3762 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003763
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02003764config BR2_PACKAGE_VALA
3765 bool "vala target package has been removed"
3766 select BR2_LEGACY
3767 help
3768 The 'vala' target package has been removed since it has been
3769 deprecated for more than four buildroot releases.
3770 Note: the host vala package still exists.
3771
Yann E. MORINd6a37912014-04-07 21:58:03 +02003772config BR2_TARGET_TZ_ZONELIST
3773 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
3774
3775config BR2_PACKAGE_TZDATA_ZONELIST
3776 string "tzdata: the timezone list option has been renamed"
3777 help
3778 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003779 BR2_TARGET_TZ_ZONELIST, and moved to the "System
3780 configuration" menu. You'll need to select BR2_TARGET_TZ_INFO.
Yann E. MORINd6a37912014-04-07 21:58:03 +02003781
3782config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
3783 bool
3784 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
3785 select BR2_LEGACY
3786
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003787config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
3788 bool "Lua command-line editing none has been renamed"
3789 select BR2_LEGACY
3790 help
3791 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003792 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to
3793 select it in the corresponding choice.
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003794
3795config BR2_PACKAGE_LUA_INTERPRETER_READLINE
3796 bool "Lua command-line editing using readline has been renamed"
3797 select BR2_LEGACY
3798 help
3799 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
3800 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
3801 it in the corresponding choice.
3802
3803config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
3804 bool "Lua command-line editing using linenoise has been renamed"
3805 select BR2_LEGACY
3806 help
3807 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
3808 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
3809 it in the corresponding choice.
3810
Yann E. MORIN365ae612014-03-28 01:00:24 +01003811config BR2_PACKAGE_DVB_APPS_UTILS
3812 bool "dvb-apps utilities now built by default"
3813 select BR2_LEGACY
3814 help
3815 The dvb-apps utilities are now always built when the dvb-apps
3816 package is selected.
3817
Yann E. MORIN971e3312014-03-01 15:52:56 +01003818config BR2_KERNEL_HEADERS_SNAP
3819 bool "Local Linux snapshot support removed"
3820 select BR2_LEGACY
3821 help
3822 Support for using a custom snapshot to install the Linux
3823 kernel headers has been removed.
3824
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003825config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
3826 bool "/dev management by udev removed"
3827 select BR2_LEGACY
3828 help
3829 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003830 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003831
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003832 Therefore, if you are not using 'systemd' as init system, you
3833 must choose 'Dynamic using eudev' in the '/dev management'
3834 menu to get the same behaviour as in your old configuration.
3835
3836 If you are using 'systemd', its internal implementation of
3837 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003838
3839 You must also check the packages depending on 'udev' are still
3840 selected.
3841
3842config BR2_PACKAGE_UDEV
3843 bool "udev is now a virtual package"
3844 select BR2_LEGACY
3845 select BR2_PACKAGE_HAS_UDEV
3846 help
3847 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003848 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003849
3850 Your old configuration refers to packages depending on 'udev',
3851 either for build or at runtime.
3852
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003853 Check that a 'udev' provider is selected. If you are not using
3854 'systemd' as init system, 'eudev' should be selected, which is
3855 the case if '/dev management' is set to 'Dynamic using eudev'.
3856
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003857 If you are using 'systemd', its internal implementation of
3858 'udev' is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003859
3860config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003861 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003862 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003863 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
3864 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003865 help
3866 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003867 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003868
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003869 If you are not using 'systemd' as init system, udev rules
3870 generation will be handled by 'eudev'. Check that
3871 '/dev management' is set to 'Dynamic using eudev' to get
3872 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003873
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003874 If you are using 'systemd', it internal implementation of
3875 'udev' will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003876
3877config BR2_PACKAGE_UDEV_ALL_EXTRAS
3878 bool "udev extras removed"
3879 select BR2_LEGACY
3880 help
3881 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003882 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003883
3884 The option to enable the extra features of 'udev' (gudev, ...)
3885 has been removed. These features are automatically enabled in
3886 the 'udev' providers if the dependencies are selected. For
3887 example, selecting 'libglib2' will trigger the build of gudev.
3888
Bernd Kuhls5562be12014-03-01 16:41:10 +01003889config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
3890 bool "xlib-libpthread-stubs option has been renamed"
3891 depends on BR2_PACKAGE_XORG7
3892 select BR2_LEGACY
3893 select BR2_PACKAGE_LIBPTHREAD_STUBS
3894 help
3895 The pthread stubs neither depend on X11 nor Xlib. Thus the
3896 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
3897
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003898###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01003899comment "Legacy options removed in 2014.02"
3900
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003901config BR2_sh2
3902 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003903 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003904 help
3905 Due to an inexistent user base and generally poor Linux
3906 support, the support for the SH2 architecture was removed.
3907
3908config BR2_sh3
3909 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003910 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003911 help
3912 Due to an inexistent user base and generally poor Linux
3913 support, the support for the SH3 architecture was removed.
3914
3915config BR2_sh3eb
3916 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003917 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003918 help
3919 Due to an inexistent user base and generally poor Linux
3920 support, the support for the SH3eb architecture was removed.
3921
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003922config BR2_KERNEL_HEADERS_3_1
3923 bool "kernel headers version 3.1.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003924 select BR2_LEGACY
3925 help
3926 Version 3.1.x of the Linux kernel headers have been deprecated
3927 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003928
3929config BR2_KERNEL_HEADERS_3_3
3930 bool "kernel headers version 3.3.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003931 select BR2_LEGACY
3932 help
3933 Version 3.3.x of the Linux kernel headers have been deprecated
3934 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003935
3936config BR2_KERNEL_HEADERS_3_5
3937 bool "kernel headers version 3.5.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003938 select BR2_LEGACY
3939 help
3940 Version 3.5.x of the Linux kernel headers have been deprecated
3941 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003942
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003943config BR2_GDB_VERSION_7_2
3944 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003945 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003946 select BR2_LEGACY
3947 help
3948 Version 7.2.x of gdb has been deprecated for more than four
3949 buildroot releases and is now removed. As an alternative, gdb
3950 7.5.x has been automatically selected in your configuration.
3951
3952config BR2_GDB_VERSION_7_3
3953 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003954 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003955 select BR2_LEGACY
3956 help
3957 Version 7.3.x of gdb has been deprecated for more than four
3958 buildroot releases and is now removed. As an alternative, gdb
3959 7.5.x has been automatically selected in your configuration.
3960
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01003961config BR2_PACKAGE_CCACHE
3962 bool "ccache target package has been removed"
3963 select BR2_LEGACY
3964 help
3965 The 'ccache' target package has been removed since it has been
3966 deprecated for more than four buildroot releases.
3967 Note: using ccache for speeding up builds is still supported.
3968
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01003969config BR2_HAVE_DOCUMENTATION
3970 bool "support for documentation on target has been removed"
3971 select BR2_LEGACY
3972 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003973 Support for documentation on target has been removed since it
3974 has been deprecated for more than four buildroot releases.
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01003975
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01003976config BR2_PACKAGE_AUTOMAKE
3977 bool "automake target package has been removed"
3978 select BR2_LEGACY
3979 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003980 The 'automake' target package has been removed since it has
3981 been deprecated for more than four buildroot releases.
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01003982 Note: the host automake still exists.
3983
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01003984config BR2_PACKAGE_AUTOCONF
3985 bool "autoconf target package has been removed"
3986 select BR2_LEGACY
3987 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003988 The 'autoconf' target package has been removed since it has
3989 been deprecated for more than four buildroot releases.
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01003990 Note: the host autoconf still exists.
3991
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01003992config BR2_PACKAGE_XSTROKE
3993 bool "xstroke has been removed"
3994 select BR2_LEGACY
3995 help
3996 The 'xstroke' package has been removed since it has been
3997 deprecated for more than four buildroot releases.
3998
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01003999config BR2_PACKAGE_LZMA
4000 bool "lzma target package has been removed"
4001 select BR2_LEGACY
4002 help
4003 The 'lzma' target package has been removed since it has been
4004 deprecated for more than four buildroot releases.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004005 Note: generating lzma-compressed rootfs images is still
4006 supported.
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01004007
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01004008config BR2_PACKAGE_TTCP
4009 bool "ttcp has been removed"
4010 select BR2_LEGACY
4011 help
4012 The 'ttcp' package has been removed since it has been
4013 deprecated for more than four buildroot releases.
4014
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00004015config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01004016 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00004017 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01004018 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00004019 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004020 The 'libnfc-llcp' package has been removed since upstream
4021 renamed to 'libllcp'. We have added a new package for
4022 'libllcp' and bumped the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00004023
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00004024config BR2_PACKAGE_MYSQL_CLIENT
4025 bool "MySQL client renamed to MySQL"
4026 select BR2_LEGACY
4027 select BR2_PACKAGE_MYSQL
4028 help
4029 The option has been renamed BR2_PACKAGE_MYSQL
4030
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01004031config BR2_PACKAGE_SQUASHFS3
4032 bool "squashfs3 has been removed"
4033 select BR2_LEGACY
4034 select BR2_PACKAGE_SQUASHFS
4035 help
4036 The 'squashfs3' package has been removed since it has been
4037 deprecated for more than four buildroot releases. Package
4038 'squashfs' (4) has been selected automatically as replacement.
4039
4040config BR2_TARGET_ROOTFS_SQUASHFS3
4041 bool "squashfs3 rootfs support has been removed"
4042 select BR2_LEGACY
4043 help
4044 Together with the removal of the squashfs3 package, support
4045 for squashfs3 root filesystems has been removed too. Squashfs
4046 root filesystems will automatically use squashfs4 now.
4047
Arnaud Aujon560fe852013-12-15 20:23:12 +01004048config BR2_PACKAGE_NETKITBASE
4049 bool "netkitbase has been removed"
4050 select BR2_LEGACY
4051 help
4052 The 'netkitbase' package has been removed since it has been
4053 deprecated since 2012.11. This package provided 'inetd'
4054 which is replaced by 'xinet' and 'ping' which is replaced by
4055 'busybox' or 'fping'.
4056
4057config BR2_PACKAGE_NETKITTELNET
4058 bool "netkittelnet has been removed"
4059 select BR2_LEGACY
4060 help
4061 The 'netkittelnet' package has been removed since it has
4062 been deprecated since 2012.11. 'busybox' provides a telnet
4063 client and should be used instead.
4064
Francois Perrad63058f82014-01-11 16:42:09 +01004065config BR2_PACKAGE_LUASQL
4066 bool "luasql has been replaced by luasql-sqlite3"
4067 select BR2_PACKAGE_LUASQL_SQLITE3
4068 select BR2_LEGACY
4069 help
4070 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
4071
Francois Perrada6c53472014-01-11 16:42:08 +01004072config BR2_PACKAGE_LUACJSON
4073 bool "luacjson has been replaced by lua-cjson"
4074 select BR2_PACKAGE_LUA_CJSON
4075 select BR2_LEGACY
4076 help
4077 The option has been renamed BR2_PACKAGE_LUA_CJSON.
4078
Arnaud Aujon560fe852013-12-15 20:23:12 +01004079###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004080comment "Legacy options removed in 2013.11"
4081
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01004082config BR2_PACKAGE_LVM2_DMSETUP_ONLY
4083 bool "lvm2's 'dmsetup only' option removed"
4084 select BR2_LEGACY
4085 help
4086 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
4087 led to problems with other packages that need the full lvm2
Ricardo Martincoskid6109172018-04-01 02:08:39 -03004088 suite. Therefore, the option has been replaced with the
4089 positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01004090
4091# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
4092# in order to automatically propagate old configs
4093
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01004094config BR2_PACKAGE_QT_JAVASCRIPTCORE
4095 bool "qt javascriptcore option removed"
4096 select BR2_LEGACY
4097 help
4098 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
4099 force the activation or disabling of the JIT compiler in the
4100 Qt Javascript interpreter. However, the JIT compiler is not
4101 available for all architectures, so forcing its activation
4102 does not always work. Moreover, Qt knows by itself for which
4103 architectures JIT support is possible, and will
4104 automatically enable it if possible.
4105
4106 Therefore, this option was in fact useless, and causing
4107 build problems when enabled on architectures for which the
4108 JIT support was not available. It has been removed, and
4109 there is no replacement: Qt will enable JIT at compile time
4110 when possible.
4111
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004112config BR2_PACKAGE_MODULE_INIT_TOOLS
4113 bool "module-init-tools replaced by kmod"
4114 select BR2_PACKAGE_KMOD
4115 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01004116 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004117 help
4118 The 'module-init-tools' package has been removed, since it
4119 has been depracated upstream and replaced by 'kmod'.
4120
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02004121config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
4122 string "u-boot: the git repository URL option has been renamed"
4123 help
4124 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
4125 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
4126
4127config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
4128 bool
4129 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
4130 select BR2_LEGACY
4131
4132# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
4133# boot/uboot/Config.in
4134
4135config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
4136 string "u-boot: the git repository version option has been renamed"
4137 help
4138 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
4139 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
4140
4141config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
4142 bool
4143 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
4144 select BR2_LEGACY
4145
4146# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
4147# boot/uboot/Config.in
4148
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02004149config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
4150 string "linux: the git repository URL option has been renamed"
4151 help
4152 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
4153 been renamed to
4154 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
4155
4156config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
4157 bool
4158 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
4159 select BR2_LEGACY
4160
4161# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
4162# linux/Config.in
4163
4164config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
4165 string "linux: the git repository version option has been renamed"
4166 help
4167 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
4168 been renamed to
4169 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
4170
4171config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
4172 bool
4173 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
4174 select BR2_LEGACY
4175
4176# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
4177# linux/Config.in
4178
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004179###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02004180comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03004181
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02004182config BR2_ARM_OABI
4183 bool "ARM OABI support has been removed"
4184 select BR2_LEGACY
4185 help
4186 The support for the ARM OABI was deprecated since a while,
4187 and has been removed completely from Buildroot. It is also
4188 deprecated in upstream gcc, since gcc 4.7. People should
4189 switch to EABI instead, which should not be a problem as
4190 long as you don't have pre-built OABI binaries in your
4191 system that you can't recompile.
4192
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03004193config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
4194 bool "dosfstools dosfsck renamed to fsck.fat"
4195 select BR2_LEGACY
4196 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
4197 help
4198 dosfsck was renamed upstream to fsck.fat for consistency.
4199
4200config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
4201 bool "dosfstools dosfslabel renamed to fatlabel"
4202 select BR2_LEGACY
4203 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
4204 help
4205 doslabel was renamed upstream to fatlabel for consistency.
4206
4207config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
4208 bool "dosfstools mkdosfs renamed to mkfs.fat"
4209 select BR2_LEGACY
4210 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
4211 help
4212 mkdosfs was renamed upstream to mkfs.fat for consistency.
4213
Thomas Petazzonie21db002013-06-30 21:28:57 +02004214config BR2_ELF2FLT
4215 bool "the elf2flt option has been renamed"
4216 select BR2_LEGACY
4217 help
4218 The BR2_ELF2FLT option has been renamed to
4219 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
4220 the package infrastructure.
4221
Thomas Petazzonid8060052013-07-16 10:03:17 +02004222config BR2_VFP_FLOAT
4223 bool "the ARM VFP floating point option has been renamed"
4224 select BR2_LEGACY
4225 help
4226 Due to a major refactoring of the floating-point handling of
4227 the ARM architecture support, the BR2_VFP_FLOAT option has
4228 been replaced with a choice of options that allows to select
4229 between various VFP versions/capabilities.
4230
Samuel Martinba8f82b2013-08-30 06:08:59 +02004231config BR2_PACKAGE_GCC_TARGET
4232 bool "gcc on the target filesystem has been removed"
4233 select BR2_LEGACY
4234 help
4235 The support for gcc in the target filesystem was deprecated
4236 since a while, and has been removed completely from Buildroot.
4237 See Buildroot's documentation for more explanations.
4238
4239config BR2_HAVE_DEVFILES
4240 bool "development files in target filesystem has been removed"
4241 select BR2_LEGACY
4242 help
4243 The installation of the development files in the target
4244 filesystem was deprecated since a while, and has been removed
4245 completely from Buildroot.
4246 See Buildroot's documentation for more explanations.
4247
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00004248endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02004249
4250endif # !SKIP_LEGACY