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