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