Config.in.legacy 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303
  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_SKIP_LEGACY
  55. bool
  56. option env="SKIP_LEGACY"
  57. if !BR2_SKIP_LEGACY
  58. config BR2_LEGACY
  59. bool
  60. help
  61. This option is selected automatically when your old .config uses an
  62. option that no longer exists in current buildroot. In that case, the
  63. build will fail. Look for config options which are selected in the
  64. menu below: they no longer exist and should be replaced by something
  65. else.
  66. # This comment fits exactly in a 80-column display
  67. comment "Legacy detected: check the content of the menu below"
  68. depends on BR2_LEGACY
  69. menu "Legacy config options"
  70. if BR2_LEGACY
  71. comment "----------------------------------------------------"
  72. comment "Your old configuration uses legacy options that no "
  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 "
  76. comment "will fail. "
  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 "* "
  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. "
  98. comment "----------------------------------------------------"
  99. endif
  100. ###############################################################################
  101. comment "Legacy options removed in 2015.05"
  102. config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
  103. bool "RTAI patch file path has been removed"
  104. help
  105. This option has never worked, so it has been removed.
  106. config BR2_TARGET_GENERIC_PASSWD_DES
  107. bool "Encoding passwords with DES has been removed"
  108. select BR2_LEGACY
  109. help
  110. Paswords can now only be encoded with either of md5, sha256 or sha512.
  111. The default is md5, which is stronger that DES (but still pretty weak).
  112. config BR2_PACKAGE_GTK2_THEME_HICOLOR
  113. bool "hicolor (default theme) is a duplicate"
  114. select BR2_LEGACY
  115. select BR2_PACKAGE_HICOLOR_ICON_THEME
  116. help
  117. The option was just a duplicate of hicolor icon theme.
  118. config BR2_PACKAGE_VALGRIND_PTRCHECK
  119. bool "valgrind's PTRCheck was renamed to SGCheck"
  120. select BR2_LEGACY
  121. select BR2_PACKAGE_VALGRIND_SGCHECK
  122. help
  123. PTRCheck was renamed to SGCheck in valgrind
  124. ###############################################################################
  125. comment "Legacy options removed in 2015.02"
  126. config BR2_PACKAGE_LIBGC
  127. bool "libgc package removed"
  128. select BR2_LEGACY
  129. select BR2_PACKAGE_BDWGC
  130. help
  131. libgc has been removed because we have the same package under a
  132. different name, bdwgc.
  133. config BR2_PACKAGE_WDCTL
  134. bool "util-linux' wdctl option has been renamed"
  135. select BR2_LEGACY
  136. select BR2_PACKAGE_UTIL_LINUX_WDCTL
  137. help
  138. util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
  139. to be aligned with how the other options are named.
  140. config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
  141. bool "rpm's bzip2 payloads option has been removed"
  142. select BR2_LEGACY
  143. select BR2_PACKAGE_BZIP2
  144. help
  145. The bzip2 payloads option rely entirely on the dependant package bzip2.
  146. So, you need to select it to enable this feature.
  147. config BR2_PACKAGE_RPM_XZ_PAYLOADS
  148. bool "rpm's xz payloads option has been removed"
  149. select BR2_LEGACY
  150. select BR2_PACKAGE_XZ
  151. help
  152. The xz payloads option rely entirely on the dependant package xz.
  153. So, you need to select it to enable this feature.
  154. config BR2_PACKAGE_M4
  155. bool "m4 target package removed"
  156. select BR2_LEGACY
  157. help
  158. The m4 target package has been removed, it's been
  159. deprecated for some time now.
  160. config BR2_PACKAGE_FLEX_BINARY
  161. bool "flex binary in target option removed"
  162. select BR2_LEGACY
  163. help
  164. The flex binary in the target option has been removed.
  165. It's been deprecated for some time now and is essentially a
  166. development tool which isn't very useful in the target.
  167. config BR2_PACKAGE_BISON
  168. bool "bison target package removed"
  169. select BR2_LEGACY
  170. help
  171. The bison target package has been removed, it's been
  172. deprecated for some time now and is essentially a development
  173. tool which isn't very useful in the target.
  174. config BR2_PACKAGE_GOB2
  175. bool "gob2 target package removed"
  176. select BR2_LEGACY
  177. help
  178. The gob2 target package has been removed, it's been
  179. deprecated for some time now and was essentially useless
  180. without a target toolchain.
  181. config BR2_PACKAGE_DISTCC
  182. bool "distcc target package removed"
  183. select BR2_LEGACY
  184. help
  185. The distcc target package has been removed, it's been
  186. deprecated for some time now and was essentially useless
  187. without a target toolchain.
  188. config BR2_PACKAGE_HASERL_VERSION_0_8_X
  189. bool "haserl 0.8.x version removed"
  190. select BR2_LEGACY
  191. help
  192. The 0.8.x version option for haserl has been removed since it
  193. has been deprecated for some time now.
  194. You should be able to use the 0.9.x version without issues.
  195. config BR2_PACKAGE_STRONGSWAN_TOOLS
  196. bool "strongswan option has been removed"
  197. select BR2_LEGACY
  198. select BR2_PACKAGE_STRONGSWAN_PKI
  199. select BR2_PACKAGE_STRONGSWAN_SCEP
  200. help
  201. The tools option has been removed upstream and the different tools
  202. have been split between the pki and scep options, with others
  203. deprecated.
  204. config BR2_PACKAGE_XBMC_ADDON_XVDR
  205. bool "xbmc options have been renamed"
  206. select BR2_LEGACY
  207. select BR2_PACKAGE_KODI_ADDON_XVDR
  208. help
  209. The XBMC media center project was renamed to Kodi entertainment center
  210. config BR2_PACKAGE_XBMC_PVR_ADDONS
  211. bool "xbmc options have been renamed"
  212. select BR2_LEGACY
  213. select BR2_PACKAGE_KODI_PVR_ADDONS
  214. help
  215. The XBMC media center project was renamed to Kodi entertainment center
  216. config BR2_PACKAGE_XBMC
  217. bool "xbmc options have been renamed"
  218. select BR2_LEGACY
  219. select BR2_PACKAGE_KODI
  220. help
  221. The XBMC media center project was renamed to Kodi entertainment center
  222. config BR2_PACKAGE_XBMC_ALSA_LIB
  223. bool "xbmc options have been renamed"
  224. select BR2_LEGACY
  225. select BR2_PACKAGE_KODI_ALSA_LIB
  226. help
  227. The XBMC media center project was renamed to Kodi entertainment center
  228. config BR2_PACKAGE_XBMC_AVAHI
  229. bool "xbmc options have been renamed"
  230. select BR2_LEGACY
  231. select BR2_PACKAGE_KODI_AVAHI
  232. help
  233. The XBMC media center project was renamed to Kodi entertainment center
  234. config BR2_PACKAGE_XBMC_DBUS
  235. bool "xbmc options have been renamed"
  236. select BR2_LEGACY
  237. select BR2_PACKAGE_KODI_DBUS
  238. help
  239. The XBMC media center project was renamed to Kodi entertainment center
  240. config BR2_PACKAGE_XBMC_LIBBLURAY
  241. bool "xbmc options have been renamed"
  242. select BR2_LEGACY
  243. select BR2_PACKAGE_KODI_LIBBLURAY
  244. help
  245. The XBMC media center project was renamed to Kodi entertainment center
  246. config BR2_PACKAGE_XBMC_GOOM
  247. bool "xbmc options have been renamed"
  248. select BR2_LEGACY
  249. select BR2_PACKAGE_KODI_GOOM
  250. help
  251. The XBMC media center project was renamed to Kodi entertainment center
  252. config BR2_PACKAGE_XBMC_RSXS
  253. bool "xbmc options have been renamed"
  254. select BR2_LEGACY
  255. select BR2_PACKAGE_KODI_RSXS
  256. help
  257. The XBMC media center project was renamed to Kodi entertainment center
  258. config BR2_PACKAGE_XBMC_LIBCEC
  259. bool "xbmc options have been renamed"
  260. select BR2_LEGACY
  261. select BR2_PACKAGE_KODI_LIBCEC
  262. help
  263. The XBMC media center project was renamed to Kodi entertainment center
  264. config BR2_PACKAGE_XBMC_LIBMICROHTTPD
  265. bool "xbmc options have been renamed"
  266. select BR2_LEGACY
  267. select BR2_PACKAGE_KODI_LIBMICROHTTPD
  268. help
  269. The XBMC media center project was renamed to Kodi entertainment center
  270. config BR2_PACKAGE_XBMC_LIBNFS
  271. bool "xbmc options have been renamed"
  272. select BR2_LEGACY
  273. select BR2_PACKAGE_KODI_LIBNFS
  274. help
  275. The XBMC media center project was renamed to Kodi entertainment center
  276. config BR2_PACKAGE_XBMC_RTMPDUMP
  277. bool "xbmc options have been renamed"
  278. select BR2_LEGACY
  279. select BR2_PACKAGE_KODI_RTMPDUMP
  280. help
  281. The XBMC media center project was renamed to Kodi entertainment center
  282. config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
  283. bool "xbmc options have been renamed"
  284. select BR2_LEGACY
  285. select BR2_PACKAGE_KODI_LIBSHAIRPLAY
  286. help
  287. The XBMC media center project was renamed to Kodi entertainment center
  288. config BR2_PACKAGE_XBMC_LIBSMBCLIENT
  289. bool "xbmc options have been renamed"
  290. select BR2_LEGACY
  291. select BR2_PACKAGE_KODI_LIBSMBCLIENT
  292. help
  293. The XBMC media center project was renamed to Kodi entertainment center
  294. config BR2_PACKAGE_XBMC_LIBTHEORA
  295. bool "xbmc options have been renamed"
  296. select BR2_LEGACY
  297. select BR2_PACKAGE_KODI_LIBTHEORA
  298. help
  299. The XBMC media center project was renamed to Kodi entertainment center
  300. config BR2_PACKAGE_XBMC_LIBUSB
  301. bool "xbmc options have been renamed"
  302. select BR2_LEGACY
  303. select BR2_PACKAGE_KODI_LIBUSB
  304. help
  305. The XBMC media center project was renamed to Kodi entertainment center
  306. config BR2_PACKAGE_XBMC_LIBVA
  307. bool "xbmc options have been renamed"
  308. select BR2_LEGACY
  309. select BR2_PACKAGE_KODI_LIBVA
  310. help
  311. The XBMC media center project was renamed to Kodi entertainment center
  312. config BR2_PACKAGE_XBMC_WAVPACK
  313. bool "xbmc options have been renamed"
  314. select BR2_LEGACY
  315. select BR2_PACKAGE_KODI_WAVPACK
  316. help
  317. The XBMC media center project was renamed to Kodi entertainment center
  318. config BR2_PREFER_STATIC_LIB
  319. bool "static library option renamed"
  320. select BR2_LEGACY
  321. help
  322. The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
  323. highlights the fact that the option no longer "prefers"
  324. static libraries, but "enforces" static libraries (i.e
  325. shared libraries are completely unused).
  326. Take care of updating the type of libraries you want under the
  327. "Build options" menu.
  328. ###############################################################################
  329. comment "Legacy options removed in 2014.11"
  330. config BR2_x86_generic
  331. bool "x86 generic variant has been removed"
  332. select BR2_LEGACY
  333. help
  334. The generic x86 CPU variant has been removed. Use another
  335. CPU variant instead.
  336. config BR2_GCC_VERSION_4_4_X
  337. bool "gcc 4.4.x has been removed"
  338. select BR2_LEGACY
  339. help
  340. The 4.4.x version of gcc has been removed. Use a newer
  341. version instead.
  342. config BR2_sparc_sparchfleon
  343. bool "sparchfleon CPU has been removed"
  344. select BR2_LEGACY
  345. help
  346. The sparchfleon CPU was only supported in a patched gcc 4.4
  347. version. Its support has been removed in favor of the leon3
  348. CPU starting from gcc 4.8.x.
  349. config BR2_sparc_sparchfleonv8
  350. bool "sparchfleonv8 CPU has been removed"
  351. select BR2_LEGACY
  352. help
  353. The sparchfleonv8 CPU was only supported in a patched gcc
  354. 4.4 version. Its support has been removed in favor of the
  355. leon3 CPU starting from gcc 4.8.x.
  356. config BR2_sparc_sparcsfleon
  357. bool "sparcsfleon CPU has been removed"
  358. select BR2_LEGACY
  359. help
  360. The sparcsfleon CPU was only supported in a patched gcc 4.4
  361. version. Its support has been removed in favor of the leon3
  362. CPU starting from gcc 4.8.x.
  363. config BR2_sparc_sparcsfleonv8
  364. bool "sparcsfleonv8 CPU has been removed"
  365. select BR2_LEGACY
  366. help
  367. The sparcsfleonv8 CPU was only supported in a patched gcc
  368. 4.4 version. Its support has been removed in favor of the
  369. leon3 CPU starting from gcc 4.8.x.
  370. config BR2_PACKAGE_XLIB_LIBPCIACCESS
  371. bool "xlib-libpciaccess option has been renamed"
  372. depends on BR2_PACKAGE_XORG7
  373. select BR2_LEGACY
  374. select BR2_PACKAGE_LIBPCIACCESS
  375. help
  376. libpciaccess neither depends on X11 nor Xlib. Thus the
  377. package has been renamed BR2_PACKAGE_LIBPCIACCESS
  378. config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
  379. bool "Xceive xc5000 option has been renamed"
  380. select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
  381. help
  382. The Xceive xc5000 option now also handles older firmwares from
  383. Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
  384. from Cresta, who bought Xceive.
  385. config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
  386. bool "Chelsio T4 option has been renamed"
  387. select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
  388. help
  389. The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
  390. has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
  391. to better account for the fact that a T5 variant exists.
  392. config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
  393. bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
  394. help
  395. The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
  396. renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
  397. select it in:
  398. Target packages -> Hardware handling ->
  399. Firmware -> linux-firmware -> WiFi firmware ->
  400. iwlwifi 3160/726x revision to use (revision 7)
  401. config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
  402. bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
  403. help
  404. The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
  405. renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
  406. select it in:
  407. Target packages -> Hardware handling ->
  408. Firmware -> linux-firmware -> WiFi firmware ->
  409. iwlwifi 3160/726x revision to use (revision 8)
  410. ###############################################################################
  411. comment "Legacy options removed in 2014.08"
  412. config BR2_PACKAGE_LIBELF
  413. bool "libelf has been removed"
  414. select BR2_PACKAGE_ELFUTILS
  415. select BR2_LEGACY
  416. help
  417. The libelf package provided an old version of the libelf library
  418. and is deprecated. The libelf library is now provided by the
  419. elfutils package.
  420. config BR2_KERNEL_HEADERS_3_8
  421. bool "kernel headers version 3.8.x are no longer supported"
  422. select BR2_KERNEL_HEADERS_3_9
  423. select BR2_LEGACY
  424. help
  425. Version 3.8.x of the Linux kernel headers have been deprecated
  426. for more than four buildroot releases and are now removed.
  427. As an alternative, version 3.9.x of the headers have been
  428. automatically selected in your configuration.
  429. config BR2_PACKAGE_GETTEXT_TOOLS
  430. bool "support for gettext-tools on target has been removed"
  431. select BR2_LEGACY
  432. help
  433. The option to install the gettext utilities on the target
  434. has been removed. This is not necessary as Buildroot is not
  435. designed to provide a full development environment on the
  436. target. gettext tools should be used on the build machine
  437. instead.
  438. config BR2_PACKAGE_PROCPS
  439. bool "procps has been replaced by procps-ng"
  440. select BR2_PACKAGE_PROCPS_NG
  441. select BR2_LEGACY
  442. help
  443. The procps package has been replaced by the equivalent procps-ng.
  444. config BR2_BINUTILS_VERSION_2_20_1
  445. bool "binutils 2.20.1 has been removed"
  446. select BR2_LEGACY
  447. help
  448. The 2.20.1 version of binutils has been removed. Use a newer
  449. version instead.
  450. config BR2_BINUTILS_VERSION_2_21
  451. bool "binutils 2.21 has been removed"
  452. select BR2_LEGACY
  453. help
  454. The 2.21 version of binutils has been removed. Use a newer
  455. version instead.
  456. config BR2_BINUTILS_VERSION_2_23_1
  457. bool "binutils 2.23.1 has been removed"
  458. select BR2_LEGACY
  459. help
  460. The 2.23.1 version of binutils has been removed. Use a newer
  461. version instead.
  462. config BR2_UCLIBC_VERSION_0_9_32
  463. bool "uclibc 0.9.32 has been removed"
  464. select BR2_LEGACY
  465. help
  466. The 0.9.32 version of uClibc has been removed. Use a newer
  467. version instead.
  468. config BR2_GCC_VERSION_4_3_X
  469. bool "gcc 4.3.x has been removed"
  470. select BR2_LEGACY
  471. help
  472. The 4.3.x version of gcc has been removed. Use a newer
  473. version instead.
  474. config BR2_GCC_VERSION_4_6_X
  475. bool "gcc 4.6.x has been removed"
  476. select BR2_LEGACY
  477. help
  478. The 4.6.x version of gcc has been removed. Use a newer
  479. version instead.
  480. config BR2_GDB_VERSION_7_4
  481. bool "gdb 7.4 has been removed"
  482. select BR2_LEGACY
  483. help
  484. The 7.4 version of gdb has been removed. Use a newer version
  485. instead.
  486. config BR2_GDB_VERSION_7_5
  487. bool "gdb 7.5 has been removed"
  488. select BR2_LEGACY
  489. help
  490. The 7.5 version of gdb has been removed. Use a newer version
  491. instead.
  492. config BR2_BUSYBOX_VERSION_1_19_X
  493. bool "busybox version selection has been removed"
  494. select BR2_LEGACY
  495. help
  496. The possibility of selecting the Busybox version has been
  497. removed. Use the latest version provided by the Busybox
  498. package instead.
  499. config BR2_BUSYBOX_VERSION_1_20_X
  500. bool "busybox version selection has been removed"
  501. select BR2_LEGACY
  502. help
  503. The possibility of selecting the Busybox version has been
  504. removed. Use the latest version provided by the Busybox
  505. package instead.
  506. config BR2_BUSYBOX_VERSION_1_21_X
  507. bool "busybox version selection has been removed"
  508. select BR2_LEGACY
  509. help
  510. The possibility of selecting the Busybox version has been
  511. removed. Use the latest version provided by the Busybox
  512. package instead.
  513. config BR2_PACKAGE_LIBV4L_DECODE_TM6000
  514. bool "decode_tm6000"
  515. select BR2_PACKAGE_LIBV4L_UTILS
  516. select BR2_LEGACY
  517. help
  518. This libv4l option has been deprecated and replaced by a single
  519. option to build all the libv4l utilities.
  520. config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
  521. bool "ir-keytable"
  522. select BR2_PACKAGE_LIBV4L_UTILS
  523. select BR2_LEGACY
  524. help
  525. This libv4l option has been deprecated and replaced by a single
  526. option to build all the libv4l utilities.
  527. config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
  528. bool "v4l2-compliance"
  529. select BR2_PACKAGE_LIBV4L_UTILS
  530. select BR2_LEGACY
  531. help
  532. This libv4l option has been deprecated and replaced by a single
  533. option to build all the libv4l utilities.
  534. config BR2_PACKAGE_LIBV4L_V4L2_CTL
  535. bool "v4l2-ctl"
  536. select BR2_PACKAGE_LIBV4L_UTILS
  537. select BR2_LEGACY
  538. help
  539. This libv4l option has been deprecated and replaced by a single
  540. option to build all the libv4l utilities.
  541. config BR2_PACKAGE_LIBV4L_V4L2_DBG
  542. bool "v4l2-dbg"
  543. select BR2_PACKAGE_LIBV4L_UTILS
  544. select BR2_LEGACY
  545. help
  546. This libv4l option has been deprecated and replaced by a single
  547. option to build all the libv4l utilities.
  548. ###############################################################################
  549. comment "Legacy options removed in 2014.05"
  550. config BR2_PACKAGE_EVTEST_CAPTURE
  551. bool "evtest-capture support removed (dropped since evtest 1.31)"
  552. select BR2_LEGACY
  553. help
  554. Support for evtest-capture has been removed (dropped from
  555. evtest package since version 1.31), use evemu package
  556. instead.
  557. config BR2_KERNEL_HEADERS_3_6
  558. bool "kernel headers version 3.6.x are no longer supported"
  559. select BR2_KERNEL_HEADERS_3_9
  560. select BR2_LEGACY
  561. help
  562. Version 3.6.x of the Linux kernel headers have been deprecated
  563. for more than four buildroot releases and are now removed.
  564. As an alternative, version 3.8.x of the headers have been
  565. automatically selected in your configuration.
  566. config BR2_KERNEL_HEADERS_3_7
  567. bool "kernel headers version 3.7.x are no longer supported"
  568. select BR2_KERNEL_HEADERS_3_9
  569. select BR2_LEGACY
  570. help
  571. Version 3.7.x of the Linux kernel headers have been deprecated
  572. for more than four buildroot releases and are now removed.
  573. As an alternative, version 3.8.x of the headers have been
  574. automatically selected in your configuration.
  575. config BR2_PACKAGE_VALA
  576. bool "vala target package has been removed"
  577. select BR2_LEGACY
  578. help
  579. The 'vala' target package has been removed since it has been
  580. deprecated for more than four buildroot releases.
  581. Note: the host vala package still exists.
  582. config BR2_TARGET_TZ_ZONELIST
  583. default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
  584. config BR2_PACKAGE_TZDATA_ZONELIST
  585. string "tzdata: the timezone list option has been renamed"
  586. help
  587. The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
  588. BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
  589. menu. You'll need to select BR2_TARGET_TZ_INFO.
  590. config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
  591. bool
  592. default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
  593. select BR2_LEGACY
  594. config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
  595. bool "Lua command-line editing none has been renamed"
  596. select BR2_LEGACY
  597. help
  598. The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
  599. renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
  600. it in the corresponding choice.
  601. config BR2_PACKAGE_LUA_INTERPRETER_READLINE
  602. bool "Lua command-line editing using readline has been renamed"
  603. select BR2_LEGACY
  604. help
  605. The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
  606. renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
  607. it in the corresponding choice.
  608. config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
  609. bool "Lua command-line editing using linenoise has been renamed"
  610. select BR2_LEGACY
  611. help
  612. The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
  613. renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
  614. it in the corresponding choice.
  615. config BR2_PACKAGE_DVB_APPS_UTILS
  616. bool "dvb-apps utilities now built by default"
  617. select BR2_LEGACY
  618. help
  619. The dvb-apps utilities are now always built when the dvb-apps
  620. package is selected.
  621. config BR2_KERNEL_HEADERS_SNAP
  622. bool "Local Linux snapshot support removed"
  623. select BR2_LEGACY
  624. help
  625. Support for using a custom snapshot to install the Linux
  626. kernel headers has been removed.
  627. config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
  628. bool "/dev management by udev removed"
  629. select BR2_LEGACY
  630. help
  631. The 'udev' package has been converted to a virtual package.
  632. The providers for this feature are: 'eudev', 'systemd'.
  633. Therefore, if you are not using 'systemd' as init system, you
  634. must choose 'Dynamic using eudev' in the '/dev management'
  635. menu to get the same behaviour as in your old configuration.
  636. If you are using 'systemd', its internal implementation of
  637. 'udev' will be used automatically.
  638. You must also check the packages depending on 'udev' are still
  639. selected.
  640. config BR2_PACKAGE_UDEV
  641. bool "udev is now a virtual package"
  642. select BR2_LEGACY
  643. select BR2_PACKAGE_HAS_UDEV
  644. help
  645. The 'udev' package has been converted to a virtual package.
  646. The providers for this feature are: 'eudev', 'systemd'.
  647. Your old configuration refers to packages depending on 'udev',
  648. either for build or at runtime.
  649. Check that a 'udev' provider is selected. If you are not using
  650. 'systemd' as init system, 'eudev' should be selected, which is
  651. the case if '/dev management' is set to 'Dynamic using eudev'.
  652. If you are using 'systemd', its internal implementation of 'udev'
  653. is used.
  654. config BR2_PACKAGE_UDEV_RULES_GEN
  655. bool "udev rules generation handled by provider"
  656. select BR2_LEGACY
  657. select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
  658. select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
  659. help
  660. The 'udev' package has been converted to a virtual package.
  661. The providers for this feature are: 'eudev', 'systemd'.
  662. If you are not using 'systemd' as init system, udev rules
  663. generation will be handled by 'eudev'. Check that
  664. '/dev management' is set to 'Dynamic using eudev' to get
  665. the same behaviour as in your old configuration.
  666. If you are using 'systemd', it internal implementation of 'udev'
  667. will generate the rules.
  668. config BR2_PACKAGE_UDEV_ALL_EXTRAS
  669. bool "udev extras removed"
  670. select BR2_LEGACY
  671. help
  672. The 'udev' package has been converted to a virtual package.
  673. The providers for this feature are: 'eudev', 'systemd'.
  674. The option to enable the extra features of 'udev' (gudev, ...)
  675. has been removed. These features are automatically enabled in
  676. the 'udev' providers if the dependencies are selected. For
  677. example, selecting 'libglib2' will trigger the build of gudev.
  678. config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
  679. bool "xlib-libpthread-stubs option has been renamed"
  680. depends on BR2_PACKAGE_XORG7
  681. select BR2_LEGACY
  682. select BR2_PACKAGE_LIBPTHREAD_STUBS
  683. help
  684. The pthread stubs neither depend on X11 nor Xlib. Thus the
  685. package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
  686. ###############################################################################
  687. comment "Legacy options removed in 2014.02"
  688. config BR2_sh2
  689. bool "sh2 support removed"
  690. help
  691. Due to an inexistent user base and generally poor Linux
  692. support, the support for the SH2 architecture was removed.
  693. config BR2_sh3
  694. bool "sh3 support removed"
  695. help
  696. Due to an inexistent user base and generally poor Linux
  697. support, the support for the SH3 architecture was removed.
  698. config BR2_sh3eb
  699. bool "sh3eb support removed"
  700. help
  701. Due to an inexistent user base and generally poor Linux
  702. support, the support for the SH3eb architecture was removed.
  703. config BR2_KERNEL_HEADERS_3_1
  704. bool "kernel headers version 3.1.x are no longer supported"
  705. select BR2_KERNEL_HEADERS_3_2
  706. select BR2_LEGACY
  707. help
  708. Version 3.1.x of the Linux kernel headers have been deprecated
  709. for more than four buildroot releases and are now removed.
  710. As an alternative, version 3.2.x of the headers have been
  711. automatically selected in your configuration.
  712. config BR2_KERNEL_HEADERS_3_3
  713. bool "kernel headers version 3.3.x are no longer supported"
  714. select BR2_KERNEL_HEADERS_3_4
  715. select BR2_LEGACY
  716. help
  717. Version 3.3.x of the Linux kernel headers have been deprecated
  718. for more than four buildroot releases and are now removed.
  719. As an alternative, version 3.4.x of the headers have been
  720. automatically selected in your configuration.
  721. config BR2_KERNEL_HEADERS_3_5
  722. bool "kernel headers version 3.5.x are no longer supported"
  723. select BR2_KERNEL_HEADERS_3_9
  724. select BR2_LEGACY
  725. help
  726. Version 3.5.x of the Linux kernel headers have been deprecated
  727. for more than four buildroot releases and are now removed.
  728. As an alternative, version 3.8.x of the headers have been
  729. automatically selected in your configuration.
  730. config BR2_GDB_VERSION_7_2
  731. bool "gdb 7.2.x is no longer supported"
  732. select BR2_GDB_VERSION_7_6
  733. select BR2_LEGACY
  734. help
  735. Version 7.2.x of gdb has been deprecated for more than four
  736. buildroot releases and is now removed. As an alternative, gdb
  737. 7.5.x has been automatically selected in your configuration.
  738. config BR2_GDB_VERSION_7_3
  739. bool "gdb 7.3.x is no longer supported"
  740. select BR2_GDB_VERSION_7_6
  741. select BR2_LEGACY
  742. help
  743. Version 7.3.x of gdb has been deprecated for more than four
  744. buildroot releases and is now removed. As an alternative, gdb
  745. 7.5.x has been automatically selected in your configuration.
  746. config BR2_PACKAGE_CCACHE
  747. bool "ccache target package has been removed"
  748. select BR2_LEGACY
  749. help
  750. The 'ccache' target package has been removed since it has been
  751. deprecated for more than four buildroot releases.
  752. Note: using ccache for speeding up builds is still supported.
  753. config BR2_HAVE_DOCUMENTATION
  754. bool "support for documentation on target has been removed"
  755. select BR2_LEGACY
  756. help
  757. Support for documentation on target has been removed since it has
  758. been deprecated for more than four buildroot releases.
  759. config BR2_PACKAGE_AUTOMAKE
  760. bool "automake target package has been removed"
  761. select BR2_LEGACY
  762. help
  763. The 'automake' target package has been removed since it has been
  764. deprecated for more than four buildroot releases.
  765. Note: the host automake still exists.
  766. config BR2_PACKAGE_AUTOCONF
  767. bool "autoconf target package has been removed"
  768. select BR2_LEGACY
  769. help
  770. The 'autoconf' target package has been removed since it has been
  771. deprecated for more than four buildroot releases.
  772. Note: the host autoconf still exists.
  773. config BR2_PACKAGE_XSTROKE
  774. bool "xstroke has been removed"
  775. select BR2_LEGACY
  776. help
  777. The 'xstroke' package has been removed since it has been
  778. deprecated for more than four buildroot releases.
  779. config BR2_PACKAGE_LZMA
  780. bool "lzma target package has been removed"
  781. select BR2_LEGACY
  782. help
  783. The 'lzma' target package has been removed since it has been
  784. deprecated for more than four buildroot releases.
  785. Note: generating lzma-compressed rootfs images is still supported.
  786. config BR2_PACKAGE_TTCP
  787. bool "ttcp has been removed"
  788. select BR2_LEGACY
  789. help
  790. The 'ttcp' package has been removed since it has been
  791. deprecated for more than four buildroot releases.
  792. config BR2_PACKAGE_LIBNFC_LLCP
  793. bool "libnfc-llcp has been replaced by libllcp"
  794. select BR2_LEGACY
  795. select BR2_PACKAGE_LIBLLCP
  796. help
  797. The 'libnfc-llcp' package has been removed since upstream renamed
  798. to 'libllcp'. We have added a new package for 'libllcp' and bumped
  799. the version at the same time.
  800. config BR2_PACKAGE_MYSQL_CLIENT
  801. bool "MySQL client renamed to MySQL"
  802. select BR2_LEGACY
  803. select BR2_PACKAGE_MYSQL
  804. help
  805. The option has been renamed BR2_PACKAGE_MYSQL
  806. config BR2_PACKAGE_SQUASHFS3
  807. bool "squashfs3 has been removed"
  808. select BR2_LEGACY
  809. select BR2_PACKAGE_SQUASHFS
  810. help
  811. The 'squashfs3' package has been removed since it has been
  812. deprecated for more than four buildroot releases. Package
  813. 'squashfs' (4) has been selected automatically as replacement.
  814. config BR2_TARGET_ROOTFS_SQUASHFS3
  815. bool "squashfs3 rootfs support has been removed"
  816. select BR2_LEGACY
  817. help
  818. Together with the removal of the squashfs3 package, support
  819. for squashfs3 root filesystems has been removed too. Squashfs
  820. root filesystems will automatically use squashfs4 now.
  821. config BR2_PACKAGE_NETKITBASE
  822. bool "netkitbase has been removed"
  823. select BR2_LEGACY
  824. help
  825. The 'netkitbase' package has been removed since it has been
  826. deprecated since 2012.11. This package provided 'inetd'
  827. which is replaced by 'xinet' and 'ping' which is replaced by
  828. 'busybox' or 'fping'.
  829. config BR2_PACKAGE_NETKITTELNET
  830. bool "netkittelnet has been removed"
  831. select BR2_LEGACY
  832. help
  833. The 'netkittelnet' package has been removed since it has
  834. been deprecated since 2012.11. 'busybox' provides a telnet
  835. client and should be used instead.
  836. config BR2_PACKAGE_LUASQL
  837. bool "luasql has been replaced by luasql-sqlite3"
  838. select BR2_PACKAGE_LUASQL_SQLITE3
  839. select BR2_LEGACY
  840. help
  841. The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
  842. config BR2_PACKAGE_LUACJSON
  843. bool "luacjson has been replaced by lua-cjson"
  844. select BR2_PACKAGE_LUA_CJSON
  845. select BR2_LEGACY
  846. help
  847. The option has been renamed BR2_PACKAGE_LUA_CJSON.
  848. ###############################################################################
  849. comment "Legacy options removed in 2013.11"
  850. config BR2_PACKAGE_LVM2_DMSETUP_ONLY
  851. bool "lvm2's 'dmsetup only' option removed"
  852. select BR2_LEGACY
  853. help
  854. The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
  855. led to problems with other packages that need the full lvm2
  856. suite. Therefore, the option has been replaced with the positive
  857. BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
  858. # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
  859. # in order to automatically propagate old configs
  860. config BR2_PACKAGE_QT_JAVASCRIPTCORE
  861. bool "qt javascriptcore option removed"
  862. select BR2_LEGACY
  863. help
  864. The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
  865. force the activation or disabling of the JIT compiler in the
  866. Qt Javascript interpreter. However, the JIT compiler is not
  867. available for all architectures, so forcing its activation
  868. does not always work. Moreover, Qt knows by itself for which
  869. architectures JIT support is possible, and will
  870. automatically enable it if possible.
  871. Therefore, this option was in fact useless, and causing
  872. build problems when enabled on architectures for which the
  873. JIT support was not available. It has been removed, and
  874. there is no replacement: Qt will enable JIT at compile time
  875. when possible.
  876. config BR2_PACKAGE_MODULE_INIT_TOOLS
  877. bool "module-init-tools replaced by kmod"
  878. select BR2_PACKAGE_KMOD
  879. select BR2_PACKAGE_KMOD_TOOLS
  880. select BR2_LEGACY
  881. help
  882. The 'module-init-tools' package has been removed, since it
  883. has been depracated upstream and replaced by 'kmod'.
  884. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
  885. string "u-boot: the git repository URL option has been renamed"
  886. help
  887. The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
  888. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
  889. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
  890. bool
  891. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
  892. select BR2_LEGACY
  893. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
  894. # boot/uboot/Config.in
  895. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
  896. string "u-boot: the git repository version option has been renamed"
  897. help
  898. The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
  899. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
  900. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
  901. bool
  902. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
  903. select BR2_LEGACY
  904. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
  905. # boot/uboot/Config.in
  906. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
  907. string "linux: the git repository URL option has been renamed"
  908. help
  909. The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
  910. been renamed to
  911. BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
  912. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
  913. bool
  914. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
  915. select BR2_LEGACY
  916. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
  917. # linux/Config.in
  918. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
  919. string "linux: the git repository version option has been renamed"
  920. help
  921. The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
  922. been renamed to
  923. BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
  924. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
  925. bool
  926. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
  927. select BR2_LEGACY
  928. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
  929. # linux/Config.in
  930. ###############################################################################
  931. comment "Legacy options removed in 2013.08"
  932. config BR2_ARM_OABI
  933. bool "ARM OABI support has been removed"
  934. select BR2_LEGACY
  935. help
  936. The support for the ARM OABI was deprecated since a while,
  937. and has been removed completely from Buildroot. It is also
  938. deprecated in upstream gcc, since gcc 4.7. People should
  939. switch to EABI instead, which should not be a problem as
  940. long as you don't have pre-built OABI binaries in your
  941. system that you can't recompile.
  942. config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
  943. bool "dosfstools dosfsck renamed to fsck.fat"
  944. select BR2_LEGACY
  945. select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
  946. help
  947. dosfsck was renamed upstream to fsck.fat for consistency.
  948. config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
  949. bool "dosfstools dosfslabel renamed to fatlabel"
  950. select BR2_LEGACY
  951. select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
  952. help
  953. doslabel was renamed upstream to fatlabel for consistency.
  954. config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
  955. bool "dosfstools mkdosfs renamed to mkfs.fat"
  956. select BR2_LEGACY
  957. select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
  958. help
  959. mkdosfs was renamed upstream to mkfs.fat for consistency.
  960. config BR2_ELF2FLT
  961. bool "the elf2flt option has been renamed"
  962. select BR2_LEGACY
  963. help
  964. The BR2_ELF2FLT option has been renamed to
  965. BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
  966. the package infrastructure.
  967. config BR2_VFP_FLOAT
  968. bool "the ARM VFP floating point option has been renamed"
  969. select BR2_LEGACY
  970. help
  971. Due to a major refactoring of the floating-point handling of
  972. the ARM architecture support, the BR2_VFP_FLOAT option has
  973. been replaced with a choice of options that allows to select
  974. between various VFP versions/capabilities.
  975. config BR2_PACKAGE_GCC_TARGET
  976. bool "gcc on the target filesystem has been removed"
  977. select BR2_LEGACY
  978. help
  979. The support for gcc in the target filesystem was deprecated
  980. since a while, and has been removed completely from Buildroot.
  981. See Buildroot's documentation for more explanations.
  982. config BR2_HAVE_DEVFILES
  983. bool "development files in target filesystem has been removed"
  984. select BR2_LEGACY
  985. help
  986. The installation of the development files in the target
  987. filesystem was deprecated since a while, and has been removed
  988. completely from Buildroot.
  989. See Buildroot's documentation for more explanations.
  990. ###############################################################################
  991. comment "Legacy options removed in 2013.05"
  992. config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
  993. bool "Realtek 8192 replaced by Realtek 81xx"
  994. select BR2_LEGACY
  995. select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
  996. help
  997. Now covers the whole Realtek 81xx familly: 8188/8192.
  998. config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
  999. bool "Realtek 8712 replaced by Realtek 87xx"
  1000. select BR2_LEGACY
  1001. select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
  1002. help
  1003. Now covers the whole Realtek 87xx familly: 8712/8723.
  1004. ###############################################################################
  1005. comment "Legacy options removed in 2013.02"
  1006. config BR2_sa110
  1007. bool "sa110 ARM target switched to strongarm"
  1008. select BR2_LEGACY
  1009. select BR2_strongarm
  1010. help
  1011. The SA110 is the same as a generic StrongARM, it just differs
  1012. in speed, peripherals and cache.
  1013. config BR2_sa1100
  1014. bool "sa1100 ARM target switched to strongarm"
  1015. select BR2_LEGACY
  1016. select BR2_strongarm
  1017. help
  1018. The SA1100 is the same as a generic StrongARM, it just differs
  1019. in speed, peripherals and cache.
  1020. config BR2_PACKAGE_GDISK
  1021. bool "gdisk has been replaced by gptfdisk"
  1022. select BR2_LEGACY
  1023. select BR2_PACKAGE_GPTFDISK
  1024. help
  1025. The option has been renamed BR2_PACKAGE_GPTFDISK.
  1026. config BR2_PACKAGE_GDISK_GDISK
  1027. bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
  1028. select BR2_LEGACY
  1029. select BR2_PACKAGE_GPTFDISK
  1030. select BR2_PACKAGE_GPTFDISK_GDISK
  1031. help
  1032. The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
  1033. config BR2_PACKAGE_GDISK_SGDISK
  1034. bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
  1035. select BR2_LEGACY
  1036. select BR2_PACKAGE_GPTFDISK
  1037. select BR2_PACKAGE_GPTFDISK_SGDISK
  1038. help
  1039. The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
  1040. config BR2_PACKAGE_GDB_HOST
  1041. bool "gdb for the host option has been renamed"
  1042. select BR2_PACKAGE_HOST_GDB
  1043. select BR2_LEGACY
  1044. help
  1045. Due to the conversion of gdb to the package infrastructure,
  1046. the BR2_PACKAGE_GDB_HOST option has been renamed
  1047. BR2_PACKAGE_HOST_GDB.
  1048. config BR2_PACKAGE_DIRECTB_DITHER_RGB16
  1049. bool "DirectFB RGB16 dithering option has been renamed"
  1050. select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
  1051. select BR2_LEGACY
  1052. help
  1053. The option has been renamed
  1054. BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
  1055. config BR2_PACKAGE_DIRECTB_TESTS
  1056. bool "DirectFB Tests option has been renamed"
  1057. select BR2_PACKAGE_DIRECTFB_TESTS
  1058. select BR2_LEGACY
  1059. help
  1060. The option has been renamed
  1061. BR2_PACKAGE_DIRECTFB_TESTS.
  1062. ###############################################################################
  1063. comment "Legacy options removed in 2012.11"
  1064. config BR2_PACKAGE_CUSTOMIZE
  1065. bool "customize package has been removed"
  1066. select BR2_LEGACY
  1067. help
  1068. The 'customize' special package has been removed. Instead,
  1069. we recommend to create either your own packages, or use a
  1070. post-build script to customize your root filesystem. See
  1071. Buildroot's documentation for more details.
  1072. config BR2_PACKAGE_XSERVER_xorg
  1073. bool "X.org modular server"
  1074. select BR2_LEGACY
  1075. select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
  1076. help
  1077. The option has been renamed
  1078. BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
  1079. config BR2_PACKAGE_XSERVER_tinyx
  1080. bool "KDrive / TinyX server"
  1081. select BR2_LEGACY
  1082. select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
  1083. help
  1084. The option has been renamed
  1085. BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
  1086. config BR2_PACKAGE_PTHREAD_STUBS
  1087. bool "pthread-stubs option has been renamed"
  1088. select BR2_LEGACY
  1089. select BR2_PACKAGE_LIBPTHREAD_STUBS
  1090. help
  1091. For consistency reason, the pthread-stubs package has been
  1092. renamed to libpthread-stubs.
  1093. ###############################################################################
  1094. comment "Legacy options removed in 2012.08"
  1095. config BR2_PACKAGE_GETTEXT_STATIC
  1096. bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
  1097. select BR2_LEGACY
  1098. help
  1099. To build a static gettext library, select BR2_PREFER_STATIC_LIB.
  1100. config BR2_PACKAGE_LIBINTL
  1101. bool "libintl"
  1102. select BR2_LEGACY
  1103. select BR2_PACKAGE_GETTEXT
  1104. help
  1105. libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
  1106. only installs the library, not the executables.
  1107. config BR2_PACKAGE_INPUT_TOOLS_EVTEST
  1108. bool "input-tools evtest is now a separate package evtest"
  1109. select BR2_LEGACY
  1110. select BR2_PACKAGE_EVTEST
  1111. help
  1112. The evtest program from input-tools is now a separate package.
  1113. config BR2_BFIN_FDPIC
  1114. bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
  1115. select BR2_BINFMT_FDPIC
  1116. select BR2_LEGACY
  1117. config BR2_BFIN_FLAT
  1118. bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
  1119. select BR2_BINFMT_FLAT
  1120. select BR2_LEGACY
  1121. endmenu
  1122. endif # !SKIP_LEGACY