Config.in.legacy 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. #
  2. # Config.in.legacy - support for backward compatibility
  3. #
  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.
  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.
  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]
  54. config BR2_LEGACY
  55. bool
  56. help
  57. This option is selected automatically when your old .config uses an
  58. option that no longer exists in current buildroot. In that case, the
  59. build will fail. Look for config options which are selected in the
  60. menu below: they no longer exist and should be replaced by something
  61. else.
  62. # This comment fits exactly in a 80-column display
  63. comment "Legacy detected: check the content of the menu below"
  64. depends on BR2_LEGACY
  65. menu "Legacy config options"
  66. if BR2_LEGACY
  67. comment "----------------------------------------------------"
  68. comment "Your old configuration uses legacy options that no "
  69. comment "longer exist in buildroot, as indicated in the menu "
  70. comment "below. As long as these options stay selected, or in"
  71. comment "case of string options are non-empty, the build "
  72. comment "will fail. "
  73. comment "* "
  74. comment "Where possible, an automatic conversion from old to "
  75. comment "new symbols has been performed. Before making any "
  76. comment "change in this legacy menu, make sure to exit the "
  77. comment "configuration editor a first time and save the "
  78. comment "configuration. Otherwise, the automatic conversion "
  79. comment "of symbols will be lost. "
  80. comment "* "
  81. comment "After this initial save, reopen the configuration "
  82. comment "editor, inspect the options selected below, read "
  83. comment "their help texts, and verify/update the new "
  84. comment "configuration in the corresponding configuration "
  85. comment "menus. When everything is ok, you can disable the "
  86. comment "legacy options in the menu below. Once you have "
  87. comment "disabled all legacy options, this text will "
  88. comment "disappear and you will be able to start the build. "
  89. comment "* "
  90. comment "Note: at some point in the future, the oldest legacy"
  91. comment "options will be removed, and configuration files "
  92. comment "that still have those options set, will fail to "
  93. comment "build, or run, in unpredictable ways. "
  94. comment "----------------------------------------------------"
  95. endif
  96. ###############################################################################
  97. comment "Legacy options removed in 2014.05"
  98. config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
  99. bool "/dev management by udev removed"
  100. select BR2_LEGACY
  101. help
  102. The 'udev' package has been converted to a virtual package.
  103. The providers for this feature are: 'eudev', 'systemd'.
  104. Therefore, if you are not using 'systemd' as init system, you
  105. must choose 'Dynamic using eudev' in the '/dev management'
  106. menu to get the same behaviour as in your old configuration.
  107. If you are using 'systemd', its internal implementation of
  108. 'udev' will be used automatically.
  109. You must also check the packages depending on 'udev' are still
  110. selected.
  111. config BR2_PACKAGE_UDEV
  112. bool "udev is now a virtual package"
  113. select BR2_LEGACY
  114. select BR2_PACKAGE_HAS_UDEV
  115. help
  116. The 'udev' package has been converted to a virtual package.
  117. The providers for this feature are: 'eudev', 'systemd'.
  118. Your old configuration refers to packages depending on 'udev',
  119. either for build or at runtime.
  120. Check that a 'udev' provider is selected. If you are not using
  121. 'systemd' as init system, 'eudev' should be selected, which is
  122. the case if '/dev management' is set to 'Dynamic using eudev'.
  123. If you are using 'systemd', its internal implementation of 'udev'
  124. is used.
  125. config BR2_PACKAGE_UDEV_RULES_GEN
  126. bool "udev rules generation handled by provider"
  127. select BR2_LEGACY
  128. select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
  129. select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
  130. help
  131. The 'udev' package has been converted to a virtual package.
  132. The providers for this feature are: 'eudev', 'systemd'.
  133. If you are not using 'systemd' as init system, udev rules
  134. generation will be handled by 'eudev'. Check that
  135. '/dev management' is set to 'Dynamic using eudev' to get
  136. the same behaviour as in your old configuration.
  137. If you are using 'systemd', it internal implementation of 'udev'
  138. will generate the rules.
  139. config BR2_PACKAGE_UDEV_ALL_EXTRAS
  140. bool "udev extras removed"
  141. select BR2_LEGACY
  142. help
  143. The 'udev' package has been converted to a virtual package.
  144. The providers for this feature are: 'eudev', 'systemd'.
  145. The option to enable the extra features of 'udev' (gudev, ...)
  146. has been removed. These features are automatically enabled in
  147. the 'udev' providers if the dependencies are selected. For
  148. example, selecting 'libglib2' will trigger the build of gudev.
  149. ###############################################################################
  150. comment "Legacy options removed in 2014.02"
  151. config BR2_sh2
  152. bool "sh2 support removed"
  153. help
  154. Due to an inexistent user base and generally poor Linux
  155. support, the support for the SH2 architecture was removed.
  156. config BR2_sh3
  157. bool "sh3 support removed"
  158. help
  159. Due to an inexistent user base and generally poor Linux
  160. support, the support for the SH3 architecture was removed.
  161. config BR2_sh3eb
  162. bool "sh3eb support removed"
  163. help
  164. Due to an inexistent user base and generally poor Linux
  165. support, the support for the SH3eb architecture was removed.
  166. config BR2_KERNEL_HEADERS_3_1
  167. bool "kernel headers version 3.1.x are no longer supported"
  168. select BR2_KERNEL_HEADERS_3_2
  169. select BR2_LEGACY
  170. help
  171. Version 3.1.x of the Linux kernel headers have been deprecated
  172. for more than four buildroot releases and are now removed.
  173. As an alternative, version 3.2.x of the headers have been
  174. automatically selected in your configuration.
  175. config BR2_KERNEL_HEADERS_3_3
  176. bool "kernel headers version 3.3.x are no longer supported"
  177. select BR2_KERNEL_HEADERS_3_4
  178. select BR2_LEGACY
  179. help
  180. Version 3.3.x of the Linux kernel headers have been deprecated
  181. for more than four buildroot releases and are now removed.
  182. As an alternative, version 3.4.x of the headers have been
  183. automatically selected in your configuration.
  184. config BR2_KERNEL_HEADERS_3_5
  185. bool "kernel headers version 3.5.x are no longer supported"
  186. select BR2_KERNEL_HEADERS_3_6
  187. select BR2_LEGACY
  188. help
  189. Version 3.5.x of the Linux kernel headers have been deprecated
  190. for more than four buildroot releases and are now removed.
  191. As an alternative, version 3.6.x of the headers have been
  192. automatically selected in your configuration.
  193. config BR2_GDB_VERSION_7_2
  194. bool "gdb 7.2.x is no longer supported"
  195. select BR2_GDB_VERSION_7_5
  196. select BR2_LEGACY
  197. help
  198. Version 7.2.x of gdb has been deprecated for more than four
  199. buildroot releases and is now removed. As an alternative, gdb
  200. 7.5.x has been automatically selected in your configuration.
  201. config BR2_GDB_VERSION_7_3
  202. bool "gdb 7.3.x is no longer supported"
  203. select BR2_GDB_VERSION_7_5
  204. select BR2_LEGACY
  205. help
  206. Version 7.3.x of gdb has been deprecated for more than four
  207. buildroot releases and is now removed. As an alternative, gdb
  208. 7.5.x has been automatically selected in your configuration.
  209. config BR2_PACKAGE_CCACHE
  210. bool "ccache target package has been removed"
  211. select BR2_LEGACY
  212. help
  213. The 'ccache' target package has been removed since it has been
  214. deprecated for more than four buildroot releases.
  215. Note: using ccache for speeding up builds is still supported.
  216. config BR2_HAVE_DOCUMENTATION
  217. bool "support for documentation on target has been removed"
  218. select BR2_LEGACY
  219. help
  220. Support for documentation on target has been removed since it has
  221. been deprecated for more than four buildroot releases.
  222. config BR2_PACKAGE_AUTOMAKE
  223. bool "automake target package has been removed"
  224. select BR2_LEGACY
  225. help
  226. The 'automake' target package has been removed since it has been
  227. deprecated for more than four buildroot releases.
  228. Note: the host automake still exists.
  229. config BR2_PACKAGE_AUTOCONF
  230. bool "autoconf target package has been removed"
  231. select BR2_LEGACY
  232. help
  233. The 'autoconf' target package has been removed since it has been
  234. deprecated for more than four buildroot releases.
  235. Note: the host autoconf still exists.
  236. config BR2_PACKAGE_XSTROKE
  237. bool "xstroke has been removed"
  238. select BR2_LEGACY
  239. help
  240. The 'xstroke' package has been removed since it has been
  241. deprecated for more than four buildroot releases.
  242. config BR2_PACKAGE_LZMA
  243. bool "lzma target package has been removed"
  244. select BR2_LEGACY
  245. help
  246. The 'lzma' target package has been removed since it has been
  247. deprecated for more than four buildroot releases.
  248. Note: generating lzma-compressed rootfs images is still supported.
  249. config BR2_PACKAGE_TTCP
  250. bool "ttcp has been removed"
  251. select BR2_LEGACY
  252. help
  253. The 'ttcp' package has been removed since it has been
  254. deprecated for more than four buildroot releases.
  255. config BR2_PACKAGE_LIBNFC_LLCP
  256. bool "libnfc-llcp has been replaced by libllcp"
  257. select BR2_LEGACY
  258. select BR2_PACKAGE_LIBLLCP
  259. help
  260. The 'libnfc-llcp' package has been removed since upstream renamed
  261. to 'libllcp'. We have added a new package for 'libllcp' and bumped
  262. the version at the same time.
  263. config BR2_PACKAGE_MYSQL_CLIENT
  264. bool "MySQL client renamed to MySQL"
  265. select BR2_LEGACY
  266. select BR2_PACKAGE_MYSQL
  267. help
  268. The option has been renamed BR2_PACKAGE_MYSQL
  269. config BR2_PACKAGE_SQUASHFS3
  270. bool "squashfs3 has been removed"
  271. select BR2_LEGACY
  272. select BR2_PACKAGE_SQUASHFS
  273. help
  274. The 'squashfs3' package has been removed since it has been
  275. deprecated for more than four buildroot releases. Package
  276. 'squashfs' (4) has been selected automatically as replacement.
  277. config BR2_TARGET_ROOTFS_SQUASHFS3
  278. bool "squashfs3 rootfs support has been removed"
  279. select BR2_LEGACY
  280. help
  281. Together with the removal of the squashfs3 package, support
  282. for squashfs3 root filesystems has been removed too. Squashfs
  283. root filesystems will automatically use squashfs4 now.
  284. config BR2_PACKAGE_NETKITBASE
  285. bool "netkitbase has been removed"
  286. select BR2_LEGACY
  287. help
  288. The 'netkitbase' package has been removed since it has been
  289. deprecated since 2012.11. This package provided 'inetd'
  290. which is replaced by 'xinet' and 'ping' which is replaced by
  291. 'busybox' or 'fping'.
  292. config BR2_PACKAGE_NETKITTELNET
  293. bool "netkittelnet has been removed"
  294. select BR2_LEGACY
  295. help
  296. The 'netkittelnet' package has been removed since it has
  297. been deprecated since 2012.11. 'busybox' provides a telnet
  298. client and should be used instead.
  299. config BR2_PACKAGE_LUASQL
  300. bool "luasql has been replaced by luasql-sqlite3"
  301. select BR2_PACKAGE_LUASQL_SQLITE3
  302. select BR2_LEGACY
  303. help
  304. The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
  305. config BR2_PACKAGE_LUACJSON
  306. bool "luacjson has been replaced by lua-cjson"
  307. select BR2_PACKAGE_LUA_CJSON
  308. select BR2_LEGACY
  309. help
  310. The option has been renamed BR2_PACKAGE_LUA_CJSON.
  311. ###############################################################################
  312. comment "Legacy options removed in 2013.11"
  313. config BR2_PACKAGE_LVM2_DMSETUP_ONLY
  314. bool "lvm2's 'dmsetup only' option removed"
  315. select BR2_LEGACY
  316. help
  317. The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
  318. led to problems with other packages that need the full lvm2
  319. suite. Therefore, the option has been replaced with the positive
  320. BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
  321. # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
  322. # in order to automatically propagate old configs
  323. config BR2_PACKAGE_QT_JAVASCRIPTCORE
  324. bool "qt javascriptcore option removed"
  325. select BR2_LEGACY
  326. help
  327. The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
  328. force the activation or disabling of the JIT compiler in the
  329. Qt Javascript interpreter. However, the JIT compiler is not
  330. available for all architectures, so forcing its activation
  331. does not always work. Moreover, Qt knows by itself for which
  332. architectures JIT support is possible, and will
  333. automatically enable it if possible.
  334. Therefore, this option was in fact useless, and causing
  335. build problems when enabled on architectures for which the
  336. JIT support was not available. It has been removed, and
  337. there is no replacement: Qt will enable JIT at compile time
  338. when possible.
  339. config BR2_PACKAGE_MODULE_INIT_TOOLS
  340. bool "module-init-tools replaced by kmod"
  341. select BR2_PACKAGE_KMOD
  342. select BR2_PACKAGE_KMOD_TOOLS
  343. select BR2_LEGACY
  344. help
  345. The 'module-init-tools' package has been removed, since it
  346. has been depracated upstream and replaced by 'kmod'.
  347. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
  348. string "u-boot: the git repository URL option has been renamed"
  349. help
  350. The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
  351. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
  352. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
  353. bool
  354. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
  355. select BR2_LEGACY
  356. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
  357. # boot/uboot/Config.in
  358. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
  359. string "u-boot: the git repository version option has been renamed"
  360. help
  361. The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
  362. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
  363. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
  364. bool
  365. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
  366. select BR2_LEGACY
  367. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
  368. # boot/uboot/Config.in
  369. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
  370. string "linux: the git repository URL option has been renamed"
  371. help
  372. The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
  373. been renamed to
  374. BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
  375. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
  376. bool
  377. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
  378. select BR2_LEGACY
  379. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
  380. # linux/Config.in
  381. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
  382. string "linux: the git repository version option has been renamed"
  383. help
  384. The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
  385. been renamed to
  386. BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
  387. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
  388. bool
  389. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
  390. select BR2_LEGACY
  391. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
  392. # linux/Config.in
  393. ###############################################################################
  394. comment "Legacy options removed in 2013.08"
  395. config BR2_ARM_OABI
  396. bool "ARM OABI support has been removed"
  397. select BR2_LEGACY
  398. help
  399. The support for the ARM OABI was deprecated since a while,
  400. and has been removed completely from Buildroot. It is also
  401. deprecated in upstream gcc, since gcc 4.7. People should
  402. switch to EABI instead, which should not be a problem as
  403. long as you don't have pre-built OABI binaries in your
  404. system that you can't recompile.
  405. config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
  406. bool "dosfstools dosfsck renamed to fsck.fat"
  407. select BR2_LEGACY
  408. select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
  409. help
  410. dosfsck was renamed upstream to fsck.fat for consistency.
  411. config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
  412. bool "dosfstools dosfslabel renamed to fatlabel"
  413. select BR2_LEGACY
  414. select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
  415. help
  416. doslabel was renamed upstream to fatlabel for consistency.
  417. config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
  418. bool "dosfstools mkdosfs renamed to mkfs.fat"
  419. select BR2_LEGACY
  420. select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
  421. help
  422. mkdosfs was renamed upstream to mkfs.fat for consistency.
  423. config BR2_ELF2FLT
  424. bool "the elf2flt option has been renamed"
  425. select BR2_LEGACY
  426. help
  427. The BR2_ELF2FLT option has been renamed to
  428. BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
  429. the package infrastructure.
  430. config BR2_VFP_FLOAT
  431. bool "the ARM VFP floating point option has been renamed"
  432. select BR2_LEGACY
  433. help
  434. Due to a major refactoring of the floating-point handling of
  435. the ARM architecture support, the BR2_VFP_FLOAT option has
  436. been replaced with a choice of options that allows to select
  437. between various VFP versions/capabilities.
  438. config BR2_PACKAGE_GCC_TARGET
  439. bool "gcc on the target filesystem has been removed"
  440. select BR2_LEGACY
  441. help
  442. The support for gcc in the target filesystem was deprecated
  443. since a while, and has been removed completely from Buildroot.
  444. See Buildroot's documentation for more explanations.
  445. config BR2_HAVE_DEVFILES
  446. bool "development files in target filesystem has been removed"
  447. select BR2_LEGACY
  448. help
  449. The installation of the development files in the target
  450. filesystem was deprecated since a while, and has been removed
  451. completely from Buildroot.
  452. See Buildroot's documentation for more explanations.
  453. ###############################################################################
  454. comment "Legacy options removed in 2013.05"
  455. config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
  456. bool "Realtek 8192 replaced by Realtek 81xx"
  457. select BR2_LEGACY
  458. select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
  459. help
  460. Now covers the whole Realtek 81xx familly: 8188/8192.
  461. config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
  462. bool "Realtek 8712 replaced by Realtek 87xx"
  463. select BR2_LEGACY
  464. select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
  465. help
  466. Now covers the whole Realtek 87xx familly: 8712/8723.
  467. ###############################################################################
  468. comment "Legacy options removed in 2013.02"
  469. config BR2_sa110
  470. bool "sa110 ARM target switched to strongarm"
  471. select BR2_LEGACY
  472. select BR2_strongarm
  473. help
  474. The SA110 is the same as a generic StrongARM, it just differs
  475. in speed, peripherals and cache.
  476. config BR2_sa1100
  477. bool "sa1100 ARM target switched to strongarm"
  478. select BR2_LEGACY
  479. select BR2_strongarm
  480. help
  481. The SA1100 is the same as a generic StrongARM, it just differs
  482. in speed, peripherals and cache.
  483. config BR2_PACKAGE_GDISK
  484. bool "gdisk has been replaced by gptfdisk"
  485. select BR2_LEGACY
  486. select BR2_PACKAGE_GPTFDISK
  487. help
  488. The option has been renamed BR2_PACKAGE_GPTFDISK.
  489. config BR2_PACKAGE_GDISK_GDISK
  490. bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
  491. select BR2_LEGACY
  492. select BR2_PACKAGE_GPTFDISK
  493. select BR2_PACKAGE_GPTFDISK_GDISK
  494. help
  495. The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
  496. config BR2_PACKAGE_GDISK_SGDISK
  497. bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
  498. select BR2_LEGACY
  499. select BR2_PACKAGE_GPTFDISK
  500. select BR2_PACKAGE_GPTFDISK_SGDISK
  501. help
  502. The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
  503. config BR2_PACKAGE_GDB_HOST
  504. bool "gdb for the host option has been renamed"
  505. select BR2_PACKAGE_HOST_GDB
  506. select BR2_LEGACY
  507. help
  508. Due to the conversion of gdb to the package infrastructure,
  509. the BR2_PACKAGE_GDB_HOST option has been renamed
  510. BR2_PACKAGE_HOST_GDB.
  511. config BR2_PACKAGE_DIRECTB_DITHER_RGB16
  512. bool "DirectFB RGB16 dithering option has been renamed"
  513. select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
  514. select BR2_LEGACY
  515. help
  516. The option has been renamed
  517. BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
  518. config BR2_PACKAGE_DIRECTB_TESTS
  519. bool "DirectFB Tests option has been renamed"
  520. select BR2_PACKAGE_DIRECTFB_TESTS
  521. select BR2_LEGACY
  522. help
  523. The option has been renamed
  524. BR2_PACKAGE_DIRECTFB_TESTS.
  525. ###############################################################################
  526. comment "Legacy options removed in 2012.11"
  527. config BR2_PACKAGE_CUSTOMIZE
  528. bool "customize package has been removed"
  529. select BR2_LEGACY
  530. help
  531. The 'customize' special package has been removed. Instead,
  532. we recommend to create either your own packages, or use a
  533. post-build script to customize your root filesystem. See
  534. Buildroot's documentation for more details.
  535. config BR2_PACKAGE_XSERVER_xorg
  536. bool "X.org modular server"
  537. select BR2_LEGACY
  538. select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
  539. help
  540. The option has been renamed
  541. BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
  542. config BR2_PACKAGE_XSERVER_tinyx
  543. bool "KDrive / TinyX server"
  544. select BR2_LEGACY
  545. select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
  546. help
  547. The option has been renamed
  548. BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
  549. config BR2_PACKAGE_PTHREAD_STUBS
  550. bool "pthread-stubs option has been renamed"
  551. select BR2_LEGACY
  552. select BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
  553. depends on BR2_PACKAGE_XORG7
  554. help
  555. For consistency reason, the pthread-stubs package has been
  556. renamed to xlib_libpthread-stubs.
  557. ###############################################################################
  558. comment "Legacy options removed in 2012.08"
  559. config BR2_PACKAGE_GETTEXT_STATIC
  560. bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
  561. select BR2_LEGACY
  562. help
  563. To build a static gettext library, select BR2_PREFER_STATIC_LIB.
  564. config BR2_PACKAGE_LIBINTL
  565. bool "libintl"
  566. select BR2_LEGACY
  567. select BR2_PACKAGE_GETTEXT
  568. help
  569. libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
  570. only installs the library, not the executables.
  571. config BR2_PACKAGE_INPUT_TOOLS_EVTEST
  572. bool "input-tools evtest is now a separate package evtest"
  573. select BR2_LEGACY
  574. select BR2_PACKAGE_EVTEST
  575. help
  576. The evtest program from input-tools is now a separate package.
  577. config BR2_BFIN_FDPIC
  578. bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
  579. select BR2_BINFMT_FDPIC
  580. select BR2_LEGACY
  581. config BR2_BFIN_FLAT
  582. bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
  583. select BR2_BINFMT_FLAT
  584. select BR2_LEGACY
  585. endmenu