blob: 262879681353f0efe4aa14e7c75cccdb4384944d [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
102 This option is selected automatically when your old .config uses an
103 option that no longer exists in current buildroot. In that case, the
104 build will fail. Look for config options which are selected in the
105 menu below: they no longer exist and should be replaced by something
106 else.
107
108# This comment fits exactly in a 80-column display
109comment "Legacy detected: check the content of the menu below"
110 depends on BR2_LEGACY
111
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. MORINd2e706c2013-06-30 00:38:13 +0200138comment "Note: at some point in the future, the oldest legacy"
139comment "options will be removed, and configuration files "
140comment "that still have those options set, will fail to "
141comment "build, or run, in unpredictable ways. "
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###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +0100146comment "Legacy options removed in 2016.02"
147
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300148config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -0300149 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300150 select BR2_LEGACY
151 help
152 The cle266 directfb driver support has been removed.
153 It doesn't build in the latest version and it's unlikely
154 anyone has any use for it.
155
156config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -0300157 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -0300158 select BR2_LEGACY
159 help
160 The unichrome directfb driver support has been removed.
161 It doesn't build in the latest version and it's unlikely
162 anyone has any use for it.
163
Romain Naour820e1682015-12-19 17:39:14 +0100164config BR2_PACKAGE_LIBELEMENTARY
165 bool "libelementary has been renamed to elementary"
166 select BR2_LEGACY
167 select BR2_PACKAGE_ELEMENTARY
168 help
169 The libelementary package has been renamed to match the upstream
170 name.
171
Romain Naoura9d1f5f2015-12-15 23:40:38 +0100172config BR2_PACKAGE_LIBEINA
173 bool "libeina package has been removed"
174 select BR2_LEGACY
175 select BR2_PACKAGE_EFL
176 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100177 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +0100178
Romain Naour49700f02015-12-15 23:40:37 +0100179config BR2_PACKAGE_LIBEET
180 bool "libeet package has been removed"
181 select BR2_LEGACY
182 select BR2_PACKAGE_EFL
183 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100184 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +0100185
Romain Naoure5989d62015-12-15 23:40:36 +0100186config BR2_PACKAGE_LIBEVAS
187 bool "libevas package has been removed"
188 select BR2_LEGACY
189 select BR2_PACKAGE_EFL
190 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100191 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +0100192
Romain Naour1fe1b602015-12-15 23:40:35 +0100193config BR2_PACKAGE_LIBECORE
194 bool "libecore package has been removed"
195 select BR2_LEGACY
196 select BR2_PACKAGE_EFL
197 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100198 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +0100199
Romain Naour8c05c382015-12-15 23:40:34 +0100200config BR2_PACKAGE_LIBEDBUS
201 bool "libedbus package has been removed"
202 select BR2_LEGACY
203 select BR2_PACKAGE_EFL
204 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100205 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +0100206
Romain Naourd2b042c2015-12-15 23:40:33 +0100207config BR2_PACKAGE_LIBEFREET
208 bool "libefreet package has been removed"
209 select BR2_LEGACY
210 select BR2_PACKAGE_EFL
211 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100212 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +0100213
Romain Naoure155c952015-12-15 23:40:32 +0100214config BR2_PACKAGE_LIBEIO
215 bool "libeio package has been removed"
216 select BR2_LEGACY
217 select BR2_PACKAGE_EFL
218 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100219 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +0100220
Romain Naourb728fb72015-12-15 23:40:31 +0100221config BR2_PACKAGE_LIBEMBRYO
222 bool "libembryo package has been removed"
223 select BR2_LEGACY
224 select BR2_PACKAGE_EFL
225 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100226 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +0100227
Romain Naour4c93c102015-12-15 23:40:30 +0100228config BR2_PACKAGE_LIBEDJE
229 bool "libedje package has been removed"
230 select BR2_LEGACY
231 select BR2_PACKAGE_EFL
232 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100233 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +0100234
Romain Naour905dba12015-12-15 23:40:29 +0100235config BR2_PACKAGE_LIBETHUMB
236 bool "libethumb package has been removed"
237 select BR2_LEGACY
238 select BR2_PACKAGE_EFL
239 help
Romain Naour1f83a7a2015-12-19 17:39:16 +0100240 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +0100241
Luca Ceresolif0c94702015-11-27 18:38:00 +0100242config BR2_PACKAGE_INFOZIP
243 bool "infozip option has been renamed to zip"
244 select BR2_LEGACY
245 select BR2_PACKAGE_ZIP
246 help
247 Info-Zip's Zip package has been renamed from infozip to zip,
248 to avoid ambiguities with Info-Zip's UnZip which has been added
249 in the unzip package.
250
Martin Barka2d16602015-12-23 12:16:04 +0000251config BR2_BR2_PACKAGE_NODEJS_0_10_X
252 bool "nodejs 0.10.x option renamed"
253 select BR2_LEGACY
254 select BR2_PACKAGE_NODEJS
255 help
256 nodejs 0.10.x option was named incorrectly and has been renamed
257 to BR2_PACKAGE_NODEJS_0_10_X.
258
Martin Barka314b872015-12-23 12:16:03 +0000259config BR2_BR2_PACKAGE_NODEJS_0_12_X
260 bool "nodejs version 0.12.x has been removed"
261 select BR2_LEGACY
262 select BR2_PACKAGE_NODEJS
263 help
264 nodejs version 0.12.x has been removed. As an alternative,
265 the latest nodejs version has been automatically selected in
266 your configuration.
267
Martin Bark90bf67c2015-12-23 12:16:02 +0000268config BR2_BR2_PACKAGE_NODEJS_4_X
269 bool "nodejs version 4.x has been removed"
270 select BR2_LEGACY
271 select BR2_PACKAGE_NODEJS
272 help
273 nodejs version 4.x has been removed. As an alternative,
274 the latest nodejs version has been automatically selected in
275 your configuration.
276
Luca Ceresolif0c94702015-11-27 18:38:00 +0100277###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +0200278comment "Legacy options removed in 2015.11"
279
Peter Seiderer301e8ff2015-10-15 21:42:43 +0200280config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
281 bool "gst1-plugins-bad real plugin has been removed"
282 select BR2_LEGACY
283 help
284 The real plugin from GStreamer 1 bad plugins has been
285 removed.
286
Peter Seidererf7dd5cb2015-10-07 23:56:48 +0200287config BR2_PACKAGE_MEDIA_CTL
288 bool "media-ctl package has been removed"
289 select BR2_LEGACY
290 select BR2_PACKAGE_LIBV4L
291 select BR2_PACKAGE_LIBV4L_UTILS
292 help
293 media-ctl source and developement have been moved to
294 v4l-utils since June 2014. For an up-to-date media-ctl
295 version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
296
Romain Naourf8031332015-10-03 18:35:05 +0200297config BR2_PACKAGE_SCHIFRA
298 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200299 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +0200300 help
301 Schifra package has been maked broken since 2014.11 release and
302 haven't been fixed since then.
303
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +0200304config BR2_PACKAGE_ZXING
305 bool "zxing option has been renamed"
306 select BR2_LEGACY
307 select BR2_PACKAGE_ZXING_CPP
308 help
309 ZXing no longer provides the cpp bindings, it has been renamed to
310 BR2_PACKAGE_ZXING_CPP which uses a new upstream.
311
Yann E. MORIN4d131b42015-09-06 21:54:21 +0200312# Since FreeRDP has new dependencies, protect this legacy to avoid the
313# infamous "unmet direct dependencies" kconfig error.
314config BR2_PACKAGE_FREERDP_CLIENT
315 bool "freerdp client option renamed"
316 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +0200317 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +0200318 select BR2_PACKAGE_FREERDP_CLIENT_X11
319
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -0300320config BR2_PACKAGE_BLACKBOX
321 bool "blackbox package has been removed"
322 select BR2_LEGACY
323 help
324 Upstream is dead and the package has been deprecated for
325 some time. There are other alternative maintained WMs.
326
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -0300327config BR2_KERNEL_HEADERS_3_0
328 bool "kernel headers version 3.0.x are no longer supported"
329 select BR2_KERNEL_HEADERS_3_2
330 select BR2_LEGACY
331 help
332 Version 3.0.x of the Linux kernel headers have been deprecated
333 for more than four buildroot releases and are now removed.
334 As an alternative, version 3.2.x of the headers have been
335 automatically selected in your configuration.
336
337config BR2_KERNEL_HEADERS_3_11
338 bool "kernel headers version 3.11.x are no longer supported"
339 select BR2_KERNEL_HEADERS_3_12
340 select BR2_LEGACY
341 help
342 Version 3.11.x of the Linux kernel headers have been deprecated
343 for more than four buildroot releases and are now removed.
344 As an alternative, version 3.12.x of the headers have been
345 automatically selected in your configuration.
346
347config BR2_KERNEL_HEADERS_3_13
348 bool "kernel headers version 3.13.x are no longer supported"
349 select BR2_KERNEL_HEADERS_3_14
350 select BR2_LEGACY
351 help
352 Version 3.13.x of the Linux kernel headers have been deprecated
353 for more than four buildroot releases and are now removed.
354 As an alternative, version 3.14.x of the headers have been
355 automatically selected in your configuration.
356
357config BR2_KERNEL_HEADERS_3_15
358 bool "kernel headers version 3.15.x are no longer supported"
359 select BR2_KERNEL_HEADERS_3_18
360 select BR2_LEGACY
361 help
362 Version 3.15.x of the Linux kernel headers have been deprecated
363 for more than four buildroot releases and are now removed.
364 As an alternative, version 3.18.x of the headers have been
365 automatically selected in your configuration.
366
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200367config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
368 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200369 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200370 select BR2_PACKAGE_DIRECTFB_EXAMPLES
371 help
372 The per-DirectFB example options have been removed. The
373 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
374 examples.
375
376config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
377 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200378 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200379 select BR2_PACKAGE_DIRECTFB_EXAMPLES
380 help
381 The per-DirectFB example options have been removed. The
382 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
383 examples.
384
385config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
386 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200387 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200388 select BR2_PACKAGE_DIRECTFB_EXAMPLES
389 help
390 The per-DirectFB example options have been removed. The
391 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
392 examples.
393
394config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
395 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200396 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200397 select BR2_PACKAGE_DIRECTFB_EXAMPLES
398 help
399 The per-DirectFB example options have been removed. The
400 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
401 examples.
402
403config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
404 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200405 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200406 select BR2_PACKAGE_DIRECTFB_EXAMPLES
407 help
408 The per-DirectFB example options have been removed. The
409 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
410 examples.
411
412config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
413 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200414 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200415 select BR2_PACKAGE_DIRECTFB_EXAMPLES
416 help
417 The per-DirectFB example options have been removed. The
418 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
419 examples.
420
421config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
422 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200423 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200424 select BR2_PACKAGE_DIRECTFB_EXAMPLES
425 help
426 The per-DirectFB example options have been removed. The
427 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
428 examples.
429
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200430config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
431 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200432 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200433 select BR2_PACKAGE_DIRECTFB_EXAMPLES
434 help
435 The per-DirectFB example options have been removed. The
436 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
437 examples.
438
439config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
440 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200441 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200442 select BR2_PACKAGE_DIRECTFB_EXAMPLES
443 help
444 The per-DirectFB example options have been removed. The
445 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
446 examples.
447
448config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
449 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200450 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200451 select BR2_PACKAGE_DIRECTFB_EXAMPLES
452 help
453 The per-DirectFB example options have been removed. The
454 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
455 examples.
456
457config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
458 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200459 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200460 select BR2_PACKAGE_DIRECTFB_EXAMPLES
461 help
462 The per-DirectFB example options have been removed. The
463 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
464 examples.
465
466config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
467 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200468 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200469 select BR2_PACKAGE_DIRECTFB_EXAMPLES
470 help
471 The per-DirectFB example options have been removed. The
472 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
473 examples.
474
475config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
476 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200477 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200478 select BR2_PACKAGE_DIRECTFB_EXAMPLES
479 help
480 The per-DirectFB example options have been removed. The
481 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
482 examples.
483
484config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
485 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200486 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200487 select BR2_PACKAGE_DIRECTFB_EXAMPLES
488 help
489 The per-DirectFB example options have been removed. The
490 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
491 examples.
492
493config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
494 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200495 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200496 select BR2_PACKAGE_DIRECTFB_EXAMPLES
497 help
498 The per-DirectFB example options have been removed. The
499 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
500 examples.
501
502config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
503 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200504 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200505 select BR2_PACKAGE_DIRECTFB_EXAMPLES
506 help
507 The per-DirectFB example options have been removed. The
508 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
509 examples.
510
511config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
512 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200513 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200514 select BR2_PACKAGE_DIRECTFB_EXAMPLES
515 help
516 The per-DirectFB example options have been removed. The
517 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
518 examples.
519
520config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
521 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200522 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200523 select BR2_PACKAGE_DIRECTFB_EXAMPLES
524 help
525 The per-DirectFB example options have been removed. The
526 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
527 examples.
528
529config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
530 bool "DirectFB example df_palette has been removed"
531 select BR2_PACKAGE_DIRECTFB_EXAMPLES
532 help
533 The per-DirectFB example options have been removed. The
534 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
535 examples.
536
537config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
538 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200539 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200540 select BR2_PACKAGE_DIRECTFB_EXAMPLES
541 help
542 The per-DirectFB example options have been removed. The
543 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
544 examples.
545
546config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
547 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200548 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200549 select BR2_PACKAGE_DIRECTFB_EXAMPLES
550 help
551 The per-DirectFB example options have been removed. The
552 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
553 examples.
554
555config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
556 bool "DirectFB example df_stress has been removed"
557 select BR2_PACKAGE_DIRECTFB_EXAMPLES
558 help
559 The per-DirectFB example options have been removed. The
560 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
561 examples.
562
563config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
564 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200565 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200566 select BR2_PACKAGE_DIRECTFB_EXAMPLES
567 help
568 The per-DirectFB example options have been removed. The
569 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
570 examples.
571
572config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
573 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200574 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200575 select BR2_PACKAGE_DIRECTFB_EXAMPLES
576 help
577 The per-DirectFB example options have been removed. The
578 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
579 examples.
580
581config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
582 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200583 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200584 select BR2_PACKAGE_DIRECTFB_EXAMPLES
585 help
586 The per-DirectFB example options have been removed. The
587 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
588 examples.
589
590config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
591 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200592 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +0200593 select BR2_PACKAGE_DIRECTFB_EXAMPLES
594 help
595 The per-DirectFB example options have been removed. The
596 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
597 examples.
598
Gary Bisson2b78fb22015-09-23 15:39:27 +0200599config BR2_PACKAGE_KOBS_NG
600 bool "kobs-ng was replaced by imx-kobs"
601 select BR2_LEGACY
602 select BR2_PACKAGE_IMX_KOBS
603 help
604 The outdated kobs-ng has been replaced by the Freescale-
605 maintained imx-kobs package.
606
Thomas Petazzoni11573f52015-09-02 00:01:11 +0200607config BR2_PACKAGE_SAWMAN
608 bool "sawman package removed"
609 select BR2_LEGACY
610 select BR2_PACKAGE_DIRECTFB_SAWMAN
611 help
612 This option has been removed because the sawman package no
613 longer exists: it was merged inside DirectFB itself. This
614 feature can now be enabled using the
615 BR2_PACKAGE_DIRECTFB_SAWMAN option.
616
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +0200617config BR2_PACKAGE_DIVINE
618 bool "divine package removed"
619 select BR2_LEGACY
620 select BR2_PACKAGE_DIRECTFB_DIVINE
621 help
622 This option has been removed because the divine package no
623 longer exists: it was merged inside DirectFB itself. This
624 feature can now be enabled using the
625 BR2_PACKAGE_DIRECTFB_DIVINE option.
626
627###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -0300628comment "Legacy options removed in 2015.08"
629
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +0200630config BR2_PACKAGE_KODI_PVR_ADDONS
631 bool "Kodi PVR addon was split"
632 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +0200633 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +0200634 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +0200635 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +0200636 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +0200637 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +0200638 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +0200639 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +0200640 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +0200641 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +0200642 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +0200643 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +0200644 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +0200645 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +0200646 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +0200647 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +0200648 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +0200649 help
650 Kodi PVR addon was split into seperate modules
651
Gustavo Zacariasf84cc202015-07-28 10:48:21 -0300652config BR2_BINUTILS_VERSION_2_23_2
653 bool "binutils 2.23 option renamed"
654 select BR2_LEGACY
655 select BR2_BINUTILS_VERSION_2_23_X
656 help
657 The binutils version option has been renamed to match the
658 same patchlevel logic used by gcc. The new option is now
659 BR2_BINUTILS_VERSION_2_23_X.
660
661config BR2_BINUTILS_VERSION_2_24
662 bool "binutils 2.24 option renamed"
663 select BR2_LEGACY
664 select BR2_BINUTILS_VERSION_2_24_X
665 help
666 The binutils version option has been renamed to match the
667 same patchlevel logic used by gcc. The new option is now
668 BR2_BINUTILS_VERSION_2_24_X.
669
670config BR2_BINUTILS_VERSION_2_25
671 bool "binutils 2.25 option renamed"
672 select BR2_LEGACY
673 select BR2_BINUTILS_VERSION_2_25_X
674 help
675 The binutils version option has been renamed to match the
676 same patchlevel logic used by gcc. The new option is now
677 BR2_BINUTILS_VERSION_2_25_X.
678
Romain Naour1326e762015-07-14 19:35:14 +0200679config BR2_PACKAGE_PERF
680 bool "perf option has been renamed"
681 select BR2_LEGACY
682 select BR2_LINUX_KERNEL_TOOL_PERF
683 help
684 The perf package has been moved as a Linux tools package,
685 and the option to enable it is now
686 BR2_LINUX_KERNEL_TOOL_PERF.
687
Thomas Petazzoni2f845952015-07-11 14:52:53 +0200688config BR2_BINUTILS_VERSION_2_22
689 bool "binutils 2.22 removed"
690 select BR2_LEGACY
691 help
692 Binutils 2.22 has been removed, using a newer version is
693 recommended.
694
Gary Bisson4c0613e2015-05-26 10:19:37 +0200695config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
696 bool "gpu-viv-bin-mx6q"
697 select BR2_LEGACY
698 select BR2_PACKAGE_IMX_GPU_VIV
699 help
700 Vivante graphics libraries have been renamed to
701 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
702 name.
703
Matt Weber7742abe2015-06-02 08:28:35 -0500704config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
705 depends on BR2_PACKAGE_PYTHON
706 bool "libsemanage python bindings removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200707 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -0500708 help
709 This option has been removed, since the libsemanage Python
710 bindings on the target were not useful.
711
Gustavo Zacarias16b8e812015-06-02 14:52:12 -0300712config BR2_TARGET_UBOOT_NETWORK
713 bool "U-Boot custom network settings removed"
714 select BR2_LEGACY
715 help
716 U-Boot's custom network settings options have been removed.
717
718###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -0500719comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +0100720
Michał Leśniewskie3904a82015-05-19 20:26:30 +0200721config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
722 bool "jffs2 16kB erasesize NAND flash option renamed"
723 select BR2_LEGACY
724 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
725 help
726 The JFFS2 NAND flash options now longer include the page
727 size.
728
729config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
730 bool "jffs2 128kB erasesize NAND flash option renamed"
731 select BR2_LEGACY
732 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
733 help
734 The JFFS2 NAND flash options now longer include the page
735 size.
736
Angelo Compagnuccieff7c142015-04-30 16:03:15 +0200737config BR2_PACKAGE_MONO_20
738 bool "2.0/3.5 .Net Runtime"
739 select BR2_LEGACY
740 help
741 This option no longer exists, all versions of the .Net
742 runtime are now installed.
743
744config BR2_PACKAGE_MONO_40
745 bool "4.0 .Net Runtime"
746 select BR2_LEGACY
747 help
748 This option no longer exists, all versions of the .Net
749 runtime are now installed.
750
751config BR2_PACKAGE_MONO_45
752 bool "4.5 .Net Runtime"
753 select BR2_LEGACY
754 help
755 This option no longer exists, all versions of the .Net
756 runtime are now installed.
757
Peter Korsgaardefd49e32015-04-27 22:29:05 +0200758config BR2_CIVETWEB_WITH_LUA
759 bool "civetweb lua option renamed"
760 select BR2_LEGACY
761 select BR2_PACKAGE_CIVETWEB_WITH_LUA
762 help
763 civetweb's lua option has been renamed to
764 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
765 packages name options.
766
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +0200767config BR2_PACKAGE_TIFF_TIFF2PDF
768 bool "tiff utility-specific option removed"
769 select BR2_LEGACY
770 select BR2_PACKAGE_TIFF_UTILITIES
771 help
772 utility-specific options have been removed in favour of
773 the new option BR2_PACKAGE_TIFF_UTILITIES.
774
775config BR2_PACKAGE_TIFF_TIFFCP
776 bool "tiff utility-specific option removed"
777 select BR2_LEGACY
778 select BR2_PACKAGE_TIFF_UTILITIES
779 help
780 utility-specific options have been removed in favour of
781 the new option BR2_PACKAGE_TIFF_UTILITIES.
782
Thomas Petazzonie7035d42015-04-21 23:36:28 +0200783config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
784 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +0200785 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +0200786 help
787 This option has never worked, so it has been removed.
788
Yann E. MORIN02917962015-03-24 19:54:15 +0100789config BR2_TARGET_GENERIC_PASSWD_DES
790 bool "Encoding passwords with DES has been removed"
791 select BR2_LEGACY
792 help
793 Paswords can now only be encoded with either of md5, sha256 or sha512.
794 The default is md5, which is stronger that DES (but still pretty weak).
795
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -0300796config BR2_PACKAGE_GTK2_THEME_HICOLOR
797 bool "hicolor (default theme) is a duplicate"
798 select BR2_LEGACY
799 select BR2_PACKAGE_HICOLOR_ICON_THEME
800 help
801 The option was just a duplicate of hicolor icon theme.
802
Mike Williamsfd0e5f62015-03-06 12:17:45 -0500803config BR2_PACKAGE_VALGRIND_PTRCHECK
804 bool "valgrind's PTRCheck was renamed to SGCheck"
805 select BR2_LEGACY
806 select BR2_PACKAGE_VALGRIND_SGCHECK
807 help
808 PTRCheck was renamed to SGCheck in valgrind
809
810###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +0100811comment "Legacy options removed in 2015.02"
812
Pedro Aguilar10900c02015-02-27 06:38:07 +0200813config BR2_PACKAGE_LIBGC
814 bool "libgc package removed"
815 select BR2_LEGACY
816 select BR2_PACKAGE_BDWGC
817 help
818 libgc has been removed because we have the same package under a
819 different name, bdwgc.
820
Yann E. MORIN8d702ac2015-02-07 23:10:14 +0100821config BR2_PACKAGE_WDCTL
822 bool "util-linux' wdctl option has been renamed"
823 select BR2_LEGACY
824 select BR2_PACKAGE_UTIL_LINUX_WDCTL
825 help
826 util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
827 to be aligned with how the other options are named.
828
Danomi Manchegoe44edb82015-07-13 22:57:06 -0400829config BR2_PACKAGE_UTIL_LINUX_ARCH
830 bool "util-linux' arch option has been removed"
831 select BR2_LEGACY
832 help
833 util-linux' arch was dropped in util-linux 2.23, in favor of
834 the coreutils version.
835
836config BR2_PACKAGE_UTIL_LINUX_DDATE
837 bool "util-linux' ddate option has been removed"
838 select BR2_LEGACY
839 help
840 util-linux' ddate was dropped in util-linux 2.23.
841
Romain Naour3c476542015-01-18 20:53:08 +0100842config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
843 bool "rpm's bzip2 payloads option has been removed"
844 select BR2_LEGACY
845 select BR2_PACKAGE_BZIP2
846 help
847 The bzip2 payloads option rely entirely on the dependant package bzip2.
848 So, you need to select it to enable this feature.
849
850config BR2_PACKAGE_RPM_XZ_PAYLOADS
851 bool "rpm's xz payloads option has been removed"
852 select BR2_LEGACY
853 select BR2_PACKAGE_XZ
854 help
855 The xz payloads option rely entirely on the dependant package xz.
856 So, you need to select it to enable this feature.
857
Gustavo Zacarias6927bc92015-01-15 11:30:22 -0300858config BR2_PACKAGE_M4
859 bool "m4 target package removed"
860 select BR2_LEGACY
861 help
862 The m4 target package has been removed, it's been
863 deprecated for some time now.
864
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -0300865config BR2_PACKAGE_FLEX_BINARY
866 bool "flex binary in target option removed"
867 select BR2_LEGACY
868 help
869 The flex binary in the target option has been removed.
870 It's been deprecated for some time now and is essentially a
871 development tool which isn't very useful in the target.
872
Gustavo Zacarias38dabc62015-01-15 11:30:19 -0300873config BR2_PACKAGE_BISON
874 bool "bison target package removed"
875 select BR2_LEGACY
876 help
877 The bison target package has been removed, it's been
878 deprecated for some time now and is essentially a development
879 tool which isn't very useful in the target.
880
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -0300881config BR2_PACKAGE_GOB2
882 bool "gob2 target package removed"
883 select BR2_LEGACY
884 help
885 The gob2 target package has been removed, it's been
886 deprecated for some time now and was essentially useless
887 without a target toolchain.
888
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -0300889config BR2_PACKAGE_DISTCC
890 bool "distcc target package removed"
891 select BR2_LEGACY
892 help
893 The distcc target package has been removed, it's been
894 deprecated for some time now and was essentially useless
895 without a target toolchain.
896
Gustavo Zacariasb64cde62015-01-15 11:30:16 -0300897config BR2_PACKAGE_HASERL_VERSION_0_8_X
898 bool "haserl 0.8.x version removed"
899 select BR2_LEGACY
900 help
901 The 0.8.x version option for haserl has been removed since it
902 has been deprecated for some time now.
903 You should be able to use the 0.9.x version without issues.
904
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -0300905config BR2_PACKAGE_STRONGSWAN_TOOLS
906 bool "strongswan option has been removed"
907 select BR2_LEGACY
908 select BR2_PACKAGE_STRONGSWAN_PKI
909 select BR2_PACKAGE_STRONGSWAN_SCEP
910 help
911 The tools option has been removed upstream and the different tools
912 have been split between the pki and scep options, with others
913 deprecated.
914
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +0100915config BR2_PACKAGE_XBMC_ADDON_XVDR
916 bool "xbmc options have been renamed"
917 select BR2_LEGACY
918 select BR2_PACKAGE_KODI_ADDON_XVDR
919 help
920 The XBMC media center project was renamed to Kodi entertainment center
921
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +0100922config BR2_PACKAGE_XBMC_PVR_ADDONS
923 bool "xbmc options have been renamed"
924 select BR2_LEGACY
925 select BR2_PACKAGE_KODI_PVR_ADDONS
926 help
927 The XBMC media center project was renamed to Kodi entertainment center
928
Bernd Kuhls35784592014-12-23 18:46:27 +0100929config BR2_PACKAGE_XBMC
930 bool "xbmc options have been renamed"
931 select BR2_LEGACY
932 select BR2_PACKAGE_KODI
933 help
934 The XBMC media center project was renamed to Kodi entertainment center
935
936config BR2_PACKAGE_XBMC_ALSA_LIB
937 bool "xbmc options have been renamed"
938 select BR2_LEGACY
939 select BR2_PACKAGE_KODI_ALSA_LIB
940 help
941 The XBMC media center project was renamed to Kodi entertainment center
942
943config BR2_PACKAGE_XBMC_AVAHI
944 bool "xbmc options have been renamed"
945 select BR2_LEGACY
946 select BR2_PACKAGE_KODI_AVAHI
947 help
948 The XBMC media center project was renamed to Kodi entertainment center
949
950config BR2_PACKAGE_XBMC_DBUS
951 bool "xbmc options have been renamed"
952 select BR2_LEGACY
953 select BR2_PACKAGE_KODI_DBUS
954 help
955 The XBMC media center project was renamed to Kodi entertainment center
956
957config BR2_PACKAGE_XBMC_LIBBLURAY
958 bool "xbmc options have been renamed"
959 select BR2_LEGACY
960 select BR2_PACKAGE_KODI_LIBBLURAY
961 help
962 The XBMC media center project was renamed to Kodi entertainment center
963
964config BR2_PACKAGE_XBMC_GOOM
965 bool "xbmc options have been renamed"
966 select BR2_LEGACY
967 select BR2_PACKAGE_KODI_GOOM
968 help
969 The XBMC media center project was renamed to Kodi entertainment center
970
971config BR2_PACKAGE_XBMC_RSXS
972 bool "xbmc options have been renamed"
973 select BR2_LEGACY
974 select BR2_PACKAGE_KODI_RSXS
975 help
976 The XBMC media center project was renamed to Kodi entertainment center
977
978config BR2_PACKAGE_XBMC_LIBCEC
979 bool "xbmc options have been renamed"
980 select BR2_LEGACY
981 select BR2_PACKAGE_KODI_LIBCEC
982 help
983 The XBMC media center project was renamed to Kodi entertainment center
984
985config BR2_PACKAGE_XBMC_LIBMICROHTTPD
986 bool "xbmc options have been renamed"
987 select BR2_LEGACY
988 select BR2_PACKAGE_KODI_LIBMICROHTTPD
989 help
990 The XBMC media center project was renamed to Kodi entertainment center
991
992config BR2_PACKAGE_XBMC_LIBNFS
993 bool "xbmc options have been renamed"
994 select BR2_LEGACY
995 select BR2_PACKAGE_KODI_LIBNFS
996 help
997 The XBMC media center project was renamed to Kodi entertainment center
998
999config BR2_PACKAGE_XBMC_RTMPDUMP
1000 bool "xbmc options have been renamed"
1001 select BR2_LEGACY
1002 select BR2_PACKAGE_KODI_RTMPDUMP
1003 help
1004 The XBMC media center project was renamed to Kodi entertainment center
1005
1006config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
1007 bool "xbmc options have been renamed"
1008 select BR2_LEGACY
1009 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
1010 help
1011 The XBMC media center project was renamed to Kodi entertainment center
1012
1013config BR2_PACKAGE_XBMC_LIBSMBCLIENT
1014 bool "xbmc options have been renamed"
1015 select BR2_LEGACY
1016 select BR2_PACKAGE_KODI_LIBSMBCLIENT
1017 help
1018 The XBMC media center project was renamed to Kodi entertainment center
1019
1020config BR2_PACKAGE_XBMC_LIBTHEORA
1021 bool "xbmc options have been renamed"
1022 select BR2_LEGACY
1023 select BR2_PACKAGE_KODI_LIBTHEORA
1024 help
1025 The XBMC media center project was renamed to Kodi entertainment center
1026
1027config BR2_PACKAGE_XBMC_LIBUSB
1028 bool "xbmc options have been renamed"
1029 select BR2_LEGACY
1030 select BR2_PACKAGE_KODI_LIBUSB
1031 help
1032 The XBMC media center project was renamed to Kodi entertainment center
1033
1034config BR2_PACKAGE_XBMC_LIBVA
1035 bool "xbmc options have been renamed"
1036 select BR2_LEGACY
1037 select BR2_PACKAGE_KODI_LIBVA
1038 help
1039 The XBMC media center project was renamed to Kodi entertainment center
1040
1041config BR2_PACKAGE_XBMC_WAVPACK
1042 bool "xbmc options have been renamed"
1043 select BR2_LEGACY
1044 select BR2_PACKAGE_KODI_WAVPACK
1045 help
1046 The XBMC media center project was renamed to Kodi entertainment center
1047
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001048config BR2_PREFER_STATIC_LIB
1049 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01001050 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01001051 help
1052 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
1053 highlights the fact that the option no longer "prefers"
1054 static libraries, but "enforces" static libraries (i.e
1055 shared libraries are completely unused).
1056
Samuel Martina44b1c12014-12-14 17:24:24 +01001057 Take care of updating the type of libraries you want under the
1058 "Build options" menu.
1059
Bernd Kuhls35784592014-12-23 18:46:27 +01001060###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02001061comment "Legacy options removed in 2014.11"
1062
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001063config BR2_x86_generic
1064 bool "x86 generic variant has been removed"
1065 select BR2_LEGACY
1066 help
1067 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02001068 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01001069
Andreas Larsson40e18f22014-10-30 09:29:36 +01001070config BR2_GCC_VERSION_4_4_X
1071 bool "gcc 4.4.x has been removed"
1072 select BR2_LEGACY
1073 help
1074 The 4.4.x version of gcc has been removed. Use a newer
1075 version instead.
1076
Andreas Larsson43b78e72014-10-30 09:29:35 +01001077config BR2_sparc_sparchfleon
1078 bool "sparchfleon CPU has been removed"
1079 select BR2_LEGACY
1080 help
1081 The sparchfleon CPU was only supported in a patched gcc 4.4
1082 version. Its support has been removed in favor of the leon3
1083 CPU starting from gcc 4.8.x.
1084
1085config BR2_sparc_sparchfleonv8
1086 bool "sparchfleonv8 CPU has been removed"
1087 select BR2_LEGACY
1088 help
1089 The sparchfleonv8 CPU was only supported in a patched gcc
1090 4.4 version. Its support has been removed in favor of the
1091 leon3 CPU starting from gcc 4.8.x.
1092
1093config BR2_sparc_sparcsfleon
1094 bool "sparcsfleon CPU has been removed"
1095 select BR2_LEGACY
1096 help
1097 The sparcsfleon CPU was only supported in a patched gcc 4.4
1098 version. Its support has been removed in favor of the leon3
1099 CPU starting from gcc 4.8.x.
1100
1101config BR2_sparc_sparcsfleonv8
1102 bool "sparcsfleonv8 CPU has been removed"
1103 select BR2_LEGACY
1104 help
1105 The sparcsfleonv8 CPU was only supported in a patched gcc
1106 4.4 version. Its support has been removed in favor of the
1107 leon3 CPU starting from gcc 4.8.x.
1108
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02001109config BR2_PACKAGE_XLIB_LIBPCIACCESS
1110 bool "xlib-libpciaccess option has been renamed"
1111 depends on BR2_PACKAGE_XORG7
1112 select BR2_LEGACY
1113 select BR2_PACKAGE_LIBPCIACCESS
1114 help
1115 libpciaccess neither depends on X11 nor Xlib. Thus the
1116 package has been renamed BR2_PACKAGE_LIBPCIACCESS
1117
Yann E. MORINb581bba2014-09-21 20:38:13 +02001118config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
1119 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001120 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02001121 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
1122 help
1123 The Xceive xc5000 option now also handles older firmwares from
1124 Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
1125 from Cresta, who bought Xceive.
1126
Yann E. MORINdac546e2014-09-21 20:38:12 +02001127config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1128 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001129 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02001130 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1131 help
1132 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1133 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1134 to better account for the fact that a T5 variant exists.
1135
Yann E. MORIN120136e2014-09-21 20:38:09 +02001136config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
1137 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001138 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02001139 help
1140 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
1141 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
1142 select it in:
1143 Target packages -> Hardware handling ->
1144 Firmware -> linux-firmware -> WiFi firmware ->
1145 iwlwifi 3160/726x revision to use (revision 7)
1146
1147config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
1148 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001149 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02001150 help
1151 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
1152 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
1153 select it in:
1154 Target packages -> Hardware handling ->
1155 Firmware -> linux-firmware -> WiFi firmware ->
1156 iwlwifi 3160/726x revision to use (revision 8)
1157
1158###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001159comment "Legacy options removed in 2014.08"
1160
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02001161config BR2_PACKAGE_LIBELF
1162 bool "libelf has been removed"
1163 select BR2_PACKAGE_ELFUTILS
1164 select BR2_LEGACY
1165 help
1166 The libelf package provided an old version of the libelf library
1167 and is deprecated. The libelf library is now provided by the
1168 elfutils package.
1169
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001170config BR2_KERNEL_HEADERS_3_8
1171 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001172 select BR2_KERNEL_HEADERS_3_10
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001173 select BR2_LEGACY
1174 help
1175 Version 3.8.x of the Linux kernel headers have been deprecated
1176 for more than four buildroot releases and are now removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001177 As an alternative, version 3.10.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02001178 automatically selected in your configuration.
1179
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02001180config BR2_PACKAGE_GETTEXT_TOOLS
1181 bool "support for gettext-tools on target has been removed"
1182 select BR2_LEGACY
1183 help
1184 The option to install the gettext utilities on the target
1185 has been removed. This is not necessary as Buildroot is not
1186 designed to provide a full development environment on the
1187 target. gettext tools should be used on the build machine
1188 instead.
1189
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001190config BR2_PACKAGE_PROCPS
1191 bool "procps has been replaced by procps-ng"
1192 select BR2_PACKAGE_PROCPS_NG
1193 select BR2_LEGACY
1194 help
1195 The procps package has been replaced by the equivalent procps-ng.
1196
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02001197config BR2_BINUTILS_VERSION_2_20_1
1198 bool "binutils 2.20.1 has been removed"
1199 select BR2_LEGACY
1200 help
1201 The 2.20.1 version of binutils has been removed. Use a newer
1202 version instead.
1203
1204config BR2_BINUTILS_VERSION_2_21
1205 bool "binutils 2.21 has been removed"
1206 select BR2_LEGACY
1207 help
1208 The 2.21 version of binutils has been removed. Use a newer
1209 version instead.
1210
1211config BR2_BINUTILS_VERSION_2_23_1
1212 bool "binutils 2.23.1 has been removed"
1213 select BR2_LEGACY
1214 help
1215 The 2.23.1 version of binutils has been removed. Use a newer
1216 version instead.
1217
Thomas Petazzoni506b9642014-07-01 20:03:03 +02001218config BR2_UCLIBC_VERSION_0_9_32
1219 bool "uclibc 0.9.32 has been removed"
1220 select BR2_LEGACY
1221 help
1222 The 0.9.32 version of uClibc has been removed. Use a newer
1223 version instead.
1224
Thomas Petazzonid10e0802014-07-01 20:03:06 +02001225config BR2_GCC_VERSION_4_3_X
1226 bool "gcc 4.3.x has been removed"
1227 select BR2_LEGACY
1228 help
1229 The 4.3.x version of gcc has been removed. Use a newer
1230 version instead.
1231
1232config BR2_GCC_VERSION_4_6_X
1233 bool "gcc 4.6.x has been removed"
1234 select BR2_LEGACY
1235 help
1236 The 4.6.x version of gcc has been removed. Use a newer
1237 version instead.
1238
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02001239config BR2_GDB_VERSION_7_4
1240 bool "gdb 7.4 has been removed"
1241 select BR2_LEGACY
1242 help
1243 The 7.4 version of gdb has been removed. Use a newer version
1244 instead.
1245
1246config BR2_GDB_VERSION_7_5
1247 bool "gdb 7.5 has been removed"
1248 select BR2_LEGACY
1249 help
1250 The 7.5 version of gdb has been removed. Use a newer version
1251 instead.
1252
Thomas Petazzonib18dca02014-07-01 20:03:09 +02001253config BR2_BUSYBOX_VERSION_1_19_X
1254 bool "busybox version selection has been removed"
1255 select BR2_LEGACY
1256 help
1257 The possibility of selecting the Busybox version has been
1258 removed. Use the latest version provided by the Busybox
1259 package instead.
1260
1261config BR2_BUSYBOX_VERSION_1_20_X
1262 bool "busybox version selection has been removed"
1263 select BR2_LEGACY
1264 help
1265 The possibility of selecting the Busybox version has been
1266 removed. Use the latest version provided by the Busybox
1267 package instead.
1268
1269config BR2_BUSYBOX_VERSION_1_21_X
1270 bool "busybox version selection has been removed"
1271 select BR2_LEGACY
1272 help
1273 The possibility of selecting the Busybox version has been
1274 removed. Use the latest version provided by the Busybox
1275 package instead.
1276
Ezequiel García07ac0452014-07-05 18:07:40 -03001277config BR2_PACKAGE_LIBV4L_DECODE_TM6000
1278 bool "decode_tm6000"
1279 select BR2_PACKAGE_LIBV4L_UTILS
1280 select BR2_LEGACY
1281 help
1282 This libv4l option has been deprecated and replaced by a single
1283 option to build all the libv4l utilities.
1284
1285config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
1286 bool "ir-keytable"
1287 select BR2_PACKAGE_LIBV4L_UTILS
1288 select BR2_LEGACY
1289 help
1290 This libv4l option has been deprecated and replaced by a single
1291 option to build all the libv4l utilities.
1292
1293config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
1294 bool "v4l2-compliance"
1295 select BR2_PACKAGE_LIBV4L_UTILS
1296 select BR2_LEGACY
1297 help
1298 This libv4l option has been deprecated and replaced by a single
1299 option to build all the libv4l utilities.
1300
1301config BR2_PACKAGE_LIBV4L_V4L2_CTL
1302 bool "v4l2-ctl"
1303 select BR2_PACKAGE_LIBV4L_UTILS
1304 select BR2_LEGACY
1305 help
1306 This libv4l option has been deprecated and replaced by a single
1307 option to build all the libv4l utilities.
1308
1309config BR2_PACKAGE_LIBV4L_V4L2_DBG
1310 bool "v4l2-dbg"
1311 select BR2_PACKAGE_LIBV4L_UTILS
1312 select BR2_LEGACY
1313 help
1314 This libv4l option has been deprecated and replaced by a single
1315 option to build all the libv4l utilities.
1316
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02001317###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001318comment "Legacy options removed in 2014.05"
1319
Peter Seiderer4990a382014-04-23 00:12:23 +02001320config BR2_PACKAGE_EVTEST_CAPTURE
1321 bool "evtest-capture support removed (dropped since evtest 1.31)"
1322 select BR2_LEGACY
1323 help
1324 Support for evtest-capture has been removed (dropped from
1325 evtest package since version 1.31), use evemu package
1326 instead.
1327
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001328config BR2_KERNEL_HEADERS_3_6
1329 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001330 select BR2_KERNEL_HEADERS_3_10
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001331 select BR2_LEGACY
1332 help
1333 Version 3.6.x of the Linux kernel headers have been deprecated
1334 for more than four buildroot releases and are now removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001335 As an alternative, version 3.10.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001336 automatically selected in your configuration.
1337
1338config BR2_KERNEL_HEADERS_3_7
1339 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001340 select BR2_KERNEL_HEADERS_3_10
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001341 select BR2_LEGACY
1342 help
1343 Version 3.7.x of the Linux kernel headers have been deprecated
1344 for more than four buildroot releases and are now removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001345 As an alternative, version 3.10.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02001346 automatically selected in your configuration.
1347
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02001348config BR2_PACKAGE_VALA
1349 bool "vala target package has been removed"
1350 select BR2_LEGACY
1351 help
1352 The 'vala' target package has been removed since it has been
1353 deprecated for more than four buildroot releases.
1354 Note: the host vala package still exists.
1355
Yann E. MORINd6a37912014-04-07 21:58:03 +02001356config BR2_TARGET_TZ_ZONELIST
1357 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
1358
1359config BR2_PACKAGE_TZDATA_ZONELIST
1360 string "tzdata: the timezone list option has been renamed"
1361 help
1362 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
1363 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
1364 menu. You'll need to select BR2_TARGET_TZ_INFO.
1365
1366config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
1367 bool
1368 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
1369 select BR2_LEGACY
1370
Yann E. MORINc97aeb72014-04-05 17:21:43 +02001371config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
1372 bool "Lua command-line editing none has been renamed"
1373 select BR2_LEGACY
1374 help
1375 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
1376 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
1377 it in the corresponding choice.
1378
1379config BR2_PACKAGE_LUA_INTERPRETER_READLINE
1380 bool "Lua command-line editing using readline has been renamed"
1381 select BR2_LEGACY
1382 help
1383 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
1384 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
1385 it in the corresponding choice.
1386
1387config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
1388 bool "Lua command-line editing using linenoise has been renamed"
1389 select BR2_LEGACY
1390 help
1391 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
1392 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
1393 it in the corresponding choice.
1394
Yann E. MORIN365ae612014-03-28 01:00:24 +01001395config BR2_PACKAGE_DVB_APPS_UTILS
1396 bool "dvb-apps utilities now built by default"
1397 select BR2_LEGACY
1398 help
1399 The dvb-apps utilities are now always built when the dvb-apps
1400 package is selected.
1401
Yann E. MORIN971e3312014-03-01 15:52:56 +01001402config BR2_KERNEL_HEADERS_SNAP
1403 bool "Local Linux snapshot support removed"
1404 select BR2_LEGACY
1405 help
1406 Support for using a custom snapshot to install the Linux
1407 kernel headers has been removed.
1408
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001409config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
1410 bool "/dev management by udev removed"
1411 select BR2_LEGACY
1412 help
1413 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001414 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001415
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001416 Therefore, if you are not using 'systemd' as init system, you
1417 must choose 'Dynamic using eudev' in the '/dev management'
1418 menu to get the same behaviour as in your old configuration.
1419
1420 If you are using 'systemd', its internal implementation of
1421 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001422
1423 You must also check the packages depending on 'udev' are still
1424 selected.
1425
1426config BR2_PACKAGE_UDEV
1427 bool "udev is now a virtual package"
1428 select BR2_LEGACY
1429 select BR2_PACKAGE_HAS_UDEV
1430 help
1431 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001432 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001433
1434 Your old configuration refers to packages depending on 'udev',
1435 either for build or at runtime.
1436
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001437 Check that a 'udev' provider is selected. If you are not using
1438 'systemd' as init system, 'eudev' should be selected, which is
1439 the case if '/dev management' is set to 'Dynamic using eudev'.
1440
1441 If you are using 'systemd', its internal implementation of 'udev'
1442 is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001443
1444config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001445 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001446 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001447 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
1448 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001449 help
1450 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001451 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001452
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001453 If you are not using 'systemd' as init system, udev rules
1454 generation will be handled by 'eudev'. Check that
1455 '/dev management' is set to 'Dynamic using eudev' to get
1456 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001457
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001458 If you are using 'systemd', it internal implementation of 'udev'
1459 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001460
1461config BR2_PACKAGE_UDEV_ALL_EXTRAS
1462 bool "udev extras removed"
1463 select BR2_LEGACY
1464 help
1465 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01001466 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001467
1468 The option to enable the extra features of 'udev' (gudev, ...)
1469 has been removed. These features are automatically enabled in
1470 the 'udev' providers if the dependencies are selected. For
1471 example, selecting 'libglib2' will trigger the build of gudev.
1472
Bernd Kuhls5562be12014-03-01 16:41:10 +01001473config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
1474 bool "xlib-libpthread-stubs option has been renamed"
1475 depends on BR2_PACKAGE_XORG7
1476 select BR2_LEGACY
1477 select BR2_PACKAGE_LIBPTHREAD_STUBS
1478 help
1479 The pthread stubs neither depend on X11 nor Xlib. Thus the
1480 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
1481
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01001482###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01001483comment "Legacy options removed in 2014.02"
1484
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01001485config BR2_sh2
1486 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001487 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01001488 help
1489 Due to an inexistent user base and generally poor Linux
1490 support, the support for the SH2 architecture was removed.
1491
1492config BR2_sh3
1493 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001494 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01001495 help
1496 Due to an inexistent user base and generally poor Linux
1497 support, the support for the SH3 architecture was removed.
1498
1499config BR2_sh3eb
1500 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02001501 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01001502 help
1503 Due to an inexistent user base and generally poor Linux
1504 support, the support for the SH3eb architecture was removed.
1505
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01001506config BR2_KERNEL_HEADERS_3_1
1507 bool "kernel headers version 3.1.x are no longer supported"
1508 select BR2_KERNEL_HEADERS_3_2
1509 select BR2_LEGACY
1510 help
1511 Version 3.1.x of the Linux kernel headers have been deprecated
1512 for more than four buildroot releases and are now removed.
1513 As an alternative, version 3.2.x of the headers have been
1514 automatically selected in your configuration.
1515
1516config BR2_KERNEL_HEADERS_3_3
1517 bool "kernel headers version 3.3.x are no longer supported"
1518 select BR2_KERNEL_HEADERS_3_4
1519 select BR2_LEGACY
1520 help
1521 Version 3.3.x of the Linux kernel headers have been deprecated
1522 for more than four buildroot releases and are now removed.
1523 As an alternative, version 3.4.x of the headers have been
1524 automatically selected in your configuration.
1525
1526config BR2_KERNEL_HEADERS_3_5
1527 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001528 select BR2_KERNEL_HEADERS_3_10
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01001529 select BR2_LEGACY
1530 help
1531 Version 3.5.x of the Linux kernel headers have been deprecated
1532 for more than four buildroot releases and are now removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03001533 As an alternative, version 3.10.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01001534 automatically selected in your configuration.
1535
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01001536config BR2_GDB_VERSION_7_2
1537 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02001538 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01001539 select BR2_LEGACY
1540 help
1541 Version 7.2.x of gdb has been deprecated for more than four
1542 buildroot releases and is now removed. As an alternative, gdb
1543 7.5.x has been automatically selected in your configuration.
1544
1545config BR2_GDB_VERSION_7_3
1546 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02001547 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01001548 select BR2_LEGACY
1549 help
1550 Version 7.3.x of gdb has been deprecated for more than four
1551 buildroot releases and is now removed. As an alternative, gdb
1552 7.5.x has been automatically selected in your configuration.
1553
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01001554config BR2_PACKAGE_CCACHE
1555 bool "ccache target package has been removed"
1556 select BR2_LEGACY
1557 help
1558 The 'ccache' target package has been removed since it has been
1559 deprecated for more than four buildroot releases.
1560 Note: using ccache for speeding up builds is still supported.
1561
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01001562config BR2_HAVE_DOCUMENTATION
1563 bool "support for documentation on target has been removed"
1564 select BR2_LEGACY
1565 help
1566 Support for documentation on target has been removed since it has
1567 been deprecated for more than four buildroot releases.
1568
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01001569config BR2_PACKAGE_AUTOMAKE
1570 bool "automake target package has been removed"
1571 select BR2_LEGACY
1572 help
1573 The 'automake' target package has been removed since it has been
1574 deprecated for more than four buildroot releases.
1575 Note: the host automake still exists.
1576
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01001577config BR2_PACKAGE_AUTOCONF
1578 bool "autoconf target package has been removed"
1579 select BR2_LEGACY
1580 help
1581 The 'autoconf' target package has been removed since it has been
1582 deprecated for more than four buildroot releases.
1583 Note: the host autoconf still exists.
1584
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01001585config BR2_PACKAGE_XSTROKE
1586 bool "xstroke has been removed"
1587 select BR2_LEGACY
1588 help
1589 The 'xstroke' package has been removed since it has been
1590 deprecated for more than four buildroot releases.
1591
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01001592config BR2_PACKAGE_LZMA
1593 bool "lzma target package has been removed"
1594 select BR2_LEGACY
1595 help
1596 The 'lzma' target package has been removed since it has been
1597 deprecated for more than four buildroot releases.
1598 Note: generating lzma-compressed rootfs images is still supported.
1599
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01001600config BR2_PACKAGE_TTCP
1601 bool "ttcp has been removed"
1602 select BR2_LEGACY
1603 help
1604 The 'ttcp' package has been removed since it has been
1605 deprecated for more than four buildroot releases.
1606
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00001607config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01001608 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00001609 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01001610 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00001611 help
1612 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +01001613 to 'libllcp'. We have added a new package for 'libllcp' and bumped
1614 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00001615
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00001616config BR2_PACKAGE_MYSQL_CLIENT
1617 bool "MySQL client renamed to MySQL"
1618 select BR2_LEGACY
1619 select BR2_PACKAGE_MYSQL
1620 help
1621 The option has been renamed BR2_PACKAGE_MYSQL
1622
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01001623config BR2_PACKAGE_SQUASHFS3
1624 bool "squashfs3 has been removed"
1625 select BR2_LEGACY
1626 select BR2_PACKAGE_SQUASHFS
1627 help
1628 The 'squashfs3' package has been removed since it has been
1629 deprecated for more than four buildroot releases. Package
1630 'squashfs' (4) has been selected automatically as replacement.
1631
1632config BR2_TARGET_ROOTFS_SQUASHFS3
1633 bool "squashfs3 rootfs support has been removed"
1634 select BR2_LEGACY
1635 help
1636 Together with the removal of the squashfs3 package, support
1637 for squashfs3 root filesystems has been removed too. Squashfs
1638 root filesystems will automatically use squashfs4 now.
1639
Arnaud Aujon560fe852013-12-15 20:23:12 +01001640config BR2_PACKAGE_NETKITBASE
1641 bool "netkitbase has been removed"
1642 select BR2_LEGACY
1643 help
1644 The 'netkitbase' package has been removed since it has been
1645 deprecated since 2012.11. This package provided 'inetd'
1646 which is replaced by 'xinet' and 'ping' which is replaced by
1647 'busybox' or 'fping'.
1648
1649config BR2_PACKAGE_NETKITTELNET
1650 bool "netkittelnet has been removed"
1651 select BR2_LEGACY
1652 help
1653 The 'netkittelnet' package has been removed since it has
1654 been deprecated since 2012.11. 'busybox' provides a telnet
1655 client and should be used instead.
1656
Francois Perrad63058f82014-01-11 16:42:09 +01001657config BR2_PACKAGE_LUASQL
1658 bool "luasql has been replaced by luasql-sqlite3"
1659 select BR2_PACKAGE_LUASQL_SQLITE3
1660 select BR2_LEGACY
1661 help
1662 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
1663
Francois Perrada6c53472014-01-11 16:42:08 +01001664config BR2_PACKAGE_LUACJSON
1665 bool "luacjson has been replaced by lua-cjson"
1666 select BR2_PACKAGE_LUA_CJSON
1667 select BR2_LEGACY
1668 help
1669 The option has been renamed BR2_PACKAGE_LUA_CJSON.
1670
Arnaud Aujon560fe852013-12-15 20:23:12 +01001671###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02001672comment "Legacy options removed in 2013.11"
1673
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01001674config BR2_PACKAGE_LVM2_DMSETUP_ONLY
1675 bool "lvm2's 'dmsetup only' option removed"
1676 select BR2_LEGACY
1677 help
1678 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
1679 led to problems with other packages that need the full lvm2
1680 suite. Therefore, the option has been replaced with the positive
1681 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
1682
1683# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
1684# in order to automatically propagate old configs
1685
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01001686config BR2_PACKAGE_QT_JAVASCRIPTCORE
1687 bool "qt javascriptcore option removed"
1688 select BR2_LEGACY
1689 help
1690 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
1691 force the activation or disabling of the JIT compiler in the
1692 Qt Javascript interpreter. However, the JIT compiler is not
1693 available for all architectures, so forcing its activation
1694 does not always work. Moreover, Qt knows by itself for which
1695 architectures JIT support is possible, and will
1696 automatically enable it if possible.
1697
1698 Therefore, this option was in fact useless, and causing
1699 build problems when enabled on architectures for which the
1700 JIT support was not available. It has been removed, and
1701 there is no replacement: Qt will enable JIT at compile time
1702 when possible.
1703
Thomas Petazzoni94c72082013-08-27 19:28:34 +02001704config BR2_PACKAGE_MODULE_INIT_TOOLS
1705 bool "module-init-tools replaced by kmod"
1706 select BR2_PACKAGE_KMOD
1707 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01001708 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02001709 help
1710 The 'module-init-tools' package has been removed, since it
1711 has been depracated upstream and replaced by 'kmod'.
1712
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02001713config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
1714 string "u-boot: the git repository URL option has been renamed"
1715 help
1716 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
1717 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
1718
1719config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
1720 bool
1721 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
1722 select BR2_LEGACY
1723
1724# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
1725# boot/uboot/Config.in
1726
1727config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
1728 string "u-boot: the git repository version option has been renamed"
1729 help
1730 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
1731 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
1732
1733config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
1734 bool
1735 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
1736 select BR2_LEGACY
1737
1738# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
1739# boot/uboot/Config.in
1740
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02001741config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
1742 string "linux: the git repository URL option has been renamed"
1743 help
1744 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
1745 been renamed to
1746 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
1747
1748config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
1749 bool
1750 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
1751 select BR2_LEGACY
1752
1753# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
1754# linux/Config.in
1755
1756config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
1757 string "linux: the git repository version option has been renamed"
1758 help
1759 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
1760 been renamed to
1761 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
1762
1763config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
1764 bool
1765 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
1766 select BR2_LEGACY
1767
1768# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
1769# linux/Config.in
1770
Thomas Petazzoni94c72082013-08-27 19:28:34 +02001771###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02001772comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03001773
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02001774config BR2_ARM_OABI
1775 bool "ARM OABI support has been removed"
1776 select BR2_LEGACY
1777 help
1778 The support for the ARM OABI was deprecated since a while,
1779 and has been removed completely from Buildroot. It is also
1780 deprecated in upstream gcc, since gcc 4.7. People should
1781 switch to EABI instead, which should not be a problem as
1782 long as you don't have pre-built OABI binaries in your
1783 system that you can't recompile.
1784
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03001785config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
1786 bool "dosfstools dosfsck renamed to fsck.fat"
1787 select BR2_LEGACY
1788 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
1789 help
1790 dosfsck was renamed upstream to fsck.fat for consistency.
1791
1792config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
1793 bool "dosfstools dosfslabel renamed to fatlabel"
1794 select BR2_LEGACY
1795 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
1796 help
1797 doslabel was renamed upstream to fatlabel for consistency.
1798
1799config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
1800 bool "dosfstools mkdosfs renamed to mkfs.fat"
1801 select BR2_LEGACY
1802 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
1803 help
1804 mkdosfs was renamed upstream to mkfs.fat for consistency.
1805
Thomas Petazzonie21db002013-06-30 21:28:57 +02001806config BR2_ELF2FLT
1807 bool "the elf2flt option has been renamed"
1808 select BR2_LEGACY
1809 help
1810 The BR2_ELF2FLT option has been renamed to
1811 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
1812 the package infrastructure.
1813
Thomas Petazzonid8060052013-07-16 10:03:17 +02001814config BR2_VFP_FLOAT
1815 bool "the ARM VFP floating point option has been renamed"
1816 select BR2_LEGACY
1817 help
1818 Due to a major refactoring of the floating-point handling of
1819 the ARM architecture support, the BR2_VFP_FLOAT option has
1820 been replaced with a choice of options that allows to select
1821 between various VFP versions/capabilities.
1822
Samuel Martinba8f82b2013-08-30 06:08:59 +02001823config BR2_PACKAGE_GCC_TARGET
1824 bool "gcc on the target filesystem has been removed"
1825 select BR2_LEGACY
1826 help
1827 The support for gcc in the target filesystem was deprecated
1828 since a while, and has been removed completely from Buildroot.
1829 See Buildroot's documentation for more explanations.
1830
1831config BR2_HAVE_DEVFILES
1832 bool "development files in target filesystem has been removed"
1833 select BR2_LEGACY
1834 help
1835 The installation of the development files in the target
1836 filesystem was deprecated since a while, and has been removed
1837 completely from Buildroot.
1838 See Buildroot's documentation for more explanations.
1839
Yann E. MORIN67eaf702013-06-30 00:38:12 +02001840###############################################################################
1841comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +00001842
1843config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
1844 bool "Realtek 8192 replaced by Realtek 81xx"
1845 select BR2_LEGACY
1846 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
1847 help
1848 Now covers the whole Realtek 81xx familly: 8188/8192.
1849
1850config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
1851 bool "Realtek 8712 replaced by Realtek 87xx"
1852 select BR2_LEGACY
1853 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
1854 help
1855 Now covers the whole Realtek 87xx familly: 8712/8723.
1856
Yann E. MORIN67eaf702013-06-30 00:38:12 +02001857###############################################################################
1858comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00001859
Gustavo Zacarias94744212013-04-04 07:29:45 +00001860config BR2_sa110
1861 bool "sa110 ARM target switched to strongarm"
1862 select BR2_LEGACY
1863 select BR2_strongarm
1864 help
1865 The SA110 is the same as a generic StrongARM, it just differs
1866 in speed, peripherals and cache.
1867
1868config BR2_sa1100
1869 bool "sa1100 ARM target switched to strongarm"
1870 select BR2_LEGACY
1871 select BR2_strongarm
1872 help
1873 The SA1100 is the same as a generic StrongARM, it just differs
1874 in speed, peripherals and cache.
1875
Thomas Petazzoni29b83f02013-03-07 10:45:24 +00001876config BR2_PACKAGE_GDISK
1877 bool "gdisk has been replaced by gptfdisk"
1878 select BR2_LEGACY
1879 select BR2_PACKAGE_GPTFDISK
1880 help
1881 The option has been renamed BR2_PACKAGE_GPTFDISK.
1882
1883config BR2_PACKAGE_GDISK_GDISK
1884 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
1885 select BR2_LEGACY
1886 select BR2_PACKAGE_GPTFDISK
1887 select BR2_PACKAGE_GPTFDISK_GDISK
1888 help
1889 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
1890
1891config BR2_PACKAGE_GDISK_SGDISK
1892 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
1893 select BR2_LEGACY
1894 select BR2_PACKAGE_GPTFDISK
1895 select BR2_PACKAGE_GPTFDISK_SGDISK
1896 help
1897 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00001898
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +00001899config BR2_PACKAGE_GDB_HOST
1900 bool "gdb for the host option has been renamed"
1901 select BR2_PACKAGE_HOST_GDB
1902 select BR2_LEGACY
1903 help
1904 Due to the conversion of gdb to the package infrastructure,
1905 the BR2_PACKAGE_GDB_HOST option has been renamed
1906 BR2_PACKAGE_HOST_GDB.
1907
Carsten Schoenert76de0f82013-03-10 08:32:46 +00001908config BR2_PACKAGE_DIRECTB_DITHER_RGB16
1909 bool "DirectFB RGB16 dithering option has been renamed"
1910 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
1911 select BR2_LEGACY
1912 help
1913 The option has been renamed
1914 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
1915
1916config BR2_PACKAGE_DIRECTB_TESTS
1917 bool "DirectFB Tests option has been renamed"
1918 select BR2_PACKAGE_DIRECTFB_TESTS
1919 select BR2_LEGACY
1920 help
1921 The option has been renamed
1922 BR2_PACKAGE_DIRECTFB_TESTS.
1923
Yann E. MORIN67eaf702013-06-30 00:38:12 +02001924###############################################################################
1925comment "Legacy options removed in 2012.11"
1926
Thomas Petazzoni12ccc432013-02-07 11:58:45 +00001927config BR2_PACKAGE_CUSTOMIZE
1928 bool "customize package has been removed"
1929 select BR2_LEGACY
1930 help
1931 The 'customize' special package has been removed. Instead,
1932 we recommend to create either your own packages, or use a
1933 post-build script to customize your root filesystem. See
1934 Buildroot's documentation for more details.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00001935
1936config BR2_PACKAGE_XSERVER_xorg
1937 bool "X.org modular server"
1938 select BR2_LEGACY
1939 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
1940 help
1941 The option has been renamed
1942 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
1943
1944config BR2_PACKAGE_XSERVER_tinyx
1945 bool "KDrive / TinyX server"
1946 select BR2_LEGACY
1947 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
1948 help
1949 The option has been renamed
1950 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
1951
1952config BR2_PACKAGE_PTHREAD_STUBS
1953 bool "pthread-stubs option has been renamed"
1954 select BR2_LEGACY
Bernd Kuhls5562be12014-03-01 16:41:10 +01001955 select BR2_PACKAGE_LIBPTHREAD_STUBS
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00001956 help
1957 For consistency reason, the pthread-stubs package has been
Bernd Kuhls5562be12014-03-01 16:41:10 +01001958 renamed to libpthread-stubs.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +00001959
Yann E. MORIN67eaf702013-06-30 00:38:12 +02001960###############################################################################
1961comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00001962
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +00001963config BR2_PACKAGE_GETTEXT_STATIC
1964 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
1965 select BR2_LEGACY
1966 help
1967 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
1968
1969
1970config BR2_PACKAGE_LIBINTL
1971 bool "libintl"
1972 select BR2_LEGACY
1973 select BR2_PACKAGE_GETTEXT
1974 help
1975 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
1976 only installs the library, not the executables.
1977
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +00001978config BR2_PACKAGE_INPUT_TOOLS_EVTEST
1979 bool "input-tools evtest is now a separate package evtest"
1980 select BR2_LEGACY
1981 select BR2_PACKAGE_EVTEST
1982 help
1983 The evtest program from input-tools is now a separate package.
1984
Sonic Zhang57133822013-05-03 00:39:34 +00001985config BR2_BFIN_FDPIC
1986 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
1987 select BR2_BINFMT_FDPIC
1988 select BR2_LEGACY
1989
1990config BR2_BFIN_FLAT
1991 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
1992 select BR2_BINFMT_FLAT
1993 select BR2_LEGACY
1994
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00001995endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02001996
1997endif # !SKIP_LEGACY