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 |
| 102 | This option is selected automatically when your old .config uses an |
| 103 | option that no longer exists in current buildroot. In that case, the |
| 104 | build will fail. Look for config options which are selected in the |
| 105 | menu below: they no longer exist and should be replaced by something |
| 106 | else. |
| 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 | d2e706c | 2013-06-30 00:38:13 +0200 | [diff] [blame] | 138 | comment "Note: at some point in the future, the oldest legacy" |
| 139 | comment "options will be removed, and configuration files " |
| 140 | comment "that still have those options set, will fail to " |
| 141 | comment "build, or run, in 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 | ############################################################################### |
Gustavo Zacarias | a75eedd | 2017-02-24 21:34:47 -0300 | [diff] [blame] | 146 | comment "Legacy options removed in 2017.05" |
| 147 | |
Martin Bark | 096f8b1 | 2017-05-06 14:19:12 +0100 | [diff] [blame^] | 148 | config BR2_PACKAGE_NODEJS_MODULES_EXPRESS |
| 149 | bool "Express web application framework option has been removed" |
| 150 | select BR2_LEGACY |
| 151 | help |
| 152 | The option to enable the NodeJS Express web application |
| 153 | framework has been removed. To continue using it, add |
| 154 | "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL. |
| 155 | |
Baruch Siach | 0364d44 | 2017-05-01 15:59:41 +0300 | [diff] [blame] | 156 | config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL |
| 157 | bool "bluez5_utils gatttool install option removed" |
| 158 | select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED |
| 159 | help |
| 160 | The option to install gatttool specifically has been removed. |
| 161 | Since version 5.44 gatttool is in the list of deprecated |
| 162 | tools. The option to build and install deprecated tools has |
| 163 | been automatically enabled. |
| 164 | |
Christophe PRIOUZEAU | 3b6c74d | 2017-04-28 14:34:34 +0000 | [diff] [blame] | 165 | config BR2_PACKAGE_OPENOCD_FT2XXX |
| 166 | bool "openocd ft2232 support has been removed" |
| 167 | select BR2_PACKAGE_OPENOCD_FTDI |
| 168 | select BR2_LEGACY |
| 169 | help |
| 170 | FT2232 support in OpenOCD has been removed, it's replaced by |
| 171 | FDTI support, which has automatically been enabled. |
| 172 | |
Bernd Kuhls | 24a07d5 | 2017-04-29 10:37:28 +0200 | [diff] [blame] | 173 | config BR2_PACKAGE_KODI_RTMPDUMP |
| 174 | bool "kodi rtmp has been removed" |
| 175 | select BR2_LEGACY |
| 176 | help |
| 177 | Internal rtmp support was removed from Kodi. |
| 178 | |
Bernd Kuhls | d393690 | 2017-04-29 10:37:21 +0200 | [diff] [blame] | 179 | config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN |
| 180 | bool "kodi-visualisation-fountain has been removed" |
| 181 | select BR2_LEGACY |
| 182 | help |
| 183 | According to upstream 'the visualization is not currently |
| 184 | in a working shape.' |
| 185 | |
Waldemar Brodkorb | 1ba88a0 | 2017-04-02 05:37:08 +0200 | [diff] [blame] | 186 | config BR2_PACKAGE_PORTMAP |
| 187 | bool "portmap has been removed" |
| 188 | select BR2_LEGACY |
| 189 | select BR2_PACKAGE_RPCBIND |
| 190 | help |
| 191 | The portmap upstream tarball is removed, no releases since |
| 192 | ten years and latest change in upstream git in 2014. |
| 193 | You should better use rpcbind as a RPC portmapper. |
| 194 | |
Thomas Petazzoni | 5847291 | 2017-04-03 22:28:21 +0200 | [diff] [blame] | 195 | config BR2_BINUTILS_VERSION_2_25_X |
| 196 | bool "binutils version 2.25 support removed" |
| 197 | select BR2_LEGACY |
| 198 | help |
| 199 | Support for binutils version 2.25 has been removed. The |
| 200 | current default version (2.27 or later) has been selected |
| 201 | instead. |
| 202 | |
Waldemar Brodkorb | 98f7de8 | 2017-04-03 20:18:02 +0200 | [diff] [blame] | 203 | config BR2_TOOLCHAIN_BUILDROOT_INET_RPC |
| 204 | bool "uclibc RPC support has been removed" |
| 205 | select BR2_LEGACY |
| 206 | help |
| 207 | uClibc-ng removed internal RPC implementation in 1.0.23. You |
| 208 | should use libtirpc instead. |
| 209 | |
Sébastien Szymanski | c6bca8c | 2017-03-24 17:20:29 +0100 | [diff] [blame] | 210 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS |
| 211 | int "extra size in blocks has been removed" |
| 212 | default 0 |
| 213 | help |
| 214 | Since the support for auto calculation of the filesystem size has been |
| 215 | removed, this option is now useless and must be 0. |
| 216 | You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS matchs |
| 217 | your needs. |
| 218 | |
| 219 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP |
| 220 | bool |
| 221 | default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0 |
| 222 | select BR2_LEGACY |
| 223 | |
Vicente Olivert Riera | 815f713 | 2017-03-22 11:39:13 +0000 | [diff] [blame] | 224 | config BR2_PACKAGE_SYSTEMD_KDBUS |
| 225 | bool "systemd-kdbus has been removed" |
| 226 | select BR2_LEGACY |
| 227 | help |
| 228 | --enable/disable-kdbus configure option has been removed since |
| 229 | systemd-231. |
| 230 | |
Gustavo Zacarias | d10b493 | 2017-03-16 10:04:34 -0300 | [diff] [blame] | 231 | config BR2_PACKAGE_POLARSSL |
| 232 | bool "polarssl has been removed" |
| 233 | select BR2_LEGACY |
| 234 | help |
| 235 | The polarssl crypto library has been removed since the 1.2.x |
| 236 | release branch is no longer maintained. Newer upstream |
| 237 | branches/releases (mbedtls) have API changes so they're not |
| 238 | drop-in replacements. |
| 239 | |
Yann E. MORIN | 6155118 | 2017-03-12 10:58:15 +0100 | [diff] [blame] | 240 | config BR2_NBD_CLIENT |
| 241 | bool "nbd client option was renamed" |
| 242 | select BR2_LEGACY |
| 243 | select BR2_PACKAGE_NBD_CLIENT |
| 244 | help |
| 245 | The nbd client option has been renamed to BR2_PACKAGE_NBD_CLIENT. |
| 246 | |
| 247 | config BR2_NBD_SERVER |
| 248 | bool "nbd server option was renamed" |
| 249 | select BR2_LEGACY |
| 250 | select BR2_PACKAGE_NBD_SERVER |
| 251 | help |
| 252 | The nbd server option has been renamed to BR2_PACKAGE_NBD_SERVER. |
| 253 | |
Carlos Santos | 6a9c631 | 2017-02-14 09:05:16 -0200 | [diff] [blame] | 254 | config BR2_PACKAGE_GMOCK |
| 255 | bool "gmock merged into gtest package" |
| 256 | select BR2_LEGACY |
| 257 | select BR2_PACKAGE_GTEST |
| 258 | select BR2_PACKAGE_GTEST_GMOCK |
| 259 | help |
| 260 | GMock is now a suboption of the GTest package. |
| 261 | |
Gustavo Zacarias | 5f73ff5 | 2017-03-02 17:18:29 -0300 | [diff] [blame] | 262 | config BR2_KERNEL_HEADERS_4_8 |
| 263 | bool "kernel headers version 4.8.x are no longer supported" |
| 264 | select BR2_KERNEL_HEADERS_4_4 |
| 265 | select BR2_LEGACY |
| 266 | help |
| 267 | Version 4.8.x of the Linux kernel headers are no longer |
| 268 | maintained upstream and are now removed. As an alternative, |
| 269 | version 4.4.x of the headers have been automatically |
| 270 | selected in your configuration. |
| 271 | |
| 272 | config BR2_KERNEL_HEADERS_3_18 |
| 273 | bool "kernel headers version 3.18.x are no longer supported" |
| 274 | select BR2_KERNEL_HEADERS_3_12 |
| 275 | select BR2_LEGACY |
| 276 | help |
| 277 | Version 3.18.x of the Linux kernel headers are no longer |
| 278 | maintained upstream and are now removed. As an alternative, |
| 279 | version 3.12.x of the headers have been automatically |
| 280 | selected in your configuration. |
| 281 | |
Gustavo Zacarias | a75eedd | 2017-02-24 21:34:47 -0300 | [diff] [blame] | 282 | config BR2_GLIBC_VERSION_2_22 |
| 283 | bool "glibc 2.22 removed" |
| 284 | select BR2_LEGACY |
| 285 | help |
| 286 | Support for glibc version 2.22 has been removed. The current |
| 287 | default version has been selected instead. |
| 288 | |
| 289 | ############################################################################### |
Thomas Petazzoni | ed364d1 | 2016-11-05 14:32:38 +0100 | [diff] [blame] | 290 | comment "Legacy options removed in 2017.02" |
| 291 | |
Francois Perrad | 8546ff3 | 2016-12-26 15:50:35 +0100 | [diff] [blame] | 292 | config BR2_PACKAGE_PERL_DB_FILE |
| 293 | bool "perl-db-file removed" |
| 294 | select BR2_LEGACY |
| 295 | select BR2_PACKAGE_BERKELEYDB |
| 296 | select BR2_PACKAGE_PERL |
| 297 | help |
| 298 | DB_File can be built as a core Perl module, so the separate |
| 299 | perl-db-file package has been removed. |
| 300 | |
Gustavo Zacarias | 6be2262 | 2016-12-20 11:48:26 -0300 | [diff] [blame] | 301 | config BR2_KERNEL_HEADERS_4_7 |
| 302 | bool "kernel headers version 4.7.x are no longer supported" |
| 303 | select BR2_KERNEL_HEADERS_4_4 |
| 304 | select BR2_LEGACY |
| 305 | help |
| 306 | Version 4.7.x of the Linux kernel headers are no longer |
| 307 | maintained upstream and are now removed. As an alternative, |
| 308 | version 4.4.x of the headers have been automatically |
| 309 | selected in your configuration. |
| 310 | |
| 311 | config BR2_KERNEL_HEADERS_4_6 |
| 312 | bool "kernel headers version 4.6.x are no longer supported" |
| 313 | select BR2_KERNEL_HEADERS_4_4 |
| 314 | select BR2_LEGACY |
| 315 | help |
| 316 | Version 4.6.x of the Linux kernel headers are no longer |
| 317 | maintained upstream and are now removed. As an alternative, |
| 318 | version 4.4.x of the headers have been automatically |
| 319 | selected in your configuration. |
| 320 | |
| 321 | config BR2_KERNEL_HEADERS_4_5 |
| 322 | bool "kernel headers version 4.5.x are no longer supported" |
| 323 | select BR2_KERNEL_HEADERS_4_4 |
| 324 | select BR2_LEGACY |
| 325 | help |
| 326 | Version 4.5.x of the Linux kernel headers are no longer |
| 327 | maintained upstream and are now removed. As an alternative, |
| 328 | version 4.4.x of the headers have been automatically |
| 329 | selected in your configuration. |
| 330 | |
| 331 | config BR2_KERNEL_HEADERS_3_14 |
| 332 | bool "kernel headers version 3.14.x are no longer supported" |
| 333 | select BR2_KERNEL_HEADERS_3_12 |
| 334 | select BR2_LEGACY |
| 335 | help |
| 336 | Version 3.14.x of the Linux kernel headers are no longer |
| 337 | maintained upstream and are now removed. As an alternative, |
| 338 | version 3.12.x of the headers have been automatically |
| 339 | selected in your configuration. |
| 340 | |
Romain Naour | 63abbcc | 2016-12-16 16:29:45 +0100 | [diff] [blame] | 341 | config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS |
| 342 | bool "musl-cross 1.1.12 toolchain removed" |
| 343 | select BR2_LEGACY |
| 344 | help |
| 345 | The support for the prebuilt toolchain based on the Musl C |
| 346 | library provided by the musl-cross project has been removed. |
| 347 | Upstream doesn't provide any prebuilt toolchain anymore, use the |
| 348 | Buildroot toolchain instead. |
| 349 | |
Waldemar Brodkorb | a44d7f2 | 2016-12-04 12:20:27 +0100 | [diff] [blame] | 350 | config BR2_UCLIBC_INSTALL_TEST_SUITE |
| 351 | bool "uClibc tests now in uclibc-ng-test" |
| 352 | select BR2_LEGACY |
| 353 | select BR2_PACKAGE_UCLIBC_NG_TEST |
| 354 | help |
| 355 | The test suite of the uClibc C library has been moved into a |
| 356 | separate package, uclibc-ng-test. |
| 357 | |
Arnout Vandecappelle | 311bc13 | 2016-11-24 00:40:35 +0100 | [diff] [blame] | 358 | config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX |
| 359 | bool "Blackfin.uclinux.org 2014R1 toolchain removed" |
| 360 | select BR2_LEGACY |
| 361 | help |
| 362 | The ADI Blackfin toolchain has many bugs which are fixed in |
| 363 | more recent gcc and uClibc-ng releases. Use the Buildroot |
| 364 | toolchain instead. |
| 365 | |
Arnout Vandecappelle | 207294f | 2016-11-23 15:14:04 +0100 | [diff] [blame] | 366 | config BR2_PACKAGE_MAKEDEVS |
| 367 | bool "makedevs removed" |
| 368 | select BR2_LEGACY |
| 369 | help |
| 370 | The makedevs tool is part of busybox. The Buildroot fork |
| 371 | should not be used outside of the Buildroot infrastructure. |
| 372 | |
Arnout Vandecappelle | b5c00f0 | 2016-11-07 02:20:17 +0100 | [diff] [blame] | 373 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A |
| 374 | bool "Arago ARMv7 2011.09 removed" |
| 375 | select BR2_LEGACY |
| 376 | help |
| 377 | The Arago toolchains are every old and not updated anymore. |
| 378 | |
| 379 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE |
| 380 | bool "Arago ARMv5 2011.09 removed" |
| 381 | select BR2_LEGACY |
| 382 | help |
| 383 | The Arago toolchains are every old and not updated anymore. |
| 384 | |
Thomas Petazzoni | ed364d1 | 2016-11-05 14:32:38 +0100 | [diff] [blame] | 385 | config BR2_PACKAGE_SNOWBALL_HDMISERVICE |
| 386 | bool "snowball-hdmiservice removed" |
| 387 | select BR2_LEGACY |
| 388 | help |
| 389 | We no longer have support for the Snowball platform in |
| 390 | Buildroot, so this package was no longer useful. |
| 391 | |
| 392 | config BR2_PACKAGE_SNOWBALL_INIT |
| 393 | bool "snowball-init removed" |
| 394 | select BR2_LEGACY |
| 395 | help |
| 396 | We no longer have support for the Snowball platform in |
| 397 | Buildroot, so this package was no longer useful. |
| 398 | |
Jörg Krause | 69aa057 | 2016-12-14 14:40:58 +0100 | [diff] [blame] | 399 | config BR2_GDB_VERSION_7_9 |
| 400 | bool "gdb 7.9 has been removed" |
| 401 | select BR2_LEGACY |
| 402 | help |
| 403 | The 7.9 version of gdb has been removed. Use a newer version |
| 404 | instead. |
| 405 | |
Thomas Petazzoni | ed364d1 | 2016-11-05 14:32:38 +0100 | [diff] [blame] | 406 | ############################################################################### |
Yann E. MORIN | e782cd5 | 2016-08-28 01:03:04 +0200 | [diff] [blame] | 407 | comment "Legacy options removed in 2016.11" |
| 408 | |
Fabrice Fontaine | c457213 | 2016-09-12 23:31:07 +0200 | [diff] [blame] | 409 | config BR2_PACKAGE_PHP_SAPI_CLI_CGI |
| 410 | bool "PHP CGI and CLI options are now seperate" |
| 411 | select BR2_PACKAGE_PHP_SAPI_CLI |
| 412 | select BR2_PACKAGE_PHP_SAPI_CGI |
Yann E. MORIN | c087cbe | 2016-10-24 18:46:00 +0200 | [diff] [blame] | 413 | select BR2_LEGACY |
Fabrice Fontaine | c457213 | 2016-09-12 23:31:07 +0200 | [diff] [blame] | 414 | help |
| 415 | The PHP Interface options have been split up into a |
| 416 | separate option for each interface. |
| 417 | |
| 418 | config BR2_PACKAGE_PHP_SAPI_CLI_FPM |
| 419 | bool "PHP CLI and FPM options are now separate" |
| 420 | select BR2_PACKAGE_PHP_SAPI_CLI |
| 421 | select BR2_PACKAGE_PHP_SAPI_FPM |
Yann E. MORIN | c087cbe | 2016-10-24 18:46:00 +0200 | [diff] [blame] | 422 | select BR2_LEGACY |
Fabrice Fontaine | c457213 | 2016-09-12 23:31:07 +0200 | [diff] [blame] | 423 | help |
| 424 | The PHP Interface options have been split up into a |
| 425 | separate option for each interface. |
| 426 | |
Arnout Vandecappelle | 3534399 | 2016-10-15 16:51:06 +0200 | [diff] [blame] | 427 | config BR2_PACKAGE_WVSTREAMS |
| 428 | bool "wvstreams removed" |
| 429 | select BR2_LEGACY |
| 430 | help |
| 431 | wvstreams is not maintained anymore since about 2009. It also |
| 432 | doesn't build anymore with recent compilers (GCC 5+). |
| 433 | |
Arnout Vandecappelle | 152d4b6 | 2016-10-15 16:51:05 +0200 | [diff] [blame] | 434 | config BR2_PACKAGE_WVDIAL |
| 435 | bool "wvdial removed" |
| 436 | select BR2_LEGACY |
| 437 | help |
| 438 | wvdial is not maintained anymore since about 2009. It also |
| 439 | doesn't build anymore with recent compilers (GCC 5+). |
| 440 | |
Arnout Vandecappelle | 79c82a3 | 2016-10-15 16:51:04 +0200 | [diff] [blame] | 441 | config BR2_PACKAGE_WEBKITGTK24 |
| 442 | bool "webkitgtk 2.4.x removed" |
| 443 | select BR2_LEGACY |
| 444 | help |
| 445 | This legacy package only existed because some other packages |
| 446 | depended on that specific version of webkitgtk. However, the |
| 447 | other packages have been fixed. webkitgtk 2.4 is full of |
| 448 | security issues so it needs to be removed. |
| 449 | |
Arnout Vandecappelle | ea3a7ee | 2016-10-15 16:51:03 +0200 | [diff] [blame] | 450 | config BR2_PACKAGE_TORSMO |
| 451 | bool "torsmo removed" |
| 452 | select BR2_LEGACY |
| 453 | help |
| 454 | torsmo has been unmaintained for a long time, and nobody |
| 455 | seems to be interested in it. |
| 456 | |
Arnout Vandecappelle | 290166f | 2016-10-15 16:51:02 +0200 | [diff] [blame] | 457 | config BR2_PACKAGE_SSTRIP |
| 458 | bool "sstrip removed" |
| 459 | select BR2_LEGACY |
| 460 | help |
| 461 | sstrip is unmaintained and potentially harmful. It doesn't |
| 462 | save so much compared to normal binutils strip, and there is |
| 463 | a big risk of binaries that don't work. Use normal strip |
| 464 | instead. |
| 465 | |
Arnout Vandecappelle | 133466f | 2016-10-15 16:51:01 +0200 | [diff] [blame] | 466 | config BR2_KERNEL_HEADERS_4_3 |
| 467 | bool "kernel headers version 4.3.x are no longer supported" |
| 468 | select BR2_KERNEL_HEADERS_4_1 |
| 469 | select BR2_LEGACY |
| 470 | help |
| 471 | Version 4.3.x of the Linux kernel headers are no longer |
| 472 | maintained upstream and are now removed. As an alternative, |
| 473 | version 4.1.x of the headers have been automatically |
| 474 | selected in your configuration. |
| 475 | |
| 476 | config BR2_KERNEL_HEADERS_4_2 |
| 477 | bool "kernel headers version 4.2.x are no longer supported" |
| 478 | select BR2_KERNEL_HEADERS_4_1 |
| 479 | select BR2_LEGACY |
| 480 | help |
| 481 | Version 4.2.x of the Linux kernel headers are no longer |
| 482 | maintained upstream and are now removed. As an alternative, |
| 483 | version 4.1.x of the headers have been automatically |
| 484 | selected in your configuration. |
| 485 | |
Arnout Vandecappelle | 1c2a63a | 2016-10-15 16:51:00 +0200 | [diff] [blame] | 486 | config BR2_PACKAGE_KODI_ADDON_XVDR |
| 487 | bool "kodi-addon-xvdr removed" |
| 488 | select BR2_LEGACY |
| 489 | help |
| 490 | According to the github project page: |
| 491 | https://github.com/pipelka/xbmc-addon-xvdr |
| 492 | this package is discontinued. |
| 493 | |
Arnout Vandecappelle | 3b80ca8 | 2016-10-15 16:50:59 +0200 | [diff] [blame] | 494 | config BR2_PACKAGE_IPKG |
| 495 | bool "ipkg removed" |
| 496 | select BR2_LEGACY |
| 497 | help |
| 498 | ipkg dates back to the early 2000s when Compaq started the |
| 499 | handhelds.org project and it hasn't seen development since 2006. |
| 500 | Use opkg as a replacement. |
| 501 | |
Arnout Vandecappelle | a7c13c1 | 2016-10-15 16:50:58 +0200 | [diff] [blame] | 502 | config BR2_GCC_VERSION_4_7_X |
| 503 | bool "gcc 4.7.x support removed" |
| 504 | select BR2_LEGACY |
| 505 | help |
| 506 | Support for gcc version 4.7.x has been removed. The current |
| 507 | default version (4.9.x or later) has been selected instead. |
| 508 | |
Arnout Vandecappelle | d887811 | 2016-10-15 16:50:57 +0200 | [diff] [blame] | 509 | config BR2_BINUTILS_VERSION_2_24_X |
| 510 | bool "binutils version 2.24 support removed" |
| 511 | select BR2_LEGACY |
| 512 | help |
| 513 | Support for binutils version 2.24 has been removed. The |
| 514 | current default version (2.26 or later) has been selected |
| 515 | instead. |
| 516 | |
Gustavo Zacarias | 8c85a5f | 2016-09-24 14:28:36 -0300 | [diff] [blame] | 517 | config BR2_PACKAGE_WESTON_RPI |
| 518 | bool "Weston propietary RPI support is gone" |
| 519 | select BR2_LEGACY |
| 520 | help |
| 521 | Upstream decided the propietary (rpi-userland) weston composer |
| 522 | support wasn't worth the effort so it was removed. Switch to |
| 523 | the open VC4 support. |
| 524 | |
Yann E. MORIN | 20b1446 | 2016-09-06 16:29:14 +0200 | [diff] [blame] | 525 | config BR2_LINUX_KERNEL_TOOL_CPUPOWER |
| 526 | bool "linux-tool cpupower" |
| 527 | depends on BR2_LINUX_KERNEL |
| 528 | select BR2_LEGACY |
| 529 | select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER |
| 530 | help |
| 531 | Linux tool cpupower option was renamed. |
| 532 | |
| 533 | config BR2_LINUX_KERNEL_TOOL_PERF |
| 534 | bool "linux-tool perf" |
| 535 | depends on BR2_LINUX_KERNEL |
| 536 | select BR2_LEGACY |
| 537 | select BR2_PACKAGE_LINUX_TOOLS_PERF |
| 538 | help |
| 539 | Linux tool perf option was renamed. |
| 540 | |
| 541 | config BR2_LINUX_KERNEL_TOOL_SELFTESTS |
| 542 | bool "linux-tool selftests" |
| 543 | depends on BR2_LINUX_KERNEL |
| 544 | select BR2_LEGACY |
| 545 | select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS |
| 546 | help |
| 547 | Linux tool selftests option was renamed. |
| 548 | |
Thomas Petazzoni | 50332a5 | 2016-08-11 15:25:38 +0200 | [diff] [blame] | 549 | config BR2_GCC_VERSION_4_8_ARC |
| 550 | bool "gcc arc option renamed" |
| 551 | select BR2_LEGACY |
| 552 | select BR2_GCC_VERSION_ARC |
| 553 | help |
| 554 | The option that selects the gcc version for the ARC |
| 555 | architecture has been renamed to BR2_GCC_VERSION_ARC. |
| 556 | |
Gustavo Zacarias | 3c590a3 | 2016-09-09 12:20:54 -0300 | [diff] [blame] | 557 | config BR2_KERNEL_HEADERS_4_0 |
| 558 | bool "kernel headers version 4.0.x are no longer supported" |
Gustavo Zacarias | 5f73ff5 | 2017-03-02 17:18:29 -0300 | [diff] [blame] | 559 | select BR2_KERNEL_HEADERS_3_12 |
Gustavo Zacarias | 3c590a3 | 2016-09-09 12:20:54 -0300 | [diff] [blame] | 560 | select BR2_LEGACY |
| 561 | help |
| 562 | Version 4.0.x of the Linux kernel headers have been deprecated |
| 563 | for more than four buildroot releases and are now removed. |
Gustavo Zacarias | 5f73ff5 | 2017-03-02 17:18:29 -0300 | [diff] [blame] | 564 | As an alternative, version 3.12.x of the headers have been |
Gustavo Zacarias | 3c590a3 | 2016-09-09 12:20:54 -0300 | [diff] [blame] | 565 | automatically selected in your configuration. |
| 566 | |
| 567 | config BR2_KERNEL_HEADERS_3_19 |
| 568 | bool "kernel headers version 3.19.x are no longer supported" |
Gustavo Zacarias | 5f73ff5 | 2017-03-02 17:18:29 -0300 | [diff] [blame] | 569 | select BR2_KERNEL_HEADERS_3_12 |
Gustavo Zacarias | 3c590a3 | 2016-09-09 12:20:54 -0300 | [diff] [blame] | 570 | select BR2_LEGACY |
| 571 | help |
| 572 | Version 3.19.x of the Linux kernel headers have been deprecated |
| 573 | for more than four buildroot releases and are now removed. |
Gustavo Zacarias | 5f73ff5 | 2017-03-02 17:18:29 -0300 | [diff] [blame] | 574 | As an alternative, version 3.12.x of the headers have been |
Gustavo Zacarias | 3c590a3 | 2016-09-09 12:20:54 -0300 | [diff] [blame] | 575 | automatically selected in your configuration. |
| 576 | |
Romain Naour | 0e51731 | 2016-09-02 22:31:32 +0200 | [diff] [blame] | 577 | config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS |
| 578 | bool "libevas-generic-loaders package removed" |
| 579 | select BR2_LEGACY |
| 580 | select BR2_PACKAGE_EFL |
| 581 | help |
| 582 | With EFL 1.18, libevas-generic-loaders is now provided by the efl |
| 583 | package. |
| 584 | |
Romain Naour | c22b758 | 2016-09-02 22:31:31 +0200 | [diff] [blame] | 585 | config BR2_PACKAGE_ELEMENTARY |
| 586 | bool "elementary package removed" |
| 587 | select BR2_LEGACY |
| 588 | select BR2_PACKAGE_EFL |
| 589 | help |
| 590 | With EFL 1.18, elementary is now provided by the efl package. |
| 591 | |
Yann E. MORIN | e782cd5 | 2016-08-28 01:03:04 +0200 | [diff] [blame] | 592 | config BR2_LINUX_KERNEL_CUSTOM_LOCAL |
| 593 | bool "Linux kernel local directory option removed" |
| 594 | help |
| 595 | The option to select a local directory as the source of the Linux |
| 596 | kernel has been removed. It hurts reproducibility of builds. |
| 597 | |
| 598 | In case you were using this option during development of your |
| 599 | Linux kernel, use the override mechanism instead. |
| 600 | |
| 601 | ############################################################################### |
Thomas Petazzoni | 20ed897 | 2016-05-17 00:12:58 +0200 | [diff] [blame] | 602 | comment "Legacy options removed in 2016.08" |
| 603 | |
Arnout Vandecappelle | ac19107 | 2017-03-08 00:50:54 +0100 | [diff] [blame] | 604 | config BR2_PACKAGE_EFL_JP2K |
| 605 | bool "libevas jp2k loader has been removed" |
| 606 | select BR2_LEGACY |
Peter Korsgaard | 5354a75 | 2017-03-09 22:52:47 +0100 | [diff] [blame] | 607 | help |
Arnout Vandecappelle | ac19107 | 2017-03-08 00:50:54 +0100 | [diff] [blame] | 608 | JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc) |
| 609 | while Buildroot only packages openjpeg 2.x. Therefore, the |
| 610 | JP2K loader has been removed from EFL. |
| 611 | |
Maxime Hadjinlian | 638cfb5 | 2016-07-02 15:59:12 +0200 | [diff] [blame] | 612 | config BR2_PACKAGE_SYSTEMD_COMPAT |
| 613 | bool "systemd compatibility libraries have been removed" |
Yann E. MORIN | d246b98 | 2016-07-08 23:00:20 +0200 | [diff] [blame] | 614 | select BR2_LEGACY |
Maxime Hadjinlian | 638cfb5 | 2016-07-02 15:59:12 +0200 | [diff] [blame] | 615 | help |
Maxime Hadjinlian | 17bccf1 | 2016-07-06 10:50:47 +0200 | [diff] [blame] | 616 | The systemd option to enable the compatibility libraries has |
Maxime Hadjinlian | 638cfb5 | 2016-07-02 15:59:12 +0200 | [diff] [blame] | 617 | been removed. Theses libraries have been useless since a few |
| 618 | version, and have been fully dropped from the source since |
| 619 | v230. |
| 620 | |
Marcin Nowakowski | 5baa92b | 2016-06-24 08:12:21 +0200 | [diff] [blame] | 621 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER |
| 622 | bool "gst1-plugins-bad liveadder plugin removed" |
| 623 | select BR2_LEGACY |
| 624 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER |
| 625 | help |
| 626 | The functionality of the liveadder plugin of the |
| 627 | gst1-plugins-bad package has been merged into audiomixer. |
| 628 | |
Andrew Webster | 0f92b19 | 2016-06-10 14:13:29 -0400 | [diff] [blame] | 629 | config BR2_PACKAGE_LIBFSLVPUWRAP |
| 630 | bool "libfslvpuwrap has been renamed to imx-vpuwrap" |
| 631 | select BR2_LEGACY |
| 632 | select BR2_PACKAGE_IMX_VPUWRAP |
| 633 | help |
| 634 | The libfslvpuwrap has been renamed to match the renamed package. |
| 635 | |
Andrew Webster | 6499890 | 2016-06-10 14:13:18 -0400 | [diff] [blame] | 636 | config BR2_PACKAGE_LIBFSLPARSER |
| 637 | bool "libfslparser has been renamed to imx-parser" |
| 638 | select BR2_LEGACY |
| 639 | select BR2_PACKAGE_IMX_PARSER |
| 640 | help |
| 641 | The libfslparser has been renamed to match the renamed package. |
| 642 | |
Andrew Webster | 47e6203 | 2016-06-10 14:13:05 -0400 | [diff] [blame] | 643 | config BR2_PACKAGE_LIBFSLCODEC |
| 644 | bool "libfslcodec has been renamed to imx-codec" |
| 645 | select BR2_LEGACY |
| 646 | select BR2_PACKAGE_IMX_CODEC |
| 647 | help |
| 648 | The libfslcodec has been renamed to match the renamed package. |
| 649 | |
Carlos Santos | b5d9900 | 2016-06-03 16:35:39 -0300 | [diff] [blame] | 650 | config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT |
| 651 | bool "FIT support in uboot-tools has been refactored" |
| 652 | select BR2_LEGACY |
| 653 | select BR2_PACKAGE_DTC |
| 654 | select BR2_PACKAGE_DTC_PROGRAMS |
| 655 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT |
| 656 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT |
| 657 | select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE |
| 658 | help |
| 659 | This option has been removed in favor of a more fine-grained |
| 660 | configuration, which is recommended. Selecting this option |
| 661 | enables FIT and FIT signature support for the target packages. |
| 662 | It will also select the dtc and openssl packages. |
| 663 | |
Waldemar Brodkorb | f253c14 | 2016-06-01 20:40:25 +0200 | [diff] [blame] | 664 | config BR2_PTHREADS_OLD |
| 665 | bool "linuxthreads (stable/old)" |
| 666 | select BR2_LEGACY |
| 667 | help |
| 668 | Linuxthreads have been reworked, BR2_PTHREADS_OLD is now |
| 669 | BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed. |
| 670 | |
Thomas Petazzoni | ae466a6 | 2016-05-17 00:13:01 +0200 | [diff] [blame] | 671 | config BR2_BINUTILS_VERSION_2_23_X |
| 672 | bool "binutils 2.23 removed" |
| 673 | select BR2_LEGACY |
| 674 | help |
| 675 | Binutils 2.23 has been removed, using a newer version is |
| 676 | recommended. |
| 677 | |
Thomas Petazzoni | 500de25 | 2016-05-17 00:13:00 +0200 | [diff] [blame] | 678 | config BR2_TOOLCHAIN_BUILDROOT_EGLIBC |
| 679 | bool "eglibc support has been removed" |
| 680 | select BR2_LEGACY |
| 681 | help |
| 682 | The eglibc project no longer exists, as it has been merged |
| 683 | back into the glibc project. Therefore, support for eglibc |
| 684 | has been removed, and glibc should be used instead. |
| 685 | |
Thomas Petazzoni | 20ed897 | 2016-05-17 00:12:58 +0200 | [diff] [blame] | 686 | config BR2_GDB_VERSION_7_8 |
| 687 | bool "gdb 7.8 has been removed" |
| 688 | select BR2_LEGACY |
| 689 | help |
| 690 | The 7.8 version of gdb has been removed. Use a newer version |
| 691 | instead. |
| 692 | |
| 693 | ############################################################################### |
Thomas Petazzoni | 2661c4f | 2016-02-29 23:11:38 +0100 | [diff] [blame] | 694 | comment "Legacy options removed in 2016.05" |
Luca Ceresoli | f0c9470 | 2015-11-27 18:38:00 +0100 | [diff] [blame] | 695 | |
Gustavo Zacarias | 3380da6 | 2016-05-14 10:33:47 -0300 | [diff] [blame] | 696 | config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL |
| 697 | bool "openvpn polarssl crypto backend removed" |
| 698 | select BR2_LEGACY |
| 699 | help |
| 700 | The OpenVPN polarssl crypto backend option has been removed. |
| 701 | Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't |
| 702 | compatible with mbedtls (polarssl) series 2.x which is the |
| 703 | version provided in buildroot. And both can't coexist. |
| 704 | It now uses OpenSSL as the only option. |
| 705 | |
| 706 | |
Martin Bark | 4dfc2cb | 2016-05-03 10:36:54 +0100 | [diff] [blame] | 707 | config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE |
| 708 | bool "nginx http spdy module removed" |
| 709 | select BR2_LEGACY |
| 710 | select BR2_PACKAGE_NGINX_HTTP_V2_MODULE |
| 711 | help |
| 712 | The ngx_http_spdy_module has been superseded by the |
| 713 | ngx_http_v2_module since nginx v1.9.5. The |
| 714 | ngx_http_v2_module modules has been automatically selected |
| 715 | in your configuration. |
| 716 | |
Gustavo Zacarias | 0c956f2 | 2016-05-03 16:44:15 -0300 | [diff] [blame] | 717 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP |
| 718 | bool "gst1-plugins-bad rtp plugin moved to good" |
| 719 | select BR2_LEGACY |
| 720 | help |
| 721 | The rtp plugin has been moved from gst1-plugins-base to |
| 722 | gst1-plugins-good. |
| 723 | |
Gustavo Zacarias | 4196cf9 | 2016-05-03 16:44:14 -0300 | [diff] [blame] | 724 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123 |
| 725 | bool "gst1-plugins-bad mpg123 plugin moved to ugly" |
| 726 | select BR2_LEGACY |
| 727 | help |
| 728 | The mpg123 plugin has been moved from gst1-plugins-bad to |
| 729 | gst1-plugins-ugly. |
| 730 | |
Gustavo Zacarias | 8490e83 | 2016-04-29 10:18:56 -0300 | [diff] [blame] | 731 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC |
| 732 | bool "PowerPC Sourcery toolchain has been removed" |
| 733 | select BR2_LEGACY |
| 734 | help |
| 735 | The Sourcery CodeBench toolchain for the PowerPC |
| 736 | architecture has been removed, as it was very old, not |
| 737 | maintained, and causing numerous build failures with modern |
| 738 | userspace packages. |
| 739 | |
| 740 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2 |
| 741 | bool "PowerPC Sourcery E500v2 toolchain has been removed" |
| 742 | select BR2_LEGACY |
| 743 | help |
| 744 | The Sourcery CodeBench toolchain for the PowerPC E500v2 |
| 745 | architecture has been removed, as it was very old, not |
| 746 | maintained, and causing numerous build failures with modern |
| 747 | userspace packages. |
| 748 | |
Thomas Petazzoni | 6cb4814 | 2016-04-17 23:31:34 +0200 | [diff] [blame] | 749 | config BR2_x86_i386 |
| 750 | bool "x86 i386 support removed" |
Yann E. MORIN | 7aaa730 | 2016-05-08 17:41:49 +0200 | [diff] [blame] | 751 | select BR2_LEGACY |
Thomas Petazzoni | 6cb4814 | 2016-04-17 23:31:34 +0200 | [diff] [blame] | 752 | help |
| 753 | The support for the i386 processors of the x86 architecture |
| 754 | has been removed. |
| 755 | |
Julien CORJON | 940bfe2 | 2016-03-17 10:42:27 +0100 | [diff] [blame] | 756 | config BR2_PACKAGE_QT5WEBKIT_EXAMPLES |
| 757 | bool "qt5webkit-examples package removed" |
| 758 | select BR2_LEGACY |
| 759 | help |
| 760 | The qt5webkit-examples package has been removed, since it |
| 761 | was removed from upstream starting from Qt 5.6. |
| 762 | |
Julien CORJON | f75ee80 | 2016-03-17 10:42:25 +0100 | [diff] [blame] | 763 | config BR2_PACKAGE_QT5QUICK1 |
| 764 | bool "qt5quick1 package removed" |
| 765 | select BR2_LEGACY |
| 766 | help |
| 767 | The qt5quick1 package has been removed, since it was removed |
| 768 | from upstream starting from Qt 5.6. |
| 769 | |
Gustavo Zacarias | 21b25d2 | 2016-03-11 11:32:24 -0300 | [diff] [blame] | 770 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR |
Danomi Manchego | f61583f | 2016-12-19 22:10:12 -0500 | [diff] [blame] | 771 | string "uboot custom patch dir has been removed" |
Gustavo Zacarias | 21b25d2 | 2016-03-11 11:32:24 -0300 | [diff] [blame] | 772 | help |
| 773 | The uboot custom patch directory option has been removed. Use |
| 774 | the improved BR2_TARGET_UBOOT_PATCH option instead. |
| 775 | |
Danomi Manchego | f61583f | 2016-12-19 22:10:12 -0500 | [diff] [blame] | 776 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP |
| 777 | bool |
| 778 | default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != "" |
| 779 | select BR2_LEGACY |
| 780 | |
| 781 | # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from |
| 782 | # boot/uboot/Config.in |
| 783 | |
Gustavo Zacarias | f80ad2f | 2016-03-11 11:32:23 -0300 | [diff] [blame] | 784 | config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID |
| 785 | bool "xf86-input-void removed" |
| 786 | select BR2_LEGACY |
| 787 | help |
| 788 | The xf86-input-void package has been removed, there's no need |
| 789 | for it in any modern (post-2007) xorg server. |
| 790 | |
Gustavo Zacarias | b8de178 | 2016-03-11 11:32:22 -0300 | [diff] [blame] | 791 | config BR2_KERNEL_HEADERS_3_17 |
| 792 | bool "kernel headers version 3.17.x are no longer supported" |
Gustavo Zacarias | 6be2262 | 2016-12-20 11:48:26 -0300 | [diff] [blame] | 793 | select BR2_KERNEL_HEADERS_3_12 |
Gustavo Zacarias | b8de178 | 2016-03-11 11:32:22 -0300 | [diff] [blame] | 794 | select BR2_LEGACY |
| 795 | help |
| 796 | Version 3.17.x of the Linux kernel headers have been deprecated |
| 797 | for more than four buildroot releases and are now removed. |
Gustavo Zacarias | 6be2262 | 2016-12-20 11:48:26 -0300 | [diff] [blame] | 798 | As an alternative, version 3.12.x of the headers have been |
Gustavo Zacarias | b8de178 | 2016-03-11 11:32:22 -0300 | [diff] [blame] | 799 | automatically selected in your configuration. |
| 800 | |
Gustavo Zacarias | ffc324e | 2016-03-11 11:32:21 -0300 | [diff] [blame] | 801 | config BR2_GDB_VERSION_7_7 |
| 802 | bool "gdb 7.7 has been removed" |
| 803 | select BR2_LEGACY |
| 804 | help |
| 805 | The 7.7 version of gdb has been removed. Use a newer version |
| 806 | instead. |
| 807 | |
Gustavo Zacarias | 75945dd | 2016-03-11 11:32:20 -0300 | [diff] [blame] | 808 | config BR2_PACKAGE_FOOMATIC_FILTERS |
| 809 | bool "foomatic-filters" |
| 810 | select BR2_LEGACY |
| 811 | help |
| 812 | The foomatic-filters package was removed. |
| 813 | |
Gustavo Zacarias | 7bd9dbc | 2016-03-11 11:32:19 -0300 | [diff] [blame] | 814 | config BR2_PACKAGE_SAMBA |
| 815 | bool "samba" |
| 816 | select BR2_LEGACY |
| 817 | help |
| 818 | The samba package was removed in favour of samba4 since the |
| 819 | 3.x series isn't supported by upstream any longer. |
| 820 | |
Bernd Kuhls | 6922b41 | 2016-02-20 23:09:11 +0100 | [diff] [blame] | 821 | config BR2_PACKAGE_KODI_WAVPACK |
| 822 | bool "wavpack" |
| 823 | select BR2_LEGACY |
| 824 | help |
| 825 | wavpack support was removed in favour of ffmpeg: |
| 826 | https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4 |
| 827 | |
Bernd Kuhls | 75ce17d | 2016-02-20 23:09:07 +0100 | [diff] [blame] | 828 | config BR2_PACKAGE_KODI_RSXS |
| 829 | bool "rsxs support in Kodi was moved to an addon" |
| 830 | select BR2_LEGACY |
| 831 | select BR2_PACKAGE_KODI_SCREENSAVER_RSXS |
| 832 | help |
| 833 | rsxs support in Kodi was moved to an addon |
| 834 | |
Bernd Kuhls | 56b80ec | 2016-02-20 23:09:06 +0100 | [diff] [blame] | 835 | config BR2_PACKAGE_KODI_GOOM |
| 836 | bool "Goom support in Kodi was moved to an addon" |
| 837 | select BR2_LEGACY |
| 838 | select BR2_PACKAGE_KODI_VISUALISATION_GOOM |
| 839 | help |
| 840 | Goom support in Kodi was moved to an addon |
| 841 | |
Gabe Evans | e5a073a | 2016-02-25 21:55:11 +0000 | [diff] [blame] | 842 | config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS |
| 843 | bool "systemd all extras option has been removed" |
| 844 | select BR2_LEGACY |
| 845 | select BR2_PACKAGE_XZ |
| 846 | select BR2_PACKAGE_LIBGCRYPT |
| 847 | help |
| 848 | The systemd option to enable "all extras" has been |
| 849 | removed. To get the same features, the libgcrypt and xz |
| 850 | package should now be enabled. |
| 851 | |
Gustavo Zacarias | 8c0a367 | 2016-02-24 17:25:50 -0300 | [diff] [blame] | 852 | config BR2_GCC_VERSION_4_5_X |
| 853 | bool "gcc 4.5.x has been removed" |
| 854 | select BR2_LEGACY |
| 855 | help |
| 856 | The 4.5.x version of gcc has been removed. Use a newer |
| 857 | version instead. |
| 858 | |
Bernd Kuhls | 007c2ce | 2016-02-08 20:56:41 +0100 | [diff] [blame] | 859 | config BR2_PACKAGE_SQLITE_READLINE |
Danomi Manchego | 62da71c | 2016-12-19 22:12:32 -0500 | [diff] [blame] | 860 | bool "sqlite command-line editing support was updated" |
Bernd Kuhls | 007c2ce | 2016-02-08 20:56:41 +0100 | [diff] [blame] | 861 | select BR2_PACKAGE_NCURSES |
| 862 | select BR2_PACKAGE_READLINE |
| 863 | select BR2_LEGACY |
| 864 | help |
| 865 | This option was removed in favour of the sqlite package |
| 866 | deciding itself depending on the enabled packages whether |
| 867 | command-line editing should be enabled, it also also takes |
| 868 | libedit into account. |
| 869 | |
Thomas Petazzoni | 2661c4f | 2016-02-29 23:11:38 +0100 | [diff] [blame] | 870 | ############################################################################### |
Luca Ceresoli | f0c9470 | 2015-11-27 18:38:00 +0100 | [diff] [blame] | 871 | comment "Legacy options removed in 2016.02" |
| 872 | |
Bernd Kuhls | f39ac4d | 2016-02-10 21:58:17 +0100 | [diff] [blame] | 873 | config BR2_PACKAGE_DOVECOT_BZIP2 |
| 874 | bool "bzip2 support option has been removed" |
| 875 | select BR2_LEGACY |
| 876 | select BR2_PACKAGE_BZIP2 |
| 877 | help |
| 878 | Bzip2 support is built if the bzip2 package is selected. |
| 879 | |
| 880 | config BR2_PACKAGE_DOVECOT_ZLIB |
| 881 | bool "zlib support option has been removed" |
| 882 | select BR2_LEGACY |
| 883 | select BR2_PACKAGE_ZLIB |
| 884 | help |
| 885 | Zlib support is built if the zlib package is selected. |
| 886 | |
James Knight | ead1df4 | 2016-02-12 11:40:05 -0500 | [diff] [blame] | 887 | config BR2_PACKAGE_E2FSPROGS_FINDFS |
| 888 | bool "e2fsprogs findfs option has been removed" |
| 889 | select BR2_LEGACY |
| 890 | help |
| 891 | This option attempted to enable findfs capabilities from |
| 892 | e2fsprogs but has not worked since July 2015 (due to |
| 893 | packaging changes). One can use BusyBox's findfs support or |
Phil Eichinger | 860020f | 2016-12-01 15:45:33 +0100 | [diff] [blame] | 894 | enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option. |
James Knight | ead1df4 | 2016-02-12 11:40:05 -0500 | [diff] [blame] | 895 | |
Romain Naour | b1063a0 | 2016-02-07 17:56:56 +0100 | [diff] [blame] | 896 | config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL |
| 897 | bool "openpowerlink debug option has been removed" |
| 898 | select BR2_LEGACY |
| 899 | help |
| 900 | This option depends on BR2_ENABLE_DEBUG which should not be used |
| 901 | by packages anymore. |
| 902 | |
| 903 | config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE |
| 904 | bool "openpowerlink package has been updated" |
| 905 | select BR2_LEGACY |
| 906 | select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB |
| 907 | help |
| 908 | openpowerlink kernel modules are built if the |
| 909 | kernel stack library is selected. |
| 910 | |
| 911 | config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP |
| 912 | bool "openpowerlink package has been updated" |
| 913 | select BR2_LEGACY |
| 914 | select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB |
| 915 | help |
| 916 | The user space support has been split in two part: |
| 917 | - a monolitic user space library |
| 918 | - a user spae deamon driver |
| 919 | |
Yann E. MORIN | e3e0583 | 2016-02-06 00:06:17 +0100 | [diff] [blame] | 920 | config BR2_LINUX_KERNEL_SAME_AS_HEADERS |
| 921 | bool "using the linux headers version for the kernel has been removed" |
| 922 | select BR2_LEGACY |
| 923 | help |
| 924 | The option to use the version of the kernel headers for the |
| 925 | kernel to build has been removed. |
| 926 | |
| 927 | There is now the converse, better-suited and more versatile |
| 928 | option to use the kernel version for the linux headers. |
| 929 | |
Olivier Schonken | d37ce8e | 2016-01-21 00:17:43 +0200 | [diff] [blame] | 930 | config BR2_PACKAGE_CUPS_PDFTOPS |
| 931 | bool "Pdftops support has been removed from Cups" |
| 932 | select BR2_LEGACY |
| 933 | help |
| 934 | Pdftops support has been removed from the cups package |
| 935 | It is now part of the cups-filters package. |
| 936 | |
Gustavo Zacarias | d8da5f1 | 2016-01-20 13:53:39 -0300 | [diff] [blame] | 937 | config BR2_KERNEL_HEADERS_3_16 |
| 938 | bool "kernel headers version 3.16.x are no longer supported" |
Gustavo Zacarias | 6be2262 | 2016-12-20 11:48:26 -0300 | [diff] [blame] | 939 | select BR2_KERNEL_HEADERS_3_12 |
Gustavo Zacarias | d8da5f1 | 2016-01-20 13:53:39 -0300 | [diff] [blame] | 940 | select BR2_LEGACY |
| 941 | help |
| 942 | Version 3.16.x of the Linux kernel headers have been deprecated |
| 943 | for more than four buildroot releases and are now removed. |
Gustavo Zacarias | 6be2262 | 2016-12-20 11:48:26 -0300 | [diff] [blame] | 944 | As an alternative, version 3.12.x of the headers have been |
Gustavo Zacarias | d8da5f1 | 2016-01-20 13:53:39 -0300 | [diff] [blame] | 945 | automatically selected in your configuration. |
| 946 | |
Yegor Yefremov | af45a4f | 2015-12-19 21:42:53 +0100 | [diff] [blame] | 947 | config BR2_PACKAGE_PYTHON_PYXML |
| 948 | bool "python-pyxml package has been removed" |
| 949 | select BR2_LEGACY |
| 950 | help |
| 951 | PyXML is obsolete and its functionality is covered either via |
| 952 | native Python XML support or python-lxml package. |
| 953 | |
Steven Noonan | d29c719 | 2015-12-27 12:07:31 +0100 | [diff] [blame] | 954 | # BR2_ENABLE_SSP is still referenced in Config.in (default in choice) |
| 955 | config BR2_ENABLE_SSP |
| 956 | bool "Stack Smashing protection now has different levels" |
| 957 | help |
| 958 | The protection offered by SSP can now be selected from different |
| 959 | protection levels. Be sure to review the SSP level in the build |
| 960 | options menu. |
| 961 | |
Gustavo Zacarias | 1e3d2ca | 2015-12-20 09:44:37 -0300 | [diff] [blame] | 962 | config BR2_PACKAGE_DIRECTFB_CLE266 |
Gustavo Zacarias | e989ddb | 2015-12-21 19:11:08 -0300 | [diff] [blame] | 963 | bool "cle266 driver for directfb removed" |
Gustavo Zacarias | 1e3d2ca | 2015-12-20 09:44:37 -0300 | [diff] [blame] | 964 | select BR2_LEGACY |
| 965 | help |
| 966 | The cle266 directfb driver support has been removed. |
| 967 | It doesn't build in the latest version and it's unlikely |
| 968 | anyone has any use for it. |
| 969 | |
| 970 | config BR2_PACKAGE_DIRECTFB_UNICHROME |
Gustavo Zacarias | e989ddb | 2015-12-21 19:11:08 -0300 | [diff] [blame] | 971 | bool "unichrome driver for directfb removed" |
Gustavo Zacarias | 1e3d2ca | 2015-12-20 09:44:37 -0300 | [diff] [blame] | 972 | select BR2_LEGACY |
| 973 | help |
| 974 | The unichrome directfb driver support has been removed. |
| 975 | It doesn't build in the latest version and it's unlikely |
| 976 | anyone has any use for it. |
| 977 | |
Romain Naour | 820e168 | 2015-12-19 17:39:14 +0100 | [diff] [blame] | 978 | config BR2_PACKAGE_LIBELEMENTARY |
| 979 | bool "libelementary has been renamed to elementary" |
| 980 | select BR2_LEGACY |
| 981 | select BR2_PACKAGE_ELEMENTARY |
| 982 | help |
| 983 | The libelementary package has been renamed to match the upstream |
| 984 | name. |
| 985 | |
Romain Naour | a9d1f5f | 2015-12-15 23:40:38 +0100 | [diff] [blame] | 986 | config BR2_PACKAGE_LIBEINA |
| 987 | bool "libeina package has been removed" |
| 988 | select BR2_LEGACY |
| 989 | select BR2_PACKAGE_EFL |
| 990 | help |
Romain Naour | 1f83a7a | 2015-12-19 17:39:16 +0100 | [diff] [blame] | 991 | With EFL 1.15, libeina is now provided by the efl package. |
Romain Naour | a9d1f5f | 2015-12-15 23:40:38 +0100 | [diff] [blame] | 992 | |
Romain Naour | 49700f0 | 2015-12-15 23:40:37 +0100 | [diff] [blame] | 993 | config BR2_PACKAGE_LIBEET |
| 994 | bool "libeet package has been removed" |
| 995 | select BR2_LEGACY |
| 996 | select BR2_PACKAGE_EFL |
| 997 | help |
Romain Naour | 1f83a7a | 2015-12-19 17:39:16 +0100 | [diff] [blame] | 998 | With EFL 1.15, libeet is now provided by the efl package. |
Romain Naour | 49700f0 | 2015-12-15 23:40:37 +0100 | [diff] [blame] | 999 | |
Romain Naour | e5989d6 | 2015-12-15 23:40:36 +0100 | [diff] [blame] | 1000 | config BR2_PACKAGE_LIBEVAS |
| 1001 | bool "libevas package has been removed" |
| 1002 | select BR2_LEGACY |
| 1003 | select BR2_PACKAGE_EFL |
| 1004 | help |
Romain Naour | 1f83a7a | 2015-12-19 17:39:16 +0100 | [diff] [blame] | 1005 | With EFL 1.15, libevas is now provided by the efl package. |
Romain Naour | e5989d6 | 2015-12-15 23:40:36 +0100 | [diff] [blame] | 1006 | |
Romain Naour | 1fe1b60 | 2015-12-15 23:40:35 +0100 | [diff] [blame] | 1007 | config BR2_PACKAGE_LIBECORE |
| 1008 | bool "libecore package has been removed" |
| 1009 | select BR2_LEGACY |
| 1010 | select BR2_PACKAGE_EFL |
| 1011 | help |
Romain Naour | 1f83a7a | 2015-12-19 17:39:16 +0100 | [diff] [blame] | 1012 | With EFL 1.15, libecore is now provided by the efl package. |
Romain Naour | 1fe1b60 | 2015-12-15 23:40:35 +0100 | [diff] [blame] | 1013 | |
Romain Naour | 8c05c38 | 2015-12-15 23:40:34 +0100 | [diff] [blame] | 1014 | config BR2_PACKAGE_LIBEDBUS |
| 1015 | bool "libedbus package has been removed" |
| 1016 | select BR2_LEGACY |
| 1017 | select BR2_PACKAGE_EFL |
| 1018 | help |
Romain Naour | 1f83a7a | 2015-12-19 17:39:16 +0100 | [diff] [blame] | 1019 | With EFL 1.15, libedbus is now provided by the efl package. |
Romain Naour | 8c05c38 | 2015-12-15 23:40:34 +0100 | [diff] [blame] | 1020 | |
Romain Naour | d2b042c | 2015-12-15 23:40:33 +0100 | [diff] [blame] | 1021 | config BR2_PACKAGE_LIBEFREET |
| 1022 | bool "libefreet package has been removed" |
| 1023 | select BR2_LEGACY |
| 1024 | select BR2_PACKAGE_EFL |
| 1025 | help |
Romain Naour | 1f83a7a | 2015-12-19 17:39:16 +0100 | [diff] [blame] | 1026 | With EFL 1.15, libefreet is now provided by the efl package. |
Romain Naour | d2b042c | 2015-12-15 23:40:33 +0100 | [diff] [blame] | 1027 | |
Romain Naour | e155c95 | 2015-12-15 23:40:32 +0100 | [diff] [blame] | 1028 | config BR2_PACKAGE_LIBEIO |
| 1029 | bool "libeio package has been removed" |
| 1030 | select BR2_LEGACY |
| 1031 | select BR2_PACKAGE_EFL |
| 1032 | help |
Romain Naour | 1f83a7a | 2015-12-19 17:39:16 +0100 | [diff] [blame] | 1033 | With EFL 1.15, libeio is now provided by the efl package. |
Romain Naour | e155c95 | 2015-12-15 23:40:32 +0100 | [diff] [blame] | 1034 | |
Romain Naour | b728fb7 | 2015-12-15 23:40:31 +0100 | [diff] [blame] | 1035 | config BR2_PACKAGE_LIBEMBRYO |
| 1036 | bool "libembryo package has been removed" |
| 1037 | select BR2_LEGACY |
| 1038 | select BR2_PACKAGE_EFL |
| 1039 | help |
Romain Naour | 1f83a7a | 2015-12-19 17:39:16 +0100 | [diff] [blame] | 1040 | With EFL 1.15, libembryo is now provided by the efl package. |
Romain Naour | b728fb7 | 2015-12-15 23:40:31 +0100 | [diff] [blame] | 1041 | |
Romain Naour | 4c93c10 | 2015-12-15 23:40:30 +0100 | [diff] [blame] | 1042 | config BR2_PACKAGE_LIBEDJE |
| 1043 | bool "libedje package has been removed" |
| 1044 | select BR2_LEGACY |
| 1045 | select BR2_PACKAGE_EFL |
| 1046 | help |
Romain Naour | 1f83a7a | 2015-12-19 17:39:16 +0100 | [diff] [blame] | 1047 | With EFL 1.15, libedje is now provided by the efl package. |
Romain Naour | 4c93c10 | 2015-12-15 23:40:30 +0100 | [diff] [blame] | 1048 | |
Romain Naour | 905dba1 | 2015-12-15 23:40:29 +0100 | [diff] [blame] | 1049 | config BR2_PACKAGE_LIBETHUMB |
| 1050 | bool "libethumb package has been removed" |
| 1051 | select BR2_LEGACY |
| 1052 | select BR2_PACKAGE_EFL |
| 1053 | help |
Romain Naour | 1f83a7a | 2015-12-19 17:39:16 +0100 | [diff] [blame] | 1054 | With EFL 1.15, libethumb is now provided by the efl package. |
Romain Naour | 905dba1 | 2015-12-15 23:40:29 +0100 | [diff] [blame] | 1055 | |
Luca Ceresoli | f0c9470 | 2015-11-27 18:38:00 +0100 | [diff] [blame] | 1056 | config BR2_PACKAGE_INFOZIP |
| 1057 | bool "infozip option has been renamed to zip" |
| 1058 | select BR2_LEGACY |
| 1059 | select BR2_PACKAGE_ZIP |
| 1060 | help |
| 1061 | Info-Zip's Zip package has been renamed from infozip to zip, |
| 1062 | to avoid ambiguities with Info-Zip's UnZip which has been added |
| 1063 | in the unzip package. |
| 1064 | |
Martin Bark | a2d1660 | 2015-12-23 12:16:04 +0000 | [diff] [blame] | 1065 | config BR2_BR2_PACKAGE_NODEJS_0_10_X |
Martin Bark | 75b7049 | 2016-01-30 14:51:00 +0000 | [diff] [blame] | 1066 | bool "nodejs 0.10.x option removed" |
Martin Bark | a2d1660 | 2015-12-23 12:16:04 +0000 | [diff] [blame] | 1067 | select BR2_LEGACY |
| 1068 | select BR2_PACKAGE_NODEJS |
| 1069 | help |
Martin Bark | 75b7049 | 2016-01-30 14:51:00 +0000 | [diff] [blame] | 1070 | nodejs 0.10.x option has been removed. 0.10.x is now |
| 1071 | automatically chosen for ARMv5 architectures only and the latest |
| 1072 | nodejs for all other supported architectures. The correct nodejs |
| 1073 | version has been automatically selected in your configuration. |
Martin Bark | a2d1660 | 2015-12-23 12:16:04 +0000 | [diff] [blame] | 1074 | |
Martin Bark | a314b87 | 2015-12-23 12:16:03 +0000 | [diff] [blame] | 1075 | config BR2_BR2_PACKAGE_NODEJS_0_12_X |
| 1076 | bool "nodejs version 0.12.x has been removed" |
| 1077 | select BR2_LEGACY |
| 1078 | select BR2_PACKAGE_NODEJS |
| 1079 | help |
| 1080 | nodejs version 0.12.x has been removed. As an alternative, |
| 1081 | the latest nodejs version has been automatically selected in |
| 1082 | your configuration. |
| 1083 | |
Martin Bark | 90bf67c | 2015-12-23 12:16:02 +0000 | [diff] [blame] | 1084 | config BR2_BR2_PACKAGE_NODEJS_4_X |
| 1085 | bool "nodejs version 4.x has been removed" |
| 1086 | select BR2_LEGACY |
| 1087 | select BR2_PACKAGE_NODEJS |
| 1088 | help |
| 1089 | nodejs version 4.x has been removed. As an alternative, |
| 1090 | the latest nodejs version has been automatically selected in |
| 1091 | your configuration. |
| 1092 | |
Luca Ceresoli | f0c9470 | 2015-11-27 18:38:00 +0100 | [diff] [blame] | 1093 | ############################################################################### |
Thomas Petazzoni | ae46e8f | 2015-09-02 00:01:10 +0200 | [diff] [blame] | 1094 | comment "Legacy options removed in 2015.11" |
| 1095 | |
Peter Seiderer | 301e8ff | 2015-10-15 21:42:43 +0200 | [diff] [blame] | 1096 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL |
| 1097 | bool "gst1-plugins-bad real plugin has been removed" |
| 1098 | select BR2_LEGACY |
| 1099 | help |
| 1100 | The real plugin from GStreamer 1 bad plugins has been |
| 1101 | removed. |
| 1102 | |
Peter Seiderer | f7dd5cb | 2015-10-07 23:56:48 +0200 | [diff] [blame] | 1103 | config BR2_PACKAGE_MEDIA_CTL |
| 1104 | bool "media-ctl package has been removed" |
| 1105 | select BR2_LEGACY |
| 1106 | select BR2_PACKAGE_LIBV4L |
| 1107 | select BR2_PACKAGE_LIBV4L_UTILS |
| 1108 | help |
| 1109 | media-ctl source and developement have been moved to |
| 1110 | v4l-utils since June 2014. For an up-to-date media-ctl |
| 1111 | version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS. |
| 1112 | |
Romain Naour | f803133 | 2015-10-03 18:35:05 +0200 | [diff] [blame] | 1113 | config BR2_PACKAGE_SCHIFRA |
| 1114 | bool "schifra package has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1115 | select BR2_LEGACY |
Romain Naour | f803133 | 2015-10-03 18:35:05 +0200 | [diff] [blame] | 1116 | help |
| 1117 | Schifra package has been maked broken since 2014.11 release and |
| 1118 | haven't been fixed since then. |
| 1119 | |
Maxime Hadjinlian | 7e5ddbc | 2015-07-26 22:38:27 +0200 | [diff] [blame] | 1120 | config BR2_PACKAGE_ZXING |
| 1121 | bool "zxing option has been renamed" |
| 1122 | select BR2_LEGACY |
| 1123 | select BR2_PACKAGE_ZXING_CPP |
| 1124 | help |
| 1125 | ZXing no longer provides the cpp bindings, it has been renamed to |
| 1126 | BR2_PACKAGE_ZXING_CPP which uses a new upstream. |
| 1127 | |
Yann E. MORIN | 4d131b4 | 2015-09-06 21:54:21 +0200 | [diff] [blame] | 1128 | # Since FreeRDP has new dependencies, protect this legacy to avoid the |
| 1129 | # infamous "unmet direct dependencies" kconfig error. |
| 1130 | config BR2_PACKAGE_FREERDP_CLIENT |
| 1131 | bool "freerdp client option renamed" |
| 1132 | depends on BR2_PACKAGE_FREERDP |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1133 | select BR2_LEGACY |
Yann E. MORIN | 4d131b4 | 2015-09-06 21:54:21 +0200 | [diff] [blame] | 1134 | select BR2_PACKAGE_FREERDP_CLIENT_X11 |
| 1135 | |
Gustavo Zacarias | a658c4d | 2015-09-01 15:45:32 -0300 | [diff] [blame] | 1136 | config BR2_PACKAGE_BLACKBOX |
| 1137 | bool "blackbox package has been removed" |
| 1138 | select BR2_LEGACY |
| 1139 | help |
| 1140 | Upstream is dead and the package has been deprecated for |
| 1141 | some time. There are other alternative maintained WMs. |
| 1142 | |
Gustavo Zacarias | 4ac4bc3 | 2015-09-01 15:45:31 -0300 | [diff] [blame] | 1143 | config BR2_KERNEL_HEADERS_3_0 |
| 1144 | bool "kernel headers version 3.0.x are no longer supported" |
| 1145 | select BR2_KERNEL_HEADERS_3_2 |
| 1146 | select BR2_LEGACY |
| 1147 | help |
| 1148 | Version 3.0.x of the Linux kernel headers have been deprecated |
| 1149 | for more than four buildroot releases and are now removed. |
| 1150 | As an alternative, version 3.2.x of the headers have been |
| 1151 | automatically selected in your configuration. |
| 1152 | |
| 1153 | config BR2_KERNEL_HEADERS_3_11 |
| 1154 | bool "kernel headers version 3.11.x are no longer supported" |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 1155 | select BR2_KERNEL_HEADERS_3_10 |
Gustavo Zacarias | 4ac4bc3 | 2015-09-01 15:45:31 -0300 | [diff] [blame] | 1156 | select BR2_LEGACY |
| 1157 | help |
| 1158 | Version 3.11.x of the Linux kernel headers have been deprecated |
| 1159 | for more than four buildroot releases and are now removed. |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 1160 | As an alternative, version 3.10.x of the headers have been |
Gustavo Zacarias | 4ac4bc3 | 2015-09-01 15:45:31 -0300 | [diff] [blame] | 1161 | automatically selected in your configuration. |
| 1162 | |
| 1163 | config BR2_KERNEL_HEADERS_3_13 |
| 1164 | bool "kernel headers version 3.13.x are no longer supported" |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 1165 | select BR2_KERNEL_HEADERS_3_12 |
Gustavo Zacarias | 4ac4bc3 | 2015-09-01 15:45:31 -0300 | [diff] [blame] | 1166 | select BR2_LEGACY |
| 1167 | help |
| 1168 | Version 3.13.x of the Linux kernel headers have been deprecated |
| 1169 | for more than four buildroot releases and are now removed. |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 1170 | As an alternative, version 3.12.x of the headers have been |
Gustavo Zacarias | 4ac4bc3 | 2015-09-01 15:45:31 -0300 | [diff] [blame] | 1171 | automatically selected in your configuration. |
| 1172 | |
| 1173 | config BR2_KERNEL_HEADERS_3_15 |
| 1174 | bool "kernel headers version 3.15.x are no longer supported" |
Gustavo Zacarias | 6be2262 | 2016-12-20 11:48:26 -0300 | [diff] [blame] | 1175 | select BR2_KERNEL_HEADERS_3_12 |
Gustavo Zacarias | 4ac4bc3 | 2015-09-01 15:45:31 -0300 | [diff] [blame] | 1176 | select BR2_LEGACY |
| 1177 | help |
| 1178 | Version 3.15.x of the Linux kernel headers have been deprecated |
| 1179 | for more than four buildroot releases and are now removed. |
Gustavo Zacarias | 6be2262 | 2016-12-20 11:48:26 -0300 | [diff] [blame] | 1180 | As an alternative, version 3.12.x of the headers have been |
Gustavo Zacarias | 4ac4bc3 | 2015-09-01 15:45:31 -0300 | [diff] [blame] | 1181 | automatically selected in your configuration. |
| 1182 | |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1183 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI |
| 1184 | bool "DirectFB example df_andi has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1185 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1186 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1187 | help |
| 1188 | The per-DirectFB example options have been removed. The |
| 1189 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1190 | examples. |
| 1191 | |
| 1192 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD |
| 1193 | bool "DirectFB example df_bltload has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1194 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1195 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1196 | help |
| 1197 | The per-DirectFB example options have been removed. The |
| 1198 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1199 | examples. |
| 1200 | |
| 1201 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD |
| 1202 | bool "DirectFB example df_cpuload has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1203 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1204 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1205 | help |
| 1206 | The per-DirectFB example options have been removed. The |
| 1207 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1208 | examples. |
| 1209 | |
| 1210 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER |
| 1211 | bool "DirectFB example df_databuffer has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1212 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1213 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1214 | help |
| 1215 | The per-DirectFB example options have been removed. The |
| 1216 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1217 | examples. |
| 1218 | |
| 1219 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD |
| 1220 | bool "DirectFB example df_dioload has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1221 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1222 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1223 | help |
| 1224 | The per-DirectFB example options have been removed. The |
| 1225 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1226 | examples. |
| 1227 | |
| 1228 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK |
| 1229 | bool "DirectFB example df_dok has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1230 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1231 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1232 | help |
| 1233 | The per-DirectFB example options have been removed. The |
| 1234 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1235 | examples. |
| 1236 | |
| 1237 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST |
| 1238 | bool "DirectFB example df_drivertest has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1239 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1240 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1241 | help |
| 1242 | The per-DirectFB example options have been removed. The |
| 1243 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1244 | examples. |
| 1245 | |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1246 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE |
| 1247 | bool "DirectFB example df_fire has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1248 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1249 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1250 | help |
| 1251 | The per-DirectFB example options have been removed. The |
| 1252 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1253 | examples. |
| 1254 | |
| 1255 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP |
| 1256 | bool "DirectFB example df_flip has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1257 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1258 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1259 | help |
| 1260 | The per-DirectFB example options have been removed. The |
| 1261 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1262 | examples. |
| 1263 | |
| 1264 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS |
| 1265 | bool "DirectFB example df_fonts has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1266 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1267 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1268 | help |
| 1269 | The per-DirectFB example options have been removed. The |
| 1270 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1271 | examples. |
| 1272 | |
| 1273 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT |
| 1274 | bool "DirectFB example df_input has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1275 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1276 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1277 | help |
| 1278 | The per-DirectFB example options have been removed. The |
| 1279 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1280 | examples. |
| 1281 | |
| 1282 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK |
| 1283 | bool "DirectFB example df_joystick has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1284 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1285 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1286 | help |
| 1287 | The per-DirectFB example options have been removed. The |
| 1288 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1289 | examples. |
| 1290 | |
| 1291 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES |
| 1292 | bool "DirectFB example df_knuckles has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1293 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1294 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1295 | help |
| 1296 | The per-DirectFB example options have been removed. The |
| 1297 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1298 | examples. |
| 1299 | |
| 1300 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER |
| 1301 | bool "DirectFB example df_layer has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1302 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1303 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1304 | help |
| 1305 | The per-DirectFB example options have been removed. The |
| 1306 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1307 | examples. |
| 1308 | |
| 1309 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX |
| 1310 | bool "DirectFB example df_matrix has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1311 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1312 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1313 | help |
| 1314 | The per-DirectFB example options have been removed. The |
| 1315 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1316 | examples. |
| 1317 | |
| 1318 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER |
| 1319 | bool "DirectFB example df_matrix_water has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1320 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1321 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1322 | help |
| 1323 | The per-DirectFB example options have been removed. The |
| 1324 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1325 | examples. |
| 1326 | |
| 1327 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO |
| 1328 | bool "DirectFB example df_neo has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1329 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1330 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1331 | help |
| 1332 | The per-DirectFB example options have been removed. The |
| 1333 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1334 | examples. |
| 1335 | |
| 1336 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD |
| 1337 | bool "DirectFB example df_netload has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1338 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1339 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1340 | help |
| 1341 | The per-DirectFB example options have been removed. The |
| 1342 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1343 | examples. |
| 1344 | |
| 1345 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE |
| 1346 | bool "DirectFB example df_palette has been removed" |
| 1347 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1348 | help |
| 1349 | The per-DirectFB example options have been removed. The |
| 1350 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1351 | examples. |
| 1352 | |
| 1353 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE |
| 1354 | bool "DirectFB example df_particle has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1355 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1356 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1357 | help |
| 1358 | The per-DirectFB example options have been removed. The |
| 1359 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1360 | examples. |
| 1361 | |
| 1362 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER |
| 1363 | bool "DirectFB example df_porter has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1364 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1365 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1366 | help |
| 1367 | The per-DirectFB example options have been removed. The |
| 1368 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1369 | examples. |
| 1370 | |
| 1371 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS |
| 1372 | bool "DirectFB example df_stress has been removed" |
| 1373 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1374 | help |
| 1375 | The per-DirectFB example options have been removed. The |
| 1376 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1377 | examples. |
| 1378 | |
| 1379 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE |
| 1380 | bool "DirectFB example df_texture has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1381 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1382 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1383 | help |
| 1384 | The per-DirectFB example options have been removed. The |
| 1385 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1386 | examples. |
| 1387 | |
| 1388 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO |
| 1389 | bool "DirectFB example df_video has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1390 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1391 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1392 | help |
| 1393 | The per-DirectFB example options have been removed. The |
| 1394 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1395 | examples. |
| 1396 | |
| 1397 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE |
| 1398 | bool "DirectFB example df_video_particle has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1399 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1400 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1401 | help |
| 1402 | The per-DirectFB example options have been removed. The |
| 1403 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1404 | examples. |
| 1405 | |
| 1406 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW |
| 1407 | bool "DirectFB example df_window has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1408 | select BR2_LEGACY |
Thomas Petazzoni | 80404e8 | 2015-09-02 00:01:14 +0200 | [diff] [blame] | 1409 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
| 1410 | help |
| 1411 | The per-DirectFB example options have been removed. The |
| 1412 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all |
| 1413 | examples. |
| 1414 | |
Gary Bisson | 2b78fb2 | 2015-09-23 15:39:27 +0200 | [diff] [blame] | 1415 | config BR2_PACKAGE_KOBS_NG |
| 1416 | bool "kobs-ng was replaced by imx-kobs" |
| 1417 | select BR2_LEGACY |
| 1418 | select BR2_PACKAGE_IMX_KOBS |
| 1419 | help |
| 1420 | The outdated kobs-ng has been replaced by the Freescale- |
| 1421 | maintained imx-kobs package. |
| 1422 | |
Thomas Petazzoni | 11573f5 | 2015-09-02 00:01:11 +0200 | [diff] [blame] | 1423 | config BR2_PACKAGE_SAWMAN |
| 1424 | bool "sawman package removed" |
| 1425 | select BR2_LEGACY |
| 1426 | select BR2_PACKAGE_DIRECTFB_SAWMAN |
| 1427 | help |
| 1428 | This option has been removed because the sawman package no |
| 1429 | longer exists: it was merged inside DirectFB itself. This |
| 1430 | feature can now be enabled using the |
| 1431 | BR2_PACKAGE_DIRECTFB_SAWMAN option. |
| 1432 | |
Thomas Petazzoni | ae46e8f | 2015-09-02 00:01:10 +0200 | [diff] [blame] | 1433 | config BR2_PACKAGE_DIVINE |
| 1434 | bool "divine package removed" |
| 1435 | select BR2_LEGACY |
| 1436 | select BR2_PACKAGE_DIRECTFB_DIVINE |
| 1437 | help |
| 1438 | This option has been removed because the divine package no |
| 1439 | longer exists: it was merged inside DirectFB itself. This |
| 1440 | feature can now be enabled using the |
| 1441 | BR2_PACKAGE_DIRECTFB_DIVINE option. |
| 1442 | |
| 1443 | ############################################################################### |
Gustavo Zacarias | 16b8e81 | 2015-06-02 14:52:12 -0300 | [diff] [blame] | 1444 | comment "Legacy options removed in 2015.08" |
| 1445 | |
Bernd Kuhls | 9d9f1a9 | 2015-07-22 22:30:34 +0200 | [diff] [blame] | 1446 | config BR2_PACKAGE_KODI_PVR_ADDONS |
| 1447 | bool "Kodi PVR addon was split" |
| 1448 | select BR2_LEGACY |
Bernd Kuhls | 2579ec2 | 2015-07-22 22:30:36 +0200 | [diff] [blame] | 1449 | select BR2_PACKAGE_KODI_PVR_ARGUSTV |
Bernd Kuhls | a69eca4 | 2015-07-22 22:30:37 +0200 | [diff] [blame] | 1450 | select BR2_PACKAGE_KODI_PVR_DVBLINK |
Bernd Kuhls | 6894c6c | 2015-07-22 22:30:38 +0200 | [diff] [blame] | 1451 | select BR2_PACKAGE_KODI_PVR_DVBVIEWER |
Bernd Kuhls | 313e45c | 2015-07-22 22:30:39 +0200 | [diff] [blame] | 1452 | select BR2_PACKAGE_KODI_PVR_FILMON |
Bernd Kuhls | 6940d66 | 2015-07-22 22:30:40 +0200 | [diff] [blame] | 1453 | select BR2_PACKAGE_KODI_PVR_HTS |
Bernd Kuhls | 8c326ff | 2015-07-22 22:30:41 +0200 | [diff] [blame] | 1454 | select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE |
Bernd Kuhls | a571287 | 2015-07-22 22:30:42 +0200 | [diff] [blame] | 1455 | select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER |
Bernd Kuhls | afb2f15 | 2015-07-22 22:30:43 +0200 | [diff] [blame] | 1456 | select BR2_PACKAGE_KODI_PVR_MYTHTV |
Bernd Kuhls | 0757c7d | 2015-07-22 22:30:44 +0200 | [diff] [blame] | 1457 | select BR2_PACKAGE_KODI_PVR_NEXTPVR |
Bernd Kuhls | 805e9c1 | 2015-07-22 22:30:45 +0200 | [diff] [blame] | 1458 | select BR2_PACKAGE_KODI_PVR_NJOY |
Bernd Kuhls | 8776003 | 2015-07-22 22:30:46 +0200 | [diff] [blame] | 1459 | select BR2_PACKAGE_KODI_PVR_PCTV |
Bernd Kuhls | 70cf949 | 2015-07-22 22:30:47 +0200 | [diff] [blame] | 1460 | select BR2_PACKAGE_KODI_PVR_STALKER |
Bernd Kuhls | 610a370 | 2015-07-22 22:30:48 +0200 | [diff] [blame] | 1461 | select BR2_PACKAGE_KODI_PVR_VBOX |
Bernd Kuhls | 7457d48 | 2015-07-22 22:30:49 +0200 | [diff] [blame] | 1462 | select BR2_PACKAGE_KODI_PVR_VDR_VNSI |
Bernd Kuhls | eaf250c | 2015-07-22 22:30:50 +0200 | [diff] [blame] | 1463 | select BR2_PACKAGE_KODI_PVR_VUPLUS |
Bernd Kuhls | 967a4e9 | 2015-07-22 22:30:51 +0200 | [diff] [blame] | 1464 | select BR2_PACKAGE_KODI_PVR_WMC |
Bernd Kuhls | 9d9f1a9 | 2015-07-22 22:30:34 +0200 | [diff] [blame] | 1465 | help |
| 1466 | Kodi PVR addon was split into seperate modules |
| 1467 | |
Gustavo Zacarias | f84cc20 | 2015-07-28 10:48:21 -0300 | [diff] [blame] | 1468 | config BR2_BINUTILS_VERSION_2_23_2 |
| 1469 | bool "binutils 2.23 option renamed" |
| 1470 | select BR2_LEGACY |
Gustavo Zacarias | f84cc20 | 2015-07-28 10:48:21 -0300 | [diff] [blame] | 1471 | help |
Thomas Petazzoni | ae466a6 | 2016-05-17 00:13:01 +0200 | [diff] [blame] | 1472 | Binutils 2.23.2 has been removed, using a newer version is |
| 1473 | recommended. |
Gustavo Zacarias | f84cc20 | 2015-07-28 10:48:21 -0300 | [diff] [blame] | 1474 | |
| 1475 | config BR2_BINUTILS_VERSION_2_24 |
| 1476 | bool "binutils 2.24 option renamed" |
| 1477 | select BR2_LEGACY |
| 1478 | select BR2_BINUTILS_VERSION_2_24_X |
| 1479 | help |
| 1480 | The binutils version option has been renamed to match the |
| 1481 | same patchlevel logic used by gcc. The new option is now |
| 1482 | BR2_BINUTILS_VERSION_2_24_X. |
| 1483 | |
| 1484 | config BR2_BINUTILS_VERSION_2_25 |
| 1485 | bool "binutils 2.25 option renamed" |
| 1486 | select BR2_LEGACY |
| 1487 | select BR2_BINUTILS_VERSION_2_25_X |
| 1488 | help |
| 1489 | The binutils version option has been renamed to match the |
| 1490 | same patchlevel logic used by gcc. The new option is now |
| 1491 | BR2_BINUTILS_VERSION_2_25_X. |
| 1492 | |
Romain Naour | 1326e76 | 2015-07-14 19:35:14 +0200 | [diff] [blame] | 1493 | config BR2_PACKAGE_PERF |
| 1494 | bool "perf option has been renamed" |
| 1495 | select BR2_LEGACY |
| 1496 | select BR2_LINUX_KERNEL_TOOL_PERF |
| 1497 | help |
| 1498 | The perf package has been moved as a Linux tools package, |
| 1499 | and the option to enable it is now |
| 1500 | BR2_LINUX_KERNEL_TOOL_PERF. |
| 1501 | |
Thomas Petazzoni | 2f84595 | 2015-07-11 14:52:53 +0200 | [diff] [blame] | 1502 | config BR2_BINUTILS_VERSION_2_22 |
| 1503 | bool "binutils 2.22 removed" |
| 1504 | select BR2_LEGACY |
| 1505 | help |
| 1506 | Binutils 2.22 has been removed, using a newer version is |
| 1507 | recommended. |
| 1508 | |
Gary Bisson | 4c0613e | 2015-05-26 10:19:37 +0200 | [diff] [blame] | 1509 | config BR2_PACKAGE_GPU_VIV_BIN_MX6Q |
| 1510 | bool "gpu-viv-bin-mx6q" |
| 1511 | select BR2_LEGACY |
| 1512 | select BR2_PACKAGE_IMX_GPU_VIV |
| 1513 | help |
| 1514 | Vivante graphics libraries have been renamed to |
| 1515 | BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package |
| 1516 | name. |
| 1517 | |
Matt Weber | 7742abe | 2015-06-02 08:28:35 -0500 | [diff] [blame] | 1518 | config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS |
| 1519 | depends on BR2_PACKAGE_PYTHON |
| 1520 | bool "libsemanage python bindings removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1521 | select BR2_LEGACY |
Matt Weber | 7742abe | 2015-06-02 08:28:35 -0500 | [diff] [blame] | 1522 | help |
| 1523 | This option has been removed, since the libsemanage Python |
| 1524 | bindings on the target were not useful. |
| 1525 | |
Gustavo Zacarias | 16b8e81 | 2015-06-02 14:52:12 -0300 | [diff] [blame] | 1526 | config BR2_TARGET_UBOOT_NETWORK |
| 1527 | bool "U-Boot custom network settings removed" |
| 1528 | select BR2_LEGACY |
| 1529 | help |
| 1530 | U-Boot's custom network settings options have been removed. |
| 1531 | |
| 1532 | ############################################################################### |
Mike Williams | fd0e5f6 | 2015-03-06 12:17:45 -0500 | [diff] [blame] | 1533 | comment "Legacy options removed in 2015.05" |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 1534 | |
Michał Leśniewski | e3904a8 | 2015-05-19 20:26:30 +0200 | [diff] [blame] | 1535 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K |
| 1536 | bool "jffs2 16kB erasesize NAND flash option renamed" |
| 1537 | select BR2_LEGACY |
| 1538 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K |
| 1539 | help |
| 1540 | The JFFS2 NAND flash options now longer include the page |
| 1541 | size. |
| 1542 | |
| 1543 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K |
| 1544 | bool "jffs2 128kB erasesize NAND flash option renamed" |
| 1545 | select BR2_LEGACY |
| 1546 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K |
| 1547 | help |
| 1548 | The JFFS2 NAND flash options now longer include the page |
| 1549 | size. |
| 1550 | |
Angelo Compagnucci | eff7c14 | 2015-04-30 16:03:15 +0200 | [diff] [blame] | 1551 | config BR2_PACKAGE_MONO_20 |
| 1552 | bool "2.0/3.5 .Net Runtime" |
| 1553 | select BR2_LEGACY |
| 1554 | help |
| 1555 | This option no longer exists, all versions of the .Net |
| 1556 | runtime are now installed. |
| 1557 | |
| 1558 | config BR2_PACKAGE_MONO_40 |
| 1559 | bool "4.0 .Net Runtime" |
| 1560 | select BR2_LEGACY |
| 1561 | help |
| 1562 | This option no longer exists, all versions of the .Net |
| 1563 | runtime are now installed. |
| 1564 | |
| 1565 | config BR2_PACKAGE_MONO_45 |
| 1566 | bool "4.5 .Net Runtime" |
| 1567 | select BR2_LEGACY |
| 1568 | help |
| 1569 | This option no longer exists, all versions of the .Net |
| 1570 | runtime are now installed. |
| 1571 | |
Peter Korsgaard | efd49e3 | 2015-04-27 22:29:05 +0200 | [diff] [blame] | 1572 | config BR2_CIVETWEB_WITH_LUA |
| 1573 | bool "civetweb lua option renamed" |
| 1574 | select BR2_LEGACY |
| 1575 | select BR2_PACKAGE_CIVETWEB_WITH_LUA |
| 1576 | help |
| 1577 | civetweb's lua option has been renamed to |
| 1578 | BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other |
| 1579 | packages name options. |
| 1580 | |
Bernd Kuhls | e6c7ad1 | 2015-04-23 23:18:16 +0200 | [diff] [blame] | 1581 | config BR2_PACKAGE_TIFF_TIFF2PDF |
| 1582 | bool "tiff utility-specific option removed" |
| 1583 | select BR2_LEGACY |
| 1584 | select BR2_PACKAGE_TIFF_UTILITIES |
| 1585 | help |
| 1586 | utility-specific options have been removed in favour of |
| 1587 | the new option BR2_PACKAGE_TIFF_UTILITIES. |
| 1588 | |
| 1589 | config BR2_PACKAGE_TIFF_TIFFCP |
| 1590 | bool "tiff utility-specific option removed" |
| 1591 | select BR2_LEGACY |
| 1592 | select BR2_PACKAGE_TIFF_UTILITIES |
| 1593 | help |
| 1594 | utility-specific options have been removed in favour of |
| 1595 | the new option BR2_PACKAGE_TIFF_UTILITIES. |
| 1596 | |
Thomas Petazzoni | e7035d4 | 2015-04-21 23:36:28 +0200 | [diff] [blame] | 1597 | config BR2_LINUX_KERNEL_EXT_RTAI_PATCH |
| 1598 | bool "RTAI patch file path has been removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1599 | select BR2_LEGACY |
Thomas Petazzoni | e7035d4 | 2015-04-21 23:36:28 +0200 | [diff] [blame] | 1600 | help |
| 1601 | This option has never worked, so it has been removed. |
| 1602 | |
Yann E. MORIN | 0291796 | 2015-03-24 19:54:15 +0100 | [diff] [blame] | 1603 | config BR2_TARGET_GENERIC_PASSWD_DES |
| 1604 | bool "Encoding passwords with DES has been removed" |
| 1605 | select BR2_LEGACY |
| 1606 | help |
| 1607 | Paswords can now only be encoded with either of md5, sha256 or sha512. |
| 1608 | The default is md5, which is stronger that DES (but still pretty weak). |
| 1609 | |
Gustavo Zacarias | 0d31b5e | 2015-04-01 05:56:24 -0300 | [diff] [blame] | 1610 | config BR2_PACKAGE_GTK2_THEME_HICOLOR |
| 1611 | bool "hicolor (default theme) is a duplicate" |
| 1612 | select BR2_LEGACY |
| 1613 | select BR2_PACKAGE_HICOLOR_ICON_THEME |
| 1614 | help |
| 1615 | The option was just a duplicate of hicolor icon theme. |
| 1616 | |
Mike Williams | fd0e5f6 | 2015-03-06 12:17:45 -0500 | [diff] [blame] | 1617 | config BR2_PACKAGE_VALGRIND_PTRCHECK |
| 1618 | bool "valgrind's PTRCheck was renamed to SGCheck" |
| 1619 | select BR2_LEGACY |
| 1620 | select BR2_PACKAGE_VALGRIND_SGCHECK |
| 1621 | help |
| 1622 | PTRCheck was renamed to SGCheck in valgrind |
| 1623 | |
| 1624 | ############################################################################### |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 1625 | comment "Legacy options removed in 2015.02" |
| 1626 | |
Pedro Aguilar | 10900c0 | 2015-02-27 06:38:07 +0200 | [diff] [blame] | 1627 | config BR2_PACKAGE_LIBGC |
| 1628 | bool "libgc package removed" |
| 1629 | select BR2_LEGACY |
| 1630 | select BR2_PACKAGE_BDWGC |
| 1631 | help |
| 1632 | libgc has been removed because we have the same package under a |
| 1633 | different name, bdwgc. |
| 1634 | |
Yann E. MORIN | 8d702ac | 2015-02-07 23:10:14 +0100 | [diff] [blame] | 1635 | config BR2_PACKAGE_WDCTL |
| 1636 | bool "util-linux' wdctl option has been renamed" |
| 1637 | select BR2_LEGACY |
| 1638 | select BR2_PACKAGE_UTIL_LINUX_WDCTL |
| 1639 | help |
| 1640 | util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL |
| 1641 | to be aligned with how the other options are named. |
| 1642 | |
Danomi Manchego | e44edb8 | 2015-07-13 22:57:06 -0400 | [diff] [blame] | 1643 | config BR2_PACKAGE_UTIL_LINUX_ARCH |
| 1644 | bool "util-linux' arch option has been removed" |
| 1645 | select BR2_LEGACY |
| 1646 | help |
| 1647 | util-linux' arch was dropped in util-linux 2.23, in favor of |
| 1648 | the coreutils version. |
| 1649 | |
| 1650 | config BR2_PACKAGE_UTIL_LINUX_DDATE |
| 1651 | bool "util-linux' ddate option has been removed" |
| 1652 | select BR2_LEGACY |
| 1653 | help |
| 1654 | util-linux' ddate was dropped in util-linux 2.23. |
| 1655 | |
Romain Naour | 3c47654 | 2015-01-18 20:53:08 +0100 | [diff] [blame] | 1656 | config BR2_PACKAGE_RPM_BZIP2_PAYLOADS |
| 1657 | bool "rpm's bzip2 payloads option has been removed" |
| 1658 | select BR2_LEGACY |
| 1659 | select BR2_PACKAGE_BZIP2 |
| 1660 | help |
| 1661 | The bzip2 payloads option rely entirely on the dependant package bzip2. |
| 1662 | So, you need to select it to enable this feature. |
| 1663 | |
| 1664 | config BR2_PACKAGE_RPM_XZ_PAYLOADS |
| 1665 | bool "rpm's xz payloads option has been removed" |
| 1666 | select BR2_LEGACY |
| 1667 | select BR2_PACKAGE_XZ |
| 1668 | help |
| 1669 | The xz payloads option rely entirely on the dependant package xz. |
| 1670 | So, you need to select it to enable this feature. |
| 1671 | |
Gustavo Zacarias | 6927bc9 | 2015-01-15 11:30:22 -0300 | [diff] [blame] | 1672 | config BR2_PACKAGE_M4 |
| 1673 | bool "m4 target package removed" |
| 1674 | select BR2_LEGACY |
| 1675 | help |
| 1676 | The m4 target package has been removed, it's been |
| 1677 | deprecated for some time now. |
| 1678 | |
Gustavo Zacarias | aa6ea7a | 2015-01-15 11:30:21 -0300 | [diff] [blame] | 1679 | config BR2_PACKAGE_FLEX_BINARY |
| 1680 | bool "flex binary in target option removed" |
| 1681 | select BR2_LEGACY |
| 1682 | help |
| 1683 | The flex binary in the target option has been removed. |
| 1684 | It's been deprecated for some time now and is essentially a |
| 1685 | development tool which isn't very useful in the target. |
| 1686 | |
Gustavo Zacarias | 38dabc6 | 2015-01-15 11:30:19 -0300 | [diff] [blame] | 1687 | config BR2_PACKAGE_BISON |
| 1688 | bool "bison target package removed" |
| 1689 | select BR2_LEGACY |
| 1690 | help |
| 1691 | The bison target package has been removed, it's been |
| 1692 | deprecated for some time now and is essentially a development |
| 1693 | tool which isn't very useful in the target. |
| 1694 | |
Gustavo Zacarias | 7f9d444 | 2015-01-15 11:30:18 -0300 | [diff] [blame] | 1695 | config BR2_PACKAGE_GOB2 |
| 1696 | bool "gob2 target package removed" |
| 1697 | select BR2_LEGACY |
| 1698 | help |
| 1699 | The gob2 target package has been removed, it's been |
| 1700 | deprecated for some time now and was essentially useless |
| 1701 | without a target toolchain. |
| 1702 | |
Gustavo Zacarias | c2e3d0b | 2015-01-15 11:30:17 -0300 | [diff] [blame] | 1703 | config BR2_PACKAGE_DISTCC |
| 1704 | bool "distcc target package removed" |
| 1705 | select BR2_LEGACY |
| 1706 | help |
| 1707 | The distcc target package has been removed, it's been |
| 1708 | deprecated for some time now and was essentially useless |
| 1709 | without a target toolchain. |
| 1710 | |
Gustavo Zacarias | b64cde6 | 2015-01-15 11:30:16 -0300 | [diff] [blame] | 1711 | config BR2_PACKAGE_HASERL_VERSION_0_8_X |
| 1712 | bool "haserl 0.8.x version removed" |
| 1713 | select BR2_LEGACY |
| 1714 | help |
| 1715 | The 0.8.x version option for haserl has been removed since it |
| 1716 | has been deprecated for some time now. |
| 1717 | You should be able to use the 0.9.x version without issues. |
| 1718 | |
Gustavo Zacarias | 0120d9f | 2015-01-06 07:35:41 -0300 | [diff] [blame] | 1719 | config BR2_PACKAGE_STRONGSWAN_TOOLS |
| 1720 | bool "strongswan option has been removed" |
| 1721 | select BR2_LEGACY |
| 1722 | select BR2_PACKAGE_STRONGSWAN_PKI |
| 1723 | select BR2_PACKAGE_STRONGSWAN_SCEP |
| 1724 | help |
| 1725 | The tools option has been removed upstream and the different tools |
| 1726 | have been split between the pki and scep options, with others |
| 1727 | deprecated. |
| 1728 | |
Bernd Kuhls | db78eb0 | 2014-12-23 18:46:33 +0100 | [diff] [blame] | 1729 | config BR2_PACKAGE_XBMC_ADDON_XVDR |
Arnout Vandecappelle | 1c2a63a | 2016-10-15 16:51:00 +0200 | [diff] [blame] | 1730 | bool "xbmc-addon-xvdr removed" |
Bernd Kuhls | db78eb0 | 2014-12-23 18:46:33 +0100 | [diff] [blame] | 1731 | select BR2_LEGACY |
Bernd Kuhls | db78eb0 | 2014-12-23 18:46:33 +0100 | [diff] [blame] | 1732 | help |
Arnout Vandecappelle | 1c2a63a | 2016-10-15 16:51:00 +0200 | [diff] [blame] | 1733 | According to the github project page: |
| 1734 | https://github.com/pipelka/xbmc-addon-xvdr |
| 1735 | this package is discontinued. |
Bernd Kuhls | db78eb0 | 2014-12-23 18:46:33 +0100 | [diff] [blame] | 1736 | |
Bernd Kuhls | b3df2a3 | 2014-12-23 18:46:30 +0100 | [diff] [blame] | 1737 | config BR2_PACKAGE_XBMC_PVR_ADDONS |
| 1738 | bool "xbmc options have been renamed" |
| 1739 | select BR2_LEGACY |
| 1740 | select BR2_PACKAGE_KODI_PVR_ADDONS |
| 1741 | help |
| 1742 | The XBMC media center project was renamed to Kodi entertainment center |
| 1743 | |
Bernd Kuhls | 3578459 | 2014-12-23 18:46:27 +0100 | [diff] [blame] | 1744 | config BR2_PACKAGE_XBMC |
| 1745 | bool "xbmc options have been renamed" |
| 1746 | select BR2_LEGACY |
| 1747 | select BR2_PACKAGE_KODI |
| 1748 | help |
| 1749 | The XBMC media center project was renamed to Kodi entertainment center |
| 1750 | |
| 1751 | config BR2_PACKAGE_XBMC_ALSA_LIB |
| 1752 | bool "xbmc options have been renamed" |
| 1753 | select BR2_LEGACY |
| 1754 | select BR2_PACKAGE_KODI_ALSA_LIB |
| 1755 | help |
| 1756 | The XBMC media center project was renamed to Kodi entertainment center |
| 1757 | |
| 1758 | config BR2_PACKAGE_XBMC_AVAHI |
| 1759 | bool "xbmc options have been renamed" |
| 1760 | select BR2_LEGACY |
| 1761 | select BR2_PACKAGE_KODI_AVAHI |
| 1762 | help |
| 1763 | The XBMC media center project was renamed to Kodi entertainment center |
| 1764 | |
| 1765 | config BR2_PACKAGE_XBMC_DBUS |
| 1766 | bool "xbmc options have been renamed" |
| 1767 | select BR2_LEGACY |
| 1768 | select BR2_PACKAGE_KODI_DBUS |
| 1769 | help |
| 1770 | The XBMC media center project was renamed to Kodi entertainment center |
| 1771 | |
| 1772 | config BR2_PACKAGE_XBMC_LIBBLURAY |
| 1773 | bool "xbmc options have been renamed" |
| 1774 | select BR2_LEGACY |
| 1775 | select BR2_PACKAGE_KODI_LIBBLURAY |
| 1776 | help |
| 1777 | The XBMC media center project was renamed to Kodi entertainment center |
| 1778 | |
| 1779 | config BR2_PACKAGE_XBMC_GOOM |
| 1780 | bool "xbmc options have been renamed" |
| 1781 | select BR2_LEGACY |
| 1782 | select BR2_PACKAGE_KODI_GOOM |
| 1783 | help |
| 1784 | The XBMC media center project was renamed to Kodi entertainment center |
| 1785 | |
| 1786 | config BR2_PACKAGE_XBMC_RSXS |
| 1787 | bool "xbmc options have been renamed" |
| 1788 | select BR2_LEGACY |
| 1789 | select BR2_PACKAGE_KODI_RSXS |
| 1790 | help |
| 1791 | The XBMC media center project was renamed to Kodi entertainment center |
| 1792 | |
| 1793 | config BR2_PACKAGE_XBMC_LIBCEC |
| 1794 | bool "xbmc options have been renamed" |
| 1795 | select BR2_LEGACY |
| 1796 | select BR2_PACKAGE_KODI_LIBCEC |
| 1797 | help |
| 1798 | The XBMC media center project was renamed to Kodi entertainment center |
| 1799 | |
| 1800 | config BR2_PACKAGE_XBMC_LIBMICROHTTPD |
| 1801 | bool "xbmc options have been renamed" |
| 1802 | select BR2_LEGACY |
| 1803 | select BR2_PACKAGE_KODI_LIBMICROHTTPD |
| 1804 | help |
| 1805 | The XBMC media center project was renamed to Kodi entertainment center |
| 1806 | |
| 1807 | config BR2_PACKAGE_XBMC_LIBNFS |
| 1808 | bool "xbmc options have been renamed" |
| 1809 | select BR2_LEGACY |
| 1810 | select BR2_PACKAGE_KODI_LIBNFS |
| 1811 | help |
| 1812 | The XBMC media center project was renamed to Kodi entertainment center |
| 1813 | |
| 1814 | config BR2_PACKAGE_XBMC_RTMPDUMP |
| 1815 | bool "xbmc options have been renamed" |
| 1816 | select BR2_LEGACY |
| 1817 | select BR2_PACKAGE_KODI_RTMPDUMP |
| 1818 | help |
| 1819 | The XBMC media center project was renamed to Kodi entertainment center |
| 1820 | |
| 1821 | config BR2_PACKAGE_XBMC_LIBSHAIRPLAY |
| 1822 | bool "xbmc options have been renamed" |
| 1823 | select BR2_LEGACY |
| 1824 | select BR2_PACKAGE_KODI_LIBSHAIRPLAY |
| 1825 | help |
| 1826 | The XBMC media center project was renamed to Kodi entertainment center |
| 1827 | |
| 1828 | config BR2_PACKAGE_XBMC_LIBSMBCLIENT |
| 1829 | bool "xbmc options have been renamed" |
| 1830 | select BR2_LEGACY |
| 1831 | select BR2_PACKAGE_KODI_LIBSMBCLIENT |
| 1832 | help |
| 1833 | The XBMC media center project was renamed to Kodi entertainment center |
| 1834 | |
| 1835 | config BR2_PACKAGE_XBMC_LIBTHEORA |
| 1836 | bool "xbmc options have been renamed" |
| 1837 | select BR2_LEGACY |
| 1838 | select BR2_PACKAGE_KODI_LIBTHEORA |
| 1839 | help |
| 1840 | The XBMC media center project was renamed to Kodi entertainment center |
| 1841 | |
| 1842 | config BR2_PACKAGE_XBMC_LIBUSB |
| 1843 | bool "xbmc options have been renamed" |
| 1844 | select BR2_LEGACY |
| 1845 | select BR2_PACKAGE_KODI_LIBUSB |
| 1846 | help |
| 1847 | The XBMC media center project was renamed to Kodi entertainment center |
| 1848 | |
| 1849 | config BR2_PACKAGE_XBMC_LIBVA |
| 1850 | bool "xbmc options have been renamed" |
| 1851 | select BR2_LEGACY |
| 1852 | select BR2_PACKAGE_KODI_LIBVA |
| 1853 | help |
| 1854 | The XBMC media center project was renamed to Kodi entertainment center |
| 1855 | |
| 1856 | config BR2_PACKAGE_XBMC_WAVPACK |
| 1857 | bool "xbmc options have been renamed" |
| 1858 | select BR2_LEGACY |
| 1859 | select BR2_PACKAGE_KODI_WAVPACK |
| 1860 | help |
| 1861 | The XBMC media center project was renamed to Kodi entertainment center |
| 1862 | |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 1863 | config BR2_PREFER_STATIC_LIB |
| 1864 | bool "static library option renamed" |
Samuel Martin | a44b1c1 | 2014-12-14 17:24:24 +0100 | [diff] [blame] | 1865 | select BR2_LEGACY |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 1866 | help |
| 1867 | The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It |
| 1868 | highlights the fact that the option no longer "prefers" |
| 1869 | static libraries, but "enforces" static libraries (i.e |
| 1870 | shared libraries are completely unused). |
| 1871 | |
Samuel Martin | a44b1c1 | 2014-12-14 17:24:24 +0100 | [diff] [blame] | 1872 | Take care of updating the type of libraries you want under the |
| 1873 | "Build options" menu. |
| 1874 | |
Bernd Kuhls | 3578459 | 2014-12-23 18:46:27 +0100 | [diff] [blame] | 1875 | ############################################################################### |
Yann E. MORIN | 120136e | 2014-09-21 20:38:09 +0200 | [diff] [blame] | 1876 | comment "Legacy options removed in 2014.11" |
| 1877 | |
Peter Korsgaard | a52bad8 | 2014-11-09 00:15:24 +0100 | [diff] [blame] | 1878 | config BR2_x86_generic |
| 1879 | bool "x86 generic variant has been removed" |
| 1880 | select BR2_LEGACY |
| 1881 | help |
| 1882 | The generic x86 CPU variant has been removed. Use another |
Baruch Siach | a95e98c | 2014-11-09 07:50:01 +0200 | [diff] [blame] | 1883 | CPU variant instead. |
Peter Korsgaard | a52bad8 | 2014-11-09 00:15:24 +0100 | [diff] [blame] | 1884 | |
Andreas Larsson | 40e18f2 | 2014-10-30 09:29:36 +0100 | [diff] [blame] | 1885 | config BR2_GCC_VERSION_4_4_X |
| 1886 | bool "gcc 4.4.x has been removed" |
| 1887 | select BR2_LEGACY |
| 1888 | help |
| 1889 | The 4.4.x version of gcc has been removed. Use a newer |
| 1890 | version instead. |
| 1891 | |
Andreas Larsson | 43b78e7 | 2014-10-30 09:29:35 +0100 | [diff] [blame] | 1892 | config BR2_sparc_sparchfleon |
| 1893 | bool "sparchfleon CPU has been removed" |
| 1894 | select BR2_LEGACY |
| 1895 | help |
| 1896 | The sparchfleon CPU was only supported in a patched gcc 4.4 |
| 1897 | version. Its support has been removed in favor of the leon3 |
| 1898 | CPU starting from gcc 4.8.x. |
| 1899 | |
| 1900 | config BR2_sparc_sparchfleonv8 |
| 1901 | bool "sparchfleonv8 CPU has been removed" |
| 1902 | select BR2_LEGACY |
| 1903 | help |
| 1904 | The sparchfleonv8 CPU was only supported in a patched gcc |
| 1905 | 4.4 version. Its support has been removed in favor of the |
| 1906 | leon3 CPU starting from gcc 4.8.x. |
| 1907 | |
| 1908 | config BR2_sparc_sparcsfleon |
| 1909 | bool "sparcsfleon CPU has been removed" |
| 1910 | select BR2_LEGACY |
| 1911 | help |
| 1912 | The sparcsfleon CPU was only supported in a patched gcc 4.4 |
| 1913 | version. Its support has been removed in favor of the leon3 |
| 1914 | CPU starting from gcc 4.8.x. |
| 1915 | |
| 1916 | config BR2_sparc_sparcsfleonv8 |
| 1917 | bool "sparcsfleonv8 CPU has been removed" |
| 1918 | select BR2_LEGACY |
| 1919 | help |
| 1920 | The sparcsfleonv8 CPU was only supported in a patched gcc |
| 1921 | 4.4 version. Its support has been removed in favor of the |
| 1922 | leon3 CPU starting from gcc 4.8.x. |
| 1923 | |
Bernd Kuhls | bfd8787 | 2014-10-18 19:41:30 +0200 | [diff] [blame] | 1924 | config BR2_PACKAGE_XLIB_LIBPCIACCESS |
| 1925 | bool "xlib-libpciaccess option has been renamed" |
| 1926 | depends on BR2_PACKAGE_XORG7 |
| 1927 | select BR2_LEGACY |
| 1928 | select BR2_PACKAGE_LIBPCIACCESS |
| 1929 | help |
| 1930 | libpciaccess neither depends on X11 nor Xlib. Thus the |
| 1931 | package has been renamed BR2_PACKAGE_LIBPCIACCESS |
| 1932 | |
Yann E. MORIN | b581bba | 2014-09-21 20:38:13 +0200 | [diff] [blame] | 1933 | config BR2_PACKAGE_LINUX_FIRMWARE_XC5000 |
| 1934 | bool "Xceive xc5000 option has been renamed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1935 | select BR2_LEGACY |
Yann E. MORIN | b581bba | 2014-09-21 20:38:13 +0200 | [diff] [blame] | 1936 | select BR2_PACKAGE_LINUX_FIRMWARE_XCx000 |
| 1937 | help |
| 1938 | The Xceive xc5000 option now also handles older firmwares from |
| 1939 | Xceive (the xc4000 series), as well as new firmwares (the xc5000c) |
| 1940 | from Cresta, who bought Xceive. |
| 1941 | |
Yann E. MORIN | dac546e | 2014-09-21 20:38:12 +0200 | [diff] [blame] | 1942 | config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 |
| 1943 | bool "Chelsio T4 option has been renamed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1944 | select BR2_LEGACY |
Yann E. MORIN | dac546e | 2014-09-21 20:38:12 +0200 | [diff] [blame] | 1945 | select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 |
| 1946 | help |
| 1947 | The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 |
| 1948 | has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 |
| 1949 | to better account for the fact that a T5 variant exists. |
| 1950 | |
Yann E. MORIN | 120136e | 2014-09-21 20:38:09 +0200 | [diff] [blame] | 1951 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 |
| 1952 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1953 | select BR2_LEGACY |
Yann E. MORIN | 120136e | 2014-09-21 20:38:09 +0200 | [diff] [blame] | 1954 | help |
| 1955 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was |
| 1956 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must |
| 1957 | select it in: |
| 1958 | Target packages -> Hardware handling -> |
| 1959 | Firmware -> linux-firmware -> WiFi firmware -> |
| 1960 | iwlwifi 3160/726x revision to use (revision 7) |
| 1961 | |
| 1962 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 |
| 1963 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 1964 | select BR2_LEGACY |
Yann E. MORIN | 120136e | 2014-09-21 20:38:09 +0200 | [diff] [blame] | 1965 | help |
| 1966 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was |
| 1967 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must |
| 1968 | select it in: |
| 1969 | Target packages -> Hardware handling -> |
| 1970 | Firmware -> linux-firmware -> WiFi firmware -> |
| 1971 | iwlwifi 3160/726x revision to use (revision 8) |
| 1972 | |
| 1973 | ############################################################################### |
Yann E. MORIN | 5cd1c4f | 2014-06-02 22:27:22 +0200 | [diff] [blame] | 1974 | comment "Legacy options removed in 2014.08" |
| 1975 | |
Gregory CLEMENT | 52fac6a | 2014-08-28 14:21:34 +0200 | [diff] [blame] | 1976 | config BR2_PACKAGE_LIBELF |
| 1977 | bool "libelf has been removed" |
| 1978 | select BR2_PACKAGE_ELFUTILS |
| 1979 | select BR2_LEGACY |
| 1980 | help |
| 1981 | The libelf package provided an old version of the libelf library |
| 1982 | and is deprecated. The libelf library is now provided by the |
| 1983 | elfutils package. |
| 1984 | |
Thomas De Schampheleire | dfae6f6 | 2014-06-13 21:21:45 +0200 | [diff] [blame] | 1985 | config BR2_KERNEL_HEADERS_3_8 |
| 1986 | bool "kernel headers version 3.8.x are no longer supported" |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 1987 | select BR2_KERNEL_HEADERS_3_4 |
Thomas De Schampheleire | dfae6f6 | 2014-06-13 21:21:45 +0200 | [diff] [blame] | 1988 | select BR2_LEGACY |
| 1989 | help |
| 1990 | Version 3.8.x of the Linux kernel headers have been deprecated |
| 1991 | for more than four buildroot releases and are now removed. |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 1992 | As an alternative, version 3.4.x of the headers have been |
Thomas De Schampheleire | dfae6f6 | 2014-06-13 21:21:45 +0200 | [diff] [blame] | 1993 | automatically selected in your configuration. |
| 1994 | |
Thomas Petazzoni | 187b4d6 | 2014-06-01 22:23:30 +0200 | [diff] [blame] | 1995 | config BR2_PACKAGE_GETTEXT_TOOLS |
| 1996 | bool "support for gettext-tools on target has been removed" |
| 1997 | select BR2_LEGACY |
| 1998 | help |
| 1999 | The option to install the gettext utilities on the target |
| 2000 | has been removed. This is not necessary as Buildroot is not |
| 2001 | designed to provide a full development environment on the |
| 2002 | target. gettext tools should be used on the build machine |
| 2003 | instead. |
| 2004 | |
Yann E. MORIN | 5cd1c4f | 2014-06-02 22:27:22 +0200 | [diff] [blame] | 2005 | config BR2_PACKAGE_PROCPS |
| 2006 | bool "procps has been replaced by procps-ng" |
| 2007 | select BR2_PACKAGE_PROCPS_NG |
| 2008 | select BR2_LEGACY |
| 2009 | help |
| 2010 | The procps package has been replaced by the equivalent procps-ng. |
| 2011 | |
Thomas Petazzoni | d4839ff | 2014-07-01 20:03:02 +0200 | [diff] [blame] | 2012 | config BR2_BINUTILS_VERSION_2_20_1 |
| 2013 | bool "binutils 2.20.1 has been removed" |
| 2014 | select BR2_LEGACY |
| 2015 | help |
| 2016 | The 2.20.1 version of binutils has been removed. Use a newer |
| 2017 | version instead. |
| 2018 | |
| 2019 | config BR2_BINUTILS_VERSION_2_21 |
| 2020 | bool "binutils 2.21 has been removed" |
| 2021 | select BR2_LEGACY |
| 2022 | help |
| 2023 | The 2.21 version of binutils has been removed. Use a newer |
| 2024 | version instead. |
| 2025 | |
| 2026 | config BR2_BINUTILS_VERSION_2_23_1 |
| 2027 | bool "binutils 2.23.1 has been removed" |
| 2028 | select BR2_LEGACY |
| 2029 | help |
| 2030 | The 2.23.1 version of binutils has been removed. Use a newer |
| 2031 | version instead. |
| 2032 | |
Thomas Petazzoni | 506b964 | 2014-07-01 20:03:03 +0200 | [diff] [blame] | 2033 | config BR2_UCLIBC_VERSION_0_9_32 |
| 2034 | bool "uclibc 0.9.32 has been removed" |
| 2035 | select BR2_LEGACY |
| 2036 | help |
| 2037 | The 0.9.32 version of uClibc has been removed. Use a newer |
| 2038 | version instead. |
| 2039 | |
Thomas Petazzoni | d10e080 | 2014-07-01 20:03:06 +0200 | [diff] [blame] | 2040 | config BR2_GCC_VERSION_4_3_X |
| 2041 | bool "gcc 4.3.x has been removed" |
| 2042 | select BR2_LEGACY |
| 2043 | help |
| 2044 | The 4.3.x version of gcc has been removed. Use a newer |
| 2045 | version instead. |
| 2046 | |
| 2047 | config BR2_GCC_VERSION_4_6_X |
| 2048 | bool "gcc 4.6.x has been removed" |
| 2049 | select BR2_LEGACY |
| 2050 | help |
| 2051 | The 4.6.x version of gcc has been removed. Use a newer |
| 2052 | version instead. |
| 2053 | |
Thomas Petazzoni | 02d85f6 | 2014-07-01 20:03:08 +0200 | [diff] [blame] | 2054 | config BR2_GDB_VERSION_7_4 |
| 2055 | bool "gdb 7.4 has been removed" |
| 2056 | select BR2_LEGACY |
| 2057 | help |
| 2058 | The 7.4 version of gdb has been removed. Use a newer version |
| 2059 | instead. |
| 2060 | |
| 2061 | config BR2_GDB_VERSION_7_5 |
| 2062 | bool "gdb 7.5 has been removed" |
| 2063 | select BR2_LEGACY |
| 2064 | help |
| 2065 | The 7.5 version of gdb has been removed. Use a newer version |
| 2066 | instead. |
| 2067 | |
Thomas Petazzoni | b18dca0 | 2014-07-01 20:03:09 +0200 | [diff] [blame] | 2068 | config BR2_BUSYBOX_VERSION_1_19_X |
| 2069 | bool "busybox version selection has been removed" |
| 2070 | select BR2_LEGACY |
| 2071 | help |
| 2072 | The possibility of selecting the Busybox version has been |
| 2073 | removed. Use the latest version provided by the Busybox |
| 2074 | package instead. |
| 2075 | |
| 2076 | config BR2_BUSYBOX_VERSION_1_20_X |
| 2077 | bool "busybox version selection has been removed" |
| 2078 | select BR2_LEGACY |
| 2079 | help |
| 2080 | The possibility of selecting the Busybox version has been |
| 2081 | removed. Use the latest version provided by the Busybox |
| 2082 | package instead. |
| 2083 | |
| 2084 | config BR2_BUSYBOX_VERSION_1_21_X |
| 2085 | bool "busybox version selection has been removed" |
| 2086 | select BR2_LEGACY |
| 2087 | help |
| 2088 | The possibility of selecting the Busybox version has been |
| 2089 | removed. Use the latest version provided by the Busybox |
| 2090 | package instead. |
| 2091 | |
Ezequiel GarcÃa | 07ac045 | 2014-07-05 18:07:40 -0300 | [diff] [blame] | 2092 | config BR2_PACKAGE_LIBV4L_DECODE_TM6000 |
| 2093 | bool "decode_tm6000" |
| 2094 | select BR2_PACKAGE_LIBV4L_UTILS |
| 2095 | select BR2_LEGACY |
| 2096 | help |
| 2097 | This libv4l option has been deprecated and replaced by a single |
| 2098 | option to build all the libv4l utilities. |
| 2099 | |
| 2100 | config BR2_PACKAGE_LIBV4L_IR_KEYTABLE |
| 2101 | bool "ir-keytable" |
| 2102 | select BR2_PACKAGE_LIBV4L_UTILS |
| 2103 | select BR2_LEGACY |
| 2104 | help |
| 2105 | This libv4l option has been deprecated and replaced by a single |
| 2106 | option to build all the libv4l utilities. |
| 2107 | |
| 2108 | config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE |
| 2109 | bool "v4l2-compliance" |
| 2110 | select BR2_PACKAGE_LIBV4L_UTILS |
| 2111 | select BR2_LEGACY |
| 2112 | help |
| 2113 | This libv4l option has been deprecated and replaced by a single |
| 2114 | option to build all the libv4l utilities. |
| 2115 | |
| 2116 | config BR2_PACKAGE_LIBV4L_V4L2_CTL |
| 2117 | bool "v4l2-ctl" |
| 2118 | select BR2_PACKAGE_LIBV4L_UTILS |
| 2119 | select BR2_LEGACY |
| 2120 | help |
| 2121 | This libv4l option has been deprecated and replaced by a single |
| 2122 | option to build all the libv4l utilities. |
| 2123 | |
| 2124 | config BR2_PACKAGE_LIBV4L_V4L2_DBG |
| 2125 | bool "v4l2-dbg" |
| 2126 | select BR2_PACKAGE_LIBV4L_UTILS |
| 2127 | select BR2_LEGACY |
| 2128 | help |
| 2129 | This libv4l option has been deprecated and replaced by a single |
| 2130 | option to build all the libv4l utilities. |
| 2131 | |
Yann E. MORIN | 5cd1c4f | 2014-06-02 22:27:22 +0200 | [diff] [blame] | 2132 | ############################################################################### |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 2133 | comment "Legacy options removed in 2014.05" |
| 2134 | |
Peter Seiderer | 4990a38 | 2014-04-23 00:12:23 +0200 | [diff] [blame] | 2135 | config BR2_PACKAGE_EVTEST_CAPTURE |
| 2136 | bool "evtest-capture support removed (dropped since evtest 1.31)" |
| 2137 | select BR2_LEGACY |
| 2138 | help |
| 2139 | Support for evtest-capture has been removed (dropped from |
| 2140 | evtest package since version 1.31), use evemu package |
| 2141 | instead. |
| 2142 | |
Thomas De Schampheleire | 47c2d1b | 2014-04-30 20:18:24 +0200 | [diff] [blame] | 2143 | config BR2_KERNEL_HEADERS_3_6 |
| 2144 | bool "kernel headers version 3.6.x are no longer supported" |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 2145 | select BR2_KERNEL_HEADERS_3_4 |
Thomas De Schampheleire | 47c2d1b | 2014-04-30 20:18:24 +0200 | [diff] [blame] | 2146 | select BR2_LEGACY |
| 2147 | help |
| 2148 | Version 3.6.x of the Linux kernel headers have been deprecated |
| 2149 | for more than four buildroot releases and are now removed. |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 2150 | As an alternative, version 3.4.x of the headers have been |
Thomas De Schampheleire | 47c2d1b | 2014-04-30 20:18:24 +0200 | [diff] [blame] | 2151 | automatically selected in your configuration. |
| 2152 | |
| 2153 | config BR2_KERNEL_HEADERS_3_7 |
| 2154 | bool "kernel headers version 3.7.x are no longer supported" |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 2155 | select BR2_KERNEL_HEADERS_3_4 |
Thomas De Schampheleire | 47c2d1b | 2014-04-30 20:18:24 +0200 | [diff] [blame] | 2156 | select BR2_LEGACY |
| 2157 | help |
| 2158 | Version 3.7.x of the Linux kernel headers have been deprecated |
| 2159 | for more than four buildroot releases and are now removed. |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 2160 | As an alternative, version 3.4.x of the headers have been |
Thomas De Schampheleire | 47c2d1b | 2014-04-30 20:18:24 +0200 | [diff] [blame] | 2161 | automatically selected in your configuration. |
| 2162 | |
Thomas De Schampheleire | 947ca9e | 2014-04-30 20:18:23 +0200 | [diff] [blame] | 2163 | config BR2_PACKAGE_VALA |
| 2164 | bool "vala target package has been removed" |
| 2165 | select BR2_LEGACY |
| 2166 | help |
| 2167 | The 'vala' target package has been removed since it has been |
| 2168 | deprecated for more than four buildroot releases. |
| 2169 | Note: the host vala package still exists. |
| 2170 | |
Yann E. MORIN | d6a3791 | 2014-04-07 21:58:03 +0200 | [diff] [blame] | 2171 | config BR2_TARGET_TZ_ZONELIST |
| 2172 | default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != "" |
| 2173 | |
| 2174 | config BR2_PACKAGE_TZDATA_ZONELIST |
| 2175 | string "tzdata: the timezone list option has been renamed" |
| 2176 | help |
| 2177 | The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to |
| 2178 | BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration" |
| 2179 | menu. You'll need to select BR2_TARGET_TZ_INFO. |
| 2180 | |
| 2181 | config BR2_PACKAGE_TZDATA_ZONELIST_WRAP |
| 2182 | bool |
| 2183 | default y if BR2_PACKAGE_TZDATA_ZONELIST != "" |
| 2184 | select BR2_LEGACY |
| 2185 | |
Yann E. MORIN | c97aeb7 | 2014-04-05 17:21:43 +0200 | [diff] [blame] | 2186 | config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE |
| 2187 | bool "Lua command-line editing none has been renamed" |
| 2188 | select BR2_LEGACY |
| 2189 | help |
| 2190 | The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been |
| 2191 | renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select |
| 2192 | it in the corresponding choice. |
| 2193 | |
| 2194 | config BR2_PACKAGE_LUA_INTERPRETER_READLINE |
| 2195 | bool "Lua command-line editing using readline has been renamed" |
| 2196 | select BR2_LEGACY |
| 2197 | help |
| 2198 | The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been |
| 2199 | renamed to BR2_PACKAGE_LUA_READLINE. You will have to select |
| 2200 | it in the corresponding choice. |
| 2201 | |
| 2202 | config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE |
| 2203 | bool "Lua command-line editing using linenoise has been renamed" |
| 2204 | select BR2_LEGACY |
| 2205 | help |
| 2206 | The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been |
| 2207 | renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select |
| 2208 | it in the corresponding choice. |
| 2209 | |
Yann E. MORIN | 365ae61 | 2014-03-28 01:00:24 +0100 | [diff] [blame] | 2210 | config BR2_PACKAGE_DVB_APPS_UTILS |
| 2211 | bool "dvb-apps utilities now built by default" |
| 2212 | select BR2_LEGACY |
| 2213 | help |
| 2214 | The dvb-apps utilities are now always built when the dvb-apps |
| 2215 | package is selected. |
| 2216 | |
Yann E. MORIN | 971e331 | 2014-03-01 15:52:56 +0100 | [diff] [blame] | 2217 | config BR2_KERNEL_HEADERS_SNAP |
| 2218 | bool "Local Linux snapshot support removed" |
| 2219 | select BR2_LEGACY |
| 2220 | help |
| 2221 | Support for using a custom snapshot to install the Linux |
| 2222 | kernel headers has been removed. |
| 2223 | |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 2224 | config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV |
| 2225 | bool "/dev management by udev removed" |
| 2226 | select BR2_LEGACY |
| 2227 | help |
| 2228 | 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] | 2229 | The providers for this feature are: 'eudev', 'systemd'. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 2230 | |
eric.le.bihan.dev@free.fr | 2c66e44 | 2014-02-07 14:21:34 +0100 | [diff] [blame] | 2231 | Therefore, if you are not using 'systemd' as init system, you |
| 2232 | must choose 'Dynamic using eudev' in the '/dev management' |
| 2233 | menu to get the same behaviour as in your old configuration. |
| 2234 | |
| 2235 | If you are using 'systemd', its internal implementation of |
| 2236 | 'udev' will be used automatically. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 2237 | |
| 2238 | You must also check the packages depending on 'udev' are still |
| 2239 | selected. |
| 2240 | |
| 2241 | config BR2_PACKAGE_UDEV |
| 2242 | bool "udev is now a virtual package" |
| 2243 | select BR2_LEGACY |
| 2244 | select BR2_PACKAGE_HAS_UDEV |
| 2245 | help |
| 2246 | 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] | 2247 | The providers for this feature are: 'eudev', 'systemd'. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 2248 | |
| 2249 | Your old configuration refers to packages depending on 'udev', |
| 2250 | either for build or at runtime. |
| 2251 | |
eric.le.bihan.dev@free.fr | 2c66e44 | 2014-02-07 14:21:34 +0100 | [diff] [blame] | 2252 | Check that a 'udev' provider is selected. If you are not using |
| 2253 | 'systemd' as init system, 'eudev' should be selected, which is |
| 2254 | the case if '/dev management' is set to 'Dynamic using eudev'. |
| 2255 | |
| 2256 | If you are using 'systemd', its internal implementation of 'udev' |
| 2257 | is used. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 2258 | |
| 2259 | config BR2_PACKAGE_UDEV_RULES_GEN |
eric.le.bihan.dev@free.fr | 2c66e44 | 2014-02-07 14:21:34 +0100 | [diff] [blame] | 2260 | bool "udev rules generation handled by provider" |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 2261 | select BR2_LEGACY |
eric.le.bihan.dev@free.fr | 2c66e44 | 2014-02-07 14:21:34 +0100 | [diff] [blame] | 2262 | select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD |
| 2263 | 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] | 2264 | help |
| 2265 | 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] | 2266 | The providers for this feature are: 'eudev', 'systemd'. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 2267 | |
eric.le.bihan.dev@free.fr | 2c66e44 | 2014-02-07 14:21:34 +0100 | [diff] [blame] | 2268 | If you are not using 'systemd' as init system, udev rules |
| 2269 | generation will be handled by 'eudev'. Check that |
| 2270 | '/dev management' is set to 'Dynamic using eudev' to get |
| 2271 | the same behaviour as in your old configuration. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 2272 | |
eric.le.bihan.dev@free.fr | 2c66e44 | 2014-02-07 14:21:34 +0100 | [diff] [blame] | 2273 | If you are using 'systemd', it internal implementation of 'udev' |
| 2274 | will generate the rules. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 2275 | |
| 2276 | config BR2_PACKAGE_UDEV_ALL_EXTRAS |
| 2277 | bool "udev extras removed" |
| 2278 | select BR2_LEGACY |
| 2279 | help |
| 2280 | 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] | 2281 | The providers for this feature are: 'eudev', 'systemd'. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 2282 | |
| 2283 | The option to enable the extra features of 'udev' (gudev, ...) |
| 2284 | has been removed. These features are automatically enabled in |
| 2285 | the 'udev' providers if the dependencies are selected. For |
| 2286 | example, selecting 'libglib2' will trigger the build of gudev. |
| 2287 | |
Bernd Kuhls | 5562be1 | 2014-03-01 16:41:10 +0100 | [diff] [blame] | 2288 | config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS |
| 2289 | bool "xlib-libpthread-stubs option has been renamed" |
| 2290 | depends on BR2_PACKAGE_XORG7 |
| 2291 | select BR2_LEGACY |
| 2292 | select BR2_PACKAGE_LIBPTHREAD_STUBS |
| 2293 | help |
| 2294 | The pthread stubs neither depend on X11 nor Xlib. Thus the |
| 2295 | package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS |
| 2296 | |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 2297 | ############################################################################### |
Yann E. MORIN | f169e5e | 2014-01-19 23:30:42 +0100 | [diff] [blame] | 2298 | comment "Legacy options removed in 2014.02" |
| 2299 | |
Thomas Petazzoni | e543f5a | 2014-02-04 15:25:34 +0100 | [diff] [blame] | 2300 | config BR2_sh2 |
| 2301 | bool "sh2 support removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 2302 | select BR2_LEGACY |
Thomas Petazzoni | e543f5a | 2014-02-04 15:25:34 +0100 | [diff] [blame] | 2303 | help |
| 2304 | Due to an inexistent user base and generally poor Linux |
| 2305 | support, the support for the SH2 architecture was removed. |
| 2306 | |
| 2307 | config BR2_sh3 |
| 2308 | bool "sh3 support removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 2309 | select BR2_LEGACY |
Thomas Petazzoni | e543f5a | 2014-02-04 15:25:34 +0100 | [diff] [blame] | 2310 | help |
| 2311 | Due to an inexistent user base and generally poor Linux |
| 2312 | support, the support for the SH3 architecture was removed. |
| 2313 | |
| 2314 | config BR2_sh3eb |
| 2315 | bool "sh3eb support removed" |
Peter Seiderer | 758c5c7 | 2015-10-07 23:56:49 +0200 | [diff] [blame] | 2316 | select BR2_LEGACY |
Thomas Petazzoni | e543f5a | 2014-02-04 15:25:34 +0100 | [diff] [blame] | 2317 | help |
| 2318 | Due to an inexistent user base and generally poor Linux |
| 2319 | support, the support for the SH3eb architecture was removed. |
| 2320 | |
Thomas De Schampheleire | 334dca6 | 2014-02-05 14:50:59 +0100 | [diff] [blame] | 2321 | config BR2_KERNEL_HEADERS_3_1 |
| 2322 | bool "kernel headers version 3.1.x are no longer supported" |
| 2323 | select BR2_KERNEL_HEADERS_3_2 |
| 2324 | select BR2_LEGACY |
| 2325 | help |
| 2326 | Version 3.1.x of the Linux kernel headers have been deprecated |
| 2327 | for more than four buildroot releases and are now removed. |
| 2328 | As an alternative, version 3.2.x of the headers have been |
| 2329 | automatically selected in your configuration. |
| 2330 | |
| 2331 | config BR2_KERNEL_HEADERS_3_3 |
| 2332 | bool "kernel headers version 3.3.x are no longer supported" |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 2333 | select BR2_KERNEL_HEADERS_3_2 |
Thomas De Schampheleire | 334dca6 | 2014-02-05 14:50:59 +0100 | [diff] [blame] | 2334 | select BR2_LEGACY |
| 2335 | help |
| 2336 | Version 3.3.x of the Linux kernel headers have been deprecated |
| 2337 | for more than four buildroot releases and are now removed. |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 2338 | As an alternative, version 3.2.x of the headers have been |
Thomas De Schampheleire | 334dca6 | 2014-02-05 14:50:59 +0100 | [diff] [blame] | 2339 | automatically selected in your configuration. |
| 2340 | |
| 2341 | config BR2_KERNEL_HEADERS_3_5 |
| 2342 | bool "kernel headers version 3.5.x are no longer supported" |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 2343 | select BR2_KERNEL_HEADERS_3_4 |
Thomas De Schampheleire | 334dca6 | 2014-02-05 14:50:59 +0100 | [diff] [blame] | 2344 | select BR2_LEGACY |
| 2345 | help |
| 2346 | Version 3.5.x of the Linux kernel headers have been deprecated |
| 2347 | for more than four buildroot releases and are now removed. |
Gustavo Zacarias | a26aa96 | 2016-09-09 12:20:55 -0300 | [diff] [blame] | 2348 | As an alternative, version 3.4.x of the headers have been |
Thomas De Schampheleire | 334dca6 | 2014-02-05 14:50:59 +0100 | [diff] [blame] | 2349 | automatically selected in your configuration. |
| 2350 | |
Thomas De Schampheleire | 348060f | 2014-02-05 14:50:58 +0100 | [diff] [blame] | 2351 | config BR2_GDB_VERSION_7_2 |
| 2352 | bool "gdb 7.2.x is no longer supported" |
Thomas Petazzoni | 02d85f6 | 2014-07-01 20:03:08 +0200 | [diff] [blame] | 2353 | select BR2_GDB_VERSION_7_6 |
Thomas De Schampheleire | 348060f | 2014-02-05 14:50:58 +0100 | [diff] [blame] | 2354 | select BR2_LEGACY |
| 2355 | help |
| 2356 | Version 7.2.x of gdb has been deprecated for more than four |
| 2357 | buildroot releases and is now removed. As an alternative, gdb |
| 2358 | 7.5.x has been automatically selected in your configuration. |
| 2359 | |
| 2360 | config BR2_GDB_VERSION_7_3 |
| 2361 | bool "gdb 7.3.x is no longer supported" |
Thomas Petazzoni | 02d85f6 | 2014-07-01 20:03:08 +0200 | [diff] [blame] | 2362 | select BR2_GDB_VERSION_7_6 |
Thomas De Schampheleire | 348060f | 2014-02-05 14:50:58 +0100 | [diff] [blame] | 2363 | select BR2_LEGACY |
| 2364 | help |
| 2365 | Version 7.3.x of gdb has been deprecated for more than four |
| 2366 | buildroot releases and is now removed. As an alternative, gdb |
| 2367 | 7.5.x has been automatically selected in your configuration. |
| 2368 | |
Thomas De Schampheleire | 831624c | 2014-02-05 14:50:57 +0100 | [diff] [blame] | 2369 | config BR2_PACKAGE_CCACHE |
| 2370 | bool "ccache target package has been removed" |
| 2371 | select BR2_LEGACY |
| 2372 | help |
| 2373 | The 'ccache' target package has been removed since it has been |
| 2374 | deprecated for more than four buildroot releases. |
| 2375 | Note: using ccache for speeding up builds is still supported. |
| 2376 | |
Thomas De Schampheleire | 7164a32 | 2014-02-05 14:50:56 +0100 | [diff] [blame] | 2377 | config BR2_HAVE_DOCUMENTATION |
| 2378 | bool "support for documentation on target has been removed" |
| 2379 | select BR2_LEGACY |
| 2380 | help |
| 2381 | Support for documentation on target has been removed since it has |
| 2382 | been deprecated for more than four buildroot releases. |
| 2383 | |
Thomas De Schampheleire | f75245d | 2014-02-05 14:50:55 +0100 | [diff] [blame] | 2384 | config BR2_PACKAGE_AUTOMAKE |
| 2385 | bool "automake target package has been removed" |
| 2386 | select BR2_LEGACY |
| 2387 | help |
| 2388 | The 'automake' target package has been removed since it has been |
| 2389 | deprecated for more than four buildroot releases. |
| 2390 | Note: the host automake still exists. |
| 2391 | |
Thomas De Schampheleire | e7af2ac | 2014-02-05 14:50:54 +0100 | [diff] [blame] | 2392 | config BR2_PACKAGE_AUTOCONF |
| 2393 | bool "autoconf target package has been removed" |
| 2394 | select BR2_LEGACY |
| 2395 | help |
| 2396 | The 'autoconf' target package has been removed since it has been |
| 2397 | deprecated for more than four buildroot releases. |
| 2398 | Note: the host autoconf still exists. |
| 2399 | |
Thomas De Schampheleire | ddf5424 | 2014-02-05 14:50:53 +0100 | [diff] [blame] | 2400 | config BR2_PACKAGE_XSTROKE |
| 2401 | bool "xstroke has been removed" |
| 2402 | select BR2_LEGACY |
| 2403 | help |
| 2404 | The 'xstroke' package has been removed since it has been |
| 2405 | deprecated for more than four buildroot releases. |
| 2406 | |
Thomas De Schampheleire | 0a07731 | 2014-01-21 08:54:12 +0100 | [diff] [blame] | 2407 | config BR2_PACKAGE_LZMA |
| 2408 | bool "lzma target package has been removed" |
| 2409 | select BR2_LEGACY |
| 2410 | help |
| 2411 | The 'lzma' target package has been removed since it has been |
| 2412 | deprecated for more than four buildroot releases. |
| 2413 | Note: generating lzma-compressed rootfs images is still supported. |
| 2414 | |
Thomas De Schampheleire | 7ef5c3a | 2014-01-21 08:54:10 +0100 | [diff] [blame] | 2415 | config BR2_PACKAGE_TTCP |
| 2416 | bool "ttcp has been removed" |
| 2417 | select BR2_LEGACY |
| 2418 | help |
| 2419 | The 'ttcp' package has been removed since it has been |
| 2420 | deprecated for more than four buildroot releases. |
| 2421 | |
Vicente Olivert Riera | 8b2e235 | 2014-01-10 10:06:19 +0000 | [diff] [blame] | 2422 | config BR2_PACKAGE_LIBNFC_LLCP |
Thomas De Schampheleire | 9334104 | 2014-01-21 08:54:13 +0100 | [diff] [blame] | 2423 | bool "libnfc-llcp has been replaced by libllcp" |
Vicente Olivert Riera | 8b2e235 | 2014-01-10 10:06:19 +0000 | [diff] [blame] | 2424 | select BR2_LEGACY |
Thomas De Schampheleire | 9334104 | 2014-01-21 08:54:13 +0100 | [diff] [blame] | 2425 | select BR2_PACKAGE_LIBLLCP |
Vicente Olivert Riera | 8b2e235 | 2014-01-10 10:06:19 +0000 | [diff] [blame] | 2426 | help |
| 2427 | The 'libnfc-llcp' package has been removed since upstream renamed |
Thomas De Schampheleire | 9334104 | 2014-01-21 08:54:13 +0100 | [diff] [blame] | 2428 | to 'libllcp'. We have added a new package for 'libllcp' and bumped |
| 2429 | the version at the same time. |
Vicente Olivert Riera | 8b2e235 | 2014-01-10 10:06:19 +0000 | [diff] [blame] | 2430 | |
Marcelo Gutiérrez(UTN/FRH) | 06c8212 | 2014-01-21 14:08:28 +0000 | [diff] [blame] | 2431 | config BR2_PACKAGE_MYSQL_CLIENT |
| 2432 | bool "MySQL client renamed to MySQL" |
| 2433 | select BR2_LEGACY |
| 2434 | select BR2_PACKAGE_MYSQL |
| 2435 | help |
| 2436 | The option has been renamed BR2_PACKAGE_MYSQL |
| 2437 | |
Thomas De Schampheleire | 2f7a53e | 2014-01-03 17:02:53 +0100 | [diff] [blame] | 2438 | config BR2_PACKAGE_SQUASHFS3 |
| 2439 | bool "squashfs3 has been removed" |
| 2440 | select BR2_LEGACY |
| 2441 | select BR2_PACKAGE_SQUASHFS |
| 2442 | help |
| 2443 | The 'squashfs3' package has been removed since it has been |
| 2444 | deprecated for more than four buildroot releases. Package |
| 2445 | 'squashfs' (4) has been selected automatically as replacement. |
| 2446 | |
| 2447 | config BR2_TARGET_ROOTFS_SQUASHFS3 |
| 2448 | bool "squashfs3 rootfs support has been removed" |
| 2449 | select BR2_LEGACY |
| 2450 | help |
| 2451 | Together with the removal of the squashfs3 package, support |
| 2452 | for squashfs3 root filesystems has been removed too. Squashfs |
| 2453 | root filesystems will automatically use squashfs4 now. |
| 2454 | |
Arnaud Aujon | 560fe85 | 2013-12-15 20:23:12 +0100 | [diff] [blame] | 2455 | config BR2_PACKAGE_NETKITBASE |
| 2456 | bool "netkitbase has been removed" |
| 2457 | select BR2_LEGACY |
| 2458 | help |
| 2459 | The 'netkitbase' package has been removed since it has been |
| 2460 | deprecated since 2012.11. This package provided 'inetd' |
| 2461 | which is replaced by 'xinet' and 'ping' which is replaced by |
| 2462 | 'busybox' or 'fping'. |
| 2463 | |
| 2464 | config BR2_PACKAGE_NETKITTELNET |
| 2465 | bool "netkittelnet has been removed" |
| 2466 | select BR2_LEGACY |
| 2467 | help |
| 2468 | The 'netkittelnet' package has been removed since it has |
| 2469 | been deprecated since 2012.11. 'busybox' provides a telnet |
| 2470 | client and should be used instead. |
| 2471 | |
Francois Perrad | 63058f8 | 2014-01-11 16:42:09 +0100 | [diff] [blame] | 2472 | config BR2_PACKAGE_LUASQL |
| 2473 | bool "luasql has been replaced by luasql-sqlite3" |
| 2474 | select BR2_PACKAGE_LUASQL_SQLITE3 |
| 2475 | select BR2_LEGACY |
| 2476 | help |
| 2477 | The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3. |
| 2478 | |
Francois Perrad | a6c5347 | 2014-01-11 16:42:08 +0100 | [diff] [blame] | 2479 | config BR2_PACKAGE_LUACJSON |
| 2480 | bool "luacjson has been replaced by lua-cjson" |
| 2481 | select BR2_PACKAGE_LUA_CJSON |
| 2482 | select BR2_LEGACY |
| 2483 | help |
| 2484 | The option has been renamed BR2_PACKAGE_LUA_CJSON. |
| 2485 | |
Arnaud Aujon | 560fe85 | 2013-12-15 20:23:12 +0100 | [diff] [blame] | 2486 | ############################################################################### |
Thomas Petazzoni | 94c7208 | 2013-08-27 19:28:34 +0200 | [diff] [blame] | 2487 | comment "Legacy options removed in 2013.11" |
| 2488 | |
Arnout Vandecappelle | ff0f55e | 2013-11-28 09:29:28 +0100 | [diff] [blame] | 2489 | config BR2_PACKAGE_LVM2_DMSETUP_ONLY |
| 2490 | bool "lvm2's 'dmsetup only' option removed" |
| 2491 | select BR2_LEGACY |
| 2492 | help |
| 2493 | The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which |
| 2494 | led to problems with other packages that need the full lvm2 |
| 2495 | suite. Therefore, the option has been replaced with the positive |
| 2496 | BR2_PACKAGE_LVM2_STANDARD_INSTALL option. |
| 2497 | |
| 2498 | # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in |
| 2499 | # in order to automatically propagate old configs |
| 2500 | |
Thomas Petazzoni | 1f9c04f | 2013-11-07 20:07:21 +0100 | [diff] [blame] | 2501 | config BR2_PACKAGE_QT_JAVASCRIPTCORE |
| 2502 | bool "qt javascriptcore option removed" |
| 2503 | select BR2_LEGACY |
| 2504 | help |
| 2505 | The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to |
| 2506 | force the activation or disabling of the JIT compiler in the |
| 2507 | Qt Javascript interpreter. However, the JIT compiler is not |
| 2508 | available for all architectures, so forcing its activation |
| 2509 | does not always work. Moreover, Qt knows by itself for which |
| 2510 | architectures JIT support is possible, and will |
| 2511 | automatically enable it if possible. |
| 2512 | |
| 2513 | Therefore, this option was in fact useless, and causing |
| 2514 | build problems when enabled on architectures for which the |
| 2515 | JIT support was not available. It has been removed, and |
| 2516 | there is no replacement: Qt will enable JIT at compile time |
| 2517 | when possible. |
| 2518 | |
Thomas Petazzoni | 94c7208 | 2013-08-27 19:28:34 +0200 | [diff] [blame] | 2519 | config BR2_PACKAGE_MODULE_INIT_TOOLS |
| 2520 | bool "module-init-tools replaced by kmod" |
| 2521 | select BR2_PACKAGE_KMOD |
| 2522 | select BR2_PACKAGE_KMOD_TOOLS |
Thomas Petazzoni | 0f401f9 | 2013-11-07 20:09:48 +0100 | [diff] [blame] | 2523 | select BR2_LEGACY |
Thomas Petazzoni | 94c7208 | 2013-08-27 19:28:34 +0200 | [diff] [blame] | 2524 | help |
| 2525 | The 'module-init-tools' package has been removed, since it |
| 2526 | has been depracated upstream and replaced by 'kmod'. |
| 2527 | |
Thomas De Schampheleire | f2c2193 | 2013-09-02 22:07:55 +0200 | [diff] [blame] | 2528 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL |
| 2529 | string "u-boot: the git repository URL option has been renamed" |
| 2530 | help |
| 2531 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has |
| 2532 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL. |
| 2533 | |
| 2534 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP |
| 2535 | bool |
| 2536 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != "" |
| 2537 | select BR2_LEGACY |
| 2538 | |
| 2539 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from |
| 2540 | # boot/uboot/Config.in |
| 2541 | |
| 2542 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION |
| 2543 | string "u-boot: the git repository version option has been renamed" |
| 2544 | help |
| 2545 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has |
| 2546 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION. |
| 2547 | |
| 2548 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP |
| 2549 | bool |
| 2550 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" |
| 2551 | select BR2_LEGACY |
| 2552 | |
| 2553 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from |
| 2554 | # boot/uboot/Config.in |
| 2555 | |
Thomas De Schampheleire | 63ecded | 2013-09-02 22:07:54 +0200 | [diff] [blame] | 2556 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL |
| 2557 | string "linux: the git repository URL option has been renamed" |
| 2558 | help |
| 2559 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has |
| 2560 | been renamed to |
| 2561 | BR2_LINUX_KERNEL_CUSTOM_REPO_URL. |
| 2562 | |
| 2563 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP |
| 2564 | bool |
| 2565 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != "" |
| 2566 | select BR2_LEGACY |
| 2567 | |
| 2568 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from |
| 2569 | # linux/Config.in |
| 2570 | |
| 2571 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION |
| 2572 | string "linux: the git repository version option has been renamed" |
| 2573 | help |
| 2574 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has |
| 2575 | been renamed to |
| 2576 | BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION. |
| 2577 | |
| 2578 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP |
| 2579 | bool |
| 2580 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" |
| 2581 | select BR2_LEGACY |
| 2582 | |
| 2583 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from |
| 2584 | # linux/Config.in |
| 2585 | |
Thomas Petazzoni | 94c7208 | 2013-08-27 19:28:34 +0200 | [diff] [blame] | 2586 | ############################################################################### |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 2587 | comment "Legacy options removed in 2013.08" |
Gustavo Zacarias | c6e4fcb | 2013-06-10 11:14:31 -0300 | [diff] [blame] | 2588 | |
Thomas Petazzoni | 1f3078b | 2013-08-10 19:20:01 +0200 | [diff] [blame] | 2589 | config BR2_ARM_OABI |
| 2590 | bool "ARM OABI support has been removed" |
| 2591 | select BR2_LEGACY |
| 2592 | help |
| 2593 | The support for the ARM OABI was deprecated since a while, |
| 2594 | and has been removed completely from Buildroot. It is also |
| 2595 | deprecated in upstream gcc, since gcc 4.7. People should |
| 2596 | switch to EABI instead, which should not be a problem as |
| 2597 | long as you don't have pre-built OABI binaries in your |
| 2598 | system that you can't recompile. |
| 2599 | |
Gustavo Zacarias | c6e4fcb | 2013-06-10 11:14:31 -0300 | [diff] [blame] | 2600 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK |
| 2601 | bool "dosfstools dosfsck renamed to fsck.fat" |
| 2602 | select BR2_LEGACY |
| 2603 | select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT |
| 2604 | help |
| 2605 | dosfsck was renamed upstream to fsck.fat for consistency. |
| 2606 | |
| 2607 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL |
| 2608 | bool "dosfstools dosfslabel renamed to fatlabel" |
| 2609 | select BR2_LEGACY |
| 2610 | select BR2_PACKAGE_DOSFSTOOLS_FATLABEL |
| 2611 | help |
| 2612 | doslabel was renamed upstream to fatlabel for consistency. |
| 2613 | |
| 2614 | config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS |
| 2615 | bool "dosfstools mkdosfs renamed to mkfs.fat" |
| 2616 | select BR2_LEGACY |
| 2617 | select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT |
| 2618 | help |
| 2619 | mkdosfs was renamed upstream to mkfs.fat for consistency. |
| 2620 | |
Thomas Petazzoni | e21db00 | 2013-06-30 21:28:57 +0200 | [diff] [blame] | 2621 | config BR2_ELF2FLT |
| 2622 | bool "the elf2flt option has been renamed" |
| 2623 | select BR2_LEGACY |
| 2624 | help |
| 2625 | The BR2_ELF2FLT option has been renamed to |
| 2626 | BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to |
| 2627 | the package infrastructure. |
| 2628 | |
Thomas Petazzoni | d806005 | 2013-07-16 10:03:17 +0200 | [diff] [blame] | 2629 | config BR2_VFP_FLOAT |
| 2630 | bool "the ARM VFP floating point option has been renamed" |
| 2631 | select BR2_LEGACY |
| 2632 | help |
| 2633 | Due to a major refactoring of the floating-point handling of |
| 2634 | the ARM architecture support, the BR2_VFP_FLOAT option has |
| 2635 | been replaced with a choice of options that allows to select |
| 2636 | between various VFP versions/capabilities. |
| 2637 | |
Samuel Martin | ba8f82b | 2013-08-30 06:08:59 +0200 | [diff] [blame] | 2638 | config BR2_PACKAGE_GCC_TARGET |
| 2639 | bool "gcc on the target filesystem has been removed" |
| 2640 | select BR2_LEGACY |
| 2641 | help |
| 2642 | The support for gcc in the target filesystem was deprecated |
| 2643 | since a while, and has been removed completely from Buildroot. |
| 2644 | See Buildroot's documentation for more explanations. |
| 2645 | |
| 2646 | config BR2_HAVE_DEVFILES |
| 2647 | bool "development files in target filesystem has been removed" |
| 2648 | select BR2_LEGACY |
| 2649 | help |
| 2650 | The installation of the development files in the target |
| 2651 | filesystem was deprecated since a while, and has been removed |
| 2652 | completely from Buildroot. |
| 2653 | See Buildroot's documentation for more explanations. |
| 2654 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 2655 | ############################################################################### |
| 2656 | comment "Legacy options removed in 2013.05" |
Yann E. MORIN | 860d37a | 2013-06-04 11:49:53 +0000 | [diff] [blame] | 2657 | |
| 2658 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192 |
| 2659 | bool "Realtek 8192 replaced by Realtek 81xx" |
| 2660 | select BR2_LEGACY |
| 2661 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX |
| 2662 | help |
| 2663 | Now covers the whole Realtek 81xx familly: 8188/8192. |
| 2664 | |
| 2665 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712 |
| 2666 | bool "Realtek 8712 replaced by Realtek 87xx" |
| 2667 | select BR2_LEGACY |
| 2668 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX |
| 2669 | help |
| 2670 | Now covers the whole Realtek 87xx familly: 8712/8723. |
| 2671 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 2672 | ############################################################################### |
| 2673 | comment "Legacy options removed in 2013.02" |
Thomas Petazzoni | 29b83f0 | 2013-03-07 10:45:24 +0000 | [diff] [blame] | 2674 | |
Gustavo Zacarias | 9474421 | 2013-04-04 07:29:45 +0000 | [diff] [blame] | 2675 | config BR2_sa110 |
| 2676 | bool "sa110 ARM target switched to strongarm" |
| 2677 | select BR2_LEGACY |
| 2678 | select BR2_strongarm |
| 2679 | help |
| 2680 | The SA110 is the same as a generic StrongARM, it just differs |
| 2681 | in speed, peripherals and cache. |
| 2682 | |
| 2683 | config BR2_sa1100 |
| 2684 | bool "sa1100 ARM target switched to strongarm" |
| 2685 | select BR2_LEGACY |
| 2686 | select BR2_strongarm |
| 2687 | help |
| 2688 | The SA1100 is the same as a generic StrongARM, it just differs |
| 2689 | in speed, peripherals and cache. |
| 2690 | |
Thomas Petazzoni | 29b83f0 | 2013-03-07 10:45:24 +0000 | [diff] [blame] | 2691 | config BR2_PACKAGE_GDISK |
| 2692 | bool "gdisk has been replaced by gptfdisk" |
| 2693 | select BR2_LEGACY |
| 2694 | select BR2_PACKAGE_GPTFDISK |
| 2695 | help |
| 2696 | The option has been renamed BR2_PACKAGE_GPTFDISK. |
| 2697 | |
| 2698 | config BR2_PACKAGE_GDISK_GDISK |
| 2699 | bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk" |
| 2700 | select BR2_LEGACY |
| 2701 | select BR2_PACKAGE_GPTFDISK |
| 2702 | select BR2_PACKAGE_GPTFDISK_GDISK |
| 2703 | help |
| 2704 | The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK. |
| 2705 | |
| 2706 | config BR2_PACKAGE_GDISK_SGDISK |
| 2707 | bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk" |
| 2708 | select BR2_LEGACY |
| 2709 | select BR2_PACKAGE_GPTFDISK |
| 2710 | select BR2_PACKAGE_GPTFDISK_SGDISK |
| 2711 | help |
| 2712 | The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK. |
Arnout Vandecappelle (Essensium/Mind) | ebcfa98 | 2012-11-12 10:08:28 +0000 | [diff] [blame] | 2713 | |
Thomas Petazzoni | a0b6faa | 2013-04-07 00:04:33 +0000 | [diff] [blame] | 2714 | config BR2_PACKAGE_GDB_HOST |
| 2715 | bool "gdb for the host option has been renamed" |
| 2716 | select BR2_PACKAGE_HOST_GDB |
| 2717 | select BR2_LEGACY |
| 2718 | help |
| 2719 | Due to the conversion of gdb to the package infrastructure, |
| 2720 | the BR2_PACKAGE_GDB_HOST option has been renamed |
| 2721 | BR2_PACKAGE_HOST_GDB. |
| 2722 | |
Carsten Schoenert | 76de0f8 | 2013-03-10 08:32:46 +0000 | [diff] [blame] | 2723 | config BR2_PACKAGE_DIRECTB_DITHER_RGB16 |
| 2724 | bool "DirectFB RGB16 dithering option has been renamed" |
| 2725 | select BR2_PACKAGE_DIRECTFB_DITHER_RGB16 |
| 2726 | select BR2_LEGACY |
| 2727 | help |
| 2728 | The option has been renamed |
| 2729 | BR2_PACKAGE_DIRECTFB_DITHER_RGB16. |
| 2730 | |
| 2731 | config BR2_PACKAGE_DIRECTB_TESTS |
| 2732 | bool "DirectFB Tests option has been renamed" |
| 2733 | select BR2_PACKAGE_DIRECTFB_TESTS |
| 2734 | select BR2_LEGACY |
| 2735 | help |
| 2736 | The option has been renamed |
| 2737 | BR2_PACKAGE_DIRECTFB_TESTS. |
| 2738 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 2739 | ############################################################################### |
| 2740 | comment "Legacy options removed in 2012.11" |
| 2741 | |
Thomas Petazzoni | 12ccc43 | 2013-02-07 11:58:45 +0000 | [diff] [blame] | 2742 | config BR2_PACKAGE_CUSTOMIZE |
| 2743 | bool "customize package has been removed" |
| 2744 | select BR2_LEGACY |
| 2745 | help |
| 2746 | The 'customize' special package has been removed. Instead, |
| 2747 | we recommend to create either your own packages, or use a |
| 2748 | post-build script to customize your root filesystem. See |
| 2749 | Buildroot's documentation for more details. |
Arnout Vandecappelle (Essensium/Mind) | 2cd9121 | 2013-02-05 05:34:33 +0000 | [diff] [blame] | 2750 | |
| 2751 | config BR2_PACKAGE_XSERVER_xorg |
| 2752 | bool "X.org modular server" |
| 2753 | select BR2_LEGACY |
| 2754 | select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR |
| 2755 | help |
| 2756 | The option has been renamed |
| 2757 | BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR. |
| 2758 | |
| 2759 | config BR2_PACKAGE_XSERVER_tinyx |
| 2760 | bool "KDrive / TinyX server" |
| 2761 | select BR2_LEGACY |
| 2762 | select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE |
| 2763 | help |
| 2764 | The option has been renamed |
| 2765 | BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE. |
| 2766 | |
| 2767 | config BR2_PACKAGE_PTHREAD_STUBS |
| 2768 | bool "pthread-stubs option has been renamed" |
| 2769 | select BR2_LEGACY |
Bernd Kuhls | 5562be1 | 2014-03-01 16:41:10 +0100 | [diff] [blame] | 2770 | select BR2_PACKAGE_LIBPTHREAD_STUBS |
Arnout Vandecappelle (Essensium/Mind) | 2cd9121 | 2013-02-05 05:34:33 +0000 | [diff] [blame] | 2771 | help |
| 2772 | For consistency reason, the pthread-stubs package has been |
Bernd Kuhls | 5562be1 | 2014-03-01 16:41:10 +0100 | [diff] [blame] | 2773 | renamed to libpthread-stubs. |
Arnout Vandecappelle (Essensium/Mind) | 2cd9121 | 2013-02-05 05:34:33 +0000 | [diff] [blame] | 2774 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 2775 | ############################################################################### |
| 2776 | comment "Legacy options removed in 2012.08" |
Arnout Vandecappelle (Essensium/Mind) | ebcfa98 | 2012-11-12 10:08:28 +0000 | [diff] [blame] | 2777 | |
Arnout Vandecappelle (Essensium/Mind) | 26803e8 | 2012-11-12 10:08:32 +0000 | [diff] [blame] | 2778 | config BR2_PACKAGE_GETTEXT_STATIC |
| 2779 | bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB" |
| 2780 | select BR2_LEGACY |
| 2781 | help |
| 2782 | To build a static gettext library, select BR2_PREFER_STATIC_LIB. |
| 2783 | |
| 2784 | |
| 2785 | config BR2_PACKAGE_LIBINTL |
| 2786 | bool "libintl" |
| 2787 | select BR2_LEGACY |
| 2788 | select BR2_PACKAGE_GETTEXT |
| 2789 | help |
| 2790 | libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now |
| 2791 | only installs the library, not the executables. |
| 2792 | |
Arnout Vandecappelle (Essensium/Mind) | c430fab | 2012-11-12 10:08:31 +0000 | [diff] [blame] | 2793 | config BR2_PACKAGE_INPUT_TOOLS_EVTEST |
| 2794 | bool "input-tools evtest is now a separate package evtest" |
| 2795 | select BR2_LEGACY |
| 2796 | select BR2_PACKAGE_EVTEST |
| 2797 | help |
| 2798 | The evtest program from input-tools is now a separate package. |
| 2799 | |
Sonic Zhang | 5713382 | 2013-05-03 00:39:34 +0000 | [diff] [blame] | 2800 | config BR2_BFIN_FDPIC |
| 2801 | bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC" |
| 2802 | select BR2_BINFMT_FDPIC |
| 2803 | select BR2_LEGACY |
| 2804 | |
| 2805 | config BR2_BFIN_FLAT |
| 2806 | bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT" |
| 2807 | select BR2_BINFMT_FLAT |
| 2808 | select BR2_LEGACY |
| 2809 | |
Arnout Vandecappelle (Essensium/Mind) | a91a5c1 | 2013-02-05 05:34:32 +0000 | [diff] [blame] | 2810 | endmenu |
Arnout Vandecappelle | 53903a1 | 2015-04-11 01:49:02 +0200 | [diff] [blame] | 2811 | |
| 2812 | endif # !SKIP_LEGACY |