blob: 09e12878da16c1f574c06a6bf8550c5d8890fb0a [file] [log] [blame]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00001#
2# Config.in.legacy - support for backward compatibility
3#
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +02004# 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.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00007#
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.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020014#
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]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000054
55config 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
65comment "Legacy detected: check the content of the menu below"
66 depends on BR2_LEGACY
67
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +000068menu "Legacy config options"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000069
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +000070if BR2_LEGACY
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +020071comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +000072comment "Your old configuration uses legacy options that no "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +020073comment "longer exist in buildroot, as indicated in the menu "
74comment "below. As long as these options stay selected, or in"
75comment "case of string options are non-empty, the build "
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +000076comment "will fail. "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +020077comment "* "
78comment "Where possible, an automatic conversion from old to "
79comment "new symbols has been performed. Before making any "
80comment "change in this legacy menu, make sure to exit the "
81comment "configuration editor a first time and save the "
82comment "configuration. Otherwise, the automatic conversion "
83comment "of symbols will be lost. "
84comment "* "
85comment "After this initial save, reopen the configuration "
86comment "editor, inspect the options selected below, read "
87comment "their help texts, and verify/update the new "
88comment "configuration in the corresponding configuration "
89comment "menus. When everything is ok, you can disable the "
90comment "legacy options in the menu below. Once you have "
91comment "disabled all legacy options, this text will "
92comment "disappear and you will be able to start the build. "
93comment "* "
Yann E. MORINd2e706c2013-06-30 00:38:13 +020094comment "Note: at some point in the future, the oldest legacy"
95comment "options will be removed, and configuration files "
96comment "that still have those options set, will fail to "
97comment "build, or run, in unpredictable ways. "
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +020098comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +000099endif
100
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200101###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +0100102comment "Legacy options removed in 2014.02"
103
Thomas Petazzonie543f5a2014-02-04 15:25:34 +0100104config 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
110config 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
116config 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
Thomas De Schampheleireddf54242014-02-05 14:50:53 +0100122config BR2_PACKAGE_XSTROKE
123 bool "xstroke has been removed"
124 select BR2_LEGACY
125 help
126 The 'xstroke' package has been removed since it has been
127 deprecated for more than four buildroot releases.
128
Thomas De Schampheleire0a077312014-01-21 08:54:12 +0100129config BR2_PACKAGE_LZMA
130 bool "lzma target package has been removed"
131 select BR2_LEGACY
132 help
133 The 'lzma' target package has been removed since it has been
134 deprecated for more than four buildroot releases.
135 Note: generating lzma-compressed rootfs images is still supported.
136
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +0100137config BR2_PACKAGE_TTCP
138 bool "ttcp has been removed"
139 select BR2_LEGACY
140 help
141 The 'ttcp' package has been removed since it has been
142 deprecated for more than four buildroot releases.
143
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +0000144config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +0100145 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +0000146 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +0100147 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +0000148 help
149 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +0100150 to 'libllcp'. We have added a new package for 'libllcp' and bumped
151 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +0000152
Marcelo GutiƩrrez(UTN/FRH)06c82122014-01-21 14:08:28 +0000153config BR2_PACKAGE_MYSQL_CLIENT
154 bool "MySQL client renamed to MySQL"
155 select BR2_LEGACY
156 select BR2_PACKAGE_MYSQL
157 help
158 The option has been renamed BR2_PACKAGE_MYSQL
159
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +0100160config BR2_PACKAGE_SQUASHFS3
161 bool "squashfs3 has been removed"
162 select BR2_LEGACY
163 select BR2_PACKAGE_SQUASHFS
164 help
165 The 'squashfs3' package has been removed since it has been
166 deprecated for more than four buildroot releases. Package
167 'squashfs' (4) has been selected automatically as replacement.
168
169config BR2_TARGET_ROOTFS_SQUASHFS3
170 bool "squashfs3 rootfs support has been removed"
171 select BR2_LEGACY
172 help
173 Together with the removal of the squashfs3 package, support
174 for squashfs3 root filesystems has been removed too. Squashfs
175 root filesystems will automatically use squashfs4 now.
176
Arnaud Aujon560fe852013-12-15 20:23:12 +0100177config BR2_PACKAGE_NETKITBASE
178 bool "netkitbase has been removed"
179 select BR2_LEGACY
180 help
181 The 'netkitbase' package has been removed since it has been
182 deprecated since 2012.11. This package provided 'inetd'
183 which is replaced by 'xinet' and 'ping' which is replaced by
184 'busybox' or 'fping'.
185
186config BR2_PACKAGE_NETKITTELNET
187 bool "netkittelnet has been removed"
188 select BR2_LEGACY
189 help
190 The 'netkittelnet' package has been removed since it has
191 been deprecated since 2012.11. 'busybox' provides a telnet
192 client and should be used instead.
193
Francois Perrad63058f82014-01-11 16:42:09 +0100194config BR2_PACKAGE_LUASQL
195 bool "luasql has been replaced by luasql-sqlite3"
196 select BR2_PACKAGE_LUASQL_SQLITE3
197 select BR2_LEGACY
198 help
199 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
200
Francois Perrada6c53472014-01-11 16:42:08 +0100201config BR2_PACKAGE_LUACJSON
202 bool "luacjson has been replaced by lua-cjson"
203 select BR2_PACKAGE_LUA_CJSON
204 select BR2_LEGACY
205 help
206 The option has been renamed BR2_PACKAGE_LUA_CJSON.
207
Arnaud Aujon560fe852013-12-15 20:23:12 +0100208###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +0200209comment "Legacy options removed in 2013.11"
210
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +0100211config BR2_PACKAGE_LVM2_DMSETUP_ONLY
212 bool "lvm2's 'dmsetup only' option removed"
213 select BR2_LEGACY
214 help
215 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
216 led to problems with other packages that need the full lvm2
217 suite. Therefore, the option has been replaced with the positive
218 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
219
220# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
221# in order to automatically propagate old configs
222
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +0100223config BR2_PACKAGE_QT_JAVASCRIPTCORE
224 bool "qt javascriptcore option removed"
225 select BR2_LEGACY
226 help
227 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
228 force the activation or disabling of the JIT compiler in the
229 Qt Javascript interpreter. However, the JIT compiler is not
230 available for all architectures, so forcing its activation
231 does not always work. Moreover, Qt knows by itself for which
232 architectures JIT support is possible, and will
233 automatically enable it if possible.
234
235 Therefore, this option was in fact useless, and causing
236 build problems when enabled on architectures for which the
237 JIT support was not available. It has been removed, and
238 there is no replacement: Qt will enable JIT at compile time
239 when possible.
240
Thomas Petazzoni94c72082013-08-27 19:28:34 +0200241config BR2_PACKAGE_MODULE_INIT_TOOLS
242 bool "module-init-tools replaced by kmod"
243 select BR2_PACKAGE_KMOD
244 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +0100245 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +0200246 help
247 The 'module-init-tools' package has been removed, since it
248 has been depracated upstream and replaced by 'kmod'.
249
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +0200250config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
251 string "u-boot: the git repository URL option has been renamed"
252 help
253 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
254 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
255
256config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
257 bool
258 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
259 select BR2_LEGACY
260
261# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
262# boot/uboot/Config.in
263
264config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
265 string "u-boot: the git repository version option has been renamed"
266 help
267 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
268 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
269
270config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
271 bool
272 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
273 select BR2_LEGACY
274
275# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
276# boot/uboot/Config.in
277
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +0200278config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
279 string "linux: the git repository URL option has been renamed"
280 help
281 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
282 been renamed to
283 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
284
285config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
286 bool
287 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
288 select BR2_LEGACY
289
290# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
291# linux/Config.in
292
293config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
294 string "linux: the git repository version option has been renamed"
295 help
296 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
297 been renamed to
298 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
299
300config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
301 bool
302 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
303 select BR2_LEGACY
304
305# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
306# linux/Config.in
307
Thomas Petazzoni94c72082013-08-27 19:28:34 +0200308###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200309comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -0300310
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +0200311config BR2_ARM_OABI
312 bool "ARM OABI support has been removed"
313 select BR2_LEGACY
314 help
315 The support for the ARM OABI was deprecated since a while,
316 and has been removed completely from Buildroot. It is also
317 deprecated in upstream gcc, since gcc 4.7. People should
318 switch to EABI instead, which should not be a problem as
319 long as you don't have pre-built OABI binaries in your
320 system that you can't recompile.
321
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -0300322config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
323 bool "dosfstools dosfsck renamed to fsck.fat"
324 select BR2_LEGACY
325 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
326 help
327 dosfsck was renamed upstream to fsck.fat for consistency.
328
329config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
330 bool "dosfstools dosfslabel renamed to fatlabel"
331 select BR2_LEGACY
332 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
333 help
334 doslabel was renamed upstream to fatlabel for consistency.
335
336config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
337 bool "dosfstools mkdosfs renamed to mkfs.fat"
338 select BR2_LEGACY
339 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
340 help
341 mkdosfs was renamed upstream to mkfs.fat for consistency.
342
Thomas Petazzonie21db002013-06-30 21:28:57 +0200343config BR2_ELF2FLT
344 bool "the elf2flt option has been renamed"
345 select BR2_LEGACY
346 help
347 The BR2_ELF2FLT option has been renamed to
348 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
349 the package infrastructure.
350
Thomas Petazzonid8060052013-07-16 10:03:17 +0200351config BR2_VFP_FLOAT
352 bool "the ARM VFP floating point option has been renamed"
353 select BR2_LEGACY
354 help
355 Due to a major refactoring of the floating-point handling of
356 the ARM architecture support, the BR2_VFP_FLOAT option has
357 been replaced with a choice of options that allows to select
358 between various VFP versions/capabilities.
359
Samuel Martinba8f82b2013-08-30 06:08:59 +0200360config BR2_PACKAGE_GCC_TARGET
361 bool "gcc on the target filesystem has been removed"
362 select BR2_LEGACY
363 help
364 The support for gcc in the target filesystem was deprecated
365 since a while, and has been removed completely from Buildroot.
366 See Buildroot's documentation for more explanations.
367
368config BR2_HAVE_DEVFILES
369 bool "development files in target filesystem has been removed"
370 select BR2_LEGACY
371 help
372 The installation of the development files in the target
373 filesystem was deprecated since a while, and has been removed
374 completely from Buildroot.
375 See Buildroot's documentation for more explanations.
376
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200377###############################################################################
378comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +0000379
380config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
381 bool "Realtek 8192 replaced by Realtek 81xx"
382 select BR2_LEGACY
383 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
384 help
385 Now covers the whole Realtek 81xx familly: 8188/8192.
386
387config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
388 bool "Realtek 8712 replaced by Realtek 87xx"
389 select BR2_LEGACY
390 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
391 help
392 Now covers the whole Realtek 87xx familly: 8712/8723.
393
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200394###############################################################################
395comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +0000396
Gustavo Zacarias94744212013-04-04 07:29:45 +0000397config BR2_sa110
398 bool "sa110 ARM target switched to strongarm"
399 select BR2_LEGACY
400 select BR2_strongarm
401 help
402 The SA110 is the same as a generic StrongARM, it just differs
403 in speed, peripherals and cache.
404
405config BR2_sa1100
406 bool "sa1100 ARM target switched to strongarm"
407 select BR2_LEGACY
408 select BR2_strongarm
409 help
410 The SA1100 is the same as a generic StrongARM, it just differs
411 in speed, peripherals and cache.
412
Thomas Petazzoni29b83f02013-03-07 10:45:24 +0000413config BR2_PACKAGE_GDISK
414 bool "gdisk has been replaced by gptfdisk"
415 select BR2_LEGACY
416 select BR2_PACKAGE_GPTFDISK
417 help
418 The option has been renamed BR2_PACKAGE_GPTFDISK.
419
420config BR2_PACKAGE_GDISK_GDISK
421 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
422 select BR2_LEGACY
423 select BR2_PACKAGE_GPTFDISK
424 select BR2_PACKAGE_GPTFDISK_GDISK
425 help
426 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
427
428config BR2_PACKAGE_GDISK_SGDISK
429 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
430 select BR2_LEGACY
431 select BR2_PACKAGE_GPTFDISK
432 select BR2_PACKAGE_GPTFDISK_SGDISK
433 help
434 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000435
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +0000436config BR2_PACKAGE_GDB_HOST
437 bool "gdb for the host option has been renamed"
438 select BR2_PACKAGE_HOST_GDB
439 select BR2_LEGACY
440 help
441 Due to the conversion of gdb to the package infrastructure,
442 the BR2_PACKAGE_GDB_HOST option has been renamed
443 BR2_PACKAGE_HOST_GDB.
444
Carsten Schoenert76de0f82013-03-10 08:32:46 +0000445config BR2_PACKAGE_DIRECTB_DITHER_RGB16
446 bool "DirectFB RGB16 dithering option has been renamed"
447 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
448 select BR2_LEGACY
449 help
450 The option has been renamed
451 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
452
453config BR2_PACKAGE_DIRECTB_TESTS
454 bool "DirectFB Tests option has been renamed"
455 select BR2_PACKAGE_DIRECTFB_TESTS
456 select BR2_LEGACY
457 help
458 The option has been renamed
459 BR2_PACKAGE_DIRECTFB_TESTS.
460
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200461###############################################################################
462comment "Legacy options removed in 2012.11"
463
Thomas Petazzoni12ccc432013-02-07 11:58:45 +0000464config BR2_PACKAGE_CUSTOMIZE
465 bool "customize package has been removed"
466 select BR2_LEGACY
467 help
468 The 'customize' special package has been removed. Instead,
469 we recommend to create either your own packages, or use a
470 post-build script to customize your root filesystem. See
471 Buildroot's documentation for more details.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +0000472
473config BR2_PACKAGE_XSERVER_xorg
474 bool "X.org modular server"
475 select BR2_LEGACY
476 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
477 help
478 The option has been renamed
479 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
480
481config BR2_PACKAGE_XSERVER_tinyx
482 bool "KDrive / TinyX server"
483 select BR2_LEGACY
484 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
485 help
486 The option has been renamed
487 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
488
489config BR2_PACKAGE_PTHREAD_STUBS
490 bool "pthread-stubs option has been renamed"
491 select BR2_LEGACY
492 select BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
Thomas Petazzoni7d97a092013-04-29 10:29:34 +0000493 depends on BR2_PACKAGE_XORG7
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +0000494 help
495 For consistency reason, the pthread-stubs package has been
496 renamed to xlib_libpthread-stubs.
497
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200498###############################################################################
499comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000500
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +0000501config BR2_PACKAGE_GETTEXT_STATIC
502 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
503 select BR2_LEGACY
504 help
505 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
506
507
508config BR2_PACKAGE_LIBINTL
509 bool "libintl"
510 select BR2_LEGACY
511 select BR2_PACKAGE_GETTEXT
512 help
513 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
514 only installs the library, not the executables.
515
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +0000516config BR2_PACKAGE_INPUT_TOOLS_EVTEST
517 bool "input-tools evtest is now a separate package evtest"
518 select BR2_LEGACY
519 select BR2_PACKAGE_EVTEST
520 help
521 The evtest program from input-tools is now a separate package.
522
Sonic Zhang57133822013-05-03 00:39:34 +0000523config BR2_BFIN_FDPIC
524 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
525 select BR2_BINFMT_FDPIC
526 select BR2_LEGACY
527
528config BR2_BFIN_FLAT
529 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
530 select BR2_BINFMT_FLAT
531 select BR2_LEGACY
532
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000533endmenu