2
1

Config.in.legacy 47 KB

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