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