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. |
| 19 | # |
| 20 | # For string options, it is not possible to directly select another symbol. In |
| 21 | # this case, a hidden wrap bool option has to be added, that defaults to y if |
| 22 | # the old string is not set at its default value. The wrap symbol should select |
| 23 | # BR2_LEGACY. |
| 24 | # If the original symbol has been renamed, the new symbol should use the value |
| 25 | # of the old symbol as default. This requires a change outside of |
| 26 | # Config.in.legacy, and this should be clearly marked as such below, so that |
| 27 | # removal of legacy options also include the removal of these external |
| 28 | # references. |
| 29 | # |
| 30 | # [Example: renaming a string option from FOO to BAR] |
| 31 | # original symbol: |
| 32 | # config BR2_FOO_STRING |
| 33 | # string "Some foo string" |
| 34 | # |
| 35 | # becomes: |
| 36 | # config BR2_BAR_STRING |
| 37 | # string "Some bar string" |
| 38 | # default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy |
| 39 | # |
| 40 | # and in Config.in.legacy: |
| 41 | # config BR2_FOO_STRING |
| 42 | # string "The foo string has been renamed" |
| 43 | # help |
| 44 | # <suitable help text> |
| 45 | # |
| 46 | # config BR2_FOO_STRING_WRAP |
| 47 | # bool |
| 48 | # default y if BR2_FOO_STRING != "" |
| 49 | # select BR2_LEGACY |
| 50 | # |
| 51 | # # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in |
| 52 | # |
| 53 | # [End of example] |
Arnout Vandecappelle (Essensium/Mind) | ebcfa98 | 2012-11-12 10:08:28 +0000 | [diff] [blame] | 54 | |
| 55 | config BR2_LEGACY |
| 56 | bool |
| 57 | help |
| 58 | This option is selected automatically when your old .config uses an |
| 59 | option that no longer exists in current buildroot. In that case, the |
| 60 | build will fail. Look for config options which are selected in the |
| 61 | menu below: they no longer exist and should be replaced by something |
| 62 | else. |
| 63 | |
| 64 | # This comment fits exactly in a 80-column display |
| 65 | comment "Legacy detected: check the content of the menu below" |
| 66 | depends on BR2_LEGACY |
| 67 | |
Arnout Vandecappelle (Essensium/Mind) | a91a5c1 | 2013-02-05 05:34:32 +0000 | [diff] [blame] | 68 | menu "Legacy config options" |
Arnout Vandecappelle (Essensium/Mind) | ebcfa98 | 2012-11-12 10:08:28 +0000 | [diff] [blame] | 69 | |
Arnout Vandecappelle (Essensium/Mind) | a91a5c1 | 2013-02-05 05:34:32 +0000 | [diff] [blame] | 70 | if BR2_LEGACY |
Thomas De Schampheleire | a25e4a4 | 2013-09-02 22:07:52 +0200 | [diff] [blame] | 71 | comment "----------------------------------------------------" |
Arnout Vandecappelle (Essensium/Mind) | a91a5c1 | 2013-02-05 05:34:32 +0000 | [diff] [blame] | 72 | comment "Your old configuration uses legacy options that no " |
Thomas De Schampheleire | cce5baa | 2013-09-02 22:07:51 +0200 | [diff] [blame] | 73 | comment "longer exist in buildroot, as indicated in the menu " |
| 74 | comment "below. As long as these options stay selected, or in" |
| 75 | comment "case of string options are non-empty, the build " |
Arnout Vandecappelle (Essensium/Mind) | a91a5c1 | 2013-02-05 05:34:32 +0000 | [diff] [blame] | 76 | comment "will fail. " |
Thomas De Schampheleire | cce5baa | 2013-09-02 22:07:51 +0200 | [diff] [blame] | 77 | comment "* " |
| 78 | comment "Where possible, an automatic conversion from old to " |
| 79 | comment "new symbols has been performed. Before making any " |
| 80 | comment "change in this legacy menu, make sure to exit the " |
| 81 | comment "configuration editor a first time and save the " |
| 82 | comment "configuration. Otherwise, the automatic conversion " |
| 83 | comment "of symbols will be lost. " |
| 84 | comment "* " |
| 85 | comment "After this initial save, reopen the configuration " |
| 86 | comment "editor, inspect the options selected below, read " |
| 87 | comment "their help texts, and verify/update the new " |
| 88 | comment "configuration in the corresponding configuration " |
| 89 | comment "menus. When everything is ok, you can disable the " |
| 90 | comment "legacy options in the menu below. Once you have " |
| 91 | comment "disabled all legacy options, this text will " |
| 92 | comment "disappear and you will be able to start the build. " |
| 93 | comment "* " |
Yann E. MORIN | d2e706c | 2013-06-30 00:38:13 +0200 | [diff] [blame] | 94 | comment "Note: at some point in the future, the oldest legacy" |
| 95 | comment "options will be removed, and configuration files " |
| 96 | comment "that still have those options set, will fail to " |
| 97 | comment "build, or run, in unpredictable ways. " |
Thomas De Schampheleire | a25e4a4 | 2013-09-02 22:07:52 +0200 | [diff] [blame] | 98 | comment "----------------------------------------------------" |
Arnout Vandecappelle (Essensium/Mind) | a91a5c1 | 2013-02-05 05:34:32 +0000 | [diff] [blame] | 99 | endif |
| 100 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 101 | ############################################################################### |
Yann E. MORIN | 5cd1c4f | 2014-06-02 22:27:22 +0200 | [diff] [blame^] | 102 | comment "Legacy options removed in 2014.08" |
| 103 | |
| 104 | config BR2_PACKAGE_PROCPS |
| 105 | bool "procps has been replaced by procps-ng" |
| 106 | select BR2_PACKAGE_PROCPS_NG |
| 107 | select BR2_LEGACY |
| 108 | help |
| 109 | The procps package has been replaced by the equivalent procps-ng. |
| 110 | |
| 111 | ############################################################################### |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 112 | comment "Legacy options removed in 2014.05" |
| 113 | |
Peter Seiderer | 4990a38 | 2014-04-23 00:12:23 +0200 | [diff] [blame] | 114 | config BR2_PACKAGE_EVTEST_CAPTURE |
| 115 | bool "evtest-capture support removed (dropped since evtest 1.31)" |
| 116 | select BR2_LEGACY |
| 117 | help |
| 118 | Support for evtest-capture has been removed (dropped from |
| 119 | evtest package since version 1.31), use evemu package |
| 120 | instead. |
| 121 | |
Thomas De Schampheleire | 47c2d1b | 2014-04-30 20:18:24 +0200 | [diff] [blame] | 122 | config BR2_KERNEL_HEADERS_3_6 |
| 123 | bool "kernel headers version 3.6.x are no longer supported" |
| 124 | select BR2_KERNEL_HEADERS_3_8 |
| 125 | select BR2_LEGACY |
| 126 | help |
| 127 | Version 3.6.x of the Linux kernel headers have been deprecated |
| 128 | for more than four buildroot releases and are now removed. |
| 129 | As an alternative, version 3.8.x of the headers have been |
| 130 | automatically selected in your configuration. |
| 131 | |
| 132 | config BR2_KERNEL_HEADERS_3_7 |
| 133 | bool "kernel headers version 3.7.x are no longer supported" |
| 134 | select BR2_KERNEL_HEADERS_3_8 |
| 135 | select BR2_LEGACY |
| 136 | help |
| 137 | Version 3.7.x of the Linux kernel headers have been deprecated |
| 138 | for more than four buildroot releases and are now removed. |
| 139 | As an alternative, version 3.8.x of the headers have been |
| 140 | automatically selected in your configuration. |
| 141 | |
Thomas De Schampheleire | 947ca9e | 2014-04-30 20:18:23 +0200 | [diff] [blame] | 142 | config BR2_PACKAGE_VALA |
| 143 | bool "vala target package has been removed" |
| 144 | select BR2_LEGACY |
| 145 | help |
| 146 | The 'vala' target package has been removed since it has been |
| 147 | deprecated for more than four buildroot releases. |
| 148 | Note: the host vala package still exists. |
| 149 | |
Yann E. MORIN | d6a3791 | 2014-04-07 21:58:03 +0200 | [diff] [blame] | 150 | config BR2_TARGET_TZ_ZONELIST |
| 151 | default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != "" |
| 152 | |
| 153 | config BR2_PACKAGE_TZDATA_ZONELIST |
| 154 | string "tzdata: the timezone list option has been renamed" |
| 155 | help |
| 156 | The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to |
| 157 | BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration" |
| 158 | menu. You'll need to select BR2_TARGET_TZ_INFO. |
| 159 | |
| 160 | config BR2_PACKAGE_TZDATA_ZONELIST_WRAP |
| 161 | bool |
| 162 | default y if BR2_PACKAGE_TZDATA_ZONELIST != "" |
| 163 | select BR2_LEGACY |
| 164 | |
Yann E. MORIN | c97aeb7 | 2014-04-05 17:21:43 +0200 | [diff] [blame] | 165 | config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE |
| 166 | bool "Lua command-line editing none has been renamed" |
| 167 | select BR2_LEGACY |
| 168 | help |
| 169 | The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been |
| 170 | renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select |
| 171 | it in the corresponding choice. |
| 172 | |
| 173 | config BR2_PACKAGE_LUA_INTERPRETER_READLINE |
| 174 | bool "Lua command-line editing using readline has been renamed" |
| 175 | select BR2_LEGACY |
| 176 | help |
| 177 | The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been |
| 178 | renamed to BR2_PACKAGE_LUA_READLINE. You will have to select |
| 179 | it in the corresponding choice. |
| 180 | |
| 181 | config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE |
| 182 | bool "Lua command-line editing using linenoise has been renamed" |
| 183 | select BR2_LEGACY |
| 184 | help |
| 185 | The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been |
| 186 | renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select |
| 187 | it in the corresponding choice. |
| 188 | |
Yann E. MORIN | 365ae61 | 2014-03-28 01:00:24 +0100 | [diff] [blame] | 189 | config BR2_PACKAGE_DVB_APPS_UTILS |
| 190 | bool "dvb-apps utilities now built by default" |
| 191 | select BR2_LEGACY |
| 192 | help |
| 193 | The dvb-apps utilities are now always built when the dvb-apps |
| 194 | package is selected. |
| 195 | |
Yann E. MORIN | 971e331 | 2014-03-01 15:52:56 +0100 | [diff] [blame] | 196 | config BR2_KERNEL_HEADERS_SNAP |
| 197 | bool "Local Linux snapshot support removed" |
| 198 | select BR2_LEGACY |
| 199 | help |
| 200 | Support for using a custom snapshot to install the Linux |
| 201 | kernel headers has been removed. |
| 202 | |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 203 | config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV |
| 204 | bool "/dev management by udev removed" |
| 205 | select BR2_LEGACY |
| 206 | help |
| 207 | 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] | 208 | The providers for this feature are: 'eudev', 'systemd'. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 209 | |
eric.le.bihan.dev@free.fr | 2c66e44 | 2014-02-07 14:21:34 +0100 | [diff] [blame] | 210 | Therefore, if you are not using 'systemd' as init system, you |
| 211 | must choose 'Dynamic using eudev' in the '/dev management' |
| 212 | menu to get the same behaviour as in your old configuration. |
| 213 | |
| 214 | If you are using 'systemd', its internal implementation of |
| 215 | 'udev' will be used automatically. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 216 | |
| 217 | You must also check the packages depending on 'udev' are still |
| 218 | selected. |
| 219 | |
| 220 | config BR2_PACKAGE_UDEV |
| 221 | bool "udev is now a virtual package" |
| 222 | select BR2_LEGACY |
| 223 | select BR2_PACKAGE_HAS_UDEV |
| 224 | help |
| 225 | 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] | 226 | The providers for this feature are: 'eudev', 'systemd'. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 227 | |
| 228 | Your old configuration refers to packages depending on 'udev', |
| 229 | either for build or at runtime. |
| 230 | |
eric.le.bihan.dev@free.fr | 2c66e44 | 2014-02-07 14:21:34 +0100 | [diff] [blame] | 231 | Check that a 'udev' provider is selected. If you are not using |
| 232 | 'systemd' as init system, 'eudev' should be selected, which is |
| 233 | the case if '/dev management' is set to 'Dynamic using eudev'. |
| 234 | |
| 235 | If you are using 'systemd', its internal implementation of 'udev' |
| 236 | is used. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 237 | |
| 238 | config BR2_PACKAGE_UDEV_RULES_GEN |
eric.le.bihan.dev@free.fr | 2c66e44 | 2014-02-07 14:21:34 +0100 | [diff] [blame] | 239 | bool "udev rules generation handled by provider" |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 240 | select BR2_LEGACY |
eric.le.bihan.dev@free.fr | 2c66e44 | 2014-02-07 14:21:34 +0100 | [diff] [blame] | 241 | select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD |
| 242 | 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] | 243 | help |
| 244 | 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] | 245 | The providers for this feature are: 'eudev', 'systemd'. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 246 | |
eric.le.bihan.dev@free.fr | 2c66e44 | 2014-02-07 14:21:34 +0100 | [diff] [blame] | 247 | If you are not using 'systemd' as init system, udev rules |
| 248 | generation will be handled by 'eudev'. Check that |
| 249 | '/dev management' is set to 'Dynamic using eudev' to get |
| 250 | the same behaviour as in your old configuration. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 251 | |
eric.le.bihan.dev@free.fr | 2c66e44 | 2014-02-07 14:21:34 +0100 | [diff] [blame] | 252 | If you are using 'systemd', it internal implementation of 'udev' |
| 253 | will generate the rules. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 254 | |
| 255 | config BR2_PACKAGE_UDEV_ALL_EXTRAS |
| 256 | bool "udev extras removed" |
| 257 | select BR2_LEGACY |
| 258 | help |
| 259 | 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] | 260 | The providers for this feature are: 'eudev', 'systemd'. |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 261 | |
| 262 | The option to enable the extra features of 'udev' (gudev, ...) |
| 263 | has been removed. These features are automatically enabled in |
| 264 | the 'udev' providers if the dependencies are selected. For |
| 265 | example, selecting 'libglib2' will trigger the build of gudev. |
| 266 | |
Bernd Kuhls | 5562be1 | 2014-03-01 16:41:10 +0100 | [diff] [blame] | 267 | config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS |
| 268 | bool "xlib-libpthread-stubs option has been renamed" |
| 269 | depends on BR2_PACKAGE_XORG7 |
| 270 | select BR2_LEGACY |
| 271 | select BR2_PACKAGE_LIBPTHREAD_STUBS |
| 272 | help |
| 273 | The pthread stubs neither depend on X11 nor Xlib. Thus the |
| 274 | package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS |
| 275 | |
eric.le.bihan.dev@free.fr | fabcb11 | 2014-02-07 14:21:33 +0100 | [diff] [blame] | 276 | ############################################################################### |
Yann E. MORIN | f169e5e | 2014-01-19 23:30:42 +0100 | [diff] [blame] | 277 | comment "Legacy options removed in 2014.02" |
| 278 | |
Thomas Petazzoni | e543f5a | 2014-02-04 15:25:34 +0100 | [diff] [blame] | 279 | config BR2_sh2 |
| 280 | bool "sh2 support removed" |
| 281 | help |
| 282 | Due to an inexistent user base and generally poor Linux |
| 283 | support, the support for the SH2 architecture was removed. |
| 284 | |
| 285 | config BR2_sh3 |
| 286 | bool "sh3 support removed" |
| 287 | help |
| 288 | Due to an inexistent user base and generally poor Linux |
| 289 | support, the support for the SH3 architecture was removed. |
| 290 | |
| 291 | config BR2_sh3eb |
| 292 | bool "sh3eb support removed" |
| 293 | help |
| 294 | Due to an inexistent user base and generally poor Linux |
| 295 | support, the support for the SH3eb architecture was removed. |
| 296 | |
Thomas De Schampheleire | 334dca6 | 2014-02-05 14:50:59 +0100 | [diff] [blame] | 297 | config BR2_KERNEL_HEADERS_3_1 |
| 298 | bool "kernel headers version 3.1.x are no longer supported" |
| 299 | select BR2_KERNEL_HEADERS_3_2 |
| 300 | select BR2_LEGACY |
| 301 | help |
| 302 | Version 3.1.x of the Linux kernel headers have been deprecated |
| 303 | for more than four buildroot releases and are now removed. |
| 304 | As an alternative, version 3.2.x of the headers have been |
| 305 | automatically selected in your configuration. |
| 306 | |
| 307 | config BR2_KERNEL_HEADERS_3_3 |
| 308 | bool "kernel headers version 3.3.x are no longer supported" |
| 309 | select BR2_KERNEL_HEADERS_3_4 |
| 310 | select BR2_LEGACY |
| 311 | help |
| 312 | Version 3.3.x of the Linux kernel headers have been deprecated |
| 313 | for more than four buildroot releases and are now removed. |
| 314 | As an alternative, version 3.4.x of the headers have been |
| 315 | automatically selected in your configuration. |
| 316 | |
| 317 | config BR2_KERNEL_HEADERS_3_5 |
| 318 | bool "kernel headers version 3.5.x are no longer supported" |
Thomas De Schampheleire | 47c2d1b | 2014-04-30 20:18:24 +0200 | [diff] [blame] | 319 | select BR2_KERNEL_HEADERS_3_8 |
Thomas De Schampheleire | 334dca6 | 2014-02-05 14:50:59 +0100 | [diff] [blame] | 320 | select BR2_LEGACY |
| 321 | help |
| 322 | Version 3.5.x of the Linux kernel headers have been deprecated |
| 323 | for more than four buildroot releases and are now removed. |
Thomas De Schampheleire | 47c2d1b | 2014-04-30 20:18:24 +0200 | [diff] [blame] | 324 | As an alternative, version 3.8.x of the headers have been |
Thomas De Schampheleire | 334dca6 | 2014-02-05 14:50:59 +0100 | [diff] [blame] | 325 | automatically selected in your configuration. |
| 326 | |
Thomas De Schampheleire | 348060f | 2014-02-05 14:50:58 +0100 | [diff] [blame] | 327 | config BR2_GDB_VERSION_7_2 |
| 328 | bool "gdb 7.2.x is no longer supported" |
| 329 | select BR2_GDB_VERSION_7_5 |
| 330 | select BR2_LEGACY |
| 331 | help |
| 332 | Version 7.2.x of gdb has been deprecated for more than four |
| 333 | buildroot releases and is now removed. As an alternative, gdb |
| 334 | 7.5.x has been automatically selected in your configuration. |
| 335 | |
| 336 | config BR2_GDB_VERSION_7_3 |
| 337 | bool "gdb 7.3.x is no longer supported" |
| 338 | select BR2_GDB_VERSION_7_5 |
| 339 | select BR2_LEGACY |
| 340 | help |
| 341 | Version 7.3.x of gdb has been deprecated for more than four |
| 342 | buildroot releases and is now removed. As an alternative, gdb |
| 343 | 7.5.x has been automatically selected in your configuration. |
| 344 | |
Thomas De Schampheleire | 831624c | 2014-02-05 14:50:57 +0100 | [diff] [blame] | 345 | config BR2_PACKAGE_CCACHE |
| 346 | bool "ccache target package has been removed" |
| 347 | select BR2_LEGACY |
| 348 | help |
| 349 | The 'ccache' target package has been removed since it has been |
| 350 | deprecated for more than four buildroot releases. |
| 351 | Note: using ccache for speeding up builds is still supported. |
| 352 | |
Thomas De Schampheleire | 7164a32 | 2014-02-05 14:50:56 +0100 | [diff] [blame] | 353 | config BR2_HAVE_DOCUMENTATION |
| 354 | bool "support for documentation on target has been removed" |
| 355 | select BR2_LEGACY |
| 356 | help |
| 357 | Support for documentation on target has been removed since it has |
| 358 | been deprecated for more than four buildroot releases. |
| 359 | |
Thomas De Schampheleire | f75245d | 2014-02-05 14:50:55 +0100 | [diff] [blame] | 360 | config BR2_PACKAGE_AUTOMAKE |
| 361 | bool "automake target package has been removed" |
| 362 | select BR2_LEGACY |
| 363 | help |
| 364 | The 'automake' target package has been removed since it has been |
| 365 | deprecated for more than four buildroot releases. |
| 366 | Note: the host automake still exists. |
| 367 | |
Thomas De Schampheleire | e7af2ac | 2014-02-05 14:50:54 +0100 | [diff] [blame] | 368 | config BR2_PACKAGE_AUTOCONF |
| 369 | bool "autoconf target package has been removed" |
| 370 | select BR2_LEGACY |
| 371 | help |
| 372 | The 'autoconf' target package has been removed since it has been |
| 373 | deprecated for more than four buildroot releases. |
| 374 | Note: the host autoconf still exists. |
| 375 | |
Thomas De Schampheleire | ddf5424 | 2014-02-05 14:50:53 +0100 | [diff] [blame] | 376 | config BR2_PACKAGE_XSTROKE |
| 377 | bool "xstroke has been removed" |
| 378 | select BR2_LEGACY |
| 379 | help |
| 380 | The 'xstroke' package has been removed since it has been |
| 381 | deprecated for more than four buildroot releases. |
| 382 | |
Thomas De Schampheleire | 0a07731 | 2014-01-21 08:54:12 +0100 | [diff] [blame] | 383 | config BR2_PACKAGE_LZMA |
| 384 | bool "lzma target package has been removed" |
| 385 | select BR2_LEGACY |
| 386 | help |
| 387 | The 'lzma' target package has been removed since it has been |
| 388 | deprecated for more than four buildroot releases. |
| 389 | Note: generating lzma-compressed rootfs images is still supported. |
| 390 | |
Thomas De Schampheleire | 7ef5c3a | 2014-01-21 08:54:10 +0100 | [diff] [blame] | 391 | config BR2_PACKAGE_TTCP |
| 392 | bool "ttcp has been removed" |
| 393 | select BR2_LEGACY |
| 394 | help |
| 395 | The 'ttcp' package has been removed since it has been |
| 396 | deprecated for more than four buildroot releases. |
| 397 | |
Vicente Olivert Riera | 8b2e235 | 2014-01-10 10:06:19 +0000 | [diff] [blame] | 398 | config BR2_PACKAGE_LIBNFC_LLCP |
Thomas De Schampheleire | 9334104 | 2014-01-21 08:54:13 +0100 | [diff] [blame] | 399 | bool "libnfc-llcp has been replaced by libllcp" |
Vicente Olivert Riera | 8b2e235 | 2014-01-10 10:06:19 +0000 | [diff] [blame] | 400 | select BR2_LEGACY |
Thomas De Schampheleire | 9334104 | 2014-01-21 08:54:13 +0100 | [diff] [blame] | 401 | select BR2_PACKAGE_LIBLLCP |
Vicente Olivert Riera | 8b2e235 | 2014-01-10 10:06:19 +0000 | [diff] [blame] | 402 | help |
| 403 | The 'libnfc-llcp' package has been removed since upstream renamed |
Thomas De Schampheleire | 9334104 | 2014-01-21 08:54:13 +0100 | [diff] [blame] | 404 | to 'libllcp'. We have added a new package for 'libllcp' and bumped |
| 405 | the version at the same time. |
Vicente Olivert Riera | 8b2e235 | 2014-01-10 10:06:19 +0000 | [diff] [blame] | 406 | |
Marcelo Gutiérrez(UTN/FRH) | 06c8212 | 2014-01-21 14:08:28 +0000 | [diff] [blame] | 407 | config BR2_PACKAGE_MYSQL_CLIENT |
| 408 | bool "MySQL client renamed to MySQL" |
| 409 | select BR2_LEGACY |
| 410 | select BR2_PACKAGE_MYSQL |
| 411 | help |
| 412 | The option has been renamed BR2_PACKAGE_MYSQL |
| 413 | |
Thomas De Schampheleire | 2f7a53e | 2014-01-03 17:02:53 +0100 | [diff] [blame] | 414 | config BR2_PACKAGE_SQUASHFS3 |
| 415 | bool "squashfs3 has been removed" |
| 416 | select BR2_LEGACY |
| 417 | select BR2_PACKAGE_SQUASHFS |
| 418 | help |
| 419 | The 'squashfs3' package has been removed since it has been |
| 420 | deprecated for more than four buildroot releases. Package |
| 421 | 'squashfs' (4) has been selected automatically as replacement. |
| 422 | |
| 423 | config BR2_TARGET_ROOTFS_SQUASHFS3 |
| 424 | bool "squashfs3 rootfs support has been removed" |
| 425 | select BR2_LEGACY |
| 426 | help |
| 427 | Together with the removal of the squashfs3 package, support |
| 428 | for squashfs3 root filesystems has been removed too. Squashfs |
| 429 | root filesystems will automatically use squashfs4 now. |
| 430 | |
Arnaud Aujon | 560fe85 | 2013-12-15 20:23:12 +0100 | [diff] [blame] | 431 | config BR2_PACKAGE_NETKITBASE |
| 432 | bool "netkitbase has been removed" |
| 433 | select BR2_LEGACY |
| 434 | help |
| 435 | The 'netkitbase' package has been removed since it has been |
| 436 | deprecated since 2012.11. This package provided 'inetd' |
| 437 | which is replaced by 'xinet' and 'ping' which is replaced by |
| 438 | 'busybox' or 'fping'. |
| 439 | |
| 440 | config BR2_PACKAGE_NETKITTELNET |
| 441 | bool "netkittelnet has been removed" |
| 442 | select BR2_LEGACY |
| 443 | help |
| 444 | The 'netkittelnet' package has been removed since it has |
| 445 | been deprecated since 2012.11. 'busybox' provides a telnet |
| 446 | client and should be used instead. |
| 447 | |
Francois Perrad | 63058f8 | 2014-01-11 16:42:09 +0100 | [diff] [blame] | 448 | config BR2_PACKAGE_LUASQL |
| 449 | bool "luasql has been replaced by luasql-sqlite3" |
| 450 | select BR2_PACKAGE_LUASQL_SQLITE3 |
| 451 | select BR2_LEGACY |
| 452 | help |
| 453 | The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3. |
| 454 | |
Francois Perrad | a6c5347 | 2014-01-11 16:42:08 +0100 | [diff] [blame] | 455 | config BR2_PACKAGE_LUACJSON |
| 456 | bool "luacjson has been replaced by lua-cjson" |
| 457 | select BR2_PACKAGE_LUA_CJSON |
| 458 | select BR2_LEGACY |
| 459 | help |
| 460 | The option has been renamed BR2_PACKAGE_LUA_CJSON. |
| 461 | |
Arnaud Aujon | 560fe85 | 2013-12-15 20:23:12 +0100 | [diff] [blame] | 462 | ############################################################################### |
Thomas Petazzoni | 94c7208 | 2013-08-27 19:28:34 +0200 | [diff] [blame] | 463 | comment "Legacy options removed in 2013.11" |
| 464 | |
Arnout Vandecappelle | ff0f55e | 2013-11-28 09:29:28 +0100 | [diff] [blame] | 465 | config BR2_PACKAGE_LVM2_DMSETUP_ONLY |
| 466 | bool "lvm2's 'dmsetup only' option removed" |
| 467 | select BR2_LEGACY |
| 468 | help |
| 469 | The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which |
| 470 | led to problems with other packages that need the full lvm2 |
| 471 | suite. Therefore, the option has been replaced with the positive |
| 472 | BR2_PACKAGE_LVM2_STANDARD_INSTALL option. |
| 473 | |
| 474 | # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in |
| 475 | # in order to automatically propagate old configs |
| 476 | |
Thomas Petazzoni | 1f9c04f | 2013-11-07 20:07:21 +0100 | [diff] [blame] | 477 | config BR2_PACKAGE_QT_JAVASCRIPTCORE |
| 478 | bool "qt javascriptcore option removed" |
| 479 | select BR2_LEGACY |
| 480 | help |
| 481 | The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to |
| 482 | force the activation or disabling of the JIT compiler in the |
| 483 | Qt Javascript interpreter. However, the JIT compiler is not |
| 484 | available for all architectures, so forcing its activation |
| 485 | does not always work. Moreover, Qt knows by itself for which |
| 486 | architectures JIT support is possible, and will |
| 487 | automatically enable it if possible. |
| 488 | |
| 489 | Therefore, this option was in fact useless, and causing |
| 490 | build problems when enabled on architectures for which the |
| 491 | JIT support was not available. It has been removed, and |
| 492 | there is no replacement: Qt will enable JIT at compile time |
| 493 | when possible. |
| 494 | |
Thomas Petazzoni | 94c7208 | 2013-08-27 19:28:34 +0200 | [diff] [blame] | 495 | config BR2_PACKAGE_MODULE_INIT_TOOLS |
| 496 | bool "module-init-tools replaced by kmod" |
| 497 | select BR2_PACKAGE_KMOD |
| 498 | select BR2_PACKAGE_KMOD_TOOLS |
Thomas Petazzoni | 0f401f9 | 2013-11-07 20:09:48 +0100 | [diff] [blame] | 499 | select BR2_LEGACY |
Thomas Petazzoni | 94c7208 | 2013-08-27 19:28:34 +0200 | [diff] [blame] | 500 | help |
| 501 | The 'module-init-tools' package has been removed, since it |
| 502 | has been depracated upstream and replaced by 'kmod'. |
| 503 | |
Thomas De Schampheleire | f2c2193 | 2013-09-02 22:07:55 +0200 | [diff] [blame] | 504 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL |
| 505 | string "u-boot: the git repository URL option has been renamed" |
| 506 | help |
| 507 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has |
| 508 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL. |
| 509 | |
| 510 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP |
| 511 | bool |
| 512 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != "" |
| 513 | select BR2_LEGACY |
| 514 | |
| 515 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from |
| 516 | # boot/uboot/Config.in |
| 517 | |
| 518 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION |
| 519 | string "u-boot: the git repository version option has been renamed" |
| 520 | help |
| 521 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has |
| 522 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION. |
| 523 | |
| 524 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP |
| 525 | bool |
| 526 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" |
| 527 | select BR2_LEGACY |
| 528 | |
| 529 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from |
| 530 | # boot/uboot/Config.in |
| 531 | |
Thomas De Schampheleire | 63ecded | 2013-09-02 22:07:54 +0200 | [diff] [blame] | 532 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL |
| 533 | string "linux: the git repository URL option has been renamed" |
| 534 | help |
| 535 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has |
| 536 | been renamed to |
| 537 | BR2_LINUX_KERNEL_CUSTOM_REPO_URL. |
| 538 | |
| 539 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP |
| 540 | bool |
| 541 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != "" |
| 542 | select BR2_LEGACY |
| 543 | |
| 544 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from |
| 545 | # linux/Config.in |
| 546 | |
| 547 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION |
| 548 | string "linux: the git repository version option has been renamed" |
| 549 | help |
| 550 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has |
| 551 | been renamed to |
| 552 | BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION. |
| 553 | |
| 554 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP |
| 555 | bool |
| 556 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" |
| 557 | select BR2_LEGACY |
| 558 | |
| 559 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from |
| 560 | # linux/Config.in |
| 561 | |
Thomas Petazzoni | 94c7208 | 2013-08-27 19:28:34 +0200 | [diff] [blame] | 562 | ############################################################################### |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 563 | comment "Legacy options removed in 2013.08" |
Gustavo Zacarias | c6e4fcb | 2013-06-10 11:14:31 -0300 | [diff] [blame] | 564 | |
Thomas Petazzoni | 1f3078b | 2013-08-10 19:20:01 +0200 | [diff] [blame] | 565 | config BR2_ARM_OABI |
| 566 | bool "ARM OABI support has been removed" |
| 567 | select BR2_LEGACY |
| 568 | help |
| 569 | The support for the ARM OABI was deprecated since a while, |
| 570 | and has been removed completely from Buildroot. It is also |
| 571 | deprecated in upstream gcc, since gcc 4.7. People should |
| 572 | switch to EABI instead, which should not be a problem as |
| 573 | long as you don't have pre-built OABI binaries in your |
| 574 | system that you can't recompile. |
| 575 | |
Gustavo Zacarias | c6e4fcb | 2013-06-10 11:14:31 -0300 | [diff] [blame] | 576 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK |
| 577 | bool "dosfstools dosfsck renamed to fsck.fat" |
| 578 | select BR2_LEGACY |
| 579 | select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT |
| 580 | help |
| 581 | dosfsck was renamed upstream to fsck.fat for consistency. |
| 582 | |
| 583 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL |
| 584 | bool "dosfstools dosfslabel renamed to fatlabel" |
| 585 | select BR2_LEGACY |
| 586 | select BR2_PACKAGE_DOSFSTOOLS_FATLABEL |
| 587 | help |
| 588 | doslabel was renamed upstream to fatlabel for consistency. |
| 589 | |
| 590 | config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS |
| 591 | bool "dosfstools mkdosfs renamed to mkfs.fat" |
| 592 | select BR2_LEGACY |
| 593 | select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT |
| 594 | help |
| 595 | mkdosfs was renamed upstream to mkfs.fat for consistency. |
| 596 | |
Thomas Petazzoni | e21db00 | 2013-06-30 21:28:57 +0200 | [diff] [blame] | 597 | config BR2_ELF2FLT |
| 598 | bool "the elf2flt option has been renamed" |
| 599 | select BR2_LEGACY |
| 600 | help |
| 601 | The BR2_ELF2FLT option has been renamed to |
| 602 | BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to |
| 603 | the package infrastructure. |
| 604 | |
Thomas Petazzoni | d806005 | 2013-07-16 10:03:17 +0200 | [diff] [blame] | 605 | config BR2_VFP_FLOAT |
| 606 | bool "the ARM VFP floating point option has been renamed" |
| 607 | select BR2_LEGACY |
| 608 | help |
| 609 | Due to a major refactoring of the floating-point handling of |
| 610 | the ARM architecture support, the BR2_VFP_FLOAT option has |
| 611 | been replaced with a choice of options that allows to select |
| 612 | between various VFP versions/capabilities. |
| 613 | |
Samuel Martin | ba8f82b | 2013-08-30 06:08:59 +0200 | [diff] [blame] | 614 | config BR2_PACKAGE_GCC_TARGET |
| 615 | bool "gcc on the target filesystem has been removed" |
| 616 | select BR2_LEGACY |
| 617 | help |
| 618 | The support for gcc in the target filesystem was deprecated |
| 619 | since a while, and has been removed completely from Buildroot. |
| 620 | See Buildroot's documentation for more explanations. |
| 621 | |
| 622 | config BR2_HAVE_DEVFILES |
| 623 | bool "development files in target filesystem has been removed" |
| 624 | select BR2_LEGACY |
| 625 | help |
| 626 | The installation of the development files in the target |
| 627 | filesystem was deprecated since a while, and has been removed |
| 628 | completely from Buildroot. |
| 629 | See Buildroot's documentation for more explanations. |
| 630 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 631 | ############################################################################### |
| 632 | comment "Legacy options removed in 2013.05" |
Yann E. MORIN | 860d37a | 2013-06-04 11:49:53 +0000 | [diff] [blame] | 633 | |
| 634 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192 |
| 635 | bool "Realtek 8192 replaced by Realtek 81xx" |
| 636 | select BR2_LEGACY |
| 637 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX |
| 638 | help |
| 639 | Now covers the whole Realtek 81xx familly: 8188/8192. |
| 640 | |
| 641 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712 |
| 642 | bool "Realtek 8712 replaced by Realtek 87xx" |
| 643 | select BR2_LEGACY |
| 644 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX |
| 645 | help |
| 646 | Now covers the whole Realtek 87xx familly: 8712/8723. |
| 647 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 648 | ############################################################################### |
| 649 | comment "Legacy options removed in 2013.02" |
Thomas Petazzoni | 29b83f0 | 2013-03-07 10:45:24 +0000 | [diff] [blame] | 650 | |
Gustavo Zacarias | 9474421 | 2013-04-04 07:29:45 +0000 | [diff] [blame] | 651 | config BR2_sa110 |
| 652 | bool "sa110 ARM target switched to strongarm" |
| 653 | select BR2_LEGACY |
| 654 | select BR2_strongarm |
| 655 | help |
| 656 | The SA110 is the same as a generic StrongARM, it just differs |
| 657 | in speed, peripherals and cache. |
| 658 | |
| 659 | config BR2_sa1100 |
| 660 | bool "sa1100 ARM target switched to strongarm" |
| 661 | select BR2_LEGACY |
| 662 | select BR2_strongarm |
| 663 | help |
| 664 | The SA1100 is the same as a generic StrongARM, it just differs |
| 665 | in speed, peripherals and cache. |
| 666 | |
Thomas Petazzoni | 29b83f0 | 2013-03-07 10:45:24 +0000 | [diff] [blame] | 667 | config BR2_PACKAGE_GDISK |
| 668 | bool "gdisk has been replaced by gptfdisk" |
| 669 | select BR2_LEGACY |
| 670 | select BR2_PACKAGE_GPTFDISK |
| 671 | help |
| 672 | The option has been renamed BR2_PACKAGE_GPTFDISK. |
| 673 | |
| 674 | config BR2_PACKAGE_GDISK_GDISK |
| 675 | bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk" |
| 676 | select BR2_LEGACY |
| 677 | select BR2_PACKAGE_GPTFDISK |
| 678 | select BR2_PACKAGE_GPTFDISK_GDISK |
| 679 | help |
| 680 | The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK. |
| 681 | |
| 682 | config BR2_PACKAGE_GDISK_SGDISK |
| 683 | bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk" |
| 684 | select BR2_LEGACY |
| 685 | select BR2_PACKAGE_GPTFDISK |
| 686 | select BR2_PACKAGE_GPTFDISK_SGDISK |
| 687 | help |
| 688 | The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK. |
Arnout Vandecappelle (Essensium/Mind) | ebcfa98 | 2012-11-12 10:08:28 +0000 | [diff] [blame] | 689 | |
Thomas Petazzoni | a0b6faa | 2013-04-07 00:04:33 +0000 | [diff] [blame] | 690 | config BR2_PACKAGE_GDB_HOST |
| 691 | bool "gdb for the host option has been renamed" |
| 692 | select BR2_PACKAGE_HOST_GDB |
| 693 | select BR2_LEGACY |
| 694 | help |
| 695 | Due to the conversion of gdb to the package infrastructure, |
| 696 | the BR2_PACKAGE_GDB_HOST option has been renamed |
| 697 | BR2_PACKAGE_HOST_GDB. |
| 698 | |
Carsten Schoenert | 76de0f8 | 2013-03-10 08:32:46 +0000 | [diff] [blame] | 699 | config BR2_PACKAGE_DIRECTB_DITHER_RGB16 |
| 700 | bool "DirectFB RGB16 dithering option has been renamed" |
| 701 | select BR2_PACKAGE_DIRECTFB_DITHER_RGB16 |
| 702 | select BR2_LEGACY |
| 703 | help |
| 704 | The option has been renamed |
| 705 | BR2_PACKAGE_DIRECTFB_DITHER_RGB16. |
| 706 | |
| 707 | config BR2_PACKAGE_DIRECTB_TESTS |
| 708 | bool "DirectFB Tests option has been renamed" |
| 709 | select BR2_PACKAGE_DIRECTFB_TESTS |
| 710 | select BR2_LEGACY |
| 711 | help |
| 712 | The option has been renamed |
| 713 | BR2_PACKAGE_DIRECTFB_TESTS. |
| 714 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 715 | ############################################################################### |
| 716 | comment "Legacy options removed in 2012.11" |
| 717 | |
Thomas Petazzoni | 12ccc43 | 2013-02-07 11:58:45 +0000 | [diff] [blame] | 718 | config BR2_PACKAGE_CUSTOMIZE |
| 719 | bool "customize package has been removed" |
| 720 | select BR2_LEGACY |
| 721 | help |
| 722 | The 'customize' special package has been removed. Instead, |
| 723 | we recommend to create either your own packages, or use a |
| 724 | post-build script to customize your root filesystem. See |
| 725 | Buildroot's documentation for more details. |
Arnout Vandecappelle (Essensium/Mind) | 2cd9121 | 2013-02-05 05:34:33 +0000 | [diff] [blame] | 726 | |
| 727 | config BR2_PACKAGE_XSERVER_xorg |
| 728 | bool "X.org modular server" |
| 729 | select BR2_LEGACY |
| 730 | select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR |
| 731 | help |
| 732 | The option has been renamed |
| 733 | BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR. |
| 734 | |
| 735 | config BR2_PACKAGE_XSERVER_tinyx |
| 736 | bool "KDrive / TinyX server" |
| 737 | select BR2_LEGACY |
| 738 | select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE |
| 739 | help |
| 740 | The option has been renamed |
| 741 | BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE. |
| 742 | |
| 743 | config BR2_PACKAGE_PTHREAD_STUBS |
| 744 | bool "pthread-stubs option has been renamed" |
| 745 | select BR2_LEGACY |
Bernd Kuhls | 5562be1 | 2014-03-01 16:41:10 +0100 | [diff] [blame] | 746 | select BR2_PACKAGE_LIBPTHREAD_STUBS |
Arnout Vandecappelle (Essensium/Mind) | 2cd9121 | 2013-02-05 05:34:33 +0000 | [diff] [blame] | 747 | help |
| 748 | For consistency reason, the pthread-stubs package has been |
Bernd Kuhls | 5562be1 | 2014-03-01 16:41:10 +0100 | [diff] [blame] | 749 | renamed to libpthread-stubs. |
Arnout Vandecappelle (Essensium/Mind) | 2cd9121 | 2013-02-05 05:34:33 +0000 | [diff] [blame] | 750 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 751 | ############################################################################### |
| 752 | comment "Legacy options removed in 2012.08" |
Arnout Vandecappelle (Essensium/Mind) | ebcfa98 | 2012-11-12 10:08:28 +0000 | [diff] [blame] | 753 | |
Arnout Vandecappelle (Essensium/Mind) | 26803e8 | 2012-11-12 10:08:32 +0000 | [diff] [blame] | 754 | config BR2_PACKAGE_GETTEXT_STATIC |
| 755 | bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB" |
| 756 | select BR2_LEGACY |
| 757 | help |
| 758 | To build a static gettext library, select BR2_PREFER_STATIC_LIB. |
| 759 | |
| 760 | |
| 761 | config BR2_PACKAGE_LIBINTL |
| 762 | bool "libintl" |
| 763 | select BR2_LEGACY |
| 764 | select BR2_PACKAGE_GETTEXT |
| 765 | help |
| 766 | libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now |
| 767 | only installs the library, not the executables. |
| 768 | |
Arnout Vandecappelle (Essensium/Mind) | c430fab | 2012-11-12 10:08:31 +0000 | [diff] [blame] | 769 | config BR2_PACKAGE_INPUT_TOOLS_EVTEST |
| 770 | bool "input-tools evtest is now a separate package evtest" |
| 771 | select BR2_LEGACY |
| 772 | select BR2_PACKAGE_EVTEST |
| 773 | help |
| 774 | The evtest program from input-tools is now a separate package. |
| 775 | |
Sonic Zhang | 5713382 | 2013-05-03 00:39:34 +0000 | [diff] [blame] | 776 | config BR2_BFIN_FDPIC |
| 777 | bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC" |
| 778 | select BR2_BINFMT_FDPIC |
| 779 | select BR2_LEGACY |
| 780 | |
| 781 | config BR2_BFIN_FLAT |
| 782 | bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT" |
| 783 | select BR2_BINFMT_FLAT |
| 784 | select BR2_LEGACY |
| 785 | |
Arnout Vandecappelle (Essensium/Mind) | a91a5c1 | 2013-02-05 05:34:32 +0000 | [diff] [blame] | 786 | endmenu |