]>
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 AVEM |
54 | |
55 | config BR2_LEGACY | |
56 | bool | |
57 | help | |
58 | This option is selected automatically when your old .config uses an | |
59 | option that no longer exists in current buildroot. In that case, the | |
60 | build will fail. Look for config options which are selected in the | |
61 | menu below: they no longer exist and should be replaced by something | |
62 | else. | |
63 | ||
64 | # This comment fits exactly in a 80-column display | |
65 | comment "Legacy detected: check the content of the menu below" | |
66 | depends on BR2_LEGACY | |
67 | ||
a91a5c16 AVEM |
68 | menu "Legacy config options" |
69 | ||
70 | if BR2_LEGACY | |
a25e4a4c | 71 | comment "----------------------------------------------------" |
a91a5c16 | 72 | comment "Your old configuration uses legacy options that no " |
cce5baa8 TDS |
73 | comment "longer exist in buildroot, as indicated in the menu " |
74 | comment "below. As long as these options stay selected, or in" | |
75 | comment "case of string options are non-empty, the build " | |
a91a5c16 | 76 | comment "will fail. " |
cce5baa8 TDS |
77 | comment "* " |
78 | comment "Where possible, an automatic conversion from old to " | |
79 | comment "new symbols has been performed. Before making any " | |
80 | comment "change in this legacy menu, make sure to exit the " | |
81 | comment "configuration editor a first time and save the " | |
82 | comment "configuration. Otherwise, the automatic conversion " | |
83 | comment "of symbols will be lost. " | |
84 | comment "* " | |
85 | comment "After this initial save, reopen the configuration " | |
86 | comment "editor, inspect the options selected below, read " | |
87 | comment "their help texts, and verify/update the new " | |
88 | comment "configuration in the corresponding configuration " | |
89 | comment "menus. When everything is ok, you can disable the " | |
90 | comment "legacy options in the menu below. Once you have " | |
91 | comment "disabled all legacy options, this text will " | |
92 | comment "disappear and you will be able to start the build. " | |
93 | comment "* " | |
d2e706c3 YM |
94 | comment "Note: at some point in the future, the oldest legacy" |
95 | comment "options will be removed, and configuration files " | |
96 | comment "that still have those options set, will fail to " | |
97 | comment "build, or run, in unpredictable ways. " | |
a25e4a4c | 98 | comment "----------------------------------------------------" |
a91a5c16 | 99 | endif |
ebcfa987 | 100 | |
fabcb119 | 101 | ############################################################################### |
102 | comment "Legacy options removed in 2014.05" | |
103 | ||
c97aeb7e YM |
104 | config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE |
105 | bool "Lua command-line editing none has been renamed" | |
106 | select BR2_LEGACY | |
107 | help | |
108 | The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been | |
109 | renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select | |
110 | it in the corresponding choice. | |
111 | ||
112 | config BR2_PACKAGE_LUA_INTERPRETER_READLINE | |
113 | bool "Lua command-line editing using readline has been renamed" | |
114 | select BR2_LEGACY | |
115 | help | |
116 | The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been | |
117 | renamed to BR2_PACKAGE_LUA_READLINE. You will have to select | |
118 | it in the corresponding choice. | |
119 | ||
120 | config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE | |
121 | bool "Lua command-line editing using linenoise has been renamed" | |
122 | select BR2_LEGACY | |
123 | help | |
124 | The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been | |
125 | renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select | |
126 | it in the corresponding choice. | |
127 | ||
365ae61c YM |
128 | config BR2_PACKAGE_DVB_APPS_UTILS |
129 | bool "dvb-apps utilities now built by default" | |
130 | select BR2_LEGACY | |
131 | help | |
132 | The dvb-apps utilities are now always built when the dvb-apps | |
133 | package is selected. | |
134 | ||
971e331c YM |
135 | config BR2_KERNEL_HEADERS_SNAP |
136 | bool "Local Linux snapshot support removed" | |
137 | select BR2_LEGACY | |
138 | help | |
139 | Support for using a custom snapshot to install the Linux | |
140 | kernel headers has been removed. | |
141 | ||
fabcb119 | 142 | config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV |
143 | bool "/dev management by udev removed" | |
144 | select BR2_LEGACY | |
145 | help | |
146 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 147 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 148 | |
2c66e442 | 149 | Therefore, if you are not using 'systemd' as init system, you |
150 | must choose 'Dynamic using eudev' in the '/dev management' | |
151 | menu to get the same behaviour as in your old configuration. | |
152 | ||
153 | If you are using 'systemd', its internal implementation of | |
154 | 'udev' will be used automatically. | |
fabcb119 | 155 | |
156 | You must also check the packages depending on 'udev' are still | |
157 | selected. | |
158 | ||
159 | config BR2_PACKAGE_UDEV | |
160 | bool "udev is now a virtual package" | |
161 | select BR2_LEGACY | |
162 | select BR2_PACKAGE_HAS_UDEV | |
163 | help | |
164 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 165 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 166 | |
167 | Your old configuration refers to packages depending on 'udev', | |
168 | either for build or at runtime. | |
169 | ||
2c66e442 | 170 | Check that a 'udev' provider is selected. If you are not using |
171 | 'systemd' as init system, 'eudev' should be selected, which is | |
172 | the case if '/dev management' is set to 'Dynamic using eudev'. | |
173 | ||
174 | If you are using 'systemd', its internal implementation of 'udev' | |
175 | is used. | |
fabcb119 | 176 | |
177 | config BR2_PACKAGE_UDEV_RULES_GEN | |
2c66e442 | 178 | bool "udev rules generation handled by provider" |
fabcb119 | 179 | select BR2_LEGACY |
2c66e442 | 180 | select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD |
181 | select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD | |
fabcb119 | 182 | help |
183 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 184 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 185 | |
2c66e442 | 186 | If you are not using 'systemd' as init system, udev rules |
187 | generation will be handled by 'eudev'. Check that | |
188 | '/dev management' is set to 'Dynamic using eudev' to get | |
189 | the same behaviour as in your old configuration. | |
fabcb119 | 190 | |
2c66e442 | 191 | If you are using 'systemd', it internal implementation of 'udev' |
192 | will generate the rules. | |
fabcb119 | 193 | |
194 | config BR2_PACKAGE_UDEV_ALL_EXTRAS | |
195 | bool "udev extras removed" | |
196 | select BR2_LEGACY | |
197 | help | |
198 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 199 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 200 | |
201 | The option to enable the extra features of 'udev' (gudev, ...) | |
202 | has been removed. These features are automatically enabled in | |
203 | the 'udev' providers if the dependencies are selected. For | |
204 | example, selecting 'libglib2' will trigger the build of gudev. | |
205 | ||
5562be13 BK |
206 | config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS |
207 | bool "xlib-libpthread-stubs option has been renamed" | |
208 | depends on BR2_PACKAGE_XORG7 | |
209 | select BR2_LEGACY | |
210 | select BR2_PACKAGE_LIBPTHREAD_STUBS | |
211 | help | |
212 | The pthread stubs neither depend on X11 nor Xlib. Thus the | |
213 | package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS | |
214 | ||
8b2e2357 | 215 | ############################################################################### |
f169e5e1 YM |
216 | comment "Legacy options removed in 2014.02" |
217 | ||
e543f5a1 TP |
218 | config BR2_sh2 |
219 | bool "sh2 support removed" | |
220 | help | |
221 | Due to an inexistent user base and generally poor Linux | |
222 | support, the support for the SH2 architecture was removed. | |
223 | ||
224 | config BR2_sh3 | |
225 | bool "sh3 support removed" | |
226 | help | |
227 | Due to an inexistent user base and generally poor Linux | |
228 | support, the support for the SH3 architecture was removed. | |
229 | ||
230 | config BR2_sh3eb | |
231 | bool "sh3eb support removed" | |
232 | help | |
233 | Due to an inexistent user base and generally poor Linux | |
234 | support, the support for the SH3eb architecture was removed. | |
235 | ||
334dca61 TDS |
236 | config BR2_KERNEL_HEADERS_3_1 |
237 | bool "kernel headers version 3.1.x are no longer supported" | |
238 | select BR2_KERNEL_HEADERS_3_2 | |
239 | select BR2_LEGACY | |
240 | help | |
241 | Version 3.1.x of the Linux kernel headers have been deprecated | |
242 | for more than four buildroot releases and are now removed. | |
243 | As an alternative, version 3.2.x of the headers have been | |
244 | automatically selected in your configuration. | |
245 | ||
246 | config BR2_KERNEL_HEADERS_3_3 | |
247 | bool "kernel headers version 3.3.x are no longer supported" | |
248 | select BR2_KERNEL_HEADERS_3_4 | |
249 | select BR2_LEGACY | |
250 | help | |
251 | Version 3.3.x of the Linux kernel headers have been deprecated | |
252 | for more than four buildroot releases and are now removed. | |
253 | As an alternative, version 3.4.x of the headers have been | |
254 | automatically selected in your configuration. | |
255 | ||
256 | config BR2_KERNEL_HEADERS_3_5 | |
257 | bool "kernel headers version 3.5.x are no longer supported" | |
258 | select BR2_KERNEL_HEADERS_3_6 | |
259 | select BR2_LEGACY | |
260 | help | |
261 | Version 3.5.x of the Linux kernel headers have been deprecated | |
262 | for more than four buildroot releases and are now removed. | |
263 | As an alternative, version 3.6.x of the headers have been | |
264 | automatically selected in your configuration. | |
265 | ||
348060f9 TDS |
266 | config BR2_GDB_VERSION_7_2 |
267 | bool "gdb 7.2.x is no longer supported" | |
268 | select BR2_GDB_VERSION_7_5 | |
269 | select BR2_LEGACY | |
270 | help | |
271 | Version 7.2.x of gdb has been deprecated for more than four | |
272 | buildroot releases and is now removed. As an alternative, gdb | |
273 | 7.5.x has been automatically selected in your configuration. | |
274 | ||
275 | config BR2_GDB_VERSION_7_3 | |
276 | bool "gdb 7.3.x is no longer supported" | |
277 | select BR2_GDB_VERSION_7_5 | |
278 | select BR2_LEGACY | |
279 | help | |
280 | Version 7.3.x of gdb has been deprecated for more than four | |
281 | buildroot releases and is now removed. As an alternative, gdb | |
282 | 7.5.x has been automatically selected in your configuration. | |
283 | ||
831624c4 TDS |
284 | config BR2_PACKAGE_CCACHE |
285 | bool "ccache target package has been removed" | |
286 | select BR2_LEGACY | |
287 | help | |
288 | The 'ccache' target package has been removed since it has been | |
289 | deprecated for more than four buildroot releases. | |
290 | Note: using ccache for speeding up builds is still supported. | |
291 | ||
7164a326 TDS |
292 | config BR2_HAVE_DOCUMENTATION |
293 | bool "support for documentation on target has been removed" | |
294 | select BR2_LEGACY | |
295 | help | |
296 | Support for documentation on target has been removed since it has | |
297 | been deprecated for more than four buildroot releases. | |
298 | ||
f75245d9 TDS |
299 | config BR2_PACKAGE_AUTOMAKE |
300 | bool "automake target package has been removed" | |
301 | select BR2_LEGACY | |
302 | help | |
303 | The 'automake' target package has been removed since it has been | |
304 | deprecated for more than four buildroot releases. | |
305 | Note: the host automake still exists. | |
306 | ||
e7af2ac6 TDS |
307 | config BR2_PACKAGE_AUTOCONF |
308 | bool "autoconf target package has been removed" | |
309 | select BR2_LEGACY | |
310 | help | |
311 | The 'autoconf' target package has been removed since it has been | |
312 | deprecated for more than four buildroot releases. | |
313 | Note: the host autoconf still exists. | |
314 | ||
ddf5424f TDS |
315 | config BR2_PACKAGE_XSTROKE |
316 | bool "xstroke has been removed" | |
317 | select BR2_LEGACY | |
318 | help | |
319 | The 'xstroke' package has been removed since it has been | |
320 | deprecated for more than four buildroot releases. | |
321 | ||
0a077319 TDS |
322 | config BR2_PACKAGE_LZMA |
323 | bool "lzma target package has been removed" | |
324 | select BR2_LEGACY | |
325 | help | |
326 | The 'lzma' target package has been removed since it has been | |
327 | deprecated for more than four buildroot releases. | |
328 | Note: generating lzma-compressed rootfs images is still supported. | |
329 | ||
7ef5c3a5 TDS |
330 | config BR2_PACKAGE_TTCP |
331 | bool "ttcp has been removed" | |
332 | select BR2_LEGACY | |
333 | help | |
334 | The 'ttcp' package has been removed since it has been | |
335 | deprecated for more than four buildroot releases. | |
336 | ||
8b2e2357 | 337 | config BR2_PACKAGE_LIBNFC_LLCP |
93341046 | 338 | bool "libnfc-llcp has been replaced by libllcp" |
8b2e2357 | 339 | select BR2_LEGACY |
93341046 | 340 | select BR2_PACKAGE_LIBLLCP |
8b2e2357 VOR |
341 | help |
342 | The 'libnfc-llcp' package has been removed since upstream renamed | |
93341046 TDS |
343 | to 'libllcp'. We have added a new package for 'libllcp' and bumped |
344 | the version at the same time. | |
8b2e2357 | 345 | |
06c82128 MGUF |
346 | config BR2_PACKAGE_MYSQL_CLIENT |
347 | bool "MySQL client renamed to MySQL" | |
348 | select BR2_LEGACY | |
349 | select BR2_PACKAGE_MYSQL | |
350 | help | |
351 | The option has been renamed BR2_PACKAGE_MYSQL | |
352 | ||
2f7a53ee TDS |
353 | config BR2_PACKAGE_SQUASHFS3 |
354 | bool "squashfs3 has been removed" | |
355 | select BR2_LEGACY | |
356 | select BR2_PACKAGE_SQUASHFS | |
357 | help | |
358 | The 'squashfs3' package has been removed since it has been | |
359 | deprecated for more than four buildroot releases. Package | |
360 | 'squashfs' (4) has been selected automatically as replacement. | |
361 | ||
362 | config BR2_TARGET_ROOTFS_SQUASHFS3 | |
363 | bool "squashfs3 rootfs support has been removed" | |
364 | select BR2_LEGACY | |
365 | help | |
366 | Together with the removal of the squashfs3 package, support | |
367 | for squashfs3 root filesystems has been removed too. Squashfs | |
368 | root filesystems will automatically use squashfs4 now. | |
369 | ||
560fe85b AA |
370 | config BR2_PACKAGE_NETKITBASE |
371 | bool "netkitbase has been removed" | |
372 | select BR2_LEGACY | |
373 | help | |
374 | The 'netkitbase' package has been removed since it has been | |
375 | deprecated since 2012.11. This package provided 'inetd' | |
376 | which is replaced by 'xinet' and 'ping' which is replaced by | |
377 | 'busybox' or 'fping'. | |
378 | ||
379 | config BR2_PACKAGE_NETKITTELNET | |
380 | bool "netkittelnet has been removed" | |
381 | select BR2_LEGACY | |
382 | help | |
383 | The 'netkittelnet' package has been removed since it has | |
384 | been deprecated since 2012.11. 'busybox' provides a telnet | |
385 | client and should be used instead. | |
386 | ||
63058f8b FP |
387 | config BR2_PACKAGE_LUASQL |
388 | bool "luasql has been replaced by luasql-sqlite3" | |
389 | select BR2_PACKAGE_LUASQL_SQLITE3 | |
390 | select BR2_LEGACY | |
391 | help | |
392 | The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3. | |
393 | ||
a6c53478 FP |
394 | config BR2_PACKAGE_LUACJSON |
395 | bool "luacjson has been replaced by lua-cjson" | |
396 | select BR2_PACKAGE_LUA_CJSON | |
397 | select BR2_LEGACY | |
398 | help | |
399 | The option has been renamed BR2_PACKAGE_LUA_CJSON. | |
400 | ||
94c72087 TP |
401 | ############################################################################### |
402 | comment "Legacy options removed in 2013.11" | |
403 | ||
ff0f55e3 AV |
404 | config BR2_PACKAGE_LVM2_DMSETUP_ONLY |
405 | bool "lvm2's 'dmsetup only' option removed" | |
406 | select BR2_LEGACY | |
407 | help | |
408 | The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which | |
409 | led to problems with other packages that need the full lvm2 | |
410 | suite. Therefore, the option has been replaced with the positive | |
411 | BR2_PACKAGE_LVM2_STANDARD_INSTALL option. | |
412 | ||
413 | # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in | |
414 | # in order to automatically propagate old configs | |
415 | ||
1f9c04f6 TP |
416 | config BR2_PACKAGE_QT_JAVASCRIPTCORE |
417 | bool "qt javascriptcore option removed" | |
418 | select BR2_LEGACY | |
419 | help | |
420 | The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to | |
421 | force the activation or disabling of the JIT compiler in the | |
422 | Qt Javascript interpreter. However, the JIT compiler is not | |
423 | available for all architectures, so forcing its activation | |
424 | does not always work. Moreover, Qt knows by itself for which | |
425 | architectures JIT support is possible, and will | |
426 | automatically enable it if possible. | |
427 | ||
428 | Therefore, this option was in fact useless, and causing | |
429 | build problems when enabled on architectures for which the | |
430 | JIT support was not available. It has been removed, and | |
431 | there is no replacement: Qt will enable JIT at compile time | |
432 | when possible. | |
433 | ||
94c72087 TP |
434 | config BR2_PACKAGE_MODULE_INIT_TOOLS |
435 | bool "module-init-tools replaced by kmod" | |
436 | select BR2_PACKAGE_KMOD | |
437 | select BR2_PACKAGE_KMOD_TOOLS | |
0f401f91 | 438 | select BR2_LEGACY |
94c72087 TP |
439 | help |
440 | The 'module-init-tools' package has been removed, since it | |
441 | has been depracated upstream and replaced by 'kmod'. | |
442 | ||
f2c2193b TDS |
443 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL |
444 | string "u-boot: the git repository URL option has been renamed" | |
445 | help | |
446 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has | |
447 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL. | |
448 | ||
449 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP | |
450 | bool | |
451 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != "" | |
452 | select BR2_LEGACY | |
453 | ||
454 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from | |
455 | # boot/uboot/Config.in | |
456 | ||
457 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION | |
458 | string "u-boot: the git repository version option has been renamed" | |
459 | help | |
460 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has | |
461 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION. | |
462 | ||
463 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP | |
464 | bool | |
465 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" | |
466 | select BR2_LEGACY | |
467 | ||
468 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from | |
469 | # boot/uboot/Config.in | |
470 | ||
63ecded2 TDS |
471 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL |
472 | string "linux: the git repository URL option has been renamed" | |
473 | help | |
474 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has | |
475 | been renamed to | |
476 | BR2_LINUX_KERNEL_CUSTOM_REPO_URL. | |
477 | ||
478 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP | |
479 | bool | |
480 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != "" | |
481 | select BR2_LEGACY | |
482 | ||
483 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from | |
484 | # linux/Config.in | |
485 | ||
486 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION | |
487 | string "linux: the git repository version option has been renamed" | |
488 | help | |
489 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has | |
490 | been renamed to | |
491 | BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION. | |
492 | ||
493 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP | |
494 | bool | |
495 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" | |
496 | select BR2_LEGACY | |
497 | ||
498 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from | |
499 | # linux/Config.in | |
500 | ||
67eaf705 YM |
501 | ############################################################################### |
502 | comment "Legacy options removed in 2013.08" | |
c6e4fcb1 | 503 | |
1f3078b1 TP |
504 | config BR2_ARM_OABI |
505 | bool "ARM OABI support has been removed" | |
506 | select BR2_LEGACY | |
507 | help | |
508 | The support for the ARM OABI was deprecated since a while, | |
509 | and has been removed completely from Buildroot. It is also | |
510 | deprecated in upstream gcc, since gcc 4.7. People should | |
511 | switch to EABI instead, which should not be a problem as | |
512 | long as you don't have pre-built OABI binaries in your | |
513 | system that you can't recompile. | |
514 | ||
c6e4fcb1 GZ |
515 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK |
516 | bool "dosfstools dosfsck renamed to fsck.fat" | |
517 | select BR2_LEGACY | |
518 | select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT | |
519 | help | |
520 | dosfsck was renamed upstream to fsck.fat for consistency. | |
521 | ||
522 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL | |
523 | bool "dosfstools dosfslabel renamed to fatlabel" | |
524 | select BR2_LEGACY | |
525 | select BR2_PACKAGE_DOSFSTOOLS_FATLABEL | |
526 | help | |
527 | doslabel was renamed upstream to fatlabel for consistency. | |
528 | ||
529 | config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS | |
530 | bool "dosfstools mkdosfs renamed to mkfs.fat" | |
531 | select BR2_LEGACY | |
532 | select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT | |
533 | help | |
534 | mkdosfs was renamed upstream to mkfs.fat for consistency. | |
535 | ||
e21db000 TP |
536 | config BR2_ELF2FLT |
537 | bool "the elf2flt option has been renamed" | |
538 | select BR2_LEGACY | |
539 | help | |
540 | The BR2_ELF2FLT option has been renamed to | |
541 | BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to | |
542 | the package infrastructure. | |
543 | ||
d806005b TP |
544 | config BR2_VFP_FLOAT |
545 | bool "the ARM VFP floating point option has been renamed" | |
546 | select BR2_LEGACY | |
547 | help | |
548 | Due to a major refactoring of the floating-point handling of | |
549 | the ARM architecture support, the BR2_VFP_FLOAT option has | |
550 | been replaced with a choice of options that allows to select | |
551 | between various VFP versions/capabilities. | |
552 | ||
ba8f82b0 SM |
553 | config BR2_PACKAGE_GCC_TARGET |
554 | bool "gcc on the target filesystem has been removed" | |
555 | select BR2_LEGACY | |
556 | help | |
557 | The support for gcc in the target filesystem was deprecated | |
558 | since a while, and has been removed completely from Buildroot. | |
559 | See Buildroot's documentation for more explanations. | |
560 | ||
561 | config BR2_HAVE_DEVFILES | |
562 | bool "development files in target filesystem has been removed" | |
563 | select BR2_LEGACY | |
564 | help | |
565 | The installation of the development files in the target | |
566 | filesystem was deprecated since a while, and has been removed | |
567 | completely from Buildroot. | |
568 | See Buildroot's documentation for more explanations. | |
569 | ||
67eaf705 YM |
570 | ############################################################################### |
571 | comment "Legacy options removed in 2013.05" | |
860d37a2 YM |
572 | |
573 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192 | |
574 | bool "Realtek 8192 replaced by Realtek 81xx" | |
575 | select BR2_LEGACY | |
576 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX | |
577 | help | |
578 | Now covers the whole Realtek 81xx familly: 8188/8192. | |
579 | ||
580 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712 | |
581 | bool "Realtek 8712 replaced by Realtek 87xx" | |
582 | select BR2_LEGACY | |
583 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX | |
584 | help | |
585 | Now covers the whole Realtek 87xx familly: 8712/8723. | |
586 | ||
67eaf705 YM |
587 | ############################################################################### |
588 | comment "Legacy options removed in 2013.02" | |
29b83f05 | 589 | |
9474421d GZ |
590 | config BR2_sa110 |
591 | bool "sa110 ARM target switched to strongarm" | |
592 | select BR2_LEGACY | |
593 | select BR2_strongarm | |
594 | help | |
595 | The SA110 is the same as a generic StrongARM, it just differs | |
596 | in speed, peripherals and cache. | |
597 | ||
598 | config BR2_sa1100 | |
599 | bool "sa1100 ARM target switched to strongarm" | |
600 | select BR2_LEGACY | |
601 | select BR2_strongarm | |
602 | help | |
603 | The SA1100 is the same as a generic StrongARM, it just differs | |
604 | in speed, peripherals and cache. | |
605 | ||
29b83f05 TP |
606 | config BR2_PACKAGE_GDISK |
607 | bool "gdisk has been replaced by gptfdisk" | |
608 | select BR2_LEGACY | |
609 | select BR2_PACKAGE_GPTFDISK | |
610 | help | |
611 | The option has been renamed BR2_PACKAGE_GPTFDISK. | |
612 | ||
613 | config BR2_PACKAGE_GDISK_GDISK | |
614 | bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk" | |
615 | select BR2_LEGACY | |
616 | select BR2_PACKAGE_GPTFDISK | |
617 | select BR2_PACKAGE_GPTFDISK_GDISK | |
618 | help | |
619 | The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK. | |
620 | ||
621 | config BR2_PACKAGE_GDISK_SGDISK | |
622 | bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk" | |
623 | select BR2_LEGACY | |
624 | select BR2_PACKAGE_GPTFDISK | |
625 | select BR2_PACKAGE_GPTFDISK_SGDISK | |
626 | help | |
627 | The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK. | |
ebcfa987 | 628 | |
a0b6faaa TP |
629 | config BR2_PACKAGE_GDB_HOST |
630 | bool "gdb for the host option has been renamed" | |
631 | select BR2_PACKAGE_HOST_GDB | |
632 | select BR2_LEGACY | |
633 | help | |
634 | Due to the conversion of gdb to the package infrastructure, | |
635 | the BR2_PACKAGE_GDB_HOST option has been renamed | |
636 | BR2_PACKAGE_HOST_GDB. | |
637 | ||
76de0f80 CS |
638 | config BR2_PACKAGE_DIRECTB_DITHER_RGB16 |
639 | bool "DirectFB RGB16 dithering option has been renamed" | |
640 | select BR2_PACKAGE_DIRECTFB_DITHER_RGB16 | |
641 | select BR2_LEGACY | |
642 | help | |
643 | The option has been renamed | |
644 | BR2_PACKAGE_DIRECTFB_DITHER_RGB16. | |
645 | ||
646 | config BR2_PACKAGE_DIRECTB_TESTS | |
647 | bool "DirectFB Tests option has been renamed" | |
648 | select BR2_PACKAGE_DIRECTFB_TESTS | |
649 | select BR2_LEGACY | |
650 | help | |
651 | The option has been renamed | |
652 | BR2_PACKAGE_DIRECTFB_TESTS. | |
653 | ||
67eaf705 YM |
654 | ############################################################################### |
655 | comment "Legacy options removed in 2012.11" | |
656 | ||
12ccc43f TP |
657 | config BR2_PACKAGE_CUSTOMIZE |
658 | bool "customize package has been removed" | |
659 | select BR2_LEGACY | |
660 | help | |
661 | The 'customize' special package has been removed. Instead, | |
662 | we recommend to create either your own packages, or use a | |
663 | post-build script to customize your root filesystem. See | |
664 | Buildroot's documentation for more details. | |
2cd9121c AVEM |
665 | |
666 | config BR2_PACKAGE_XSERVER_xorg | |
667 | bool "X.org modular server" | |
668 | select BR2_LEGACY | |
669 | select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR | |
670 | help | |
671 | The option has been renamed | |
672 | BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR. | |
673 | ||
674 | config BR2_PACKAGE_XSERVER_tinyx | |
675 | bool "KDrive / TinyX server" | |
676 | select BR2_LEGACY | |
677 | select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE | |
678 | help | |
679 | The option has been renamed | |
680 | BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE. | |
681 | ||
682 | config BR2_PACKAGE_PTHREAD_STUBS | |
683 | bool "pthread-stubs option has been renamed" | |
684 | select BR2_LEGACY | |
5562be13 | 685 | select BR2_PACKAGE_LIBPTHREAD_STUBS |
2cd9121c AVEM |
686 | help |
687 | For consistency reason, the pthread-stubs package has been | |
5562be13 | 688 | renamed to libpthread-stubs. |
2cd9121c | 689 | |
67eaf705 YM |
690 | ############################################################################### |
691 | comment "Legacy options removed in 2012.08" | |
ebcfa987 | 692 | |
26803e88 AVEM |
693 | config BR2_PACKAGE_GETTEXT_STATIC |
694 | bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB" | |
695 | select BR2_LEGACY | |
696 | help | |
697 | To build a static gettext library, select BR2_PREFER_STATIC_LIB. | |
698 | ||
699 | ||
700 | config BR2_PACKAGE_LIBINTL | |
701 | bool "libintl" | |
702 | select BR2_LEGACY | |
703 | select BR2_PACKAGE_GETTEXT | |
704 | help | |
705 | libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now | |
706 | only installs the library, not the executables. | |
707 | ||
c430fab2 AVEM |
708 | config BR2_PACKAGE_INPUT_TOOLS_EVTEST |
709 | bool "input-tools evtest is now a separate package evtest" | |
710 | select BR2_LEGACY | |
711 | select BR2_PACKAGE_EVTEST | |
712 | help | |
713 | The evtest program from input-tools is now a separate package. | |
714 | ||
57133825 SZ |
715 | config BR2_BFIN_FDPIC |
716 | bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC" | |
717 | select BR2_BINFMT_FDPIC | |
718 | select BR2_LEGACY | |
719 | ||
720 | config BR2_BFIN_FLAT | |
721 | bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT" | |
722 | select BR2_BINFMT_FLAT | |
723 | select BR2_LEGACY | |
724 | ||
a91a5c16 | 725 | endmenu |