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