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 | f169e5e | 2014-01-19 23:30:42 +0100 | [diff] [blame] | 102 | comment "Legacy options removed in 2014.02" |
| 103 | |
Thomas Petazzoni | e543f5a | 2014-02-04 15:25:34 +0100 | [diff] [blame] | 104 | config BR2_sh2 |
| 105 | bool "sh2 support removed" |
| 106 | help |
| 107 | Due to an inexistent user base and generally poor Linux |
| 108 | support, the support for the SH2 architecture was removed. |
| 109 | |
| 110 | config BR2_sh3 |
| 111 | bool "sh3 support removed" |
| 112 | help |
| 113 | Due to an inexistent user base and generally poor Linux |
| 114 | support, the support for the SH3 architecture was removed. |
| 115 | |
| 116 | config BR2_sh3eb |
| 117 | bool "sh3eb support removed" |
| 118 | help |
| 119 | Due to an inexistent user base and generally poor Linux |
| 120 | support, the support for the SH3eb architecture was removed. |
| 121 | |
Thomas De Schampheleire | ddf5424 | 2014-02-05 14:50:53 +0100 | [diff] [blame^] | 122 | config BR2_PACKAGE_XSTROKE |
| 123 | bool "xstroke has been removed" |
| 124 | select BR2_LEGACY |
| 125 | help |
| 126 | The 'xstroke' package has been removed since it has been |
| 127 | deprecated for more than four buildroot releases. |
| 128 | |
Thomas De Schampheleire | 0a07731 | 2014-01-21 08:54:12 +0100 | [diff] [blame] | 129 | config BR2_PACKAGE_LZMA |
| 130 | bool "lzma target package has been removed" |
| 131 | select BR2_LEGACY |
| 132 | help |
| 133 | The 'lzma' target package has been removed since it has been |
| 134 | deprecated for more than four buildroot releases. |
| 135 | Note: generating lzma-compressed rootfs images is still supported. |
| 136 | |
Thomas De Schampheleire | 7ef5c3a | 2014-01-21 08:54:10 +0100 | [diff] [blame] | 137 | config BR2_PACKAGE_TTCP |
| 138 | bool "ttcp has been removed" |
| 139 | select BR2_LEGACY |
| 140 | help |
| 141 | The 'ttcp' package has been removed since it has been |
| 142 | deprecated for more than four buildroot releases. |
| 143 | |
Vicente Olivert Riera | 8b2e235 | 2014-01-10 10:06:19 +0000 | [diff] [blame] | 144 | config BR2_PACKAGE_LIBNFC_LLCP |
Thomas De Schampheleire | 9334104 | 2014-01-21 08:54:13 +0100 | [diff] [blame] | 145 | bool "libnfc-llcp has been replaced by libllcp" |
Vicente Olivert Riera | 8b2e235 | 2014-01-10 10:06:19 +0000 | [diff] [blame] | 146 | select BR2_LEGACY |
Thomas De Schampheleire | 9334104 | 2014-01-21 08:54:13 +0100 | [diff] [blame] | 147 | select BR2_PACKAGE_LIBLLCP |
Vicente Olivert Riera | 8b2e235 | 2014-01-10 10:06:19 +0000 | [diff] [blame] | 148 | help |
| 149 | The 'libnfc-llcp' package has been removed since upstream renamed |
Thomas De Schampheleire | 9334104 | 2014-01-21 08:54:13 +0100 | [diff] [blame] | 150 | to 'libllcp'. We have added a new package for 'libllcp' and bumped |
| 151 | the version at the same time. |
Vicente Olivert Riera | 8b2e235 | 2014-01-10 10:06:19 +0000 | [diff] [blame] | 152 | |
Marcelo GutiƩrrez(UTN/FRH) | 06c8212 | 2014-01-21 14:08:28 +0000 | [diff] [blame] | 153 | config BR2_PACKAGE_MYSQL_CLIENT |
| 154 | bool "MySQL client renamed to MySQL" |
| 155 | select BR2_LEGACY |
| 156 | select BR2_PACKAGE_MYSQL |
| 157 | help |
| 158 | The option has been renamed BR2_PACKAGE_MYSQL |
| 159 | |
Thomas De Schampheleire | 2f7a53e | 2014-01-03 17:02:53 +0100 | [diff] [blame] | 160 | config BR2_PACKAGE_SQUASHFS3 |
| 161 | bool "squashfs3 has been removed" |
| 162 | select BR2_LEGACY |
| 163 | select BR2_PACKAGE_SQUASHFS |
| 164 | help |
| 165 | The 'squashfs3' package has been removed since it has been |
| 166 | deprecated for more than four buildroot releases. Package |
| 167 | 'squashfs' (4) has been selected automatically as replacement. |
| 168 | |
| 169 | config BR2_TARGET_ROOTFS_SQUASHFS3 |
| 170 | bool "squashfs3 rootfs support has been removed" |
| 171 | select BR2_LEGACY |
| 172 | help |
| 173 | Together with the removal of the squashfs3 package, support |
| 174 | for squashfs3 root filesystems has been removed too. Squashfs |
| 175 | root filesystems will automatically use squashfs4 now. |
| 176 | |
Arnaud Aujon | 560fe85 | 2013-12-15 20:23:12 +0100 | [diff] [blame] | 177 | config BR2_PACKAGE_NETKITBASE |
| 178 | bool "netkitbase has been removed" |
| 179 | select BR2_LEGACY |
| 180 | help |
| 181 | The 'netkitbase' package has been removed since it has been |
| 182 | deprecated since 2012.11. This package provided 'inetd' |
| 183 | which is replaced by 'xinet' and 'ping' which is replaced by |
| 184 | 'busybox' or 'fping'. |
| 185 | |
| 186 | config BR2_PACKAGE_NETKITTELNET |
| 187 | bool "netkittelnet has been removed" |
| 188 | select BR2_LEGACY |
| 189 | help |
| 190 | The 'netkittelnet' package has been removed since it has |
| 191 | been deprecated since 2012.11. 'busybox' provides a telnet |
| 192 | client and should be used instead. |
| 193 | |
Francois Perrad | 63058f8 | 2014-01-11 16:42:09 +0100 | [diff] [blame] | 194 | config BR2_PACKAGE_LUASQL |
| 195 | bool "luasql has been replaced by luasql-sqlite3" |
| 196 | select BR2_PACKAGE_LUASQL_SQLITE3 |
| 197 | select BR2_LEGACY |
| 198 | help |
| 199 | The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3. |
| 200 | |
Francois Perrad | a6c5347 | 2014-01-11 16:42:08 +0100 | [diff] [blame] | 201 | config BR2_PACKAGE_LUACJSON |
| 202 | bool "luacjson has been replaced by lua-cjson" |
| 203 | select BR2_PACKAGE_LUA_CJSON |
| 204 | select BR2_LEGACY |
| 205 | help |
| 206 | The option has been renamed BR2_PACKAGE_LUA_CJSON. |
| 207 | |
Arnaud Aujon | 560fe85 | 2013-12-15 20:23:12 +0100 | [diff] [blame] | 208 | ############################################################################### |
Thomas Petazzoni | 94c7208 | 2013-08-27 19:28:34 +0200 | [diff] [blame] | 209 | comment "Legacy options removed in 2013.11" |
| 210 | |
Arnout Vandecappelle | ff0f55e | 2013-11-28 09:29:28 +0100 | [diff] [blame] | 211 | config BR2_PACKAGE_LVM2_DMSETUP_ONLY |
| 212 | bool "lvm2's 'dmsetup only' option removed" |
| 213 | select BR2_LEGACY |
| 214 | help |
| 215 | The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which |
| 216 | led to problems with other packages that need the full lvm2 |
| 217 | suite. Therefore, the option has been replaced with the positive |
| 218 | BR2_PACKAGE_LVM2_STANDARD_INSTALL option. |
| 219 | |
| 220 | # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in |
| 221 | # in order to automatically propagate old configs |
| 222 | |
Thomas Petazzoni | 1f9c04f | 2013-11-07 20:07:21 +0100 | [diff] [blame] | 223 | config BR2_PACKAGE_QT_JAVASCRIPTCORE |
| 224 | bool "qt javascriptcore option removed" |
| 225 | select BR2_LEGACY |
| 226 | help |
| 227 | The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to |
| 228 | force the activation or disabling of the JIT compiler in the |
| 229 | Qt Javascript interpreter. However, the JIT compiler is not |
| 230 | available for all architectures, so forcing its activation |
| 231 | does not always work. Moreover, Qt knows by itself for which |
| 232 | architectures JIT support is possible, and will |
| 233 | automatically enable it if possible. |
| 234 | |
| 235 | Therefore, this option was in fact useless, and causing |
| 236 | build problems when enabled on architectures for which the |
| 237 | JIT support was not available. It has been removed, and |
| 238 | there is no replacement: Qt will enable JIT at compile time |
| 239 | when possible. |
| 240 | |
Thomas Petazzoni | 94c7208 | 2013-08-27 19:28:34 +0200 | [diff] [blame] | 241 | config BR2_PACKAGE_MODULE_INIT_TOOLS |
| 242 | bool "module-init-tools replaced by kmod" |
| 243 | select BR2_PACKAGE_KMOD |
| 244 | select BR2_PACKAGE_KMOD_TOOLS |
Thomas Petazzoni | 0f401f9 | 2013-11-07 20:09:48 +0100 | [diff] [blame] | 245 | select BR2_LEGACY |
Thomas Petazzoni | 94c7208 | 2013-08-27 19:28:34 +0200 | [diff] [blame] | 246 | help |
| 247 | The 'module-init-tools' package has been removed, since it |
| 248 | has been depracated upstream and replaced by 'kmod'. |
| 249 | |
Thomas De Schampheleire | f2c2193 | 2013-09-02 22:07:55 +0200 | [diff] [blame] | 250 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL |
| 251 | string "u-boot: the git repository URL option has been renamed" |
| 252 | help |
| 253 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has |
| 254 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL. |
| 255 | |
| 256 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP |
| 257 | bool |
| 258 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != "" |
| 259 | select BR2_LEGACY |
| 260 | |
| 261 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from |
| 262 | # boot/uboot/Config.in |
| 263 | |
| 264 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION |
| 265 | string "u-boot: the git repository version option has been renamed" |
| 266 | help |
| 267 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has |
| 268 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION. |
| 269 | |
| 270 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP |
| 271 | bool |
| 272 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" |
| 273 | select BR2_LEGACY |
| 274 | |
| 275 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from |
| 276 | # boot/uboot/Config.in |
| 277 | |
Thomas De Schampheleire | 63ecded | 2013-09-02 22:07:54 +0200 | [diff] [blame] | 278 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL |
| 279 | string "linux: the git repository URL option has been renamed" |
| 280 | help |
| 281 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has |
| 282 | been renamed to |
| 283 | BR2_LINUX_KERNEL_CUSTOM_REPO_URL. |
| 284 | |
| 285 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP |
| 286 | bool |
| 287 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != "" |
| 288 | select BR2_LEGACY |
| 289 | |
| 290 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from |
| 291 | # linux/Config.in |
| 292 | |
| 293 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION |
| 294 | string "linux: the git repository version option has been renamed" |
| 295 | help |
| 296 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has |
| 297 | been renamed to |
| 298 | BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION. |
| 299 | |
| 300 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP |
| 301 | bool |
| 302 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" |
| 303 | select BR2_LEGACY |
| 304 | |
| 305 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from |
| 306 | # linux/Config.in |
| 307 | |
Thomas Petazzoni | 94c7208 | 2013-08-27 19:28:34 +0200 | [diff] [blame] | 308 | ############################################################################### |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 309 | comment "Legacy options removed in 2013.08" |
Gustavo Zacarias | c6e4fcb | 2013-06-10 11:14:31 -0300 | [diff] [blame] | 310 | |
Thomas Petazzoni | 1f3078b | 2013-08-10 19:20:01 +0200 | [diff] [blame] | 311 | config BR2_ARM_OABI |
| 312 | bool "ARM OABI support has been removed" |
| 313 | select BR2_LEGACY |
| 314 | help |
| 315 | The support for the ARM OABI was deprecated since a while, |
| 316 | and has been removed completely from Buildroot. It is also |
| 317 | deprecated in upstream gcc, since gcc 4.7. People should |
| 318 | switch to EABI instead, which should not be a problem as |
| 319 | long as you don't have pre-built OABI binaries in your |
| 320 | system that you can't recompile. |
| 321 | |
Gustavo Zacarias | c6e4fcb | 2013-06-10 11:14:31 -0300 | [diff] [blame] | 322 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK |
| 323 | bool "dosfstools dosfsck renamed to fsck.fat" |
| 324 | select BR2_LEGACY |
| 325 | select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT |
| 326 | help |
| 327 | dosfsck was renamed upstream to fsck.fat for consistency. |
| 328 | |
| 329 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL |
| 330 | bool "dosfstools dosfslabel renamed to fatlabel" |
| 331 | select BR2_LEGACY |
| 332 | select BR2_PACKAGE_DOSFSTOOLS_FATLABEL |
| 333 | help |
| 334 | doslabel was renamed upstream to fatlabel for consistency. |
| 335 | |
| 336 | config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS |
| 337 | bool "dosfstools mkdosfs renamed to mkfs.fat" |
| 338 | select BR2_LEGACY |
| 339 | select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT |
| 340 | help |
| 341 | mkdosfs was renamed upstream to mkfs.fat for consistency. |
| 342 | |
Thomas Petazzoni | e21db00 | 2013-06-30 21:28:57 +0200 | [diff] [blame] | 343 | config BR2_ELF2FLT |
| 344 | bool "the elf2flt option has been renamed" |
| 345 | select BR2_LEGACY |
| 346 | help |
| 347 | The BR2_ELF2FLT option has been renamed to |
| 348 | BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to |
| 349 | the package infrastructure. |
| 350 | |
Thomas Petazzoni | d806005 | 2013-07-16 10:03:17 +0200 | [diff] [blame] | 351 | config BR2_VFP_FLOAT |
| 352 | bool "the ARM VFP floating point option has been renamed" |
| 353 | select BR2_LEGACY |
| 354 | help |
| 355 | Due to a major refactoring of the floating-point handling of |
| 356 | the ARM architecture support, the BR2_VFP_FLOAT option has |
| 357 | been replaced with a choice of options that allows to select |
| 358 | between various VFP versions/capabilities. |
| 359 | |
Samuel Martin | ba8f82b | 2013-08-30 06:08:59 +0200 | [diff] [blame] | 360 | config BR2_PACKAGE_GCC_TARGET |
| 361 | bool "gcc on the target filesystem has been removed" |
| 362 | select BR2_LEGACY |
| 363 | help |
| 364 | The support for gcc in the target filesystem was deprecated |
| 365 | since a while, and has been removed completely from Buildroot. |
| 366 | See Buildroot's documentation for more explanations. |
| 367 | |
| 368 | config BR2_HAVE_DEVFILES |
| 369 | bool "development files in target filesystem has been removed" |
| 370 | select BR2_LEGACY |
| 371 | help |
| 372 | The installation of the development files in the target |
| 373 | filesystem was deprecated since a while, and has been removed |
| 374 | completely from Buildroot. |
| 375 | See Buildroot's documentation for more explanations. |
| 376 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 377 | ############################################################################### |
| 378 | comment "Legacy options removed in 2013.05" |
Yann E. MORIN | 860d37a | 2013-06-04 11:49:53 +0000 | [diff] [blame] | 379 | |
| 380 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192 |
| 381 | bool "Realtek 8192 replaced by Realtek 81xx" |
| 382 | select BR2_LEGACY |
| 383 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX |
| 384 | help |
| 385 | Now covers the whole Realtek 81xx familly: 8188/8192. |
| 386 | |
| 387 | config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712 |
| 388 | bool "Realtek 8712 replaced by Realtek 87xx" |
| 389 | select BR2_LEGACY |
| 390 | select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX |
| 391 | help |
| 392 | Now covers the whole Realtek 87xx familly: 8712/8723. |
| 393 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 394 | ############################################################################### |
| 395 | comment "Legacy options removed in 2013.02" |
Thomas Petazzoni | 29b83f0 | 2013-03-07 10:45:24 +0000 | [diff] [blame] | 396 | |
Gustavo Zacarias | 9474421 | 2013-04-04 07:29:45 +0000 | [diff] [blame] | 397 | config BR2_sa110 |
| 398 | bool "sa110 ARM target switched to strongarm" |
| 399 | select BR2_LEGACY |
| 400 | select BR2_strongarm |
| 401 | help |
| 402 | The SA110 is the same as a generic StrongARM, it just differs |
| 403 | in speed, peripherals and cache. |
| 404 | |
| 405 | config BR2_sa1100 |
| 406 | bool "sa1100 ARM target switched to strongarm" |
| 407 | select BR2_LEGACY |
| 408 | select BR2_strongarm |
| 409 | help |
| 410 | The SA1100 is the same as a generic StrongARM, it just differs |
| 411 | in speed, peripherals and cache. |
| 412 | |
Thomas Petazzoni | 29b83f0 | 2013-03-07 10:45:24 +0000 | [diff] [blame] | 413 | config BR2_PACKAGE_GDISK |
| 414 | bool "gdisk has been replaced by gptfdisk" |
| 415 | select BR2_LEGACY |
| 416 | select BR2_PACKAGE_GPTFDISK |
| 417 | help |
| 418 | The option has been renamed BR2_PACKAGE_GPTFDISK. |
| 419 | |
| 420 | config BR2_PACKAGE_GDISK_GDISK |
| 421 | bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk" |
| 422 | select BR2_LEGACY |
| 423 | select BR2_PACKAGE_GPTFDISK |
| 424 | select BR2_PACKAGE_GPTFDISK_GDISK |
| 425 | help |
| 426 | The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK. |
| 427 | |
| 428 | config BR2_PACKAGE_GDISK_SGDISK |
| 429 | bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk" |
| 430 | select BR2_LEGACY |
| 431 | select BR2_PACKAGE_GPTFDISK |
| 432 | select BR2_PACKAGE_GPTFDISK_SGDISK |
| 433 | help |
| 434 | The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK. |
Arnout Vandecappelle (Essensium/Mind) | ebcfa98 | 2012-11-12 10:08:28 +0000 | [diff] [blame] | 435 | |
Thomas Petazzoni | a0b6faa | 2013-04-07 00:04:33 +0000 | [diff] [blame] | 436 | config BR2_PACKAGE_GDB_HOST |
| 437 | bool "gdb for the host option has been renamed" |
| 438 | select BR2_PACKAGE_HOST_GDB |
| 439 | select BR2_LEGACY |
| 440 | help |
| 441 | Due to the conversion of gdb to the package infrastructure, |
| 442 | the BR2_PACKAGE_GDB_HOST option has been renamed |
| 443 | BR2_PACKAGE_HOST_GDB. |
| 444 | |
Carsten Schoenert | 76de0f8 | 2013-03-10 08:32:46 +0000 | [diff] [blame] | 445 | config BR2_PACKAGE_DIRECTB_DITHER_RGB16 |
| 446 | bool "DirectFB RGB16 dithering option has been renamed" |
| 447 | select BR2_PACKAGE_DIRECTFB_DITHER_RGB16 |
| 448 | select BR2_LEGACY |
| 449 | help |
| 450 | The option has been renamed |
| 451 | BR2_PACKAGE_DIRECTFB_DITHER_RGB16. |
| 452 | |
| 453 | config BR2_PACKAGE_DIRECTB_TESTS |
| 454 | bool "DirectFB Tests option has been renamed" |
| 455 | select BR2_PACKAGE_DIRECTFB_TESTS |
| 456 | select BR2_LEGACY |
| 457 | help |
| 458 | The option has been renamed |
| 459 | BR2_PACKAGE_DIRECTFB_TESTS. |
| 460 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 461 | ############################################################################### |
| 462 | comment "Legacy options removed in 2012.11" |
| 463 | |
Thomas Petazzoni | 12ccc43 | 2013-02-07 11:58:45 +0000 | [diff] [blame] | 464 | config BR2_PACKAGE_CUSTOMIZE |
| 465 | bool "customize package has been removed" |
| 466 | select BR2_LEGACY |
| 467 | help |
| 468 | The 'customize' special package has been removed. Instead, |
| 469 | we recommend to create either your own packages, or use a |
| 470 | post-build script to customize your root filesystem. See |
| 471 | Buildroot's documentation for more details. |
Arnout Vandecappelle (Essensium/Mind) | 2cd9121 | 2013-02-05 05:34:33 +0000 | [diff] [blame] | 472 | |
| 473 | config BR2_PACKAGE_XSERVER_xorg |
| 474 | bool "X.org modular server" |
| 475 | select BR2_LEGACY |
| 476 | select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR |
| 477 | help |
| 478 | The option has been renamed |
| 479 | BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR. |
| 480 | |
| 481 | config BR2_PACKAGE_XSERVER_tinyx |
| 482 | bool "KDrive / TinyX server" |
| 483 | select BR2_LEGACY |
| 484 | select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE |
| 485 | help |
| 486 | The option has been renamed |
| 487 | BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE. |
| 488 | |
| 489 | config BR2_PACKAGE_PTHREAD_STUBS |
| 490 | bool "pthread-stubs option has been renamed" |
| 491 | select BR2_LEGACY |
| 492 | select BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS |
Thomas Petazzoni | 7d97a09 | 2013-04-29 10:29:34 +0000 | [diff] [blame] | 493 | depends on BR2_PACKAGE_XORG7 |
Arnout Vandecappelle (Essensium/Mind) | 2cd9121 | 2013-02-05 05:34:33 +0000 | [diff] [blame] | 494 | help |
| 495 | For consistency reason, the pthread-stubs package has been |
| 496 | renamed to xlib_libpthread-stubs. |
| 497 | |
Yann E. MORIN | 67eaf70 | 2013-06-30 00:38:12 +0200 | [diff] [blame] | 498 | ############################################################################### |
| 499 | comment "Legacy options removed in 2012.08" |
Arnout Vandecappelle (Essensium/Mind) | ebcfa98 | 2012-11-12 10:08:28 +0000 | [diff] [blame] | 500 | |
Arnout Vandecappelle (Essensium/Mind) | 26803e8 | 2012-11-12 10:08:32 +0000 | [diff] [blame] | 501 | config BR2_PACKAGE_GETTEXT_STATIC |
| 502 | bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB" |
| 503 | select BR2_LEGACY |
| 504 | help |
| 505 | To build a static gettext library, select BR2_PREFER_STATIC_LIB. |
| 506 | |
| 507 | |
| 508 | config BR2_PACKAGE_LIBINTL |
| 509 | bool "libintl" |
| 510 | select BR2_LEGACY |
| 511 | select BR2_PACKAGE_GETTEXT |
| 512 | help |
| 513 | libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now |
| 514 | only installs the library, not the executables. |
| 515 | |
Arnout Vandecappelle (Essensium/Mind) | c430fab | 2012-11-12 10:08:31 +0000 | [diff] [blame] | 516 | config BR2_PACKAGE_INPUT_TOOLS_EVTEST |
| 517 | bool "input-tools evtest is now a separate package evtest" |
| 518 | select BR2_LEGACY |
| 519 | select BR2_PACKAGE_EVTEST |
| 520 | help |
| 521 | The evtest program from input-tools is now a separate package. |
| 522 | |
Sonic Zhang | 5713382 | 2013-05-03 00:39:34 +0000 | [diff] [blame] | 523 | config BR2_BFIN_FDPIC |
| 524 | bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC" |
| 525 | select BR2_BINFMT_FDPIC |
| 526 | select BR2_LEGACY |
| 527 | |
| 528 | config BR2_BFIN_FLAT |
| 529 | bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT" |
| 530 | select BR2_BINFMT_FLAT |
| 531 | select BR2_LEGACY |
| 532 | |
Arnout Vandecappelle (Essensium/Mind) | a91a5c1 | 2013-02-05 05:34:32 +0000 | [diff] [blame] | 533 | endmenu |