Config.in.legacy 43 KB

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