]>
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 | |
8b2e2357 | 101 | ############################################################################### |
f169e5e1 YM |
102 | comment "Legacy options removed in 2014.02" |
103 | ||
e543f5a1 TP |
104 | config BR2_sh2 |
105 | bool "sh2 support removed" | |
106 | help | |
107 | Due to an inexistent user base and generally poor Linux | |
108 | support, the support for the SH2 architecture was removed. | |
109 | ||
110 | config BR2_sh3 | |
111 | bool "sh3 support removed" | |
112 | help | |
113 | Due to an inexistent user base and generally poor Linux | |
114 | support, the support for the SH3 architecture was removed. | |
115 | ||
116 | config BR2_sh3eb | |
117 | bool "sh3eb support removed" | |
118 | help | |
119 | Due to an inexistent user base and generally poor Linux | |
120 | support, the support for the SH3eb architecture was removed. | |
121 | ||
0a077319 TDS |
122 | config BR2_PACKAGE_LZMA |
123 | bool "lzma target package has been removed" | |
124 | select BR2_LEGACY | |
125 | help | |
126 | The 'lzma' target package has been removed since it has been | |
127 | deprecated for more than four buildroot releases. | |
128 | Note: generating lzma-compressed rootfs images is still supported. | |
129 | ||
7ef5c3a5 TDS |
130 | config BR2_PACKAGE_TTCP |
131 | bool "ttcp has been removed" | |
132 | select BR2_LEGACY | |
133 | help | |
134 | The 'ttcp' package has been removed since it has been | |
135 | deprecated for more than four buildroot releases. | |
136 | ||
8b2e2357 | 137 | config BR2_PACKAGE_LIBNFC_LLCP |
93341046 | 138 | bool "libnfc-llcp has been replaced by libllcp" |
8b2e2357 | 139 | select BR2_LEGACY |
93341046 | 140 | select BR2_PACKAGE_LIBLLCP |
8b2e2357 VOR |
141 | help |
142 | The 'libnfc-llcp' package has been removed since upstream renamed | |
93341046 TDS |
143 | to 'libllcp'. We have added a new package for 'libllcp' and bumped |
144 | the version at the same time. | |
8b2e2357 | 145 | |
06c82128 MGUF |
146 | config BR2_PACKAGE_MYSQL_CLIENT |
147 | bool "MySQL client renamed to MySQL" | |
148 | select BR2_LEGACY | |
149 | select BR2_PACKAGE_MYSQL | |
150 | help | |
151 | The option has been renamed BR2_PACKAGE_MYSQL | |
152 | ||
2f7a53ee TDS |
153 | config BR2_PACKAGE_SQUASHFS3 |
154 | bool "squashfs3 has been removed" | |
155 | select BR2_LEGACY | |
156 | select BR2_PACKAGE_SQUASHFS | |
157 | help | |
158 | The 'squashfs3' package has been removed since it has been | |
159 | deprecated for more than four buildroot releases. Package | |
160 | 'squashfs' (4) has been selected automatically as replacement. | |
161 | ||
162 | config BR2_TARGET_ROOTFS_SQUASHFS3 | |
163 | bool "squashfs3 rootfs support has been removed" | |
164 | select BR2_LEGACY | |
165 | help | |
166 | Together with the removal of the squashfs3 package, support | |
167 | for squashfs3 root filesystems has been removed too. Squashfs | |
168 | root filesystems will automatically use squashfs4 now. | |
169 | ||
560fe85b AA |
170 | config BR2_PACKAGE_NETKITBASE |
171 | bool "netkitbase has been removed" | |
172 | select BR2_LEGACY | |
173 | help | |
174 | The 'netkitbase' package has been removed since it has been | |
175 | deprecated since 2012.11. This package provided 'inetd' | |
176 | which is replaced by 'xinet' and 'ping' which is replaced by | |
177 | 'busybox' or 'fping'. | |
178 | ||
179 | config BR2_PACKAGE_NETKITTELNET | |
180 | bool "netkittelnet has been removed" | |
181 | select BR2_LEGACY | |
182 | help | |
183 | The 'netkittelnet' package has been removed since it has | |
184 | been deprecated since 2012.11. 'busybox' provides a telnet | |
185 | client and should be used instead. | |
186 | ||
63058f8b FP |
187 | config BR2_PACKAGE_LUASQL |
188 | bool "luasql has been replaced by luasql-sqlite3" | |
189 | select BR2_PACKAGE_LUASQL_SQLITE3 | |
190 | select BR2_LEGACY | |
191 | help | |
192 | The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3. | |
193 | ||
a6c53478 FP |
194 | config BR2_PACKAGE_LUACJSON |
195 | bool "luacjson has been replaced by lua-cjson" | |
196 | select BR2_PACKAGE_LUA_CJSON | |
197 | select BR2_LEGACY | |
198 | help | |
199 | The option has been renamed BR2_PACKAGE_LUA_CJSON. | |
200 | ||
94c72087 TP |
201 | ############################################################################### |
202 | comment "Legacy options removed in 2013.11" | |
203 | ||
ff0f55e3 AV |
204 | config BR2_PACKAGE_LVM2_DMSETUP_ONLY |
205 | bool "lvm2's 'dmsetup only' option removed" | |
206 | select BR2_LEGACY | |
207 | help | |
208 | The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which | |
209 | led to problems with other packages that need the full lvm2 | |
210 | suite. Therefore, the option has been replaced with the positive | |
211 | BR2_PACKAGE_LVM2_STANDARD_INSTALL option. | |
212 | ||
213 | # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in | |
214 | # in order to automatically propagate old configs | |
215 | ||
1f9c04f6 TP |
216 | config BR2_PACKAGE_QT_JAVASCRIPTCORE |
217 | bool "qt javascriptcore option removed" | |
218 | select BR2_LEGACY | |
219 | help | |
220 | The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to | |
221 | force the activation or disabling of the JIT compiler in the | |
222 | Qt Javascript interpreter. However, the JIT compiler is not | |
223 | available for all architectures, so forcing its activation | |
224 | does not always work. Moreover, Qt knows by itself for which | |
225 | architectures JIT support is possible, and will | |
226 | automatically enable it if possible. | |
227 | ||
228 | Therefore, this option was in fact useless, and causing | |
229 | build problems when enabled on architectures for which the | |
230 | JIT support was not available. It has been removed, and | |
231 | there is no replacement: Qt will enable JIT at compile time | |
232 | when possible. | |
233 | ||
94c72087 TP |
234 | config BR2_PACKAGE_MODULE_INIT_TOOLS |
235 | bool "module-init-tools replaced by kmod" | |
236 | select BR2_PACKAGE_KMOD | |
237 | select BR2_PACKAGE_KMOD_TOOLS | |
0f401f91 | 238 | select BR2_LEGACY |
94c72087 TP |
239 | help |
240 | The 'module-init-tools' package has been removed, since it | |
241 | has been depracated upstream and replaced by 'kmod'. | |
242 | ||
f2c2193b TDS |
243 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL |
244 | string "u-boot: the git repository URL option has been renamed" | |
245 | help | |
246 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has | |
247 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL. | |
248 | ||
249 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP | |
250 | bool | |
251 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != "" | |
252 | select BR2_LEGACY | |
253 | ||
254 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from | |
255 | # boot/uboot/Config.in | |
256 | ||
257 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION | |
258 | string "u-boot: the git repository version option has been renamed" | |
259 | help | |
260 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has | |
261 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION. | |
262 | ||
263 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP | |
264 | bool | |
265 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" | |
266 | select BR2_LEGACY | |
267 | ||
268 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from | |
269 | # boot/uboot/Config.in | |
270 | ||
63ecded2 TDS |
271 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL |
272 | string "linux: the git repository URL option has been renamed" | |
273 | help | |
274 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has | |
275 | been renamed to | |
276 | BR2_LINUX_KERNEL_CUSTOM_REPO_URL. | |
277 | ||
278 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP | |
279 | bool | |
280 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != "" | |
281 | select BR2_LEGACY | |
282 | ||
283 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from | |
284 | # linux/Config.in | |
285 | ||
286 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION | |
287 | string "linux: the git repository version option has been renamed" | |
288 | help | |
289 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has | |
290 | been renamed to | |
291 | BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION. | |
292 | ||
293 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP | |
294 | bool | |
295 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" | |
296 | select BR2_LEGACY | |
297 | ||
298 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from | |
299 | # linux/Config.in | |
300 | ||
67eaf705 YM |
301 | ############################################################################### |
302 | comment "Legacy options removed in 2013.08" | |
c6e4fcb1 | 303 | |
1f3078b1 TP |
304 | config BR2_ARM_OABI |
305 | bool "ARM OABI support has been removed" | |
306 | select BR2_LEGACY | |
307 | help | |
308 | The support for the ARM OABI was deprecated since a while, | |
309 | and has been removed completely from Buildroot. It is also | |
310 | deprecated in upstream gcc, since gcc 4.7. People should | |
311 | switch to EABI instead, which should not be a problem as | |
312 | long as you don't have pre-built OABI binaries in your | |
313 | system that you can't recompile. | |
314 | ||
c6e4fcb1 GZ |
315 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK |
316 | bool "dosfstools dosfsck renamed to fsck.fat" | |
317 | select BR2_LEGACY | |
318 | select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT | |
319 | help | |
320 | dosfsck was renamed upstream to fsck.fat for consistency. | |
321 | ||
322 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL | |
323 | bool "dosfstools dosfslabel renamed to fatlabel" | |
324 | select BR2_LEGACY | |
325 | select BR2_PACKAGE_DOSFSTOOLS_FATLABEL | |
326 | help | |
327 | doslabel was renamed upstream to fatlabel for consistency. | |
328 | ||
329 | config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS | |
330 | bool "dosfstools mkdosfs renamed to mkfs.fat" | |
331 | select BR2_LEGACY | |
332 | select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT | |
333 | help | |
334 | mkdosfs was renamed upstream to mkfs.fat for consistency. | |
335 | ||
e21db000 TP |
336 | config BR2_ELF2FLT |
337 | bool "the elf2flt option has been renamed" | |
338 | select BR2_LEGACY | |
339 | help | |
340 | The BR2_ELF2FLT option has been renamed to | |
341 | BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to | |
342 | the package infrastructure. | |
343 | ||
d806005b TP |
344 | config BR2_VFP_FLOAT |
345 | bool "the ARM VFP floating point option has been renamed" | |
346 | select BR2_LEGACY | |
347 | help | |
348 | Due to a major refactoring of the floating-point handling of | |
349 | the ARM architecture support, the BR2_VFP_FLOAT option has | |
350 | been replaced with a choice of options that allows to select | |
351 | between various VFP versions/capabilities. | |
352 | ||
ba8f82b0 SM |
353 | config BR2_PACKAGE_GCC_TARGET |
354 | bool "gcc on the target filesystem has been removed" | |
355 | select BR2_LEGACY | |
356 | help | |
357 | The support for gcc in the target filesystem was deprecated | |
358 | since a while, and has been removed completely from Buildroot. | |
359 | See Buildroot's documentation for more explanations. | |
360 | ||
361 | config BR2_HAVE_DEVFILES | |
362 | bool "development files in target filesystem has been removed" | |
363 | select BR2_LEGACY | |
364 | help | |
365 | The installation of the development files in the target | |
366 | filesystem was deprecated since a while, and has been removed | |
367 | completely from Buildroot. | |
368 | See Buildroot's documentation for more explanations. | |
369 | ||
67eaf705 YM |
370 | ############################################################################### |
371 | comment "Legacy options removed in 2013.05" | |
860d37a2 YM |
372 | |
373 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192 | |
374 | bool "Realtek 8192 replaced by Realtek 81xx" | |
375 | select BR2_LEGACY | |
376 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX | |
377 | help | |
378 | Now covers the whole Realtek 81xx familly: 8188/8192. | |
379 | ||
380 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712 | |
381 | bool "Realtek 8712 replaced by Realtek 87xx" | |
382 | select BR2_LEGACY | |
383 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX | |
384 | help | |
385 | Now covers the whole Realtek 87xx familly: 8712/8723. | |
386 | ||
67eaf705 YM |
387 | ############################################################################### |
388 | comment "Legacy options removed in 2013.02" | |
29b83f05 | 389 | |
9474421d GZ |
390 | config BR2_sa110 |
391 | bool "sa110 ARM target switched to strongarm" | |
392 | select BR2_LEGACY | |
393 | select BR2_strongarm | |
394 | help | |
395 | The SA110 is the same as a generic StrongARM, it just differs | |
396 | in speed, peripherals and cache. | |
397 | ||
398 | config BR2_sa1100 | |
399 | bool "sa1100 ARM target switched to strongarm" | |
400 | select BR2_LEGACY | |
401 | select BR2_strongarm | |
402 | help | |
403 | The SA1100 is the same as a generic StrongARM, it just differs | |
404 | in speed, peripherals and cache. | |
405 | ||
29b83f05 TP |
406 | config BR2_PACKAGE_GDISK |
407 | bool "gdisk has been replaced by gptfdisk" | |
408 | select BR2_LEGACY | |
409 | select BR2_PACKAGE_GPTFDISK | |
410 | help | |
411 | The option has been renamed BR2_PACKAGE_GPTFDISK. | |
412 | ||
413 | config BR2_PACKAGE_GDISK_GDISK | |
414 | bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk" | |
415 | select BR2_LEGACY | |
416 | select BR2_PACKAGE_GPTFDISK | |
417 | select BR2_PACKAGE_GPTFDISK_GDISK | |
418 | help | |
419 | The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK. | |
420 | ||
421 | config BR2_PACKAGE_GDISK_SGDISK | |
422 | bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk" | |
423 | select BR2_LEGACY | |
424 | select BR2_PACKAGE_GPTFDISK | |
425 | select BR2_PACKAGE_GPTFDISK_SGDISK | |
426 | help | |
427 | The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK. | |
ebcfa987 | 428 | |
a0b6faaa TP |
429 | config BR2_PACKAGE_GDB_HOST |
430 | bool "gdb for the host option has been renamed" | |
431 | select BR2_PACKAGE_HOST_GDB | |
432 | select BR2_LEGACY | |
433 | help | |
434 | Due to the conversion of gdb to the package infrastructure, | |
435 | the BR2_PACKAGE_GDB_HOST option has been renamed | |
436 | BR2_PACKAGE_HOST_GDB. | |
437 | ||
76de0f80 CS |
438 | config BR2_PACKAGE_DIRECTB_DITHER_RGB16 |
439 | bool "DirectFB RGB16 dithering option has been renamed" | |
440 | select BR2_PACKAGE_DIRECTFB_DITHER_RGB16 | |
441 | select BR2_LEGACY | |
442 | help | |
443 | The option has been renamed | |
444 | BR2_PACKAGE_DIRECTFB_DITHER_RGB16. | |
445 | ||
446 | config BR2_PACKAGE_DIRECTB_TESTS | |
447 | bool "DirectFB Tests option has been renamed" | |
448 | select BR2_PACKAGE_DIRECTFB_TESTS | |
449 | select BR2_LEGACY | |
450 | help | |
451 | The option has been renamed | |
452 | BR2_PACKAGE_DIRECTFB_TESTS. | |
453 | ||
67eaf705 YM |
454 | ############################################################################### |
455 | comment "Legacy options removed in 2012.11" | |
456 | ||
12ccc43f TP |
457 | config BR2_PACKAGE_CUSTOMIZE |
458 | bool "customize package has been removed" | |
459 | select BR2_LEGACY | |
460 | help | |
461 | The 'customize' special package has been removed. Instead, | |
462 | we recommend to create either your own packages, or use a | |
463 | post-build script to customize your root filesystem. See | |
464 | Buildroot's documentation for more details. | |
2cd9121c AVEM |
465 | |
466 | config BR2_PACKAGE_XSERVER_xorg | |
467 | bool "X.org modular server" | |
468 | select BR2_LEGACY | |
469 | select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR | |
470 | help | |
471 | The option has been renamed | |
472 | BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR. | |
473 | ||
474 | config BR2_PACKAGE_XSERVER_tinyx | |
475 | bool "KDrive / TinyX server" | |
476 | select BR2_LEGACY | |
477 | select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE | |
478 | help | |
479 | The option has been renamed | |
480 | BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE. | |
481 | ||
482 | config BR2_PACKAGE_PTHREAD_STUBS | |
483 | bool "pthread-stubs option has been renamed" | |
484 | select BR2_LEGACY | |
485 | select BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS | |
7d97a094 | 486 | depends on BR2_PACKAGE_XORG7 |
2cd9121c AVEM |
487 | help |
488 | For consistency reason, the pthread-stubs package has been | |
489 | renamed to xlib_libpthread-stubs. | |
490 | ||
67eaf705 YM |
491 | ############################################################################### |
492 | comment "Legacy options removed in 2012.08" | |
ebcfa987 | 493 | |
26803e88 AVEM |
494 | config BR2_PACKAGE_GETTEXT_STATIC |
495 | bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB" | |
496 | select BR2_LEGACY | |
497 | help | |
498 | To build a static gettext library, select BR2_PREFER_STATIC_LIB. | |
499 | ||
500 | ||
501 | config BR2_PACKAGE_LIBINTL | |
502 | bool "libintl" | |
503 | select BR2_LEGACY | |
504 | select BR2_PACKAGE_GETTEXT | |
505 | help | |
506 | libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now | |
507 | only installs the library, not the executables. | |
508 | ||
c430fab2 AVEM |
509 | config BR2_PACKAGE_INPUT_TOOLS_EVTEST |
510 | bool "input-tools evtest is now a separate package evtest" | |
511 | select BR2_LEGACY | |
512 | select BR2_PACKAGE_EVTEST | |
513 | help | |
514 | The evtest program from input-tools is now a separate package. | |
515 | ||
57133825 SZ |
516 | config BR2_BFIN_FDPIC |
517 | bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC" | |
518 | select BR2_BINFMT_FDPIC | |
519 | select BR2_LEGACY | |
520 | ||
521 | config BR2_BFIN_FLAT | |
522 | bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT" | |
523 | select BR2_BINFMT_FLAT | |
524 | select BR2_LEGACY | |
525 | ||
a91a5c16 | 526 | endmenu |