]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - Config.in.legacy
busybox: busybox-update-config should depend on busybox-configure
[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 menu "Legacy config options"
33
34 if BR2_LEGACY
35 comment "Your old configuration uses legacy options that no  "
36 comment "longer exist in buildroot.                          "
37 comment "Please look at the options which have been selected "
38 comment "and read their help text.                           "
39 comment "As long as these options stay selected, the build   "
40 comment "will fail.                                          "
41 endif
42
43
44 #
45 # Legacy options since 2012.11
46 #
47
48 config BR2_PACKAGE_XSERVER_xorg
49         bool "X.org modular server"
50         select BR2_LEGACY
51         select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
52         help
53           The option has been renamed
54           BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
55
56 config BR2_PACKAGE_XSERVER_tinyx
57         bool "KDrive / TinyX server"
58         select BR2_LEGACY
59         select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
60         help
61           The option has been renamed
62           BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
63
64 config BR2_PACKAGE_PTHREAD_STUBS
65         bool "pthread-stubs option has been renamed"
66         select BR2_LEGACY
67         select BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
68         help
69           For consistency reason, the pthread-stubs package has been
70           renamed to xlib_libpthread-stubs.
71
72
73 #
74 # Legacy options since 2012.08
75 #
76
77 config BR2_PACKAGE_GETTEXT_STATIC
78         bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
79         select BR2_LEGACY
80         help
81           To build a static gettext library, select BR2_PREFER_STATIC_LIB.
82
83
84 config BR2_PACKAGE_LIBINTL
85         bool "libintl"
86         select BR2_LEGACY
87         select BR2_PACKAGE_GETTEXT
88         help
89           libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
90           only installs the library, not the executables.
91
92 config BR2_PACKAGE_INPUT_TOOLS_EVTEST
93         bool "input-tools evtest is now a separate package evtest"
94         select BR2_LEGACY
95         select BR2_PACKAGE_EVTEST
96         help
97           The evtest program from input-tools is now a separate package.
98
99 endmenu