]>
Commit | Line | Data |
---|---|---|
ebcfa987 AVEM |
1 | # |
2 | # Config.in.legacy - support for backward compatibility | |
3 | # | |
f8c56f5f TDS |
4 | # When an existing Config.in symbol is removed, it should be added again in |
5 | # this file, and take appropriate action to approximate backward compatibility. | |
6 | # This will make the transition for the user more convenient. | |
ebcfa987 AVEM |
7 | # |
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. | |
f8c56f5f TDS |
14 | # |
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. | |
94d403d7 AV |
19 | # 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] | |
f8c56f5f TDS |
59 | # |
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 | |
94d403d7 AV |
65 | # 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. | |
f8c56f5f TDS |
67 | # |
68 | # [Example: renaming a string option from FOO to BAR] | |
69 | # original symbol: | |
94d403d7 AV |
70 | # config BR2_FOO_STRING |
71 | # string "Some foo string" | |
f8c56f5f TDS |
72 | # |
73 | # becomes: | |
94d403d7 AV |
74 | # config BR2_BAR_STRING |
75 | # string "Some bar string" | |
76 | # default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy | |
f8c56f5f TDS |
77 | # |
78 | # and in Config.in.legacy: | |
94d403d7 AV |
79 | # config BR2_FOO_STRING |
80 | # string "The foo string has been renamed" | |
81 | # help | |
82 | # <suitable help text> | |
f8c56f5f | 83 | # |
94d403d7 AV |
84 | # config BR2_FOO_STRING_WRAP |
85 | # bool | |
86 | # default y if BR2_FOO_STRING != "" | |
87 | # select BR2_LEGACY | |
f8c56f5f | 88 | # |
94d403d7 | 89 | # # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in |
f8c56f5f TDS |
90 | # |
91 | # [End of example] | |
ebcfa987 | 92 | |
53903a15 AV |
93 | config BR2_SKIP_LEGACY |
94 | bool | |
95 | option env="SKIP_LEGACY" | |
96 | ||
97 | if !BR2_SKIP_LEGACY | |
98 | ||
ebcfa987 AVEM |
99 | config 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 | |
109 | comment "Legacy detected: check the content of the menu below" | |
110 | depends on BR2_LEGACY | |
111 | ||
a91a5c16 AVEM |
112 | menu "Legacy config options" |
113 | ||
114 | if BR2_LEGACY | |
a25e4a4c | 115 | comment "----------------------------------------------------" |
a91a5c16 | 116 | comment "Your old configuration uses legacy options that no " |
cce5baa8 TDS |
117 | comment "longer exist in buildroot, as indicated in the menu " |
118 | comment "below. As long as these options stay selected, or in" | |
119 | comment "case of string options are non-empty, the build " | |
a91a5c16 | 120 | comment "will fail. " |
cce5baa8 TDS |
121 | comment "* " |
122 | comment "Where possible, an automatic conversion from old to " | |
123 | comment "new symbols has been performed. Before making any " | |
124 | comment "change in this legacy menu, make sure to exit the " | |
125 | comment "configuration editor a first time and save the " | |
126 | comment "configuration. Otherwise, the automatic conversion " | |
127 | comment "of symbols will be lost. " | |
128 | comment "* " | |
129 | comment "After this initial save, reopen the configuration " | |
130 | comment "editor, inspect the options selected below, read " | |
131 | comment "their help texts, and verify/update the new " | |
132 | comment "configuration in the corresponding configuration " | |
133 | comment "menus. When everything is ok, you can disable the " | |
134 | comment "legacy options in the menu below. Once you have " | |
135 | comment "disabled all legacy options, this text will " | |
136 | comment "disappear and you will be able to start the build. " | |
137 | comment "* " | |
d2e706c3 YM |
138 | comment "Note: at some point in the future, the oldest legacy" |
139 | comment "options will be removed, and configuration files " | |
140 | comment "that still have those options set, will fail to " | |
141 | comment "build, or run, in unpredictable ways. " | |
a25e4a4c | 142 | comment "----------------------------------------------------" |
a91a5c16 | 143 | endif |
ebcfa987 | 144 | |
f0c94704 | 145 | ############################################################################### |
2661c4f1 | 146 | comment "Legacy options removed in 2016.05" |
f0c94704 | 147 | |
7bd9dbc1 GZ |
148 | config BR2_PACKAGE_SAMBA |
149 | bool "samba" | |
150 | select BR2_LEGACY | |
151 | help | |
152 | The samba package was removed in favour of samba4 since the | |
153 | 3.x series isn't supported by upstream any longer. | |
154 | ||
6922b41d BK |
155 | config BR2_PACKAGE_KODI_WAVPACK |
156 | bool "wavpack" | |
157 | select BR2_LEGACY | |
158 | help | |
159 | wavpack support was removed in favour of ffmpeg: | |
160 | https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4 | |
161 | ||
75ce17d0 BK |
162 | config BR2_PACKAGE_KODI_RSXS |
163 | bool "rsxs support in Kodi was moved to an addon" | |
164 | select BR2_LEGACY | |
165 | select BR2_PACKAGE_KODI_SCREENSAVER_RSXS | |
166 | help | |
167 | rsxs support in Kodi was moved to an addon | |
168 | ||
56b80ece BK |
169 | config BR2_PACKAGE_KODI_GOOM |
170 | bool "Goom support in Kodi was moved to an addon" | |
171 | select BR2_LEGACY | |
172 | select BR2_PACKAGE_KODI_VISUALISATION_GOOM | |
173 | help | |
174 | Goom support in Kodi was moved to an addon | |
175 | ||
e5a073ac GE |
176 | config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS |
177 | bool "systemd all extras option has been removed" | |
178 | select BR2_LEGACY | |
179 | select BR2_PACKAGE_XZ | |
180 | select BR2_PACKAGE_LIBGCRYPT | |
181 | help | |
182 | The systemd option to enable "all extras" has been | |
183 | removed. To get the same features, the libgcrypt and xz | |
184 | package should now be enabled. | |
185 | ||
8c0a367d GZ |
186 | config BR2_GCC_VERSION_4_5_X |
187 | bool "gcc 4.5.x has been removed" | |
188 | select BR2_LEGACY | |
189 | help | |
190 | The 4.5.x version of gcc has been removed. Use a newer | |
191 | version instead. | |
192 | ||
007c2ce9 BK |
193 | config BR2_PACKAGE_SQLITE_READLINE |
194 | bool "command-line editing support was updated" | |
195 | select BR2_PACKAGE_NCURSES | |
196 | select BR2_PACKAGE_READLINE | |
197 | select BR2_LEGACY | |
198 | help | |
199 | This option was removed in favour of the sqlite package | |
200 | deciding itself depending on the enabled packages whether | |
201 | command-line editing should be enabled, it also also takes | |
202 | libedit into account. | |
203 | ||
f0c94704 LC |
204 | ############################################################################### |
205 | comment "Legacy options removed in 2016.02" | |
206 | ||
f39ac4d2 BK |
207 | config BR2_PACKAGE_DOVECOT_BZIP2 |
208 | bool "bzip2 support option has been removed" | |
209 | select BR2_LEGACY | |
210 | select BR2_PACKAGE_BZIP2 | |
211 | help | |
212 | Bzip2 support is built if the bzip2 package is selected. | |
213 | ||
214 | config BR2_PACKAGE_DOVECOT_ZLIB | |
215 | bool "zlib support option has been removed" | |
216 | select BR2_LEGACY | |
217 | select BR2_PACKAGE_ZLIB | |
218 | help | |
219 | Zlib support is built if the zlib package is selected. | |
220 | ||
ead1df42 JK |
221 | config BR2_PACKAGE_E2FSPROGS_FINDFS |
222 | bool "e2fsprogs findfs option has been removed" | |
223 | select BR2_LEGACY | |
224 | help | |
225 | This option attempted to enable findfs capabilities from | |
226 | e2fsprogs but has not worked since July 2015 (due to | |
227 | packaging changes). One can use BusyBox's findfs support or | |
228 | enable the BR2_PACKAGE_UTIL_LINUX_FINDFS option. | |
229 | ||
b1063a01 RN |
230 | config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL |
231 | bool "openpowerlink debug option has been removed" | |
232 | select BR2_LEGACY | |
233 | help | |
234 | This option depends on BR2_ENABLE_DEBUG which should not be used | |
235 | by packages anymore. | |
236 | ||
237 | config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE | |
238 | bool "openpowerlink package has been updated" | |
239 | select BR2_LEGACY | |
240 | select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB | |
241 | help | |
242 | openpowerlink kernel modules are built if the | |
243 | kernel stack library is selected. | |
244 | ||
245 | config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP | |
246 | bool "openpowerlink package has been updated" | |
247 | select BR2_LEGACY | |
248 | select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB | |
249 | help | |
250 | The user space support has been split in two part: | |
251 | - a monolitic user space library | |
252 | - a user spae deamon driver | |
253 | ||
e3e0583f YM |
254 | config BR2_LINUX_KERNEL_SAME_AS_HEADERS |
255 | bool "using the linux headers version for the kernel has been removed" | |
256 | select BR2_LEGACY | |
257 | help | |
258 | The option to use the version of the kernel headers for the | |
259 | kernel to build has been removed. | |
260 | ||
261 | There is now the converse, better-suited and more versatile | |
262 | option to use the kernel version for the linux headers. | |
263 | ||
d37ce8e1 OS |
264 | config BR2_PACKAGE_CUPS_PDFTOPS |
265 | bool "Pdftops support has been removed from Cups" | |
266 | select BR2_LEGACY | |
267 | help | |
268 | Pdftops support has been removed from the cups package | |
269 | It is now part of the cups-filters package. | |
270 | ||
d8da5f10 GZ |
271 | config BR2_KERNEL_HEADERS_3_16 |
272 | bool "kernel headers version 3.16.x are no longer supported" | |
273 | select BR2_KERNEL_HEADERS_3_18 | |
274 | select BR2_LEGACY | |
275 | help | |
276 | Version 3.16.x of the Linux kernel headers have been deprecated | |
277 | for more than four buildroot releases and are now removed. | |
278 | As an alternative, version 3.18.x of the headers have been | |
279 | automatically selected in your configuration. | |
280 | ||
af45a4f4 YY |
281 | config BR2_PACKAGE_PYTHON_PYXML |
282 | bool "python-pyxml package has been removed" | |
283 | select BR2_LEGACY | |
284 | help | |
285 | PyXML is obsolete and its functionality is covered either via | |
286 | native Python XML support or python-lxml package. | |
287 | ||
d29c7196 SN |
288 | # BR2_ENABLE_SSP is still referenced in Config.in (default in choice) |
289 | config BR2_ENABLE_SSP | |
290 | bool "Stack Smashing protection now has different levels" | |
291 | help | |
292 | The protection offered by SSP can now be selected from different | |
293 | protection levels. Be sure to review the SSP level in the build | |
294 | options menu. | |
295 | ||
1e3d2cad | 296 | config BR2_PACKAGE_DIRECTFB_CLE266 |
e989ddbe | 297 | bool "cle266 driver for directfb removed" |
1e3d2cad GZ |
298 | select BR2_LEGACY |
299 | help | |
300 | The cle266 directfb driver support has been removed. | |
301 | It doesn't build in the latest version and it's unlikely | |
302 | anyone has any use for it. | |
303 | ||
304 | config BR2_PACKAGE_DIRECTFB_UNICHROME | |
e989ddbe | 305 | bool "unichrome driver for directfb removed" |
1e3d2cad GZ |
306 | select BR2_LEGACY |
307 | help | |
308 | The unichrome directfb driver support has been removed. | |
309 | It doesn't build in the latest version and it's unlikely | |
310 | anyone has any use for it. | |
311 | ||
820e1685 RN |
312 | config BR2_PACKAGE_LIBELEMENTARY |
313 | bool "libelementary has been renamed to elementary" | |
314 | select BR2_LEGACY | |
315 | select BR2_PACKAGE_ELEMENTARY | |
316 | help | |
317 | The libelementary package has been renamed to match the upstream | |
318 | name. | |
319 | ||
a9d1f5f6 RN |
320 | config BR2_PACKAGE_LIBEINA |
321 | bool "libeina package has been removed" | |
322 | select BR2_LEGACY | |
323 | select BR2_PACKAGE_EFL | |
324 | help | |
1f83a7a7 | 325 | With EFL 1.15, libeina is now provided by the efl package. |
a9d1f5f6 | 326 | |
49700f08 RN |
327 | config BR2_PACKAGE_LIBEET |
328 | bool "libeet package has been removed" | |
329 | select BR2_LEGACY | |
330 | select BR2_PACKAGE_EFL | |
331 | help | |
1f83a7a7 | 332 | With EFL 1.15, libeet is now provided by the efl package. |
49700f08 | 333 | |
e5989d6c RN |
334 | config BR2_PACKAGE_LIBEVAS |
335 | bool "libevas package has been removed" | |
336 | select BR2_LEGACY | |
337 | select BR2_PACKAGE_EFL | |
338 | help | |
1f83a7a7 | 339 | With EFL 1.15, libevas is now provided by the efl package. |
e5989d6c | 340 | |
1fe1b60b RN |
341 | config BR2_PACKAGE_LIBECORE |
342 | bool "libecore package has been removed" | |
343 | select BR2_LEGACY | |
344 | select BR2_PACKAGE_EFL | |
345 | help | |
1f83a7a7 | 346 | With EFL 1.15, libecore is now provided by the efl package. |
1fe1b60b | 347 | |
8c05c38d RN |
348 | config BR2_PACKAGE_LIBEDBUS |
349 | bool "libedbus package has been removed" | |
350 | select BR2_LEGACY | |
351 | select BR2_PACKAGE_EFL | |
352 | help | |
1f83a7a7 | 353 | With EFL 1.15, libedbus is now provided by the efl package. |
8c05c38d | 354 | |
d2b042c1 RN |
355 | config BR2_PACKAGE_LIBEFREET |
356 | bool "libefreet package has been removed" | |
357 | select BR2_LEGACY | |
358 | select BR2_PACKAGE_EFL | |
359 | help | |
1f83a7a7 | 360 | With EFL 1.15, libefreet is now provided by the efl package. |
d2b042c1 | 361 | |
e155c957 RN |
362 | config BR2_PACKAGE_LIBEIO |
363 | bool "libeio package has been removed" | |
364 | select BR2_LEGACY | |
365 | select BR2_PACKAGE_EFL | |
366 | help | |
1f83a7a7 | 367 | With EFL 1.15, libeio is now provided by the efl package. |
e155c957 | 368 | |
b728fb77 RN |
369 | config BR2_PACKAGE_LIBEMBRYO |
370 | bool "libembryo package has been removed" | |
371 | select BR2_LEGACY | |
372 | select BR2_PACKAGE_EFL | |
373 | help | |
1f83a7a7 | 374 | With EFL 1.15, libembryo is now provided by the efl package. |
b728fb77 | 375 | |
4c93c107 RN |
376 | config BR2_PACKAGE_LIBEDJE |
377 | bool "libedje package has been removed" | |
378 | select BR2_LEGACY | |
379 | select BR2_PACKAGE_EFL | |
380 | help | |
1f83a7a7 | 381 | With EFL 1.15, libedje is now provided by the efl package. |
4c93c107 | 382 | |
905dba10 RN |
383 | config BR2_PACKAGE_LIBETHUMB |
384 | bool "libethumb package has been removed" | |
385 | select BR2_LEGACY | |
386 | select BR2_PACKAGE_EFL | |
387 | help | |
1f83a7a7 | 388 | With EFL 1.15, libethumb is now provided by the efl package. |
905dba10 | 389 | |
f0c94704 LC |
390 | config BR2_PACKAGE_INFOZIP |
391 | bool "infozip option has been renamed to zip" | |
392 | select BR2_LEGACY | |
393 | select BR2_PACKAGE_ZIP | |
394 | help | |
395 | Info-Zip's Zip package has been renamed from infozip to zip, | |
396 | to avoid ambiguities with Info-Zip's UnZip which has been added | |
397 | in the unzip package. | |
398 | ||
a2d16600 | 399 | config BR2_BR2_PACKAGE_NODEJS_0_10_X |
75b70492 | 400 | bool "nodejs 0.10.x option removed" |
a2d16600 MB |
401 | select BR2_LEGACY |
402 | select BR2_PACKAGE_NODEJS | |
403 | help | |
75b70492 MB |
404 | nodejs 0.10.x option has been removed. 0.10.x is now |
405 | automatically chosen for ARMv5 architectures only and the latest | |
406 | nodejs for all other supported architectures. The correct nodejs | |
407 | version has been automatically selected in your configuration. | |
a2d16600 | 408 | |
a314b878 MB |
409 | config BR2_BR2_PACKAGE_NODEJS_0_12_X |
410 | bool "nodejs version 0.12.x has been removed" | |
411 | select BR2_LEGACY | |
412 | select BR2_PACKAGE_NODEJS | |
413 | help | |
414 | nodejs version 0.12.x has been removed. As an alternative, | |
415 | the latest nodejs version has been automatically selected in | |
416 | your configuration. | |
417 | ||
90bf67c0 MB |
418 | config BR2_BR2_PACKAGE_NODEJS_4_X |
419 | bool "nodejs version 4.x has been removed" | |
420 | select BR2_LEGACY | |
421 | select BR2_PACKAGE_NODEJS | |
422 | help | |
423 | nodejs version 4.x has been removed. As an alternative, | |
424 | the latest nodejs version has been automatically selected in | |
425 | your configuration. | |
426 | ||
16b8e813 | 427 | ############################################################################### |
ae46e8f9 TP |
428 | comment "Legacy options removed in 2015.11" |
429 | ||
301e8ffb PS |
430 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL |
431 | bool "gst1-plugins-bad real plugin has been removed" | |
432 | select BR2_LEGACY | |
433 | help | |
434 | The real plugin from GStreamer 1 bad plugins has been | |
435 | removed. | |
436 | ||
f7dd5cb2 PS |
437 | config BR2_PACKAGE_MEDIA_CTL |
438 | bool "media-ctl package has been removed" | |
439 | select BR2_LEGACY | |
440 | select BR2_PACKAGE_LIBV4L | |
441 | select BR2_PACKAGE_LIBV4L_UTILS | |
442 | help | |
443 | media-ctl source and developement have been moved to | |
444 | v4l-utils since June 2014. For an up-to-date media-ctl | |
445 | version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS. | |
446 | ||
f8031339 RN |
447 | config BR2_PACKAGE_SCHIFRA |
448 | bool "schifra package has been removed" | |
758c5c7f | 449 | select BR2_LEGACY |
f8031339 RN |
450 | help |
451 | Schifra package has been maked broken since 2014.11 release and | |
452 | haven't been fixed since then. | |
453 | ||
7e5ddbcb MH |
454 | config BR2_PACKAGE_ZXING |
455 | bool "zxing option has been renamed" | |
456 | select BR2_LEGACY | |
457 | select BR2_PACKAGE_ZXING_CPP | |
458 | help | |
459 | ZXing no longer provides the cpp bindings, it has been renamed to | |
460 | BR2_PACKAGE_ZXING_CPP which uses a new upstream. | |
461 | ||
4d131b4d YM |
462 | # Since FreeRDP has new dependencies, protect this legacy to avoid the |
463 | # infamous "unmet direct dependencies" kconfig error. | |
464 | config BR2_PACKAGE_FREERDP_CLIENT | |
465 | bool "freerdp client option renamed" | |
466 | depends on BR2_PACKAGE_FREERDP | |
758c5c7f | 467 | select BR2_LEGACY |
4d131b4d YM |
468 | select BR2_PACKAGE_FREERDP_CLIENT_X11 |
469 | ||
a658c4d1 GZ |
470 | config BR2_PACKAGE_BLACKBOX |
471 | bool "blackbox package has been removed" | |
472 | select BR2_LEGACY | |
473 | help | |
474 | Upstream is dead and the package has been deprecated for | |
475 | some time. There are other alternative maintained WMs. | |
476 | ||
4ac4bc32 GZ |
477 | config BR2_KERNEL_HEADERS_3_0 |
478 | bool "kernel headers version 3.0.x are no longer supported" | |
479 | select BR2_KERNEL_HEADERS_3_2 | |
480 | select BR2_LEGACY | |
481 | help | |
482 | Version 3.0.x of the Linux kernel headers have been deprecated | |
483 | for more than four buildroot releases and are now removed. | |
484 | As an alternative, version 3.2.x of the headers have been | |
485 | automatically selected in your configuration. | |
486 | ||
487 | config BR2_KERNEL_HEADERS_3_11 | |
488 | bool "kernel headers version 3.11.x are no longer supported" | |
489 | select BR2_KERNEL_HEADERS_3_12 | |
490 | select BR2_LEGACY | |
491 | help | |
492 | Version 3.11.x of the Linux kernel headers have been deprecated | |
493 | for more than four buildroot releases and are now removed. | |
494 | As an alternative, version 3.12.x of the headers have been | |
495 | automatically selected in your configuration. | |
496 | ||
497 | config BR2_KERNEL_HEADERS_3_13 | |
498 | bool "kernel headers version 3.13.x are no longer supported" | |
499 | select BR2_KERNEL_HEADERS_3_14 | |
500 | select BR2_LEGACY | |
501 | help | |
502 | Version 3.13.x of the Linux kernel headers have been deprecated | |
503 | for more than four buildroot releases and are now removed. | |
504 | As an alternative, version 3.14.x of the headers have been | |
505 | automatically selected in your configuration. | |
506 | ||
507 | config BR2_KERNEL_HEADERS_3_15 | |
508 | bool "kernel headers version 3.15.x are no longer supported" | |
509 | select BR2_KERNEL_HEADERS_3_18 | |
510 | select BR2_LEGACY | |
511 | help | |
512 | Version 3.15.x of the Linux kernel headers have been deprecated | |
513 | for more than four buildroot releases and are now removed. | |
514 | As an alternative, version 3.18.x of the headers have been | |
515 | automatically selected in your configuration. | |
516 | ||
80404e8c TP |
517 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI |
518 | bool "DirectFB example df_andi has been removed" | |
758c5c7f | 519 | select BR2_LEGACY |
80404e8c TP |
520 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
521 | help | |
522 | The per-DirectFB example options have been removed. The | |
523 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
524 | examples. | |
525 | ||
526 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD | |
527 | bool "DirectFB example df_bltload has been removed" | |
758c5c7f | 528 | select BR2_LEGACY |
80404e8c TP |
529 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
530 | help | |
531 | The per-DirectFB example options have been removed. The | |
532 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
533 | examples. | |
534 | ||
535 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD | |
536 | bool "DirectFB example df_cpuload has been removed" | |
758c5c7f | 537 | select BR2_LEGACY |
80404e8c TP |
538 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
539 | help | |
540 | The per-DirectFB example options have been removed. The | |
541 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
542 | examples. | |
543 | ||
544 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER | |
545 | bool "DirectFB example df_databuffer has been removed" | |
758c5c7f | 546 | select BR2_LEGACY |
80404e8c TP |
547 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
548 | help | |
549 | The per-DirectFB example options have been removed. The | |
550 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
551 | examples. | |
552 | ||
553 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD | |
554 | bool "DirectFB example df_dioload has been removed" | |
758c5c7f | 555 | select BR2_LEGACY |
80404e8c TP |
556 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
557 | help | |
558 | The per-DirectFB example options have been removed. The | |
559 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
560 | examples. | |
561 | ||
562 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK | |
563 | bool "DirectFB example df_dok has been removed" | |
758c5c7f | 564 | select BR2_LEGACY |
80404e8c TP |
565 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
566 | help | |
567 | The per-DirectFB example options have been removed. The | |
568 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
569 | examples. | |
570 | ||
571 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST | |
572 | bool "DirectFB example df_drivertest has been removed" | |
758c5c7f | 573 | select BR2_LEGACY |
80404e8c TP |
574 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
575 | help | |
576 | The per-DirectFB example options have been removed. The | |
577 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
578 | examples. | |
579 | ||
80404e8c TP |
580 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE |
581 | bool "DirectFB example df_fire has been removed" | |
758c5c7f | 582 | select BR2_LEGACY |
80404e8c TP |
583 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
584 | help | |
585 | The per-DirectFB example options have been removed. The | |
586 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
587 | examples. | |
588 | ||
589 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP | |
590 | bool "DirectFB example df_flip has been removed" | |
758c5c7f | 591 | select BR2_LEGACY |
80404e8c TP |
592 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
593 | help | |
594 | The per-DirectFB example options have been removed. The | |
595 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
596 | examples. | |
597 | ||
598 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS | |
599 | bool "DirectFB example df_fonts has been removed" | |
758c5c7f | 600 | select BR2_LEGACY |
80404e8c TP |
601 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
602 | help | |
603 | The per-DirectFB example options have been removed. The | |
604 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
605 | examples. | |
606 | ||
607 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT | |
608 | bool "DirectFB example df_input has been removed" | |
758c5c7f | 609 | select BR2_LEGACY |
80404e8c TP |
610 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
611 | help | |
612 | The per-DirectFB example options have been removed. The | |
613 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
614 | examples. | |
615 | ||
616 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK | |
617 | bool "DirectFB example df_joystick has been removed" | |
758c5c7f | 618 | select BR2_LEGACY |
80404e8c TP |
619 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
620 | help | |
621 | The per-DirectFB example options have been removed. The | |
622 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
623 | examples. | |
624 | ||
625 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES | |
626 | bool "DirectFB example df_knuckles has been removed" | |
758c5c7f | 627 | select BR2_LEGACY |
80404e8c TP |
628 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
629 | help | |
630 | The per-DirectFB example options have been removed. The | |
631 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
632 | examples. | |
633 | ||
634 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER | |
635 | bool "DirectFB example df_layer has been removed" | |
758c5c7f | 636 | select BR2_LEGACY |
80404e8c TP |
637 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
638 | help | |
639 | The per-DirectFB example options have been removed. The | |
640 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
641 | examples. | |
642 | ||
643 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX | |
644 | bool "DirectFB example df_matrix has been removed" | |
758c5c7f | 645 | select BR2_LEGACY |
80404e8c TP |
646 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
647 | help | |
648 | The per-DirectFB example options have been removed. The | |
649 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
650 | examples. | |
651 | ||
652 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER | |
653 | bool "DirectFB example df_matrix_water has been removed" | |
758c5c7f | 654 | select BR2_LEGACY |
80404e8c TP |
655 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
656 | help | |
657 | The per-DirectFB example options have been removed. The | |
658 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
659 | examples. | |
660 | ||
661 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO | |
662 | bool "DirectFB example df_neo has been removed" | |
758c5c7f | 663 | select BR2_LEGACY |
80404e8c TP |
664 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
665 | help | |
666 | The per-DirectFB example options have been removed. The | |
667 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
668 | examples. | |
669 | ||
670 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD | |
671 | bool "DirectFB example df_netload has been removed" | |
758c5c7f | 672 | select BR2_LEGACY |
80404e8c TP |
673 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
674 | help | |
675 | The per-DirectFB example options have been removed. The | |
676 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
677 | examples. | |
678 | ||
679 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE | |
680 | bool "DirectFB example df_palette has been removed" | |
681 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
682 | help | |
683 | The per-DirectFB example options have been removed. The | |
684 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
685 | examples. | |
686 | ||
687 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE | |
688 | bool "DirectFB example df_particle has been removed" | |
758c5c7f | 689 | select BR2_LEGACY |
80404e8c TP |
690 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
691 | help | |
692 | The per-DirectFB example options have been removed. The | |
693 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
694 | examples. | |
695 | ||
696 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER | |
697 | bool "DirectFB example df_porter has been removed" | |
758c5c7f | 698 | select BR2_LEGACY |
80404e8c TP |
699 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
700 | help | |
701 | The per-DirectFB example options have been removed. The | |
702 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
703 | examples. | |
704 | ||
705 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS | |
706 | bool "DirectFB example df_stress has been removed" | |
707 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
708 | help | |
709 | The per-DirectFB example options have been removed. The | |
710 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
711 | examples. | |
712 | ||
713 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE | |
714 | bool "DirectFB example df_texture has been removed" | |
758c5c7f | 715 | select BR2_LEGACY |
80404e8c TP |
716 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
717 | help | |
718 | The per-DirectFB example options have been removed. The | |
719 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
720 | examples. | |
721 | ||
722 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO | |
723 | bool "DirectFB example df_video has been removed" | |
758c5c7f | 724 | select BR2_LEGACY |
80404e8c TP |
725 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
726 | help | |
727 | The per-DirectFB example options have been removed. The | |
728 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
729 | examples. | |
730 | ||
731 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE | |
732 | bool "DirectFB example df_video_particle has been removed" | |
758c5c7f | 733 | select BR2_LEGACY |
80404e8c TP |
734 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
735 | help | |
736 | The per-DirectFB example options have been removed. The | |
737 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
738 | examples. | |
739 | ||
740 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW | |
741 | bool "DirectFB example df_window has been removed" | |
758c5c7f | 742 | select BR2_LEGACY |
80404e8c TP |
743 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
744 | help | |
745 | The per-DirectFB example options have been removed. The | |
746 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
747 | examples. | |
748 | ||
2b78fb21 GB |
749 | config BR2_PACKAGE_KOBS_NG |
750 | bool "kobs-ng was replaced by imx-kobs" | |
751 | select BR2_LEGACY | |
752 | select BR2_PACKAGE_IMX_KOBS | |
753 | help | |
754 | The outdated kobs-ng has been replaced by the Freescale- | |
755 | maintained imx-kobs package. | |
756 | ||
11573f5a TP |
757 | config BR2_PACKAGE_SAWMAN |
758 | bool "sawman package removed" | |
759 | select BR2_LEGACY | |
760 | select BR2_PACKAGE_DIRECTFB_SAWMAN | |
761 | help | |
762 | This option has been removed because the sawman package no | |
763 | longer exists: it was merged inside DirectFB itself. This | |
764 | feature can now be enabled using the | |
765 | BR2_PACKAGE_DIRECTFB_SAWMAN option. | |
766 | ||
ae46e8f9 TP |
767 | config BR2_PACKAGE_DIVINE |
768 | bool "divine package removed" | |
769 | select BR2_LEGACY | |
770 | select BR2_PACKAGE_DIRECTFB_DIVINE | |
771 | help | |
772 | This option has been removed because the divine package no | |
773 | longer exists: it was merged inside DirectFB itself. This | |
774 | feature can now be enabled using the | |
775 | BR2_PACKAGE_DIRECTFB_DIVINE option. | |
776 | ||
777 | ############################################################################### | |
16b8e813 GZ |
778 | comment "Legacy options removed in 2015.08" |
779 | ||
9d9f1a92 BK |
780 | config BR2_PACKAGE_KODI_PVR_ADDONS |
781 | bool "Kodi PVR addon was split" | |
782 | select BR2_LEGACY | |
2579ec20 | 783 | select BR2_PACKAGE_KODI_PVR_ARGUSTV |
a69eca43 | 784 | select BR2_PACKAGE_KODI_PVR_DVBLINK |
6894c6c7 | 785 | select BR2_PACKAGE_KODI_PVR_DVBVIEWER |
313e45cd | 786 | select BR2_PACKAGE_KODI_PVR_FILMON |
6940d66a | 787 | select BR2_PACKAGE_KODI_PVR_HTS |
8c326ff8 | 788 | select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE |
a571287d | 789 | select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER |
afb2f155 | 790 | select BR2_PACKAGE_KODI_PVR_MYTHTV |
0757c7d3 | 791 | select BR2_PACKAGE_KODI_PVR_NEXTPVR |
805e9c15 | 792 | select BR2_PACKAGE_KODI_PVR_NJOY |
8776003d | 793 | select BR2_PACKAGE_KODI_PVR_PCTV |
70cf949f | 794 | select BR2_PACKAGE_KODI_PVR_STALKER |
610a3701 | 795 | select BR2_PACKAGE_KODI_PVR_VBOX |
7457d487 | 796 | select BR2_PACKAGE_KODI_PVR_VDR_VNSI |
eaf250c1 | 797 | select BR2_PACKAGE_KODI_PVR_VUPLUS |
967a4e9a | 798 | select BR2_PACKAGE_KODI_PVR_WMC |
9d9f1a92 BK |
799 | help |
800 | Kodi PVR addon was split into seperate modules | |
801 | ||
f84cc202 GZ |
802 | config BR2_BINUTILS_VERSION_2_23_2 |
803 | bool "binutils 2.23 option renamed" | |
804 | select BR2_LEGACY | |
805 | select BR2_BINUTILS_VERSION_2_23_X | |
806 | help | |
807 | The binutils version option has been renamed to match the | |
808 | same patchlevel logic used by gcc. The new option is now | |
809 | BR2_BINUTILS_VERSION_2_23_X. | |
810 | ||
811 | config BR2_BINUTILS_VERSION_2_24 | |
812 | bool "binutils 2.24 option renamed" | |
813 | select BR2_LEGACY | |
814 | select BR2_BINUTILS_VERSION_2_24_X | |
815 | help | |
816 | The binutils version option has been renamed to match the | |
817 | same patchlevel logic used by gcc. The new option is now | |
818 | BR2_BINUTILS_VERSION_2_24_X. | |
819 | ||
820 | config BR2_BINUTILS_VERSION_2_25 | |
821 | bool "binutils 2.25 option renamed" | |
822 | select BR2_LEGACY | |
823 | select BR2_BINUTILS_VERSION_2_25_X | |
824 | help | |
825 | The binutils version option has been renamed to match the | |
826 | same patchlevel logic used by gcc. The new option is now | |
827 | BR2_BINUTILS_VERSION_2_25_X. | |
828 | ||
1326e761 RN |
829 | config BR2_PACKAGE_PERF |
830 | bool "perf option has been renamed" | |
831 | select BR2_LEGACY | |
832 | select BR2_LINUX_KERNEL_TOOL_PERF | |
833 | help | |
834 | The perf package has been moved as a Linux tools package, | |
835 | and the option to enable it is now | |
836 | BR2_LINUX_KERNEL_TOOL_PERF. | |
837 | ||
2f845953 TP |
838 | config BR2_BINUTILS_VERSION_2_22 |
839 | bool "binutils 2.22 removed" | |
840 | select BR2_LEGACY | |
841 | help | |
842 | Binutils 2.22 has been removed, using a newer version is | |
843 | recommended. | |
844 | ||
4c0613e7 GB |
845 | config BR2_PACKAGE_GPU_VIV_BIN_MX6Q |
846 | bool "gpu-viv-bin-mx6q" | |
847 | select BR2_LEGACY | |
848 | select BR2_PACKAGE_IMX_GPU_VIV | |
849 | help | |
850 | Vivante graphics libraries have been renamed to | |
851 | BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package | |
852 | name. | |
853 | ||
7742abe0 MW |
854 | config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS |
855 | depends on BR2_PACKAGE_PYTHON | |
856 | bool "libsemanage python bindings removed" | |
758c5c7f | 857 | select BR2_LEGACY |
7742abe0 MW |
858 | help |
859 | This option has been removed, since the libsemanage Python | |
860 | bindings on the target were not useful. | |
861 | ||
16b8e813 GZ |
862 | config BR2_TARGET_UBOOT_NETWORK |
863 | bool "U-Boot custom network settings removed" | |
864 | select BR2_LEGACY | |
865 | help | |
866 | U-Boot's custom network settings options have been removed. | |
867 | ||
120136ee | 868 | ############################################################################### |
fd0e5f6b | 869 | comment "Legacy options removed in 2015.05" |
665e13c8 | 870 | |
e3904a89 ML |
871 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K |
872 | bool "jffs2 16kB erasesize NAND flash option renamed" | |
873 | select BR2_LEGACY | |
874 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K | |
875 | help | |
876 | The JFFS2 NAND flash options now longer include the page | |
877 | size. | |
878 | ||
879 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K | |
880 | bool "jffs2 128kB erasesize NAND flash option renamed" | |
881 | select BR2_LEGACY | |
882 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K | |
883 | help | |
884 | The JFFS2 NAND flash options now longer include the page | |
885 | size. | |
886 | ||
eff7c144 AC |
887 | config BR2_PACKAGE_MONO_20 |
888 | bool "2.0/3.5 .Net Runtime" | |
889 | select BR2_LEGACY | |
890 | help | |
891 | This option no longer exists, all versions of the .Net | |
892 | runtime are now installed. | |
893 | ||
894 | config BR2_PACKAGE_MONO_40 | |
895 | bool "4.0 .Net Runtime" | |
896 | select BR2_LEGACY | |
897 | help | |
898 | This option no longer exists, all versions of the .Net | |
899 | runtime are now installed. | |
900 | ||
901 | config BR2_PACKAGE_MONO_45 | |
902 | bool "4.5 .Net Runtime" | |
903 | select BR2_LEGACY | |
904 | help | |
905 | This option no longer exists, all versions of the .Net | |
906 | runtime are now installed. | |
907 | ||
efd49e33 PK |
908 | config BR2_CIVETWEB_WITH_LUA |
909 | bool "civetweb lua option renamed" | |
910 | select BR2_LEGACY | |
911 | select BR2_PACKAGE_CIVETWEB_WITH_LUA | |
912 | help | |
913 | civetweb's lua option has been renamed to | |
914 | BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other | |
915 | packages name options. | |
916 | ||
e6c7ad17 BK |
917 | config BR2_PACKAGE_TIFF_TIFF2PDF |
918 | bool "tiff utility-specific option removed" | |
919 | select BR2_LEGACY | |
920 | select BR2_PACKAGE_TIFF_UTILITIES | |
921 | help | |
922 | utility-specific options have been removed in favour of | |
923 | the new option BR2_PACKAGE_TIFF_UTILITIES. | |
924 | ||
925 | config BR2_PACKAGE_TIFF_TIFFCP | |
926 | bool "tiff utility-specific option removed" | |
927 | select BR2_LEGACY | |
928 | select BR2_PACKAGE_TIFF_UTILITIES | |
929 | help | |
930 | utility-specific options have been removed in favour of | |
931 | the new option BR2_PACKAGE_TIFF_UTILITIES. | |
932 | ||
e7035d4e TP |
933 | config BR2_LINUX_KERNEL_EXT_RTAI_PATCH |
934 | bool "RTAI patch file path has been removed" | |
758c5c7f | 935 | select BR2_LEGACY |
e7035d4e TP |
936 | help |
937 | This option has never worked, so it has been removed. | |
938 | ||
02917961 YM |
939 | config BR2_TARGET_GENERIC_PASSWD_DES |
940 | bool "Encoding passwords with DES has been removed" | |
941 | select BR2_LEGACY | |
942 | help | |
943 | Paswords can now only be encoded with either of md5, sha256 or sha512. | |
944 | The default is md5, which is stronger that DES (but still pretty weak). | |
945 | ||
0d31b5e4 GZ |
946 | config BR2_PACKAGE_GTK2_THEME_HICOLOR |
947 | bool "hicolor (default theme) is a duplicate" | |
948 | select BR2_LEGACY | |
949 | select BR2_PACKAGE_HICOLOR_ICON_THEME | |
950 | help | |
951 | The option was just a duplicate of hicolor icon theme. | |
952 | ||
fd0e5f6b MW |
953 | config BR2_PACKAGE_VALGRIND_PTRCHECK |
954 | bool "valgrind's PTRCheck was renamed to SGCheck" | |
955 | select BR2_LEGACY | |
956 | select BR2_PACKAGE_VALGRIND_SGCHECK | |
957 | help | |
958 | PTRCheck was renamed to SGCheck in valgrind | |
959 | ||
960 | ############################################################################### | |
665e13c8 TP |
961 | comment "Legacy options removed in 2015.02" |
962 | ||
10900c07 PA |
963 | config BR2_PACKAGE_LIBGC |
964 | bool "libgc package removed" | |
965 | select BR2_LEGACY | |
966 | select BR2_PACKAGE_BDWGC | |
967 | help | |
968 | libgc has been removed because we have the same package under a | |
969 | different name, bdwgc. | |
970 | ||
8d702aca YM |
971 | config BR2_PACKAGE_WDCTL |
972 | bool "util-linux' wdctl option has been renamed" | |
973 | select BR2_LEGACY | |
974 | select BR2_PACKAGE_UTIL_LINUX_WDCTL | |
975 | help | |
976 | util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL | |
977 | to be aligned with how the other options are named. | |
978 | ||
e44edb82 DM |
979 | config BR2_PACKAGE_UTIL_LINUX_ARCH |
980 | bool "util-linux' arch option has been removed" | |
981 | select BR2_LEGACY | |
982 | help | |
983 | util-linux' arch was dropped in util-linux 2.23, in favor of | |
984 | the coreutils version. | |
985 | ||
986 | config BR2_PACKAGE_UTIL_LINUX_DDATE | |
987 | bool "util-linux' ddate option has been removed" | |
988 | select BR2_LEGACY | |
989 | help | |
990 | util-linux' ddate was dropped in util-linux 2.23. | |
991 | ||
3c476540 RN |
992 | config BR2_PACKAGE_RPM_BZIP2_PAYLOADS |
993 | bool "rpm's bzip2 payloads option has been removed" | |
994 | select BR2_LEGACY | |
995 | select BR2_PACKAGE_BZIP2 | |
996 | help | |
997 | The bzip2 payloads option rely entirely on the dependant package bzip2. | |
998 | So, you need to select it to enable this feature. | |
999 | ||
1000 | config BR2_PACKAGE_RPM_XZ_PAYLOADS | |
1001 | bool "rpm's xz payloads option has been removed" | |
1002 | select BR2_LEGACY | |
1003 | select BR2_PACKAGE_XZ | |
1004 | help | |
1005 | The xz payloads option rely entirely on the dependant package xz. | |
1006 | So, you need to select it to enable this feature. | |
1007 | ||
6927bc91 GZ |
1008 | config BR2_PACKAGE_M4 |
1009 | bool "m4 target package removed" | |
1010 | select BR2_LEGACY | |
1011 | help | |
1012 | The m4 target package has been removed, it's been | |
1013 | deprecated for some time now. | |
1014 | ||
aa6ea7ab GZ |
1015 | config BR2_PACKAGE_FLEX_BINARY |
1016 | bool "flex binary in target option removed" | |
1017 | select BR2_LEGACY | |
1018 | help | |
1019 | The flex binary in the target option has been removed. | |
1020 | It's been deprecated for some time now and is essentially a | |
1021 | development tool which isn't very useful in the target. | |
1022 | ||
38dabc6e GZ |
1023 | config BR2_PACKAGE_BISON |
1024 | bool "bison target package removed" | |
1025 | select BR2_LEGACY | |
1026 | help | |
1027 | The bison target package has been removed, it's been | |
1028 | deprecated for some time now and is essentially a development | |
1029 | tool which isn't very useful in the target. | |
1030 | ||
7f9d4441 GZ |
1031 | config BR2_PACKAGE_GOB2 |
1032 | bool "gob2 target package removed" | |
1033 | select BR2_LEGACY | |
1034 | help | |
1035 | The gob2 target package has been removed, it's been | |
1036 | deprecated for some time now and was essentially useless | |
1037 | without a target toolchain. | |
1038 | ||
c2e3d0be GZ |
1039 | config BR2_PACKAGE_DISTCC |
1040 | bool "distcc target package removed" | |
1041 | select BR2_LEGACY | |
1042 | help | |
1043 | The distcc target package has been removed, it's been | |
1044 | deprecated for some time now and was essentially useless | |
1045 | without a target toolchain. | |
1046 | ||
b64cde60 GZ |
1047 | config BR2_PACKAGE_HASERL_VERSION_0_8_X |
1048 | bool "haserl 0.8.x version removed" | |
1049 | select BR2_LEGACY | |
1050 | help | |
1051 | The 0.8.x version option for haserl has been removed since it | |
1052 | has been deprecated for some time now. | |
1053 | You should be able to use the 0.9.x version without issues. | |
1054 | ||
0120d9f3 GZ |
1055 | config BR2_PACKAGE_STRONGSWAN_TOOLS |
1056 | bool "strongswan option has been removed" | |
1057 | select BR2_LEGACY | |
1058 | select BR2_PACKAGE_STRONGSWAN_PKI | |
1059 | select BR2_PACKAGE_STRONGSWAN_SCEP | |
1060 | help | |
1061 | The tools option has been removed upstream and the different tools | |
1062 | have been split between the pki and scep options, with others | |
1063 | deprecated. | |
1064 | ||
db78eb07 BK |
1065 | config BR2_PACKAGE_XBMC_ADDON_XVDR |
1066 | bool "xbmc options have been renamed" | |
1067 | select BR2_LEGACY | |
1068 | select BR2_PACKAGE_KODI_ADDON_XVDR | |
1069 | help | |
1070 | The XBMC media center project was renamed to Kodi entertainment center | |
1071 | ||
b3df2a35 BK |
1072 | config BR2_PACKAGE_XBMC_PVR_ADDONS |
1073 | bool "xbmc options have been renamed" | |
1074 | select BR2_LEGACY | |
1075 | select BR2_PACKAGE_KODI_PVR_ADDONS | |
1076 | help | |
1077 | The XBMC media center project was renamed to Kodi entertainment center | |
1078 | ||
35784597 BK |
1079 | config BR2_PACKAGE_XBMC |
1080 | bool "xbmc options have been renamed" | |
1081 | select BR2_LEGACY | |
1082 | select BR2_PACKAGE_KODI | |
1083 | help | |
1084 | The XBMC media center project was renamed to Kodi entertainment center | |
1085 | ||
1086 | config BR2_PACKAGE_XBMC_ALSA_LIB | |
1087 | bool "xbmc options have been renamed" | |
1088 | select BR2_LEGACY | |
1089 | select BR2_PACKAGE_KODI_ALSA_LIB | |
1090 | help | |
1091 | The XBMC media center project was renamed to Kodi entertainment center | |
1092 | ||
1093 | config BR2_PACKAGE_XBMC_AVAHI | |
1094 | bool "xbmc options have been renamed" | |
1095 | select BR2_LEGACY | |
1096 | select BR2_PACKAGE_KODI_AVAHI | |
1097 | help | |
1098 | The XBMC media center project was renamed to Kodi entertainment center | |
1099 | ||
1100 | config BR2_PACKAGE_XBMC_DBUS | |
1101 | bool "xbmc options have been renamed" | |
1102 | select BR2_LEGACY | |
1103 | select BR2_PACKAGE_KODI_DBUS | |
1104 | help | |
1105 | The XBMC media center project was renamed to Kodi entertainment center | |
1106 | ||
1107 | config BR2_PACKAGE_XBMC_LIBBLURAY | |
1108 | bool "xbmc options have been renamed" | |
1109 | select BR2_LEGACY | |
1110 | select BR2_PACKAGE_KODI_LIBBLURAY | |
1111 | help | |
1112 | The XBMC media center project was renamed to Kodi entertainment center | |
1113 | ||
1114 | config BR2_PACKAGE_XBMC_GOOM | |
1115 | bool "xbmc options have been renamed" | |
1116 | select BR2_LEGACY | |
1117 | select BR2_PACKAGE_KODI_GOOM | |
1118 | help | |
1119 | The XBMC media center project was renamed to Kodi entertainment center | |
1120 | ||
1121 | config BR2_PACKAGE_XBMC_RSXS | |
1122 | bool "xbmc options have been renamed" | |
1123 | select BR2_LEGACY | |
1124 | select BR2_PACKAGE_KODI_RSXS | |
1125 | help | |
1126 | The XBMC media center project was renamed to Kodi entertainment center | |
1127 | ||
1128 | config BR2_PACKAGE_XBMC_LIBCEC | |
1129 | bool "xbmc options have been renamed" | |
1130 | select BR2_LEGACY | |
1131 | select BR2_PACKAGE_KODI_LIBCEC | |
1132 | help | |
1133 | The XBMC media center project was renamed to Kodi entertainment center | |
1134 | ||
1135 | config BR2_PACKAGE_XBMC_LIBMICROHTTPD | |
1136 | bool "xbmc options have been renamed" | |
1137 | select BR2_LEGACY | |
1138 | select BR2_PACKAGE_KODI_LIBMICROHTTPD | |
1139 | help | |
1140 | The XBMC media center project was renamed to Kodi entertainment center | |
1141 | ||
1142 | config BR2_PACKAGE_XBMC_LIBNFS | |
1143 | bool "xbmc options have been renamed" | |
1144 | select BR2_LEGACY | |
1145 | select BR2_PACKAGE_KODI_LIBNFS | |
1146 | help | |
1147 | The XBMC media center project was renamed to Kodi entertainment center | |
1148 | ||
1149 | config BR2_PACKAGE_XBMC_RTMPDUMP | |
1150 | bool "xbmc options have been renamed" | |
1151 | select BR2_LEGACY | |
1152 | select BR2_PACKAGE_KODI_RTMPDUMP | |
1153 | help | |
1154 | The XBMC media center project was renamed to Kodi entertainment center | |
1155 | ||
1156 | config BR2_PACKAGE_XBMC_LIBSHAIRPLAY | |
1157 | bool "xbmc options have been renamed" | |
1158 | select BR2_LEGACY | |
1159 | select BR2_PACKAGE_KODI_LIBSHAIRPLAY | |
1160 | help | |
1161 | The XBMC media center project was renamed to Kodi entertainment center | |
1162 | ||
1163 | config BR2_PACKAGE_XBMC_LIBSMBCLIENT | |
1164 | bool "xbmc options have been renamed" | |
1165 | select BR2_LEGACY | |
1166 | select BR2_PACKAGE_KODI_LIBSMBCLIENT | |
1167 | help | |
1168 | The XBMC media center project was renamed to Kodi entertainment center | |
1169 | ||
1170 | config BR2_PACKAGE_XBMC_LIBTHEORA | |
1171 | bool "xbmc options have been renamed" | |
1172 | select BR2_LEGACY | |
1173 | select BR2_PACKAGE_KODI_LIBTHEORA | |
1174 | help | |
1175 | The XBMC media center project was renamed to Kodi entertainment center | |
1176 | ||
1177 | config BR2_PACKAGE_XBMC_LIBUSB | |
1178 | bool "xbmc options have been renamed" | |
1179 | select BR2_LEGACY | |
1180 | select BR2_PACKAGE_KODI_LIBUSB | |
1181 | help | |
1182 | The XBMC media center project was renamed to Kodi entertainment center | |
1183 | ||
1184 | config BR2_PACKAGE_XBMC_LIBVA | |
1185 | bool "xbmc options have been renamed" | |
1186 | select BR2_LEGACY | |
1187 | select BR2_PACKAGE_KODI_LIBVA | |
1188 | help | |
1189 | The XBMC media center project was renamed to Kodi entertainment center | |
1190 | ||
1191 | config BR2_PACKAGE_XBMC_WAVPACK | |
1192 | bool "xbmc options have been renamed" | |
1193 | select BR2_LEGACY | |
1194 | select BR2_PACKAGE_KODI_WAVPACK | |
1195 | help | |
1196 | The XBMC media center project was renamed to Kodi entertainment center | |
1197 | ||
665e13c8 TP |
1198 | config BR2_PREFER_STATIC_LIB |
1199 | bool "static library option renamed" | |
a44b1c14 | 1200 | select BR2_LEGACY |
665e13c8 TP |
1201 | help |
1202 | The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It | |
1203 | highlights the fact that the option no longer "prefers" | |
1204 | static libraries, but "enforces" static libraries (i.e | |
1205 | shared libraries are completely unused). | |
1206 | ||
a44b1c14 SM |
1207 | Take care of updating the type of libraries you want under the |
1208 | "Build options" menu. | |
1209 | ||
35784597 | 1210 | ############################################################################### |
120136ee YM |
1211 | comment "Legacy options removed in 2014.11" |
1212 | ||
a52bad85 PK |
1213 | config BR2_x86_generic |
1214 | bool "x86 generic variant has been removed" | |
1215 | select BR2_LEGACY | |
1216 | help | |
1217 | The generic x86 CPU variant has been removed. Use another | |
a95e98c0 | 1218 | CPU variant instead. |
a52bad85 | 1219 | |
40e18f29 AL |
1220 | config BR2_GCC_VERSION_4_4_X |
1221 | bool "gcc 4.4.x has been removed" | |
1222 | select BR2_LEGACY | |
1223 | help | |
1224 | The 4.4.x version of gcc has been removed. Use a newer | |
1225 | version instead. | |
1226 | ||
43b78e72 AL |
1227 | config BR2_sparc_sparchfleon |
1228 | bool "sparchfleon CPU has been removed" | |
1229 | select BR2_LEGACY | |
1230 | help | |
1231 | The sparchfleon CPU was only supported in a patched gcc 4.4 | |
1232 | version. Its support has been removed in favor of the leon3 | |
1233 | CPU starting from gcc 4.8.x. | |
1234 | ||
1235 | config BR2_sparc_sparchfleonv8 | |
1236 | bool "sparchfleonv8 CPU has been removed" | |
1237 | select BR2_LEGACY | |
1238 | help | |
1239 | The sparchfleonv8 CPU was only supported in a patched gcc | |
1240 | 4.4 version. Its support has been removed in favor of the | |
1241 | leon3 CPU starting from gcc 4.8.x. | |
1242 | ||
1243 | config BR2_sparc_sparcsfleon | |
1244 | bool "sparcsfleon CPU has been removed" | |
1245 | select BR2_LEGACY | |
1246 | help | |
1247 | The sparcsfleon CPU was only supported in a patched gcc 4.4 | |
1248 | version. Its support has been removed in favor of the leon3 | |
1249 | CPU starting from gcc 4.8.x. | |
1250 | ||
1251 | config BR2_sparc_sparcsfleonv8 | |
1252 | bool "sparcsfleonv8 CPU has been removed" | |
1253 | select BR2_LEGACY | |
1254 | help | |
1255 | The sparcsfleonv8 CPU was only supported in a patched gcc | |
1256 | 4.4 version. Its support has been removed in favor of the | |
1257 | leon3 CPU starting from gcc 4.8.x. | |
1258 | ||
bfd87877 BK |
1259 | config BR2_PACKAGE_XLIB_LIBPCIACCESS |
1260 | bool "xlib-libpciaccess option has been renamed" | |
1261 | depends on BR2_PACKAGE_XORG7 | |
1262 | select BR2_LEGACY | |
1263 | select BR2_PACKAGE_LIBPCIACCESS | |
1264 | help | |
1265 | libpciaccess neither depends on X11 nor Xlib. Thus the | |
1266 | package has been renamed BR2_PACKAGE_LIBPCIACCESS | |
1267 | ||
b581bba9 YM |
1268 | config BR2_PACKAGE_LINUX_FIRMWARE_XC5000 |
1269 | bool "Xceive xc5000 option has been renamed" | |
758c5c7f | 1270 | select BR2_LEGACY |
b581bba9 YM |
1271 | select BR2_PACKAGE_LINUX_FIRMWARE_XCx000 |
1272 | help | |
1273 | The Xceive xc5000 option now also handles older firmwares from | |
1274 | Xceive (the xc4000 series), as well as new firmwares (the xc5000c) | |
1275 | from Cresta, who bought Xceive. | |
1276 | ||
dac546e9 YM |
1277 | config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 |
1278 | bool "Chelsio T4 option has been renamed" | |
758c5c7f | 1279 | select BR2_LEGACY |
dac546e9 YM |
1280 | select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 |
1281 | help | |
1282 | The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 | |
1283 | has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 | |
1284 | to better account for the fact that a T5 variant exists. | |
1285 | ||
120136ee YM |
1286 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 |
1287 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed" | |
758c5c7f | 1288 | select BR2_LEGACY |
120136ee YM |
1289 | help |
1290 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was | |
1291 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must | |
1292 | select it in: | |
1293 | Target packages -> Hardware handling -> | |
1294 | Firmware -> linux-firmware -> WiFi firmware -> | |
1295 | iwlwifi 3160/726x revision to use (revision 7) | |
1296 | ||
1297 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 | |
1298 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed" | |
758c5c7f | 1299 | select BR2_LEGACY |
120136ee YM |
1300 | help |
1301 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was | |
1302 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must | |
1303 | select it in: | |
1304 | Target packages -> Hardware handling -> | |
1305 | Firmware -> linux-firmware -> WiFi firmware -> | |
1306 | iwlwifi 3160/726x revision to use (revision 8) | |
1307 | ||
5cd1c4fe YM |
1308 | ############################################################################### |
1309 | comment "Legacy options removed in 2014.08" | |
1310 | ||
52fac6a2 GC |
1311 | config BR2_PACKAGE_LIBELF |
1312 | bool "libelf has been removed" | |
1313 | select BR2_PACKAGE_ELFUTILS | |
1314 | select BR2_LEGACY | |
1315 | help | |
1316 | The libelf package provided an old version of the libelf library | |
1317 | and is deprecated. The libelf library is now provided by the | |
1318 | elfutils package. | |
1319 | ||
dfae6f67 TDS |
1320 | config BR2_KERNEL_HEADERS_3_8 |
1321 | bool "kernel headers version 3.8.x are no longer supported" | |
4ac4bc32 | 1322 | select BR2_KERNEL_HEADERS_3_10 |
dfae6f67 TDS |
1323 | select BR2_LEGACY |
1324 | help | |
1325 | Version 3.8.x of the Linux kernel headers have been deprecated | |
1326 | for more than four buildroot releases and are now removed. | |
4ac4bc32 | 1327 | As an alternative, version 3.10.x of the headers have been |
dfae6f67 TDS |
1328 | automatically selected in your configuration. |
1329 | ||
187b4d68 TP |
1330 | config BR2_PACKAGE_GETTEXT_TOOLS |
1331 | bool "support for gettext-tools on target has been removed" | |
1332 | select BR2_LEGACY | |
1333 | help | |
1334 | The option to install the gettext utilities on the target | |
1335 | has been removed. This is not necessary as Buildroot is not | |
1336 | designed to provide a full development environment on the | |
1337 | target. gettext tools should be used on the build machine | |
1338 | instead. | |
1339 | ||
5cd1c4fe YM |
1340 | config BR2_PACKAGE_PROCPS |
1341 | bool "procps has been replaced by procps-ng" | |
1342 | select BR2_PACKAGE_PROCPS_NG | |
1343 | select BR2_LEGACY | |
1344 | help | |
1345 | The procps package has been replaced by the equivalent procps-ng. | |
1346 | ||
d4839ffc TP |
1347 | config BR2_BINUTILS_VERSION_2_20_1 |
1348 | bool "binutils 2.20.1 has been removed" | |
1349 | select BR2_LEGACY | |
1350 | help | |
1351 | The 2.20.1 version of binutils has been removed. Use a newer | |
1352 | version instead. | |
1353 | ||
1354 | config BR2_BINUTILS_VERSION_2_21 | |
1355 | bool "binutils 2.21 has been removed" | |
1356 | select BR2_LEGACY | |
1357 | help | |
1358 | The 2.21 version of binutils has been removed. Use a newer | |
1359 | version instead. | |
1360 | ||
1361 | config BR2_BINUTILS_VERSION_2_23_1 | |
1362 | bool "binutils 2.23.1 has been removed" | |
1363 | select BR2_LEGACY | |
1364 | help | |
1365 | The 2.23.1 version of binutils has been removed. Use a newer | |
1366 | version instead. | |
1367 | ||
506b964d TP |
1368 | config BR2_UCLIBC_VERSION_0_9_32 |
1369 | bool "uclibc 0.9.32 has been removed" | |
1370 | select BR2_LEGACY | |
1371 | help | |
1372 | The 0.9.32 version of uClibc has been removed. Use a newer | |
1373 | version instead. | |
1374 | ||
d10e0805 TP |
1375 | config BR2_GCC_VERSION_4_3_X |
1376 | bool "gcc 4.3.x has been removed" | |
1377 | select BR2_LEGACY | |
1378 | help | |
1379 | The 4.3.x version of gcc has been removed. Use a newer | |
1380 | version instead. | |
1381 | ||
1382 | config BR2_GCC_VERSION_4_6_X | |
1383 | bool "gcc 4.6.x has been removed" | |
1384 | select BR2_LEGACY | |
1385 | help | |
1386 | The 4.6.x version of gcc has been removed. Use a newer | |
1387 | version instead. | |
1388 | ||
02d85f65 TP |
1389 | config BR2_GDB_VERSION_7_4 |
1390 | bool "gdb 7.4 has been removed" | |
1391 | select BR2_LEGACY | |
1392 | help | |
1393 | The 7.4 version of gdb has been removed. Use a newer version | |
1394 | instead. | |
1395 | ||
1396 | config BR2_GDB_VERSION_7_5 | |
1397 | bool "gdb 7.5 has been removed" | |
1398 | select BR2_LEGACY | |
1399 | help | |
1400 | The 7.5 version of gdb has been removed. Use a newer version | |
1401 | instead. | |
1402 | ||
b18dca0d TP |
1403 | config BR2_BUSYBOX_VERSION_1_19_X |
1404 | bool "busybox version selection has been removed" | |
1405 | select BR2_LEGACY | |
1406 | help | |
1407 | The possibility of selecting the Busybox version has been | |
1408 | removed. Use the latest version provided by the Busybox | |
1409 | package instead. | |
1410 | ||
1411 | config BR2_BUSYBOX_VERSION_1_20_X | |
1412 | bool "busybox version selection has been removed" | |
1413 | select BR2_LEGACY | |
1414 | help | |
1415 | The possibility of selecting the Busybox version has been | |
1416 | removed. Use the latest version provided by the Busybox | |
1417 | package instead. | |
1418 | ||
1419 | config BR2_BUSYBOX_VERSION_1_21_X | |
1420 | bool "busybox version selection has been removed" | |
1421 | select BR2_LEGACY | |
1422 | help | |
1423 | The possibility of selecting the Busybox version has been | |
1424 | removed. Use the latest version provided by the Busybox | |
1425 | package instead. | |
1426 | ||
07ac0456 EG |
1427 | config BR2_PACKAGE_LIBV4L_DECODE_TM6000 |
1428 | bool "decode_tm6000" | |
1429 | select BR2_PACKAGE_LIBV4L_UTILS | |
1430 | select BR2_LEGACY | |
1431 | help | |
1432 | This libv4l option has been deprecated and replaced by a single | |
1433 | option to build all the libv4l utilities. | |
1434 | ||
1435 | config BR2_PACKAGE_LIBV4L_IR_KEYTABLE | |
1436 | bool "ir-keytable" | |
1437 | select BR2_PACKAGE_LIBV4L_UTILS | |
1438 | select BR2_LEGACY | |
1439 | help | |
1440 | This libv4l option has been deprecated and replaced by a single | |
1441 | option to build all the libv4l utilities. | |
1442 | ||
1443 | config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE | |
1444 | bool "v4l2-compliance" | |
1445 | select BR2_PACKAGE_LIBV4L_UTILS | |
1446 | select BR2_LEGACY | |
1447 | help | |
1448 | This libv4l option has been deprecated and replaced by a single | |
1449 | option to build all the libv4l utilities. | |
1450 | ||
1451 | config BR2_PACKAGE_LIBV4L_V4L2_CTL | |
1452 | bool "v4l2-ctl" | |
1453 | select BR2_PACKAGE_LIBV4L_UTILS | |
1454 | select BR2_LEGACY | |
1455 | help | |
1456 | This libv4l option has been deprecated and replaced by a single | |
1457 | option to build all the libv4l utilities. | |
1458 | ||
1459 | config BR2_PACKAGE_LIBV4L_V4L2_DBG | |
1460 | bool "v4l2-dbg" | |
1461 | select BR2_PACKAGE_LIBV4L_UTILS | |
1462 | select BR2_LEGACY | |
1463 | help | |
1464 | This libv4l option has been deprecated and replaced by a single | |
1465 | option to build all the libv4l utilities. | |
1466 | ||
fabcb119 | 1467 | ############################################################################### |
1468 | comment "Legacy options removed in 2014.05" | |
1469 | ||
4990a381 PS |
1470 | config BR2_PACKAGE_EVTEST_CAPTURE |
1471 | bool "evtest-capture support removed (dropped since evtest 1.31)" | |
1472 | select BR2_LEGACY | |
1473 | help | |
1474 | Support for evtest-capture has been removed (dropped from | |
1475 | evtest package since version 1.31), use evemu package | |
1476 | instead. | |
1477 | ||
47c2d1b4 TDS |
1478 | config BR2_KERNEL_HEADERS_3_6 |
1479 | bool "kernel headers version 3.6.x are no longer supported" | |
4ac4bc32 | 1480 | select BR2_KERNEL_HEADERS_3_10 |
47c2d1b4 TDS |
1481 | select BR2_LEGACY |
1482 | help | |
1483 | Version 3.6.x of the Linux kernel headers have been deprecated | |
1484 | for more than four buildroot releases and are now removed. | |
4ac4bc32 | 1485 | As an alternative, version 3.10.x of the headers have been |
47c2d1b4 TDS |
1486 | automatically selected in your configuration. |
1487 | ||
1488 | config BR2_KERNEL_HEADERS_3_7 | |
1489 | bool "kernel headers version 3.7.x are no longer supported" | |
4ac4bc32 | 1490 | select BR2_KERNEL_HEADERS_3_10 |
47c2d1b4 TDS |
1491 | select BR2_LEGACY |
1492 | help | |
1493 | Version 3.7.x of the Linux kernel headers have been deprecated | |
1494 | for more than four buildroot releases and are now removed. | |
4ac4bc32 | 1495 | As an alternative, version 3.10.x of the headers have been |
47c2d1b4 TDS |
1496 | automatically selected in your configuration. |
1497 | ||
947ca9e1 TDS |
1498 | config BR2_PACKAGE_VALA |
1499 | bool "vala target package has been removed" | |
1500 | select BR2_LEGACY | |
1501 | help | |
1502 | The 'vala' target package has been removed since it has been | |
1503 | deprecated for more than four buildroot releases. | |
1504 | Note: the host vala package still exists. | |
1505 | ||
d6a37917 YM |
1506 | config BR2_TARGET_TZ_ZONELIST |
1507 | default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != "" | |
1508 | ||
1509 | config BR2_PACKAGE_TZDATA_ZONELIST | |
1510 | string "tzdata: the timezone list option has been renamed" | |
1511 | help | |
1512 | The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to | |
1513 | BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration" | |
1514 | menu. You'll need to select BR2_TARGET_TZ_INFO. | |
1515 | ||
1516 | config BR2_PACKAGE_TZDATA_ZONELIST_WRAP | |
1517 | bool | |
1518 | default y if BR2_PACKAGE_TZDATA_ZONELIST != "" | |
1519 | select BR2_LEGACY | |
1520 | ||
c97aeb7e YM |
1521 | config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE |
1522 | bool "Lua command-line editing none has been renamed" | |
1523 | select BR2_LEGACY | |
1524 | help | |
1525 | The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been | |
1526 | renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select | |
1527 | it in the corresponding choice. | |
1528 | ||
1529 | config BR2_PACKAGE_LUA_INTERPRETER_READLINE | |
1530 | bool "Lua command-line editing using readline has been renamed" | |
1531 | select BR2_LEGACY | |
1532 | help | |
1533 | The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been | |
1534 | renamed to BR2_PACKAGE_LUA_READLINE. You will have to select | |
1535 | it in the corresponding choice. | |
1536 | ||
1537 | config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE | |
1538 | bool "Lua command-line editing using linenoise has been renamed" | |
1539 | select BR2_LEGACY | |
1540 | help | |
1541 | The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been | |
1542 | renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select | |
1543 | it in the corresponding choice. | |
1544 | ||
365ae61c YM |
1545 | config BR2_PACKAGE_DVB_APPS_UTILS |
1546 | bool "dvb-apps utilities now built by default" | |
1547 | select BR2_LEGACY | |
1548 | help | |
1549 | The dvb-apps utilities are now always built when the dvb-apps | |
1550 | package is selected. | |
1551 | ||
971e331c YM |
1552 | config BR2_KERNEL_HEADERS_SNAP |
1553 | bool "Local Linux snapshot support removed" | |
1554 | select BR2_LEGACY | |
1555 | help | |
1556 | Support for using a custom snapshot to install the Linux | |
1557 | kernel headers has been removed. | |
1558 | ||
fabcb119 | 1559 | config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV |
1560 | bool "/dev management by udev removed" | |
1561 | select BR2_LEGACY | |
1562 | help | |
1563 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 1564 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 1565 | |
2c66e442 | 1566 | Therefore, if you are not using 'systemd' as init system, you |
1567 | must choose 'Dynamic using eudev' in the '/dev management' | |
1568 | menu to get the same behaviour as in your old configuration. | |
1569 | ||
1570 | If you are using 'systemd', its internal implementation of | |
1571 | 'udev' will be used automatically. | |
fabcb119 | 1572 | |
1573 | You must also check the packages depending on 'udev' are still | |
1574 | selected. | |
1575 | ||
1576 | config BR2_PACKAGE_UDEV | |
1577 | bool "udev is now a virtual package" | |
1578 | select BR2_LEGACY | |
1579 | select BR2_PACKAGE_HAS_UDEV | |
1580 | help | |
1581 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 1582 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 1583 | |
1584 | Your old configuration refers to packages depending on 'udev', | |
1585 | either for build or at runtime. | |
1586 | ||
2c66e442 | 1587 | Check that a 'udev' provider is selected. If you are not using |
1588 | 'systemd' as init system, 'eudev' should be selected, which is | |
1589 | the case if '/dev management' is set to 'Dynamic using eudev'. | |
1590 | ||
1591 | If you are using 'systemd', its internal implementation of 'udev' | |
1592 | is used. | |
fabcb119 | 1593 | |
1594 | config BR2_PACKAGE_UDEV_RULES_GEN | |
2c66e442 | 1595 | bool "udev rules generation handled by provider" |
fabcb119 | 1596 | select BR2_LEGACY |
2c66e442 | 1597 | select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD |
1598 | select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD | |
fabcb119 | 1599 | help |
1600 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 1601 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 1602 | |
2c66e442 | 1603 | If you are not using 'systemd' as init system, udev rules |
1604 | generation will be handled by 'eudev'. Check that | |
1605 | '/dev management' is set to 'Dynamic using eudev' to get | |
1606 | the same behaviour as in your old configuration. | |
fabcb119 | 1607 | |
2c66e442 | 1608 | If you are using 'systemd', it internal implementation of 'udev' |
1609 | will generate the rules. | |
fabcb119 | 1610 | |
1611 | config BR2_PACKAGE_UDEV_ALL_EXTRAS | |
1612 | bool "udev extras removed" | |
1613 | select BR2_LEGACY | |
1614 | help | |
1615 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 1616 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 1617 | |
1618 | The option to enable the extra features of 'udev' (gudev, ...) | |
1619 | has been removed. These features are automatically enabled in | |
1620 | the 'udev' providers if the dependencies are selected. For | |
1621 | example, selecting 'libglib2' will trigger the build of gudev. | |
1622 | ||
5562be13 BK |
1623 | config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS |
1624 | bool "xlib-libpthread-stubs option has been renamed" | |
1625 | depends on BR2_PACKAGE_XORG7 | |
1626 | select BR2_LEGACY | |
1627 | select BR2_PACKAGE_LIBPTHREAD_STUBS | |
1628 | help | |
1629 | The pthread stubs neither depend on X11 nor Xlib. Thus the | |
1630 | package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS | |
1631 | ||
8b2e2357 | 1632 | ############################################################################### |
f169e5e1 YM |
1633 | comment "Legacy options removed in 2014.02" |
1634 | ||
e543f5a1 TP |
1635 | config BR2_sh2 |
1636 | bool "sh2 support removed" | |
758c5c7f | 1637 | select BR2_LEGACY |
e543f5a1 TP |
1638 | help |
1639 | Due to an inexistent user base and generally poor Linux | |
1640 | support, the support for the SH2 architecture was removed. | |
1641 | ||
1642 | config BR2_sh3 | |
1643 | bool "sh3 support removed" | |
758c5c7f | 1644 | select BR2_LEGACY |
e543f5a1 TP |
1645 | help |
1646 | Due to an inexistent user base and generally poor Linux | |
1647 | support, the support for the SH3 architecture was removed. | |
1648 | ||
1649 | config BR2_sh3eb | |
1650 | bool "sh3eb support removed" | |
758c5c7f | 1651 | select BR2_LEGACY |
e543f5a1 TP |
1652 | help |
1653 | Due to an inexistent user base and generally poor Linux | |
1654 | support, the support for the SH3eb architecture was removed. | |
1655 | ||
334dca61 TDS |
1656 | config BR2_KERNEL_HEADERS_3_1 |
1657 | bool "kernel headers version 3.1.x are no longer supported" | |
1658 | select BR2_KERNEL_HEADERS_3_2 | |
1659 | select BR2_LEGACY | |
1660 | help | |
1661 | Version 3.1.x of the Linux kernel headers have been deprecated | |
1662 | for more than four buildroot releases and are now removed. | |
1663 | As an alternative, version 3.2.x of the headers have been | |
1664 | automatically selected in your configuration. | |
1665 | ||
1666 | config BR2_KERNEL_HEADERS_3_3 | |
1667 | bool "kernel headers version 3.3.x are no longer supported" | |
1668 | select BR2_KERNEL_HEADERS_3_4 | |
1669 | select BR2_LEGACY | |
1670 | help | |
1671 | Version 3.3.x of the Linux kernel headers have been deprecated | |
1672 | for more than four buildroot releases and are now removed. | |
1673 | As an alternative, version 3.4.x of the headers have been | |
1674 | automatically selected in your configuration. | |
1675 | ||
1676 | config BR2_KERNEL_HEADERS_3_5 | |
1677 | bool "kernel headers version 3.5.x are no longer supported" | |
4ac4bc32 | 1678 | select BR2_KERNEL_HEADERS_3_10 |
334dca61 TDS |
1679 | select BR2_LEGACY |
1680 | help | |
1681 | Version 3.5.x of the Linux kernel headers have been deprecated | |
1682 | for more than four buildroot releases and are now removed. | |
4ac4bc32 | 1683 | As an alternative, version 3.10.x of the headers have been |
334dca61 TDS |
1684 | automatically selected in your configuration. |
1685 | ||
348060f9 TDS |
1686 | config BR2_GDB_VERSION_7_2 |
1687 | bool "gdb 7.2.x is no longer supported" | |
02d85f65 | 1688 | select BR2_GDB_VERSION_7_6 |
348060f9 TDS |
1689 | select BR2_LEGACY |
1690 | help | |
1691 | Version 7.2.x of gdb has been deprecated for more than four | |
1692 | buildroot releases and is now removed. As an alternative, gdb | |
1693 | 7.5.x has been automatically selected in your configuration. | |
1694 | ||
1695 | config BR2_GDB_VERSION_7_3 | |
1696 | bool "gdb 7.3.x is no longer supported" | |
02d85f65 | 1697 | select BR2_GDB_VERSION_7_6 |
348060f9 TDS |
1698 | select BR2_LEGACY |
1699 | help | |
1700 | Version 7.3.x of gdb has been deprecated for more than four | |
1701 | buildroot releases and is now removed. As an alternative, gdb | |
1702 | 7.5.x has been automatically selected in your configuration. | |
1703 | ||
831624c4 TDS |
1704 | config BR2_PACKAGE_CCACHE |
1705 | bool "ccache target package has been removed" | |
1706 | select BR2_LEGACY | |
1707 | help | |
1708 | The 'ccache' target package has been removed since it has been | |
1709 | deprecated for more than four buildroot releases. | |
1710 | Note: using ccache for speeding up builds is still supported. | |
1711 | ||
7164a326 TDS |
1712 | config BR2_HAVE_DOCUMENTATION |
1713 | bool "support for documentation on target has been removed" | |
1714 | select BR2_LEGACY | |
1715 | help | |
1716 | Support for documentation on target has been removed since it has | |
1717 | been deprecated for more than four buildroot releases. | |
1718 | ||
f75245d9 TDS |
1719 | config BR2_PACKAGE_AUTOMAKE |
1720 | bool "automake target package has been removed" | |
1721 | select BR2_LEGACY | |
1722 | help | |
1723 | The 'automake' target package has been removed since it has been | |
1724 | deprecated for more than four buildroot releases. | |
1725 | Note: the host automake still exists. | |
1726 | ||
e7af2ac6 TDS |
1727 | config BR2_PACKAGE_AUTOCONF |
1728 | bool "autoconf target package has been removed" | |
1729 | select BR2_LEGACY | |
1730 | help | |
1731 | The 'autoconf' target package has been removed since it has been | |
1732 | deprecated for more than four buildroot releases. | |
1733 | Note: the host autoconf still exists. | |
1734 | ||
ddf5424f TDS |
1735 | config BR2_PACKAGE_XSTROKE |
1736 | bool "xstroke has been removed" | |
1737 | select BR2_LEGACY | |
1738 | help | |
1739 | The 'xstroke' package has been removed since it has been | |
1740 | deprecated for more than four buildroot releases. | |
1741 | ||
0a077319 TDS |
1742 | config BR2_PACKAGE_LZMA |
1743 | bool "lzma target package has been removed" | |
1744 | select BR2_LEGACY | |
1745 | help | |
1746 | The 'lzma' target package has been removed since it has been | |
1747 | deprecated for more than four buildroot releases. | |
1748 | Note: generating lzma-compressed rootfs images is still supported. | |
1749 | ||
7ef5c3a5 TDS |
1750 | config BR2_PACKAGE_TTCP |
1751 | bool "ttcp has been removed" | |
1752 | select BR2_LEGACY | |
1753 | help | |
1754 | The 'ttcp' package has been removed since it has been | |
1755 | deprecated for more than four buildroot releases. | |
1756 | ||
8b2e2357 | 1757 | config BR2_PACKAGE_LIBNFC_LLCP |
93341046 | 1758 | bool "libnfc-llcp has been replaced by libllcp" |
8b2e2357 | 1759 | select BR2_LEGACY |
93341046 | 1760 | select BR2_PACKAGE_LIBLLCP |
8b2e2357 VOR |
1761 | help |
1762 | The 'libnfc-llcp' package has been removed since upstream renamed | |
93341046 TDS |
1763 | to 'libllcp'. We have added a new package for 'libllcp' and bumped |
1764 | the version at the same time. | |
8b2e2357 | 1765 | |
06c82128 MGUF |
1766 | config BR2_PACKAGE_MYSQL_CLIENT |
1767 | bool "MySQL client renamed to MySQL" | |
1768 | select BR2_LEGACY | |
1769 | select BR2_PACKAGE_MYSQL | |
1770 | help | |
1771 | The option has been renamed BR2_PACKAGE_MYSQL | |
1772 | ||
2f7a53ee TDS |
1773 | config BR2_PACKAGE_SQUASHFS3 |
1774 | bool "squashfs3 has been removed" | |
1775 | select BR2_LEGACY | |
1776 | select BR2_PACKAGE_SQUASHFS | |
1777 | help | |
1778 | The 'squashfs3' package has been removed since it has been | |
1779 | deprecated for more than four buildroot releases. Package | |
1780 | 'squashfs' (4) has been selected automatically as replacement. | |
1781 | ||
1782 | config BR2_TARGET_ROOTFS_SQUASHFS3 | |
1783 | bool "squashfs3 rootfs support has been removed" | |
1784 | select BR2_LEGACY | |
1785 | help | |
1786 | Together with the removal of the squashfs3 package, support | |
1787 | for squashfs3 root filesystems has been removed too. Squashfs | |
1788 | root filesystems will automatically use squashfs4 now. | |
1789 | ||
560fe85b AA |
1790 | config BR2_PACKAGE_NETKITBASE |
1791 | bool "netkitbase has been removed" | |
1792 | select BR2_LEGACY | |
1793 | help | |
1794 | The 'netkitbase' package has been removed since it has been | |
1795 | deprecated since 2012.11. This package provided 'inetd' | |
1796 | which is replaced by 'xinet' and 'ping' which is replaced by | |
1797 | 'busybox' or 'fping'. | |
1798 | ||
1799 | config BR2_PACKAGE_NETKITTELNET | |
1800 | bool "netkittelnet has been removed" | |
1801 | select BR2_LEGACY | |
1802 | help | |
1803 | The 'netkittelnet' package has been removed since it has | |
1804 | been deprecated since 2012.11. 'busybox' provides a telnet | |
1805 | client and should be used instead. | |
1806 | ||
63058f8b FP |
1807 | config BR2_PACKAGE_LUASQL |
1808 | bool "luasql has been replaced by luasql-sqlite3" | |
1809 | select BR2_PACKAGE_LUASQL_SQLITE3 | |
1810 | select BR2_LEGACY | |
1811 | help | |
1812 | The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3. | |
1813 | ||
a6c53478 FP |
1814 | config BR2_PACKAGE_LUACJSON |
1815 | bool "luacjson has been replaced by lua-cjson" | |
1816 | select BR2_PACKAGE_LUA_CJSON | |
1817 | select BR2_LEGACY | |
1818 | help | |
1819 | The option has been renamed BR2_PACKAGE_LUA_CJSON. | |
1820 | ||
94c72087 TP |
1821 | ############################################################################### |
1822 | comment "Legacy options removed in 2013.11" | |
1823 | ||
ff0f55e3 AV |
1824 | config BR2_PACKAGE_LVM2_DMSETUP_ONLY |
1825 | bool "lvm2's 'dmsetup only' option removed" | |
1826 | select BR2_LEGACY | |
1827 | help | |
1828 | The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which | |
1829 | led to problems with other packages that need the full lvm2 | |
1830 | suite. Therefore, the option has been replaced with the positive | |
1831 | BR2_PACKAGE_LVM2_STANDARD_INSTALL option. | |
1832 | ||
1833 | # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in | |
1834 | # in order to automatically propagate old configs | |
1835 | ||
1f9c04f6 TP |
1836 | config BR2_PACKAGE_QT_JAVASCRIPTCORE |
1837 | bool "qt javascriptcore option removed" | |
1838 | select BR2_LEGACY | |
1839 | help | |
1840 | The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to | |
1841 | force the activation or disabling of the JIT compiler in the | |
1842 | Qt Javascript interpreter. However, the JIT compiler is not | |
1843 | available for all architectures, so forcing its activation | |
1844 | does not always work. Moreover, Qt knows by itself for which | |
1845 | architectures JIT support is possible, and will | |
1846 | automatically enable it if possible. | |
1847 | ||
1848 | Therefore, this option was in fact useless, and causing | |
1849 | build problems when enabled on architectures for which the | |
1850 | JIT support was not available. It has been removed, and | |
1851 | there is no replacement: Qt will enable JIT at compile time | |
1852 | when possible. | |
1853 | ||
94c72087 TP |
1854 | config BR2_PACKAGE_MODULE_INIT_TOOLS |
1855 | bool "module-init-tools replaced by kmod" | |
1856 | select BR2_PACKAGE_KMOD | |
1857 | select BR2_PACKAGE_KMOD_TOOLS | |
0f401f91 | 1858 | select BR2_LEGACY |
94c72087 TP |
1859 | help |
1860 | The 'module-init-tools' package has been removed, since it | |
1861 | has been depracated upstream and replaced by 'kmod'. | |
1862 | ||
f2c2193b TDS |
1863 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL |
1864 | string "u-boot: the git repository URL option has been renamed" | |
1865 | help | |
1866 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has | |
1867 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL. | |
1868 | ||
1869 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP | |
1870 | bool | |
1871 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != "" | |
1872 | select BR2_LEGACY | |
1873 | ||
1874 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from | |
1875 | # boot/uboot/Config.in | |
1876 | ||
1877 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION | |
1878 | string "u-boot: the git repository version option has been renamed" | |
1879 | help | |
1880 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has | |
1881 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION. | |
1882 | ||
1883 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP | |
1884 | bool | |
1885 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" | |
1886 | select BR2_LEGACY | |
1887 | ||
1888 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from | |
1889 | # boot/uboot/Config.in | |
1890 | ||
63ecded2 TDS |
1891 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL |
1892 | string "linux: the git repository URL option has been renamed" | |
1893 | help | |
1894 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has | |
1895 | been renamed to | |
1896 | BR2_LINUX_KERNEL_CUSTOM_REPO_URL. | |
1897 | ||
1898 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP | |
1899 | bool | |
1900 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != "" | |
1901 | select BR2_LEGACY | |
1902 | ||
1903 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from | |
1904 | # linux/Config.in | |
1905 | ||
1906 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION | |
1907 | string "linux: the git repository version option has been renamed" | |
1908 | help | |
1909 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has | |
1910 | been renamed to | |
1911 | BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION. | |
1912 | ||
1913 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP | |
1914 | bool | |
1915 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" | |
1916 | select BR2_LEGACY | |
1917 | ||
1918 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from | |
1919 | # linux/Config.in | |
1920 | ||
67eaf705 YM |
1921 | ############################################################################### |
1922 | comment "Legacy options removed in 2013.08" | |
c6e4fcb1 | 1923 | |
1f3078b1 TP |
1924 | config BR2_ARM_OABI |
1925 | bool "ARM OABI support has been removed" | |
1926 | select BR2_LEGACY | |
1927 | help | |
1928 | The support for the ARM OABI was deprecated since a while, | |
1929 | and has been removed completely from Buildroot. It is also | |
1930 | deprecated in upstream gcc, since gcc 4.7. People should | |
1931 | switch to EABI instead, which should not be a problem as | |
1932 | long as you don't have pre-built OABI binaries in your | |
1933 | system that you can't recompile. | |
1934 | ||
c6e4fcb1 GZ |
1935 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK |
1936 | bool "dosfstools dosfsck renamed to fsck.fat" | |
1937 | select BR2_LEGACY | |
1938 | select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT | |
1939 | help | |
1940 | dosfsck was renamed upstream to fsck.fat for consistency. | |
1941 | ||
1942 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL | |
1943 | bool "dosfstools dosfslabel renamed to fatlabel" | |
1944 | select BR2_LEGACY | |
1945 | select BR2_PACKAGE_DOSFSTOOLS_FATLABEL | |
1946 | help | |
1947 | doslabel was renamed upstream to fatlabel for consistency. | |
1948 | ||
1949 | config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS | |
1950 | bool "dosfstools mkdosfs renamed to mkfs.fat" | |
1951 | select BR2_LEGACY | |
1952 | select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT | |
1953 | help | |
1954 | mkdosfs was renamed upstream to mkfs.fat for consistency. | |
1955 | ||
e21db000 TP |
1956 | config BR2_ELF2FLT |
1957 | bool "the elf2flt option has been renamed" | |
1958 | select BR2_LEGACY | |
1959 | help | |
1960 | The BR2_ELF2FLT option has been renamed to | |
1961 | BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to | |
1962 | the package infrastructure. | |
1963 | ||
d806005b TP |
1964 | config BR2_VFP_FLOAT |
1965 | bool "the ARM VFP floating point option has been renamed" | |
1966 | select BR2_LEGACY | |
1967 | help | |
1968 | Due to a major refactoring of the floating-point handling of | |
1969 | the ARM architecture support, the BR2_VFP_FLOAT option has | |
1970 | been replaced with a choice of options that allows to select | |
1971 | between various VFP versions/capabilities. | |
1972 | ||
ba8f82b0 SM |
1973 | config BR2_PACKAGE_GCC_TARGET |
1974 | bool "gcc on the target filesystem has been removed" | |
1975 | select BR2_LEGACY | |
1976 | help | |
1977 | The support for gcc in the target filesystem was deprecated | |
1978 | since a while, and has been removed completely from Buildroot. | |
1979 | See Buildroot's documentation for more explanations. | |
1980 | ||
1981 | config BR2_HAVE_DEVFILES | |
1982 | bool "development files in target filesystem has been removed" | |
1983 | select BR2_LEGACY | |
1984 | help | |
1985 | The installation of the development files in the target | |
1986 | filesystem was deprecated since a while, and has been removed | |
1987 | completely from Buildroot. | |
1988 | See Buildroot's documentation for more explanations. | |
1989 | ||
67eaf705 YM |
1990 | ############################################################################### |
1991 | comment "Legacy options removed in 2013.05" | |
860d37a2 YM |
1992 | |
1993 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192 | |
1994 | bool "Realtek 8192 replaced by Realtek 81xx" | |
1995 | select BR2_LEGACY | |
1996 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX | |
1997 | help | |
1998 | Now covers the whole Realtek 81xx familly: 8188/8192. | |
1999 | ||
2000 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712 | |
2001 | bool "Realtek 8712 replaced by Realtek 87xx" | |
2002 | select BR2_LEGACY | |
2003 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX | |
2004 | help | |
2005 | Now covers the whole Realtek 87xx familly: 8712/8723. | |
2006 | ||
67eaf705 YM |
2007 | ############################################################################### |
2008 | comment "Legacy options removed in 2013.02" | |
29b83f05 | 2009 | |
9474421d GZ |
2010 | config BR2_sa110 |
2011 | bool "sa110 ARM target switched to strongarm" | |
2012 | select BR2_LEGACY | |
2013 | select BR2_strongarm | |
2014 | help | |
2015 | The SA110 is the same as a generic StrongARM, it just differs | |
2016 | in speed, peripherals and cache. | |
2017 | ||
2018 | config BR2_sa1100 | |
2019 | bool "sa1100 ARM target switched to strongarm" | |
2020 | select BR2_LEGACY | |
2021 | select BR2_strongarm | |
2022 | help | |
2023 | The SA1100 is the same as a generic StrongARM, it just differs | |
2024 | in speed, peripherals and cache. | |
2025 | ||
29b83f05 TP |
2026 | config BR2_PACKAGE_GDISK |
2027 | bool "gdisk has been replaced by gptfdisk" | |
2028 | select BR2_LEGACY | |
2029 | select BR2_PACKAGE_GPTFDISK | |
2030 | help | |
2031 | The option has been renamed BR2_PACKAGE_GPTFDISK. | |
2032 | ||
2033 | config BR2_PACKAGE_GDISK_GDISK | |
2034 | bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk" | |
2035 | select BR2_LEGACY | |
2036 | select BR2_PACKAGE_GPTFDISK | |
2037 | select BR2_PACKAGE_GPTFDISK_GDISK | |
2038 | help | |
2039 | The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK. | |
2040 | ||
2041 | config BR2_PACKAGE_GDISK_SGDISK | |
2042 | bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk" | |
2043 | select BR2_LEGACY | |
2044 | select BR2_PACKAGE_GPTFDISK | |
2045 | select BR2_PACKAGE_GPTFDISK_SGDISK | |
2046 | help | |
2047 | The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK. | |
ebcfa987 | 2048 | |
a0b6faaa TP |
2049 | config BR2_PACKAGE_GDB_HOST |
2050 | bool "gdb for the host option has been renamed" | |
2051 | select BR2_PACKAGE_HOST_GDB | |
2052 | select BR2_LEGACY | |
2053 | help | |
2054 | Due to the conversion of gdb to the package infrastructure, | |
2055 | the BR2_PACKAGE_GDB_HOST option has been renamed | |
2056 | BR2_PACKAGE_HOST_GDB. | |
2057 | ||
76de0f80 CS |
2058 | config BR2_PACKAGE_DIRECTB_DITHER_RGB16 |
2059 | bool "DirectFB RGB16 dithering option has been renamed" | |
2060 | select BR2_PACKAGE_DIRECTFB_DITHER_RGB16 | |
2061 | select BR2_LEGACY | |
2062 | help | |
2063 | The option has been renamed | |
2064 | BR2_PACKAGE_DIRECTFB_DITHER_RGB16. | |
2065 | ||
2066 | config BR2_PACKAGE_DIRECTB_TESTS | |
2067 | bool "DirectFB Tests option has been renamed" | |
2068 | select BR2_PACKAGE_DIRECTFB_TESTS | |
2069 | select BR2_LEGACY | |
2070 | help | |
2071 | The option has been renamed | |
2072 | BR2_PACKAGE_DIRECTFB_TESTS. | |
2073 | ||
67eaf705 YM |
2074 | ############################################################################### |
2075 | comment "Legacy options removed in 2012.11" | |
2076 | ||
12ccc43f TP |
2077 | config BR2_PACKAGE_CUSTOMIZE |
2078 | bool "customize package has been removed" | |
2079 | select BR2_LEGACY | |
2080 | help | |
2081 | The 'customize' special package has been removed. Instead, | |
2082 | we recommend to create either your own packages, or use a | |
2083 | post-build script to customize your root filesystem. See | |
2084 | Buildroot's documentation for more details. | |
2cd9121c AVEM |
2085 | |
2086 | config BR2_PACKAGE_XSERVER_xorg | |
2087 | bool "X.org modular server" | |
2088 | select BR2_LEGACY | |
2089 | select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR | |
2090 | help | |
2091 | The option has been renamed | |
2092 | BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR. | |
2093 | ||
2094 | config BR2_PACKAGE_XSERVER_tinyx | |
2095 | bool "KDrive / TinyX server" | |
2096 | select BR2_LEGACY | |
2097 | select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE | |
2098 | help | |
2099 | The option has been renamed | |
2100 | BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE. | |
2101 | ||
2102 | config BR2_PACKAGE_PTHREAD_STUBS | |
2103 | bool "pthread-stubs option has been renamed" | |
2104 | select BR2_LEGACY | |
5562be13 | 2105 | select BR2_PACKAGE_LIBPTHREAD_STUBS |
2cd9121c AVEM |
2106 | help |
2107 | For consistency reason, the pthread-stubs package has been | |
5562be13 | 2108 | renamed to libpthread-stubs. |
2cd9121c | 2109 | |
67eaf705 YM |
2110 | ############################################################################### |
2111 | comment "Legacy options removed in 2012.08" | |
ebcfa987 | 2112 | |
26803e88 AVEM |
2113 | config BR2_PACKAGE_GETTEXT_STATIC |
2114 | bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB" | |
2115 | select BR2_LEGACY | |
2116 | help | |
2117 | To build a static gettext library, select BR2_PREFER_STATIC_LIB. | |
2118 | ||
2119 | ||
2120 | config BR2_PACKAGE_LIBINTL | |
2121 | bool "libintl" | |
2122 | select BR2_LEGACY | |
2123 | select BR2_PACKAGE_GETTEXT | |
2124 | help | |
2125 | libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now | |
2126 | only installs the library, not the executables. | |
2127 | ||
c430fab2 AVEM |
2128 | config BR2_PACKAGE_INPUT_TOOLS_EVTEST |
2129 | bool "input-tools evtest is now a separate package evtest" | |
2130 | select BR2_LEGACY | |
2131 | select BR2_PACKAGE_EVTEST | |
2132 | help | |
2133 | The evtest program from input-tools is now a separate package. | |
2134 | ||
57133825 SZ |
2135 | config BR2_BFIN_FDPIC |
2136 | bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC" | |
2137 | select BR2_BINFMT_FDPIC | |
2138 | select BR2_LEGACY | |
2139 | ||
2140 | config BR2_BFIN_FLAT | |
2141 | bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT" | |
2142 | select BR2_BINFMT_FLAT | |
2143 | select BR2_LEGACY | |
2144 | ||
a91a5c16 | 2145 | endmenu |
53903a15 AV |
2146 | |
2147 | endif # !SKIP_LEGACY |