blob: ce44d0f5cca45c8676f39fab77288de3008b804a [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###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100102comment "Legacy options removed in 2014.05"
103
Yann E. MORINc97aeb72014-04-05 17:21:43 +0200104config 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
112config 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
120config 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
Yann E. MORIN365ae612014-03-28 01:00:24 +0100128config 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
Yann E. MORIN971e3312014-03-01 15:52:56 +0100135config 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
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100142config 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.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100147 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100148
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100149 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.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100155
156 You must also check the packages depending on 'udev' are still
157 selected.
158
159config 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.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100165 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100166
167 Your old configuration refers to packages depending on 'udev',
168 either for build or at runtime.
169
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100170 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.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100176
177config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100178 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100179 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100180 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
181 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100182 help
183 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100184 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100185
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100186 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.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100190
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100191 If you are using 'systemd', it internal implementation of 'udev'
192 will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100193
194config 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.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +0100199 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100200
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
Bernd Kuhls5562be12014-03-01 16:41:10 +0100206config 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
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +0100215###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +0100216comment "Legacy options removed in 2014.02"
217
Thomas Petazzonie543f5a2014-02-04 15:25:34 +0100218config 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
224config 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
230config 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
Thomas De Schampheleire334dca62014-02-05 14:50:59 +0100236config 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
246config 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
256config 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
Thomas De Schampheleire348060f2014-02-05 14:50:58 +0100266config 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
275config 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
Thomas De Schampheleire831624c2014-02-05 14:50:57 +0100284config 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
Thomas De Schampheleire7164a322014-02-05 14:50:56 +0100292config 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
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +0100299config 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
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +0100307config 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
Thomas De Schampheleireddf54242014-02-05 14:50:53 +0100315config 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
Thomas De Schampheleire0a077312014-01-21 08:54:12 +0100322config 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
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +0100330config 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
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +0000337config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +0100338 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +0000339 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +0100340 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +0000341 help
342 The 'libnfc-llcp' package has been removed since upstream renamed
Thomas De Schampheleire93341042014-01-21 08:54:13 +0100343 to 'libllcp'. We have added a new package for 'libllcp' and bumped
344 the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +0000345
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +0000346config 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
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +0100353config 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
362config 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
Arnaud Aujon560fe852013-12-15 20:23:12 +0100370config 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
379config 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
Francois Perrad63058f82014-01-11 16:42:09 +0100387config 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
Francois Perrada6c53472014-01-11 16:42:08 +0100394config 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
Arnaud Aujon560fe852013-12-15 20:23:12 +0100401###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +0200402comment "Legacy options removed in 2013.11"
403
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +0100404config 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
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +0100416config 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
Thomas Petazzoni94c72082013-08-27 19:28:34 +0200434config BR2_PACKAGE_MODULE_INIT_TOOLS
435 bool "module-init-tools replaced by kmod"
436 select BR2_PACKAGE_KMOD
437 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +0100438 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +0200439 help
440 The 'module-init-tools' package has been removed, since it
441 has been depracated upstream and replaced by 'kmod'.
442
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +0200443config 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
449config 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
457config 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
463config 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
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +0200471config 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
478config 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
486config 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
493config 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
Thomas Petazzoni94c72082013-08-27 19:28:34 +0200501###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200502comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -0300503
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +0200504config 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
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -0300515config 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
522config 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
529config 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
Thomas Petazzonie21db002013-06-30 21:28:57 +0200536config 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
Thomas Petazzonid8060052013-07-16 10:03:17 +0200544config 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
Samuel Martinba8f82b2013-08-30 06:08:59 +0200553config 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
561config 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
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200570###############################################################################
571comment "Legacy options removed in 2013.05"
Yann E. MORIN860d37a2013-06-04 11:49:53 +0000572
573config 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
580config 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
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200587###############################################################################
588comment "Legacy options removed in 2013.02"
Thomas Petazzoni29b83f02013-03-07 10:45:24 +0000589
Gustavo Zacarias94744212013-04-04 07:29:45 +0000590config 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
598config 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
Thomas Petazzoni29b83f02013-03-07 10:45:24 +0000606config 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
613config 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
621config 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.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000628
Thomas Petazzonia0b6faa2013-04-07 00:04:33 +0000629config 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
Carsten Schoenert76de0f82013-03-10 08:32:46 +0000638config 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
646config 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
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200654###############################################################################
655comment "Legacy options removed in 2012.11"
656
Thomas Petazzoni12ccc432013-02-07 11:58:45 +0000657config 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.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +0000665
666config 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
674config 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
682config BR2_PACKAGE_PTHREAD_STUBS
683 bool "pthread-stubs option has been renamed"
684 select BR2_LEGACY
Bernd Kuhls5562be12014-03-01 16:41:10 +0100685 select BR2_PACKAGE_LIBPTHREAD_STUBS
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +0000686 help
687 For consistency reason, the pthread-stubs package has been
Bernd Kuhls5562be12014-03-01 16:41:10 +0100688 renamed to libpthread-stubs.
Arnout Vandecappelle (Essensium/Mind)2cd91212013-02-05 05:34:33 +0000689
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200690###############################################################################
691comment "Legacy options removed in 2012.08"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000692
Arnout Vandecappelle (Essensium/Mind)26803e82012-11-12 10:08:32 +0000693config 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
700config 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
Arnout Vandecappelle (Essensium/Mind)c430fab2012-11-12 10:08:31 +0000708config 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
Sonic Zhang57133822013-05-03 00:39:34 +0000715config BR2_BFIN_FDPIC
716 bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
717 select BR2_BINFMT_FDPIC
718 select BR2_LEGACY
719
720config BR2_BFIN_FLAT
721 bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
722 select BR2_BINFMT_FLAT
723 select BR2_LEGACY
724
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000725endmenu