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