blob: 5b1460cc5ebabe027b6c4c0f7e72fe78ff8f6ea8 [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. MORIN5cd1c4f2014-06-02 22:27:22 +0200102comment "Legacy options removed in 2014.08"
103
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +0200104config BR2_PACKAGE_LIBELF
105 bool "libelf has been removed"
106 select BR2_PACKAGE_ELFUTILS
107 select BR2_LEGACY
108 help
109 The libelf package provided an old version of the libelf library
110 and is deprecated. The libelf library is now provided by the
111 elfutils package.
112
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +0200113config BR2_KERNEL_HEADERS_3_8
114 bool "kernel headers version 3.8.x are no longer supported"
115 select BR2_KERNEL_HEADERS_3_9
116 select BR2_LEGACY
117 help
118 Version 3.8.x of the Linux kernel headers have been deprecated
119 for more than four buildroot releases and are now removed.
120 As an alternative, version 3.9.x of the headers have been
121 automatically selected in your configuration.
122
Thomas Petazzoni187b4d62014-06-01 22:23:30 +0200123config BR2_PACKAGE_GETTEXT_TOOLS
124 bool "support for gettext-tools on target has been removed"
125 select BR2_LEGACY
126 help
127 The option to install the gettext utilities on the target
128 has been removed. This is not necessary as Buildroot is not
129 designed to provide a full development environment on the
130 target. gettext tools should be used on the build machine
131 instead.
132
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +0200133config BR2_PACKAGE_PROCPS
134 bool "procps has been replaced by procps-ng"
135 select BR2_PACKAGE_PROCPS_NG
136 select BR2_LEGACY
137 help
138 The procps package has been replaced by the equivalent procps-ng.
139
Thomas Petazzonid4839ff2014-07-01 20:03:02 +0200140config BR2_BINUTILS_VERSION_2_20_1
141 bool "binutils 2.20.1 has been removed"
142 select BR2_LEGACY
143 help
144 The 2.20.1 version of binutils has been removed. Use a newer
145 version instead.
146
147config BR2_BINUTILS_VERSION_2_21
148 bool "binutils 2.21 has been removed"
149 select BR2_LEGACY
150 help
151 The 2.21 version of binutils has been removed. Use a newer
152 version instead.
153
154config BR2_BINUTILS_VERSION_2_23_1
155 bool "binutils 2.23.1 has been removed"
156 select BR2_LEGACY
157 help
158 The 2.23.1 version of binutils has been removed. Use a newer
159 version instead.
160
Thomas Petazzoni506b9642014-07-01 20:03:03 +0200161config BR2_UCLIBC_VERSION_0_9_32
162 bool "uclibc 0.9.32 has been removed"
163 select BR2_LEGACY
164 help
165 The 0.9.32 version of uClibc has been removed. Use a newer
166 version instead.
167
Thomas Petazzonid10e0802014-07-01 20:03:06 +0200168config BR2_GCC_VERSION_4_3_X
169 bool "gcc 4.3.x has been removed"
170 select BR2_LEGACY
171 help
172 The 4.3.x version of gcc has been removed. Use a newer
173 version instead.
174
175config BR2_GCC_VERSION_4_6_X
176 bool "gcc 4.6.x has been removed"
177 select BR2_LEGACY
178 help
179 The 4.6.x version of gcc has been removed. Use a newer
180 version instead.
181
Thomas Petazzoni02d85f62014-07-01 20:03:08 +0200182config BR2_GDB_VERSION_7_4
183 bool "gdb 7.4 has been removed"
184 select BR2_LEGACY
185 help
186 The 7.4 version of gdb has been removed. Use a newer version
187 instead.
188
189config BR2_GDB_VERSION_7_5
190 bool "gdb 7.5 has been removed"
191 select BR2_LEGACY
192 help
193 The 7.5 version of gdb has been removed. Use a newer version
194 instead.
195
Thomas Petazzonib18dca02014-07-01 20:03:09 +0200196config BR2_BUSYBOX_VERSION_1_19_X
197 bool "busybox version selection has been removed"
198 select BR2_LEGACY
199 help
200 The possibility of selecting the Busybox version has been
201 removed. Use the latest version provided by the Busybox
202 package instead.
203
204config BR2_BUSYBOX_VERSION_1_20_X
205 bool "busybox version selection has been removed"
206 select BR2_LEGACY
207 help
208 The possibility of selecting the Busybox version has been
209 removed. Use the latest version provided by the Busybox
210 package instead.
211
212config BR2_BUSYBOX_VERSION_1_21_X
213 bool "busybox version selection has been removed"
214 select BR2_LEGACY
215 help
216 The possibility of selecting the Busybox version has been
217 removed. Use the latest version provided by the Busybox
218 package instead.
219
Ezequiel García07ac0452014-07-05 18:07:40 -0300220config BR2_PACKAGE_LIBV4L_DECODE_TM6000
221 bool "decode_tm6000"
222 select BR2_PACKAGE_LIBV4L_UTILS
223 select BR2_LEGACY
224 help
225 This libv4l option has been deprecated and replaced by a single
226 option to build all the libv4l utilities.
227
228config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
229 bool "ir-keytable"
230 select BR2_PACKAGE_LIBV4L_UTILS
231 select BR2_LEGACY
232 help
233 This libv4l option has been deprecated and replaced by a single
234 option to build all the libv4l utilities.
235
236config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
237 bool "v4l2-compliance"
238 select BR2_PACKAGE_LIBV4L_UTILS
239 select BR2_LEGACY
240 help
241 This libv4l option has been deprecated and replaced by a single
242 option to build all the libv4l utilities.
243
244config BR2_PACKAGE_LIBV4L_V4L2_CTL
245 bool "v4l2-ctl"
246 select BR2_PACKAGE_LIBV4L_UTILS
247 select BR2_LEGACY
248 help
249 This libv4l option has been deprecated and replaced by a single
250 option to build all the libv4l utilities.
251
252config BR2_PACKAGE_LIBV4L_V4L2_DBG
253 bool "v4l2-dbg"
254 select BR2_PACKAGE_LIBV4L_UTILS
255 select BR2_LEGACY
256 help
257 This libv4l option has been deprecated and replaced by a single
258 option to build all the libv4l utilities.
259
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +0200260###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100261comment "Legacy options removed in 2014.05"
262
Peter Seiderer4990a382014-04-23 00:12:23 +0200263config BR2_PACKAGE_EVTEST_CAPTURE
264 bool "evtest-capture support removed (dropped since evtest 1.31)"
265 select BR2_LEGACY
266 help
267 Support for evtest-capture has been removed (dropped from
268 evtest package since version 1.31), use evemu package
269 instead.
270
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +0200271config BR2_KERNEL_HEADERS_3_6
272 bool "kernel headers version 3.6.x are no longer supported"
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +0200273 select BR2_KERNEL_HEADERS_3_9
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +0200274 select BR2_LEGACY
275 help
276 Version 3.6.x of the Linux kernel headers have been deprecated
277 for more than four buildroot releases and are now removed.
278 As an alternative, version 3.8.x of the headers have been
279 automatically selected in your configuration.
280
281config BR2_KERNEL_HEADERS_3_7
282 bool "kernel headers version 3.7.x are no longer supported"
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +0200283 select BR2_KERNEL_HEADERS_3_9
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +0200284 select BR2_LEGACY
285 help
286 Version 3.7.x of the Linux kernel headers have been deprecated
287 for more than four buildroot releases and are now removed.
288 As an alternative, version 3.8.x of the headers have been
289 automatically selected in your configuration.
290
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +0200291config BR2_PACKAGE_VALA
292 bool "vala target package has been removed"
293 select BR2_LEGACY
294 help
295 The 'vala' target package has been removed since it has been
296 deprecated for more than four buildroot releases.
297 Note: the host vala package still exists.
298
Yann E. MORINd6a37912014-04-07 21:58:03 +0200299config BR2_TARGET_TZ_ZONELIST
300 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
301
302config BR2_PACKAGE_TZDATA_ZONELIST
303 string "tzdata: the timezone list option has been renamed"
304 help
305 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
306 BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
307 menu. You'll need to select BR2_TARGET_TZ_INFO.
308
309config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
310 bool
311 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
312 select BR2_LEGACY
313
Yann E. MORINc97aeb72014-04-05 17:21:43 +0200314config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
315 bool "Lua command-line editing none has been renamed"
316 select BR2_LEGACY
317 help
318 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
319 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
320 it in the corresponding choice.
321
322config BR2_PACKAGE_LUA_INTERPRETER_READLINE
323 bool "Lua command-line editing using readline has been renamed"
324 select BR2_LEGACY
325 help
326 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
327 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
328 it in the corresponding choice.
329
330config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
331 bool "Lua command-line editing using linenoise has been renamed"
332 select BR2_LEGACY
333 help
334 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
335 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
336 it in the corresponding choice.
337
Yann E. MORIN365ae612014-03-28 01:00:24 +0100338config BR2_PACKAGE_DVB_APPS_UTILS
339 bool "dvb-apps utilities now built by default"
340 select BR2_LEGACY
341 help
342 The dvb-apps utilities are now always built when the dvb-apps
343 package is selected.
344
Yann E. MORIN971e3312014-03-01 15:52:56 +0100345config BR2_KERNEL_HEADERS_SNAP
346 bool "Local Linux snapshot support removed"
347 select BR2_LEGACY
348 help
349 Support for using a custom snapshot to install the Linux
350 kernel headers has been removed.
351
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100352config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
353 bool "/dev management by udev removed"
354 select BR2_LEGACY
355 help
356 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100357 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100358
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100359 Therefore, if you are not using 'systemd' as init system, you
360 must choose 'Dynamic using eudev' in the '/dev management'
361 menu to get the same behaviour as in your old configuration.
362
363 If you are using 'systemd', its internal implementation of
364 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100365
366 You must also check the packages depending on 'udev' are still
367 selected.
368
369config BR2_PACKAGE_UDEV
370 bool "udev is now a virtual package"
371 select BR2_LEGACY
372 select BR2_PACKAGE_HAS_UDEV
373 help
374 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100375 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100376
377 Your old configuration refers to packages depending on 'udev',
378 either for build or at runtime.
379
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100380 Check that a 'udev' provider is selected. If you are not using
381 'systemd' as init system, 'eudev' should be selected, which is
382 the case if '/dev management' is set to 'Dynamic using eudev'.
383
384 If you are using 'systemd', its internal implementation of 'udev'
385 is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100386
387config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100388 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100389 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100390 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
391 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100392 help
393 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100394 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100395
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100396 If you are not using 'systemd' as init system, udev rules
397 generation will be handled by 'eudev'. Check that
398 '/dev management' is set to 'Dynamic using eudev' to get
399 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100400
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100401 If you are using 'systemd', it internal implementation of 'udev'
402 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100403
404config BR2_PACKAGE_UDEV_ALL_EXTRAS
405 bool "udev extras removed"
406 select BR2_LEGACY
407 help
408 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100409 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100410
411 The option to enable the extra features of 'udev' (gudev, ...)
412 has been removed. These features are automatically enabled in
413 the 'udev' providers if the dependencies are selected. For
414 example, selecting 'libglib2' will trigger the build of gudev.
415
Bernd Kuhls5562be12014-03-01 16:41:10 +0100416config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
417 bool "xlib-libpthread-stubs option has been renamed"
418 depends on BR2_PACKAGE_XORG7
419 select BR2_LEGACY
420 select BR2_PACKAGE_LIBPTHREAD_STUBS
421 help
422 The pthread stubs neither depend on X11 nor Xlib. Thus the
423 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
424
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100425###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +0100426comment "Legacy options removed in 2014.02"
427
Thomas Petazzonie543f5a2014-02-04 15:25:34 +0100428config BR2_sh2
429 bool "sh2 support removed"
430 help
431 Due to an inexistent user base and generally poor Linux
432 support, the support for the SH2 architecture was removed.
433
434config BR2_sh3
435 bool "sh3 support removed"
436 help
437 Due to an inexistent user base and generally poor Linux
438 support, the support for the SH3 architecture was removed.
439
440config BR2_sh3eb
441 bool "sh3eb support removed"
442 help
443 Due to an inexistent user base and generally poor Linux
444 support, the support for the SH3eb architecture was removed.
445
Thomas De Schampheleire334dca62014-02-05 14:50:59 +0100446config BR2_KERNEL_HEADERS_3_1
447 bool "kernel headers version 3.1.x are no longer supported"
448 select BR2_KERNEL_HEADERS_3_2
449 select BR2_LEGACY
450 help
451 Version 3.1.x of the Linux kernel headers have been deprecated
452 for more than four buildroot releases and are now removed.
453 As an alternative, version 3.2.x of the headers have been
454 automatically selected in your configuration.
455
456config BR2_KERNEL_HEADERS_3_3
457 bool "kernel headers version 3.3.x are no longer supported"
458 select BR2_KERNEL_HEADERS_3_4
459 select BR2_LEGACY
460 help
461 Version 3.3.x of the Linux kernel headers have been deprecated
462 for more than four buildroot releases and are now removed.
463 As an alternative, version 3.4.x of the headers have been
464 automatically selected in your configuration.
465
466config BR2_KERNEL_HEADERS_3_5
467 bool "kernel headers version 3.5.x are no longer supported"
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +0200468 select BR2_KERNEL_HEADERS_3_9
Thomas De Schampheleire334dca62014-02-05 14:50:59 +0100469 select BR2_LEGACY
470 help
471 Version 3.5.x of the Linux kernel headers have been deprecated
472 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +0200473 As an alternative, version 3.8.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +0100474 automatically selected in your configuration.
475
Thomas De Schampheleire348060f2014-02-05 14:50:58 +0100476config BR2_GDB_VERSION_7_2
477 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +0200478 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +0100479 select BR2_LEGACY
480 help
481 Version 7.2.x of gdb has been deprecated for more than four
482 buildroot releases and is now removed. As an alternative, gdb
483 7.5.x has been automatically selected in your configuration.
484
485config BR2_GDB_VERSION_7_3
486 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +0200487 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +0100488 select BR2_LEGACY
489 help
490 Version 7.3.x of gdb has been deprecated for more than four
491 buildroot releases and is now removed. As an alternative, gdb
492 7.5.x has been automatically selected in your configuration.
493
Thomas De Schampheleire831624c2014-02-05 14:50:57 +0100494config BR2_PACKAGE_CCACHE
495 bool "ccache target package has been removed"
496 select BR2_LEGACY
497 help
498 The 'ccache' target package has been removed since it has been
499 deprecated for more than four buildroot releases.
500 Note: using ccache for speeding up builds is still supported.
501
Thomas De Schampheleire7164a322014-02-05 14:50:56 +0100502config BR2_HAVE_DOCUMENTATION
503 bool "support for documentation on target has been removed"
504 select BR2_LEGACY
505 help
506 Support for documentation on target has been removed since it has
507 been deprecated for more than four buildroot releases.
508
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +0100509config BR2_PACKAGE_AUTOMAKE
510 bool "automake target package has been removed"
511 select BR2_LEGACY
512 help
513 The 'automake' target package has been removed since it has been
514 deprecated for more than four buildroot releases.
515 Note: the host automake still exists.
516
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +0100517config BR2_PACKAGE_AUTOCONF
518 bool "autoconf target package has been removed"
519 select BR2_LEGACY
520 help
521 The 'autoconf' target package has been removed since it has been
522 deprecated for more than four buildroot releases.
523 Note: the host autoconf still exists.
524
Thomas De Schampheleireddf54242014-02-05 14:50:53 +0100525config BR2_PACKAGE_XSTROKE
526 bool "xstroke has been removed"
527 select BR2_LEGACY
528 help
529 The 'xstroke' package has been removed since it has been
530 deprecated for more than four buildroot releases.
531
Thomas De Schampheleire0a077312014-01-21 08:54:12 +0100532config BR2_PACKAGE_LZMA
533 bool "lzma target package has been removed"
534 select BR2_LEGACY
535 help
536 The 'lzma' target package has been removed since it has been
537 deprecated for more than four buildroot releases.
538 Note: generating lzma-compressed rootfs images is still supported.
539
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +0100540config BR2_PACKAGE_TTCP
541 bool "ttcp has been removed"
542 select BR2_LEGACY
543 help
544 The 'ttcp' package has been removed since it has been
545 deprecated for more than four buildroot releases.
546
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +0000547config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +0100548 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +0000549 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +0100550 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +0000551 help
552 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +0100553 to 'libllcp'. We have added a new package for 'libllcp' and bumped
554 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +0000555
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +0000556config BR2_PACKAGE_MYSQL_CLIENT
557 bool "MySQL client renamed to MySQL"
558 select BR2_LEGACY
559 select BR2_PACKAGE_MYSQL
560 help
561 The option has been renamed BR2_PACKAGE_MYSQL
562
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +0100563config BR2_PACKAGE_SQUASHFS3
564 bool "squashfs3 has been removed"
565 select BR2_LEGACY
566 select BR2_PACKAGE_SQUASHFS
567 help
568 The 'squashfs3' package has been removed since it has been
569 deprecated for more than four buildroot releases. Package
570 'squashfs' (4) has been selected automatically as replacement.
571
572config BR2_TARGET_ROOTFS_SQUASHFS3
573 bool "squashfs3 rootfs support has been removed"
574 select BR2_LEGACY
575 help
576 Together with the removal of the squashfs3 package, support
577 for squashfs3 root filesystems has been removed too. Squashfs
578 root filesystems will automatically use squashfs4 now.
579
Arnaud Aujon560fe852013-12-15 20:23:12 +0100580config BR2_PACKAGE_NETKITBASE
581 bool "netkitbase has been removed"
582 select BR2_LEGACY
583 help
584 The 'netkitbase' package has been removed since it has been
585 deprecated since 2012.11. This package provided 'inetd'
586 which is replaced by 'xinet' and 'ping' which is replaced by
587 'busybox' or 'fping'.
588
589config BR2_PACKAGE_NETKITTELNET
590 bool "netkittelnet has been removed"
591 select BR2_LEGACY
592 help
593 The 'netkittelnet' package has been removed since it has
594 been deprecated since 2012.11. 'busybox' provides a telnet
595 client and should be used instead.
596
Francois Perrad63058f82014-01-11 16:42:09 +0100597config BR2_PACKAGE_LUASQL
598 bool "luasql has been replaced by luasql-sqlite3"
599 select BR2_PACKAGE_LUASQL_SQLITE3
600 select BR2_LEGACY
601 help
602 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
603
Francois Perrada6c53472014-01-11 16:42:08 +0100604config BR2_PACKAGE_LUACJSON
605 bool "luacjson has been replaced by lua-cjson"
606 select BR2_PACKAGE_LUA_CJSON
607 select BR2_LEGACY
608 help
609 The option has been renamed BR2_PACKAGE_LUA_CJSON.
610
Arnaud Aujon560fe852013-12-15 20:23:12 +0100611###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +0200612comment "Legacy options removed in 2013.11"
613
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +0100614config BR2_PACKAGE_LVM2_DMSETUP_ONLY
615 bool "lvm2's 'dmsetup only' option removed"
616 select BR2_LEGACY
617 help
618 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
619 led to problems with other packages that need the full lvm2
620 suite. Therefore, the option has been replaced with the positive
621 BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
622
623# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
624# in order to automatically propagate old configs
625
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +0100626config BR2_PACKAGE_QT_JAVASCRIPTCORE
627 bool "qt javascriptcore option removed"
628 select BR2_LEGACY
629 help
630 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
631 force the activation or disabling of the JIT compiler in the
632 Qt Javascript interpreter. However, the JIT compiler is not
633 available for all architectures, so forcing its activation
634 does not always work. Moreover, Qt knows by itself for which
635 architectures JIT support is possible, and will
636 automatically enable it if possible.
637
638 Therefore, this option was in fact useless, and causing
639 build problems when enabled on architectures for which the
640 JIT support was not available. It has been removed, and
641 there is no replacement: Qt will enable JIT at compile time
642 when possible.
643
Thomas Petazzoni94c72082013-08-27 19:28:34 +0200644config BR2_PACKAGE_MODULE_INIT_TOOLS
645 bool "module-init-tools replaced by kmod"
646 select BR2_PACKAGE_KMOD
647 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +0100648 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +0200649 help
650 The 'module-init-tools' package has been removed, since it
651 has been depracated upstream and replaced by 'kmod'.
652
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +0200653config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
654 string "u-boot: the git repository URL option has been renamed"
655 help
656 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
657 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
658
659config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
660 bool
661 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
662 select BR2_LEGACY
663
664# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
665# boot/uboot/Config.in
666
667config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
668 string "u-boot: the git repository version option has been renamed"
669 help
670 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
671 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
672
673config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
674 bool
675 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
676 select BR2_LEGACY
677
678# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
679# boot/uboot/Config.in
680
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +0200681config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
682 string "linux: the git repository URL option has been renamed"
683 help
684 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
685 been renamed to
686 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
687
688config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
689 bool
690 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
691 select BR2_LEGACY
692
693# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
694# linux/Config.in
695
696config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
697 string "linux: the git repository version option has been renamed"
698 help
699 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
700 been renamed to
701 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
702
703config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
704 bool
705 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
706 select BR2_LEGACY
707
708# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
709# linux/Config.in
710
Thomas Petazzoni94c72082013-08-27 19:28:34 +0200711###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200712comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -0300713
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +0200714config BR2_ARM_OABI
715 bool "ARM OABI support has been removed"
716 select BR2_LEGACY
717 help
718 The support for the ARM OABI was deprecated since a while,
719 and has been removed completely from Buildroot. It is also
720 deprecated in upstream gcc, since gcc 4.7. People should
721 switch to EABI instead, which should not be a problem as
722 long as you don't have pre-built OABI binaries in your
723 system that you can't recompile.
724
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -0300725config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
726 bool "dosfstools dosfsck renamed to fsck.fat"
727 select BR2_LEGACY
728 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
729 help
730 dosfsck was renamed upstream to fsck.fat for consistency.
731
732config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
733 bool "dosfstools dosfslabel renamed to fatlabel"
734 select BR2_LEGACY
735 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
736 help
737 doslabel was renamed upstream to fatlabel for consistency.
738
739config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
740 bool "dosfstools mkdosfs renamed to mkfs.fat"
741 select BR2_LEGACY
742 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
743 help
744 mkdosfs was renamed upstream to mkfs.fat for consistency.
745
Thomas Petazzonie21db002013-06-30 21:28:57 +0200746config BR2_ELF2FLT
747 bool "the elf2flt option has been renamed"
748 select BR2_LEGACY
749 help
750 The BR2_ELF2FLT option has been renamed to
751 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
752 the package infrastructure.
753
Thomas Petazzonid8060052013-07-16 10:03:17 +0200754config BR2_VFP_FLOAT
755 bool "the ARM VFP floating point option has been renamed"
756 select BR2_LEGACY
757 help
758 Due to a major refactoring of the floating-point handling of
759 the ARM architecture support, the BR2_VFP_FLOAT option has
760 been replaced with a choice of options that allows to select
761 between various VFP versions/capabilities.
762
Samuel Martinba8f82b2013-08-30 06:08:59 +0200763config BR2_PACKAGE_GCC_TARGET
764 bool "gcc on the target filesystem has been removed"
765 select BR2_LEGACY
766 help
767 The support for gcc in the target filesystem was deprecated
768 since a while, and has been removed completely from Buildroot.
769 See Buildroot's documentation for more explanations.
770
771config BR2_HAVE_DEVFILES
772 bool "development files in target filesystem has been removed"
773 select BR2_LEGACY
774 help
775 The installation of the development files in the target
776 filesystem was deprecated since a while, and has been removed
777 completely from Buildroot.
778 See Buildroot's documentation for more explanations.
779
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200780###############################################################################
781comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +0000782
783config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
784 bool "Realtek 8192 replaced by Realtek 81xx"
785 select BR2_LEGACY
786 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
787 help
788 Now covers the whole Realtek 81xx familly: 8188/8192.
789
790config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
791 bool "Realtek 8712 replaced by Realtek 87xx"
792 select BR2_LEGACY
793 select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
794 help
795 Now covers the whole Realtek 87xx familly: 8712/8723.
796
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200797###############################################################################
798comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +0000799
Gustavo Zacarias94744212013-04-04 07:29:45 +0000800config BR2_sa110
801 bool "sa110 ARM target switched to strongarm"
802 select BR2_LEGACY
803 select BR2_strongarm
804 help
805 The SA110 is the same as a generic StrongARM, it just differs
806 in speed, peripherals and cache.
807
808config BR2_sa1100
809 bool "sa1100 ARM target switched to strongarm"
810 select BR2_LEGACY
811 select BR2_strongarm
812 help
813 The SA1100 is the same as a generic StrongARM, it just differs
814 in speed, peripherals and cache.
815
Thomas Petazzoni29b83f02013-03-07 10:45:24 +0000816config BR2_PACKAGE_GDISK
817 bool "gdisk has been replaced by gptfdisk"
818 select BR2_LEGACY
819 select BR2_PACKAGE_GPTFDISK
820 help
821 The option has been renamed BR2_PACKAGE_GPTFDISK.
822
823config BR2_PACKAGE_GDISK_GDISK
824 bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
825 select BR2_LEGACY
826 select BR2_PACKAGE_GPTFDISK
827 select BR2_PACKAGE_GPTFDISK_GDISK
828 help
829 The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
830
831config BR2_PACKAGE_GDISK_SGDISK
832 bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
833 select BR2_LEGACY
834 select BR2_PACKAGE_GPTFDISK
835 select BR2_PACKAGE_GPTFDISK_SGDISK
836 help
837 The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000838
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +0000839config BR2_PACKAGE_GDB_HOST
840 bool "gdb for the host option has been renamed"
841 select BR2_PACKAGE_HOST_GDB
842 select BR2_LEGACY
843 help
844 Due to the conversion of gdb to the package infrastructure,
845 the BR2_PACKAGE_GDB_HOST option has been renamed
846 BR2_PACKAGE_HOST_GDB.
847
Carsten Schoenert76de0f82013-03-10 08:32:46 +0000848config BR2_PACKAGE_DIRECTB_DITHER_RGB16
849 bool "DirectFB RGB16 dithering option has been renamed"
850 select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
851 select BR2_LEGACY
852 help
853 The option has been renamed
854 BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
855
856config BR2_PACKAGE_DIRECTB_TESTS
857 bool "DirectFB Tests option has been renamed"
858 select BR2_PACKAGE_DIRECTFB_TESTS
859 select BR2_LEGACY
860 help
861 The option has been renamed
862 BR2_PACKAGE_DIRECTFB_TESTS.
863
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200864###############################################################################
865comment "Legacy options removed in 2012.11"
866
Thomas Petazzoni12ccc432013-02-07 11:58:45 +0000867config BR2_PACKAGE_CUSTOMIZE
868 bool "customize package has been removed"
869 select BR2_LEGACY
870 help
871 The 'customize' special package has been removed. Instead,
872 we recommend to create either your own packages, or use a
873 post-build script to customize your root filesystem. See
874 Buildroot's documentation for more details.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +0000875
876config BR2_PACKAGE_XSERVER_xorg
877 bool "X.org modular server"
878 select BR2_LEGACY
879 select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
880 help
881 The option has been renamed
882 BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
883
884config BR2_PACKAGE_XSERVER_tinyx
885 bool "KDrive / TinyX server"
886 select BR2_LEGACY
887 select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
888 help
889 The option has been renamed
890 BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
891
892config BR2_PACKAGE_PTHREAD_STUBS
893 bool "pthread-stubs option has been renamed"
894 select BR2_LEGACY
Bernd Kuhls5562be12014-03-01 16:41:10 +0100895 select BR2_PACKAGE_LIBPTHREAD_STUBS
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +0000896 help
897 For consistency reason, the pthread-stubs package has been
Bernd Kuhls5562be12014-03-01 16:41:10 +0100898 renamed to libpthread-stubs.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +0000899
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200900###############################################################################
901comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000902
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +0000903config BR2_PACKAGE_GETTEXT_STATIC
904 bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
905 select BR2_LEGACY
906 help
907 To build a static gettext library, select BR2_PREFER_STATIC_LIB.
908
909
910config BR2_PACKAGE_LIBINTL
911 bool "libintl"
912 select BR2_LEGACY
913 select BR2_PACKAGE_GETTEXT
914 help
915 libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
916 only installs the library, not the executables.
917
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +0000918config BR2_PACKAGE_INPUT_TOOLS_EVTEST
919 bool "input-tools evtest is now a separate package evtest"
920 select BR2_LEGACY
921 select BR2_PACKAGE_EVTEST
922 help
923 The evtest program from input-tools is now a separate package.
924
Sonic Zhang57133822013-05-03 00:39:34 +0000925config BR2_BFIN_FDPIC
926 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
927 select BR2_BINFMT_FDPIC
928 select BR2_LEGACY
929
930config BR2_BFIN_FLAT
931 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
932 select BR2_BINFMT_FLAT
933 select BR2_LEGACY
934
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000935endmenu