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