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