]>
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 GZ |
107 | ############################################################################### |
108 | comment "Legacy options removed in 2015.08" | |
109 | ||
9d9f1a92 BK |
110 | config BR2_PACKAGE_KODI_PVR_ADDONS |
111 | bool "Kodi PVR addon was split" | |
112 | select BR2_LEGACY | |
2579ec20 | 113 | select BR2_PACKAGE_KODI_PVR_ARGUSTV |
9d9f1a92 BK |
114 | help |
115 | Kodi PVR addon was split into seperate modules | |
116 | ||
f84cc202 GZ |
117 | config BR2_BINUTILS_VERSION_2_23_2 |
118 | bool "binutils 2.23 option renamed" | |
119 | select BR2_LEGACY | |
120 | select BR2_BINUTILS_VERSION_2_23_X | |
121 | help | |
122 | The binutils version option has been renamed to match the | |
123 | same patchlevel logic used by gcc. The new option is now | |
124 | BR2_BINUTILS_VERSION_2_23_X. | |
125 | ||
126 | config BR2_BINUTILS_VERSION_2_24 | |
127 | bool "binutils 2.24 option renamed" | |
128 | select BR2_LEGACY | |
129 | select BR2_BINUTILS_VERSION_2_24_X | |
130 | help | |
131 | The binutils version option has been renamed to match the | |
132 | same patchlevel logic used by gcc. The new option is now | |
133 | BR2_BINUTILS_VERSION_2_24_X. | |
134 | ||
135 | config BR2_BINUTILS_VERSION_2_25 | |
136 | bool "binutils 2.25 option renamed" | |
137 | select BR2_LEGACY | |
138 | select BR2_BINUTILS_VERSION_2_25_X | |
139 | help | |
140 | The binutils version option has been renamed to match the | |
141 | same patchlevel logic used by gcc. The new option is now | |
142 | BR2_BINUTILS_VERSION_2_25_X. | |
143 | ||
1326e761 RN |
144 | config BR2_PACKAGE_PERF |
145 | bool "perf option has been renamed" | |
146 | select BR2_LEGACY | |
147 | select BR2_LINUX_KERNEL_TOOL_PERF | |
148 | help | |
149 | The perf package has been moved as a Linux tools package, | |
150 | and the option to enable it is now | |
151 | BR2_LINUX_KERNEL_TOOL_PERF. | |
152 | ||
2f845953 TP |
153 | config BR2_BINUTILS_VERSION_2_22 |
154 | bool "binutils 2.22 removed" | |
155 | select BR2_LEGACY | |
156 | help | |
157 | Binutils 2.22 has been removed, using a newer version is | |
158 | recommended. | |
159 | ||
4c0613e7 GB |
160 | config BR2_PACKAGE_GPU_VIV_BIN_MX6Q |
161 | bool "gpu-viv-bin-mx6q" | |
162 | select BR2_LEGACY | |
163 | select BR2_PACKAGE_IMX_GPU_VIV | |
164 | help | |
165 | Vivante graphics libraries have been renamed to | |
166 | BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package | |
167 | name. | |
168 | ||
7742abe0 MW |
169 | config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS |
170 | depends on BR2_PACKAGE_PYTHON | |
171 | bool "libsemanage python bindings removed" | |
172 | help | |
173 | This option has been removed, since the libsemanage Python | |
174 | bindings on the target were not useful. | |
175 | ||
16b8e813 GZ |
176 | config BR2_TARGET_UBOOT_NETWORK |
177 | bool "U-Boot custom network settings removed" | |
178 | select BR2_LEGACY | |
179 | help | |
180 | U-Boot's custom network settings options have been removed. | |
181 | ||
a9043951 SM |
182 | config BR2_PACKAGE_OPENCV_LIB_CONTRIB |
183 | bool "opencv contrib module no longer exists" | |
184 | select BR2_LEGACY | |
185 | help | |
186 | OpenCV >=3.0 does not come with in-tree contrib modules. | |
187 | ||
188 | They have been moved out of the OpenCV base tree, into the opencv_contrib | |
189 | repository: | |
190 | https://github.com/Itseez/opencv_contrib | |
191 | ||
192 | config BR2_PACKAGE_OPENCV_LIB_GPU | |
193 | bool "opencv gpu module no longer exists" | |
194 | select BR2_LEGACY | |
195 | help | |
196 | opencv_gpu module no longer exists as is in OpenCV >=3.0. | |
197 | ||
198 | It has been split into several modules prefixed with "cuda" that require | |
199 | Cuda programming toolkit, which is not available in Buildroot. So cuda | |
200 | modules are forcibly disabled in Buildroot. | |
201 | ||
202 | config BR2_PACKAGE_OPENCV_LIB_LEGACY | |
203 | bool "opencv legacy module no longer exists" | |
204 | select BR2_LEGACY | |
205 | help | |
206 | opencv_legacy module no longer exists in OpenCV >=3.0. | |
207 | ||
208 | config BR2_PACKAGE_OPENCV_LIB_NONFREE | |
209 | bool "opencv nonfree module no longer exists" | |
210 | select BR2_LEGACY | |
211 | help | |
212 | opencv_nonfree module no longer exists in OpenCV >=3.0. | |
213 | ||
120136ee | 214 | ############################################################################### |
fd0e5f6b | 215 | comment "Legacy options removed in 2015.05" |
665e13c8 | 216 | |
e3904a89 ML |
217 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K |
218 | bool "jffs2 16kB erasesize NAND flash option renamed" | |
219 | select BR2_LEGACY | |
220 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K | |
221 | help | |
222 | The JFFS2 NAND flash options now longer include the page | |
223 | size. | |
224 | ||
225 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K | |
226 | bool "jffs2 128kB erasesize NAND flash option renamed" | |
227 | select BR2_LEGACY | |
228 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K | |
229 | help | |
230 | The JFFS2 NAND flash options now longer include the page | |
231 | size. | |
232 | ||
eff7c144 AC |
233 | config BR2_PACKAGE_MONO_20 |
234 | bool "2.0/3.5 .Net Runtime" | |
235 | select BR2_LEGACY | |
236 | help | |
237 | This option no longer exists, all versions of the .Net | |
238 | runtime are now installed. | |
239 | ||
240 | config BR2_PACKAGE_MONO_40 | |
241 | bool "4.0 .Net Runtime" | |
242 | select BR2_LEGACY | |
243 | help | |
244 | This option no longer exists, all versions of the .Net | |
245 | runtime are now installed. | |
246 | ||
247 | config BR2_PACKAGE_MONO_45 | |
248 | bool "4.5 .Net Runtime" | |
249 | select BR2_LEGACY | |
250 | help | |
251 | This option no longer exists, all versions of the .Net | |
252 | runtime are now installed. | |
253 | ||
efd49e33 PK |
254 | config BR2_CIVETWEB_WITH_LUA |
255 | bool "civetweb lua option renamed" | |
256 | select BR2_LEGACY | |
257 | select BR2_PACKAGE_CIVETWEB_WITH_LUA | |
258 | help | |
259 | civetweb's lua option has been renamed to | |
260 | BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other | |
261 | packages name options. | |
262 | ||
e6c7ad17 BK |
263 | config BR2_PACKAGE_TIFF_TIFF2PDF |
264 | bool "tiff utility-specific option removed" | |
265 | select BR2_LEGACY | |
266 | select BR2_PACKAGE_TIFF_UTILITIES | |
267 | help | |
268 | utility-specific options have been removed in favour of | |
269 | the new option BR2_PACKAGE_TIFF_UTILITIES. | |
270 | ||
271 | config BR2_PACKAGE_TIFF_TIFFCP | |
272 | bool "tiff utility-specific option removed" | |
273 | select BR2_LEGACY | |
274 | select BR2_PACKAGE_TIFF_UTILITIES | |
275 | help | |
276 | utility-specific options have been removed in favour of | |
277 | the new option BR2_PACKAGE_TIFF_UTILITIES. | |
278 | ||
e7035d4e TP |
279 | config BR2_LINUX_KERNEL_EXT_RTAI_PATCH |
280 | bool "RTAI patch file path has been removed" | |
281 | help | |
282 | This option has never worked, so it has been removed. | |
283 | ||
02917961 YM |
284 | config BR2_TARGET_GENERIC_PASSWD_DES |
285 | bool "Encoding passwords with DES has been removed" | |
286 | select BR2_LEGACY | |
287 | help | |
288 | Paswords can now only be encoded with either of md5, sha256 or sha512. | |
289 | The default is md5, which is stronger that DES (but still pretty weak). | |
290 | ||
0d31b5e4 GZ |
291 | config BR2_PACKAGE_GTK2_THEME_HICOLOR |
292 | bool "hicolor (default theme) is a duplicate" | |
293 | select BR2_LEGACY | |
294 | select BR2_PACKAGE_HICOLOR_ICON_THEME | |
295 | help | |
296 | The option was just a duplicate of hicolor icon theme. | |
297 | ||
fd0e5f6b MW |
298 | config BR2_PACKAGE_VALGRIND_PTRCHECK |
299 | bool "valgrind's PTRCheck was renamed to SGCheck" | |
300 | select BR2_LEGACY | |
301 | select BR2_PACKAGE_VALGRIND_SGCHECK | |
302 | help | |
303 | PTRCheck was renamed to SGCheck in valgrind | |
304 | ||
305 | ############################################################################### | |
665e13c8 TP |
306 | comment "Legacy options removed in 2015.02" |
307 | ||
10900c07 PA |
308 | config BR2_PACKAGE_LIBGC |
309 | bool "libgc package removed" | |
310 | select BR2_LEGACY | |
311 | select BR2_PACKAGE_BDWGC | |
312 | help | |
313 | libgc has been removed because we have the same package under a | |
314 | different name, bdwgc. | |
315 | ||
8d702aca YM |
316 | config BR2_PACKAGE_WDCTL |
317 | bool "util-linux' wdctl option has been renamed" | |
318 | select BR2_LEGACY | |
319 | select BR2_PACKAGE_UTIL_LINUX_WDCTL | |
320 | help | |
321 | util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL | |
322 | to be aligned with how the other options are named. | |
323 | ||
3c476540 RN |
324 | config BR2_PACKAGE_RPM_BZIP2_PAYLOADS |
325 | bool "rpm's bzip2 payloads option has been removed" | |
326 | select BR2_LEGACY | |
327 | select BR2_PACKAGE_BZIP2 | |
328 | help | |
329 | The bzip2 payloads option rely entirely on the dependant package bzip2. | |
330 | So, you need to select it to enable this feature. | |
331 | ||
332 | config BR2_PACKAGE_RPM_XZ_PAYLOADS | |
333 | bool "rpm's xz payloads option has been removed" | |
334 | select BR2_LEGACY | |
335 | select BR2_PACKAGE_XZ | |
336 | help | |
337 | The xz payloads option rely entirely on the dependant package xz. | |
338 | So, you need to select it to enable this feature. | |
339 | ||
6927bc91 GZ |
340 | config BR2_PACKAGE_M4 |
341 | bool "m4 target package removed" | |
342 | select BR2_LEGACY | |
343 | help | |
344 | The m4 target package has been removed, it's been | |
345 | deprecated for some time now. | |
346 | ||
aa6ea7ab GZ |
347 | config BR2_PACKAGE_FLEX_BINARY |
348 | bool "flex binary in target option removed" | |
349 | select BR2_LEGACY | |
350 | help | |
351 | The flex binary in the target option has been removed. | |
352 | It's been deprecated for some time now and is essentially a | |
353 | development tool which isn't very useful in the target. | |
354 | ||
38dabc6e GZ |
355 | config BR2_PACKAGE_BISON |
356 | bool "bison target package removed" | |
357 | select BR2_LEGACY | |
358 | help | |
359 | The bison target package has been removed, it's been | |
360 | deprecated for some time now and is essentially a development | |
361 | tool which isn't very useful in the target. | |
362 | ||
7f9d4441 GZ |
363 | config BR2_PACKAGE_GOB2 |
364 | bool "gob2 target package removed" | |
365 | select BR2_LEGACY | |
366 | help | |
367 | The gob2 target package has been removed, it's been | |
368 | deprecated for some time now and was essentially useless | |
369 | without a target toolchain. | |
370 | ||
c2e3d0be GZ |
371 | config BR2_PACKAGE_DISTCC |
372 | bool "distcc target package removed" | |
373 | select BR2_LEGACY | |
374 | help | |
375 | The distcc target package has been removed, it's been | |
376 | deprecated for some time now and was essentially useless | |
377 | without a target toolchain. | |
378 | ||
b64cde60 GZ |
379 | config BR2_PACKAGE_HASERL_VERSION_0_8_X |
380 | bool "haserl 0.8.x version removed" | |
381 | select BR2_LEGACY | |
382 | help | |
383 | The 0.8.x version option for haserl has been removed since it | |
384 | has been deprecated for some time now. | |
385 | You should be able to use the 0.9.x version without issues. | |
386 | ||
0120d9f3 GZ |
387 | config BR2_PACKAGE_STRONGSWAN_TOOLS |
388 | bool "strongswan option has been removed" | |
389 | select BR2_LEGACY | |
390 | select BR2_PACKAGE_STRONGSWAN_PKI | |
391 | select BR2_PACKAGE_STRONGSWAN_SCEP | |
392 | help | |
393 | The tools option has been removed upstream and the different tools | |
394 | have been split between the pki and scep options, with others | |
395 | deprecated. | |
396 | ||
db78eb07 BK |
397 | config BR2_PACKAGE_XBMC_ADDON_XVDR |
398 | bool "xbmc options have been renamed" | |
399 | select BR2_LEGACY | |
400 | select BR2_PACKAGE_KODI_ADDON_XVDR | |
401 | help | |
402 | The XBMC media center project was renamed to Kodi entertainment center | |
403 | ||
b3df2a35 BK |
404 | config BR2_PACKAGE_XBMC_PVR_ADDONS |
405 | bool "xbmc options have been renamed" | |
406 | select BR2_LEGACY | |
407 | select BR2_PACKAGE_KODI_PVR_ADDONS | |
408 | help | |
409 | The XBMC media center project was renamed to Kodi entertainment center | |
410 | ||
35784597 BK |
411 | config BR2_PACKAGE_XBMC |
412 | bool "xbmc options have been renamed" | |
413 | select BR2_LEGACY | |
414 | select BR2_PACKAGE_KODI | |
415 | help | |
416 | The XBMC media center project was renamed to Kodi entertainment center | |
417 | ||
418 | config BR2_PACKAGE_XBMC_ALSA_LIB | |
419 | bool "xbmc options have been renamed" | |
420 | select BR2_LEGACY | |
421 | select BR2_PACKAGE_KODI_ALSA_LIB | |
422 | help | |
423 | The XBMC media center project was renamed to Kodi entertainment center | |
424 | ||
425 | config BR2_PACKAGE_XBMC_AVAHI | |
426 | bool "xbmc options have been renamed" | |
427 | select BR2_LEGACY | |
428 | select BR2_PACKAGE_KODI_AVAHI | |
429 | help | |
430 | The XBMC media center project was renamed to Kodi entertainment center | |
431 | ||
432 | config BR2_PACKAGE_XBMC_DBUS | |
433 | bool "xbmc options have been renamed" | |
434 | select BR2_LEGACY | |
435 | select BR2_PACKAGE_KODI_DBUS | |
436 | help | |
437 | The XBMC media center project was renamed to Kodi entertainment center | |
438 | ||
439 | config BR2_PACKAGE_XBMC_LIBBLURAY | |
440 | bool "xbmc options have been renamed" | |
441 | select BR2_LEGACY | |
442 | select BR2_PACKAGE_KODI_LIBBLURAY | |
443 | help | |
444 | The XBMC media center project was renamed to Kodi entertainment center | |
445 | ||
446 | config BR2_PACKAGE_XBMC_GOOM | |
447 | bool "xbmc options have been renamed" | |
448 | select BR2_LEGACY | |
449 | select BR2_PACKAGE_KODI_GOOM | |
450 | help | |
451 | The XBMC media center project was renamed to Kodi entertainment center | |
452 | ||
453 | config BR2_PACKAGE_XBMC_RSXS | |
454 | bool "xbmc options have been renamed" | |
455 | select BR2_LEGACY | |
456 | select BR2_PACKAGE_KODI_RSXS | |
457 | help | |
458 | The XBMC media center project was renamed to Kodi entertainment center | |
459 | ||
460 | config BR2_PACKAGE_XBMC_LIBCEC | |
461 | bool "xbmc options have been renamed" | |
462 | select BR2_LEGACY | |
463 | select BR2_PACKAGE_KODI_LIBCEC | |
464 | help | |
465 | The XBMC media center project was renamed to Kodi entertainment center | |
466 | ||
467 | config BR2_PACKAGE_XBMC_LIBMICROHTTPD | |
468 | bool "xbmc options have been renamed" | |
469 | select BR2_LEGACY | |
470 | select BR2_PACKAGE_KODI_LIBMICROHTTPD | |
471 | help | |
472 | The XBMC media center project was renamed to Kodi entertainment center | |
473 | ||
474 | config BR2_PACKAGE_XBMC_LIBNFS | |
475 | bool "xbmc options have been renamed" | |
476 | select BR2_LEGACY | |
477 | select BR2_PACKAGE_KODI_LIBNFS | |
478 | help | |
479 | The XBMC media center project was renamed to Kodi entertainment center | |
480 | ||
481 | config BR2_PACKAGE_XBMC_RTMPDUMP | |
482 | bool "xbmc options have been renamed" | |
483 | select BR2_LEGACY | |
484 | select BR2_PACKAGE_KODI_RTMPDUMP | |
485 | help | |
486 | The XBMC media center project was renamed to Kodi entertainment center | |
487 | ||
488 | config BR2_PACKAGE_XBMC_LIBSHAIRPLAY | |
489 | bool "xbmc options have been renamed" | |
490 | select BR2_LEGACY | |
491 | select BR2_PACKAGE_KODI_LIBSHAIRPLAY | |
492 | help | |
493 | The XBMC media center project was renamed to Kodi entertainment center | |
494 | ||
495 | config BR2_PACKAGE_XBMC_LIBSMBCLIENT | |
496 | bool "xbmc options have been renamed" | |
497 | select BR2_LEGACY | |
498 | select BR2_PACKAGE_KODI_LIBSMBCLIENT | |
499 | help | |
500 | The XBMC media center project was renamed to Kodi entertainment center | |
501 | ||
502 | config BR2_PACKAGE_XBMC_LIBTHEORA | |
503 | bool "xbmc options have been renamed" | |
504 | select BR2_LEGACY | |
505 | select BR2_PACKAGE_KODI_LIBTHEORA | |
506 | help | |
507 | The XBMC media center project was renamed to Kodi entertainment center | |
508 | ||
509 | config BR2_PACKAGE_XBMC_LIBUSB | |
510 | bool "xbmc options have been renamed" | |
511 | select BR2_LEGACY | |
512 | select BR2_PACKAGE_KODI_LIBUSB | |
513 | help | |
514 | The XBMC media center project was renamed to Kodi entertainment center | |
515 | ||
516 | config BR2_PACKAGE_XBMC_LIBVA | |
517 | bool "xbmc options have been renamed" | |
518 | select BR2_LEGACY | |
519 | select BR2_PACKAGE_KODI_LIBVA | |
520 | help | |
521 | The XBMC media center project was renamed to Kodi entertainment center | |
522 | ||
523 | config BR2_PACKAGE_XBMC_WAVPACK | |
524 | bool "xbmc options have been renamed" | |
525 | select BR2_LEGACY | |
526 | select BR2_PACKAGE_KODI_WAVPACK | |
527 | help | |
528 | The XBMC media center project was renamed to Kodi entertainment center | |
529 | ||
665e13c8 TP |
530 | config BR2_PREFER_STATIC_LIB |
531 | bool "static library option renamed" | |
a44b1c14 | 532 | select BR2_LEGACY |
665e13c8 TP |
533 | help |
534 | The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It | |
535 | highlights the fact that the option no longer "prefers" | |
536 | static libraries, but "enforces" static libraries (i.e | |
537 | shared libraries are completely unused). | |
538 | ||
a44b1c14 SM |
539 | Take care of updating the type of libraries you want under the |
540 | "Build options" menu. | |
541 | ||
35784597 | 542 | ############################################################################### |
120136ee YM |
543 | comment "Legacy options removed in 2014.11" |
544 | ||
a52bad85 PK |
545 | config BR2_x86_generic |
546 | bool "x86 generic variant has been removed" | |
547 | select BR2_LEGACY | |
548 | help | |
549 | The generic x86 CPU variant has been removed. Use another | |
a95e98c0 | 550 | CPU variant instead. |
a52bad85 | 551 | |
40e18f29 AL |
552 | config BR2_GCC_VERSION_4_4_X |
553 | bool "gcc 4.4.x has been removed" | |
554 | select BR2_LEGACY | |
555 | help | |
556 | The 4.4.x version of gcc has been removed. Use a newer | |
557 | version instead. | |
558 | ||
43b78e72 AL |
559 | config BR2_sparc_sparchfleon |
560 | bool "sparchfleon CPU has been removed" | |
561 | select BR2_LEGACY | |
562 | help | |
563 | The sparchfleon CPU was only supported in a patched gcc 4.4 | |
564 | version. Its support has been removed in favor of the leon3 | |
565 | CPU starting from gcc 4.8.x. | |
566 | ||
567 | config BR2_sparc_sparchfleonv8 | |
568 | bool "sparchfleonv8 CPU has been removed" | |
569 | select BR2_LEGACY | |
570 | help | |
571 | The sparchfleonv8 CPU was only supported in a patched gcc | |
572 | 4.4 version. Its support has been removed in favor of the | |
573 | leon3 CPU starting from gcc 4.8.x. | |
574 | ||
575 | config BR2_sparc_sparcsfleon | |
576 | bool "sparcsfleon CPU has been removed" | |
577 | select BR2_LEGACY | |
578 | help | |
579 | The sparcsfleon CPU was only supported in a patched gcc 4.4 | |
580 | version. Its support has been removed in favor of the leon3 | |
581 | CPU starting from gcc 4.8.x. | |
582 | ||
583 | config BR2_sparc_sparcsfleonv8 | |
584 | bool "sparcsfleonv8 CPU has been removed" | |
585 | select BR2_LEGACY | |
586 | help | |
587 | The sparcsfleonv8 CPU was only supported in a patched gcc | |
588 | 4.4 version. Its support has been removed in favor of the | |
589 | leon3 CPU starting from gcc 4.8.x. | |
590 | ||
bfd87877 BK |
591 | config BR2_PACKAGE_XLIB_LIBPCIACCESS |
592 | bool "xlib-libpciaccess option has been renamed" | |
593 | depends on BR2_PACKAGE_XORG7 | |
594 | select BR2_LEGACY | |
595 | select BR2_PACKAGE_LIBPCIACCESS | |
596 | help | |
597 | libpciaccess neither depends on X11 nor Xlib. Thus the | |
598 | package has been renamed BR2_PACKAGE_LIBPCIACCESS | |
599 | ||
b581bba9 YM |
600 | config BR2_PACKAGE_LINUX_FIRMWARE_XC5000 |
601 | bool "Xceive xc5000 option has been renamed" | |
602 | select BR2_PACKAGE_LINUX_FIRMWARE_XCx000 | |
603 | help | |
604 | The Xceive xc5000 option now also handles older firmwares from | |
605 | Xceive (the xc4000 series), as well as new firmwares (the xc5000c) | |
606 | from Cresta, who bought Xceive. | |
607 | ||
dac546e9 YM |
608 | config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 |
609 | bool "Chelsio T4 option has been renamed" | |
610 | select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 | |
611 | help | |
612 | The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 | |
613 | has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 | |
614 | to better account for the fact that a T5 variant exists. | |
615 | ||
120136ee YM |
616 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 |
617 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed" | |
618 | help | |
619 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was | |
620 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must | |
621 | select it in: | |
622 | Target packages -> Hardware handling -> | |
623 | Firmware -> linux-firmware -> WiFi firmware -> | |
624 | iwlwifi 3160/726x revision to use (revision 7) | |
625 | ||
626 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 | |
627 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed" | |
628 | help | |
629 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was | |
630 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must | |
631 | select it in: | |
632 | Target packages -> Hardware handling -> | |
633 | Firmware -> linux-firmware -> WiFi firmware -> | |
634 | iwlwifi 3160/726x revision to use (revision 8) | |
635 | ||
5cd1c4fe YM |
636 | ############################################################################### |
637 | comment "Legacy options removed in 2014.08" | |
638 | ||
52fac6a2 GC |
639 | config BR2_PACKAGE_LIBELF |
640 | bool "libelf has been removed" | |
641 | select BR2_PACKAGE_ELFUTILS | |
642 | select BR2_LEGACY | |
643 | help | |
644 | The libelf package provided an old version of the libelf library | |
645 | and is deprecated. The libelf library is now provided by the | |
646 | elfutils package. | |
647 | ||
dfae6f67 TDS |
648 | config BR2_KERNEL_HEADERS_3_8 |
649 | bool "kernel headers version 3.8.x are no longer supported" | |
650 | select BR2_KERNEL_HEADERS_3_9 | |
651 | select BR2_LEGACY | |
652 | help | |
653 | Version 3.8.x of the Linux kernel headers have been deprecated | |
654 | for more than four buildroot releases and are now removed. | |
655 | As an alternative, version 3.9.x of the headers have been | |
656 | automatically selected in your configuration. | |
657 | ||
187b4d68 TP |
658 | config BR2_PACKAGE_GETTEXT_TOOLS |
659 | bool "support for gettext-tools on target has been removed" | |
660 | select BR2_LEGACY | |
661 | help | |
662 | The option to install the gettext utilities on the target | |
663 | has been removed. This is not necessary as Buildroot is not | |
664 | designed to provide a full development environment on the | |
665 | target. gettext tools should be used on the build machine | |
666 | instead. | |
667 | ||
5cd1c4fe YM |
668 | config BR2_PACKAGE_PROCPS |
669 | bool "procps has been replaced by procps-ng" | |
670 | select BR2_PACKAGE_PROCPS_NG | |
671 | select BR2_LEGACY | |
672 | help | |
673 | The procps package has been replaced by the equivalent procps-ng. | |
674 | ||
d4839ffc TP |
675 | config BR2_BINUTILS_VERSION_2_20_1 |
676 | bool "binutils 2.20.1 has been removed" | |
677 | select BR2_LEGACY | |
678 | help | |
679 | The 2.20.1 version of binutils has been removed. Use a newer | |
680 | version instead. | |
681 | ||
682 | config BR2_BINUTILS_VERSION_2_21 | |
683 | bool "binutils 2.21 has been removed" | |
684 | select BR2_LEGACY | |
685 | help | |
686 | The 2.21 version of binutils has been removed. Use a newer | |
687 | version instead. | |
688 | ||
689 | config BR2_BINUTILS_VERSION_2_23_1 | |
690 | bool "binutils 2.23.1 has been removed" | |
691 | select BR2_LEGACY | |
692 | help | |
693 | The 2.23.1 version of binutils has been removed. Use a newer | |
694 | version instead. | |
695 | ||
506b964d TP |
696 | config BR2_UCLIBC_VERSION_0_9_32 |
697 | bool "uclibc 0.9.32 has been removed" | |
698 | select BR2_LEGACY | |
699 | help | |
700 | The 0.9.32 version of uClibc has been removed. Use a newer | |
701 | version instead. | |
702 | ||
d10e0805 TP |
703 | config BR2_GCC_VERSION_4_3_X |
704 | bool "gcc 4.3.x has been removed" | |
705 | select BR2_LEGACY | |
706 | help | |
707 | The 4.3.x version of gcc has been removed. Use a newer | |
708 | version instead. | |
709 | ||
710 | config BR2_GCC_VERSION_4_6_X | |
711 | bool "gcc 4.6.x has been removed" | |
712 | select BR2_LEGACY | |
713 | help | |
714 | The 4.6.x version of gcc has been removed. Use a newer | |
715 | version instead. | |
716 | ||
02d85f65 TP |
717 | config BR2_GDB_VERSION_7_4 |
718 | bool "gdb 7.4 has been removed" | |
719 | select BR2_LEGACY | |
720 | help | |
721 | The 7.4 version of gdb has been removed. Use a newer version | |
722 | instead. | |
723 | ||
724 | config BR2_GDB_VERSION_7_5 | |
725 | bool "gdb 7.5 has been removed" | |
726 | select BR2_LEGACY | |
727 | help | |
728 | The 7.5 version of gdb has been removed. Use a newer version | |
729 | instead. | |
730 | ||
b18dca0d TP |
731 | config BR2_BUSYBOX_VERSION_1_19_X |
732 | bool "busybox version selection has been removed" | |
733 | select BR2_LEGACY | |
734 | help | |
735 | The possibility of selecting the Busybox version has been | |
736 | removed. Use the latest version provided by the Busybox | |
737 | package instead. | |
738 | ||
739 | config BR2_BUSYBOX_VERSION_1_20_X | |
740 | bool "busybox version selection has been removed" | |
741 | select BR2_LEGACY | |
742 | help | |
743 | The possibility of selecting the Busybox version has been | |
744 | removed. Use the latest version provided by the Busybox | |
745 | package instead. | |
746 | ||
747 | config BR2_BUSYBOX_VERSION_1_21_X | |
748 | bool "busybox version selection has been removed" | |
749 | select BR2_LEGACY | |
750 | help | |
751 | The possibility of selecting the Busybox version has been | |
752 | removed. Use the latest version provided by the Busybox | |
753 | package instead. | |
754 | ||
07ac0456 EG |
755 | config BR2_PACKAGE_LIBV4L_DECODE_TM6000 |
756 | bool "decode_tm6000" | |
757 | select BR2_PACKAGE_LIBV4L_UTILS | |
758 | select BR2_LEGACY | |
759 | help | |
760 | This libv4l option has been deprecated and replaced by a single | |
761 | option to build all the libv4l utilities. | |
762 | ||
763 | config BR2_PACKAGE_LIBV4L_IR_KEYTABLE | |
764 | bool "ir-keytable" | |
765 | select BR2_PACKAGE_LIBV4L_UTILS | |
766 | select BR2_LEGACY | |
767 | help | |
768 | This libv4l option has been deprecated and replaced by a single | |
769 | option to build all the libv4l utilities. | |
770 | ||
771 | config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE | |
772 | bool "v4l2-compliance" | |
773 | select BR2_PACKAGE_LIBV4L_UTILS | |
774 | select BR2_LEGACY | |
775 | help | |
776 | This libv4l option has been deprecated and replaced by a single | |
777 | option to build all the libv4l utilities. | |
778 | ||
779 | config BR2_PACKAGE_LIBV4L_V4L2_CTL | |
780 | bool "v4l2-ctl" | |
781 | select BR2_PACKAGE_LIBV4L_UTILS | |
782 | select BR2_LEGACY | |
783 | help | |
784 | This libv4l option has been deprecated and replaced by a single | |
785 | option to build all the libv4l utilities. | |
786 | ||
787 | config BR2_PACKAGE_LIBV4L_V4L2_DBG | |
788 | bool "v4l2-dbg" | |
789 | select BR2_PACKAGE_LIBV4L_UTILS | |
790 | select BR2_LEGACY | |
791 | help | |
792 | This libv4l option has been deprecated and replaced by a single | |
793 | option to build all the libv4l utilities. | |
794 | ||
fabcb119 | 795 | ############################################################################### |
796 | comment "Legacy options removed in 2014.05" | |
797 | ||
4990a381 PS |
798 | config BR2_PACKAGE_EVTEST_CAPTURE |
799 | bool "evtest-capture support removed (dropped since evtest 1.31)" | |
800 | select BR2_LEGACY | |
801 | help | |
802 | Support for evtest-capture has been removed (dropped from | |
803 | evtest package since version 1.31), use evemu package | |
804 | instead. | |
805 | ||
47c2d1b4 TDS |
806 | config BR2_KERNEL_HEADERS_3_6 |
807 | bool "kernel headers version 3.6.x are no longer supported" | |
dfae6f67 | 808 | select BR2_KERNEL_HEADERS_3_9 |
47c2d1b4 TDS |
809 | select BR2_LEGACY |
810 | help | |
811 | Version 3.6.x of the Linux kernel headers have been deprecated | |
812 | for more than four buildroot releases and are now removed. | |
813 | As an alternative, version 3.8.x of the headers have been | |
814 | automatically selected in your configuration. | |
815 | ||
816 | config BR2_KERNEL_HEADERS_3_7 | |
817 | bool "kernel headers version 3.7.x are no longer supported" | |
dfae6f67 | 818 | select BR2_KERNEL_HEADERS_3_9 |
47c2d1b4 TDS |
819 | select BR2_LEGACY |
820 | help | |
821 | Version 3.7.x of the Linux kernel headers have been deprecated | |
822 | for more than four buildroot releases and are now removed. | |
823 | As an alternative, version 3.8.x of the headers have been | |
824 | automatically selected in your configuration. | |
825 | ||
947ca9e1 TDS |
826 | config BR2_PACKAGE_VALA |
827 | bool "vala target package has been removed" | |
828 | select BR2_LEGACY | |
829 | help | |
830 | The 'vala' target package has been removed since it has been | |
831 | deprecated for more than four buildroot releases. | |
832 | Note: the host vala package still exists. | |
833 | ||
d6a37917 YM |
834 | config BR2_TARGET_TZ_ZONELIST |
835 | default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != "" | |
836 | ||
837 | config BR2_PACKAGE_TZDATA_ZONELIST | |
838 | string "tzdata: the timezone list option has been renamed" | |
839 | help | |
840 | The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to | |
841 | BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration" | |
842 | menu. You'll need to select BR2_TARGET_TZ_INFO. | |
843 | ||
844 | config BR2_PACKAGE_TZDATA_ZONELIST_WRAP | |
845 | bool | |
846 | default y if BR2_PACKAGE_TZDATA_ZONELIST != "" | |
847 | select BR2_LEGACY | |
848 | ||
c97aeb7e YM |
849 | config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE |
850 | bool "Lua command-line editing none has been renamed" | |
851 | select BR2_LEGACY | |
852 | help | |
853 | The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been | |
854 | renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select | |
855 | it in the corresponding choice. | |
856 | ||
857 | config BR2_PACKAGE_LUA_INTERPRETER_READLINE | |
858 | bool "Lua command-line editing using readline has been renamed" | |
859 | select BR2_LEGACY | |
860 | help | |
861 | The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been | |
862 | renamed to BR2_PACKAGE_LUA_READLINE. You will have to select | |
863 | it in the corresponding choice. | |
864 | ||
865 | config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE | |
866 | bool "Lua command-line editing using linenoise has been renamed" | |
867 | select BR2_LEGACY | |
868 | help | |
869 | The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been | |
870 | renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select | |
871 | it in the corresponding choice. | |
872 | ||
365ae61c YM |
873 | config BR2_PACKAGE_DVB_APPS_UTILS |
874 | bool "dvb-apps utilities now built by default" | |
875 | select BR2_LEGACY | |
876 | help | |
877 | The dvb-apps utilities are now always built when the dvb-apps | |
878 | package is selected. | |
879 | ||
971e331c YM |
880 | config BR2_KERNEL_HEADERS_SNAP |
881 | bool "Local Linux snapshot support removed" | |
882 | select BR2_LEGACY | |
883 | help | |
884 | Support for using a custom snapshot to install the Linux | |
885 | kernel headers has been removed. | |
886 | ||
fabcb119 | 887 | config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV |
888 | bool "/dev management by udev removed" | |
889 | select BR2_LEGACY | |
890 | help | |
891 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 892 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 893 | |
2c66e442 | 894 | Therefore, if you are not using 'systemd' as init system, you |
895 | must choose 'Dynamic using eudev' in the '/dev management' | |
896 | menu to get the same behaviour as in your old configuration. | |
897 | ||
898 | If you are using 'systemd', its internal implementation of | |
899 | 'udev' will be used automatically. | |
fabcb119 | 900 | |
901 | You must also check the packages depending on 'udev' are still | |
902 | selected. | |
903 | ||
904 | config BR2_PACKAGE_UDEV | |
905 | bool "udev is now a virtual package" | |
906 | select BR2_LEGACY | |
907 | select BR2_PACKAGE_HAS_UDEV | |
908 | help | |
909 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 910 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 911 | |
912 | Your old configuration refers to packages depending on 'udev', | |
913 | either for build or at runtime. | |
914 | ||
2c66e442 | 915 | Check that a 'udev' provider is selected. If you are not using |
916 | 'systemd' as init system, 'eudev' should be selected, which is | |
917 | the case if '/dev management' is set to 'Dynamic using eudev'. | |
918 | ||
919 | If you are using 'systemd', its internal implementation of 'udev' | |
920 | is used. | |
fabcb119 | 921 | |
922 | config BR2_PACKAGE_UDEV_RULES_GEN | |
2c66e442 | 923 | bool "udev rules generation handled by provider" |
fabcb119 | 924 | select BR2_LEGACY |
2c66e442 | 925 | select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD |
926 | select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD | |
fabcb119 | 927 | help |
928 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 929 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 930 | |
2c66e442 | 931 | If you are not using 'systemd' as init system, udev rules |
932 | generation will be handled by 'eudev'. Check that | |
933 | '/dev management' is set to 'Dynamic using eudev' to get | |
934 | the same behaviour as in your old configuration. | |
fabcb119 | 935 | |
2c66e442 | 936 | If you are using 'systemd', it internal implementation of 'udev' |
937 | will generate the rules. | |
fabcb119 | 938 | |
939 | config BR2_PACKAGE_UDEV_ALL_EXTRAS | |
940 | bool "udev extras removed" | |
941 | select BR2_LEGACY | |
942 | help | |
943 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 944 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 945 | |
946 | The option to enable the extra features of 'udev' (gudev, ...) | |
947 | has been removed. These features are automatically enabled in | |
948 | the 'udev' providers if the dependencies are selected. For | |
949 | example, selecting 'libglib2' will trigger the build of gudev. | |
950 | ||
5562be13 BK |
951 | config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS |
952 | bool "xlib-libpthread-stubs option has been renamed" | |
953 | depends on BR2_PACKAGE_XORG7 | |
954 | select BR2_LEGACY | |
955 | select BR2_PACKAGE_LIBPTHREAD_STUBS | |
956 | help | |
957 | The pthread stubs neither depend on X11 nor Xlib. Thus the | |
958 | package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS | |
959 | ||
8b2e2357 | 960 | ############################################################################### |
f169e5e1 YM |
961 | comment "Legacy options removed in 2014.02" |
962 | ||
e543f5a1 TP |
963 | config BR2_sh2 |
964 | bool "sh2 support removed" | |
965 | help | |
966 | Due to an inexistent user base and generally poor Linux | |
967 | support, the support for the SH2 architecture was removed. | |
968 | ||
969 | config BR2_sh3 | |
970 | bool "sh3 support removed" | |
971 | help | |
972 | Due to an inexistent user base and generally poor Linux | |
973 | support, the support for the SH3 architecture was removed. | |
974 | ||
975 | config BR2_sh3eb | |
976 | bool "sh3eb support removed" | |
977 | help | |
978 | Due to an inexistent user base and generally poor Linux | |
979 | support, the support for the SH3eb architecture was removed. | |
980 | ||
334dca61 TDS |
981 | config BR2_KERNEL_HEADERS_3_1 |
982 | bool "kernel headers version 3.1.x are no longer supported" | |
983 | select BR2_KERNEL_HEADERS_3_2 | |
984 | select BR2_LEGACY | |
985 | help | |
986 | Version 3.1.x of the Linux kernel headers have been deprecated | |
987 | for more than four buildroot releases and are now removed. | |
988 | As an alternative, version 3.2.x of the headers have been | |
989 | automatically selected in your configuration. | |
990 | ||
991 | config BR2_KERNEL_HEADERS_3_3 | |
992 | bool "kernel headers version 3.3.x are no longer supported" | |
993 | select BR2_KERNEL_HEADERS_3_4 | |
994 | select BR2_LEGACY | |
995 | help | |
996 | Version 3.3.x of the Linux kernel headers have been deprecated | |
997 | for more than four buildroot releases and are now removed. | |
998 | As an alternative, version 3.4.x of the headers have been | |
999 | automatically selected in your configuration. | |
1000 | ||
1001 | config BR2_KERNEL_HEADERS_3_5 | |
1002 | bool "kernel headers version 3.5.x are no longer supported" | |
dfae6f67 | 1003 | select BR2_KERNEL_HEADERS_3_9 |
334dca61 TDS |
1004 | select BR2_LEGACY |
1005 | help | |
1006 | Version 3.5.x of the Linux kernel headers have been deprecated | |
1007 | for more than four buildroot releases and are now removed. | |
47c2d1b4 | 1008 | As an alternative, version 3.8.x of the headers have been |
334dca61 TDS |
1009 | automatically selected in your configuration. |
1010 | ||
348060f9 TDS |
1011 | config BR2_GDB_VERSION_7_2 |
1012 | bool "gdb 7.2.x is no longer supported" | |
02d85f65 | 1013 | select BR2_GDB_VERSION_7_6 |
348060f9 TDS |
1014 | select BR2_LEGACY |
1015 | help | |
1016 | Version 7.2.x of gdb has been deprecated for more than four | |
1017 | buildroot releases and is now removed. As an alternative, gdb | |
1018 | 7.5.x has been automatically selected in your configuration. | |
1019 | ||
1020 | config BR2_GDB_VERSION_7_3 | |
1021 | bool "gdb 7.3.x is no longer supported" | |
02d85f65 | 1022 | select BR2_GDB_VERSION_7_6 |
348060f9 TDS |
1023 | select BR2_LEGACY |
1024 | help | |
1025 | Version 7.3.x of gdb has been deprecated for more than four | |
1026 | buildroot releases and is now removed. As an alternative, gdb | |
1027 | 7.5.x has been automatically selected in your configuration. | |
1028 | ||
831624c4 TDS |
1029 | config BR2_PACKAGE_CCACHE |
1030 | bool "ccache target package has been removed" | |
1031 | select BR2_LEGACY | |
1032 | help | |
1033 | The 'ccache' target package has been removed since it has been | |
1034 | deprecated for more than four buildroot releases. | |
1035 | Note: using ccache for speeding up builds is still supported. | |
1036 | ||
7164a326 TDS |
1037 | config BR2_HAVE_DOCUMENTATION |
1038 | bool "support for documentation on target has been removed" | |
1039 | select BR2_LEGACY | |
1040 | help | |
1041 | Support for documentation on target has been removed since it has | |
1042 | been deprecated for more than four buildroot releases. | |
1043 | ||
f75245d9 TDS |
1044 | config BR2_PACKAGE_AUTOMAKE |
1045 | bool "automake target package has been removed" | |
1046 | select BR2_LEGACY | |
1047 | help | |
1048 | The 'automake' target package has been removed since it has been | |
1049 | deprecated for more than four buildroot releases. | |
1050 | Note: the host automake still exists. | |
1051 | ||
e7af2ac6 TDS |
1052 | config BR2_PACKAGE_AUTOCONF |
1053 | bool "autoconf target package has been removed" | |
1054 | select BR2_LEGACY | |
1055 | help | |
1056 | The 'autoconf' target package has been removed since it has been | |
1057 | deprecated for more than four buildroot releases. | |
1058 | Note: the host autoconf still exists. | |
1059 | ||
ddf5424f TDS |
1060 | config BR2_PACKAGE_XSTROKE |
1061 | bool "xstroke has been removed" | |
1062 | select BR2_LEGACY | |
1063 | help | |
1064 | The 'xstroke' package has been removed since it has been | |
1065 | deprecated for more than four buildroot releases. | |
1066 | ||
0a077319 TDS |
1067 | config BR2_PACKAGE_LZMA |
1068 | bool "lzma target package has been removed" | |
1069 | select BR2_LEGACY | |
1070 | help | |
1071 | The 'lzma' target package has been removed since it has been | |
1072 | deprecated for more than four buildroot releases. | |
1073 | Note: generating lzma-compressed rootfs images is still supported. | |
1074 | ||
7ef5c3a5 TDS |
1075 | config BR2_PACKAGE_TTCP |
1076 | bool "ttcp has been removed" | |
1077 | select BR2_LEGACY | |
1078 | help | |
1079 | The 'ttcp' package has been removed since it has been | |
1080 | deprecated for more than four buildroot releases. | |
1081 | ||
8b2e2357 | 1082 | config BR2_PACKAGE_LIBNFC_LLCP |
93341046 | 1083 | bool "libnfc-llcp has been replaced by libllcp" |
8b2e2357 | 1084 | select BR2_LEGACY |
93341046 | 1085 | select BR2_PACKAGE_LIBLLCP |
8b2e2357 VOR |
1086 | help |
1087 | The 'libnfc-llcp' package has been removed since upstream renamed | |
93341046 TDS |
1088 | to 'libllcp'. We have added a new package for 'libllcp' and bumped |
1089 | the version at the same time. | |
8b2e2357 | 1090 | |
06c82128 MGUF |
1091 | config BR2_PACKAGE_MYSQL_CLIENT |
1092 | bool "MySQL client renamed to MySQL" | |
1093 | select BR2_LEGACY | |
1094 | select BR2_PACKAGE_MYSQL | |
1095 | help | |
1096 | The option has been renamed BR2_PACKAGE_MYSQL | |
1097 | ||
2f7a53ee TDS |
1098 | config BR2_PACKAGE_SQUASHFS3 |
1099 | bool "squashfs3 has been removed" | |
1100 | select BR2_LEGACY | |
1101 | select BR2_PACKAGE_SQUASHFS | |
1102 | help | |
1103 | The 'squashfs3' package has been removed since it has been | |
1104 | deprecated for more than four buildroot releases. Package | |
1105 | 'squashfs' (4) has been selected automatically as replacement. | |
1106 | ||
1107 | config BR2_TARGET_ROOTFS_SQUASHFS3 | |
1108 | bool "squashfs3 rootfs support has been removed" | |
1109 | select BR2_LEGACY | |
1110 | help | |
1111 | Together with the removal of the squashfs3 package, support | |
1112 | for squashfs3 root filesystems has been removed too. Squashfs | |
1113 | root filesystems will automatically use squashfs4 now. | |
1114 | ||
560fe85b AA |
1115 | config BR2_PACKAGE_NETKITBASE |
1116 | bool "netkitbase has been removed" | |
1117 | select BR2_LEGACY | |
1118 | help | |
1119 | The 'netkitbase' package has been removed since it has been | |
1120 | deprecated since 2012.11. This package provided 'inetd' | |
1121 | which is replaced by 'xinet' and 'ping' which is replaced by | |
1122 | 'busybox' or 'fping'. | |
1123 | ||
1124 | config BR2_PACKAGE_NETKITTELNET | |
1125 | bool "netkittelnet has been removed" | |
1126 | select BR2_LEGACY | |
1127 | help | |
1128 | The 'netkittelnet' package has been removed since it has | |
1129 | been deprecated since 2012.11. 'busybox' provides a telnet | |
1130 | client and should be used instead. | |
1131 | ||
63058f8b FP |
1132 | config BR2_PACKAGE_LUASQL |
1133 | bool "luasql has been replaced by luasql-sqlite3" | |
1134 | select BR2_PACKAGE_LUASQL_SQLITE3 | |
1135 | select BR2_LEGACY | |
1136 | help | |
1137 | The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3. | |
1138 | ||
a6c53478 FP |
1139 | config BR2_PACKAGE_LUACJSON |
1140 | bool "luacjson has been replaced by lua-cjson" | |
1141 | select BR2_PACKAGE_LUA_CJSON | |
1142 | select BR2_LEGACY | |
1143 | help | |
1144 | The option has been renamed BR2_PACKAGE_LUA_CJSON. | |
1145 | ||
94c72087 TP |
1146 | ############################################################################### |
1147 | comment "Legacy options removed in 2013.11" | |
1148 | ||
ff0f55e3 AV |
1149 | config BR2_PACKAGE_LVM2_DMSETUP_ONLY |
1150 | bool "lvm2's 'dmsetup only' option removed" | |
1151 | select BR2_LEGACY | |
1152 | help | |
1153 | The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which | |
1154 | led to problems with other packages that need the full lvm2 | |
1155 | suite. Therefore, the option has been replaced with the positive | |
1156 | BR2_PACKAGE_LVM2_STANDARD_INSTALL option. | |
1157 | ||
1158 | # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in | |
1159 | # in order to automatically propagate old configs | |
1160 | ||
1f9c04f6 TP |
1161 | config BR2_PACKAGE_QT_JAVASCRIPTCORE |
1162 | bool "qt javascriptcore option removed" | |
1163 | select BR2_LEGACY | |
1164 | help | |
1165 | The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to | |
1166 | force the activation or disabling of the JIT compiler in the | |
1167 | Qt Javascript interpreter. However, the JIT compiler is not | |
1168 | available for all architectures, so forcing its activation | |
1169 | does not always work. Moreover, Qt knows by itself for which | |
1170 | architectures JIT support is possible, and will | |
1171 | automatically enable it if possible. | |
1172 | ||
1173 | Therefore, this option was in fact useless, and causing | |
1174 | build problems when enabled on architectures for which the | |
1175 | JIT support was not available. It has been removed, and | |
1176 | there is no replacement: Qt will enable JIT at compile time | |
1177 | when possible. | |
1178 | ||
94c72087 TP |
1179 | config BR2_PACKAGE_MODULE_INIT_TOOLS |
1180 | bool "module-init-tools replaced by kmod" | |
1181 | select BR2_PACKAGE_KMOD | |
1182 | select BR2_PACKAGE_KMOD_TOOLS | |
0f401f91 | 1183 | select BR2_LEGACY |
94c72087 TP |
1184 | help |
1185 | The 'module-init-tools' package has been removed, since it | |
1186 | has been depracated upstream and replaced by 'kmod'. | |
1187 | ||
f2c2193b TDS |
1188 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL |
1189 | string "u-boot: the git repository URL option has been renamed" | |
1190 | help | |
1191 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has | |
1192 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL. | |
1193 | ||
1194 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP | |
1195 | bool | |
1196 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != "" | |
1197 | select BR2_LEGACY | |
1198 | ||
1199 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from | |
1200 | # boot/uboot/Config.in | |
1201 | ||
1202 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION | |
1203 | string "u-boot: the git repository version option has been renamed" | |
1204 | help | |
1205 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has | |
1206 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION. | |
1207 | ||
1208 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP | |
1209 | bool | |
1210 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" | |
1211 | select BR2_LEGACY | |
1212 | ||
1213 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from | |
1214 | # boot/uboot/Config.in | |
1215 | ||
63ecded2 TDS |
1216 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL |
1217 | string "linux: the git repository URL option has been renamed" | |
1218 | help | |
1219 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has | |
1220 | been renamed to | |
1221 | BR2_LINUX_KERNEL_CUSTOM_REPO_URL. | |
1222 | ||
1223 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP | |
1224 | bool | |
1225 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != "" | |
1226 | select BR2_LEGACY | |
1227 | ||
1228 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from | |
1229 | # linux/Config.in | |
1230 | ||
1231 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION | |
1232 | string "linux: the git repository version option has been renamed" | |
1233 | help | |
1234 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has | |
1235 | been renamed to | |
1236 | BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION. | |
1237 | ||
1238 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP | |
1239 | bool | |
1240 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" | |
1241 | select BR2_LEGACY | |
1242 | ||
1243 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from | |
1244 | # linux/Config.in | |
1245 | ||
67eaf705 YM |
1246 | ############################################################################### |
1247 | comment "Legacy options removed in 2013.08" | |
c6e4fcb1 | 1248 | |
1f3078b1 TP |
1249 | config BR2_ARM_OABI |
1250 | bool "ARM OABI support has been removed" | |
1251 | select BR2_LEGACY | |
1252 | help | |
1253 | The support for the ARM OABI was deprecated since a while, | |
1254 | and has been removed completely from Buildroot. It is also | |
1255 | deprecated in upstream gcc, since gcc 4.7. People should | |
1256 | switch to EABI instead, which should not be a problem as | |
1257 | long as you don't have pre-built OABI binaries in your | |
1258 | system that you can't recompile. | |
1259 | ||
c6e4fcb1 GZ |
1260 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK |
1261 | bool "dosfstools dosfsck renamed to fsck.fat" | |
1262 | select BR2_LEGACY | |
1263 | select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT | |
1264 | help | |
1265 | dosfsck was renamed upstream to fsck.fat for consistency. | |
1266 | ||
1267 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL | |
1268 | bool "dosfstools dosfslabel renamed to fatlabel" | |
1269 | select BR2_LEGACY | |
1270 | select BR2_PACKAGE_DOSFSTOOLS_FATLABEL | |
1271 | help | |
1272 | doslabel was renamed upstream to fatlabel for consistency. | |
1273 | ||
1274 | config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS | |
1275 | bool "dosfstools mkdosfs renamed to mkfs.fat" | |
1276 | select BR2_LEGACY | |
1277 | select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT | |
1278 | help | |
1279 | mkdosfs was renamed upstream to mkfs.fat for consistency. | |
1280 | ||
e21db000 TP |
1281 | config BR2_ELF2FLT |
1282 | bool "the elf2flt option has been renamed" | |
1283 | select BR2_LEGACY | |
1284 | help | |
1285 | The BR2_ELF2FLT option has been renamed to | |
1286 | BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to | |
1287 | the package infrastructure. | |
1288 | ||
d806005b TP |
1289 | config BR2_VFP_FLOAT |
1290 | bool "the ARM VFP floating point option has been renamed" | |
1291 | select BR2_LEGACY | |
1292 | help | |
1293 | Due to a major refactoring of the floating-point handling of | |
1294 | the ARM architecture support, the BR2_VFP_FLOAT option has | |
1295 | been replaced with a choice of options that allows to select | |
1296 | between various VFP versions/capabilities. | |
1297 | ||
ba8f82b0 SM |
1298 | config BR2_PACKAGE_GCC_TARGET |
1299 | bool "gcc on the target filesystem has been removed" | |
1300 | select BR2_LEGACY | |
1301 | help | |
1302 | The support for gcc in the target filesystem was deprecated | |
1303 | since a while, and has been removed completely from Buildroot. | |
1304 | See Buildroot's documentation for more explanations. | |
1305 | ||
1306 | config BR2_HAVE_DEVFILES | |
1307 | bool "development files in target filesystem has been removed" | |
1308 | select BR2_LEGACY | |
1309 | help | |
1310 | The installation of the development files in the target | |
1311 | filesystem was deprecated since a while, and has been removed | |
1312 | completely from Buildroot. | |
1313 | See Buildroot's documentation for more explanations. | |
1314 | ||
67eaf705 YM |
1315 | ############################################################################### |
1316 | comment "Legacy options removed in 2013.05" | |
860d37a2 YM |
1317 | |
1318 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192 | |
1319 | bool "Realtek 8192 replaced by Realtek 81xx" | |
1320 | select BR2_LEGACY | |
1321 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX | |
1322 | help | |
1323 | Now covers the whole Realtek 81xx familly: 8188/8192. | |
1324 | ||
1325 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712 | |
1326 | bool "Realtek 8712 replaced by Realtek 87xx" | |
1327 | select BR2_LEGACY | |
1328 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX | |
1329 | help | |
1330 | Now covers the whole Realtek 87xx familly: 8712/8723. | |
1331 | ||
67eaf705 YM |
1332 | ############################################################################### |
1333 | comment "Legacy options removed in 2013.02" | |
29b83f05 | 1334 | |
9474421d GZ |
1335 | config BR2_sa110 |
1336 | bool "sa110 ARM target switched to strongarm" | |
1337 | select BR2_LEGACY | |
1338 | select BR2_strongarm | |
1339 | help | |
1340 | The SA110 is the same as a generic StrongARM, it just differs | |
1341 | in speed, peripherals and cache. | |
1342 | ||
1343 | config BR2_sa1100 | |
1344 | bool "sa1100 ARM target switched to strongarm" | |
1345 | select BR2_LEGACY | |
1346 | select BR2_strongarm | |
1347 | help | |
1348 | The SA1100 is the same as a generic StrongARM, it just differs | |
1349 | in speed, peripherals and cache. | |
1350 | ||
29b83f05 TP |
1351 | config BR2_PACKAGE_GDISK |
1352 | bool "gdisk has been replaced by gptfdisk" | |
1353 | select BR2_LEGACY | |
1354 | select BR2_PACKAGE_GPTFDISK | |
1355 | help | |
1356 | The option has been renamed BR2_PACKAGE_GPTFDISK. | |
1357 | ||
1358 | config BR2_PACKAGE_GDISK_GDISK | |
1359 | bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk" | |
1360 | select BR2_LEGACY | |
1361 | select BR2_PACKAGE_GPTFDISK | |
1362 | select BR2_PACKAGE_GPTFDISK_GDISK | |
1363 | help | |
1364 | The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK. | |
1365 | ||
1366 | config BR2_PACKAGE_GDISK_SGDISK | |
1367 | bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk" | |
1368 | select BR2_LEGACY | |
1369 | select BR2_PACKAGE_GPTFDISK | |
1370 | select BR2_PACKAGE_GPTFDISK_SGDISK | |
1371 | help | |
1372 | The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK. | |
ebcfa987 | 1373 | |
a0b6faaa TP |
1374 | config BR2_PACKAGE_GDB_HOST |
1375 | bool "gdb for the host option has been renamed" | |
1376 | select BR2_PACKAGE_HOST_GDB | |
1377 | select BR2_LEGACY | |
1378 | help | |
1379 | Due to the conversion of gdb to the package infrastructure, | |
1380 | the BR2_PACKAGE_GDB_HOST option has been renamed | |
1381 | BR2_PACKAGE_HOST_GDB. | |
1382 | ||
76de0f80 CS |
1383 | config BR2_PACKAGE_DIRECTB_DITHER_RGB16 |
1384 | bool "DirectFB RGB16 dithering option has been renamed" | |
1385 | select BR2_PACKAGE_DIRECTFB_DITHER_RGB16 | |
1386 | select BR2_LEGACY | |
1387 | help | |
1388 | The option has been renamed | |
1389 | BR2_PACKAGE_DIRECTFB_DITHER_RGB16. | |
1390 | ||
1391 | config BR2_PACKAGE_DIRECTB_TESTS | |
1392 | bool "DirectFB Tests option has been renamed" | |
1393 | select BR2_PACKAGE_DIRECTFB_TESTS | |
1394 | select BR2_LEGACY | |
1395 | help | |
1396 | The option has been renamed | |
1397 | BR2_PACKAGE_DIRECTFB_TESTS. | |
1398 | ||
67eaf705 YM |
1399 | ############################################################################### |
1400 | comment "Legacy options removed in 2012.11" | |
1401 | ||
12ccc43f TP |
1402 | config BR2_PACKAGE_CUSTOMIZE |
1403 | bool "customize package has been removed" | |
1404 | select BR2_LEGACY | |
1405 | help | |
1406 | The 'customize' special package has been removed. Instead, | |
1407 | we recommend to create either your own packages, or use a | |
1408 | post-build script to customize your root filesystem. See | |
1409 | Buildroot's documentation for more details. | |
2cd9121c AVEM |
1410 | |
1411 | config BR2_PACKAGE_XSERVER_xorg | |
1412 | bool "X.org modular server" | |
1413 | select BR2_LEGACY | |
1414 | select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR | |
1415 | help | |
1416 | The option has been renamed | |
1417 | BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR. | |
1418 | ||
1419 | config BR2_PACKAGE_XSERVER_tinyx | |
1420 | bool "KDrive / TinyX server" | |
1421 | select BR2_LEGACY | |
1422 | select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE | |
1423 | help | |
1424 | The option has been renamed | |
1425 | BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE. | |
1426 | ||
1427 | config BR2_PACKAGE_PTHREAD_STUBS | |
1428 | bool "pthread-stubs option has been renamed" | |
1429 | select BR2_LEGACY | |
5562be13 | 1430 | select BR2_PACKAGE_LIBPTHREAD_STUBS |
2cd9121c AVEM |
1431 | help |
1432 | For consistency reason, the pthread-stubs package has been | |
5562be13 | 1433 | renamed to libpthread-stubs. |
2cd9121c | 1434 | |
67eaf705 YM |
1435 | ############################################################################### |
1436 | comment "Legacy options removed in 2012.08" | |
ebcfa987 | 1437 | |
26803e88 AVEM |
1438 | config BR2_PACKAGE_GETTEXT_STATIC |
1439 | bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB" | |
1440 | select BR2_LEGACY | |
1441 | help | |
1442 | To build a static gettext library, select BR2_PREFER_STATIC_LIB. | |
1443 | ||
1444 | ||
1445 | config BR2_PACKAGE_LIBINTL | |
1446 | bool "libintl" | |
1447 | select BR2_LEGACY | |
1448 | select BR2_PACKAGE_GETTEXT | |
1449 | help | |
1450 | libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now | |
1451 | only installs the library, not the executables. | |
1452 | ||
c430fab2 AVEM |
1453 | config BR2_PACKAGE_INPUT_TOOLS_EVTEST |
1454 | bool "input-tools evtest is now a separate package evtest" | |
1455 | select BR2_LEGACY | |
1456 | select BR2_PACKAGE_EVTEST | |
1457 | help | |
1458 | The evtest program from input-tools is now a separate package. | |
1459 | ||
57133825 SZ |
1460 | config BR2_BFIN_FDPIC |
1461 | bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC" | |
1462 | select BR2_BINFMT_FDPIC | |
1463 | select BR2_LEGACY | |
1464 | ||
1465 | config BR2_BFIN_FLAT | |
1466 | bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT" | |
1467 | select BR2_BINFMT_FLAT | |
1468 | select BR2_LEGACY | |
1469 | ||
a91a5c16 | 1470 | endmenu |
53903a15 AV |
1471 | |
1472 | endif # !SKIP_LEGACY |