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