]>
Commit | Line | Data |
---|---|---|
ebcfa987 AVEM |
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 | ||
a91a5c16 AVEM |
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. " | |
d2e706c3 YM |
41 | comment "Note: at some point in the future, the oldest legacy" |
42 | comment "options will be removed, and configuration files " | |
43 | comment "that still have those options set, will fail to " | |
44 | comment "build, or run, in unpredictable ways. " | |
a91a5c16 | 45 | endif |
ebcfa987 | 46 | |
67eaf705 YM |
47 | ############################################################################### |
48 | comment "Legacy options removed in 2013.08" | |
c6e4fcb1 GZ |
49 | |
50 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK | |
51 | bool "dosfstools dosfsck renamed to fsck.fat" | |
52 | select BR2_LEGACY | |
53 | select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT | |
54 | help | |
55 | dosfsck was renamed upstream to fsck.fat for consistency. | |
56 | ||
57 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL | |
58 | bool "dosfstools dosfslabel renamed to fatlabel" | |
59 | select BR2_LEGACY | |
60 | select BR2_PACKAGE_DOSFSTOOLS_FATLABEL | |
61 | help | |
62 | doslabel was renamed upstream to fatlabel for consistency. | |
63 | ||
64 | config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS | |
65 | bool "dosfstools mkdosfs renamed to mkfs.fat" | |
66 | select BR2_LEGACY | |
67 | select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT | |
68 | help | |
69 | mkdosfs was renamed upstream to mkfs.fat for consistency. | |
70 | ||
e21db000 TP |
71 | config BR2_ELF2FLT |
72 | bool "the elf2flt option has been renamed" | |
73 | select BR2_LEGACY | |
74 | help | |
75 | The BR2_ELF2FLT option has been renamed to | |
76 | BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to | |
77 | the package infrastructure. | |
78 | ||
67eaf705 YM |
79 | ############################################################################### |
80 | comment "Legacy options removed in 2013.05" | |
860d37a2 YM |
81 | |
82 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192 | |
83 | bool "Realtek 8192 replaced by Realtek 81xx" | |
84 | select BR2_LEGACY | |
85 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX | |
86 | help | |
87 | Now covers the whole Realtek 81xx familly: 8188/8192. | |
88 | ||
89 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712 | |
90 | bool "Realtek 8712 replaced by Realtek 87xx" | |
91 | select BR2_LEGACY | |
92 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX | |
93 | help | |
94 | Now covers the whole Realtek 87xx familly: 8712/8723. | |
95 | ||
67eaf705 YM |
96 | ############################################################################### |
97 | comment "Legacy options removed in 2013.02" | |
29b83f05 | 98 | |
9474421d GZ |
99 | config BR2_sa110 |
100 | bool "sa110 ARM target switched to strongarm" | |
101 | select BR2_LEGACY | |
102 | select BR2_strongarm | |
103 | help | |
104 | The SA110 is the same as a generic StrongARM, it just differs | |
105 | in speed, peripherals and cache. | |
106 | ||
107 | config BR2_sa1100 | |
108 | bool "sa1100 ARM target switched to strongarm" | |
109 | select BR2_LEGACY | |
110 | select BR2_strongarm | |
111 | help | |
112 | The SA1100 is the same as a generic StrongARM, it just differs | |
113 | in speed, peripherals and cache. | |
114 | ||
29b83f05 TP |
115 | config BR2_PACKAGE_GDISK |
116 | bool "gdisk has been replaced by gptfdisk" | |
117 | select BR2_LEGACY | |
118 | select BR2_PACKAGE_GPTFDISK | |
119 | help | |
120 | The option has been renamed BR2_PACKAGE_GPTFDISK. | |
121 | ||
122 | config BR2_PACKAGE_GDISK_GDISK | |
123 | bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk" | |
124 | select BR2_LEGACY | |
125 | select BR2_PACKAGE_GPTFDISK | |
126 | select BR2_PACKAGE_GPTFDISK_GDISK | |
127 | help | |
128 | The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK. | |
129 | ||
130 | config BR2_PACKAGE_GDISK_SGDISK | |
131 | bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk" | |
132 | select BR2_LEGACY | |
133 | select BR2_PACKAGE_GPTFDISK | |
134 | select BR2_PACKAGE_GPTFDISK_SGDISK | |
135 | help | |
136 | The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK. | |
ebcfa987 | 137 | |
a0b6faaa TP |
138 | config BR2_PACKAGE_GDB_HOST |
139 | bool "gdb for the host option has been renamed" | |
140 | select BR2_PACKAGE_HOST_GDB | |
141 | select BR2_LEGACY | |
142 | help | |
143 | Due to the conversion of gdb to the package infrastructure, | |
144 | the BR2_PACKAGE_GDB_HOST option has been renamed | |
145 | BR2_PACKAGE_HOST_GDB. | |
146 | ||
76de0f80 CS |
147 | config BR2_PACKAGE_DIRECTB_DITHER_RGB16 |
148 | bool "DirectFB RGB16 dithering option has been renamed" | |
149 | select BR2_PACKAGE_DIRECTFB_DITHER_RGB16 | |
150 | select BR2_LEGACY | |
151 | help | |
152 | The option has been renamed | |
153 | BR2_PACKAGE_DIRECTFB_DITHER_RGB16. | |
154 | ||
155 | config BR2_PACKAGE_DIRECTB_TESTS | |
156 | bool "DirectFB Tests option has been renamed" | |
157 | select BR2_PACKAGE_DIRECTFB_TESTS | |
158 | select BR2_LEGACY | |
159 | help | |
160 | The option has been renamed | |
161 | BR2_PACKAGE_DIRECTFB_TESTS. | |
162 | ||
67eaf705 YM |
163 | ############################################################################### |
164 | comment "Legacy options removed in 2012.11" | |
165 | ||
12ccc43f TP |
166 | config BR2_PACKAGE_CUSTOMIZE |
167 | bool "customize package has been removed" | |
168 | select BR2_LEGACY | |
169 | help | |
170 | The 'customize' special package has been removed. Instead, | |
171 | we recommend to create either your own packages, or use a | |
172 | post-build script to customize your root filesystem. See | |
173 | Buildroot's documentation for more details. | |
2cd9121c AVEM |
174 | |
175 | config BR2_PACKAGE_XSERVER_xorg | |
176 | bool "X.org modular server" | |
177 | select BR2_LEGACY | |
178 | select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR | |
179 | help | |
180 | The option has been renamed | |
181 | BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR. | |
182 | ||
183 | config BR2_PACKAGE_XSERVER_tinyx | |
184 | bool "KDrive / TinyX server" | |
185 | select BR2_LEGACY | |
186 | select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE | |
187 | help | |
188 | The option has been renamed | |
189 | BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE. | |
190 | ||
191 | config BR2_PACKAGE_PTHREAD_STUBS | |
192 | bool "pthread-stubs option has been renamed" | |
193 | select BR2_LEGACY | |
194 | select BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS | |
7d97a094 | 195 | depends on BR2_PACKAGE_XORG7 |
2cd9121c AVEM |
196 | help |
197 | For consistency reason, the pthread-stubs package has been | |
198 | renamed to xlib_libpthread-stubs. | |
199 | ||
67eaf705 YM |
200 | ############################################################################### |
201 | comment "Legacy options removed in 2012.08" | |
ebcfa987 | 202 | |
26803e88 AVEM |
203 | config BR2_PACKAGE_GETTEXT_STATIC |
204 | bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB" | |
205 | select BR2_LEGACY | |
206 | help | |
207 | To build a static gettext library, select BR2_PREFER_STATIC_LIB. | |
208 | ||
209 | ||
210 | config BR2_PACKAGE_LIBINTL | |
211 | bool "libintl" | |
212 | select BR2_LEGACY | |
213 | select BR2_PACKAGE_GETTEXT | |
214 | help | |
215 | libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now | |
216 | only installs the library, not the executables. | |
217 | ||
c430fab2 AVEM |
218 | config BR2_PACKAGE_INPUT_TOOLS_EVTEST |
219 | bool "input-tools evtest is now a separate package evtest" | |
220 | select BR2_LEGACY | |
221 | select BR2_PACKAGE_EVTEST | |
222 | help | |
223 | The evtest program from input-tools is now a separate package. | |
224 | ||
57133825 SZ |
225 | config BR2_BFIN_FDPIC |
226 | bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC" | |
227 | select BR2_BINFMT_FDPIC | |
228 | select BR2_LEGACY | |
229 | ||
230 | config BR2_BFIN_FLAT | |
231 | bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT" | |
232 | select BR2_BINFMT_FLAT | |
233 | select BR2_LEGACY | |
234 | ||
a91a5c16 | 235 | endmenu |