]>
Commit | Line | Data |
---|---|---|
ebcfa987 AVEM |
1 | # |
2 | # Config.in.legacy - support for backward compatibility | |
3 | # | |
f8c56f5f TDS |
4 | # 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. | |
ebcfa987 AVEM |
7 | # |
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. | |
f8c56f5f TDS |
14 | # |
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. | |
94d403d7 AV |
19 | # It is not possible to select an option that is part of a choice. In that |
20 | # case, the new option should use the old symbol as default. This requires a | |
21 | # change outside of Config.in.legacy, and this should be clearly marked as such | |
22 | # in a comment, so that removal of legacy options also include the removal of | |
23 | # these external references. | |
24 | # | |
25 | # [Example: renaming a bool option that is part of a choice from FOO to BAR] | |
26 | # original choice: | |
27 | # choice | |
28 | # prompt "Choose foobar" | |
29 | # config BR2_FOO_1 | |
30 | # bool "foobar 1" | |
31 | # config BR2_FOO_2 | |
32 | # bool "foobar 2" | |
33 | # endchoice | |
34 | # | |
35 | # becomes: | |
36 | # choice | |
37 | # prompt "Choose foobar" | |
38 | # default BR2_BAR_1 if BR2_FOO_1 # legacy | |
39 | # default BR2_BAR_2 if BR2_FOO_2 # legacy | |
40 | # config BR2_BAR_1 | |
41 | # bool "foobar 1" | |
42 | # config BR2_BAR_2 | |
43 | # bool "foobar 2" | |
44 | # endchoice | |
45 | # | |
46 | # and in Config.in.legacy: | |
47 | # config BR2_FOO_1 | |
48 | # bool "foobar 1 has been renamed" | |
49 | # help | |
50 | # <suitable help text> | |
51 | # # Note: BR2_FOO_1 is still referenced from package/foo/Config.in | |
52 | # config BR2_FOO_2 | |
53 | # bool "foobar 2 has been renamed" | |
54 | # help | |
55 | # <suitable help text> | |
56 | # # Note: BR2_FOO_2 is still referenced from package/foo/Config.in | |
57 | # | |
58 | # [End of example] | |
f8c56f5f TDS |
59 | # |
60 | # For string options, it is not possible to directly select another symbol. In | |
61 | # this case, a hidden wrap bool option has to be added, that defaults to y if | |
62 | # the old string is not set at its default value. The wrap symbol should select | |
63 | # BR2_LEGACY. | |
64 | # If the original symbol has been renamed, the new symbol should use the value | |
94d403d7 AV |
65 | # of the old symbol as default. Like for choice options, a comment should be |
66 | # added to flag that the symbol is still used in another file. | |
f8c56f5f TDS |
67 | # |
68 | # [Example: renaming a string option from FOO to BAR] | |
69 | # original symbol: | |
94d403d7 AV |
70 | # config BR2_FOO_STRING |
71 | # string "Some foo string" | |
f8c56f5f TDS |
72 | # |
73 | # becomes: | |
94d403d7 AV |
74 | # config BR2_BAR_STRING |
75 | # string "Some bar string" | |
76 | # default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy | |
f8c56f5f TDS |
77 | # |
78 | # and in Config.in.legacy: | |
94d403d7 AV |
79 | # config BR2_FOO_STRING |
80 | # string "The foo string has been renamed" | |
81 | # help | |
82 | # <suitable help text> | |
f8c56f5f | 83 | # |
94d403d7 AV |
84 | # config BR2_FOO_STRING_WRAP |
85 | # bool | |
86 | # default y if BR2_FOO_STRING != "" | |
87 | # select BR2_LEGACY | |
f8c56f5f | 88 | # |
94d403d7 | 89 | # # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in |
f8c56f5f TDS |
90 | # |
91 | # [End of example] | |
ebcfa987 | 92 | |
53903a15 AV |
93 | config BR2_SKIP_LEGACY |
94 | bool | |
95 | option env="SKIP_LEGACY" | |
96 | ||
97 | if !BR2_SKIP_LEGACY | |
98 | ||
ebcfa987 AVEM |
99 | config BR2_LEGACY |
100 | bool | |
101 | help | |
d6109172 RM |
102 | This option is selected automatically when your old .config |
103 | uses an option that no longer exists in current buildroot. In | |
104 | that case, the build will fail. Look for config options which | |
105 | are selected in the menu below: they no longer exist and | |
106 | should be replaced by something else. | |
ebcfa987 AVEM |
107 | |
108 | # This comment fits exactly in a 80-column display | |
109 | comment "Legacy detected: check the content of the menu below" | |
110 | depends on BR2_LEGACY | |
111 | ||
a91a5c16 AVEM |
112 | menu "Legacy config options" |
113 | ||
114 | if BR2_LEGACY | |
a25e4a4c | 115 | comment "----------------------------------------------------" |
a91a5c16 | 116 | comment "Your old configuration uses legacy options that no " |
cce5baa8 TDS |
117 | comment "longer exist in buildroot, as indicated in the menu " |
118 | comment "below. As long as these options stay selected, or in" | |
119 | comment "case of string options are non-empty, the build " | |
a91a5c16 | 120 | comment "will fail. " |
cce5baa8 TDS |
121 | comment "* " |
122 | comment "Where possible, an automatic conversion from old to " | |
123 | comment "new symbols has been performed. Before making any " | |
124 | comment "change in this legacy menu, make sure to exit the " | |
125 | comment "configuration editor a first time and save the " | |
126 | comment "configuration. Otherwise, the automatic conversion " | |
127 | comment "of symbols will be lost. " | |
128 | comment "* " | |
129 | comment "After this initial save, reopen the configuration " | |
130 | comment "editor, inspect the options selected below, read " | |
131 | comment "their help texts, and verify/update the new " | |
132 | comment "configuration in the corresponding configuration " | |
133 | comment "menus. When everything is ok, you can disable the " | |
134 | comment "legacy options in the menu below. Once you have " | |
135 | comment "disabled all legacy options, this text will " | |
136 | comment "disappear and you will be able to start the build. " | |
137 | comment "* " | |
0b39b14b YM |
138 | comment "Note: legacy options older than 5 years have been " |
139 | comment "removed, and configuration files that still have " | |
140 | comment "those options set, will fail to build, or run in " | |
141 | comment "unpredictable ways. " | |
a25e4a4c | 142 | comment "----------------------------------------------------" |
a91a5c16 | 143 | endif |
ebcfa987 | 144 | |
a2d44ec6 | 145 | ############################################################################### |
bf362600 | 146 | |
c8421565 FF |
147 | comment "Legacy options removed in 2019.05" |
148 | ||
9a05759b RN |
149 | config BR2_BINUTILS_VERSION_2_29_X |
150 | bool "binutils version 2.29 support removed" | |
151 | select BR2_LEGACY | |
152 | help | |
153 | Support for binutils version 2.29 has been removed. The | |
154 | current default version (2.31 or later) has been selected | |
155 | instead. | |
156 | ||
dc5d9515 RN |
157 | config BR2_BINUTILS_VERSION_2_28_X |
158 | bool "binutils version 2.28 support removed" | |
159 | select BR2_LEGACY | |
160 | help | |
161 | Support for binutils version 2.28 has been removed. The | |
162 | current default version (2.31 or later) has been selected | |
163 | instead. | |
164 | ||
c8421565 FF |
165 | config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK |
166 | bool "gst-plugins-bad apexsink option removed" | |
167 | select BR2_LEGACY | |
168 | help | |
169 | The gst-plugins-bad apexsink option was removed. | |
170 | ||
297613f1 FP |
171 | comment "Legacy options removed in 2019.02" |
172 | ||
5a8bc808 PK |
173 | config BR2_PACKAGE_QT |
174 | bool "qt package removed" | |
175 | select BR2_LEGACY | |
176 | help | |
177 | The qt package was removed. | |
178 | ||
e228a9fe PK |
179 | config BR2_PACKAGE_QTUIO |
180 | bool "qtuio package removed" | |
181 | select BR2_LEGACY | |
182 | help | |
183 | The qtuio package was removed. | |
184 | ||
5de7c039 PK |
185 | config BR2_PACKAGE_PINENTRY_QT4 |
186 | bool "pinentry-qt4 option removed" | |
187 | select BR2_LEGACY | |
188 | help | |
189 | The pinentry-qt4 option was removed. | |
190 | ||
3f821fcc PK |
191 | config BR2_PACKAGE_POPPLER_QT |
192 | bool "poppler qt option removed" | |
193 | select BR2_LEGACY | |
194 | help | |
195 | The poppler qt option was removed. | |
196 | ||
3a3fdaeb PK |
197 | config BR2_PACKAGE_OPENCV3_WITH_QT |
198 | bool "opencv3 qt backend option removed" | |
199 | select BR2_LEGACY | |
200 | help | |
201 | The opencv3 qt backend option was removed. | |
202 | ||
882ab1c2 PK |
203 | config BR2_PACKAGE_OPENCV_WITH_QT |
204 | bool "opencv qt backend option removed" | |
205 | select BR2_LEGACY | |
206 | help | |
207 | The opencv qt backend option was removed. | |
208 | ||
ef842792 PK |
209 | config BR2_PACKAGE_AMD_CATALYST_CCCLE |
210 | bool "catalyst control center option removed" | |
211 | select BR2_LEGACY | |
212 | help | |
213 | The AMD Catalyst Control Center option was removed. | |
214 | ||
3a56bc5f PK |
215 | config BR2_PACKAGE_SDL_QTOPIA |
216 | bool "sdl qtopia video driver option removed" | |
217 | select BR2_LEGACY | |
218 | help | |
219 | The SDL QTopia video driver option was removed. | |
220 | ||
90bbfe58 PK |
221 | config BR2_PACKAGE_PYTHON_PYQT |
222 | bool "python-pyqt package removed" | |
223 | select BR2_LEGACY | |
224 | help | |
225 | The python-pyqt package was removed. Consider python-pyqt5 | |
226 | instead. | |
227 | ||
fcd9c854 PK |
228 | config BR2_PACKAGE_GNURADIO_QTGUI |
229 | bool "gnuradio gr-qtgui option removed" | |
230 | select BR2_LEGACY | |
231 | help | |
232 | The gr-qtgui option was removed. | |
233 | ||
e0d540bd PK |
234 | config BR2_PACKAGE_LUACRYPTO |
235 | bool "luacrypto package removed" | |
236 | select BR2_LEGACY | |
237 | help | |
238 | The luacrypto package was removed. Consider luaossl instead. | |
239 | ||
0478beaa PK |
240 | config BR2_PACKAGE_TN5250 |
241 | bool "tn5250 package removed" | |
242 | select BR2_LEGACY | |
243 | help | |
244 | The tn5250 package was removed. | |
245 | ||
428ed394 FF |
246 | config BR2_PACKAGE_BOOST_SIGNALS |
247 | bool "Boost signals removed" | |
248 | select BR2_LEGACY | |
249 | help | |
250 | Its removal was announced in boost 1.68 and its deprecation | |
251 | was announced in 1.54. Users are encouraged to use Signals2 | |
252 | instead. | |
253 | ||
7883e559 TP |
254 | config BR2_PACKAGE_FFTW_PRECISION_SINGLE |
255 | bool "single" | |
256 | select BR2_LEGACY | |
257 | select BR2_PACKAGE_FFTW_SINGLE | |
258 | help | |
259 | This option has been removed in favor of | |
260 | BR2_PACKAGE_FFTW_SINGLE. | |
261 | ||
262 | config BR2_PACKAGE_FFTW_PRECISION_DOUBLE | |
263 | bool "double" | |
264 | select BR2_LEGACY | |
265 | select BR2_PACKAGE_FFTW_DOUBLE | |
266 | help | |
267 | This option has been removed in favor of | |
268 | BR2_PACKAGE_FFTW_DOUBLE. | |
269 | ||
270 | config BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE | |
271 | bool "long double" | |
272 | depends on !(BR2_TOOLCHAIN_BUILDROOT_UCLIBC && \ | |
273 | (BR2_arm || BR2_mips || BR2_mipsel)) | |
274 | select BR2_LEGACY | |
275 | select BR2_PACKAGE_FFTW_LONG_DOUBLE | |
276 | help | |
277 | This option has been removed in favor of | |
278 | BR2_PACKAGE_FFTW_LONG_DOUBLE. | |
279 | ||
280 | config BR2_PACKAGE_FFTW_PRECISION_QUAD | |
281 | bool "quad" | |
282 | depends on (BR2_i386 || BR2_x86_64) && BR2_USE_WCHAR | |
283 | select BR2_LEGACY | |
284 | select BR2_PACKAGE_FFTW_QUAD | |
285 | help | |
286 | This option has been removed in favor of | |
287 | BR2_PACKAGE_FFTW_QUAD. | |
288 | ||
297613f1 FP |
289 | config BR2_PACKAGE_LUA_5_2 |
290 | bool "Lua 5.2.x version removed" | |
291 | select BR2_LEGACY | |
292 | select BR2_PACKAGE_LUA_5_3 | |
293 | help | |
294 | The Lua 5.2.x version was removed. | |
295 | ||
bf362600 MW |
296 | config BR2_TARGET_GENERIC_PASSWD_MD5 |
297 | bool "target passwd md5 format support has been removed" | |
298 | select BR2_LEGACY | |
299 | help | |
300 | The default has been moved to SHA256 and all C libraries | |
301 | now support that method by default | |
302 | ||
a2d44ec6 BK |
303 | comment "Legacy options removed in 2018.11" |
304 | ||
070b183d MW |
305 | config BR2_TARGET_XLOADER |
306 | bool "xloader has been removed" | |
307 | select BR2_LEGACY | |
308 | help | |
309 | The package has been removed as u-boot SPL provides | |
310 | similar functionality | |
311 | ||
5e8790d5 MW |
312 | config BR2_PACKAGE_TIDSP_BINARIES |
313 | bool "tidsp-binaries package removed" | |
314 | select BR2_LEGACY | |
315 | help | |
316 | The tidsp-binaries package was removed. | |
317 | ||
e8eb7f5b MW |
318 | config BR2_PACKAGE_DSP_TOOLS |
319 | bool "dsp-tools package removed" | |
320 | select BR2_LEGACY | |
321 | help | |
322 | The dsp-tools package was removed. | |
323 | ||
91542907 MW |
324 | config BR2_PACKAGE_GST_DSP |
325 | bool "gst-dsp package removed" | |
326 | select BR2_LEGACY | |
327 | help | |
328 | The gst-dsp package was removed. | |
329 | ||
2c3c7c4f FF |
330 | config BR2_PACKAGE_BOOTUTILS |
331 | bool "bootutils package removed" | |
332 | select BR2_LEGACY | |
333 | help | |
334 | The bootutils package was removed. | |
335 | ||
addcc393 RN |
336 | config BR2_PACKAGE_EXPEDITE |
337 | bool "expedite package has been removed" | |
338 | select BR2_LEGACY | |
339 | help | |
340 | expedite is not actively maintained anymore. | |
341 | https://sourceforge.net/p/enlightenment/mailman/message/36428571 | |
342 | ||
3d3235f9 BK |
343 | config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT |
344 | bool "mesa3d opengl texture float option removed" | |
345 | select BR2_LEGACY | |
346 | help | |
347 | mesa3d now unconditionally enables floating-point textures, | |
348 | as the corresponding patent has expired. | |
349 | ||
a2d44ec6 BK |
350 | config BR2_KERNEL_HEADERS_4_10 |
351 | bool "kernel headers version 4.10.x are no longer supported" | |
a2d44ec6 BK |
352 | select BR2_LEGACY |
353 | help | |
354 | Version 4.10.x of the Linux kernel headers are no longer | |
1b3c43f7 | 355 | maintained upstream and are now removed. |
a2d44ec6 BK |
356 | |
357 | config BR2_KERNEL_HEADERS_4_11 | |
358 | bool "kernel headers version 4.11.x are no longer supported" | |
a2d44ec6 BK |
359 | select BR2_LEGACY |
360 | help | |
361 | Version 4.11.x of the Linux kernel headers are no longer | |
1b3c43f7 | 362 | maintained upstream and are now removed. |
a2d44ec6 BK |
363 | |
364 | config BR2_KERNEL_HEADERS_4_12 | |
365 | bool "kernel headers version 4.12.x are no longer supported" | |
a2d44ec6 BK |
366 | select BR2_LEGACY |
367 | help | |
368 | Version 4.12.x of the Linux kernel headers are no longer | |
1b3c43f7 | 369 | maintained upstream and are now removed. |
a2d44ec6 BK |
370 | |
371 | config BR2_KERNEL_HEADERS_4_13 | |
372 | bool "kernel headers version 4.13.x are no longer supported" | |
a2d44ec6 BK |
373 | select BR2_LEGACY |
374 | help | |
375 | Version 4.13.x of the Linux kernel headers are no longer | |
1b3c43f7 | 376 | maintained upstream and are now removed. |
a2d44ec6 BK |
377 | |
378 | config BR2_KERNEL_HEADERS_4_15 | |
379 | bool "kernel headers version 4.15.x are no longer supported" | |
a2d44ec6 BK |
380 | select BR2_LEGACY |
381 | help | |
382 | Version 4.15.x of the Linux kernel headers are no longer | |
1b3c43f7 | 383 | maintained upstream and are now removed. |
a2d44ec6 | 384 | |
d220ce6d YM |
385 | config BR2_KERNEL_HEADERS_4_17 |
386 | bool "kernel headers version 4.17.x are no longer supported" | |
387 | select BR2_LEGACY | |
388 | help | |
389 | Version 4.17.x of the Linux kernel headers are no longer | |
390 | maintained upstream and are now removed. | |
391 | ||
00d63a15 BS |
392 | config BR2_PACKAGE_LIBNFTNL_XML |
393 | bool "libnftl no longer supports XML output" | |
394 | select BR2_LEGACY | |
395 | help | |
396 | libnftnl removed integration with libmxml. | |
397 | ||
ebee2c64 PK |
398 | config BR2_KERNEL_HEADERS_3_2 |
399 | bool "kernel headers version 3.2.x are no longer supported" | |
400 | select BR2_LEGACY | |
401 | help | |
402 | Version 3.2.x of the Linux kernel headers are no longer | |
403 | maintained upstream and are now removed. | |
404 | ||
405 | config BR2_KERNEL_HEADERS_4_1 | |
406 | bool "kernel headers version 4.1.x are no longer supported" | |
407 | select BR2_LEGACY | |
408 | help | |
409 | Version 4.1.x of the Linux kernel headers are no longer | |
410 | maintained upstream and are now removed. | |
411 | ||
412 | config BR2_KERNEL_HEADERS_4_16 | |
413 | bool "kernel headers version 4.16.x are no longer supported" | |
414 | select BR2_LEGACY | |
415 | help | |
416 | Version 4.16.x of the Linux kernel headers are no longer | |
417 | maintained upstream and are now removed. | |
418 | ||
419 | config BR2_KERNEL_HEADERS_4_18 | |
420 | bool "kernel headers version 4.18.x are no longer supported" | |
421 | select BR2_LEGACY | |
422 | help | |
423 | Version 4.18.x of the Linux kernel headers are no longer | |
424 | maintained upstream and are now removed. | |
425 | ||
54a2e7a3 RN |
426 | ############################################################################### |
427 | comment "Legacy options removed in 2018.08" | |
428 | ||
de336584 CS |
429 | config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT |
430 | bool "docker-engine static client option renamed" | |
431 | select BR2_LEGACY | |
432 | select BR2_PACKAGE_DOCKER_CLI_STATIC | |
433 | help | |
434 | BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT has been renamed to | |
435 | BR2_PACKAGE_DOCKER_CLI_STATIC, following the package split of | |
436 | docker-engine and docker-cli. | |
437 | ||
f9063023 BK |
438 | config BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_19 |
439 | bool "Modular X.org server was updated to version 1.20.0" | |
440 | select BR2_LEGACY | |
441 | select BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_20 | |
442 | help | |
443 | Modular X.org server was updated to version 1.20.0 | |
444 | ||
14c52533 BK |
445 | config BR2_PACKAGE_XPROTO_APPLEWMPROTO |
446 | bool "xproto-applewmproto package replaced by xorgproto" | |
447 | select BR2_LEGACY | |
448 | select BR2_PACKAGE_XORGPROTO | |
449 | help | |
450 | The xproto-applewmproto package has been replaced by the | |
451 | xorgproto package, which combines all xproto_* packages. | |
452 | ||
453 | config BR2_PACKAGE_XPROTO_BIGREQSPROTO | |
454 | bool "xproto-bigreqsproto package replaced by xorgproto" | |
455 | select BR2_LEGACY | |
456 | select BR2_PACKAGE_XORGPROTO | |
457 | help | |
458 | The xproto-bigreqsproto package has been replaced by the | |
459 | xorgproto package, which combines all xproto_* packages. | |
460 | ||
461 | config BR2_PACKAGE_XPROTO_COMPOSITEPROTO | |
462 | bool "xproto-compositeproto package replaced by xorgproto" | |
463 | select BR2_LEGACY | |
464 | select BR2_PACKAGE_XORGPROTO | |
465 | help | |
466 | The xproto-compositeproto package has been replaced by the | |
467 | xorgproto package, which combines all xproto_* packages. | |
468 | ||
469 | config BR2_PACKAGE_XPROTO_DAMAGEPROTO | |
470 | bool "xproto-dameproto package replaced by xorgproto" | |
471 | select BR2_LEGACY | |
472 | select BR2_PACKAGE_XORGPROTO | |
473 | help | |
474 | The xproto-dameproto package has been replaced by the | |
475 | xorgproto package, which combines all xproto_* packages. | |
476 | ||
477 | config BR2_PACKAGE_XPROTO_DMXPROTO | |
478 | bool "xproto-dmxproto package replaced by xorgproto" | |
479 | select BR2_LEGACY | |
480 | select BR2_PACKAGE_XORGPROTO | |
481 | help | |
482 | The xproto-dmxproto package has been replaced by the | |
483 | xorgproto package, which combines all xproto_* packages. | |
484 | ||
485 | config BR2_PACKAGE_XPROTO_DRI2PROTO | |
486 | bool "xproto-dri2proto package replaced by xorgproto" | |
487 | select BR2_LEGACY | |
488 | select BR2_PACKAGE_XORGPROTO | |
489 | help | |
490 | The xproto-dri2proto package has been replaced by the | |
491 | xorgproto package, which combines all xproto_* packages. | |
492 | ||
493 | config BR2_PACKAGE_XPROTO_DRI3PROTO | |
494 | bool "xproto-dri3proto package replaced by xorgproto" | |
495 | select BR2_LEGACY | |
496 | select BR2_PACKAGE_XORGPROTO | |
497 | help | |
498 | The xproto-dri3proto package has been replaced by the | |
499 | xorgproto package, which combines all xproto_* packages. | |
500 | ||
501 | config BR2_PACKAGE_XPROTO_FIXESPROTO | |
502 | bool "xproto-fixesproto package replaced by xorgproto" | |
503 | select BR2_LEGACY | |
504 | select BR2_PACKAGE_XORGPROTO | |
505 | help | |
506 | The xproto-fixesproto package has been replaced by the | |
507 | xorgproto package, which combines all xproto_* packages. | |
508 | ||
509 | config BR2_PACKAGE_XPROTO_FONTCACHEPROTO | |
510 | bool "xproto-fontcacheproto package replaced by xorgproto" | |
511 | select BR2_LEGACY | |
512 | select BR2_PACKAGE_XORGPROTO | |
513 | help | |
514 | The xproto-fontcacheproto package has been replaced by the | |
515 | xorgproto package, which combines all xproto_* packages. | |
516 | ||
517 | config BR2_PACKAGE_XPROTO_FONTSPROTO | |
518 | bool "xproto-fontsproto package replaced by xorgproto" | |
519 | select BR2_LEGACY | |
520 | select BR2_PACKAGE_XORGPROTO | |
521 | help | |
522 | The xproto-fontsproto package has been replaced by the | |
523 | xorgproto package, which combines all xproto_* packages. | |
524 | ||
525 | config BR2_PACKAGE_XPROTO_GLPROTO | |
526 | bool "xproto-glproto package replaced by xorgproto" | |
527 | select BR2_LEGACY | |
528 | select BR2_PACKAGE_XORGPROTO | |
529 | help | |
530 | The xproto-glproto package has been replaced by the | |
531 | xorgproto package, which combines all xproto_* packages. | |
532 | ||
533 | config BR2_PACKAGE_XPROTO_INPUTPROTO | |
534 | bool "xproto-inputproto package replaced by xorgproto" | |
535 | select BR2_LEGACY | |
536 | select BR2_PACKAGE_XORGPROTO | |
537 | help | |
538 | The xproto-inputproto package has been replaced by the | |
539 | xorgproto package, which combines all xproto_* packages. | |
540 | ||
541 | config BR2_PACKAGE_XPROTO_KBPROTO | |
542 | bool "xproto-kbproto package replaced by xorgproto" | |
543 | select BR2_LEGACY | |
544 | select BR2_PACKAGE_XORGPROTO | |
545 | help | |
546 | The xproto-kbproto package has been replaced by the | |
547 | xorgproto package, which combines all xproto_* packages. | |
548 | ||
549 | config BR2_PACKAGE_XPROTO_PRESENTPROTO | |
550 | bool "xproto-presentproto package replaced by xorgproto" | |
551 | select BR2_LEGACY | |
552 | select BR2_PACKAGE_XORGPROTO | |
553 | help | |
554 | The xproto-presentproto package has been replaced by the | |
555 | xorgproto package, which combines all xproto_* packages. | |
556 | ||
557 | config BR2_PACKAGE_XPROTO_RANDRPROTO | |
558 | bool "xproto-randrproto package replaced by xorgproto" | |
559 | select BR2_LEGACY | |
560 | select BR2_PACKAGE_XORGPROTO | |
561 | help | |
562 | The xproto-randrproto package has been replaced by the | |
563 | xorgproto package, which combines all xproto_* packages. | |
564 | ||
565 | config BR2_PACKAGE_XPROTO_RECORDPROTO | |
566 | bool "xproto-recordproto package replaced by xorgproto" | |
567 | select BR2_LEGACY | |
568 | select BR2_PACKAGE_XORGPROTO | |
569 | help | |
570 | The xproto-recordproto package has been replaced by the | |
571 | xorgproto package, which combines all xproto_* packages. | |
572 | ||
573 | config BR2_PACKAGE_XPROTO_RENDERPROTO | |
574 | bool "xproto-renderproto package replaced by xorgproto" | |
575 | select BR2_LEGACY | |
576 | select BR2_PACKAGE_XORGPROTO | |
577 | help | |
578 | The xproto-renderproto package has been replaced by the | |
579 | xorgproto package, which combines all xproto_* packages. | |
580 | ||
581 | config BR2_PACKAGE_XPROTO_RESOURCEPROTO | |
582 | bool "xproto-resourceproto package replaced by xorgproto" | |
583 | select BR2_LEGACY | |
584 | select BR2_PACKAGE_XORGPROTO | |
585 | help | |
586 | The xproto-resourceproto package has been replaced by the | |
587 | xorgproto package, which combines all xproto_* packages. | |
588 | ||
589 | config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO | |
590 | bool "xproto-scrnsaverprot package replaced by xorgproto" | |
591 | select BR2_LEGACY | |
592 | select BR2_PACKAGE_XORGPROTO | |
593 | help | |
594 | The xproto-scrnsaverprot package has been replaced by the | |
595 | xorgproto package, which combines all xproto_* packages. | |
596 | ||
597 | config BR2_PACKAGE_XPROTO_VIDEOPROTO | |
598 | bool "xproto-videoproto package replaced by xorgproto" | |
599 | select BR2_LEGACY | |
600 | select BR2_PACKAGE_XORGPROTO | |
601 | help | |
602 | The xproto-videoproto package has been replaced by the | |
603 | xorgproto package, which combines all xproto_* packages. | |
604 | ||
605 | config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO | |
606 | bool "xproto-windowswmproto package replaced by xorgproto" | |
607 | select BR2_LEGACY | |
608 | select BR2_PACKAGE_XORGPROTO | |
609 | help | |
610 | The xproto-windowswmproto package has been replaced by the | |
611 | xorgproto package, which combines all xproto_* packages. | |
612 | ||
613 | config BR2_PACKAGE_XPROTO_XCMISCPROTO | |
614 | bool "xproto-xcmiscproto package replaced by xorgproto" | |
615 | select BR2_LEGACY | |
616 | select BR2_PACKAGE_XORGPROTO | |
617 | help | |
618 | The xproto-xcmiscproto package has been replaced by the | |
619 | xorgproto package, which combines all xproto_* packages. | |
620 | ||
621 | config BR2_PACKAGE_XPROTO_XEXTPROTO | |
622 | bool "xproto-xextproto package replaced by xorgproto" | |
623 | select BR2_LEGACY | |
624 | select BR2_PACKAGE_XORGPROTO | |
625 | help | |
626 | The xproto-xextproto package has been replaced by the | |
627 | xorgproto package, which combines all xproto_* packages. | |
628 | ||
629 | config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO | |
630 | bool "xproto-xf86bigfontproto package replaced by xorgproto" | |
631 | select BR2_LEGACY | |
632 | select BR2_PACKAGE_XORGPROTO | |
633 | help | |
634 | The xproto-xf86bigfontproto package has been replaced by the | |
635 | xorgproto package, which combines all xproto_* packages. | |
636 | ||
637 | config BR2_PACKAGE_XPROTO_XF86DGAPROTO | |
638 | bool "xproto-xf86dgaproto package replaced by xorgproto" | |
639 | select BR2_LEGACY | |
640 | select BR2_PACKAGE_XORGPROTO | |
641 | help | |
642 | The xproto-xf86dgaproto package has been replaced by the | |
643 | xorgproto package, which combines all xproto_* packages. | |
644 | ||
645 | config BR2_PACKAGE_XPROTO_XF86DRIPROTO | |
646 | bool "xproto-xf86driproto package replaced by xorgproto" | |
647 | select BR2_LEGACY | |
648 | select BR2_PACKAGE_XORGPROTO | |
649 | help | |
650 | The xproto-xf86driproto package has been replaced by the | |
651 | xorgproto package, which combines all xproto_* packages. | |
652 | ||
653 | config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO | |
654 | bool "xproto-xf86vidmodeproto package replaced by xorgproto" | |
655 | select BR2_LEGACY | |
656 | select BR2_PACKAGE_XORGPROTO | |
657 | help | |
658 | The xproto-xf86vidmodeproto package has been replaced by the | |
659 | xorgproto package, which combines all xproto_* packages. | |
660 | ||
661 | config BR2_PACKAGE_XPROTO_XINERAMAPROTO | |
662 | bool "xproto-xineramaproto package replaced by xorgproto" | |
663 | select BR2_LEGACY | |
664 | select BR2_PACKAGE_XORGPROTO | |
665 | help | |
666 | The xproto-xineramaproto package has been replaced by the | |
667 | xorgproto package, which combines all xproto_* packages. | |
668 | ||
669 | config BR2_PACKAGE_XPROTO_XPROTO | |
670 | bool "xproto-xproto package replaced by xorgproto" | |
671 | select BR2_LEGACY | |
672 | select BR2_PACKAGE_XORGPROTO | |
673 | help | |
674 | The xproto-xproto package has been replaced by the | |
675 | xorgproto package, which combines all xproto_* packages. | |
676 | ||
677 | config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL | |
678 | bool "xproto-xproxymanagementprotocol package replaced by xorgproto" | |
679 | select BR2_LEGACY | |
680 | select BR2_PACKAGE_XORGPROTO | |
681 | help | |
682 | The xproto-xproxymanagementprotocol package has been | |
683 | replaced by the xorgproto package, which combines all | |
684 | xproto_* packages. | |
685 | ||
3f2aef56 AD |
686 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL |
687 | bool "gst1-plugins-bad opengl option moved to gst1-plugins-base" | |
688 | select BR2_LEGACY | |
689 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL | |
690 | help | |
691 | The opengl option has been moved from gst1-plugins-bad to | |
692 | gst1-plugins-base. | |
693 | ||
694 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2 | |
695 | bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base" | |
696 | select BR2_LEGACY | |
697 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2 | |
698 | help | |
699 | The gles2 option has been moved from gst1-plugins-bad to | |
700 | gst1-plugins-base. | |
701 | ||
702 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX | |
703 | bool "gst1-plugins-bad glx option moved to gst1-plugins-base" | |
704 | select BR2_LEGACY | |
705 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX | |
706 | help | |
707 | The glx option has been moved from gst1-plugins-bad to | |
708 | gst1-plugins-base. | |
709 | ||
710 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL | |
711 | bool "gst1-plugins-bad egl option moved to gst1-plugins-base" | |
712 | select BR2_LEGACY | |
713 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL | |
714 | help | |
715 | The egl option has been moved from gst1-plugins-bad to | |
716 | gst1-plugins-base. | |
717 | ||
718 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11 | |
719 | bool "gst1-plugins-bad x11 option moved to gst1-plugins-base" | |
720 | select BR2_LEGACY | |
721 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11 | |
722 | help | |
723 | The x11 option has been moved from gst1-plugins-bad to | |
724 | gst1-plugins-base. | |
725 | ||
726 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND | |
727 | bool "gst1-plugins-bad wayland option moved to gst1-plugins-base" | |
728 | select BR2_LEGACY | |
729 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND | |
730 | help | |
731 | The wayland option has been moved from gst1-plugins-bad to | |
732 | gst1-plugins-base. | |
733 | ||
734 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX | |
735 | bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base" | |
736 | select BR2_LEGACY | |
737 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX | |
738 | help | |
739 | The dispmanx option has been moved from gst1-plugins-mad to | |
740 | gst1-plugins-base. | |
741 | ||
742 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER | |
743 | bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base" | |
744 | select BR2_LEGACY | |
745 | select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER | |
746 | help | |
747 | The audiomixer option has been moved from gst1-plugins-bad to | |
748 | gst1-plugins-base. | |
749 | ||
750 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME | |
751 | bool "gst1-plugins-ugly lame option moved to gst1-plugins-good" | |
752 | select BR2_LEGACY | |
753 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME | |
754 | help | |
755 | The lame option has been moved from gst1-plugins-ugly to | |
756 | gst1-plugins-good. | |
757 | ||
758 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123 | |
759 | bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good" | |
760 | select BR2_LEGACY | |
761 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123 | |
762 | help | |
763 | The mpg123 option has been moved from gst1-plugins-ugly to | |
764 | gst1-plugins-good. | |
765 | ||
bae35c80 RN |
766 | config BR2_GDB_VERSION_7_11 |
767 | bool "gdb 7.11 has been removed" | |
768 | select BR2_LEGACY | |
769 | help | |
770 | The 7.11 version of gdb has been removed. Use a newer version | |
771 | instead. | |
772 | ||
54a2e7a3 RN |
773 | config BR2_GDB_VERSION_7_10 |
774 | bool "gdb 7.10 has been removed" | |
775 | select BR2_LEGACY | |
776 | help | |
777 | The 7.10 version of gdb has been removed. Use a newer version | |
778 | instead. | |
779 | ||
86dfb429 | 780 | ############################################################################### |
9657e964 BK |
781 | comment "Legacy options removed in 2018.05" |
782 | ||
8553b398 PV |
783 | config BR2_PACKAGE_MEDIAART_BACKEND_NONE |
784 | bool "libmediaart none backend option renamed" | |
785 | select BR2_LEGACY | |
786 | help | |
787 | For consistency reasons, the option | |
788 | BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to | |
789 | BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE | |
790 | ||
791 | config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF | |
792 | bool "libmediaart gdk-pixbuf backend option renamed" | |
793 | select BR2_LEGACY | |
794 | help | |
795 | For consistency reasons, the option | |
796 | BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to | |
797 | BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF | |
798 | ||
799 | config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF | |
800 | bool "libmediaart qt backend option renamed" | |
801 | select BR2_LEGACY | |
802 | help | |
803 | For consistency reasons, the option | |
804 | BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to | |
805 | BR2_PACKAGE_LIBMEDIAART_BACKEND_QT | |
806 | ||
4a03a66f YM |
807 | # Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from |
808 | # package/ti-sgx-km/Config.in | |
b54c5464 TP |
809 | config BR2_PACKAGE_TI_SGX_AM335X |
810 | bool "ti-sgx-km AM335X option renamed" | |
811 | select BR2_LEGACY | |
812 | help | |
813 | For consistency reasons, the option | |
814 | BR2_PACKAGE_TI_SGX_AM335X has been renamed to | |
815 | BR2_PACKAGE_TI_SGX_KM_AM335X. | |
816 | ||
4a03a66f YM |
817 | # Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from |
818 | # package/ti-sgx-km/Config.in | |
b54c5464 TP |
819 | config BR2_PACKAGE_TI_SGX_AM437X |
820 | bool "ti-sgx-km AM437X option renamed" | |
821 | select BR2_LEGACY | |
822 | help | |
823 | For consistency reasons, the option | |
824 | BR2_PACKAGE_TI_SGX_AM437X has been renamed to | |
825 | BR2_PACKAGE_TI_SGX_KM_AM437X. | |
826 | ||
4a03a66f YM |
827 | # Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from |
828 | # package/ti-sgx-km/Config.in | |
b54c5464 TP |
829 | config BR2_PACKAGE_TI_SGX_AM4430 |
830 | bool "ti-sgx-km AM4430 option renamed" | |
831 | select BR2_LEGACY | |
832 | help | |
833 | For consistency reasons, the option | |
834 | BR2_PACKAGE_TI_SGX_AM4430 has been renamed to | |
835 | BR2_PACKAGE_TI_SGX_KM_AM4430. | |
836 | ||
4a03a66f YM |
837 | # Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from |
838 | # package/ti-sgx-km/Config.in | |
b54c5464 TP |
839 | config BR2_PACKAGE_TI_SGX_AM5430 |
840 | bool "ti-sgx-km AM5430 option renamed" | |
841 | select BR2_LEGACY | |
842 | help | |
843 | For consistency reasons, the option | |
844 | BR2_PACKAGE_TI_SGX_AM5430 has been renamed to | |
845 | BR2_PACKAGE_TI_SGX_KM_AM5430. | |
846 | ||
a79df201 TP |
847 | config BR2_PACKAGE_JANUS_AUDIO_BRIDGE |
848 | bool "janus-gateway audio-bridge option renamed" | |
849 | select BR2_LEGACY | |
850 | select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE | |
851 | help | |
852 | For consistency reasons, the janus-gateway option | |
853 | BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to | |
854 | BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE. | |
855 | ||
856 | config BR2_PACKAGE_JANUS_ECHO_TEST | |
857 | bool "janus-gateway echo-test option renamed" | |
858 | select BR2_LEGACY | |
859 | select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST | |
860 | help | |
861 | For consistency reasons, the janus-gateway option | |
862 | BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to | |
863 | BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST. | |
864 | ||
865 | config BR2_PACKAGE_JANUS_RECORDPLAY | |
866 | bool "janus-gateway recordplay option renamed" | |
867 | select BR2_LEGACY | |
868 | select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY | |
869 | help | |
870 | For consistency reasons, the janus-gateway option | |
871 | BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to | |
872 | BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY. | |
873 | ||
874 | config BR2_PACKAGE_JANUS_SIP_GATEWAY | |
875 | bool "janus-gateway sip-gateway option renamed" | |
876 | select BR2_LEGACY | |
877 | select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY | |
878 | help | |
879 | For consistency reasons, the janus-gateway option | |
880 | BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to | |
881 | BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY. | |
882 | ||
883 | config BR2_PACKAGE_JANUS_STREAMING | |
884 | bool "janus-gateway streaming option renamed" | |
885 | select BR2_LEGACY | |
886 | select BR2_PACKAGE_JANUS_GATEWAY_STREAMING | |
887 | help | |
888 | For consistency reasons, the janus-gateway option | |
889 | BR2_PACKAGE_JANUS_STREAMING has been renamed to | |
890 | BR2_PACKAGE_JANUS_GATEWAY_STREAMING. | |
891 | ||
892 | config BR2_PACKAGE_JANUS_TEXT_ROOM | |
893 | bool "janus-gateway text-room option renamed" | |
894 | select BR2_LEGACY | |
895 | select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM | |
896 | help | |
897 | For consistency reasons, the janus-gateway option | |
898 | BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to | |
899 | BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM. | |
900 | ||
901 | config BR2_PACKAGE_JANUS_VIDEO_CALL | |
902 | bool "janus-gateway video-call option renamed" | |
903 | select BR2_LEGACY | |
904 | select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL | |
905 | help | |
906 | For consistency reasons, the janus-gateway option | |
907 | BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to | |
908 | BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL. | |
909 | ||
910 | config BR2_PACKAGE_JANUS_VIDEO_ROOM | |
911 | bool "janus-gateway video-room option renamed" | |
912 | select BR2_LEGACY | |
913 | select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM | |
914 | help | |
915 | For consistency reasons, the janus-gateway option | |
916 | BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to | |
917 | BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM. | |
918 | ||
919 | config BR2_PACKAGE_JANUS_MQTT | |
920 | bool "janus-gateway mqtt option renamed" | |
921 | select BR2_LEGACY | |
922 | select BR2_PACKAGE_JANUS_GATEWAY_MQTT | |
923 | help | |
924 | For consistency reasons, the janus-gateway option | |
925 | BR2_PACKAGE_JANUS_MQTT has been renamed to | |
926 | BR2_PACKAGE_JANUS_GATEWAY_MQTT. | |
927 | ||
928 | config BR2_PACKAGE_JANUS_RABBITMQ | |
929 | bool "janus-gateway rabbitmq option renamed" | |
930 | select BR2_LEGACY | |
931 | select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ | |
932 | help | |
933 | For consistency reasons, the janus-gateway option | |
934 | BR2_PACKAGE_JANUS_RABBITMQ has been renamed to | |
935 | BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ. | |
936 | ||
937 | config BR2_PACKAGE_JANUS_REST | |
938 | bool "janus-gateway rest option renamed" | |
939 | select BR2_LEGACY | |
940 | select BR2_PACKAGE_JANUS_GATEWAY_REST | |
941 | help | |
942 | For consistency reasons, the janus-gateway option | |
943 | BR2_PACKAGE_JANUS_REST has been renamed to | |
944 | BR2_PACKAGE_JANUS_GATEWAY_REST. | |
945 | ||
946 | config BR2_PACKAGE_JANUS_UNIX_SOCKETS | |
947 | bool "janus-gateway unix-sockets option renamed" | |
948 | select BR2_LEGACY | |
949 | select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS | |
950 | help | |
951 | For consistency reasons, the janus-gateway option | |
952 | BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to | |
953 | BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS. | |
954 | ||
955 | config BR2_PACKAGE_JANUS_WEBSOCKETS | |
956 | bool "janus-gateway websockets option renamed" | |
957 | select BR2_LEGACY | |
958 | select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS | |
959 | help | |
960 | For consistency reasons, the janus-gateway option | |
961 | BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to | |
962 | BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS. | |
963 | ||
9d2c5c25 TP |
964 | config BR2_PACKAGE_IPSEC_SECCTX_DISABLE |
965 | bool "ipsec-tools security context disable option renamed" | |
966 | select BR2_LEGACY | |
967 | help | |
968 | For consistency reasons, the option | |
969 | BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to | |
970 | BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE. | |
971 | ||
972 | config BR2_PACKAGE_IPSEC_SECCTX_ENABLE | |
973 | bool "ipsec-tools SELinux security context enable option renamed" | |
974 | select BR2_LEGACY | |
975 | help | |
976 | For consistency reasons, the option | |
977 | BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to | |
978 | BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE. | |
979 | ||
980 | config BR2_PACKAGE_IPSEC_SECCTX_KERNEL | |
981 | bool "ipsec-tools kernel security context enable option renamed" | |
982 | select BR2_LEGACY | |
983 | help | |
984 | For consistency reasons, the option | |
985 | BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to | |
986 | BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL. | |
987 | ||
dc4e4aac TP |
988 | config BR2_PACKAGE_LIBTFDI_CPP |
989 | bool "libftdi C++ bindings option renamed" | |
990 | select BR2_LEGACY | |
991 | select BR2_PACKAGE_LIBFTDI_CPP | |
992 | help | |
993 | The option BR2_PACKAGE_LIBTFDI_CPP was renamed to | |
994 | BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option | |
995 | name. | |
996 | ||
94c14628 TP |
997 | config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE |
998 | bool "jquery-ui-themes option black-tie renamed" | |
999 | select BR2_LEGACY | |
1000 | help | |
1001 | For consistency reasons, the jquery-ui-themes option for the | |
1002 | black-tie theme has been renamed from | |
1003 | BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to | |
1004 | BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE. | |
1005 | ||
1006 | config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER | |
1007 | bool "jquery-ui-themes option blitzer renamed" | |
1008 | select BR2_LEGACY | |
1009 | help | |
1010 | For consistency reasons, the jquery-ui-themes option for the | |
1011 | blitzer theme has been renamed from | |
1012 | BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to | |
1013 | BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER. | |
1014 | ||
1015 | config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO | |
1016 | bool "jquery-ui-themes option cupertino renamed" | |
1017 | select BR2_LEGACY | |
1018 | help | |
1019 | For consistency reasons, the jquery-ui-themes option for the | |
1020 | cupertino theme has been renamed from | |
1021 | BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to | |
1022 | BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO. | |
1023 | ||
1024 | config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE | |
1025 | bool "jquery-ui-themes option dark-hive renamed" | |
1026 | select BR2_LEGACY | |
1027 | help | |
1028 | For consistency reasons, the jquery-ui-themes option for the | |
1029 | dark-hive theme has been renamed from | |
1030 | BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to | |
1031 | BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE. | |
1032 | ||
1033 | config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV | |
1034 | bool "jquery-ui-themes option dot-luv renamed" | |
1035 | select BR2_LEGACY | |
1036 | help | |
1037 | For consistency reasons, the jquery-ui-themes option for the | |
1038 | dot-luv theme has been renamed from | |
1039 | BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to | |
1040 | BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV. | |
1041 | ||
1042 | config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT | |
1043 | bool "jquery-ui-themes option eggplant renamed" | |
1044 | select BR2_LEGACY | |
1045 | help | |
1046 | For consistency reasons, the jquery-ui-themes option for the | |
1047 | eggplant theme has been renamed from | |
1048 | BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to | |
1049 | BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT. | |
1050 | ||
1051 | config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE | |
1052 | bool "jquery-ui-themes option excite-bike renamed" | |
1053 | select BR2_LEGACY | |
1054 | help | |
1055 | For consistency reasons, the jquery-ui-themes option for the | |
1056 | excite-bike theme has been renamed from | |
1057 | BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to | |
1058 | BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE. | |
1059 | ||
1060 | config BR2_PACKAGE_JQUERY_UI_THEME_FLICK | |
1061 | bool "jquery-ui-themes option flick renamed" | |
1062 | select BR2_LEGACY | |
1063 | help | |
1064 | For consistency reasons, the jquery-ui-themes option for the | |
1065 | flick theme has been renamed from | |
1066 | BR2_PACKAGE_JQUERY_UI_THEME_FLICK to | |
1067 | BR2_PACKAGE_JQUERY_UI_THEMES_FLICK. | |
1068 | ||
1069 | config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS | |
1070 | bool "jquery-ui-themes option hot-sneaks renamed" | |
1071 | select BR2_LEGACY | |
1072 | help | |
1073 | For consistency reasons, the jquery-ui-themes option for the | |
1074 | hot-sneaks theme has been renamed from | |
1075 | BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to | |
1076 | BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS. | |
1077 | ||
1078 | config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY | |
1079 | bool "jquery-ui-themes option humanity renamed" | |
1080 | select BR2_LEGACY | |
1081 | help | |
1082 | For consistency reasons, the jquery-ui-themes option for the | |
1083 | humanity theme has been renamed from | |
1084 | BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to | |
1085 | BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY. | |
1086 | ||
1087 | config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG | |
1088 | bool "jquery-ui-themes option le-frog renamed" | |
1089 | select BR2_LEGACY | |
1090 | help | |
1091 | For consistency reasons, the jquery-ui-themes option for the | |
1092 | le-frog theme has been renamed from | |
1093 | BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to | |
1094 | BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG. | |
1095 | ||
1096 | config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC | |
1097 | bool "jquery-ui-themes option mint-choc renamed" | |
1098 | select BR2_LEGACY | |
1099 | help | |
1100 | For consistency reasons, the jquery-ui-themes option for the | |
1101 | mint-choc theme has been renamed from | |
1102 | BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to | |
1103 | BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC. | |
1104 | ||
1105 | config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST | |
1106 | bool "jquery-ui-themes option overcast renamed" | |
1107 | select BR2_LEGACY | |
1108 | help | |
1109 | For consistency reasons, the jquery-ui-themes option for the | |
1110 | overcast theme has been renamed from | |
1111 | BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to | |
1112 | BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST. | |
1113 | ||
1114 | config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER | |
1115 | bool "jquery-ui-themes option pepper-grinder renamed" | |
1116 | select BR2_LEGACY | |
1117 | help | |
1118 | For consistency reasons, the jquery-ui-themes option for the | |
1119 | pepper-grinder theme has been renamed from | |
1120 | BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to | |
1121 | BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER. | |
1122 | ||
1123 | config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND | |
1124 | bool "jquery-ui-themes option redmond renamed" | |
1125 | select BR2_LEGACY | |
1126 | help | |
1127 | For consistency reasons, the jquery-ui-themes option for the | |
1128 | redmond theme has been renamed from | |
1129 | BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to | |
1130 | BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND. | |
1131 | ||
1132 | config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS | |
1133 | bool "jquery-ui-themes option smoothness renamed" | |
1134 | select BR2_LEGACY | |
1135 | help | |
1136 | For consistency reasons, the jquery-ui-themes option for the | |
1137 | smoothness theme has been renamed from | |
1138 | BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to | |
1139 | BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS. | |
1140 | ||
1141 | config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET | |
1142 | bool "jquery-ui-themes option south-street renamed" | |
1143 | select BR2_LEGACY | |
1144 | help | |
1145 | For consistency reasons, the jquery-ui-themes option for the | |
1146 | south-street theme has been renamed from | |
1147 | BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to | |
1148 | BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET. | |
1149 | ||
1150 | config BR2_PACKAGE_JQUERY_UI_THEME_START | |
1151 | bool "jquery-ui-themes option start renamed" | |
1152 | select BR2_LEGACY | |
1153 | help | |
1154 | For consistency reasons, the jquery-ui-themes option for the | |
1155 | start theme has been renamed from | |
1156 | BR2_PACKAGE_JQUERY_UI_THEME_START to | |
1157 | BR2_PACKAGE_JQUERY_UI_THEMES_START. | |
1158 | ||
1159 | config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY | |
1160 | bool "jquery-ui-themes option sunny renamed" | |
1161 | select BR2_LEGACY | |
1162 | help | |
1163 | For consistency reasons, the jquery-ui-themes option for the | |
1164 | sunny theme has been renamed from | |
1165 | BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to | |
1166 | BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY. | |
1167 | ||
1168 | config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE | |
1169 | bool "jquery-ui-themes option swanky-purse renamed" | |
1170 | select BR2_LEGACY | |
1171 | help | |
1172 | For consistency reasons, the jquery-ui-themes option for the | |
1173 | swanky-purse theme has been renamed from | |
1174 | BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to | |
1175 | BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE. | |
1176 | ||
1177 | config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC | |
1178 | bool "jquery-ui-themes option trontastic renamed" | |
1179 | select BR2_LEGACY | |
1180 | help | |
1181 | For consistency reasons, the jquery-ui-themes option for the | |
1182 | trontastic theme has been renamed from | |
1183 | BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to | |
1184 | BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC. | |
1185 | ||
1186 | config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS | |
1187 | bool "jquery-ui-themes option ui-darkness renamed" | |
1188 | select BR2_LEGACY | |
1189 | help | |
1190 | For consistency reasons, the jquery-ui-themes option for the | |
1191 | ui-darkness theme has been renamed from | |
1192 | BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to | |
1193 | BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS. | |
1194 | ||
1195 | config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS | |
1196 | bool "jquery-ui-themes option ui-lightness renamed" | |
1197 | select BR2_LEGACY | |
1198 | help | |
1199 | For consistency reasons, the jquery-ui-themes option for the | |
1200 | ui-lightness theme has been renamed from | |
1201 | BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to | |
1202 | BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS. | |
1203 | ||
1204 | config BR2_PACKAGE_JQUERY_UI_THEME_VADER | |
1205 | bool "jquery-ui-themes option vader renamed" | |
1206 | select BR2_LEGACY | |
1207 | help | |
1208 | For consistency reasons, the jquery-ui-themes option for the | |
1209 | vader theme has been renamed from | |
1210 | BR2_PACKAGE_JQUERY_UI_THEME_VADER to | |
1211 | BR2_PACKAGE_JQUERY_UI_THEMES_VADER. | |
1212 | ||
b2b874fe TP |
1213 | config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH |
1214 | bool "bluez5-utils health plugin option renamed" | |
1215 | select BR2_LEGACY | |
1216 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH | |
1217 | help | |
1218 | For consistency reasons, the option | |
1219 | BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to | |
1220 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH. | |
1221 | ||
1222 | config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI | |
1223 | bool "bluez5-utils midi plugin option renamed" | |
1224 | select BR2_LEGACY | |
1225 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI | |
1226 | help | |
1227 | For consistency reasons, the option | |
1228 | BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to | |
1229 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI. | |
1230 | ||
1231 | config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC | |
1232 | bool "bluez5-utils nfc plugin option renamed" | |
1233 | select BR2_LEGACY | |
1234 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC | |
1235 | help | |
1236 | For consistency reasons, the option | |
1237 | BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to | |
1238 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC. | |
1239 | ||
1240 | config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP | |
1241 | bool "bluez5-utils sap plugin option renamed" | |
1242 | select BR2_LEGACY | |
1243 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP | |
1244 | help | |
1245 | For consistency reasons, the option | |
1246 | BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to | |
1247 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP. | |
1248 | ||
1249 | config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS | |
1250 | bool "bluez5-utils sixaxis plugin option renamed" | |
1251 | select BR2_LEGACY | |
1252 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS | |
1253 | help | |
1254 | For consistency reasons, the option | |
1255 | BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to | |
1256 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS. | |
1257 | ||
79a678d7 BK |
1258 | config BR2_PACKAGE_TRANSMISSION_REMOTE |
1259 | bool "transmission remote tool option removed" | |
1260 | select BR2_LEGACY | |
1261 | select BR2_PACKAGE_TRANSMISSION_DAEMON | |
1262 | help | |
1263 | Upstream does not provide a separate configure option for | |
1264 | the tool transmission-remote, it is built when the | |
1265 | transmission daemon has been enabled. Therefore, Buildroot | |
1266 | has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON | |
1267 | for you. | |
1268 | ||
f6421150 FF |
1269 | config BR2_PACKAGE_LIBKCAPI_APPS |
1270 | bool "libkcapi test applications removed" | |
1271 | select BR2_LEGACY | |
1272 | select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS | |
1273 | select BR2_PACKAGE_LIBKCAPI_RNGAPP | |
1274 | select BR2_PACKAGE_LIBKCAPI_SPEED | |
1275 | select BR2_PACKAGE_LIBKCAPI_TEST | |
1276 | help | |
1277 | Test applications (hasher, rng read, speed-test, test) now | |
1278 | have their own configuration options in the libkcapi menu. | |
1279 | ||
dacb1765 BK |
1280 | config BR2_PACKAGE_MPLAYER |
1281 | bool "mplayer package removed" | |
1282 | select BR2_LEGACY | |
1283 | help | |
1284 | The mplayer package was removed. | |
1285 | ||
1286 | config BR2_PACKAGE_MPLAYER_MPLAYER | |
1287 | bool "mplayer package removed" | |
1288 | select BR2_LEGACY | |
1289 | help | |
1290 | The mplayer package was removed. | |
1291 | ||
1292 | config BR2_PACKAGE_MPLAYER_MENCODER | |
1293 | bool "mplayer package removed" | |
1294 | select BR2_LEGACY | |
1295 | help | |
1296 | The mplayer package was removed. | |
1297 | ||
3f449119 BK |
1298 | config BR2_PACKAGE_LIBPLAYER_MPLAYER |
1299 | bool "mplayer support in libplayer removed" | |
1300 | select BR2_LEGACY | |
1301 | help | |
1302 | The mplayer package was removed. | |
1303 | ||
46444ba0 TP |
1304 | config BR2_PACKAGE_IQVLINUX |
1305 | bool "iqvlinux package removed" | |
1306 | select BR2_LEGACY | |
1307 | help | |
1308 | This package contained a kernel module from Intel, which | |
1309 | could only be used together with Intel userspace tools | |
1310 | provided under NDA, which also come with the same kernel | |
1311 | module. The copy of the kernel module available on | |
1312 | SourceForge is provided only to comply with the GPLv2 | |
1313 | requirement. Intel engineers were even surprised it even | |
1314 | built and were not willing to make any effort to fix their | |
1315 | tarball naming to contain a version number. Therefore, it | |
1316 | does not make sense for Buildroot to provide such a package. | |
1317 | ||
1318 | See https://sourceforge.net/p/e1000/bugs/589/ for the | |
1319 | discussion. | |
1320 | ||
e2ea4157 TP |
1321 | config BR2_BINFMT_FLAT_SEP_DATA |
1322 | bool "binfmt FLAT with separate code and data removed" | |
1323 | select BR2_LEGACY | |
1324 | help | |
1325 | This FLAT binary format was only used on Blackfin, which has | |
1326 | been removed. | |
1327 | ||
325bb379 TP |
1328 | config BR2_bfin |
1329 | bool "Blackfin architecture support removed" | |
1330 | select BR2_LEGACY | |
1331 | help | |
1332 | Following the removal of Blackfin support for the upstream | |
1333 | Linux kernel, Buildroot has removed support for this CPU | |
1334 | architecture. | |
1335 | ||
9657e964 BK |
1336 | config BR2_PACKAGE_KODI_ADSP_BASIC |
1337 | bool "kodi-adsp-basic package removed" | |
1338 | select BR2_LEGACY | |
1339 | help | |
1340 | kodi-adsp-basic is unmaintained | |
1341 | ||
1342 | config BR2_PACKAGE_KODI_ADSP_FREESURROUND | |
1343 | bool "kodi-adsp-freesurround package removed" | |
1344 | select BR2_LEGACY | |
1345 | help | |
1346 | kodi-adsp-freesurround is unmaintained | |
1347 | ||
1348 | ############################################################################### | |
86dfb429 BS |
1349 | comment "Legacy options removed in 2018.02" |
1350 | ||
2a9b7b8a PK |
1351 | config BR2_KERNEL_HEADERS_3_4 |
1352 | bool "kernel headers version 3.4.x are no longer supported" | |
2a9b7b8a PK |
1353 | select BR2_LEGACY |
1354 | help | |
1355 | Version 3.4.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1356 | maintained upstream and are now removed. |
2a9b7b8a PK |
1357 | |
1358 | config BR2_KERNEL_HEADERS_3_10 | |
1359 | bool "kernel headers version 3.10.x are no longer supported" | |
2a9b7b8a PK |
1360 | select BR2_LEGACY |
1361 | help | |
1362 | Version 3.10.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1363 | maintained upstream and are now removed. |
2a9b7b8a PK |
1364 | |
1365 | config BR2_KERNEL_HEADERS_3_12 | |
1366 | bool "kernel headers version 3.12.x are no longer supported" | |
2a9b7b8a PK |
1367 | select BR2_LEGACY |
1368 | help | |
1369 | Version 3.12.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1370 | maintained upstream and are now removed. |
2a9b7b8a | 1371 | |
453d29f1 RN |
1372 | config BR2_BINUTILS_VERSION_2_27_X |
1373 | bool "binutils version 2.27 support removed" | |
1374 | select BR2_LEGACY | |
1375 | help | |
1376 | Support for binutils version 2.27 has been removed. The | |
1377 | current default version (2.29 or later) has been selected | |
1378 | instead. | |
1379 | ||
55d79ed9 BS |
1380 | config BR2_PACKAGE_EEPROG |
1381 | bool "eeprog package removed" | |
1382 | select BR2_LEGACY | |
1383 | select BR2_PACKAGE_I2C_TOOLS | |
1384 | select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS | |
1385 | help | |
1386 | The eeprog program is now provided by the i2c-tools package. | |
1387 | ||
86dfb429 BS |
1388 | config BR2_PACKAGE_GNUPG2_GPGV2 |
1389 | bool "gnupg2 gpgv2 option removed" | |
1390 | select BR2_LEGACY | |
1391 | select BR2_PACKAGE_GNUPG2_GPGV | |
1392 | help | |
1393 | The gpgv2 executable is now named gpgv. The config option | |
1394 | has been renamed accordingly. | |
1395 | ||
f7a7d948 GB |
1396 | config BR2_PACKAGE_IMX_GPU_VIV_APITRACE |
1397 | bool "Vivante apitrace tool option removed" | |
1398 | select BR2_LEGACY | |
1399 | help | |
1400 | The apitrace tool for Vivante is not provided by the | |
1401 | imx-gpu-viv package any longer. | |
1402 | ||
1403 | config BR2_PACKAGE_IMX_GPU_VIV_G2D | |
1404 | bool "Vivante G2D libraries from imx-gpu-viv removed" | |
1405 | select BR2_LEGACY | |
1406 | select BR2_PACKAGE_IMX_GPU_G2D | |
1407 | help | |
1408 | The G2D libraries are now provided by the imx-gpu-g2d package. | |
1409 | ||
f52af619 CS |
1410 | ############################################################################### |
1411 | comment "Legacy options removed in 2017.11" | |
1412 | ||
6c10e40d CS |
1413 | config BR2_PACKAGE_RFKILL |
1414 | bool "rfkill package removed" | |
1415 | select BR2_LEGACY | |
1416 | select BR2_PACKAGE_UTIL_LINUX | |
1417 | select BR2_PACKAGE_UTIL_LINUX_RFKILL | |
1418 | help | |
1419 | The rfkill program is now provided by the util-linux package. | |
1420 | ||
d4382005 CS |
1421 | config BR2_PACKAGE_UTIL_LINUX_RESET |
1422 | bool "util-linux reset option removed" | |
1423 | select BR2_LEGACY | |
1424 | help | |
1425 | The util-linux package no longer offers a "reset" command. Use | |
1426 | either the reset command provided by BusyBox or select ncurses | |
1427 | programs, which will install a symlink from "tset" to reset. | |
1428 | ||
9d6da7a2 AD |
1429 | config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW |
1430 | bool "policycoreutils audit2allow option removed" | |
1431 | select BR2_LEGACY | |
1432 | select BR2_PACKAGE_SELINUX_PYTHON | |
1433 | select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW | |
1434 | help | |
1435 | The policycoreutils package no longer offers audit2allow | |
1436 | as a option. This package has been moved into the | |
1437 | selinux-python package by the SELinux maintainers. | |
1438 | ||
1439 | config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND | |
1440 | bool "policycoreutils restorecond option removed" | |
1441 | select BR2_LEGACY | |
1442 | select BR2_PACKAGE_RESTORECOND | |
1443 | help | |
1444 | The policycoreutils package no longer offers restorecond | |
1445 | as a option. This package has been moved into a seperate | |
1446 | package maintained by the SELinux maintainers. | |
1447 | ||
1448 | config BR2_PACKAGE_SEPOLGEN | |
1449 | bool "sepolgen package has been removed" | |
1450 | select BR2_LEGACY | |
1451 | select BR2_PACKAGE_SELINUX_PYTHON | |
1452 | select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN | |
1453 | help | |
1454 | Sepolgen is no longer a individual package, but instead has | |
1455 | been moved into the selinux-python package by the SELinux | |
1456 | maintainers. | |
1457 | ||
49a9fb0f BK |
1458 | config BR2_PACKAGE_OPENOBEX_BLUEZ |
1459 | bool "openobex bluez option removed" | |
1460 | select BR2_LEGACY | |
1461 | select BR2_PACKAGE_BLUEZ_UTILS | |
1462 | help | |
1463 | The OpenOBEX package no longer offers an option to enable or | |
1464 | disable BlueZ support. Instead, BlueZ support is always | |
1465 | included when the bluez5_utils or bluez_utils package is | |
1466 | selected. | |
1467 | ||
1468 | config BR2_PACKAGE_OPENOBEX_LIBUSB | |
1469 | bool "openobex libusb option removed" | |
1470 | select BR2_LEGACY | |
1471 | select BR2_PACKAGE_LIBUSB | |
1472 | help | |
1473 | The OpenOBEX package no longer offers an option to enable or | |
1474 | disable libusb support. Instead, USB support is always | |
1475 | included when the libusb package is selected. | |
1476 | ||
1477 | config BR2_PACKAGE_OPENOBEX_APPS | |
1478 | bool "openobex apps option removed" | |
1479 | select BR2_LEGACY | |
1480 | help | |
1481 | The OpenOBEX package no longer offers an option to enable or | |
1482 | disable apps support. | |
1483 | ||
1484 | config BR2_PACKAGE_OPENOBEX_SYSLOG | |
1485 | bool "openobex syslog option removed" | |
1486 | select BR2_LEGACY | |
1487 | help | |
1488 | The OpenOBEX package no longer offers an option to enable or | |
1489 | disable syslog support. | |
1490 | ||
1491 | config BR2_PACKAGE_OPENOBEX_DUMP | |
1492 | bool "openobex dump option removed" | |
1493 | select BR2_LEGACY | |
1494 | help | |
1495 | The OpenOBEX package no longer offers an option to enable or | |
1496 | disable dump support. | |
1497 | ||
fca70389 AM |
1498 | config BR2_PACKAGE_AICCU |
1499 | bool "aiccu utility removed" | |
1500 | select BR2_LEGACY | |
1501 | help | |
1502 | As the SixXS project has ceased its operation on 2017-06-06, | |
1503 | the AICCU utility has no use anymore and has been removed. | |
1504 | ||
1505 | https://www.sixxs.net/sunset/ | |
1506 | ||
f52af619 CS |
1507 | config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS |
1508 | bool "util-linux login utilities option removed" | |
1509 | select BR2_LEGACY | |
1510 | select BR2_PACKAGE_UTIL_LINUX_LAST | |
1511 | select BR2_PACKAGE_UTIL_LINUX_LOGIN | |
1512 | select BR2_PACKAGE_UTIL_LINUX_RUNUSER | |
1513 | select BR2_PACKAGE_UTIL_LINUX_SU | |
1514 | select BR2_PACKAGE_UTIL_LINUX_SULOGIN | |
1515 | help | |
1516 | Login utilities (last, login, runuser, su, sulogin) now have | |
1517 | their own configuration options in the util-linux menu. | |
1518 | ||
f6695219 RN |
1519 | ############################################################################### |
1520 | comment "Legacy options removed in 2017.08" | |
1521 | ||
144dc9ca YM |
1522 | config BR2_TARGET_GRUB |
1523 | bool "grub (aka grub-legacy) has been removed" | |
1524 | select BR2_LEGACY | |
1525 | help | |
1526 | grub-legacy is no longer maintained, and no longer builds with | |
1527 | recent binutils versions. | |
1528 | ||
1529 | Use grub2 or syslinux instead. | |
1530 | ||
20db0989 BM |
1531 | config BR2_PACKAGE_SIMICSFS |
1532 | bool "simicsfs support removed" | |
1533 | select BR2_LEGACY | |
1534 | help | |
1535 | Support for simicsfs kernel driver that provides access to a | |
1536 | host computer's local filesystem when the target is | |
1537 | executing within a SIMICS simulation has been removed. | |
1538 | ||
1539 | Simics is now moving away from the simicsfs kernel module, | |
1540 | as the kernel module has required too much maintenance | |
1541 | work. Users should move to the user mode Simics agent | |
1542 | instead. | |
1543 | ||
0b5dc319 TP |
1544 | config BR2_BINUTILS_VERSION_2_26_X |
1545 | bool "binutils version 2.26 support removed" | |
1546 | select BR2_LEGACY | |
1547 | help | |
1548 | Support for binutils version 2.26 has been removed. The | |
1549 | current default version (2.28 or later) has been selected | |
1550 | instead. | |
1551 | ||
b3b60706 YM |
1552 | config BR2_XTENSA_OVERLAY_DIR |
1553 | string "The BR2_XTENSA_OVERLAY_DIR option has been removed" | |
1554 | help | |
1555 | The BR2_XTENSA_OVERLAY_DIR has been removed in favour of | |
1556 | BR2_XTENSA_OVERLAY_FILE. You must now pass the complete | |
1557 | path to the overlay file, not to the directory containing | |
1558 | it. | |
1559 | ||
1560 | config BR2_XTENSA_OVERLAY_DIR_WRAP | |
1561 | bool | |
1562 | default y if BR2_XTENSA_OVERLAY_DIR != "" | |
1563 | select BR2_LEGACY | |
1564 | ||
15a96d1a | 1565 | config BR2_XTENSA_CUSTOM_NAME |
b3b60706 | 1566 | string "The BR2_XTENSA_CUSTOM_NAME option has been removed" |
15a96d1a | 1567 | help |
b3b60706 | 1568 | The BR2_XTENSA_CUSTOM_NAME option has been removed. |
15a96d1a YM |
1569 | |
1570 | config BR2_XTENSA_CUSTOM_NAME_WRAP | |
1571 | bool | |
1572 | default y if BR2_XTENSA_CUSTOM_NAME != "" | |
1573 | select BR2_LEGACY | |
1574 | ||
f47fc957 SS |
1575 | config BR2_PACKAGE_HOST_MKE2IMG |
1576 | bool "host mke2img has been removed" | |
1577 | select BR2_LEGACY | |
1578 | help | |
1579 | We now call mkfs directly to generate ext2/3/4 filesystem | |
1580 | image, so mke2img is no longer necessary. | |
1581 | ||
bee9e881 SM |
1582 | config BR2_TARGET_ROOTFS_EXT2_BLOCKS |
1583 | int "exact size in blocks has been removed" | |
1584 | default 0 | |
1585 | help | |
1586 | This option has been removed in favor of | |
1587 | BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically | |
1588 | to the value you had before. Set to 0 here to remove the | |
1589 | warning. | |
1590 | ||
1591 | config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP | |
1592 | bool | |
1593 | default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \ | |
1594 | BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value | |
1595 | select BR2_LEGACY | |
1596 | ||
1597 | # Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in | |
1598 | ||
235b6f17 SM |
1599 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES |
1600 | int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0 | |
1601 | default 0 | |
1602 | help | |
1603 | Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4 | |
1604 | images. It now automatically selects the number of inodes | |
1605 | based on the image size. The extra number of inodes can no | |
1606 | longer be provided; instead, provide the total number of | |
1607 | inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES. | |
1608 | ||
1609 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP | |
1610 | bool | |
1611 | default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0 | |
1612 | select BR2_LEGACY | |
1613 | ||
e278d85e VOR |
1614 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE |
1615 | bool "cdxaparse removed" | |
1616 | select BR2_LEGACY | |
1617 | ||
1618 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC | |
1619 | bool "dataurisrc moved to gstreamer1" | |
1620 | select BR2_LEGACY | |
1621 | help | |
1622 | Dataurisrc has moved to gstreamer core and is always built. | |
1623 | ||
1624 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP | |
1625 | bool "dccp removed" | |
1626 | select BR2_LEGACY | |
1627 | ||
1628 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE | |
1629 | bool "hdvparse removed" | |
1630 | select BR2_LEGACY | |
1631 | ||
1632 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE | |
1633 | bool "mve removed" | |
1634 | select BR2_LEGACY | |
1635 | ||
1636 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX | |
1637 | bool "nuvdemux removed" | |
1638 | select BR2_LEGACY | |
1639 | ||
1640 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT | |
1641 | bool "patchdetect removed" | |
1642 | select BR2_LEGACY | |
1643 | ||
1644 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI | |
1645 | bool "sdi removed" | |
1646 | select BR2_LEGACY | |
1647 | ||
1648 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA | |
1649 | bool "tta removed" | |
1650 | select BR2_LEGACY | |
1651 | ||
1652 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE | |
1653 | bool "videomeasure removed" | |
6e3fa33f | 1654 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA |
e278d85e | 1655 | select BR2_LEGACY |
6e3fa33f VOR |
1656 | help |
1657 | videomeasure plugin has been removed and has been replaced by | |
1658 | iqa, which has automatically been enabled. | |
e278d85e VOR |
1659 | |
1660 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK | |
1661 | bool "apexsink removed" | |
1662 | select BR2_LEGACY | |
1663 | ||
1664 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL | |
1665 | bool "sdl removed" | |
1666 | select BR2_LEGACY | |
1667 | ||
b006fe1c VOR |
1668 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD |
1669 | bool "mad (*.mp3 audio) removed" | |
1670 | select BR2_LEGACY | |
1671 | ||
4c06d249 TP |
1672 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC |
1673 | bool "gst1-plugins-bad webrtc renamed to webrtcdsp" | |
1674 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP | |
1675 | select BR2_LEGACY | |
1676 | help | |
1677 | The WebRTC plugin in GStreamer 1.x has always been named | |
1678 | webrtcdsp, but was wrongly introduced in Buildroot under the | |
1679 | name webrtc. Therefore, we have renamed the option to match | |
1680 | the actual name of the GStreamer plugin. | |
1681 | ||
0d643fd3 YM |
1682 | config BR2_STRIP_none |
1683 | bool "Strip command 'none' has been removed" | |
1684 | select BR2_LEGACY | |
1685 | help | |
1686 | The strip command choice has been changed into a single | |
1687 | boolean option. Please check that the new setting is | |
1688 | correct (in the "Build options" sub-menu) | |
1689 | ||
dd4d3c18 BK |
1690 | config BR2_PACKAGE_BEECRYPT_CPP |
1691 | bool "C++ support removed in beecrypt" | |
1692 | select BR2_LEGACY | |
1693 | help | |
1694 | Support for C++ depends on icu. The beecrypt package is | |
1695 | incompatible with icu 59+. | |
1696 | ||
622ff3d6 PK |
1697 | config BR2_PACKAGE_SPICE_CLIENT |
1698 | bool "spice client support removed" | |
1699 | select BR2_LEGACY | |
1700 | help | |
1701 | Spice client support has been removed upstream. The | |
1702 | functionality now lives in the spice-gtk widget and | |
1703 | virt-viewer. | |
1704 | ||
1705 | config BR2_PACKAGE_SPICE_GUI | |
1706 | bool "spice gui support removed" | |
1707 | select BR2_LEGACY | |
1708 | help | |
1709 | Spice gui support has been removed upstream. The | |
1710 | functionality now lives in the spice-gtk widget and | |
1711 | virt-viewer. | |
1712 | ||
6f2c0220 PK |
1713 | config BR2_PACKAGE_SPICE_TUNNEL |
1714 | bool "spice network redirection removed" | |
1715 | select BR2_LEGACY | |
1716 | help | |
1717 | Spice network redirection, aka tunnelling has been removed | |
1718 | upstream. | |
1719 | ||
438b2d13 KM |
1720 | config BR2_PACKAGE_INPUT_TOOLS |
1721 | bool "input-tools removed" | |
1722 | select BR2_LEGACY | |
1723 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
1724 | help | |
1725 | input-tools has been removed, it is replaced by | |
1726 | linuxconsoletools, which has automatically been enabled. | |
1727 | ||
1728 | config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH | |
1729 | bool "inputattach moved to linuxconsoletools" | |
1730 | select BR2_LEGACY | |
1731 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
1732 | select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH | |
1733 | help | |
1734 | input-tools has been removed, inputattach is now part | |
1735 | of linuxconsoletools, which has automatically been | |
1736 | enabled. | |
1737 | ||
1738 | config BR2_PACKAGE_INPUT_TOOLS_JSCAL | |
1739 | bool "jscal moved to linuxconsoletools" | |
1740 | select BR2_LEGACY | |
1741 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
1742 | select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK | |
1743 | help | |
1744 | input-tools has been removed, jscal is now part | |
1745 | of linuxconsoletools, which has automatically been | |
1746 | enabled. | |
1747 | ||
1748 | config BR2_PACKAGE_INPUT_TOOLS_JSTEST | |
1749 | bool "jstest moved to linuxconsoletools" | |
1750 | select BR2_LEGACY | |
1751 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
1752 | select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK | |
1753 | help | |
1754 | input-tools has been removed, jstest is now part | |
1755 | of linuxconsoletools, which has automatically been | |
1756 | enabled. | |
1757 | ||
6510a826 BS |
1758 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH |
1759 | bool "SH Sourcery toolchain has been removed" | |
1760 | select BR2_LEGACY | |
1761 | help | |
1762 | The Sourcery CodeBench toolchain for the sh architecture has | |
d6109172 RM |
1763 | been removed, since it uses glibc older than 2.17 that |
1764 | requires -lrt to link executables using clock_* system calls. | |
1765 | This makes this toolchain difficult to maintain over time. | |
6510a826 | 1766 | |
06cac646 BS |
1767 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86 |
1768 | bool "x86 Sourcery toolchain has been removed" | |
1769 | select BR2_LEGACY | |
1770 | help | |
1771 | The Sourcery CodeBench toolchain for the x86 architecture has | |
d6109172 RM |
1772 | been removed, since it uses glibc older than 2.17 that |
1773 | requires -lrt to link executables using clock_* system calls. | |
1774 | This makes this toolchain difficult to maintain over time. | |
06cac646 | 1775 | |
f6695219 RN |
1776 | config BR2_GCC_VERSION_4_8_X |
1777 | bool "gcc 4.8.x support removed" | |
1778 | select BR2_LEGACY | |
1779 | help | |
1780 | Support for gcc version 4.8.x has been removed. The current | |
1781 | default version (5.x or later) has been selected instead. | |
1782 | ||
a75eeddd GZ |
1783 | ############################################################################### |
1784 | comment "Legacy options removed in 2017.05" | |
1785 | ||
95426afd RN |
1786 | config BR2_PACKAGE_SUNXI_MALI_R2P4 |
1787 | bool "sunxi-mali r2p4 removed" | |
1788 | select BR2_LEGACY | |
1789 | help | |
1790 | sunxi-mali libMali for r2p4 Mali kernel module has been | |
1791 | removed since the libump package only provides libUMP.so.3. | |
1792 | libMali for r2p4 Mali kernel module requires libUMP.so.2. | |
1793 | ||
d999a7f2 MB |
1794 | config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT |
1795 | bool "CoffeeScript option has been removed" | |
1796 | select BR2_LEGACY | |
1797 | help | |
1798 | The option to enable NodeJS CoffeeScript has been removed. | |
1799 | To continue using it, add "coffee-script" to | |
1800 | BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL. | |
1801 | ||
096f8b13 MB |
1802 | config BR2_PACKAGE_NODEJS_MODULES_EXPRESS |
1803 | bool "Express web application framework option has been removed" | |
1804 | select BR2_LEGACY | |
1805 | help | |
1806 | The option to enable the NodeJS Express web application | |
1807 | framework has been removed. To continue using it, add | |
1808 | "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL. | |
1809 | ||
0364d44f BS |
1810 | config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL |
1811 | bool "bluez5_utils gatttool install option removed" | |
1812 | select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED | |
1813 | help | |
1814 | The option to install gatttool specifically has been removed. | |
1815 | Since version 5.44 gatttool is in the list of deprecated | |
1816 | tools. The option to build and install deprecated tools has | |
1817 | been automatically enabled. | |
1818 | ||
3b6c74d7 CP |
1819 | config BR2_PACKAGE_OPENOCD_FT2XXX |
1820 | bool "openocd ft2232 support has been removed" | |
1821 | select BR2_PACKAGE_OPENOCD_FTDI | |
1822 | select BR2_LEGACY | |
1823 | help | |
1824 | FT2232 support in OpenOCD has been removed, it's replaced by | |
1825 | FDTI support, which has automatically been enabled. | |
1826 | ||
24a07d58 BK |
1827 | config BR2_PACKAGE_KODI_RTMPDUMP |
1828 | bool "kodi rtmp has been removed" | |
1829 | select BR2_LEGACY | |
c894267a | 1830 | select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP |
24a07d58 BK |
1831 | help |
1832 | Internal rtmp support was removed from Kodi. | |
1833 | ||
d393690f BK |
1834 | config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN |
1835 | bool "kodi-visualisation-fountain has been removed" | |
1836 | select BR2_LEGACY | |
1837 | help | |
1838 | According to upstream 'the visualization is not currently | |
1839 | in a working shape.' | |
1840 | ||
1ba88a0b WB |
1841 | config BR2_PACKAGE_PORTMAP |
1842 | bool "portmap has been removed" | |
1843 | select BR2_LEGACY | |
1844 | select BR2_PACKAGE_RPCBIND | |
1845 | help | |
1846 | The portmap upstream tarball is removed, no releases since | |
1847 | ten years and latest change in upstream git in 2014. | |
1848 | You should better use rpcbind as a RPC portmapper. | |
1849 | ||
5847291b TP |
1850 | config BR2_BINUTILS_VERSION_2_25_X |
1851 | bool "binutils version 2.25 support removed" | |
1852 | select BR2_LEGACY | |
1853 | help | |
1854 | Support for binutils version 2.25 has been removed. The | |
1855 | current default version (2.27 or later) has been selected | |
1856 | instead. | |
1857 | ||
98f7de87 WB |
1858 | config BR2_TOOLCHAIN_BUILDROOT_INET_RPC |
1859 | bool "uclibc RPC support has been removed" | |
1860 | select BR2_LEGACY | |
1861 | help | |
1862 | uClibc-ng removed internal RPC implementation in 1.0.23. You | |
1863 | should use libtirpc instead. | |
1864 | ||
c6bca8ce SS |
1865 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS |
1866 | int "extra size in blocks has been removed" | |
1867 | default 0 | |
1868 | help | |
d6109172 RM |
1869 | Since the support for auto calculation of the filesystem size |
1870 | has been removed, this option is now useless and must be 0. | |
1871 | You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS | |
1872 | matchs your needs. | |
c6bca8ce SS |
1873 | |
1874 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP | |
1875 | bool | |
1876 | default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0 | |
1877 | select BR2_LEGACY | |
1878 | ||
815f7137 VOR |
1879 | config BR2_PACKAGE_SYSTEMD_KDBUS |
1880 | bool "systemd-kdbus has been removed" | |
1881 | select BR2_LEGACY | |
1882 | help | |
1883 | --enable/disable-kdbus configure option has been removed since | |
1884 | systemd-231. | |
1885 | ||
d10b493e GZ |
1886 | config BR2_PACKAGE_POLARSSL |
1887 | bool "polarssl has been removed" | |
1888 | select BR2_LEGACY | |
1889 | help | |
1890 | The polarssl crypto library has been removed since the 1.2.x | |
1891 | release branch is no longer maintained. Newer upstream | |
1892 | branches/releases (mbedtls) have API changes so they're not | |
1893 | drop-in replacements. | |
1894 | ||
6155118f YM |
1895 | config BR2_NBD_CLIENT |
1896 | bool "nbd client option was renamed" | |
1897 | select BR2_LEGACY | |
1898 | select BR2_PACKAGE_NBD_CLIENT | |
1899 | help | |
d6109172 RM |
1900 | The nbd client option has been renamed to |
1901 | BR2_PACKAGE_NBD_CLIENT. | |
6155118f YM |
1902 | |
1903 | config BR2_NBD_SERVER | |
1904 | bool "nbd server option was renamed" | |
1905 | select BR2_LEGACY | |
1906 | select BR2_PACKAGE_NBD_SERVER | |
1907 | help | |
d6109172 RM |
1908 | The nbd server option has been renamed to |
1909 | BR2_PACKAGE_NBD_SERVER. | |
6155118f | 1910 | |
6a9c6311 CS |
1911 | config BR2_PACKAGE_GMOCK |
1912 | bool "gmock merged into gtest package" | |
1913 | select BR2_LEGACY | |
1914 | select BR2_PACKAGE_GTEST | |
1915 | select BR2_PACKAGE_GTEST_GMOCK | |
1916 | help | |
1917 | GMock is now a suboption of the GTest package. | |
1918 | ||
5f73ff53 GZ |
1919 | config BR2_KERNEL_HEADERS_4_8 |
1920 | bool "kernel headers version 4.8.x are no longer supported" | |
5f73ff53 GZ |
1921 | select BR2_LEGACY |
1922 | help | |
1923 | Version 4.8.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1924 | maintained upstream and are now removed. |
5f73ff53 GZ |
1925 | |
1926 | config BR2_KERNEL_HEADERS_3_18 | |
1927 | bool "kernel headers version 3.18.x are no longer supported" | |
5f73ff53 GZ |
1928 | select BR2_LEGACY |
1929 | help | |
1930 | Version 3.18.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1931 | maintained upstream and are now removed. |
5f73ff53 | 1932 | |
a75eeddd GZ |
1933 | config BR2_GLIBC_VERSION_2_22 |
1934 | bool "glibc 2.22 removed" | |
1935 | select BR2_LEGACY | |
1936 | help | |
1937 | Support for glibc version 2.22 has been removed. The current | |
1938 | default version has been selected instead. | |
1939 | ||
ed364d1e TP |
1940 | ############################################################################### |
1941 | comment "Legacy options removed in 2017.02" | |
1942 | ||
8546ff31 FP |
1943 | config BR2_PACKAGE_PERL_DB_FILE |
1944 | bool "perl-db-file removed" | |
1945 | select BR2_LEGACY | |
1946 | select BR2_PACKAGE_BERKELEYDB | |
1947 | select BR2_PACKAGE_PERL | |
1948 | help | |
1949 | DB_File can be built as a core Perl module, so the separate | |
1950 | perl-db-file package has been removed. | |
1951 | ||
6be22624 GZ |
1952 | config BR2_KERNEL_HEADERS_4_7 |
1953 | bool "kernel headers version 4.7.x are no longer supported" | |
6be22624 GZ |
1954 | select BR2_LEGACY |
1955 | help | |
1956 | Version 4.7.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1957 | maintained upstream and are now removed. |
6be22624 GZ |
1958 | |
1959 | config BR2_KERNEL_HEADERS_4_6 | |
1960 | bool "kernel headers version 4.6.x are no longer supported" | |
6be22624 GZ |
1961 | select BR2_LEGACY |
1962 | help | |
1963 | Version 4.6.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1964 | maintained upstream and are now removed. |
6be22624 GZ |
1965 | |
1966 | config BR2_KERNEL_HEADERS_4_5 | |
1967 | bool "kernel headers version 4.5.x are no longer supported" | |
6be22624 GZ |
1968 | select BR2_LEGACY |
1969 | help | |
1970 | Version 4.5.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1971 | maintained upstream and are now removed. |
6be22624 GZ |
1972 | |
1973 | config BR2_KERNEL_HEADERS_3_14 | |
1974 | bool "kernel headers version 3.14.x are no longer supported" | |
6be22624 GZ |
1975 | select BR2_LEGACY |
1976 | help | |
1977 | Version 3.14.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1978 | maintained upstream and are now removed. |
6be22624 | 1979 | |
63abbcce RN |
1980 | config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS |
1981 | bool "musl-cross 1.1.12 toolchain removed" | |
1982 | select BR2_LEGACY | |
1983 | help | |
1984 | The support for the prebuilt toolchain based on the Musl C | |
1985 | library provided by the musl-cross project has been removed. | |
d6109172 RM |
1986 | Upstream doesn't provide any prebuilt toolchain anymore, use |
1987 | the Buildroot toolchain instead. | |
63abbcce | 1988 | |
a44d7f2d WB |
1989 | config BR2_UCLIBC_INSTALL_TEST_SUITE |
1990 | bool "uClibc tests now in uclibc-ng-test" | |
1991 | select BR2_LEGACY | |
1992 | select BR2_PACKAGE_UCLIBC_NG_TEST | |
1993 | help | |
1994 | The test suite of the uClibc C library has been moved into a | |
1995 | separate package, uclibc-ng-test. | |
1996 | ||
311bc137 AV |
1997 | config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX |
1998 | bool "Blackfin.uclinux.org 2014R1 toolchain removed" | |
1999 | select BR2_LEGACY | |
2000 | help | |
2001 | The ADI Blackfin toolchain has many bugs which are fixed in | |
2002 | more recent gcc and uClibc-ng releases. Use the Buildroot | |
2003 | toolchain instead. | |
2004 | ||
207294ff AV |
2005 | config BR2_PACKAGE_MAKEDEVS |
2006 | bool "makedevs removed" | |
2007 | select BR2_LEGACY | |
2008 | help | |
2009 | The makedevs tool is part of busybox. The Buildroot fork | |
2010 | should not be used outside of the Buildroot infrastructure. | |
2011 | ||
b5c00f09 AV |
2012 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A |
2013 | bool "Arago ARMv7 2011.09 removed" | |
2014 | select BR2_LEGACY | |
2015 | help | |
2016 | The Arago toolchains are every old and not updated anymore. | |
2017 | ||
2018 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE | |
2019 | bool "Arago ARMv5 2011.09 removed" | |
2020 | select BR2_LEGACY | |
2021 | help | |
2022 | The Arago toolchains are every old and not updated anymore. | |
2023 | ||
ed364d1e TP |
2024 | config BR2_PACKAGE_SNOWBALL_HDMISERVICE |
2025 | bool "snowball-hdmiservice removed" | |
2026 | select BR2_LEGACY | |
2027 | help | |
2028 | We no longer have support for the Snowball platform in | |
2029 | Buildroot, so this package was no longer useful. | |
2030 | ||
2031 | config BR2_PACKAGE_SNOWBALL_INIT | |
2032 | bool "snowball-init removed" | |
2033 | select BR2_LEGACY | |
2034 | help | |
2035 | We no longer have support for the Snowball platform in | |
2036 | Buildroot, so this package was no longer useful. | |
2037 | ||
69aa0574 JK |
2038 | config BR2_GDB_VERSION_7_9 |
2039 | bool "gdb 7.9 has been removed" | |
2040 | select BR2_LEGACY | |
2041 | help | |
2042 | The 7.9 version of gdb has been removed. Use a newer version | |
2043 | instead. | |
2044 | ||
e782cd5b YM |
2045 | ############################################################################### |
2046 | comment "Legacy options removed in 2016.11" | |
2047 | ||
c457213f FF |
2048 | config BR2_PACKAGE_PHP_SAPI_CLI_CGI |
2049 | bool "PHP CGI and CLI options are now seperate" | |
2050 | select BR2_PACKAGE_PHP_SAPI_CLI | |
2051 | select BR2_PACKAGE_PHP_SAPI_CGI | |
c087cbe5 | 2052 | select BR2_LEGACY |
c457213f FF |
2053 | help |
2054 | The PHP Interface options have been split up into a | |
2055 | separate option for each interface. | |
2056 | ||
2057 | config BR2_PACKAGE_PHP_SAPI_CLI_FPM | |
2058 | bool "PHP CLI and FPM options are now separate" | |
2059 | select BR2_PACKAGE_PHP_SAPI_CLI | |
2060 | select BR2_PACKAGE_PHP_SAPI_FPM | |
c087cbe5 | 2061 | select BR2_LEGACY |
c457213f FF |
2062 | help |
2063 | The PHP Interface options have been split up into a | |
2064 | separate option for each interface. | |
2065 | ||
3534399d AV |
2066 | config BR2_PACKAGE_WVSTREAMS |
2067 | bool "wvstreams removed" | |
2068 | select BR2_LEGACY | |
2069 | help | |
2070 | wvstreams is not maintained anymore since about 2009. It also | |
2071 | doesn't build anymore with recent compilers (GCC 5+). | |
2072 | ||
152d4b66 AV |
2073 | config BR2_PACKAGE_WVDIAL |
2074 | bool "wvdial removed" | |
2075 | select BR2_LEGACY | |
2076 | help | |
2077 | wvdial is not maintained anymore since about 2009. It also | |
2078 | doesn't build anymore with recent compilers (GCC 5+). | |
2079 | ||
79c82a35 AV |
2080 | config BR2_PACKAGE_WEBKITGTK24 |
2081 | bool "webkitgtk 2.4.x removed" | |
2082 | select BR2_LEGACY | |
2083 | help | |
2084 | This legacy package only existed because some other packages | |
2085 | depended on that specific version of webkitgtk. However, the | |
2086 | other packages have been fixed. webkitgtk 2.4 is full of | |
2087 | security issues so it needs to be removed. | |
2088 | ||
ea3a7ee0 AV |
2089 | config BR2_PACKAGE_TORSMO |
2090 | bool "torsmo removed" | |
2091 | select BR2_LEGACY | |
2092 | help | |
2093 | torsmo has been unmaintained for a long time, and nobody | |
2094 | seems to be interested in it. | |
2095 | ||
290166f2 AV |
2096 | config BR2_PACKAGE_SSTRIP |
2097 | bool "sstrip removed" | |
2098 | select BR2_LEGACY | |
2099 | help | |
2100 | sstrip is unmaintained and potentially harmful. It doesn't | |
2101 | save so much compared to normal binutils strip, and there is | |
2102 | a big risk of binaries that don't work. Use normal strip | |
2103 | instead. | |
2104 | ||
133466f5 AV |
2105 | config BR2_KERNEL_HEADERS_4_3 |
2106 | bool "kernel headers version 4.3.x are no longer supported" | |
133466f5 AV |
2107 | select BR2_LEGACY |
2108 | help | |
2109 | Version 4.3.x of the Linux kernel headers are no longer | |
1b3c43f7 | 2110 | maintained upstream and are now removed. |
133466f5 AV |
2111 | |
2112 | config BR2_KERNEL_HEADERS_4_2 | |
2113 | bool "kernel headers version 4.2.x are no longer supported" | |
133466f5 AV |
2114 | select BR2_LEGACY |
2115 | help | |
2116 | Version 4.2.x of the Linux kernel headers are no longer | |
1b3c43f7 | 2117 | maintained upstream and are now removed. |
133466f5 | 2118 | |
1c2a63ad AV |
2119 | config BR2_PACKAGE_KODI_ADDON_XVDR |
2120 | bool "kodi-addon-xvdr removed" | |
2121 | select BR2_LEGACY | |
2122 | help | |
2123 | According to the github project page: | |
2124 | https://github.com/pipelka/xbmc-addon-xvdr | |
2125 | this package is discontinued. | |
2126 | ||
3b80ca89 AV |
2127 | config BR2_PACKAGE_IPKG |
2128 | bool "ipkg removed" | |
2129 | select BR2_LEGACY | |
2130 | help | |
2131 | ipkg dates back to the early 2000s when Compaq started the | |
d6109172 RM |
2132 | handhelds.org project and it hasn't seen development since |
2133 | 2006. Use opkg as a replacement. | |
3b80ca89 | 2134 | |
a7c13c1b AV |
2135 | config BR2_GCC_VERSION_4_7_X |
2136 | bool "gcc 4.7.x support removed" | |
2137 | select BR2_LEGACY | |
2138 | help | |
2139 | Support for gcc version 4.7.x has been removed. The current | |
2140 | default version (4.9.x or later) has been selected instead. | |
2141 | ||
d8878112 AV |
2142 | config BR2_BINUTILS_VERSION_2_24_X |
2143 | bool "binutils version 2.24 support removed" | |
2144 | select BR2_LEGACY | |
2145 | help | |
2146 | Support for binutils version 2.24 has been removed. The | |
2147 | current default version (2.26 or later) has been selected | |
2148 | instead. | |
2149 | ||
8c85a5f0 GZ |
2150 | config BR2_PACKAGE_WESTON_RPI |
2151 | bool "Weston propietary RPI support is gone" | |
2152 | select BR2_LEGACY | |
2153 | help | |
2154 | Upstream decided the propietary (rpi-userland) weston composer | |
2155 | support wasn't worth the effort so it was removed. Switch to | |
2156 | the open VC4 support. | |
2157 | ||
20b14466 YM |
2158 | config BR2_LINUX_KERNEL_TOOL_CPUPOWER |
2159 | bool "linux-tool cpupower" | |
2160 | depends on BR2_LINUX_KERNEL | |
2161 | select BR2_LEGACY | |
2162 | select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER | |
2163 | help | |
2164 | Linux tool cpupower option was renamed. | |
2165 | ||
2166 | config BR2_LINUX_KERNEL_TOOL_PERF | |
2167 | bool "linux-tool perf" | |
2168 | depends on BR2_LINUX_KERNEL | |
2169 | select BR2_LEGACY | |
2170 | select BR2_PACKAGE_LINUX_TOOLS_PERF | |
2171 | help | |
2172 | Linux tool perf option was renamed. | |
2173 | ||
2174 | config BR2_LINUX_KERNEL_TOOL_SELFTESTS | |
2175 | bool "linux-tool selftests" | |
2176 | depends on BR2_LINUX_KERNEL | |
2177 | select BR2_LEGACY | |
2178 | select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS | |
2179 | help | |
2180 | Linux tool selftests option was renamed. | |
2181 | ||
50332a53 TP |
2182 | config BR2_GCC_VERSION_4_8_ARC |
2183 | bool "gcc arc option renamed" | |
2184 | select BR2_LEGACY | |
2185 | select BR2_GCC_VERSION_ARC | |
2186 | help | |
2187 | The option that selects the gcc version for the ARC | |
2188 | architecture has been renamed to BR2_GCC_VERSION_ARC. | |
2189 | ||
3c590a3e GZ |
2190 | config BR2_KERNEL_HEADERS_4_0 |
2191 | bool "kernel headers version 4.0.x are no longer supported" | |
3c590a3e GZ |
2192 | select BR2_LEGACY |
2193 | help | |
2194 | Version 4.0.x of the Linux kernel headers have been deprecated | |
2195 | for more than four buildroot releases and are now removed. | |
3c590a3e GZ |
2196 | |
2197 | config BR2_KERNEL_HEADERS_3_19 | |
2198 | bool "kernel headers version 3.19.x are no longer supported" | |
3c590a3e GZ |
2199 | select BR2_LEGACY |
2200 | help | |
d6109172 RM |
2201 | Version 3.19.x of the Linux kernel headers have been |
2202 | deprecated for more than four buildroot releases and are now | |
2203 | removed. | |
3c590a3e | 2204 | |
0e517317 RN |
2205 | config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS |
2206 | bool "libevas-generic-loaders package removed" | |
2207 | select BR2_LEGACY | |
2208 | select BR2_PACKAGE_EFL | |
2209 | help | |
d6109172 RM |
2210 | With EFL 1.18, libevas-generic-loaders is now provided by the |
2211 | efl package. | |
0e517317 | 2212 | |
c22b7580 RN |
2213 | config BR2_PACKAGE_ELEMENTARY |
2214 | bool "elementary package removed" | |
2215 | select BR2_LEGACY | |
2216 | select BR2_PACKAGE_EFL | |
2217 | help | |
2218 | With EFL 1.18, elementary is now provided by the efl package. | |
2219 | ||
e782cd5b YM |
2220 | config BR2_LINUX_KERNEL_CUSTOM_LOCAL |
2221 | bool "Linux kernel local directory option removed" | |
2222 | help | |
d6109172 RM |
2223 | The option to select a local directory as the source of the |
2224 | Linux kernel has been removed. It hurts reproducibility of | |
2225 | builds. | |
e782cd5b YM |
2226 | |
2227 | In case you were using this option during development of your | |
2228 | Linux kernel, use the override mechanism instead. | |
2229 | ||
20ed897b TP |
2230 | ############################################################################### |
2231 | comment "Legacy options removed in 2016.08" | |
2232 | ||
ac191071 AV |
2233 | config BR2_PACKAGE_EFL_JP2K |
2234 | bool "libevas jp2k loader has been removed" | |
2235 | select BR2_LEGACY | |
5354a75e | 2236 | help |
ac191071 AV |
2237 | JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc) |
2238 | while Buildroot only packages openjpeg 2.x. Therefore, the | |
2239 | JP2K loader has been removed from EFL. | |
2240 | ||
638cfb5e MH |
2241 | config BR2_PACKAGE_SYSTEMD_COMPAT |
2242 | bool "systemd compatibility libraries have been removed" | |
d246b984 | 2243 | select BR2_LEGACY |
638cfb5e | 2244 | help |
17bccf17 | 2245 | The systemd option to enable the compatibility libraries has |
638cfb5e MH |
2246 | been removed. Theses libraries have been useless since a few |
2247 | version, and have been fully dropped from the source since | |
2248 | v230. | |
2249 | ||
5baa92b0 MN |
2250 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER |
2251 | bool "gst1-plugins-bad liveadder plugin removed" | |
2252 | select BR2_LEGACY | |
2253 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER | |
2254 | help | |
2255 | The functionality of the liveadder plugin of the | |
2256 | gst1-plugins-bad package has been merged into audiomixer. | |
2257 | ||
0f92b19d AW |
2258 | config BR2_PACKAGE_LIBFSLVPUWRAP |
2259 | bool "libfslvpuwrap has been renamed to imx-vpuwrap" | |
2260 | select BR2_LEGACY | |
2261 | select BR2_PACKAGE_IMX_VPUWRAP | |
2262 | help | |
d6109172 RM |
2263 | The libfslvpuwrap has been renamed to match the renamed |
2264 | package. | |
0f92b19d | 2265 | |
64998907 AW |
2266 | config BR2_PACKAGE_LIBFSLPARSER |
2267 | bool "libfslparser has been renamed to imx-parser" | |
2268 | select BR2_LEGACY | |
2269 | select BR2_PACKAGE_IMX_PARSER | |
2270 | help | |
d6109172 RM |
2271 | The libfslparser has been renamed to match the renamed |
2272 | package. | |
64998907 | 2273 | |
47e6203f AW |
2274 | config BR2_PACKAGE_LIBFSLCODEC |
2275 | bool "libfslcodec has been renamed to imx-codec" | |
2276 | select BR2_LEGACY | |
2277 | select BR2_PACKAGE_IMX_CODEC | |
2278 | help | |
2279 | The libfslcodec has been renamed to match the renamed package. | |
2280 | ||
b5d99008 CS |
2281 | config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT |
2282 | bool "FIT support in uboot-tools has been refactored" | |
2283 | select BR2_LEGACY | |
2284 | select BR2_PACKAGE_DTC | |
2285 | select BR2_PACKAGE_DTC_PROGRAMS | |
2286 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT | |
2287 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT | |
2288 | select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE | |
2289 | help | |
2290 | This option has been removed in favor of a more fine-grained | |
2291 | configuration, which is recommended. Selecting this option | |
2292 | enables FIT and FIT signature support for the target packages. | |
2293 | It will also select the dtc and openssl packages. | |
2294 | ||
f253c146 WB |
2295 | config BR2_PTHREADS_OLD |
2296 | bool "linuxthreads (stable/old)" | |
2297 | select BR2_LEGACY | |
2298 | help | |
2299 | Linuxthreads have been reworked, BR2_PTHREADS_OLD is now | |
2300 | BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed. | |
2301 | ||
ae466a60 TP |
2302 | config BR2_BINUTILS_VERSION_2_23_X |
2303 | bool "binutils 2.23 removed" | |
2304 | select BR2_LEGACY | |
2305 | help | |
2306 | Binutils 2.23 has been removed, using a newer version is | |
2307 | recommended. | |
2308 | ||
500de259 TP |
2309 | config BR2_TOOLCHAIN_BUILDROOT_EGLIBC |
2310 | bool "eglibc support has been removed" | |
2311 | select BR2_LEGACY | |
2312 | help | |
2313 | The eglibc project no longer exists, as it has been merged | |
2314 | back into the glibc project. Therefore, support for eglibc | |
2315 | has been removed, and glibc should be used instead. | |
2316 | ||
20ed897b TP |
2317 | config BR2_GDB_VERSION_7_8 |
2318 | bool "gdb 7.8 has been removed" | |
2319 | select BR2_LEGACY | |
2320 | help | |
2321 | The 7.8 version of gdb has been removed. Use a newer version | |
2322 | instead. | |
2323 | ||
f0c94704 | 2324 | ############################################################################### |
2661c4f1 | 2325 | comment "Legacy options removed in 2016.05" |
f0c94704 | 2326 | |
3380da69 GZ |
2327 | config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL |
2328 | bool "openvpn polarssl crypto backend removed" | |
2329 | select BR2_LEGACY | |
2330 | help | |
2331 | The OpenVPN polarssl crypto backend option has been removed. | |
2332 | Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't | |
2333 | compatible with mbedtls (polarssl) series 2.x which is the | |
2334 | version provided in buildroot. And both can't coexist. | |
2335 | It now uses OpenSSL as the only option. | |
2336 | ||
4dfc2cb5 MB |
2337 | config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE |
2338 | bool "nginx http spdy module removed" | |
2339 | select BR2_LEGACY | |
2340 | select BR2_PACKAGE_NGINX_HTTP_V2_MODULE | |
2341 | help | |
2342 | The ngx_http_spdy_module has been superseded by the | |
2343 | ngx_http_v2_module since nginx v1.9.5. The | |
2344 | ngx_http_v2_module modules has been automatically selected | |
2345 | in your configuration. | |
2346 | ||
0c956f2d GZ |
2347 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP |
2348 | bool "gst1-plugins-bad rtp plugin moved to good" | |
2349 | select BR2_LEGACY | |
2350 | help | |
2351 | The rtp plugin has been moved from gst1-plugins-base to | |
2352 | gst1-plugins-good. | |
2353 | ||
4196cf90 GZ |
2354 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123 |
2355 | bool "gst1-plugins-bad mpg123 plugin moved to ugly" | |
2356 | select BR2_LEGACY | |
2357 | help | |
2358 | The mpg123 plugin has been moved from gst1-plugins-bad to | |
2359 | gst1-plugins-ugly. | |
2360 | ||
8490e833 GZ |
2361 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC |
2362 | bool "PowerPC Sourcery toolchain has been removed" | |
2363 | select BR2_LEGACY | |
2364 | help | |
2365 | The Sourcery CodeBench toolchain for the PowerPC | |
2366 | architecture has been removed, as it was very old, not | |
2367 | maintained, and causing numerous build failures with modern | |
2368 | userspace packages. | |
2369 | ||
2370 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2 | |
2371 | bool "PowerPC Sourcery E500v2 toolchain has been removed" | |
2372 | select BR2_LEGACY | |
2373 | help | |
2374 | The Sourcery CodeBench toolchain for the PowerPC E500v2 | |
2375 | architecture has been removed, as it was very old, not | |
2376 | maintained, and causing numerous build failures with modern | |
2377 | userspace packages. | |
2378 | ||
6cb4814c TP |
2379 | config BR2_x86_i386 |
2380 | bool "x86 i386 support removed" | |
7aaa730c | 2381 | select BR2_LEGACY |
6cb4814c TP |
2382 | help |
2383 | The support for the i386 processors of the x86 architecture | |
2384 | has been removed. | |
2385 | ||
f75ee80d JC |
2386 | config BR2_PACKAGE_QT5QUICK1 |
2387 | bool "qt5quick1 package removed" | |
2388 | select BR2_LEGACY | |
2389 | help | |
2390 | The qt5quick1 package has been removed, since it was removed | |
2391 | from upstream starting from Qt 5.6. | |
2392 | ||
21b25d28 | 2393 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR |
f61583fc | 2394 | string "uboot custom patch dir has been removed" |
21b25d28 GZ |
2395 | help |
2396 | The uboot custom patch directory option has been removed. Use | |
2397 | the improved BR2_TARGET_UBOOT_PATCH option instead. | |
2398 | ||
f61583fc DM |
2399 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP |
2400 | bool | |
2401 | default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != "" | |
2402 | select BR2_LEGACY | |
2403 | ||
2404 | # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from | |
2405 | # boot/uboot/Config.in | |
2406 | ||
f80ad2fd GZ |
2407 | config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID |
2408 | bool "xf86-input-void removed" | |
2409 | select BR2_LEGACY | |
2410 | help | |
2411 | The xf86-input-void package has been removed, there's no need | |
2412 | for it in any modern (post-2007) xorg server. | |
2413 | ||
b8de1788 GZ |
2414 | config BR2_KERNEL_HEADERS_3_17 |
2415 | bool "kernel headers version 3.17.x are no longer supported" | |
b8de1788 GZ |
2416 | select BR2_LEGACY |
2417 | help | |
d6109172 RM |
2418 | Version 3.17.x of the Linux kernel headers have been |
2419 | deprecated for more than four buildroot releases and are now | |
2420 | removed. | |
b8de1788 | 2421 | |
ffc324ea GZ |
2422 | config BR2_GDB_VERSION_7_7 |
2423 | bool "gdb 7.7 has been removed" | |
2424 | select BR2_LEGACY | |
2425 | help | |
2426 | The 7.7 version of gdb has been removed. Use a newer version | |
2427 | instead. | |
2428 | ||
75945ddc GZ |
2429 | config BR2_PACKAGE_FOOMATIC_FILTERS |
2430 | bool "foomatic-filters" | |
2431 | select BR2_LEGACY | |
2432 | help | |
2433 | The foomatic-filters package was removed. | |
2434 | ||
7bd9dbc1 GZ |
2435 | config BR2_PACKAGE_SAMBA |
2436 | bool "samba" | |
2437 | select BR2_LEGACY | |
2438 | help | |
2439 | The samba package was removed in favour of samba4 since the | |
2440 | 3.x series isn't supported by upstream any longer. | |
2441 | ||
6922b41d BK |
2442 | config BR2_PACKAGE_KODI_WAVPACK |
2443 | bool "wavpack" | |
2444 | select BR2_LEGACY | |
2445 | help | |
2446 | wavpack support was removed in favour of ffmpeg: | |
2447 | https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4 | |
2448 | ||
75ce17d0 BK |
2449 | config BR2_PACKAGE_KODI_RSXS |
2450 | bool "rsxs support in Kodi was moved to an addon" | |
2451 | select BR2_LEGACY | |
2452 | select BR2_PACKAGE_KODI_SCREENSAVER_RSXS | |
2453 | help | |
2454 | rsxs support in Kodi was moved to an addon | |
2455 | ||
56b80ece BK |
2456 | config BR2_PACKAGE_KODI_GOOM |
2457 | bool "Goom support in Kodi was moved to an addon" | |
2458 | select BR2_LEGACY | |
2459 | select BR2_PACKAGE_KODI_VISUALISATION_GOOM | |
2460 | help | |
2461 | Goom support in Kodi was moved to an addon | |
2462 | ||
e5a073ac GE |
2463 | config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS |
2464 | bool "systemd all extras option has been removed" | |
2465 | select BR2_LEGACY | |
2466 | select BR2_PACKAGE_XZ | |
2467 | select BR2_PACKAGE_LIBGCRYPT | |
2468 | help | |
2469 | The systemd option to enable "all extras" has been | |
2470 | removed. To get the same features, the libgcrypt and xz | |
2471 | package should now be enabled. | |
2472 | ||
8c0a367d GZ |
2473 | config BR2_GCC_VERSION_4_5_X |
2474 | bool "gcc 4.5.x has been removed" | |
2475 | select BR2_LEGACY | |
2476 | help | |
2477 | The 4.5.x version of gcc has been removed. Use a newer | |
2478 | version instead. | |
2479 | ||
007c2ce9 | 2480 | config BR2_PACKAGE_SQLITE_READLINE |
62da71c9 | 2481 | bool "sqlite command-line editing support was updated" |
007c2ce9 BK |
2482 | select BR2_PACKAGE_NCURSES |
2483 | select BR2_PACKAGE_READLINE | |
2484 | select BR2_LEGACY | |
2485 | help | |
2486 | This option was removed in favour of the sqlite package | |
2487 | deciding itself depending on the enabled packages whether | |
2488 | command-line editing should be enabled, it also also takes | |
2489 | libedit into account. | |
2490 | ||
f0c94704 LC |
2491 | ############################################################################### |
2492 | comment "Legacy options removed in 2016.02" | |
2493 | ||
f39ac4d2 BK |
2494 | config BR2_PACKAGE_DOVECOT_BZIP2 |
2495 | bool "bzip2 support option has been removed" | |
2496 | select BR2_LEGACY | |
2497 | select BR2_PACKAGE_BZIP2 | |
2498 | help | |
2499 | Bzip2 support is built if the bzip2 package is selected. | |
2500 | ||
2501 | config BR2_PACKAGE_DOVECOT_ZLIB | |
2502 | bool "zlib support option has been removed" | |
2503 | select BR2_LEGACY | |
2504 | select BR2_PACKAGE_ZLIB | |
2505 | help | |
2506 | Zlib support is built if the zlib package is selected. | |
2507 | ||
ead1df42 JK |
2508 | config BR2_PACKAGE_E2FSPROGS_FINDFS |
2509 | bool "e2fsprogs findfs option has been removed" | |
2510 | select BR2_LEGACY | |
2511 | help | |
2512 | This option attempted to enable findfs capabilities from | |
2513 | e2fsprogs but has not worked since July 2015 (due to | |
2514 | packaging changes). One can use BusyBox's findfs support or | |
860020f3 | 2515 | enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option. |
ead1df42 | 2516 | |
b1063a01 RN |
2517 | config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL |
2518 | bool "openpowerlink debug option has been removed" | |
2519 | select BR2_LEGACY | |
2520 | help | |
d6109172 RM |
2521 | This option depends on BR2_ENABLE_DEBUG which should not be |
2522 | used by packages anymore. | |
b1063a01 RN |
2523 | |
2524 | config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE | |
2525 | bool "openpowerlink package has been updated" | |
2526 | select BR2_LEGACY | |
2527 | select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB | |
2528 | help | |
2529 | openpowerlink kernel modules are built if the | |
2530 | kernel stack library is selected. | |
2531 | ||
2532 | config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP | |
2533 | bool "openpowerlink package has been updated" | |
2534 | select BR2_LEGACY | |
2535 | select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB | |
2536 | help | |
2537 | The user space support has been split in two part: | |
2538 | - a monolitic user space library | |
2539 | - a user spae deamon driver | |
2540 | ||
e3e0583f YM |
2541 | config BR2_LINUX_KERNEL_SAME_AS_HEADERS |
2542 | bool "using the linux headers version for the kernel has been removed" | |
2543 | select BR2_LEGACY | |
2544 | help | |
2545 | The option to use the version of the kernel headers for the | |
2546 | kernel to build has been removed. | |
2547 | ||
2548 | There is now the converse, better-suited and more versatile | |
2549 | option to use the kernel version for the linux headers. | |
2550 | ||
d37ce8e1 OS |
2551 | config BR2_PACKAGE_CUPS_PDFTOPS |
2552 | bool "Pdftops support has been removed from Cups" | |
917de0f7 | 2553 | select BR2_PACKAGE_CUPS_FILTERS |
d37ce8e1 OS |
2554 | select BR2_LEGACY |
2555 | help | |
2556 | Pdftops support has been removed from the cups package | |
2557 | It is now part of the cups-filters package. | |
2558 | ||
d8da5f10 GZ |
2559 | config BR2_KERNEL_HEADERS_3_16 |
2560 | bool "kernel headers version 3.16.x are no longer supported" | |
d8da5f10 GZ |
2561 | select BR2_LEGACY |
2562 | help | |
d6109172 RM |
2563 | Version 3.16.x of the Linux kernel headers have been |
2564 | deprecated for more than four buildroot releases and are now | |
2565 | removed. | |
d8da5f10 | 2566 | |
af45a4f4 YY |
2567 | config BR2_PACKAGE_PYTHON_PYXML |
2568 | bool "python-pyxml package has been removed" | |
2569 | select BR2_LEGACY | |
2570 | help | |
2571 | PyXML is obsolete and its functionality is covered either via | |
2572 | native Python XML support or python-lxml package. | |
2573 | ||
d29c7196 SN |
2574 | # BR2_ENABLE_SSP is still referenced in Config.in (default in choice) |
2575 | config BR2_ENABLE_SSP | |
2576 | bool "Stack Smashing protection now has different levels" | |
2577 | help | |
d6109172 RM |
2578 | The protection offered by SSP can now be selected from |
2579 | different protection levels. Be sure to review the SSP level | |
2580 | in the build options menu. | |
d29c7196 | 2581 | |
1e3d2cad | 2582 | config BR2_PACKAGE_DIRECTFB_CLE266 |
e989ddbe | 2583 | bool "cle266 driver for directfb removed" |
1e3d2cad GZ |
2584 | select BR2_LEGACY |
2585 | help | |
2586 | The cle266 directfb driver support has been removed. | |
2587 | It doesn't build in the latest version and it's unlikely | |
2588 | anyone has any use for it. | |
2589 | ||
2590 | config BR2_PACKAGE_DIRECTFB_UNICHROME | |
e989ddbe | 2591 | bool "unichrome driver for directfb removed" |
1e3d2cad GZ |
2592 | select BR2_LEGACY |
2593 | help | |
2594 | The unichrome directfb driver support has been removed. | |
2595 | It doesn't build in the latest version and it's unlikely | |
2596 | anyone has any use for it. | |
2597 | ||
820e1685 RN |
2598 | config BR2_PACKAGE_LIBELEMENTARY |
2599 | bool "libelementary has been renamed to elementary" | |
2600 | select BR2_LEGACY | |
2601 | select BR2_PACKAGE_ELEMENTARY | |
2602 | help | |
d6109172 RM |
2603 | The libelementary package has been renamed to match the |
2604 | upstream name. | |
820e1685 | 2605 | |
a9d1f5f6 RN |
2606 | config BR2_PACKAGE_LIBEINA |
2607 | bool "libeina package has been removed" | |
2608 | select BR2_LEGACY | |
2609 | select BR2_PACKAGE_EFL | |
2610 | help | |
1f83a7a7 | 2611 | With EFL 1.15, libeina is now provided by the efl package. |
a9d1f5f6 | 2612 | |
49700f08 RN |
2613 | config BR2_PACKAGE_LIBEET |
2614 | bool "libeet package has been removed" | |
2615 | select BR2_LEGACY | |
2616 | select BR2_PACKAGE_EFL | |
2617 | help | |
1f83a7a7 | 2618 | With EFL 1.15, libeet is now provided by the efl package. |
49700f08 | 2619 | |
e5989d6c RN |
2620 | config BR2_PACKAGE_LIBEVAS |
2621 | bool "libevas package has been removed" | |
2622 | select BR2_LEGACY | |
2623 | select BR2_PACKAGE_EFL | |
2624 | help | |
1f83a7a7 | 2625 | With EFL 1.15, libevas is now provided by the efl package. |
e5989d6c | 2626 | |
1fe1b60b RN |
2627 | config BR2_PACKAGE_LIBECORE |
2628 | bool "libecore package has been removed" | |
2629 | select BR2_LEGACY | |
2630 | select BR2_PACKAGE_EFL | |
2631 | help | |
1f83a7a7 | 2632 | With EFL 1.15, libecore is now provided by the efl package. |
1fe1b60b | 2633 | |
8c05c38d RN |
2634 | config BR2_PACKAGE_LIBEDBUS |
2635 | bool "libedbus package has been removed" | |
2636 | select BR2_LEGACY | |
2637 | select BR2_PACKAGE_EFL | |
2638 | help | |
1f83a7a7 | 2639 | With EFL 1.15, libedbus is now provided by the efl package. |
8c05c38d | 2640 | |
d2b042c1 RN |
2641 | config BR2_PACKAGE_LIBEFREET |
2642 | bool "libefreet package has been removed" | |
2643 | select BR2_LEGACY | |
2644 | select BR2_PACKAGE_EFL | |
2645 | help | |
1f83a7a7 | 2646 | With EFL 1.15, libefreet is now provided by the efl package. |
d2b042c1 | 2647 | |
e155c957 RN |
2648 | config BR2_PACKAGE_LIBEIO |
2649 | bool "libeio package has been removed" | |
2650 | select BR2_LEGACY | |
2651 | select BR2_PACKAGE_EFL | |
2652 | help | |
1f83a7a7 | 2653 | With EFL 1.15, libeio is now provided by the efl package. |
e155c957 | 2654 | |
b728fb77 RN |
2655 | config BR2_PACKAGE_LIBEMBRYO |
2656 | bool "libembryo package has been removed" | |
2657 | select BR2_LEGACY | |
2658 | select BR2_PACKAGE_EFL | |
2659 | help | |
1f83a7a7 | 2660 | With EFL 1.15, libembryo is now provided by the efl package. |
b728fb77 | 2661 | |
4c93c107 RN |
2662 | config BR2_PACKAGE_LIBEDJE |
2663 | bool "libedje package has been removed" | |
2664 | select BR2_LEGACY | |
2665 | select BR2_PACKAGE_EFL | |
2666 | help | |
1f83a7a7 | 2667 | With EFL 1.15, libedje is now provided by the efl package. |
4c93c107 | 2668 | |
905dba10 RN |
2669 | config BR2_PACKAGE_LIBETHUMB |
2670 | bool "libethumb package has been removed" | |
2671 | select BR2_LEGACY | |
2672 | select BR2_PACKAGE_EFL | |
2673 | help | |
1f83a7a7 | 2674 | With EFL 1.15, libethumb is now provided by the efl package. |
905dba10 | 2675 | |
f0c94704 LC |
2676 | config BR2_PACKAGE_INFOZIP |
2677 | bool "infozip option has been renamed to zip" | |
2678 | select BR2_LEGACY | |
2679 | select BR2_PACKAGE_ZIP | |
2680 | help | |
2681 | Info-Zip's Zip package has been renamed from infozip to zip, | |
d6109172 RM |
2682 | to avoid ambiguities with Info-Zip's UnZip which has been |
2683 | added in the unzip package. | |
f0c94704 | 2684 | |
a2d16600 | 2685 | config BR2_BR2_PACKAGE_NODEJS_0_10_X |
75b70492 | 2686 | bool "nodejs 0.10.x option removed" |
a2d16600 MB |
2687 | select BR2_LEGACY |
2688 | select BR2_PACKAGE_NODEJS | |
2689 | help | |
75b70492 | 2690 | nodejs 0.10.x option has been removed. 0.10.x is now |
d6109172 RM |
2691 | automatically chosen for ARMv5 architectures only and the |
2692 | latest nodejs for all other supported architectures. The | |
2693 | correct nodejs version has been automatically selected in your | |
2694 | configuration. | |
a2d16600 | 2695 | |
a314b878 MB |
2696 | config BR2_BR2_PACKAGE_NODEJS_0_12_X |
2697 | bool "nodejs version 0.12.x has been removed" | |
2698 | select BR2_LEGACY | |
2699 | select BR2_PACKAGE_NODEJS | |
2700 | help | |
2701 | nodejs version 0.12.x has been removed. As an alternative, | |
2702 | the latest nodejs version has been automatically selected in | |
2703 | your configuration. | |
2704 | ||
90bf67c0 MB |
2705 | config BR2_BR2_PACKAGE_NODEJS_4_X |
2706 | bool "nodejs version 4.x has been removed" | |
2707 | select BR2_LEGACY | |
2708 | select BR2_PACKAGE_NODEJS | |
2709 | help | |
2710 | nodejs version 4.x has been removed. As an alternative, | |
2711 | the latest nodejs version has been automatically selected in | |
2712 | your configuration. | |
2713 | ||
16b8e813 | 2714 | ############################################################################### |
ae46e8f9 TP |
2715 | comment "Legacy options removed in 2015.11" |
2716 | ||
301e8ffb PS |
2717 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL |
2718 | bool "gst1-plugins-bad real plugin has been removed" | |
2719 | select BR2_LEGACY | |
2720 | help | |
2721 | The real plugin from GStreamer 1 bad plugins has been | |
2722 | removed. | |
2723 | ||
f7dd5cb2 PS |
2724 | config BR2_PACKAGE_MEDIA_CTL |
2725 | bool "media-ctl package has been removed" | |
2726 | select BR2_LEGACY | |
2727 | select BR2_PACKAGE_LIBV4L | |
2728 | select BR2_PACKAGE_LIBV4L_UTILS | |
2729 | help | |
d6109172 RM |
2730 | media-ctl source and developement have been moved to v4l-utils |
2731 | since June 2014. For an up-to-date media-ctl version select | |
2732 | BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS. | |
f7dd5cb2 | 2733 | |
f8031339 RN |
2734 | config BR2_PACKAGE_SCHIFRA |
2735 | bool "schifra package has been removed" | |
758c5c7f | 2736 | select BR2_LEGACY |
f8031339 | 2737 | help |
d6109172 RM |
2738 | Schifra package has been maked broken since 2014.11 release |
2739 | and haven't been fixed since then. | |
f8031339 | 2740 | |
7e5ddbcb MH |
2741 | config BR2_PACKAGE_ZXING |
2742 | bool "zxing option has been renamed" | |
2743 | select BR2_LEGACY | |
2744 | select BR2_PACKAGE_ZXING_CPP | |
2745 | help | |
d6109172 RM |
2746 | ZXing no longer provides the cpp bindings, it has been renamed |
2747 | to BR2_PACKAGE_ZXING_CPP which uses a new upstream. | |
7e5ddbcb | 2748 | |
4d131b4d YM |
2749 | # Since FreeRDP has new dependencies, protect this legacy to avoid the |
2750 | # infamous "unmet direct dependencies" kconfig error. | |
2751 | config BR2_PACKAGE_FREERDP_CLIENT | |
2752 | bool "freerdp client option renamed" | |
2753 | depends on BR2_PACKAGE_FREERDP | |
758c5c7f | 2754 | select BR2_LEGACY |
4d131b4d YM |
2755 | select BR2_PACKAGE_FREERDP_CLIENT_X11 |
2756 | ||
a658c4d1 GZ |
2757 | config BR2_PACKAGE_BLACKBOX |
2758 | bool "blackbox package has been removed" | |
2759 | select BR2_LEGACY | |
2760 | help | |
2761 | Upstream is dead and the package has been deprecated for | |
2762 | some time. There are other alternative maintained WMs. | |
2763 | ||
4ac4bc32 GZ |
2764 | config BR2_KERNEL_HEADERS_3_0 |
2765 | bool "kernel headers version 3.0.x are no longer supported" | |
4ac4bc32 GZ |
2766 | select BR2_LEGACY |
2767 | help | |
2768 | Version 3.0.x of the Linux kernel headers have been deprecated | |
2769 | for more than four buildroot releases and are now removed. | |
4ac4bc32 GZ |
2770 | |
2771 | config BR2_KERNEL_HEADERS_3_11 | |
2772 | bool "kernel headers version 3.11.x are no longer supported" | |
4ac4bc32 GZ |
2773 | select BR2_LEGACY |
2774 | help | |
d6109172 RM |
2775 | Version 3.11.x of the Linux kernel headers have been |
2776 | deprecated for more than four buildroot releases and are now | |
2777 | removed. | |
4ac4bc32 GZ |
2778 | |
2779 | config BR2_KERNEL_HEADERS_3_13 | |
2780 | bool "kernel headers version 3.13.x are no longer supported" | |
4ac4bc32 GZ |
2781 | select BR2_LEGACY |
2782 | help | |
d6109172 RM |
2783 | Version 3.13.x of the Linux kernel headers have been |
2784 | deprecated for more than four buildroot releases and are now | |
2785 | removed. | |
4ac4bc32 GZ |
2786 | |
2787 | config BR2_KERNEL_HEADERS_3_15 | |
2788 | bool "kernel headers version 3.15.x are no longer supported" | |
4ac4bc32 GZ |
2789 | select BR2_LEGACY |
2790 | help | |
d6109172 RM |
2791 | Version 3.15.x of the Linux kernel headers have been |
2792 | deprecated for more than four buildroot releases and are now | |
2793 | removed. | |
4ac4bc32 | 2794 | |
80404e8c TP |
2795 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI |
2796 | bool "DirectFB example df_andi has been removed" | |
758c5c7f | 2797 | select BR2_LEGACY |
80404e8c TP |
2798 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2799 | help | |
2800 | The per-DirectFB example options have been removed. The | |
2801 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2802 | examples. | |
2803 | ||
2804 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD | |
2805 | bool "DirectFB example df_bltload has been removed" | |
758c5c7f | 2806 | select BR2_LEGACY |
80404e8c TP |
2807 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2808 | help | |
2809 | The per-DirectFB example options have been removed. The | |
2810 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2811 | examples. | |
2812 | ||
2813 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD | |
2814 | bool "DirectFB example df_cpuload has been removed" | |
758c5c7f | 2815 | select BR2_LEGACY |
80404e8c TP |
2816 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2817 | help | |
2818 | The per-DirectFB example options have been removed. The | |
2819 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2820 | examples. | |
2821 | ||
2822 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER | |
2823 | bool "DirectFB example df_databuffer has been removed" | |
758c5c7f | 2824 | select BR2_LEGACY |
80404e8c TP |
2825 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2826 | help | |
2827 | The per-DirectFB example options have been removed. The | |
2828 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2829 | examples. | |
2830 | ||
2831 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD | |
2832 | bool "DirectFB example df_dioload has been removed" | |
758c5c7f | 2833 | select BR2_LEGACY |
80404e8c TP |
2834 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2835 | help | |
2836 | The per-DirectFB example options have been removed. The | |
2837 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2838 | examples. | |
2839 | ||
2840 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK | |
2841 | bool "DirectFB example df_dok has been removed" | |
758c5c7f | 2842 | select BR2_LEGACY |
80404e8c TP |
2843 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2844 | help | |
2845 | The per-DirectFB example options have been removed. The | |
2846 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2847 | examples. | |
2848 | ||
2849 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST | |
2850 | bool "DirectFB example df_drivertest has been removed" | |
758c5c7f | 2851 | select BR2_LEGACY |
80404e8c TP |
2852 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2853 | help | |
2854 | The per-DirectFB example options have been removed. The | |
2855 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2856 | examples. | |
2857 | ||
80404e8c TP |
2858 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE |
2859 | bool "DirectFB example df_fire has been removed" | |
758c5c7f | 2860 | select BR2_LEGACY |
80404e8c TP |
2861 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2862 | help | |
2863 | The per-DirectFB example options have been removed. The | |
2864 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2865 | examples. | |
2866 | ||
2867 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP | |
2868 | bool "DirectFB example df_flip has been removed" | |
758c5c7f | 2869 | select BR2_LEGACY |
80404e8c TP |
2870 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2871 | help | |
2872 | The per-DirectFB example options have been removed. The | |
2873 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2874 | examples. | |
2875 | ||
2876 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS | |
2877 | bool "DirectFB example df_fonts has been removed" | |
758c5c7f | 2878 | select BR2_LEGACY |
80404e8c TP |
2879 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2880 | help | |
2881 | The per-DirectFB example options have been removed. The | |
2882 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2883 | examples. | |
2884 | ||
2885 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT | |
2886 | bool "DirectFB example df_input has been removed" | |
758c5c7f | 2887 | select BR2_LEGACY |
80404e8c TP |
2888 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2889 | help | |
2890 | The per-DirectFB example options have been removed. The | |
2891 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2892 | examples. | |
2893 | ||
2894 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK | |
2895 | bool "DirectFB example df_joystick has been removed" | |
758c5c7f | 2896 | select BR2_LEGACY |
80404e8c TP |
2897 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2898 | help | |
2899 | The per-DirectFB example options have been removed. The | |
2900 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2901 | examples. | |
2902 | ||
2903 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES | |
2904 | bool "DirectFB example df_knuckles has been removed" | |
758c5c7f | 2905 | select BR2_LEGACY |
80404e8c TP |
2906 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2907 | help | |
2908 | The per-DirectFB example options have been removed. The | |
2909 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2910 | examples. | |
2911 | ||
2912 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER | |
2913 | bool "DirectFB example df_layer has been removed" | |
758c5c7f | 2914 | select BR2_LEGACY |
80404e8c TP |
2915 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2916 | help | |
2917 | The per-DirectFB example options have been removed. The | |
2918 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2919 | examples. | |
2920 | ||
2921 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX | |
2922 | bool "DirectFB example df_matrix has been removed" | |
758c5c7f | 2923 | select BR2_LEGACY |
80404e8c TP |
2924 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2925 | help | |
2926 | The per-DirectFB example options have been removed. The | |
2927 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2928 | examples. | |
2929 | ||
2930 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER | |
2931 | bool "DirectFB example df_matrix_water has been removed" | |
758c5c7f | 2932 | select BR2_LEGACY |
80404e8c TP |
2933 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2934 | help | |
2935 | The per-DirectFB example options have been removed. The | |
2936 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2937 | examples. | |
2938 | ||
2939 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO | |
2940 | bool "DirectFB example df_neo has been removed" | |
758c5c7f | 2941 | select BR2_LEGACY |
80404e8c TP |
2942 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2943 | help | |
2944 | The per-DirectFB example options have been removed. The | |
2945 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2946 | examples. | |
2947 | ||
2948 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD | |
2949 | bool "DirectFB example df_netload has been removed" | |
758c5c7f | 2950 | select BR2_LEGACY |
80404e8c TP |
2951 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2952 | help | |
2953 | The per-DirectFB example options have been removed. The | |
2954 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2955 | examples. | |
2956 | ||
2957 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE | |
2958 | bool "DirectFB example df_palette has been removed" | |
2959 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
2960 | help | |
2961 | The per-DirectFB example options have been removed. The | |
2962 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2963 | examples. | |
2964 | ||
2965 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE | |
2966 | bool "DirectFB example df_particle has been removed" | |
758c5c7f | 2967 | select BR2_LEGACY |
80404e8c TP |
2968 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2969 | help | |
2970 | The per-DirectFB example options have been removed. The | |
2971 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2972 | examples. | |
2973 | ||
2974 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER | |
2975 | bool "DirectFB example df_porter has been removed" | |
758c5c7f | 2976 | select BR2_LEGACY |
80404e8c TP |
2977 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2978 | help | |
2979 | The per-DirectFB example options have been removed. The | |
2980 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2981 | examples. | |
2982 | ||
2983 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS | |
2984 | bool "DirectFB example df_stress has been removed" | |
2985 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
2986 | help | |
2987 | The per-DirectFB example options have been removed. The | |
2988 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2989 | examples. | |
2990 | ||
2991 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE | |
2992 | bool "DirectFB example df_texture has been removed" | |
758c5c7f | 2993 | select BR2_LEGACY |
80404e8c TP |
2994 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2995 | help | |
2996 | The per-DirectFB example options have been removed. The | |
2997 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2998 | examples. | |
2999 | ||
3000 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO | |
3001 | bool "DirectFB example df_video has been removed" | |
758c5c7f | 3002 | select BR2_LEGACY |
80404e8c TP |
3003 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
3004 | help | |
3005 | The per-DirectFB example options have been removed. The | |
3006 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
3007 | examples. | |
3008 | ||
3009 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE | |
3010 | bool "DirectFB example df_video_particle has been removed" | |
758c5c7f | 3011 | select BR2_LEGACY |
80404e8c TP |
3012 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
3013 | help | |
3014 | The per-DirectFB example options have been removed. The | |
3015 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
3016 | examples. | |
3017 | ||
3018 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW | |
3019 | bool "DirectFB example df_window has been removed" | |
758c5c7f | 3020 | select BR2_LEGACY |
80404e8c TP |
3021 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
3022 | help | |
3023 | The per-DirectFB example options have been removed. The | |
3024 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
3025 | examples. | |
3026 | ||
2b78fb21 GB |
3027 | config BR2_PACKAGE_KOBS_NG |
3028 | bool "kobs-ng was replaced by imx-kobs" | |
3029 | select BR2_LEGACY | |
3030 | select BR2_PACKAGE_IMX_KOBS | |
3031 | help | |
3032 | The outdated kobs-ng has been replaced by the Freescale- | |
3033 | maintained imx-kobs package. | |
3034 | ||
11573f5a TP |
3035 | config BR2_PACKAGE_SAWMAN |
3036 | bool "sawman package removed" | |
3037 | select BR2_LEGACY | |
3038 | select BR2_PACKAGE_DIRECTFB_SAWMAN | |
3039 | help | |
3040 | This option has been removed because the sawman package no | |
3041 | longer exists: it was merged inside DirectFB itself. This | |
3042 | feature can now be enabled using the | |
3043 | BR2_PACKAGE_DIRECTFB_SAWMAN option. | |
3044 | ||
ae46e8f9 TP |
3045 | config BR2_PACKAGE_DIVINE |
3046 | bool "divine package removed" | |
3047 | select BR2_LEGACY | |
3048 | select BR2_PACKAGE_DIRECTFB_DIVINE | |
3049 | help | |
3050 | This option has been removed because the divine package no | |
3051 | longer exists: it was merged inside DirectFB itself. This | |
3052 | feature can now be enabled using the | |
3053 | BR2_PACKAGE_DIRECTFB_DIVINE option. | |
3054 | ||
3055 | ############################################################################### | |
16b8e813 GZ |
3056 | comment "Legacy options removed in 2015.08" |
3057 | ||
9d9f1a92 BK |
3058 | config BR2_PACKAGE_KODI_PVR_ADDONS |
3059 | bool "Kodi PVR addon was split" | |
3060 | select BR2_LEGACY | |
2579ec20 | 3061 | select BR2_PACKAGE_KODI_PVR_ARGUSTV |
a69eca43 | 3062 | select BR2_PACKAGE_KODI_PVR_DVBLINK |
6894c6c7 | 3063 | select BR2_PACKAGE_KODI_PVR_DVBVIEWER |
313e45cd | 3064 | select BR2_PACKAGE_KODI_PVR_FILMON |
6940d66a | 3065 | select BR2_PACKAGE_KODI_PVR_HTS |
8c326ff8 | 3066 | select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE |
a571287d | 3067 | select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER |
afb2f155 | 3068 | select BR2_PACKAGE_KODI_PVR_MYTHTV |
0757c7d3 | 3069 | select BR2_PACKAGE_KODI_PVR_NEXTPVR |
805e9c15 | 3070 | select BR2_PACKAGE_KODI_PVR_NJOY |
8776003d | 3071 | select BR2_PACKAGE_KODI_PVR_PCTV |
70cf949f | 3072 | select BR2_PACKAGE_KODI_PVR_STALKER |
610a3701 | 3073 | select BR2_PACKAGE_KODI_PVR_VBOX |
7457d487 | 3074 | select BR2_PACKAGE_KODI_PVR_VDR_VNSI |
eaf250c1 | 3075 | select BR2_PACKAGE_KODI_PVR_VUPLUS |
967a4e9a | 3076 | select BR2_PACKAGE_KODI_PVR_WMC |
9d9f1a92 BK |
3077 | help |
3078 | Kodi PVR addon was split into seperate modules | |
3079 | ||
f84cc202 GZ |
3080 | config BR2_BINUTILS_VERSION_2_23_2 |
3081 | bool "binutils 2.23 option renamed" | |
3082 | select BR2_LEGACY | |
f84cc202 | 3083 | help |
ae466a60 TP |
3084 | Binutils 2.23.2 has been removed, using a newer version is |
3085 | recommended. | |
f84cc202 GZ |
3086 | |
3087 | config BR2_BINUTILS_VERSION_2_24 | |
3088 | bool "binutils 2.24 option renamed" | |
3089 | select BR2_LEGACY | |
3090 | select BR2_BINUTILS_VERSION_2_24_X | |
3091 | help | |
3092 | The binutils version option has been renamed to match the | |
3093 | same patchlevel logic used by gcc. The new option is now | |
3094 | BR2_BINUTILS_VERSION_2_24_X. | |
3095 | ||
3096 | config BR2_BINUTILS_VERSION_2_25 | |
3097 | bool "binutils 2.25 option renamed" | |
3098 | select BR2_LEGACY | |
3099 | select BR2_BINUTILS_VERSION_2_25_X | |
3100 | help | |
3101 | The binutils version option has been renamed to match the | |
3102 | same patchlevel logic used by gcc. The new option is now | |
3103 | BR2_BINUTILS_VERSION_2_25_X. | |
3104 | ||
1326e761 RN |
3105 | config BR2_PACKAGE_PERF |
3106 | bool "perf option has been renamed" | |
3107 | select BR2_LEGACY | |
3108 | select BR2_LINUX_KERNEL_TOOL_PERF | |
3109 | help | |
3110 | The perf package has been moved as a Linux tools package, | |
3111 | and the option to enable it is now | |
3112 | BR2_LINUX_KERNEL_TOOL_PERF. | |
3113 | ||
2f845953 TP |
3114 | config BR2_BINUTILS_VERSION_2_22 |
3115 | bool "binutils 2.22 removed" | |
3116 | select BR2_LEGACY | |
3117 | help | |
3118 | Binutils 2.22 has been removed, using a newer version is | |
3119 | recommended. | |
3120 | ||
4c0613e7 GB |
3121 | config BR2_PACKAGE_GPU_VIV_BIN_MX6Q |
3122 | bool "gpu-viv-bin-mx6q" | |
3123 | select BR2_LEGACY | |
3124 | select BR2_PACKAGE_IMX_GPU_VIV | |
3125 | help | |
3126 | Vivante graphics libraries have been renamed to | |
3127 | BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package | |
3128 | name. | |
3129 | ||
7742abe0 | 3130 | config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS |
7742abe0 | 3131 | bool "libsemanage python bindings removed" |
a1264445 | 3132 | depends on BR2_PACKAGE_PYTHON |
758c5c7f | 3133 | select BR2_LEGACY |
7742abe0 MW |
3134 | help |
3135 | This option has been removed, since the libsemanage Python | |
3136 | bindings on the target were not useful. | |
3137 | ||
16b8e813 GZ |
3138 | config BR2_TARGET_UBOOT_NETWORK |
3139 | bool "U-Boot custom network settings removed" | |
3140 | select BR2_LEGACY | |
3141 | help | |
3142 | U-Boot's custom network settings options have been removed. | |
3143 | ||
120136ee | 3144 | ############################################################################### |
fd0e5f6b | 3145 | comment "Legacy options removed in 2015.05" |
665e13c8 | 3146 | |
e3904a89 ML |
3147 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K |
3148 | bool "jffs2 16kB erasesize NAND flash option renamed" | |
3149 | select BR2_LEGACY | |
3150 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K | |
3151 | help | |
3152 | The JFFS2 NAND flash options now longer include the page | |
3153 | size. | |
3154 | ||
3155 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K | |
3156 | bool "jffs2 128kB erasesize NAND flash option renamed" | |
3157 | select BR2_LEGACY | |
3158 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K | |
3159 | help | |
3160 | The JFFS2 NAND flash options now longer include the page | |
3161 | size. | |
3162 | ||
eff7c144 AC |
3163 | config BR2_PACKAGE_MONO_20 |
3164 | bool "2.0/3.5 .Net Runtime" | |
3165 | select BR2_LEGACY | |
3166 | help | |
3167 | This option no longer exists, all versions of the .Net | |
3168 | runtime are now installed. | |
3169 | ||
3170 | config BR2_PACKAGE_MONO_40 | |
3171 | bool "4.0 .Net Runtime" | |
3172 | select BR2_LEGACY | |
3173 | help | |
3174 | This option no longer exists, all versions of the .Net | |
3175 | runtime are now installed. | |
3176 | ||
3177 | config BR2_PACKAGE_MONO_45 | |
3178 | bool "4.5 .Net Runtime" | |
3179 | select BR2_LEGACY | |
3180 | help | |
3181 | This option no longer exists, all versions of the .Net | |
3182 | runtime are now installed. | |
3183 | ||
efd49e33 PK |
3184 | config BR2_CIVETWEB_WITH_LUA |
3185 | bool "civetweb lua option renamed" | |
3186 | select BR2_LEGACY | |
3187 | select BR2_PACKAGE_CIVETWEB_WITH_LUA | |
3188 | help | |
3189 | civetweb's lua option has been renamed to | |
3190 | BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other | |
3191 | packages name options. | |
3192 | ||
e6c7ad17 BK |
3193 | config BR2_PACKAGE_TIFF_TIFF2PDF |
3194 | bool "tiff utility-specific option removed" | |
3195 | select BR2_LEGACY | |
3196 | select BR2_PACKAGE_TIFF_UTILITIES | |
3197 | help | |
3198 | utility-specific options have been removed in favour of | |
3199 | the new option BR2_PACKAGE_TIFF_UTILITIES. | |
3200 | ||
3201 | config BR2_PACKAGE_TIFF_TIFFCP | |
3202 | bool "tiff utility-specific option removed" | |
3203 | select BR2_LEGACY | |
3204 | select BR2_PACKAGE_TIFF_UTILITIES | |
3205 | help | |
3206 | utility-specific options have been removed in favour of | |
3207 | the new option BR2_PACKAGE_TIFF_UTILITIES. | |
3208 | ||
e7035d4e TP |
3209 | config BR2_LINUX_KERNEL_EXT_RTAI_PATCH |
3210 | bool "RTAI patch file path has been removed" | |
758c5c7f | 3211 | select BR2_LEGACY |
e7035d4e TP |
3212 | help |
3213 | This option has never worked, so it has been removed. | |
3214 | ||
02917961 YM |
3215 | config BR2_TARGET_GENERIC_PASSWD_DES |
3216 | bool "Encoding passwords with DES has been removed" | |
3217 | select BR2_LEGACY | |
3218 | help | |
d6109172 RM |
3219 | Paswords can now only be encoded with either of md5, sha256 or |
3220 | sha512. The default is md5, which is stronger that DES (but | |
3221 | still pretty weak). | |
02917961 | 3222 | |
0d31b5e4 GZ |
3223 | config BR2_PACKAGE_GTK2_THEME_HICOLOR |
3224 | bool "hicolor (default theme) is a duplicate" | |
3225 | select BR2_LEGACY | |
3226 | select BR2_PACKAGE_HICOLOR_ICON_THEME | |
3227 | help | |
3228 | The option was just a duplicate of hicolor icon theme. | |
3229 | ||
fd0e5f6b MW |
3230 | config BR2_PACKAGE_VALGRIND_PTRCHECK |
3231 | bool "valgrind's PTRCheck was renamed to SGCheck" | |
3232 | select BR2_LEGACY | |
3233 | select BR2_PACKAGE_VALGRIND_SGCHECK | |
3234 | help | |
3235 | PTRCheck was renamed to SGCheck in valgrind | |
3236 | ||
3237 | ############################################################################### | |
665e13c8 TP |
3238 | comment "Legacy options removed in 2015.02" |
3239 | ||
10900c07 PA |
3240 | config BR2_PACKAGE_LIBGC |
3241 | bool "libgc package removed" | |
3242 | select BR2_LEGACY | |
3243 | select BR2_PACKAGE_BDWGC | |
3244 | help | |
d6109172 RM |
3245 | libgc has been removed because we have the same package under |
3246 | a different name, bdwgc. | |
10900c07 | 3247 | |
8d702aca YM |
3248 | config BR2_PACKAGE_WDCTL |
3249 | bool "util-linux' wdctl option has been renamed" | |
3250 | select BR2_LEGACY | |
3251 | select BR2_PACKAGE_UTIL_LINUX_WDCTL | |
3252 | help | |
d6109172 RM |
3253 | util-linux' wdctl option has been renamed to |
3254 | BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other | |
3255 | options are named. | |
8d702aca | 3256 | |
e44edb82 DM |
3257 | config BR2_PACKAGE_UTIL_LINUX_ARCH |
3258 | bool "util-linux' arch option has been removed" | |
3259 | select BR2_LEGACY | |
3260 | help | |
3261 | util-linux' arch was dropped in util-linux 2.23, in favor of | |
3262 | the coreutils version. | |
3263 | ||
3264 | config BR2_PACKAGE_UTIL_LINUX_DDATE | |
3265 | bool "util-linux' ddate option has been removed" | |
3266 | select BR2_LEGACY | |
3267 | help | |
3268 | util-linux' ddate was dropped in util-linux 2.23. | |
3269 | ||
3c476540 RN |
3270 | config BR2_PACKAGE_RPM_BZIP2_PAYLOADS |
3271 | bool "rpm's bzip2 payloads option has been removed" | |
3272 | select BR2_LEGACY | |
3273 | select BR2_PACKAGE_BZIP2 | |
3274 | help | |
d6109172 RM |
3275 | The bzip2 payloads option rely entirely on the dependant |
3276 | package bzip2. So, you need to select it to enable this | |
3277 | feature. | |
3c476540 RN |
3278 | |
3279 | config BR2_PACKAGE_RPM_XZ_PAYLOADS | |
3280 | bool "rpm's xz payloads option has been removed" | |
3281 | select BR2_LEGACY | |
3282 | select BR2_PACKAGE_XZ | |
3283 | help | |
d6109172 RM |
3284 | The xz payloads option rely entirely on the dependant package |
3285 | xz. So, you need to select it to enable this feature. | |
3c476540 | 3286 | |
6927bc91 GZ |
3287 | config BR2_PACKAGE_M4 |
3288 | bool "m4 target package removed" | |
3289 | select BR2_LEGACY | |
3290 | help | |
3291 | The m4 target package has been removed, it's been | |
3292 | deprecated for some time now. | |
3293 | ||
aa6ea7ab GZ |
3294 | config BR2_PACKAGE_FLEX_BINARY |
3295 | bool "flex binary in target option removed" | |
3296 | select BR2_LEGACY | |
3297 | help | |
3298 | The flex binary in the target option has been removed. | |
3299 | It's been deprecated for some time now and is essentially a | |
3300 | development tool which isn't very useful in the target. | |
3301 | ||
38dabc6e GZ |
3302 | config BR2_PACKAGE_BISON |
3303 | bool "bison target package removed" | |
3304 | select BR2_LEGACY | |
3305 | help | |
3306 | The bison target package has been removed, it's been | |
3307 | deprecated for some time now and is essentially a development | |
3308 | tool which isn't very useful in the target. | |
3309 | ||
7f9d4441 GZ |
3310 | config BR2_PACKAGE_GOB2 |
3311 | bool "gob2 target package removed" | |
3312 | select BR2_LEGACY | |
3313 | help | |
3314 | The gob2 target package has been removed, it's been | |
3315 | deprecated for some time now and was essentially useless | |
3316 | without a target toolchain. | |
3317 | ||
c2e3d0be GZ |
3318 | config BR2_PACKAGE_DISTCC |
3319 | bool "distcc target package removed" | |
3320 | select BR2_LEGACY | |
3321 | help | |
3322 | The distcc target package has been removed, it's been | |
3323 | deprecated for some time now and was essentially useless | |
3324 | without a target toolchain. | |
3325 | ||
b64cde60 GZ |
3326 | config BR2_PACKAGE_HASERL_VERSION_0_8_X |
3327 | bool "haserl 0.8.x version removed" | |
3328 | select BR2_LEGACY | |
3329 | help | |
3330 | The 0.8.x version option for haserl has been removed since it | |
3331 | has been deprecated for some time now. | |
3332 | You should be able to use the 0.9.x version without issues. | |
3333 | ||
0120d9f3 GZ |
3334 | config BR2_PACKAGE_STRONGSWAN_TOOLS |
3335 | bool "strongswan option has been removed" | |
3336 | select BR2_LEGACY | |
3337 | select BR2_PACKAGE_STRONGSWAN_PKI | |
3338 | select BR2_PACKAGE_STRONGSWAN_SCEP | |
3339 | help | |
d6109172 RM |
3340 | The tools option has been removed upstream and the different |
3341 | tools have been split between the pki and scep options, with | |
3342 | others deprecated. | |
0120d9f3 | 3343 | |
db78eb07 | 3344 | config BR2_PACKAGE_XBMC_ADDON_XVDR |
1c2a63ad | 3345 | bool "xbmc-addon-xvdr removed" |
db78eb07 | 3346 | select BR2_LEGACY |
db78eb07 | 3347 | help |
1c2a63ad AV |
3348 | According to the github project page: |
3349 | https://github.com/pipelka/xbmc-addon-xvdr | |
3350 | this package is discontinued. | |
db78eb07 | 3351 | |
b3df2a35 BK |
3352 | config BR2_PACKAGE_XBMC_PVR_ADDONS |
3353 | bool "xbmc options have been renamed" | |
3354 | select BR2_LEGACY | |
3355 | select BR2_PACKAGE_KODI_PVR_ADDONS | |
3356 | help | |
d6109172 RM |
3357 | The XBMC media center project was renamed to Kodi |
3358 | entertainment center | |
b3df2a35 | 3359 | |
35784597 BK |
3360 | config BR2_PACKAGE_XBMC |
3361 | bool "xbmc options have been renamed" | |
3362 | select BR2_LEGACY | |
3363 | select BR2_PACKAGE_KODI | |
3364 | help | |
d6109172 RM |
3365 | The XBMC media center project was renamed to Kodi |
3366 | entertainment center | |
35784597 BK |
3367 | |
3368 | config BR2_PACKAGE_XBMC_ALSA_LIB | |
3369 | bool "xbmc options have been renamed" | |
3370 | select BR2_LEGACY | |
3371 | select BR2_PACKAGE_KODI_ALSA_LIB | |
3372 | help | |
d6109172 RM |
3373 | The XBMC media center project was renamed to Kodi |
3374 | entertainment center | |
35784597 BK |
3375 | |
3376 | config BR2_PACKAGE_XBMC_AVAHI | |
3377 | bool "xbmc options have been renamed" | |
3378 | select BR2_LEGACY | |
3379 | select BR2_PACKAGE_KODI_AVAHI | |
3380 | help | |
d6109172 RM |
3381 | The XBMC media center project was renamed to Kodi |
3382 | entertainment center | |
35784597 BK |
3383 | |
3384 | config BR2_PACKAGE_XBMC_DBUS | |
3385 | bool "xbmc options have been renamed" | |
3386 | select BR2_LEGACY | |
3387 | select BR2_PACKAGE_KODI_DBUS | |
3388 | help | |
d6109172 RM |
3389 | The XBMC media center project was renamed to Kodi |
3390 | entertainment center | |
35784597 BK |
3391 | |
3392 | config BR2_PACKAGE_XBMC_LIBBLURAY | |
3393 | bool "xbmc options have been renamed" | |
3394 | select BR2_LEGACY | |
3395 | select BR2_PACKAGE_KODI_LIBBLURAY | |
3396 | help | |
d6109172 RM |
3397 | The XBMC media center project was renamed to Kodi |
3398 | entertainment center | |
35784597 BK |
3399 | |
3400 | config BR2_PACKAGE_XBMC_GOOM | |
3401 | bool "xbmc options have been renamed" | |
3402 | select BR2_LEGACY | |
3403 | select BR2_PACKAGE_KODI_GOOM | |
3404 | help | |
d6109172 RM |
3405 | The XBMC media center project was renamed to Kodi |
3406 | entertainment center | |
35784597 BK |
3407 | |
3408 | config BR2_PACKAGE_XBMC_RSXS | |
3409 | bool "xbmc options have been renamed" | |
3410 | select BR2_LEGACY | |
3411 | select BR2_PACKAGE_KODI_RSXS | |
3412 | help | |
d6109172 RM |
3413 | The XBMC media center project was renamed to Kodi |
3414 | entertainment center | |
35784597 BK |
3415 | |
3416 | config BR2_PACKAGE_XBMC_LIBCEC | |
3417 | bool "xbmc options have been renamed" | |
3418 | select BR2_LEGACY | |
3419 | select BR2_PACKAGE_KODI_LIBCEC | |
3420 | help | |
d6109172 RM |
3421 | The XBMC media center project was renamed to Kodi |
3422 | entertainment center | |
35784597 BK |
3423 | |
3424 | config BR2_PACKAGE_XBMC_LIBMICROHTTPD | |
3425 | bool "xbmc options have been renamed" | |
3426 | select BR2_LEGACY | |
3427 | select BR2_PACKAGE_KODI_LIBMICROHTTPD | |
3428 | help | |
d6109172 RM |
3429 | The XBMC media center project was renamed to Kodi |
3430 | entertainment center | |
35784597 BK |
3431 | |
3432 | config BR2_PACKAGE_XBMC_LIBNFS | |
3433 | bool "xbmc options have been renamed" | |
3434 | select BR2_LEGACY | |
3435 | select BR2_PACKAGE_KODI_LIBNFS | |
3436 | help | |
d6109172 RM |
3437 | The XBMC media center project was renamed to Kodi |
3438 | entertainment center | |
35784597 BK |
3439 | |
3440 | config BR2_PACKAGE_XBMC_RTMPDUMP | |
3441 | bool "xbmc options have been renamed" | |
3442 | select BR2_LEGACY | |
3443 | select BR2_PACKAGE_KODI_RTMPDUMP | |
3444 | help | |
d6109172 RM |
3445 | The XBMC media center project was renamed to Kodi |
3446 | entertainment center | |
35784597 BK |
3447 | |
3448 | config BR2_PACKAGE_XBMC_LIBSHAIRPLAY | |
3449 | bool "xbmc options have been renamed" | |
3450 | select BR2_LEGACY | |
3451 | select BR2_PACKAGE_KODI_LIBSHAIRPLAY | |
3452 | help | |
d6109172 RM |
3453 | The XBMC media center project was renamed to Kodi |
3454 | entertainment center | |
35784597 BK |
3455 | |
3456 | config BR2_PACKAGE_XBMC_LIBSMBCLIENT | |
3457 | bool "xbmc options have been renamed" | |
3458 | select BR2_LEGACY | |
3459 | select BR2_PACKAGE_KODI_LIBSMBCLIENT | |
3460 | help | |
d6109172 RM |
3461 | The XBMC media center project was renamed to Kodi |
3462 | entertainment center | |
35784597 BK |
3463 | |
3464 | config BR2_PACKAGE_XBMC_LIBTHEORA | |
3465 | bool "xbmc options have been renamed" | |
3466 | select BR2_LEGACY | |
3467 | select BR2_PACKAGE_KODI_LIBTHEORA | |
3468 | help | |
d6109172 RM |
3469 | The XBMC media center project was renamed to Kodi |
3470 | entertainment center | |
35784597 BK |
3471 | |
3472 | config BR2_PACKAGE_XBMC_LIBUSB | |
3473 | bool "xbmc options have been renamed" | |
3474 | select BR2_LEGACY | |
3475 | select BR2_PACKAGE_KODI_LIBUSB | |
3476 | help | |
d6109172 RM |
3477 | The XBMC media center project was renamed to Kodi |
3478 | entertainment center | |
35784597 BK |
3479 | |
3480 | config BR2_PACKAGE_XBMC_LIBVA | |
3481 | bool "xbmc options have been renamed" | |
3482 | select BR2_LEGACY | |
3483 | select BR2_PACKAGE_KODI_LIBVA | |
3484 | help | |
d6109172 RM |
3485 | The XBMC media center project was renamed to Kodi |
3486 | entertainment center | |
35784597 BK |
3487 | |
3488 | config BR2_PACKAGE_XBMC_WAVPACK | |
3489 | bool "xbmc options have been renamed" | |
3490 | select BR2_LEGACY | |
3491 | select BR2_PACKAGE_KODI_WAVPACK | |
3492 | help | |
d6109172 RM |
3493 | The XBMC media center project was renamed to Kodi |
3494 | entertainment center | |
35784597 | 3495 | |
665e13c8 TP |
3496 | config BR2_PREFER_STATIC_LIB |
3497 | bool "static library option renamed" | |
a44b1c14 | 3498 | select BR2_LEGACY |
665e13c8 TP |
3499 | help |
3500 | The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It | |
3501 | highlights the fact that the option no longer "prefers" | |
3502 | static libraries, but "enforces" static libraries (i.e | |
3503 | shared libraries are completely unused). | |
3504 | ||
a44b1c14 SM |
3505 | Take care of updating the type of libraries you want under the |
3506 | "Build options" menu. | |
3507 | ||
35784597 | 3508 | ############################################################################### |
120136ee YM |
3509 | comment "Legacy options removed in 2014.11" |
3510 | ||
a52bad85 PK |
3511 | config BR2_x86_generic |
3512 | bool "x86 generic variant has been removed" | |
3513 | select BR2_LEGACY | |
3514 | help | |
3515 | The generic x86 CPU variant has been removed. Use another | |
a95e98c0 | 3516 | CPU variant instead. |
a52bad85 | 3517 | |
40e18f29 AL |
3518 | config BR2_GCC_VERSION_4_4_X |
3519 | bool "gcc 4.4.x has been removed" | |
3520 | select BR2_LEGACY | |
3521 | help | |
3522 | The 4.4.x version of gcc has been removed. Use a newer | |
3523 | version instead. | |
3524 | ||
43b78e72 AL |
3525 | config BR2_sparc_sparchfleon |
3526 | bool "sparchfleon CPU has been removed" | |
3527 | select BR2_LEGACY | |
3528 | help | |
3529 | The sparchfleon CPU was only supported in a patched gcc 4.4 | |
3530 | version. Its support has been removed in favor of the leon3 | |
3531 | CPU starting from gcc 4.8.x. | |
3532 | ||
3533 | config BR2_sparc_sparchfleonv8 | |
3534 | bool "sparchfleonv8 CPU has been removed" | |
3535 | select BR2_LEGACY | |
3536 | help | |
3537 | The sparchfleonv8 CPU was only supported in a patched gcc | |
3538 | 4.4 version. Its support has been removed in favor of the | |
3539 | leon3 CPU starting from gcc 4.8.x. | |
3540 | ||
3541 | config BR2_sparc_sparcsfleon | |
3542 | bool "sparcsfleon CPU has been removed" | |
3543 | select BR2_LEGACY | |
3544 | help | |
3545 | The sparcsfleon CPU was only supported in a patched gcc 4.4 | |
3546 | version. Its support has been removed in favor of the leon3 | |
3547 | CPU starting from gcc 4.8.x. | |
3548 | ||
3549 | config BR2_sparc_sparcsfleonv8 | |
3550 | bool "sparcsfleonv8 CPU has been removed" | |
3551 | select BR2_LEGACY | |
3552 | help | |
3553 | The sparcsfleonv8 CPU was only supported in a patched gcc | |
3554 | 4.4 version. Its support has been removed in favor of the | |
3555 | leon3 CPU starting from gcc 4.8.x. | |
3556 | ||
bfd87877 BK |
3557 | config BR2_PACKAGE_XLIB_LIBPCIACCESS |
3558 | bool "xlib-libpciaccess option has been renamed" | |
3559 | depends on BR2_PACKAGE_XORG7 | |
3560 | select BR2_LEGACY | |
3561 | select BR2_PACKAGE_LIBPCIACCESS | |
3562 | help | |
3563 | libpciaccess neither depends on X11 nor Xlib. Thus the | |
3564 | package has been renamed BR2_PACKAGE_LIBPCIACCESS | |
3565 | ||
b581bba9 YM |
3566 | config BR2_PACKAGE_LINUX_FIRMWARE_XC5000 |
3567 | bool "Xceive xc5000 option has been renamed" | |
758c5c7f | 3568 | select BR2_LEGACY |
b581bba9 YM |
3569 | select BR2_PACKAGE_LINUX_FIRMWARE_XCx000 |
3570 | help | |
3571 | The Xceive xc5000 option now also handles older firmwares from | |
d6109172 RM |
3572 | Xceive (the xc4000 series), as well as new firmwares (the |
3573 | xc5000c) from Cresta, who bought Xceive. | |
b581bba9 | 3574 | |
dac546e9 YM |
3575 | config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 |
3576 | bool "Chelsio T4 option has been renamed" | |
758c5c7f | 3577 | select BR2_LEGACY |
dac546e9 YM |
3578 | select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 |
3579 | help | |
3580 | The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 | |
3581 | has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 | |
3582 | to better account for the fact that a T5 variant exists. | |
3583 | ||
120136ee YM |
3584 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 |
3585 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed" | |
758c5c7f | 3586 | select BR2_LEGACY |
120136ee YM |
3587 | help |
3588 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was | |
3589 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must | |
3590 | select it in: | |
3591 | Target packages -> Hardware handling -> | |
3592 | Firmware -> linux-firmware -> WiFi firmware -> | |
3593 | iwlwifi 3160/726x revision to use (revision 7) | |
3594 | ||
3595 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 | |
3596 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed" | |
758c5c7f | 3597 | select BR2_LEGACY |
120136ee YM |
3598 | help |
3599 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was | |
3600 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must | |
3601 | select it in: | |
3602 | Target packages -> Hardware handling -> | |
3603 | Firmware -> linux-firmware -> WiFi firmware -> | |
3604 | iwlwifi 3160/726x revision to use (revision 8) | |
3605 | ||
5cd1c4fe YM |
3606 | ############################################################################### |
3607 | comment "Legacy options removed in 2014.08" | |
3608 | ||
52fac6a2 GC |
3609 | config BR2_PACKAGE_LIBELF |
3610 | bool "libelf has been removed" | |
3611 | select BR2_PACKAGE_ELFUTILS | |
3612 | select BR2_LEGACY | |
3613 | help | |
d6109172 RM |
3614 | The libelf package provided an old version of the libelf |
3615 | library and is deprecated. The libelf library is now provided | |
3616 | by the elfutils package. | |
52fac6a2 | 3617 | |
dfae6f67 TDS |
3618 | config BR2_KERNEL_HEADERS_3_8 |
3619 | bool "kernel headers version 3.8.x are no longer supported" | |
dfae6f67 TDS |
3620 | select BR2_LEGACY |
3621 | help | |
3622 | Version 3.8.x of the Linux kernel headers have been deprecated | |
3623 | for more than four buildroot releases and are now removed. | |
dfae6f67 | 3624 | |
187b4d68 TP |
3625 | config BR2_PACKAGE_GETTEXT_TOOLS |
3626 | bool "support for gettext-tools on target has been removed" | |
3627 | select BR2_LEGACY | |
3628 | help | |
3629 | The option to install the gettext utilities on the target | |
3630 | has been removed. This is not necessary as Buildroot is not | |
3631 | designed to provide a full development environment on the | |
3632 | target. gettext tools should be used on the build machine | |
3633 | instead. | |
3634 | ||
5cd1c4fe YM |
3635 | config BR2_PACKAGE_PROCPS |
3636 | bool "procps has been replaced by procps-ng" | |
3637 | select BR2_PACKAGE_PROCPS_NG | |
3638 | select BR2_LEGACY | |
3639 | help | |
d6109172 RM |
3640 | The procps package has been replaced by the equivalent |
3641 | procps-ng. | |
5cd1c4fe | 3642 | |
d4839ffc TP |
3643 | config BR2_BINUTILS_VERSION_2_20_1 |
3644 | bool "binutils 2.20.1 has been removed" | |
3645 | select BR2_LEGACY | |
3646 | help | |
3647 | The 2.20.1 version of binutils has been removed. Use a newer | |
3648 | version instead. | |
3649 | ||
3650 | config BR2_BINUTILS_VERSION_2_21 | |
3651 | bool "binutils 2.21 has been removed" | |
3652 | select BR2_LEGACY | |
3653 | help | |
3654 | The 2.21 version of binutils has been removed. Use a newer | |
3655 | version instead. | |
3656 | ||
3657 | config BR2_BINUTILS_VERSION_2_23_1 | |
3658 | bool "binutils 2.23.1 has been removed" | |
3659 | select BR2_LEGACY | |
3660 | help | |
3661 | The 2.23.1 version of binutils has been removed. Use a newer | |
3662 | version instead. | |
3663 | ||
506b964d TP |
3664 | config BR2_UCLIBC_VERSION_0_9_32 |
3665 | bool "uclibc 0.9.32 has been removed" | |
3666 | select BR2_LEGACY | |
3667 | help | |
3668 | The 0.9.32 version of uClibc has been removed. Use a newer | |
3669 | version instead. | |
3670 | ||
d10e0805 TP |
3671 | config BR2_GCC_VERSION_4_3_X |
3672 | bool "gcc 4.3.x has been removed" | |
3673 | select BR2_LEGACY | |
3674 | help | |
3675 | The 4.3.x version of gcc has been removed. Use a newer | |
3676 | version instead. | |
3677 | ||
3678 | config BR2_GCC_VERSION_4_6_X | |
3679 | bool "gcc 4.6.x has been removed" | |
3680 | select BR2_LEGACY | |
3681 | help | |
3682 | The 4.6.x version of gcc has been removed. Use a newer | |
3683 | version instead. | |
3684 | ||
02d85f65 TP |
3685 | config BR2_GDB_VERSION_7_4 |
3686 | bool "gdb 7.4 has been removed" | |
3687 | select BR2_LEGACY | |
3688 | help | |
3689 | The 7.4 version of gdb has been removed. Use a newer version | |
3690 | instead. | |
3691 | ||
3692 | config BR2_GDB_VERSION_7_5 | |
3693 | bool "gdb 7.5 has been removed" | |
3694 | select BR2_LEGACY | |
3695 | help | |
3696 | The 7.5 version of gdb has been removed. Use a newer version | |
3697 | instead. | |
3698 | ||
b18dca0d TP |
3699 | config BR2_BUSYBOX_VERSION_1_19_X |
3700 | bool "busybox version selection has been removed" | |
3701 | select BR2_LEGACY | |
3702 | help | |
3703 | The possibility of selecting the Busybox version has been | |
3704 | removed. Use the latest version provided by the Busybox | |
3705 | package instead. | |
3706 | ||
3707 | config BR2_BUSYBOX_VERSION_1_20_X | |
3708 | bool "busybox version selection has been removed" | |
3709 | select BR2_LEGACY | |
3710 | help | |
3711 | The possibility of selecting the Busybox version has been | |
3712 | removed. Use the latest version provided by the Busybox | |
3713 | package instead. | |
3714 | ||
3715 | config BR2_BUSYBOX_VERSION_1_21_X | |
3716 | bool "busybox version selection has been removed" | |
3717 | select BR2_LEGACY | |
3718 | help | |
3719 | The possibility of selecting the Busybox version has been | |
3720 | removed. Use the latest version provided by the Busybox | |
3721 | package instead. | |
3722 | ||
07ac0456 EG |
3723 | config BR2_PACKAGE_LIBV4L_DECODE_TM6000 |
3724 | bool "decode_tm6000" | |
3725 | select BR2_PACKAGE_LIBV4L_UTILS | |
3726 | select BR2_LEGACY | |
3727 | help | |
d6109172 RM |
3728 | This libv4l option has been deprecated and replaced by a |
3729 | single option to build all the libv4l utilities. | |
07ac0456 EG |
3730 | |
3731 | config BR2_PACKAGE_LIBV4L_IR_KEYTABLE | |
3732 | bool "ir-keytable" | |
3733 | select BR2_PACKAGE_LIBV4L_UTILS | |
3734 | select BR2_LEGACY | |
3735 | help | |
d6109172 RM |
3736 | This libv4l option has been deprecated and replaced by a |
3737 | single option to build all the libv4l utilities. | |
07ac0456 EG |
3738 | |
3739 | config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE | |
3740 | bool "v4l2-compliance" | |
3741 | select BR2_PACKAGE_LIBV4L_UTILS | |
3742 | select BR2_LEGACY | |
3743 | help | |
d6109172 RM |
3744 | This libv4l option has been deprecated and replaced by a |
3745 | single option to build all the libv4l utilities. | |
07ac0456 EG |
3746 | |
3747 | config BR2_PACKAGE_LIBV4L_V4L2_CTL | |
3748 | bool "v4l2-ctl" | |
3749 | select BR2_PACKAGE_LIBV4L_UTILS | |
3750 | select BR2_LEGACY | |
3751 | help | |
d6109172 RM |
3752 | This libv4l option has been deprecated and replaced by a |
3753 | single option to build all the libv4l utilities. | |
07ac0456 EG |
3754 | |
3755 | config BR2_PACKAGE_LIBV4L_V4L2_DBG | |
3756 | bool "v4l2-dbg" | |
3757 | select BR2_PACKAGE_LIBV4L_UTILS | |
3758 | select BR2_LEGACY | |
3759 | help | |
d6109172 RM |
3760 | This libv4l option has been deprecated and replaced by a |
3761 | single option to build all the libv4l utilities. | |
07ac0456 | 3762 | |
fabcb119 | 3763 | ############################################################################### |
3764 | comment "Legacy options removed in 2014.05" | |
3765 | ||
4990a381 PS |
3766 | config BR2_PACKAGE_EVTEST_CAPTURE |
3767 | bool "evtest-capture support removed (dropped since evtest 1.31)" | |
3768 | select BR2_LEGACY | |
3769 | help | |
3770 | Support for evtest-capture has been removed (dropped from | |
3771 | evtest package since version 1.31), use evemu package | |
3772 | instead. | |
3773 | ||
47c2d1b4 TDS |
3774 | config BR2_KERNEL_HEADERS_3_6 |
3775 | bool "kernel headers version 3.6.x are no longer supported" | |
47c2d1b4 TDS |
3776 | select BR2_LEGACY |
3777 | help | |
3778 | Version 3.6.x of the Linux kernel headers have been deprecated | |
3779 | for more than four buildroot releases and are now removed. | |
47c2d1b4 TDS |
3780 | |
3781 | config BR2_KERNEL_HEADERS_3_7 | |
3782 | bool "kernel headers version 3.7.x are no longer supported" | |
47c2d1b4 TDS |
3783 | select BR2_LEGACY |
3784 | help | |
3785 | Version 3.7.x of the Linux kernel headers have been deprecated | |
3786 | for more than four buildroot releases and are now removed. | |
47c2d1b4 | 3787 | |
947ca9e1 TDS |
3788 | config BR2_PACKAGE_VALA |
3789 | bool "vala target package has been removed" | |
3790 | select BR2_LEGACY | |
3791 | help | |
3792 | The 'vala' target package has been removed since it has been | |
3793 | deprecated for more than four buildroot releases. | |
3794 | Note: the host vala package still exists. | |
3795 | ||
d6a37917 YM |
3796 | config BR2_TARGET_TZ_ZONELIST |
3797 | default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != "" | |
3798 | ||
3799 | config BR2_PACKAGE_TZDATA_ZONELIST | |
3800 | string "tzdata: the timezone list option has been renamed" | |
3801 | help | |
3802 | The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to | |
d6109172 RM |
3803 | BR2_TARGET_TZ_ZONELIST, and moved to the "System |
3804 | configuration" menu. You'll need to select BR2_TARGET_TZ_INFO. | |
d6a37917 YM |
3805 | |
3806 | config BR2_PACKAGE_TZDATA_ZONELIST_WRAP | |
3807 | bool | |
3808 | default y if BR2_PACKAGE_TZDATA_ZONELIST != "" | |
3809 | select BR2_LEGACY | |
3810 | ||
c97aeb7e YM |
3811 | config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE |
3812 | bool "Lua command-line editing none has been renamed" | |
3813 | select BR2_LEGACY | |
3814 | help | |
3815 | The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been | |
d6109172 RM |
3816 | renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to |
3817 | select it in the corresponding choice. | |
c97aeb7e YM |
3818 | |
3819 | config BR2_PACKAGE_LUA_INTERPRETER_READLINE | |
3820 | bool "Lua command-line editing using readline has been renamed" | |
3821 | select BR2_LEGACY | |
3822 | help | |
3823 | The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been | |
3824 | renamed to BR2_PACKAGE_LUA_READLINE. You will have to select | |
3825 | it in the corresponding choice. | |
3826 | ||
3827 | config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE | |
3828 | bool "Lua command-line editing using linenoise has been renamed" | |
3829 | select BR2_LEGACY | |
3830 | help | |
3831 | The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been | |
3832 | renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select | |
3833 | it in the corresponding choice. | |
3834 | ||
365ae61c YM |
3835 | config BR2_PACKAGE_DVB_APPS_UTILS |
3836 | bool "dvb-apps utilities now built by default" | |
3837 | select BR2_LEGACY | |
3838 | help | |
3839 | The dvb-apps utilities are now always built when the dvb-apps | |
3840 | package is selected. | |
3841 | ||
971e331c YM |
3842 | config BR2_KERNEL_HEADERS_SNAP |
3843 | bool "Local Linux snapshot support removed" | |
3844 | select BR2_LEGACY | |
3845 | help | |
3846 | Support for using a custom snapshot to install the Linux | |
3847 | kernel headers has been removed. | |
3848 | ||
fabcb119 | 3849 | config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV |
3850 | bool "/dev management by udev removed" | |
3851 | select BR2_LEGACY | |
3852 | help | |
3853 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 3854 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 3855 | |
2c66e442 | 3856 | Therefore, if you are not using 'systemd' as init system, you |
3857 | must choose 'Dynamic using eudev' in the '/dev management' | |
3858 | menu to get the same behaviour as in your old configuration. | |
3859 | ||
3860 | If you are using 'systemd', its internal implementation of | |
3861 | 'udev' will be used automatically. | |
fabcb119 | 3862 | |
3863 | You must also check the packages depending on 'udev' are still | |
3864 | selected. | |
3865 | ||
3866 | config BR2_PACKAGE_UDEV | |
3867 | bool "udev is now a virtual package" | |
3868 | select BR2_LEGACY | |
3869 | select BR2_PACKAGE_HAS_UDEV | |
3870 | help | |
3871 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 3872 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 3873 | |
3874 | Your old configuration refers to packages depending on 'udev', | |
3875 | either for build or at runtime. | |
3876 | ||
2c66e442 | 3877 | Check that a 'udev' provider is selected. If you are not using |
3878 | 'systemd' as init system, 'eudev' should be selected, which is | |
3879 | the case if '/dev management' is set to 'Dynamic using eudev'. | |
3880 | ||
d6109172 RM |
3881 | If you are using 'systemd', its internal implementation of |
3882 | 'udev' is used. | |
fabcb119 | 3883 | |
3884 | config BR2_PACKAGE_UDEV_RULES_GEN | |
2c66e442 | 3885 | bool "udev rules generation handled by provider" |
fabcb119 | 3886 | select BR2_LEGACY |
2c66e442 | 3887 | select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD |
3888 | select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD | |
fabcb119 | 3889 | help |
3890 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 3891 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 3892 | |
2c66e442 | 3893 | If you are not using 'systemd' as init system, udev rules |
3894 | generation will be handled by 'eudev'. Check that | |
3895 | '/dev management' is set to 'Dynamic using eudev' to get | |
3896 | the same behaviour as in your old configuration. | |
fabcb119 | 3897 | |
d6109172 RM |
3898 | If you are using 'systemd', it internal implementation of |
3899 | 'udev' will generate the rules. | |
fabcb119 | 3900 | |
3901 | config BR2_PACKAGE_UDEV_ALL_EXTRAS | |
3902 | bool "udev extras removed" | |
3903 | select BR2_LEGACY | |
3904 | help | |
3905 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 3906 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 3907 | |
3908 | The option to enable the extra features of 'udev' (gudev, ...) | |
3909 | has been removed. These features are automatically enabled in | |
3910 | the 'udev' providers if the dependencies are selected. For | |
3911 | example, selecting 'libglib2' will trigger the build of gudev. | |
3912 | ||
5562be13 BK |
3913 | config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS |
3914 | bool "xlib-libpthread-stubs option has been renamed" | |
3915 | depends on BR2_PACKAGE_XORG7 | |
3916 | select BR2_LEGACY | |
3917 | select BR2_PACKAGE_LIBPTHREAD_STUBS | |
3918 | help | |
3919 | The pthread stubs neither depend on X11 nor Xlib. Thus the | |
3920 | package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS | |
3921 | ||
8b2e2357 | 3922 | ############################################################################### |
f169e5e1 YM |
3923 | comment "Legacy options removed in 2014.02" |
3924 | ||
e543f5a1 TP |
3925 | config BR2_sh2 |
3926 | bool "sh2 support removed" | |
758c5c7f | 3927 | select BR2_LEGACY |
e543f5a1 TP |
3928 | help |
3929 | Due to an inexistent user base and generally poor Linux | |
3930 | support, the support for the SH2 architecture was removed. | |
3931 | ||
3932 | config BR2_sh3 | |
3933 | bool "sh3 support removed" | |
758c5c7f | 3934 | select BR2_LEGACY |
e543f5a1 TP |
3935 | help |
3936 | Due to an inexistent user base and generally poor Linux | |
3937 | support, the support for the SH3 architecture was removed. | |
3938 | ||
3939 | config BR2_sh3eb | |
3940 | bool "sh3eb support removed" | |
758c5c7f | 3941 | select BR2_LEGACY |
e543f5a1 TP |
3942 | help |
3943 | Due to an inexistent user base and generally poor Linux | |
3944 | support, the support for the SH3eb architecture was removed. | |
3945 | ||
334dca61 TDS |
3946 | config BR2_KERNEL_HEADERS_3_1 |
3947 | bool "kernel headers version 3.1.x are no longer supported" | |
334dca61 TDS |
3948 | select BR2_LEGACY |
3949 | help | |
3950 | Version 3.1.x of the Linux kernel headers have been deprecated | |
3951 | for more than four buildroot releases and are now removed. | |
334dca61 TDS |
3952 | |
3953 | config BR2_KERNEL_HEADERS_3_3 | |
3954 | bool "kernel headers version 3.3.x are no longer supported" | |
334dca61 TDS |
3955 | select BR2_LEGACY |
3956 | help | |
3957 | Version 3.3.x of the Linux kernel headers have been deprecated | |
3958 | for more than four buildroot releases and are now removed. | |
334dca61 TDS |
3959 | |
3960 | config BR2_KERNEL_HEADERS_3_5 | |
3961 | bool "kernel headers version 3.5.x are no longer supported" | |
334dca61 TDS |
3962 | select BR2_LEGACY |
3963 | help | |
3964 | Version 3.5.x of the Linux kernel headers have been deprecated | |
3965 | for more than four buildroot releases and are now removed. | |
334dca61 | 3966 | |
348060f9 TDS |
3967 | config BR2_GDB_VERSION_7_2 |
3968 | bool "gdb 7.2.x is no longer supported" | |
02d85f65 | 3969 | select BR2_GDB_VERSION_7_6 |
348060f9 TDS |
3970 | select BR2_LEGACY |
3971 | help | |
3972 | Version 7.2.x of gdb has been deprecated for more than four | |
3973 | buildroot releases and is now removed. As an alternative, gdb | |
3974 | 7.5.x has been automatically selected in your configuration. | |
3975 | ||
3976 | config BR2_GDB_VERSION_7_3 | |
3977 | bool "gdb 7.3.x is no longer supported" | |
02d85f65 | 3978 | select BR2_GDB_VERSION_7_6 |
348060f9 TDS |
3979 | select BR2_LEGACY |
3980 | help | |
3981 | Version 7.3.x of gdb has been deprecated for more than four | |
3982 | buildroot releases and is now removed. As an alternative, gdb | |
3983 | 7.5.x has been automatically selected in your configuration. | |
3984 | ||
831624c4 TDS |
3985 | config BR2_PACKAGE_CCACHE |
3986 | bool "ccache target package has been removed" | |
3987 | select BR2_LEGACY | |
3988 | help | |
3989 | The 'ccache' target package has been removed since it has been | |
3990 | deprecated for more than four buildroot releases. | |
3991 | Note: using ccache for speeding up builds is still supported. | |
3992 | ||
7164a326 TDS |
3993 | config BR2_HAVE_DOCUMENTATION |
3994 | bool "support for documentation on target has been removed" | |
3995 | select BR2_LEGACY | |
3996 | help | |
d6109172 RM |
3997 | Support for documentation on target has been removed since it |
3998 | has been deprecated for more than four buildroot releases. | |
7164a326 | 3999 | |
f75245d9 TDS |
4000 | config BR2_PACKAGE_AUTOMAKE |
4001 | bool "automake target package has been removed" | |
4002 | select BR2_LEGACY | |
4003 | help | |
d6109172 RM |
4004 | The 'automake' target package has been removed since it has |
4005 | been deprecated for more than four buildroot releases. | |
f75245d9 TDS |
4006 | Note: the host automake still exists. |
4007 | ||
e7af2ac6 TDS |
4008 | config BR2_PACKAGE_AUTOCONF |
4009 | bool "autoconf target package has been removed" | |
4010 | select BR2_LEGACY | |
4011 | help | |
d6109172 RM |
4012 | The 'autoconf' target package has been removed since it has |
4013 | been deprecated for more than four buildroot releases. | |
e7af2ac6 TDS |
4014 | Note: the host autoconf still exists. |
4015 | ||
ddf5424f TDS |
4016 | config BR2_PACKAGE_XSTROKE |
4017 | bool "xstroke has been removed" | |
4018 | select BR2_LEGACY | |
4019 | help | |
4020 | The 'xstroke' package has been removed since it has been | |
4021 | deprecated for more than four buildroot releases. | |
4022 | ||
0a077319 TDS |
4023 | config BR2_PACKAGE_LZMA |
4024 | bool "lzma target package has been removed" | |
4025 | select BR2_LEGACY | |
4026 | help | |
4027 | The 'lzma' target package has been removed since it has been | |
4028 | deprecated for more than four buildroot releases. | |
d6109172 RM |
4029 | Note: generating lzma-compressed rootfs images is still |
4030 | supported. | |
0a077319 | 4031 | |
7ef5c3a5 TDS |
4032 | config BR2_PACKAGE_TTCP |
4033 | bool "ttcp has been removed" | |
4034 | select BR2_LEGACY | |
4035 | help | |
4036 | The 'ttcp' package has been removed since it has been | |
4037 | deprecated for more than four buildroot releases. | |
4038 | ||
8b2e2357 | 4039 | config BR2_PACKAGE_LIBNFC_LLCP |
93341046 | 4040 | bool "libnfc-llcp has been replaced by libllcp" |
8b2e2357 | 4041 | select BR2_LEGACY |
93341046 | 4042 | select BR2_PACKAGE_LIBLLCP |
8b2e2357 | 4043 | help |
d6109172 RM |
4044 | The 'libnfc-llcp' package has been removed since upstream |
4045 | renamed to 'libllcp'. We have added a new package for | |
4046 | 'libllcp' and bumped the version at the same time. | |
8b2e2357 | 4047 | |
06c82128 MGUF |
4048 | config BR2_PACKAGE_MYSQL_CLIENT |
4049 | bool "MySQL client renamed to MySQL" | |
4050 | select BR2_LEGACY | |
4051 | select BR2_PACKAGE_MYSQL | |
4052 | help | |
4053 | The option has been renamed BR2_PACKAGE_MYSQL | |
4054 | ||
2f7a53ee TDS |
4055 | config BR2_PACKAGE_SQUASHFS3 |
4056 | bool "squashfs3 has been removed" | |
4057 | select BR2_LEGACY | |
4058 | select BR2_PACKAGE_SQUASHFS | |
4059 | help | |
4060 | The 'squashfs3' package has been removed since it has been | |
4061 | deprecated for more than four buildroot releases. Package | |
4062 | 'squashfs' (4) has been selected automatically as replacement. | |
4063 | ||
4064 | config BR2_TARGET_ROOTFS_SQUASHFS3 | |
4065 | bool "squashfs3 rootfs support has been removed" | |
4066 | select BR2_LEGACY | |
4067 | help | |
4068 | Together with the removal of the squashfs3 package, support | |
4069 | for squashfs3 root filesystems has been removed too. Squashfs | |
4070 | root filesystems will automatically use squashfs4 now. | |
4071 | ||
560fe85b AA |
4072 | config BR2_PACKAGE_NETKITBASE |
4073 | bool "netkitbase has been removed" | |
4074 | select BR2_LEGACY | |
4075 | help | |
4076 | The 'netkitbase' package has been removed since it has been | |
4077 | deprecated since 2012.11. This package provided 'inetd' | |
4078 | which is replaced by 'xinet' and 'ping' which is replaced by | |
4079 | 'busybox' or 'fping'. | |
4080 | ||
4081 | config BR2_PACKAGE_NETKITTELNET | |
4082 | bool "netkittelnet has been removed" | |
4083 | select BR2_LEGACY | |
4084 | help | |
4085 | The 'netkittelnet' package has been removed since it has | |
4086 | been deprecated since 2012.11. 'busybox' provides a telnet | |
4087 | client and should be used instead. | |
4088 | ||
63058f8b FP |
4089 | config BR2_PACKAGE_LUASQL |
4090 | bool "luasql has been replaced by luasql-sqlite3" | |
4091 | select BR2_PACKAGE_LUASQL_SQLITE3 | |
4092 | select BR2_LEGACY | |
4093 | help | |
4094 | The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3. | |
4095 | ||
a6c53478 FP |
4096 | config BR2_PACKAGE_LUACJSON |
4097 | bool "luacjson has been replaced by lua-cjson" | |
4098 | select BR2_PACKAGE_LUA_CJSON | |
4099 | select BR2_LEGACY | |
4100 | help | |
4101 | The option has been renamed BR2_PACKAGE_LUA_CJSON. | |
4102 | ||
94c72087 TP |
4103 | ############################################################################### |
4104 | comment "Legacy options removed in 2013.11" | |
4105 | ||
ff0f55e3 AV |
4106 | config BR2_PACKAGE_LVM2_DMSETUP_ONLY |
4107 | bool "lvm2's 'dmsetup only' option removed" | |
4108 | select BR2_LEGACY | |
4109 | help | |
4110 | The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which | |
4111 | led to problems with other packages that need the full lvm2 | |
d6109172 RM |
4112 | suite. Therefore, the option has been replaced with the |
4113 | positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option. | |
ff0f55e3 AV |
4114 | |
4115 | # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in | |
4116 | # in order to automatically propagate old configs | |
4117 | ||
1f9c04f6 TP |
4118 | config BR2_PACKAGE_QT_JAVASCRIPTCORE |
4119 | bool "qt javascriptcore option removed" | |
4120 | select BR2_LEGACY | |
4121 | help | |
4122 | The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to | |
4123 | force the activation or disabling of the JIT compiler in the | |
4124 | Qt Javascript interpreter. However, the JIT compiler is not | |
4125 | available for all architectures, so forcing its activation | |
4126 | does not always work. Moreover, Qt knows by itself for which | |
4127 | architectures JIT support is possible, and will | |
4128 | automatically enable it if possible. | |
4129 | ||
4130 | Therefore, this option was in fact useless, and causing | |
4131 | build problems when enabled on architectures for which the | |
4132 | JIT support was not available. It has been removed, and | |
4133 | there is no replacement: Qt will enable JIT at compile time | |
4134 | when possible. | |
4135 | ||
94c72087 TP |
4136 | config BR2_PACKAGE_MODULE_INIT_TOOLS |
4137 | bool "module-init-tools replaced by kmod" | |
4138 | select BR2_PACKAGE_KMOD | |
4139 | select BR2_PACKAGE_KMOD_TOOLS | |
0f401f91 | 4140 | select BR2_LEGACY |
94c72087 TP |
4141 | help |
4142 | The 'module-init-tools' package has been removed, since it | |
4143 | has been depracated upstream and replaced by 'kmod'. | |
4144 | ||
f2c2193b TDS |
4145 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL |
4146 | string "u-boot: the git repository URL option has been renamed" | |
4147 | help | |
4148 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has | |
4149 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL. | |
4150 | ||
4151 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP | |
4152 | bool | |
4153 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != "" | |
4154 | select BR2_LEGACY | |
4155 | ||
4156 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from | |
4157 | # boot/uboot/Config.in | |
4158 | ||
4159 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION | |
4160 | string "u-boot: the git repository version option has been renamed" | |
4161 | help | |
4162 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has | |
4163 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION. | |
4164 | ||
4165 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP | |
4166 | bool | |
4167 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" | |
4168 | select BR2_LEGACY | |
4169 | ||
4170 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from | |
4171 | # boot/uboot/Config.in | |
4172 | ||
63ecded2 TDS |
4173 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL |
4174 | string "linux: the git repository URL option has been renamed" | |
4175 | help | |
4176 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has | |
4177 | been renamed to | |
4178 | BR2_LINUX_KERNEL_CUSTOM_REPO_URL. | |
4179 | ||
4180 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP | |
4181 | bool | |
4182 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != "" | |
4183 | select BR2_LEGACY | |
4184 | ||
4185 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from | |
4186 | # linux/Config.in | |
4187 | ||
4188 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION | |
4189 | string "linux: the git repository version option has been renamed" | |
4190 | help | |
4191 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has | |
4192 | been renamed to | |
4193 | BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION. | |
4194 | ||
4195 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP | |
4196 | bool | |
4197 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" | |
4198 | select BR2_LEGACY | |
4199 | ||
4200 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from | |
4201 | # linux/Config.in | |
4202 | ||
67eaf705 YM |
4203 | ############################################################################### |
4204 | comment "Legacy options removed in 2013.08" | |
c6e4fcb1 | 4205 | |
1f3078b1 TP |
4206 | config BR2_ARM_OABI |
4207 | bool "ARM OABI support has been removed" | |
4208 | select BR2_LEGACY | |
4209 | help | |
4210 | The support for the ARM OABI was deprecated since a while, | |
4211 | and has been removed completely from Buildroot. It is also | |
4212 | deprecated in upstream gcc, since gcc 4.7. People should | |
4213 | switch to EABI instead, which should not be a problem as | |
4214 | long as you don't have pre-built OABI binaries in your | |
4215 | system that you can't recompile. | |
4216 | ||
c6e4fcb1 GZ |
4217 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK |
4218 | bool "dosfstools dosfsck renamed to fsck.fat" | |
4219 | select BR2_LEGACY | |
4220 | select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT | |
4221 | help | |
4222 | dosfsck was renamed upstream to fsck.fat for consistency. | |
4223 | ||
4224 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL | |
4225 | bool "dosfstools dosfslabel renamed to fatlabel" | |
4226 | select BR2_LEGACY | |
4227 | select BR2_PACKAGE_DOSFSTOOLS_FATLABEL | |
4228 | help | |
4229 | doslabel was renamed upstream to fatlabel for consistency. | |
4230 | ||
4231 | config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS | |
4232 | bool "dosfstools mkdosfs renamed to mkfs.fat" | |
4233 | select BR2_LEGACY | |
4234 | select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT | |
4235 | help | |
4236 | mkdosfs was renamed upstream to mkfs.fat for consistency. | |
4237 | ||
e21db000 TP |
4238 | config BR2_ELF2FLT |
4239 | bool "the elf2flt option has been renamed" | |
4240 | select BR2_LEGACY | |
4241 | help | |
4242 | The BR2_ELF2FLT option has been renamed to | |
4243 | BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to | |
4244 | the package infrastructure. | |
4245 | ||
d806005b TP |
4246 | config BR2_VFP_FLOAT |
4247 | bool "the ARM VFP floating point option has been renamed" | |
4248 | select BR2_LEGACY | |
4249 | help | |
4250 | Due to a major refactoring of the floating-point handling of | |
4251 | the ARM architecture support, the BR2_VFP_FLOAT option has | |
4252 | been replaced with a choice of options that allows to select | |
4253 | between various VFP versions/capabilities. | |
4254 | ||
ba8f82b0 SM |
4255 | config BR2_PACKAGE_GCC_TARGET |
4256 | bool "gcc on the target filesystem has been removed" | |
4257 | select BR2_LEGACY | |
4258 | help | |
4259 | The support for gcc in the target filesystem was deprecated | |
4260 | since a while, and has been removed completely from Buildroot. | |
4261 | See Buildroot's documentation for more explanations. | |
4262 | ||
4263 | config BR2_HAVE_DEVFILES | |
4264 | bool "development files in target filesystem has been removed" | |
4265 | select BR2_LEGACY | |
4266 | help | |
4267 | The installation of the development files in the target | |
4268 | filesystem was deprecated since a while, and has been removed | |
4269 | completely from Buildroot. | |
4270 | See Buildroot's documentation for more explanations. | |
4271 | ||
a91a5c16 | 4272 | endmenu |
53903a15 AV |
4273 | |
4274 | endif # !SKIP_LEGACY |