]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - Config.in.legacy
04ccb92c6675abb2ad1ac6c712a8f4b93bc3f2db
[coffee/buildroot.git] / Config.in.legacy
1 #
2 # Config.in.legacy - support for backward compatibility
3 #
4 # When an existing Config.in symbol is removed, it should be added again in this
5 # file, and take appropriate action to approximate backward compatibility. If
6 # there is an equivalent (set of) new symbols, these can just be select'ed by
7 # the old symbol. This makes sure that running 'make oldconfig' will make things
8 # "just work" when upgrading to a new buildroot version. If the change is too
9 # fundamental and cannot be fixed by a simple select, then the old symbol should
10 # select BR2_LEGACY.  If that symbol is set, the build will issue an error.
11 #
12 # When adding legacy symbols to this file, add them to the front. The oldest
13 # symbols will be removed again after about two years.
14 #
15 # The symbol should be copied as-is from the place where it was previously
16 # defined, but the help text should be removed or replaced with something that
17 # explains how to fix it.
18
19 config BR2_LEGACY
20         bool
21         help
22           This option is selected automatically when your old .config uses an
23           option that no longer exists in current buildroot. In that case, the
24           build will fail. Look for config options which are selected in the
25           menu below: they no longer exist and should be replaced by something
26           else.
27
28 # This comment fits exactly in a 80-column display
29 comment "Legacy detected: check the content of the menu below"
30         depends on BR2_LEGACY
31
32 # This option should get a new name with every buildroot release, so it defaults
33 # to y again for people who upgrade.
34 menuconfig BR2_LEGACY_CHECK_2012_11
35         bool "Check for legacy config options"
36         default y
37         help
38           Select this option to see the config options that are present in your
39           current .config but are no longer supported by buildroot. If any of
40           the options in this menu is selected, they should be replaced with
41           something else. As long as they stay selected, the build will fail.
42           Just de-select this option to automatically remove all the legacy
43           configuration.
44
45 if BR2_LEGACY_CHECK_2012_11
46
47 #
48 # Legacy options from 2012.08
49 #
50
51 config BR2_PACKAGE_INPUT_TOOLS_EVTEST
52         bool "input-tools evtest is now a separate package evtest"
53         select BR2_LEGACY
54         select BR2_PACKAGE_EVTEST
55         help
56           The evtest program from input-tools is now a separate package.
57
58 endif