Config.in.legacy 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228
  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. # It is not possible to select an option that is part of a choice. In that
  20. # case, the new option should use the old symbol as default. This requires a
  21. # change outside of Config.in.legacy, and this should be clearly marked as such
  22. # in a comment, so that removal of legacy options also include the removal of
  23. # these external references.
  24. #
  25. # [Example: renaming a bool option that is part of a choice from FOO to BAR]
  26. # original choice:
  27. # choice
  28. # prompt "Choose foobar"
  29. # config BR2_FOO_1
  30. # bool "foobar 1"
  31. # config BR2_FOO_2
  32. # bool "foobar 2"
  33. # endchoice
  34. #
  35. # becomes:
  36. # choice
  37. # prompt "Choose foobar"
  38. # default BR2_BAR_1 if BR2_FOO_1 # legacy
  39. # default BR2_BAR_2 if BR2_FOO_2 # legacy
  40. # config BR2_BAR_1
  41. # bool "foobar 1"
  42. # config BR2_BAR_2
  43. # bool "foobar 2"
  44. # endchoice
  45. #
  46. # and in Config.in.legacy:
  47. # config BR2_FOO_1
  48. # bool "foobar 1 has been renamed"
  49. # help
  50. # <suitable help text>
  51. # # Note: BR2_FOO_1 is still referenced from package/foo/Config.in
  52. # config BR2_FOO_2
  53. # bool "foobar 2 has been renamed"
  54. # help
  55. # <suitable help text>
  56. # # Note: BR2_FOO_2 is still referenced from package/foo/Config.in
  57. #
  58. # [End of example]
  59. #
  60. # For string options, it is not possible to directly select another symbol. In
  61. # this case, a hidden wrap bool option has to be added, that defaults to y if
  62. # the old string is not set at its default value. The wrap symbol should select
  63. # BR2_LEGACY.
  64. # If the original symbol has been renamed, the new symbol should use the value
  65. # of the old symbol as default. Like for choice options, a comment should be
  66. # added to flag that the symbol is still used in another file.
  67. #
  68. # [Example: renaming a string option from FOO to BAR]
  69. # original symbol:
  70. # config BR2_FOO_STRING
  71. # string "Some foo string"
  72. #
  73. # becomes:
  74. # config BR2_BAR_STRING
  75. # string "Some bar string"
  76. # default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
  77. #
  78. # and in Config.in.legacy:
  79. # config BR2_FOO_STRING
  80. # string "The foo string has been renamed"
  81. # help
  82. # <suitable help text>
  83. #
  84. # config BR2_FOO_STRING_WRAP
  85. # bool
  86. # default y if BR2_FOO_STRING != ""
  87. # select BR2_LEGACY
  88. #
  89. # # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
  90. #
  91. # [End of example]
  92. config BR2_SKIP_LEGACY
  93. bool
  94. option env="SKIP_LEGACY"
  95. if !BR2_SKIP_LEGACY
  96. config BR2_LEGACY
  97. bool
  98. help
  99. This option is selected automatically when your old .config
  100. uses an option that no longer exists in current buildroot. In
  101. that case, the build will fail. Look for config options which
  102. are selected in the menu below: they no longer exist and
  103. should be replaced by something else.
  104. # This comment fits exactly in a 80-column display
  105. comment "Legacy detected: check the content of the menu below"
  106. depends on BR2_LEGACY
  107. menu "Legacy config options"
  108. if BR2_LEGACY
  109. comment "----------------------------------------------------"
  110. comment "Your old configuration uses legacy options that no "
  111. comment "longer exist in buildroot, as indicated in the menu "
  112. comment "below. As long as these options stay selected, or in"
  113. comment "case of string options are non-empty, the build "
  114. comment "will fail. "
  115. comment "* "
  116. comment "Where possible, an automatic conversion from old to "
  117. comment "new symbols has been performed. Before making any "
  118. comment "change in this legacy menu, make sure to exit the "
  119. comment "configuration editor a first time and save the "
  120. comment "configuration. Otherwise, the automatic conversion "
  121. comment "of symbols will be lost. "
  122. comment "* "
  123. comment "After this initial save, reopen the configuration "
  124. comment "editor, inspect the options selected below, read "
  125. comment "their help texts, and verify/update the new "
  126. comment "configuration in the corresponding configuration "
  127. comment "menus. When everything is ok, you can disable the "
  128. comment "legacy options in the menu below. Once you have "
  129. comment "disabled all legacy options, this text will "
  130. comment "disappear and you will be able to start the build. "
  131. comment "* "
  132. comment "Note: legacy options older than 5 years have been "
  133. comment "removed, and configuration files that still have "
  134. comment "those options set, will fail to build, or run in "
  135. comment "unpredictable ways. "
  136. comment "----------------------------------------------------"
  137. endif
  138. ###############################################################################
  139. comment "Legacy options removed in 2018.05"
  140. config BR2_PACKAGE_LIBKCAPI_APPS
  141. bool "libkcapi test applications removed"
  142. select BR2_LEGACY
  143. select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
  144. select BR2_PACKAGE_LIBKCAPI_RNGAPP
  145. select BR2_PACKAGE_LIBKCAPI_SPEED
  146. select BR2_PACKAGE_LIBKCAPI_TEST
  147. help
  148. Test applications (hasher, rng read, speed-test, test) now
  149. have their own configuration options in the libkcapi menu.
  150. config BR2_PACKAGE_MPLAYER
  151. bool "mplayer package removed"
  152. select BR2_LEGACY
  153. help
  154. The mplayer package was removed.
  155. config BR2_PACKAGE_MPLAYER_MPLAYER
  156. bool "mplayer package removed"
  157. select BR2_LEGACY
  158. help
  159. The mplayer package was removed.
  160. config BR2_PACKAGE_MPLAYER_MENCODER
  161. bool "mplayer package removed"
  162. select BR2_LEGACY
  163. help
  164. The mplayer package was removed.
  165. config BR2_PACKAGE_LIBPLAYER_MPLAYER
  166. bool "mplayer support in libplayer removed"
  167. select BR2_LEGACY
  168. help
  169. The mplayer package was removed.
  170. config BR2_PACKAGE_IQVLINUX
  171. bool "iqvlinux package removed"
  172. select BR2_LEGACY
  173. help
  174. This package contained a kernel module from Intel, which
  175. could only be used together with Intel userspace tools
  176. provided under NDA, which also come with the same kernel
  177. module. The copy of the kernel module available on
  178. SourceForge is provided only to comply with the GPLv2
  179. requirement. Intel engineers were even surprised it even
  180. built and were not willing to make any effort to fix their
  181. tarball naming to contain a version number. Therefore, it
  182. does not make sense for Buildroot to provide such a package.
  183. See https://sourceforge.net/p/e1000/bugs/589/ for the
  184. discussion.
  185. config BR2_BINFMT_FLAT_SEP_DATA
  186. bool "binfmt FLAT with separate code and data removed"
  187. select BR2_LEGACY
  188. help
  189. This FLAT binary format was only used on Blackfin, which has
  190. been removed.
  191. config BR2_bfin
  192. bool "Blackfin architecture support removed"
  193. select BR2_LEGACY
  194. help
  195. Following the removal of Blackfin support for the upstream
  196. Linux kernel, Buildroot has removed support for this CPU
  197. architecture.
  198. config BR2_PACKAGE_KODI_ADSP_BASIC
  199. bool "kodi-adsp-basic package removed"
  200. select BR2_LEGACY
  201. help
  202. kodi-adsp-basic is unmaintained
  203. config BR2_PACKAGE_KODI_ADSP_FREESURROUND
  204. bool "kodi-adsp-freesurround package removed"
  205. select BR2_LEGACY
  206. help
  207. kodi-adsp-freesurround is unmaintained
  208. ###############################################################################
  209. comment "Legacy options removed in 2018.02"
  210. config BR2_KERNEL_HEADERS_3_4
  211. bool "kernel headers version 3.4.x are no longer supported"
  212. select BR2_KERNEL_HEADERS_4_1
  213. select BR2_LEGACY
  214. help
  215. Version 3.4.x of the Linux kernel headers are no longer
  216. maintained upstream and are now removed. As an alternative,
  217. version 4.1.x of the headers have been automatically
  218. selected in your configuration.
  219. config BR2_KERNEL_HEADERS_3_10
  220. bool "kernel headers version 3.10.x are no longer supported"
  221. select BR2_KERNEL_HEADERS_4_1
  222. select BR2_LEGACY
  223. help
  224. Version 3.10.x of the Linux kernel headers are no longer
  225. maintained upstream and are now removed. As an alternative,
  226. version 4.1.x of the headers have been automatically
  227. selected in your configuration.
  228. config BR2_KERNEL_HEADERS_3_12
  229. bool "kernel headers version 3.12.x are no longer supported"
  230. select BR2_KERNEL_HEADERS_4_1
  231. select BR2_LEGACY
  232. help
  233. Version 3.12.x of the Linux kernel headers are no longer
  234. maintained upstream and are now removed. As an alternative,
  235. version 4.1.x of the headers have been automatically
  236. selected in your configuration.
  237. config BR2_BINUTILS_VERSION_2_27_X
  238. bool "binutils version 2.27 support removed"
  239. select BR2_LEGACY
  240. help
  241. Support for binutils version 2.27 has been removed. The
  242. current default version (2.29 or later) has been selected
  243. instead.
  244. config BR2_PACKAGE_EEPROG
  245. bool "eeprog package removed"
  246. select BR2_LEGACY
  247. select BR2_PACKAGE_I2C_TOOLS
  248. select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  249. help
  250. The eeprog program is now provided by the i2c-tools package.
  251. config BR2_PACKAGE_GNUPG2_GPGV2
  252. bool "gnupg2 gpgv2 option removed"
  253. select BR2_LEGACY
  254. select BR2_PACKAGE_GNUPG2_GPGV
  255. help
  256. The gpgv2 executable is now named gpgv. The config option
  257. has been renamed accordingly.
  258. config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
  259. bool "Vivante apitrace tool option removed"
  260. select BR2_LEGACY
  261. help
  262. The apitrace tool for Vivante is not provided by the
  263. imx-gpu-viv package any longer.
  264. config BR2_PACKAGE_IMX_GPU_VIV_G2D
  265. bool "Vivante G2D libraries from imx-gpu-viv removed"
  266. select BR2_LEGACY
  267. select BR2_PACKAGE_IMX_GPU_G2D
  268. help
  269. The G2D libraries are now provided by the imx-gpu-g2d package.
  270. ###############################################################################
  271. comment "Legacy options removed in 2017.11"
  272. config BR2_PACKAGE_RFKILL
  273. bool "rfkill package removed"
  274. select BR2_LEGACY
  275. select BR2_PACKAGE_UTIL_LINUX
  276. select BR2_PACKAGE_UTIL_LINUX_RFKILL
  277. help
  278. The rfkill program is now provided by the util-linux package.
  279. config BR2_PACKAGE_UTIL_LINUX_RESET
  280. bool "util-linux reset option removed"
  281. select BR2_LEGACY
  282. help
  283. The util-linux package no longer offers a "reset" command. Use
  284. either the reset command provided by BusyBox or select ncurses
  285. programs, which will install a symlink from "tset" to reset.
  286. config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
  287. bool "policycoreutils audit2allow option removed"
  288. select BR2_LEGACY
  289. select BR2_PACKAGE_SELINUX_PYTHON
  290. select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
  291. help
  292. The policycoreutils package no longer offers audit2allow
  293. as a option. This package has been moved into the
  294. selinux-python package by the SELinux maintainers.
  295. config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
  296. bool "policycoreutils restorecond option removed"
  297. select BR2_LEGACY
  298. select BR2_PACKAGE_RESTORECOND
  299. help
  300. The policycoreutils package no longer offers restorecond
  301. as a option. This package has been moved into a seperate
  302. package maintained by the SELinux maintainers.
  303. config BR2_PACKAGE_SEPOLGEN
  304. bool "sepolgen package has been removed"
  305. select BR2_LEGACY
  306. select BR2_PACKAGE_SELINUX_PYTHON
  307. select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
  308. help
  309. Sepolgen is no longer a individual package, but instead has
  310. been moved into the selinux-python package by the SELinux
  311. maintainers.
  312. config BR2_PACKAGE_OPENOBEX_BLUEZ
  313. bool "openobex bluez option removed"
  314. select BR2_LEGACY
  315. select BR2_PACKAGE_BLUEZ_UTILS
  316. help
  317. The OpenOBEX package no longer offers an option to enable or
  318. disable BlueZ support. Instead, BlueZ support is always
  319. included when the bluez5_utils or bluez_utils package is
  320. selected.
  321. config BR2_PACKAGE_OPENOBEX_LIBUSB
  322. bool "openobex libusb option removed"
  323. select BR2_LEGACY
  324. select BR2_PACKAGE_LIBUSB
  325. help
  326. The OpenOBEX package no longer offers an option to enable or
  327. disable libusb support. Instead, USB support is always
  328. included when the libusb package is selected.
  329. config BR2_PACKAGE_OPENOBEX_APPS
  330. bool "openobex apps option removed"
  331. select BR2_LEGACY
  332. help
  333. The OpenOBEX package no longer offers an option to enable or
  334. disable apps support.
  335. config BR2_PACKAGE_OPENOBEX_SYSLOG
  336. bool "openobex syslog option removed"
  337. select BR2_LEGACY
  338. help
  339. The OpenOBEX package no longer offers an option to enable or
  340. disable syslog support.
  341. config BR2_PACKAGE_OPENOBEX_DUMP
  342. bool "openobex dump option removed"
  343. select BR2_LEGACY
  344. help
  345. The OpenOBEX package no longer offers an option to enable or
  346. disable dump support.
  347. config BR2_PACKAGE_AICCU
  348. bool "aiccu utility removed"
  349. select BR2_LEGACY
  350. help
  351. As the SixXS project has ceased its operation on 2017-06-06,
  352. the AICCU utility has no use anymore and has been removed.
  353. https://www.sixxs.net/sunset/
  354. config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
  355. bool "util-linux login utilities option removed"
  356. select BR2_LEGACY
  357. select BR2_PACKAGE_UTIL_LINUX_LAST
  358. select BR2_PACKAGE_UTIL_LINUX_LOGIN
  359. select BR2_PACKAGE_UTIL_LINUX_RUNUSER
  360. select BR2_PACKAGE_UTIL_LINUX_SU
  361. select BR2_PACKAGE_UTIL_LINUX_SULOGIN
  362. help
  363. Login utilities (last, login, runuser, su, sulogin) now have
  364. their own configuration options in the util-linux menu.
  365. ###############################################################################
  366. comment "Legacy options removed in 2017.08"
  367. config BR2_TARGET_GRUB
  368. bool "grub (aka grub-legacy) has been removed"
  369. select BR2_LEGACY
  370. help
  371. grub-legacy is no longer maintained, and no longer builds with
  372. recent binutils versions.
  373. Use grub2 or syslinux instead.
  374. config BR2_PACKAGE_SIMICSFS
  375. bool "simicsfs support removed"
  376. select BR2_LEGACY
  377. help
  378. Support for simicsfs kernel driver that provides access to a
  379. host computer's local filesystem when the target is
  380. executing within a SIMICS simulation has been removed.
  381. Simics is now moving away from the simicsfs kernel module,
  382. as the kernel module has required too much maintenance
  383. work. Users should move to the user mode Simics agent
  384. instead.
  385. config BR2_BINUTILS_VERSION_2_26_X
  386. bool "binutils version 2.26 support removed"
  387. select BR2_LEGACY
  388. help
  389. Support for binutils version 2.26 has been removed. The
  390. current default version (2.28 or later) has been selected
  391. instead.
  392. config BR2_XTENSA_OVERLAY_DIR
  393. string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
  394. help
  395. The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
  396. BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
  397. path to the overlay file, not to the directory containing
  398. it.
  399. config BR2_XTENSA_OVERLAY_DIR_WRAP
  400. bool
  401. default y if BR2_XTENSA_OVERLAY_DIR != ""
  402. select BR2_LEGACY
  403. config BR2_XTENSA_CUSTOM_NAME
  404. string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
  405. help
  406. The BR2_XTENSA_CUSTOM_NAME option has been removed.
  407. config BR2_XTENSA_CUSTOM_NAME_WRAP
  408. bool
  409. default y if BR2_XTENSA_CUSTOM_NAME != ""
  410. select BR2_LEGACY
  411. config BR2_PACKAGE_HOST_MKE2IMG
  412. bool "host mke2img has been removed"
  413. select BR2_LEGACY
  414. help
  415. We now call mkfs directly to generate ext2/3/4 filesystem
  416. image, so mke2img is no longer necessary.
  417. config BR2_TARGET_ROOTFS_EXT2_BLOCKS
  418. int "exact size in blocks has been removed"
  419. default 0
  420. help
  421. This option has been removed in favor of
  422. BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
  423. to the value you had before. Set to 0 here to remove the
  424. warning.
  425. config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
  426. bool
  427. default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
  428. BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
  429. select BR2_LEGACY
  430. # Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
  431. config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
  432. int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
  433. default 0
  434. help
  435. Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
  436. images. It now automatically selects the number of inodes
  437. based on the image size. The extra number of inodes can no
  438. longer be provided; instead, provide the total number of
  439. inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
  440. config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
  441. bool
  442. default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
  443. select BR2_LEGACY
  444. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
  445. bool "cdxaparse removed"
  446. select BR2_LEGACY
  447. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
  448. bool "dataurisrc moved to gstreamer1"
  449. select BR2_LEGACY
  450. help
  451. Dataurisrc has moved to gstreamer core and is always built.
  452. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
  453. bool "dccp removed"
  454. select BR2_LEGACY
  455. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
  456. bool "hdvparse removed"
  457. select BR2_LEGACY
  458. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
  459. bool "mve removed"
  460. select BR2_LEGACY
  461. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
  462. bool "nuvdemux removed"
  463. select BR2_LEGACY
  464. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
  465. bool "patchdetect removed"
  466. select BR2_LEGACY
  467. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
  468. bool "sdi removed"
  469. select BR2_LEGACY
  470. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
  471. bool "tta removed"
  472. select BR2_LEGACY
  473. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
  474. bool "videomeasure removed"
  475. select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
  476. select BR2_LEGACY
  477. help
  478. videomeasure plugin has been removed and has been replaced by
  479. iqa, which has automatically been enabled.
  480. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
  481. bool "apexsink removed"
  482. select BR2_LEGACY
  483. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
  484. bool "sdl removed"
  485. select BR2_LEGACY
  486. config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
  487. bool "mad (*.mp3 audio) removed"
  488. select BR2_LEGACY
  489. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
  490. bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
  491. select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
  492. select BR2_LEGACY
  493. help
  494. The WebRTC plugin in GStreamer 1.x has always been named
  495. webrtcdsp, but was wrongly introduced in Buildroot under the
  496. name webrtc. Therefore, we have renamed the option to match
  497. the actual name of the GStreamer plugin.
  498. config BR2_STRIP_none
  499. bool "Strip command 'none' has been removed"
  500. select BR2_LEGACY
  501. help
  502. The strip command choice has been changed into a single
  503. boolean option. Please check that the new setting is
  504. correct (in the "Build options" sub-menu)
  505. config BR2_PACKAGE_BEECRYPT_CPP
  506. bool "C++ support removed in beecrypt"
  507. select BR2_LEGACY
  508. help
  509. Support for C++ depends on icu. The beecrypt package is
  510. incompatible with icu 59+.
  511. config BR2_PACKAGE_SPICE_CLIENT
  512. bool "spice client support removed"
  513. select BR2_LEGACY
  514. help
  515. Spice client support has been removed upstream. The
  516. functionality now lives in the spice-gtk widget and
  517. virt-viewer.
  518. config BR2_PACKAGE_SPICE_GUI
  519. bool "spice gui support removed"
  520. select BR2_LEGACY
  521. help
  522. Spice gui support has been removed upstream. The
  523. functionality now lives in the spice-gtk widget and
  524. virt-viewer.
  525. config BR2_PACKAGE_SPICE_TUNNEL
  526. bool "spice network redirection removed"
  527. select BR2_LEGACY
  528. help
  529. Spice network redirection, aka tunnelling has been removed
  530. upstream.
  531. config BR2_PACKAGE_INPUT_TOOLS
  532. bool "input-tools removed"
  533. select BR2_LEGACY
  534. select BR2_PACKAGE_LINUXCONSOLETOOLS
  535. help
  536. input-tools has been removed, it is replaced by
  537. linuxconsoletools, which has automatically been enabled.
  538. config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
  539. bool "inputattach moved to linuxconsoletools"
  540. select BR2_LEGACY
  541. select BR2_PACKAGE_LINUXCONSOLETOOLS
  542. select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
  543. help
  544. input-tools has been removed, inputattach is now part
  545. of linuxconsoletools, which has automatically been
  546. enabled.
  547. config BR2_PACKAGE_INPUT_TOOLS_JSCAL
  548. bool "jscal moved to linuxconsoletools"
  549. select BR2_LEGACY
  550. select BR2_PACKAGE_LINUXCONSOLETOOLS
  551. select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
  552. help
  553. input-tools has been removed, jscal is now part
  554. of linuxconsoletools, which has automatically been
  555. enabled.
  556. config BR2_PACKAGE_INPUT_TOOLS_JSTEST
  557. bool "jstest moved to linuxconsoletools"
  558. select BR2_LEGACY
  559. select BR2_PACKAGE_LINUXCONSOLETOOLS
  560. select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
  561. help
  562. input-tools has been removed, jstest is now part
  563. of linuxconsoletools, which has automatically been
  564. enabled.
  565. config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
  566. bool "SH Sourcery toolchain has been removed"
  567. select BR2_LEGACY
  568. help
  569. The Sourcery CodeBench toolchain for the sh architecture has
  570. been removed, since it uses glibc older than 2.17 that
  571. requires -lrt to link executables using clock_* system calls.
  572. This makes this toolchain difficult to maintain over time.
  573. config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
  574. bool "x86 Sourcery toolchain has been removed"
  575. select BR2_LEGACY
  576. help
  577. The Sourcery CodeBench toolchain for the x86 architecture has
  578. been removed, since it uses glibc older than 2.17 that
  579. requires -lrt to link executables using clock_* system calls.
  580. This makes this toolchain difficult to maintain over time.
  581. config BR2_GCC_VERSION_4_8_X
  582. bool "gcc 4.8.x support removed"
  583. select BR2_LEGACY
  584. help
  585. Support for gcc version 4.8.x has been removed. The current
  586. default version (5.x or later) has been selected instead.
  587. ###############################################################################
  588. comment "Legacy options removed in 2017.05"
  589. config BR2_PACKAGE_SUNXI_MALI_R2P4
  590. bool "sunxi-mali r2p4 removed"
  591. select BR2_LEGACY
  592. help
  593. sunxi-mali libMali for r2p4 Mali kernel module has been
  594. removed since the libump package only provides libUMP.so.3.
  595. libMali for r2p4 Mali kernel module requires libUMP.so.2.
  596. config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
  597. bool "CoffeeScript option has been removed"
  598. select BR2_LEGACY
  599. help
  600. The option to enable NodeJS CoffeeScript has been removed.
  601. To continue using it, add "coffee-script" to
  602. BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
  603. config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
  604. bool "Express web application framework option has been removed"
  605. select BR2_LEGACY
  606. help
  607. The option to enable the NodeJS Express web application
  608. framework has been removed. To continue using it, add
  609. "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
  610. config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
  611. bool "bluez5_utils gatttool install option removed"
  612. select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
  613. help
  614. The option to install gatttool specifically has been removed.
  615. Since version 5.44 gatttool is in the list of deprecated
  616. tools. The option to build and install deprecated tools has
  617. been automatically enabled.
  618. config BR2_PACKAGE_OPENOCD_FT2XXX
  619. bool "openocd ft2232 support has been removed"
  620. select BR2_PACKAGE_OPENOCD_FTDI
  621. select BR2_LEGACY
  622. help
  623. FT2232 support in OpenOCD has been removed, it's replaced by
  624. FDTI support, which has automatically been enabled.
  625. config BR2_PACKAGE_KODI_RTMPDUMP
  626. bool "kodi rtmp has been removed"
  627. select BR2_LEGACY
  628. select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
  629. help
  630. Internal rtmp support was removed from Kodi.
  631. config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
  632. bool "kodi-visualisation-fountain has been removed"
  633. select BR2_LEGACY
  634. help
  635. According to upstream 'the visualization is not currently
  636. in a working shape.'
  637. config BR2_PACKAGE_PORTMAP
  638. bool "portmap has been removed"
  639. select BR2_LEGACY
  640. select BR2_PACKAGE_RPCBIND
  641. help
  642. The portmap upstream tarball is removed, no releases since
  643. ten years and latest change in upstream git in 2014.
  644. You should better use rpcbind as a RPC portmapper.
  645. config BR2_BINUTILS_VERSION_2_25_X
  646. bool "binutils version 2.25 support removed"
  647. select BR2_LEGACY
  648. help
  649. Support for binutils version 2.25 has been removed. The
  650. current default version (2.27 or later) has been selected
  651. instead.
  652. config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
  653. bool "uclibc RPC support has been removed"
  654. select BR2_LEGACY
  655. help
  656. uClibc-ng removed internal RPC implementation in 1.0.23. You
  657. should use libtirpc instead.
  658. config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
  659. int "extra size in blocks has been removed"
  660. default 0
  661. help
  662. Since the support for auto calculation of the filesystem size
  663. has been removed, this option is now useless and must be 0.
  664. You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
  665. matchs your needs.
  666. config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
  667. bool
  668. default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
  669. select BR2_LEGACY
  670. config BR2_PACKAGE_SYSTEMD_KDBUS
  671. bool "systemd-kdbus has been removed"
  672. select BR2_LEGACY
  673. help
  674. --enable/disable-kdbus configure option has been removed since
  675. systemd-231.
  676. config BR2_PACKAGE_POLARSSL
  677. bool "polarssl has been removed"
  678. select BR2_LEGACY
  679. help
  680. The polarssl crypto library has been removed since the 1.2.x
  681. release branch is no longer maintained. Newer upstream
  682. branches/releases (mbedtls) have API changes so they're not
  683. drop-in replacements.
  684. config BR2_NBD_CLIENT
  685. bool "nbd client option was renamed"
  686. select BR2_LEGACY
  687. select BR2_PACKAGE_NBD_CLIENT
  688. help
  689. The nbd client option has been renamed to
  690. BR2_PACKAGE_NBD_CLIENT.
  691. config BR2_NBD_SERVER
  692. bool "nbd server option was renamed"
  693. select BR2_LEGACY
  694. select BR2_PACKAGE_NBD_SERVER
  695. help
  696. The nbd server option has been renamed to
  697. BR2_PACKAGE_NBD_SERVER.
  698. config BR2_PACKAGE_GMOCK
  699. bool "gmock merged into gtest package"
  700. select BR2_LEGACY
  701. select BR2_PACKAGE_GTEST
  702. select BR2_PACKAGE_GTEST_GMOCK
  703. help
  704. GMock is now a suboption of the GTest package.
  705. config BR2_KERNEL_HEADERS_4_8
  706. bool "kernel headers version 4.8.x are no longer supported"
  707. select BR2_KERNEL_HEADERS_4_4
  708. select BR2_LEGACY
  709. help
  710. Version 4.8.x of the Linux kernel headers are no longer
  711. maintained upstream and are now removed. As an alternative,
  712. version 4.4.x of the headers have been automatically
  713. selected in your configuration.
  714. config BR2_KERNEL_HEADERS_3_18
  715. bool "kernel headers version 3.18.x are no longer supported"
  716. select BR2_KERNEL_HEADERS_3_12
  717. select BR2_LEGACY
  718. help
  719. Version 3.18.x of the Linux kernel headers are no longer
  720. maintained upstream and are now removed. As an alternative,
  721. version 3.12.x of the headers have been automatically
  722. selected in your configuration.
  723. config BR2_GLIBC_VERSION_2_22
  724. bool "glibc 2.22 removed"
  725. select BR2_LEGACY
  726. help
  727. Support for glibc version 2.22 has been removed. The current
  728. default version has been selected instead.
  729. ###############################################################################
  730. comment "Legacy options removed in 2017.02"
  731. config BR2_PACKAGE_PERL_DB_FILE
  732. bool "perl-db-file removed"
  733. select BR2_LEGACY
  734. select BR2_PACKAGE_BERKELEYDB
  735. select BR2_PACKAGE_PERL
  736. help
  737. DB_File can be built as a core Perl module, so the separate
  738. perl-db-file package has been removed.
  739. config BR2_KERNEL_HEADERS_4_7
  740. bool "kernel headers version 4.7.x are no longer supported"
  741. select BR2_KERNEL_HEADERS_4_4
  742. select BR2_LEGACY
  743. help
  744. Version 4.7.x of the Linux kernel headers are no longer
  745. maintained upstream and are now removed. As an alternative,
  746. version 4.4.x of the headers have been automatically
  747. selected in your configuration.
  748. config BR2_KERNEL_HEADERS_4_6
  749. bool "kernel headers version 4.6.x are no longer supported"
  750. select BR2_KERNEL_HEADERS_4_4
  751. select BR2_LEGACY
  752. help
  753. Version 4.6.x of the Linux kernel headers are no longer
  754. maintained upstream and are now removed. As an alternative,
  755. version 4.4.x of the headers have been automatically
  756. selected in your configuration.
  757. config BR2_KERNEL_HEADERS_4_5
  758. bool "kernel headers version 4.5.x are no longer supported"
  759. select BR2_KERNEL_HEADERS_4_4
  760. select BR2_LEGACY
  761. help
  762. Version 4.5.x of the Linux kernel headers are no longer
  763. maintained upstream and are now removed. As an alternative,
  764. version 4.4.x of the headers have been automatically
  765. selected in your configuration.
  766. config BR2_KERNEL_HEADERS_3_14
  767. bool "kernel headers version 3.14.x are no longer supported"
  768. select BR2_KERNEL_HEADERS_3_12
  769. select BR2_LEGACY
  770. help
  771. Version 3.14.x of the Linux kernel headers are no longer
  772. maintained upstream and are now removed. As an alternative,
  773. version 3.12.x of the headers have been automatically
  774. selected in your configuration.
  775. config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
  776. bool "musl-cross 1.1.12 toolchain removed"
  777. select BR2_LEGACY
  778. help
  779. The support for the prebuilt toolchain based on the Musl C
  780. library provided by the musl-cross project has been removed.
  781. Upstream doesn't provide any prebuilt toolchain anymore, use
  782. the Buildroot toolchain instead.
  783. config BR2_UCLIBC_INSTALL_TEST_SUITE
  784. bool "uClibc tests now in uclibc-ng-test"
  785. select BR2_LEGACY
  786. select BR2_PACKAGE_UCLIBC_NG_TEST
  787. help
  788. The test suite of the uClibc C library has been moved into a
  789. separate package, uclibc-ng-test.
  790. config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
  791. bool "Blackfin.uclinux.org 2014R1 toolchain removed"
  792. select BR2_LEGACY
  793. help
  794. The ADI Blackfin toolchain has many bugs which are fixed in
  795. more recent gcc and uClibc-ng releases. Use the Buildroot
  796. toolchain instead.
  797. config BR2_PACKAGE_MAKEDEVS
  798. bool "makedevs removed"
  799. select BR2_LEGACY
  800. help
  801. The makedevs tool is part of busybox. The Buildroot fork
  802. should not be used outside of the Buildroot infrastructure.
  803. config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
  804. bool "Arago ARMv7 2011.09 removed"
  805. select BR2_LEGACY
  806. help
  807. The Arago toolchains are every old and not updated anymore.
  808. config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
  809. bool "Arago ARMv5 2011.09 removed"
  810. select BR2_LEGACY
  811. help
  812. The Arago toolchains are every old and not updated anymore.
  813. config BR2_PACKAGE_SNOWBALL_HDMISERVICE
  814. bool "snowball-hdmiservice removed"
  815. select BR2_LEGACY
  816. help
  817. We no longer have support for the Snowball platform in
  818. Buildroot, so this package was no longer useful.
  819. config BR2_PACKAGE_SNOWBALL_INIT
  820. bool "snowball-init removed"
  821. select BR2_LEGACY
  822. help
  823. We no longer have support for the Snowball platform in
  824. Buildroot, so this package was no longer useful.
  825. config BR2_GDB_VERSION_7_9
  826. bool "gdb 7.9 has been removed"
  827. select BR2_LEGACY
  828. help
  829. The 7.9 version of gdb has been removed. Use a newer version
  830. instead.
  831. ###############################################################################
  832. comment "Legacy options removed in 2016.11"
  833. config BR2_PACKAGE_PHP_SAPI_CLI_CGI
  834. bool "PHP CGI and CLI options are now seperate"
  835. select BR2_PACKAGE_PHP_SAPI_CLI
  836. select BR2_PACKAGE_PHP_SAPI_CGI
  837. select BR2_LEGACY
  838. help
  839. The PHP Interface options have been split up into a
  840. separate option for each interface.
  841. config BR2_PACKAGE_PHP_SAPI_CLI_FPM
  842. bool "PHP CLI and FPM options are now separate"
  843. select BR2_PACKAGE_PHP_SAPI_CLI
  844. select BR2_PACKAGE_PHP_SAPI_FPM
  845. select BR2_LEGACY
  846. help
  847. The PHP Interface options have been split up into a
  848. separate option for each interface.
  849. config BR2_PACKAGE_WVSTREAMS
  850. bool "wvstreams removed"
  851. select BR2_LEGACY
  852. help
  853. wvstreams is not maintained anymore since about 2009. It also
  854. doesn't build anymore with recent compilers (GCC 5+).
  855. config BR2_PACKAGE_WVDIAL
  856. bool "wvdial removed"
  857. select BR2_LEGACY
  858. help
  859. wvdial is not maintained anymore since about 2009. It also
  860. doesn't build anymore with recent compilers (GCC 5+).
  861. config BR2_PACKAGE_WEBKITGTK24
  862. bool "webkitgtk 2.4.x removed"
  863. select BR2_LEGACY
  864. help
  865. This legacy package only existed because some other packages
  866. depended on that specific version of webkitgtk. However, the
  867. other packages have been fixed. webkitgtk 2.4 is full of
  868. security issues so it needs to be removed.
  869. config BR2_PACKAGE_TORSMO
  870. bool "torsmo removed"
  871. select BR2_LEGACY
  872. help
  873. torsmo has been unmaintained for a long time, and nobody
  874. seems to be interested in it.
  875. config BR2_PACKAGE_SSTRIP
  876. bool "sstrip removed"
  877. select BR2_LEGACY
  878. help
  879. sstrip is unmaintained and potentially harmful. It doesn't
  880. save so much compared to normal binutils strip, and there is
  881. a big risk of binaries that don't work. Use normal strip
  882. instead.
  883. config BR2_KERNEL_HEADERS_4_3
  884. bool "kernel headers version 4.3.x are no longer supported"
  885. select BR2_KERNEL_HEADERS_4_1
  886. select BR2_LEGACY
  887. help
  888. Version 4.3.x of the Linux kernel headers are no longer
  889. maintained upstream and are now removed. As an alternative,
  890. version 4.1.x of the headers have been automatically
  891. selected in your configuration.
  892. config BR2_KERNEL_HEADERS_4_2
  893. bool "kernel headers version 4.2.x are no longer supported"
  894. select BR2_KERNEL_HEADERS_4_1
  895. select BR2_LEGACY
  896. help
  897. Version 4.2.x of the Linux kernel headers are no longer
  898. maintained upstream and are now removed. As an alternative,
  899. version 4.1.x of the headers have been automatically
  900. selected in your configuration.
  901. config BR2_PACKAGE_KODI_ADDON_XVDR
  902. bool "kodi-addon-xvdr removed"
  903. select BR2_LEGACY
  904. help
  905. According to the github project page:
  906. https://github.com/pipelka/xbmc-addon-xvdr
  907. this package is discontinued.
  908. config BR2_PACKAGE_IPKG
  909. bool "ipkg removed"
  910. select BR2_LEGACY
  911. help
  912. ipkg dates back to the early 2000s when Compaq started the
  913. handhelds.org project and it hasn't seen development since
  914. 2006. Use opkg as a replacement.
  915. config BR2_GCC_VERSION_4_7_X
  916. bool "gcc 4.7.x support removed"
  917. select BR2_LEGACY
  918. help
  919. Support for gcc version 4.7.x has been removed. The current
  920. default version (4.9.x or later) has been selected instead.
  921. config BR2_BINUTILS_VERSION_2_24_X
  922. bool "binutils version 2.24 support removed"
  923. select BR2_LEGACY
  924. help
  925. Support for binutils version 2.24 has been removed. The
  926. current default version (2.26 or later) has been selected
  927. instead.
  928. config BR2_PACKAGE_WESTON_RPI
  929. bool "Weston propietary RPI support is gone"
  930. select BR2_LEGACY
  931. help
  932. Upstream decided the propietary (rpi-userland) weston composer
  933. support wasn't worth the effort so it was removed. Switch to
  934. the open VC4 support.
  935. config BR2_LINUX_KERNEL_TOOL_CPUPOWER
  936. bool "linux-tool cpupower"
  937. depends on BR2_LINUX_KERNEL
  938. select BR2_LEGACY
  939. select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
  940. help
  941. Linux tool cpupower option was renamed.
  942. config BR2_LINUX_KERNEL_TOOL_PERF
  943. bool "linux-tool perf"
  944. depends on BR2_LINUX_KERNEL
  945. select BR2_LEGACY
  946. select BR2_PACKAGE_LINUX_TOOLS_PERF
  947. help
  948. Linux tool perf option was renamed.
  949. config BR2_LINUX_KERNEL_TOOL_SELFTESTS
  950. bool "linux-tool selftests"
  951. depends on BR2_LINUX_KERNEL
  952. select BR2_LEGACY
  953. select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
  954. help
  955. Linux tool selftests option was renamed.
  956. config BR2_GCC_VERSION_4_8_ARC
  957. bool "gcc arc option renamed"
  958. select BR2_LEGACY
  959. select BR2_GCC_VERSION_ARC
  960. help
  961. The option that selects the gcc version for the ARC
  962. architecture has been renamed to BR2_GCC_VERSION_ARC.
  963. config BR2_KERNEL_HEADERS_4_0
  964. bool "kernel headers version 4.0.x are no longer supported"
  965. select BR2_KERNEL_HEADERS_3_12
  966. select BR2_LEGACY
  967. help
  968. Version 4.0.x of the Linux kernel headers have been deprecated
  969. for more than four buildroot releases and are now removed.
  970. As an alternative, version 3.12.x of the headers have been
  971. automatically selected in your configuration.
  972. config BR2_KERNEL_HEADERS_3_19
  973. bool "kernel headers version 3.19.x are no longer supported"
  974. select BR2_KERNEL_HEADERS_3_12
  975. select BR2_LEGACY
  976. help
  977. Version 3.19.x of the Linux kernel headers have been
  978. deprecated for more than four buildroot releases and are now
  979. removed.
  980. As an alternative, version 3.12.x of the headers have been
  981. automatically selected in your configuration.
  982. config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
  983. bool "libevas-generic-loaders package removed"
  984. select BR2_LEGACY
  985. select BR2_PACKAGE_EFL
  986. help
  987. With EFL 1.18, libevas-generic-loaders is now provided by the
  988. efl package.
  989. config BR2_PACKAGE_ELEMENTARY
  990. bool "elementary package removed"
  991. select BR2_LEGACY
  992. select BR2_PACKAGE_EFL
  993. help
  994. With EFL 1.18, elementary is now provided by the efl package.
  995. config BR2_LINUX_KERNEL_CUSTOM_LOCAL
  996. bool "Linux kernel local directory option removed"
  997. help
  998. The option to select a local directory as the source of the
  999. Linux kernel has been removed. It hurts reproducibility of
  1000. builds.
  1001. In case you were using this option during development of your
  1002. Linux kernel, use the override mechanism instead.
  1003. ###############################################################################
  1004. comment "Legacy options removed in 2016.08"
  1005. config BR2_PACKAGE_EFL_JP2K
  1006. bool "libevas jp2k loader has been removed"
  1007. select BR2_LEGACY
  1008. help
  1009. JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
  1010. while Buildroot only packages openjpeg 2.x. Therefore, the
  1011. JP2K loader has been removed from EFL.
  1012. config BR2_PACKAGE_SYSTEMD_COMPAT
  1013. bool "systemd compatibility libraries have been removed"
  1014. select BR2_LEGACY
  1015. help
  1016. The systemd option to enable the compatibility libraries has
  1017. been removed. Theses libraries have been useless since a few
  1018. version, and have been fully dropped from the source since
  1019. v230.
  1020. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
  1021. bool "gst1-plugins-bad liveadder plugin removed"
  1022. select BR2_LEGACY
  1023. select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
  1024. help
  1025. The functionality of the liveadder plugin of the
  1026. gst1-plugins-bad package has been merged into audiomixer.
  1027. config BR2_PACKAGE_LIBFSLVPUWRAP
  1028. bool "libfslvpuwrap has been renamed to imx-vpuwrap"
  1029. select BR2_LEGACY
  1030. select BR2_PACKAGE_IMX_VPUWRAP
  1031. help
  1032. The libfslvpuwrap has been renamed to match the renamed
  1033. package.
  1034. config BR2_PACKAGE_LIBFSLPARSER
  1035. bool "libfslparser has been renamed to imx-parser"
  1036. select BR2_LEGACY
  1037. select BR2_PACKAGE_IMX_PARSER
  1038. help
  1039. The libfslparser has been renamed to match the renamed
  1040. package.
  1041. config BR2_PACKAGE_LIBFSLCODEC
  1042. bool "libfslcodec has been renamed to imx-codec"
  1043. select BR2_LEGACY
  1044. select BR2_PACKAGE_IMX_CODEC
  1045. help
  1046. The libfslcodec has been renamed to match the renamed package.
  1047. config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
  1048. bool "FIT support in uboot-tools has been refactored"
  1049. select BR2_LEGACY
  1050. select BR2_PACKAGE_DTC
  1051. select BR2_PACKAGE_DTC_PROGRAMS
  1052. select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
  1053. select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
  1054. select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
  1055. help
  1056. This option has been removed in favor of a more fine-grained
  1057. configuration, which is recommended. Selecting this option
  1058. enables FIT and FIT signature support for the target packages.
  1059. It will also select the dtc and openssl packages.
  1060. config BR2_PTHREADS_OLD
  1061. bool "linuxthreads (stable/old)"
  1062. select BR2_LEGACY
  1063. help
  1064. Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
  1065. BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
  1066. config BR2_BINUTILS_VERSION_2_23_X
  1067. bool "binutils 2.23 removed"
  1068. select BR2_LEGACY
  1069. help
  1070. Binutils 2.23 has been removed, using a newer version is
  1071. recommended.
  1072. config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
  1073. bool "eglibc support has been removed"
  1074. select BR2_LEGACY
  1075. help
  1076. The eglibc project no longer exists, as it has been merged
  1077. back into the glibc project. Therefore, support for eglibc
  1078. has been removed, and glibc should be used instead.
  1079. config BR2_GDB_VERSION_7_8
  1080. bool "gdb 7.8 has been removed"
  1081. select BR2_LEGACY
  1082. help
  1083. The 7.8 version of gdb has been removed. Use a newer version
  1084. instead.
  1085. ###############################################################################
  1086. comment "Legacy options removed in 2016.05"
  1087. config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
  1088. bool "openvpn polarssl crypto backend removed"
  1089. select BR2_LEGACY
  1090. help
  1091. The OpenVPN polarssl crypto backend option has been removed.
  1092. Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
  1093. compatible with mbedtls (polarssl) series 2.x which is the
  1094. version provided in buildroot. And both can't coexist.
  1095. It now uses OpenSSL as the only option.
  1096. config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
  1097. bool "nginx http spdy module removed"
  1098. select BR2_LEGACY
  1099. select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
  1100. help
  1101. The ngx_http_spdy_module has been superseded by the
  1102. ngx_http_v2_module since nginx v1.9.5. The
  1103. ngx_http_v2_module modules has been automatically selected
  1104. in your configuration.
  1105. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
  1106. bool "gst1-plugins-bad rtp plugin moved to good"
  1107. select BR2_LEGACY
  1108. help
  1109. The rtp plugin has been moved from gst1-plugins-base to
  1110. gst1-plugins-good.
  1111. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
  1112. bool "gst1-plugins-bad mpg123 plugin moved to ugly"
  1113. select BR2_LEGACY
  1114. help
  1115. The mpg123 plugin has been moved from gst1-plugins-bad to
  1116. gst1-plugins-ugly.
  1117. config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
  1118. bool "PowerPC Sourcery toolchain has been removed"
  1119. select BR2_LEGACY
  1120. help
  1121. The Sourcery CodeBench toolchain for the PowerPC
  1122. architecture has been removed, as it was very old, not
  1123. maintained, and causing numerous build failures with modern
  1124. userspace packages.
  1125. config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
  1126. bool "PowerPC Sourcery E500v2 toolchain has been removed"
  1127. select BR2_LEGACY
  1128. help
  1129. The Sourcery CodeBench toolchain for the PowerPC E500v2
  1130. architecture has been removed, as it was very old, not
  1131. maintained, and causing numerous build failures with modern
  1132. userspace packages.
  1133. config BR2_x86_i386
  1134. bool "x86 i386 support removed"
  1135. select BR2_LEGACY
  1136. help
  1137. The support for the i386 processors of the x86 architecture
  1138. has been removed.
  1139. config BR2_PACKAGE_QT5QUICK1
  1140. bool "qt5quick1 package removed"
  1141. select BR2_LEGACY
  1142. help
  1143. The qt5quick1 package has been removed, since it was removed
  1144. from upstream starting from Qt 5.6.
  1145. config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
  1146. string "uboot custom patch dir has been removed"
  1147. help
  1148. The uboot custom patch directory option has been removed. Use
  1149. the improved BR2_TARGET_UBOOT_PATCH option instead.
  1150. config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
  1151. bool
  1152. default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
  1153. select BR2_LEGACY
  1154. # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
  1155. # boot/uboot/Config.in
  1156. config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
  1157. bool "xf86-input-void removed"
  1158. select BR2_LEGACY
  1159. help
  1160. The xf86-input-void package has been removed, there's no need
  1161. for it in any modern (post-2007) xorg server.
  1162. config BR2_KERNEL_HEADERS_3_17
  1163. bool "kernel headers version 3.17.x are no longer supported"
  1164. select BR2_KERNEL_HEADERS_3_12
  1165. select BR2_LEGACY
  1166. help
  1167. Version 3.17.x of the Linux kernel headers have been
  1168. deprecated for more than four buildroot releases and are now
  1169. removed.
  1170. As an alternative, version 3.12.x of the headers have been
  1171. automatically selected in your configuration.
  1172. config BR2_GDB_VERSION_7_7
  1173. bool "gdb 7.7 has been removed"
  1174. select BR2_LEGACY
  1175. help
  1176. The 7.7 version of gdb has been removed. Use a newer version
  1177. instead.
  1178. config BR2_PACKAGE_FOOMATIC_FILTERS
  1179. bool "foomatic-filters"
  1180. select BR2_LEGACY
  1181. help
  1182. The foomatic-filters package was removed.
  1183. config BR2_PACKAGE_SAMBA
  1184. bool "samba"
  1185. select BR2_LEGACY
  1186. help
  1187. The samba package was removed in favour of samba4 since the
  1188. 3.x series isn't supported by upstream any longer.
  1189. config BR2_PACKAGE_KODI_WAVPACK
  1190. bool "wavpack"
  1191. select BR2_LEGACY
  1192. help
  1193. wavpack support was removed in favour of ffmpeg:
  1194. https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
  1195. config BR2_PACKAGE_KODI_RSXS
  1196. bool "rsxs support in Kodi was moved to an addon"
  1197. select BR2_LEGACY
  1198. select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
  1199. help
  1200. rsxs support in Kodi was moved to an addon
  1201. config BR2_PACKAGE_KODI_GOOM
  1202. bool "Goom support in Kodi was moved to an addon"
  1203. select BR2_LEGACY
  1204. select BR2_PACKAGE_KODI_VISUALISATION_GOOM
  1205. help
  1206. Goom support in Kodi was moved to an addon
  1207. config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
  1208. bool "systemd all extras option has been removed"
  1209. select BR2_LEGACY
  1210. select BR2_PACKAGE_XZ
  1211. select BR2_PACKAGE_LIBGCRYPT
  1212. help
  1213. The systemd option to enable "all extras" has been
  1214. removed. To get the same features, the libgcrypt and xz
  1215. package should now be enabled.
  1216. config BR2_GCC_VERSION_4_5_X
  1217. bool "gcc 4.5.x has been removed"
  1218. select BR2_LEGACY
  1219. help
  1220. The 4.5.x version of gcc has been removed. Use a newer
  1221. version instead.
  1222. config BR2_PACKAGE_SQLITE_READLINE
  1223. bool "sqlite command-line editing support was updated"
  1224. select BR2_PACKAGE_NCURSES
  1225. select BR2_PACKAGE_READLINE
  1226. select BR2_LEGACY
  1227. help
  1228. This option was removed in favour of the sqlite package
  1229. deciding itself depending on the enabled packages whether
  1230. command-line editing should be enabled, it also also takes
  1231. libedit into account.
  1232. ###############################################################################
  1233. comment "Legacy options removed in 2016.02"
  1234. config BR2_PACKAGE_DOVECOT_BZIP2
  1235. bool "bzip2 support option has been removed"
  1236. select BR2_LEGACY
  1237. select BR2_PACKAGE_BZIP2
  1238. help
  1239. Bzip2 support is built if the bzip2 package is selected.
  1240. config BR2_PACKAGE_DOVECOT_ZLIB
  1241. bool "zlib support option has been removed"
  1242. select BR2_LEGACY
  1243. select BR2_PACKAGE_ZLIB
  1244. help
  1245. Zlib support is built if the zlib package is selected.
  1246. config BR2_PACKAGE_E2FSPROGS_FINDFS
  1247. bool "e2fsprogs findfs option has been removed"
  1248. select BR2_LEGACY
  1249. help
  1250. This option attempted to enable findfs capabilities from
  1251. e2fsprogs but has not worked since July 2015 (due to
  1252. packaging changes). One can use BusyBox's findfs support or
  1253. enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
  1254. config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
  1255. bool "openpowerlink debug option has been removed"
  1256. select BR2_LEGACY
  1257. help
  1258. This option depends on BR2_ENABLE_DEBUG which should not be
  1259. used by packages anymore.
  1260. config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
  1261. bool "openpowerlink package has been updated"
  1262. select BR2_LEGACY
  1263. select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
  1264. help
  1265. openpowerlink kernel modules are built if the
  1266. kernel stack library is selected.
  1267. config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
  1268. bool "openpowerlink package has been updated"
  1269. select BR2_LEGACY
  1270. select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
  1271. help
  1272. The user space support has been split in two part:
  1273. - a monolitic user space library
  1274. - a user spae deamon driver
  1275. config BR2_LINUX_KERNEL_SAME_AS_HEADERS
  1276. bool "using the linux headers version for the kernel has been removed"
  1277. select BR2_LEGACY
  1278. help
  1279. The option to use the version of the kernel headers for the
  1280. kernel to build has been removed.
  1281. There is now the converse, better-suited and more versatile
  1282. option to use the kernel version for the linux headers.
  1283. config BR2_PACKAGE_CUPS_PDFTOPS
  1284. bool "Pdftops support has been removed from Cups"
  1285. select BR2_PACKAGE_CUPS_FILTERS
  1286. select BR2_LEGACY
  1287. help
  1288. Pdftops support has been removed from the cups package
  1289. It is now part of the cups-filters package.
  1290. config BR2_KERNEL_HEADERS_3_16
  1291. bool "kernel headers version 3.16.x are no longer supported"
  1292. select BR2_KERNEL_HEADERS_3_12
  1293. select BR2_LEGACY
  1294. help
  1295. Version 3.16.x of the Linux kernel headers have been
  1296. deprecated for more than four buildroot releases and are now
  1297. removed.
  1298. As an alternative, version 3.12.x of the headers have been
  1299. automatically selected in your configuration.
  1300. config BR2_PACKAGE_PYTHON_PYXML
  1301. bool "python-pyxml package has been removed"
  1302. select BR2_LEGACY
  1303. help
  1304. PyXML is obsolete and its functionality is covered either via
  1305. native Python XML support or python-lxml package.
  1306. # BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
  1307. config BR2_ENABLE_SSP
  1308. bool "Stack Smashing protection now has different levels"
  1309. help
  1310. The protection offered by SSP can now be selected from
  1311. different protection levels. Be sure to review the SSP level
  1312. in the build options menu.
  1313. config BR2_PACKAGE_DIRECTFB_CLE266
  1314. bool "cle266 driver for directfb removed"
  1315. select BR2_LEGACY
  1316. help
  1317. The cle266 directfb driver support has been removed.
  1318. It doesn't build in the latest version and it's unlikely
  1319. anyone has any use for it.
  1320. config BR2_PACKAGE_DIRECTFB_UNICHROME
  1321. bool "unichrome driver for directfb removed"
  1322. select BR2_LEGACY
  1323. help
  1324. The unichrome directfb driver support has been removed.
  1325. It doesn't build in the latest version and it's unlikely
  1326. anyone has any use for it.
  1327. config BR2_PACKAGE_LIBELEMENTARY
  1328. bool "libelementary has been renamed to elementary"
  1329. select BR2_LEGACY
  1330. select BR2_PACKAGE_ELEMENTARY
  1331. help
  1332. The libelementary package has been renamed to match the
  1333. upstream name.
  1334. config BR2_PACKAGE_LIBEINA
  1335. bool "libeina package has been removed"
  1336. select BR2_LEGACY
  1337. select BR2_PACKAGE_EFL
  1338. help
  1339. With EFL 1.15, libeina is now provided by the efl package.
  1340. config BR2_PACKAGE_LIBEET
  1341. bool "libeet package has been removed"
  1342. select BR2_LEGACY
  1343. select BR2_PACKAGE_EFL
  1344. help
  1345. With EFL 1.15, libeet is now provided by the efl package.
  1346. config BR2_PACKAGE_LIBEVAS
  1347. bool "libevas package has been removed"
  1348. select BR2_LEGACY
  1349. select BR2_PACKAGE_EFL
  1350. help
  1351. With EFL 1.15, libevas is now provided by the efl package.
  1352. config BR2_PACKAGE_LIBECORE
  1353. bool "libecore package has been removed"
  1354. select BR2_LEGACY
  1355. select BR2_PACKAGE_EFL
  1356. help
  1357. With EFL 1.15, libecore is now provided by the efl package.
  1358. config BR2_PACKAGE_LIBEDBUS
  1359. bool "libedbus package has been removed"
  1360. select BR2_LEGACY
  1361. select BR2_PACKAGE_EFL
  1362. help
  1363. With EFL 1.15, libedbus is now provided by the efl package.
  1364. config BR2_PACKAGE_LIBEFREET
  1365. bool "libefreet package has been removed"
  1366. select BR2_LEGACY
  1367. select BR2_PACKAGE_EFL
  1368. help
  1369. With EFL 1.15, libefreet is now provided by the efl package.
  1370. config BR2_PACKAGE_LIBEIO
  1371. bool "libeio package has been removed"
  1372. select BR2_LEGACY
  1373. select BR2_PACKAGE_EFL
  1374. help
  1375. With EFL 1.15, libeio is now provided by the efl package.
  1376. config BR2_PACKAGE_LIBEMBRYO
  1377. bool "libembryo package has been removed"
  1378. select BR2_LEGACY
  1379. select BR2_PACKAGE_EFL
  1380. help
  1381. With EFL 1.15, libembryo is now provided by the efl package.
  1382. config BR2_PACKAGE_LIBEDJE
  1383. bool "libedje package has been removed"
  1384. select BR2_LEGACY
  1385. select BR2_PACKAGE_EFL
  1386. help
  1387. With EFL 1.15, libedje is now provided by the efl package.
  1388. config BR2_PACKAGE_LIBETHUMB
  1389. bool "libethumb package has been removed"
  1390. select BR2_LEGACY
  1391. select BR2_PACKAGE_EFL
  1392. help
  1393. With EFL 1.15, libethumb is now provided by the efl package.
  1394. config BR2_PACKAGE_INFOZIP
  1395. bool "infozip option has been renamed to zip"
  1396. select BR2_LEGACY
  1397. select BR2_PACKAGE_ZIP
  1398. help
  1399. Info-Zip's Zip package has been renamed from infozip to zip,
  1400. to avoid ambiguities with Info-Zip's UnZip which has been
  1401. added in the unzip package.
  1402. config BR2_BR2_PACKAGE_NODEJS_0_10_X
  1403. bool "nodejs 0.10.x option removed"
  1404. select BR2_LEGACY
  1405. select BR2_PACKAGE_NODEJS
  1406. help
  1407. nodejs 0.10.x option has been removed. 0.10.x is now
  1408. automatically chosen for ARMv5 architectures only and the
  1409. latest nodejs for all other supported architectures. The
  1410. correct nodejs version has been automatically selected in your
  1411. configuration.
  1412. config BR2_BR2_PACKAGE_NODEJS_0_12_X
  1413. bool "nodejs version 0.12.x has been removed"
  1414. select BR2_LEGACY
  1415. select BR2_PACKAGE_NODEJS
  1416. help
  1417. nodejs version 0.12.x has been removed. As an alternative,
  1418. the latest nodejs version has been automatically selected in
  1419. your configuration.
  1420. config BR2_BR2_PACKAGE_NODEJS_4_X
  1421. bool "nodejs version 4.x has been removed"
  1422. select BR2_LEGACY
  1423. select BR2_PACKAGE_NODEJS
  1424. help
  1425. nodejs version 4.x has been removed. As an alternative,
  1426. the latest nodejs version has been automatically selected in
  1427. your configuration.
  1428. ###############################################################################
  1429. comment "Legacy options removed in 2015.11"
  1430. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
  1431. bool "gst1-plugins-bad real plugin has been removed"
  1432. select BR2_LEGACY
  1433. help
  1434. The real plugin from GStreamer 1 bad plugins has been
  1435. removed.
  1436. config BR2_PACKAGE_MEDIA_CTL
  1437. bool "media-ctl package has been removed"
  1438. select BR2_LEGACY
  1439. select BR2_PACKAGE_LIBV4L
  1440. select BR2_PACKAGE_LIBV4L_UTILS
  1441. help
  1442. media-ctl source and developement have been moved to v4l-utils
  1443. since June 2014. For an up-to-date media-ctl version select
  1444. BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
  1445. config BR2_PACKAGE_SCHIFRA
  1446. bool "schifra package has been removed"
  1447. select BR2_LEGACY
  1448. help
  1449. Schifra package has been maked broken since 2014.11 release
  1450. and haven't been fixed since then.
  1451. config BR2_PACKAGE_ZXING
  1452. bool "zxing option has been renamed"
  1453. select BR2_LEGACY
  1454. select BR2_PACKAGE_ZXING_CPP
  1455. help
  1456. ZXing no longer provides the cpp bindings, it has been renamed
  1457. to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
  1458. # Since FreeRDP has new dependencies, protect this legacy to avoid the
  1459. # infamous "unmet direct dependencies" kconfig error.
  1460. config BR2_PACKAGE_FREERDP_CLIENT
  1461. bool "freerdp client option renamed"
  1462. depends on BR2_PACKAGE_FREERDP
  1463. select BR2_LEGACY
  1464. select BR2_PACKAGE_FREERDP_CLIENT_X11
  1465. config BR2_PACKAGE_BLACKBOX
  1466. bool "blackbox package has been removed"
  1467. select BR2_LEGACY
  1468. help
  1469. Upstream is dead and the package has been deprecated for
  1470. some time. There are other alternative maintained WMs.
  1471. config BR2_KERNEL_HEADERS_3_0
  1472. bool "kernel headers version 3.0.x are no longer supported"
  1473. select BR2_KERNEL_HEADERS_3_2
  1474. select BR2_LEGACY
  1475. help
  1476. Version 3.0.x of the Linux kernel headers have been deprecated
  1477. for more than four buildroot releases and are now removed.
  1478. As an alternative, version 3.2.x of the headers have been
  1479. automatically selected in your configuration.
  1480. config BR2_KERNEL_HEADERS_3_11
  1481. bool "kernel headers version 3.11.x are no longer supported"
  1482. select BR2_KERNEL_HEADERS_3_10
  1483. select BR2_LEGACY
  1484. help
  1485. Version 3.11.x of the Linux kernel headers have been
  1486. deprecated for more than four buildroot releases and are now
  1487. removed.
  1488. As an alternative, version 3.10.x of the headers have been
  1489. automatically selected in your configuration.
  1490. config BR2_KERNEL_HEADERS_3_13
  1491. bool "kernel headers version 3.13.x are no longer supported"
  1492. select BR2_KERNEL_HEADERS_3_12
  1493. select BR2_LEGACY
  1494. help
  1495. Version 3.13.x of the Linux kernel headers have been
  1496. deprecated for more than four buildroot releases and are now
  1497. removed.
  1498. As an alternative, version 3.12.x of the headers have been
  1499. automatically selected in your configuration.
  1500. config BR2_KERNEL_HEADERS_3_15
  1501. bool "kernel headers version 3.15.x are no longer supported"
  1502. select BR2_KERNEL_HEADERS_3_12
  1503. select BR2_LEGACY
  1504. help
  1505. Version 3.15.x of the Linux kernel headers have been
  1506. deprecated for more than four buildroot releases and are now
  1507. removed.
  1508. As an alternative, version 3.12.x of the headers have been
  1509. automatically selected in your configuration.
  1510. config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
  1511. bool "DirectFB example df_andi has been removed"
  1512. select BR2_LEGACY
  1513. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1514. help
  1515. The per-DirectFB example options have been removed. The
  1516. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1517. examples.
  1518. config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
  1519. bool "DirectFB example df_bltload has been removed"
  1520. select BR2_LEGACY
  1521. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1522. help
  1523. The per-DirectFB example options have been removed. The
  1524. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1525. examples.
  1526. config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
  1527. bool "DirectFB example df_cpuload has been removed"
  1528. select BR2_LEGACY
  1529. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1530. help
  1531. The per-DirectFB example options have been removed. The
  1532. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1533. examples.
  1534. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
  1535. bool "DirectFB example df_databuffer has been removed"
  1536. select BR2_LEGACY
  1537. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1538. help
  1539. The per-DirectFB example options have been removed. The
  1540. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1541. examples.
  1542. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
  1543. bool "DirectFB example df_dioload has been removed"
  1544. select BR2_LEGACY
  1545. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1546. help
  1547. The per-DirectFB example options have been removed. The
  1548. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1549. examples.
  1550. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
  1551. bool "DirectFB example df_dok has been removed"
  1552. select BR2_LEGACY
  1553. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1554. help
  1555. The per-DirectFB example options have been removed. The
  1556. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1557. examples.
  1558. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
  1559. bool "DirectFB example df_drivertest has been removed"
  1560. select BR2_LEGACY
  1561. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1562. help
  1563. The per-DirectFB example options have been removed. The
  1564. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1565. examples.
  1566. config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
  1567. bool "DirectFB example df_fire has been removed"
  1568. select BR2_LEGACY
  1569. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1570. help
  1571. The per-DirectFB example options have been removed. The
  1572. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1573. examples.
  1574. config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
  1575. bool "DirectFB example df_flip has been removed"
  1576. select BR2_LEGACY
  1577. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1578. help
  1579. The per-DirectFB example options have been removed. The
  1580. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1581. examples.
  1582. config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
  1583. bool "DirectFB example df_fonts has been removed"
  1584. select BR2_LEGACY
  1585. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1586. help
  1587. The per-DirectFB example options have been removed. The
  1588. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1589. examples.
  1590. config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
  1591. bool "DirectFB example df_input has been removed"
  1592. select BR2_LEGACY
  1593. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1594. help
  1595. The per-DirectFB example options have been removed. The
  1596. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1597. examples.
  1598. config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
  1599. bool "DirectFB example df_joystick has been removed"
  1600. select BR2_LEGACY
  1601. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1602. help
  1603. The per-DirectFB example options have been removed. The
  1604. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1605. examples.
  1606. config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
  1607. bool "DirectFB example df_knuckles has been removed"
  1608. select BR2_LEGACY
  1609. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1610. help
  1611. The per-DirectFB example options have been removed. The
  1612. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1613. examples.
  1614. config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
  1615. bool "DirectFB example df_layer has been removed"
  1616. select BR2_LEGACY
  1617. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1618. help
  1619. The per-DirectFB example options have been removed. The
  1620. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1621. examples.
  1622. config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
  1623. bool "DirectFB example df_matrix has been removed"
  1624. select BR2_LEGACY
  1625. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1626. help
  1627. The per-DirectFB example options have been removed. The
  1628. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1629. examples.
  1630. config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
  1631. bool "DirectFB example df_matrix_water has been removed"
  1632. select BR2_LEGACY
  1633. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1634. help
  1635. The per-DirectFB example options have been removed. The
  1636. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1637. examples.
  1638. config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
  1639. bool "DirectFB example df_neo has been removed"
  1640. select BR2_LEGACY
  1641. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1642. help
  1643. The per-DirectFB example options have been removed. The
  1644. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1645. examples.
  1646. config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
  1647. bool "DirectFB example df_netload has been removed"
  1648. select BR2_LEGACY
  1649. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1650. help
  1651. The per-DirectFB example options have been removed. The
  1652. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1653. examples.
  1654. config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
  1655. bool "DirectFB example df_palette has been removed"
  1656. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1657. help
  1658. The per-DirectFB example options have been removed. The
  1659. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1660. examples.
  1661. config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
  1662. bool "DirectFB example df_particle has been removed"
  1663. select BR2_LEGACY
  1664. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1665. help
  1666. The per-DirectFB example options have been removed. The
  1667. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1668. examples.
  1669. config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
  1670. bool "DirectFB example df_porter has been removed"
  1671. select BR2_LEGACY
  1672. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1673. help
  1674. The per-DirectFB example options have been removed. The
  1675. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1676. examples.
  1677. config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
  1678. bool "DirectFB example df_stress has been removed"
  1679. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1680. help
  1681. The per-DirectFB example options have been removed. The
  1682. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1683. examples.
  1684. config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
  1685. bool "DirectFB example df_texture has been removed"
  1686. select BR2_LEGACY
  1687. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1688. help
  1689. The per-DirectFB example options have been removed. The
  1690. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1691. examples.
  1692. config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
  1693. bool "DirectFB example df_video has been removed"
  1694. select BR2_LEGACY
  1695. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1696. help
  1697. The per-DirectFB example options have been removed. The
  1698. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1699. examples.
  1700. config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
  1701. bool "DirectFB example df_video_particle has been removed"
  1702. select BR2_LEGACY
  1703. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1704. help
  1705. The per-DirectFB example options have been removed. The
  1706. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1707. examples.
  1708. config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
  1709. bool "DirectFB example df_window has been removed"
  1710. select BR2_LEGACY
  1711. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1712. help
  1713. The per-DirectFB example options have been removed. The
  1714. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1715. examples.
  1716. config BR2_PACKAGE_KOBS_NG
  1717. bool "kobs-ng was replaced by imx-kobs"
  1718. select BR2_LEGACY
  1719. select BR2_PACKAGE_IMX_KOBS
  1720. help
  1721. The outdated kobs-ng has been replaced by the Freescale-
  1722. maintained imx-kobs package.
  1723. config BR2_PACKAGE_SAWMAN
  1724. bool "sawman package removed"
  1725. select BR2_LEGACY
  1726. select BR2_PACKAGE_DIRECTFB_SAWMAN
  1727. help
  1728. This option has been removed because the sawman package no
  1729. longer exists: it was merged inside DirectFB itself. This
  1730. feature can now be enabled using the
  1731. BR2_PACKAGE_DIRECTFB_SAWMAN option.
  1732. config BR2_PACKAGE_DIVINE
  1733. bool "divine package removed"
  1734. select BR2_LEGACY
  1735. select BR2_PACKAGE_DIRECTFB_DIVINE
  1736. help
  1737. This option has been removed because the divine package no
  1738. longer exists: it was merged inside DirectFB itself. This
  1739. feature can now be enabled using the
  1740. BR2_PACKAGE_DIRECTFB_DIVINE option.
  1741. ###############################################################################
  1742. comment "Legacy options removed in 2015.08"
  1743. config BR2_PACKAGE_KODI_PVR_ADDONS
  1744. bool "Kodi PVR addon was split"
  1745. select BR2_LEGACY
  1746. select BR2_PACKAGE_KODI_PVR_ARGUSTV
  1747. select BR2_PACKAGE_KODI_PVR_DVBLINK
  1748. select BR2_PACKAGE_KODI_PVR_DVBVIEWER
  1749. select BR2_PACKAGE_KODI_PVR_FILMON
  1750. select BR2_PACKAGE_KODI_PVR_HTS
  1751. select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
  1752. select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
  1753. select BR2_PACKAGE_KODI_PVR_MYTHTV
  1754. select BR2_PACKAGE_KODI_PVR_NEXTPVR
  1755. select BR2_PACKAGE_KODI_PVR_NJOY
  1756. select BR2_PACKAGE_KODI_PVR_PCTV
  1757. select BR2_PACKAGE_KODI_PVR_STALKER
  1758. select BR2_PACKAGE_KODI_PVR_VBOX
  1759. select BR2_PACKAGE_KODI_PVR_VDR_VNSI
  1760. select BR2_PACKAGE_KODI_PVR_VUPLUS
  1761. select BR2_PACKAGE_KODI_PVR_WMC
  1762. help
  1763. Kodi PVR addon was split into seperate modules
  1764. config BR2_BINUTILS_VERSION_2_23_2
  1765. bool "binutils 2.23 option renamed"
  1766. select BR2_LEGACY
  1767. help
  1768. Binutils 2.23.2 has been removed, using a newer version is
  1769. recommended.
  1770. config BR2_BINUTILS_VERSION_2_24
  1771. bool "binutils 2.24 option renamed"
  1772. select BR2_LEGACY
  1773. select BR2_BINUTILS_VERSION_2_24_X
  1774. help
  1775. The binutils version option has been renamed to match the
  1776. same patchlevel logic used by gcc. The new option is now
  1777. BR2_BINUTILS_VERSION_2_24_X.
  1778. config BR2_BINUTILS_VERSION_2_25
  1779. bool "binutils 2.25 option renamed"
  1780. select BR2_LEGACY
  1781. select BR2_BINUTILS_VERSION_2_25_X
  1782. help
  1783. The binutils version option has been renamed to match the
  1784. same patchlevel logic used by gcc. The new option is now
  1785. BR2_BINUTILS_VERSION_2_25_X.
  1786. config BR2_PACKAGE_PERF
  1787. bool "perf option has been renamed"
  1788. select BR2_LEGACY
  1789. select BR2_LINUX_KERNEL_TOOL_PERF
  1790. help
  1791. The perf package has been moved as a Linux tools package,
  1792. and the option to enable it is now
  1793. BR2_LINUX_KERNEL_TOOL_PERF.
  1794. config BR2_BINUTILS_VERSION_2_22
  1795. bool "binutils 2.22 removed"
  1796. select BR2_LEGACY
  1797. help
  1798. Binutils 2.22 has been removed, using a newer version is
  1799. recommended.
  1800. config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
  1801. bool "gpu-viv-bin-mx6q"
  1802. select BR2_LEGACY
  1803. select BR2_PACKAGE_IMX_GPU_VIV
  1804. help
  1805. Vivante graphics libraries have been renamed to
  1806. BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
  1807. name.
  1808. config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
  1809. bool "libsemanage python bindings removed"
  1810. depends on BR2_PACKAGE_PYTHON
  1811. select BR2_LEGACY
  1812. help
  1813. This option has been removed, since the libsemanage Python
  1814. bindings on the target were not useful.
  1815. config BR2_TARGET_UBOOT_NETWORK
  1816. bool "U-Boot custom network settings removed"
  1817. select BR2_LEGACY
  1818. help
  1819. U-Boot's custom network settings options have been removed.
  1820. ###############################################################################
  1821. comment "Legacy options removed in 2015.05"
  1822. config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
  1823. bool "jffs2 16kB erasesize NAND flash option renamed"
  1824. select BR2_LEGACY
  1825. select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
  1826. help
  1827. The JFFS2 NAND flash options now longer include the page
  1828. size.
  1829. config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
  1830. bool "jffs2 128kB erasesize NAND flash option renamed"
  1831. select BR2_LEGACY
  1832. select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
  1833. help
  1834. The JFFS2 NAND flash options now longer include the page
  1835. size.
  1836. config BR2_PACKAGE_MONO_20
  1837. bool "2.0/3.5 .Net Runtime"
  1838. select BR2_LEGACY
  1839. help
  1840. This option no longer exists, all versions of the .Net
  1841. runtime are now installed.
  1842. config BR2_PACKAGE_MONO_40
  1843. bool "4.0 .Net Runtime"
  1844. select BR2_LEGACY
  1845. help
  1846. This option no longer exists, all versions of the .Net
  1847. runtime are now installed.
  1848. config BR2_PACKAGE_MONO_45
  1849. bool "4.5 .Net Runtime"
  1850. select BR2_LEGACY
  1851. help
  1852. This option no longer exists, all versions of the .Net
  1853. runtime are now installed.
  1854. config BR2_CIVETWEB_WITH_LUA
  1855. bool "civetweb lua option renamed"
  1856. select BR2_LEGACY
  1857. select BR2_PACKAGE_CIVETWEB_WITH_LUA
  1858. help
  1859. civetweb's lua option has been renamed to
  1860. BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
  1861. packages name options.
  1862. config BR2_PACKAGE_TIFF_TIFF2PDF
  1863. bool "tiff utility-specific option removed"
  1864. select BR2_LEGACY
  1865. select BR2_PACKAGE_TIFF_UTILITIES
  1866. help
  1867. utility-specific options have been removed in favour of
  1868. the new option BR2_PACKAGE_TIFF_UTILITIES.
  1869. config BR2_PACKAGE_TIFF_TIFFCP
  1870. bool "tiff utility-specific option removed"
  1871. select BR2_LEGACY
  1872. select BR2_PACKAGE_TIFF_UTILITIES
  1873. help
  1874. utility-specific options have been removed in favour of
  1875. the new option BR2_PACKAGE_TIFF_UTILITIES.
  1876. config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
  1877. bool "RTAI patch file path has been removed"
  1878. select BR2_LEGACY
  1879. help
  1880. This option has never worked, so it has been removed.
  1881. config BR2_TARGET_GENERIC_PASSWD_DES
  1882. bool "Encoding passwords with DES has been removed"
  1883. select BR2_LEGACY
  1884. help
  1885. Paswords can now only be encoded with either of md5, sha256 or
  1886. sha512. The default is md5, which is stronger that DES (but
  1887. still pretty weak).
  1888. config BR2_PACKAGE_GTK2_THEME_HICOLOR
  1889. bool "hicolor (default theme) is a duplicate"
  1890. select BR2_LEGACY
  1891. select BR2_PACKAGE_HICOLOR_ICON_THEME
  1892. help
  1893. The option was just a duplicate of hicolor icon theme.
  1894. config BR2_PACKAGE_VALGRIND_PTRCHECK
  1895. bool "valgrind's PTRCheck was renamed to SGCheck"
  1896. select BR2_LEGACY
  1897. select BR2_PACKAGE_VALGRIND_SGCHECK
  1898. help
  1899. PTRCheck was renamed to SGCheck in valgrind
  1900. ###############################################################################
  1901. comment "Legacy options removed in 2015.02"
  1902. config BR2_PACKAGE_LIBGC
  1903. bool "libgc package removed"
  1904. select BR2_LEGACY
  1905. select BR2_PACKAGE_BDWGC
  1906. help
  1907. libgc has been removed because we have the same package under
  1908. a different name, bdwgc.
  1909. config BR2_PACKAGE_WDCTL
  1910. bool "util-linux' wdctl option has been renamed"
  1911. select BR2_LEGACY
  1912. select BR2_PACKAGE_UTIL_LINUX_WDCTL
  1913. help
  1914. util-linux' wdctl option has been renamed to
  1915. BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other
  1916. options are named.
  1917. config BR2_PACKAGE_UTIL_LINUX_ARCH
  1918. bool "util-linux' arch option has been removed"
  1919. select BR2_LEGACY
  1920. help
  1921. util-linux' arch was dropped in util-linux 2.23, in favor of
  1922. the coreutils version.
  1923. config BR2_PACKAGE_UTIL_LINUX_DDATE
  1924. bool "util-linux' ddate option has been removed"
  1925. select BR2_LEGACY
  1926. help
  1927. util-linux' ddate was dropped in util-linux 2.23.
  1928. config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
  1929. bool "rpm's bzip2 payloads option has been removed"
  1930. select BR2_LEGACY
  1931. select BR2_PACKAGE_BZIP2
  1932. help
  1933. The bzip2 payloads option rely entirely on the dependant
  1934. package bzip2. So, you need to select it to enable this
  1935. feature.
  1936. config BR2_PACKAGE_RPM_XZ_PAYLOADS
  1937. bool "rpm's xz payloads option has been removed"
  1938. select BR2_LEGACY
  1939. select BR2_PACKAGE_XZ
  1940. help
  1941. The xz payloads option rely entirely on the dependant package
  1942. xz. So, you need to select it to enable this feature.
  1943. config BR2_PACKAGE_M4
  1944. bool "m4 target package removed"
  1945. select BR2_LEGACY
  1946. help
  1947. The m4 target package has been removed, it's been
  1948. deprecated for some time now.
  1949. config BR2_PACKAGE_FLEX_BINARY
  1950. bool "flex binary in target option removed"
  1951. select BR2_LEGACY
  1952. help
  1953. The flex binary in the target option has been removed.
  1954. It's been deprecated for some time now and is essentially a
  1955. development tool which isn't very useful in the target.
  1956. config BR2_PACKAGE_BISON
  1957. bool "bison target package removed"
  1958. select BR2_LEGACY
  1959. help
  1960. The bison target package has been removed, it's been
  1961. deprecated for some time now and is essentially a development
  1962. tool which isn't very useful in the target.
  1963. config BR2_PACKAGE_GOB2
  1964. bool "gob2 target package removed"
  1965. select BR2_LEGACY
  1966. help
  1967. The gob2 target package has been removed, it's been
  1968. deprecated for some time now and was essentially useless
  1969. without a target toolchain.
  1970. config BR2_PACKAGE_DISTCC
  1971. bool "distcc target package removed"
  1972. select BR2_LEGACY
  1973. help
  1974. The distcc target package has been removed, it's been
  1975. deprecated for some time now and was essentially useless
  1976. without a target toolchain.
  1977. config BR2_PACKAGE_HASERL_VERSION_0_8_X
  1978. bool "haserl 0.8.x version removed"
  1979. select BR2_LEGACY
  1980. help
  1981. The 0.8.x version option for haserl has been removed since it
  1982. has been deprecated for some time now.
  1983. You should be able to use the 0.9.x version without issues.
  1984. config BR2_PACKAGE_STRONGSWAN_TOOLS
  1985. bool "strongswan option has been removed"
  1986. select BR2_LEGACY
  1987. select BR2_PACKAGE_STRONGSWAN_PKI
  1988. select BR2_PACKAGE_STRONGSWAN_SCEP
  1989. help
  1990. The tools option has been removed upstream and the different
  1991. tools have been split between the pki and scep options, with
  1992. others deprecated.
  1993. config BR2_PACKAGE_XBMC_ADDON_XVDR
  1994. bool "xbmc-addon-xvdr removed"
  1995. select BR2_LEGACY
  1996. help
  1997. According to the github project page:
  1998. https://github.com/pipelka/xbmc-addon-xvdr
  1999. this package is discontinued.
  2000. config BR2_PACKAGE_XBMC_PVR_ADDONS
  2001. bool "xbmc options have been renamed"
  2002. select BR2_LEGACY
  2003. select BR2_PACKAGE_KODI_PVR_ADDONS
  2004. help
  2005. The XBMC media center project was renamed to Kodi
  2006. entertainment center
  2007. config BR2_PACKAGE_XBMC
  2008. bool "xbmc options have been renamed"
  2009. select BR2_LEGACY
  2010. select BR2_PACKAGE_KODI
  2011. help
  2012. The XBMC media center project was renamed to Kodi
  2013. entertainment center
  2014. config BR2_PACKAGE_XBMC_ALSA_LIB
  2015. bool "xbmc options have been renamed"
  2016. select BR2_LEGACY
  2017. select BR2_PACKAGE_KODI_ALSA_LIB
  2018. help
  2019. The XBMC media center project was renamed to Kodi
  2020. entertainment center
  2021. config BR2_PACKAGE_XBMC_AVAHI
  2022. bool "xbmc options have been renamed"
  2023. select BR2_LEGACY
  2024. select BR2_PACKAGE_KODI_AVAHI
  2025. help
  2026. The XBMC media center project was renamed to Kodi
  2027. entertainment center
  2028. config BR2_PACKAGE_XBMC_DBUS
  2029. bool "xbmc options have been renamed"
  2030. select BR2_LEGACY
  2031. select BR2_PACKAGE_KODI_DBUS
  2032. help
  2033. The XBMC media center project was renamed to Kodi
  2034. entertainment center
  2035. config BR2_PACKAGE_XBMC_LIBBLURAY
  2036. bool "xbmc options have been renamed"
  2037. select BR2_LEGACY
  2038. select BR2_PACKAGE_KODI_LIBBLURAY
  2039. help
  2040. The XBMC media center project was renamed to Kodi
  2041. entertainment center
  2042. config BR2_PACKAGE_XBMC_GOOM
  2043. bool "xbmc options have been renamed"
  2044. select BR2_LEGACY
  2045. select BR2_PACKAGE_KODI_GOOM
  2046. help
  2047. The XBMC media center project was renamed to Kodi
  2048. entertainment center
  2049. config BR2_PACKAGE_XBMC_RSXS
  2050. bool "xbmc options have been renamed"
  2051. select BR2_LEGACY
  2052. select BR2_PACKAGE_KODI_RSXS
  2053. help
  2054. The XBMC media center project was renamed to Kodi
  2055. entertainment center
  2056. config BR2_PACKAGE_XBMC_LIBCEC
  2057. bool "xbmc options have been renamed"
  2058. select BR2_LEGACY
  2059. select BR2_PACKAGE_KODI_LIBCEC
  2060. help
  2061. The XBMC media center project was renamed to Kodi
  2062. entertainment center
  2063. config BR2_PACKAGE_XBMC_LIBMICROHTTPD
  2064. bool "xbmc options have been renamed"
  2065. select BR2_LEGACY
  2066. select BR2_PACKAGE_KODI_LIBMICROHTTPD
  2067. help
  2068. The XBMC media center project was renamed to Kodi
  2069. entertainment center
  2070. config BR2_PACKAGE_XBMC_LIBNFS
  2071. bool "xbmc options have been renamed"
  2072. select BR2_LEGACY
  2073. select BR2_PACKAGE_KODI_LIBNFS
  2074. help
  2075. The XBMC media center project was renamed to Kodi
  2076. entertainment center
  2077. config BR2_PACKAGE_XBMC_RTMPDUMP
  2078. bool "xbmc options have been renamed"
  2079. select BR2_LEGACY
  2080. select BR2_PACKAGE_KODI_RTMPDUMP
  2081. help
  2082. The XBMC media center project was renamed to Kodi
  2083. entertainment center
  2084. config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
  2085. bool "xbmc options have been renamed"
  2086. select BR2_LEGACY
  2087. select BR2_PACKAGE_KODI_LIBSHAIRPLAY
  2088. help
  2089. The XBMC media center project was renamed to Kodi
  2090. entertainment center
  2091. config BR2_PACKAGE_XBMC_LIBSMBCLIENT
  2092. bool "xbmc options have been renamed"
  2093. select BR2_LEGACY
  2094. select BR2_PACKAGE_KODI_LIBSMBCLIENT
  2095. help
  2096. The XBMC media center project was renamed to Kodi
  2097. entertainment center
  2098. config BR2_PACKAGE_XBMC_LIBTHEORA
  2099. bool "xbmc options have been renamed"
  2100. select BR2_LEGACY
  2101. select BR2_PACKAGE_KODI_LIBTHEORA
  2102. help
  2103. The XBMC media center project was renamed to Kodi
  2104. entertainment center
  2105. config BR2_PACKAGE_XBMC_LIBUSB
  2106. bool "xbmc options have been renamed"
  2107. select BR2_LEGACY
  2108. select BR2_PACKAGE_KODI_LIBUSB
  2109. help
  2110. The XBMC media center project was renamed to Kodi
  2111. entertainment center
  2112. config BR2_PACKAGE_XBMC_LIBVA
  2113. bool "xbmc options have been renamed"
  2114. select BR2_LEGACY
  2115. select BR2_PACKAGE_KODI_LIBVA
  2116. help
  2117. The XBMC media center project was renamed to Kodi
  2118. entertainment center
  2119. config BR2_PACKAGE_XBMC_WAVPACK
  2120. bool "xbmc options have been renamed"
  2121. select BR2_LEGACY
  2122. select BR2_PACKAGE_KODI_WAVPACK
  2123. help
  2124. The XBMC media center project was renamed to Kodi
  2125. entertainment center
  2126. config BR2_PREFER_STATIC_LIB
  2127. bool "static library option renamed"
  2128. select BR2_LEGACY
  2129. help
  2130. The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
  2131. highlights the fact that the option no longer "prefers"
  2132. static libraries, but "enforces" static libraries (i.e
  2133. shared libraries are completely unused).
  2134. Take care of updating the type of libraries you want under the
  2135. "Build options" menu.
  2136. ###############################################################################
  2137. comment "Legacy options removed in 2014.11"
  2138. config BR2_x86_generic
  2139. bool "x86 generic variant has been removed"
  2140. select BR2_LEGACY
  2141. help
  2142. The generic x86 CPU variant has been removed. Use another
  2143. CPU variant instead.
  2144. config BR2_GCC_VERSION_4_4_X
  2145. bool "gcc 4.4.x has been removed"
  2146. select BR2_LEGACY
  2147. help
  2148. The 4.4.x version of gcc has been removed. Use a newer
  2149. version instead.
  2150. config BR2_sparc_sparchfleon
  2151. bool "sparchfleon CPU has been removed"
  2152. select BR2_LEGACY
  2153. help
  2154. The sparchfleon CPU was only supported in a patched gcc 4.4
  2155. version. Its support has been removed in favor of the leon3
  2156. CPU starting from gcc 4.8.x.
  2157. config BR2_sparc_sparchfleonv8
  2158. bool "sparchfleonv8 CPU has been removed"
  2159. select BR2_LEGACY
  2160. help
  2161. The sparchfleonv8 CPU was only supported in a patched gcc
  2162. 4.4 version. Its support has been removed in favor of the
  2163. leon3 CPU starting from gcc 4.8.x.
  2164. config BR2_sparc_sparcsfleon
  2165. bool "sparcsfleon CPU has been removed"
  2166. select BR2_LEGACY
  2167. help
  2168. The sparcsfleon CPU was only supported in a patched gcc 4.4
  2169. version. Its support has been removed in favor of the leon3
  2170. CPU starting from gcc 4.8.x.
  2171. config BR2_sparc_sparcsfleonv8
  2172. bool "sparcsfleonv8 CPU has been removed"
  2173. select BR2_LEGACY
  2174. help
  2175. The sparcsfleonv8 CPU was only supported in a patched gcc
  2176. 4.4 version. Its support has been removed in favor of the
  2177. leon3 CPU starting from gcc 4.8.x.
  2178. config BR2_PACKAGE_XLIB_LIBPCIACCESS
  2179. bool "xlib-libpciaccess option has been renamed"
  2180. depends on BR2_PACKAGE_XORG7
  2181. select BR2_LEGACY
  2182. select BR2_PACKAGE_LIBPCIACCESS
  2183. help
  2184. libpciaccess neither depends on X11 nor Xlib. Thus the
  2185. package has been renamed BR2_PACKAGE_LIBPCIACCESS
  2186. config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
  2187. bool "Xceive xc5000 option has been renamed"
  2188. select BR2_LEGACY
  2189. select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
  2190. help
  2191. The Xceive xc5000 option now also handles older firmwares from
  2192. Xceive (the xc4000 series), as well as new firmwares (the
  2193. xc5000c) from Cresta, who bought Xceive.
  2194. config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
  2195. bool "Chelsio T4 option has been renamed"
  2196. select BR2_LEGACY
  2197. select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
  2198. help
  2199. The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
  2200. has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
  2201. to better account for the fact that a T5 variant exists.
  2202. config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
  2203. bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
  2204. select BR2_LEGACY
  2205. help
  2206. The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
  2207. renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
  2208. select it in:
  2209. Target packages -> Hardware handling ->
  2210. Firmware -> linux-firmware -> WiFi firmware ->
  2211. iwlwifi 3160/726x revision to use (revision 7)
  2212. config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
  2213. bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
  2214. select BR2_LEGACY
  2215. help
  2216. The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
  2217. renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
  2218. select it in:
  2219. Target packages -> Hardware handling ->
  2220. Firmware -> linux-firmware -> WiFi firmware ->
  2221. iwlwifi 3160/726x revision to use (revision 8)
  2222. ###############################################################################
  2223. comment "Legacy options removed in 2014.08"
  2224. config BR2_PACKAGE_LIBELF
  2225. bool "libelf has been removed"
  2226. select BR2_PACKAGE_ELFUTILS
  2227. select BR2_LEGACY
  2228. help
  2229. The libelf package provided an old version of the libelf
  2230. library and is deprecated. The libelf library is now provided
  2231. by the elfutils package.
  2232. config BR2_KERNEL_HEADERS_3_8
  2233. bool "kernel headers version 3.8.x are no longer supported"
  2234. select BR2_KERNEL_HEADERS_3_4
  2235. select BR2_LEGACY
  2236. help
  2237. Version 3.8.x of the Linux kernel headers have been deprecated
  2238. for more than four buildroot releases and are now removed.
  2239. As an alternative, version 3.4.x of the headers have been
  2240. automatically selected in your configuration.
  2241. config BR2_PACKAGE_GETTEXT_TOOLS
  2242. bool "support for gettext-tools on target has been removed"
  2243. select BR2_LEGACY
  2244. help
  2245. The option to install the gettext utilities on the target
  2246. has been removed. This is not necessary as Buildroot is not
  2247. designed to provide a full development environment on the
  2248. target. gettext tools should be used on the build machine
  2249. instead.
  2250. config BR2_PACKAGE_PROCPS
  2251. bool "procps has been replaced by procps-ng"
  2252. select BR2_PACKAGE_PROCPS_NG
  2253. select BR2_LEGACY
  2254. help
  2255. The procps package has been replaced by the equivalent
  2256. procps-ng.
  2257. config BR2_BINUTILS_VERSION_2_20_1
  2258. bool "binutils 2.20.1 has been removed"
  2259. select BR2_LEGACY
  2260. help
  2261. The 2.20.1 version of binutils has been removed. Use a newer
  2262. version instead.
  2263. config BR2_BINUTILS_VERSION_2_21
  2264. bool "binutils 2.21 has been removed"
  2265. select BR2_LEGACY
  2266. help
  2267. The 2.21 version of binutils has been removed. Use a newer
  2268. version instead.
  2269. config BR2_BINUTILS_VERSION_2_23_1
  2270. bool "binutils 2.23.1 has been removed"
  2271. select BR2_LEGACY
  2272. help
  2273. The 2.23.1 version of binutils has been removed. Use a newer
  2274. version instead.
  2275. config BR2_UCLIBC_VERSION_0_9_32
  2276. bool "uclibc 0.9.32 has been removed"
  2277. select BR2_LEGACY
  2278. help
  2279. The 0.9.32 version of uClibc has been removed. Use a newer
  2280. version instead.
  2281. config BR2_GCC_VERSION_4_3_X
  2282. bool "gcc 4.3.x has been removed"
  2283. select BR2_LEGACY
  2284. help
  2285. The 4.3.x version of gcc has been removed. Use a newer
  2286. version instead.
  2287. config BR2_GCC_VERSION_4_6_X
  2288. bool "gcc 4.6.x has been removed"
  2289. select BR2_LEGACY
  2290. help
  2291. The 4.6.x version of gcc has been removed. Use a newer
  2292. version instead.
  2293. config BR2_GDB_VERSION_7_4
  2294. bool "gdb 7.4 has been removed"
  2295. select BR2_LEGACY
  2296. help
  2297. The 7.4 version of gdb has been removed. Use a newer version
  2298. instead.
  2299. config BR2_GDB_VERSION_7_5
  2300. bool "gdb 7.5 has been removed"
  2301. select BR2_LEGACY
  2302. help
  2303. The 7.5 version of gdb has been removed. Use a newer version
  2304. instead.
  2305. config BR2_BUSYBOX_VERSION_1_19_X
  2306. bool "busybox version selection has been removed"
  2307. select BR2_LEGACY
  2308. help
  2309. The possibility of selecting the Busybox version has been
  2310. removed. Use the latest version provided by the Busybox
  2311. package instead.
  2312. config BR2_BUSYBOX_VERSION_1_20_X
  2313. bool "busybox version selection has been removed"
  2314. select BR2_LEGACY
  2315. help
  2316. The possibility of selecting the Busybox version has been
  2317. removed. Use the latest version provided by the Busybox
  2318. package instead.
  2319. config BR2_BUSYBOX_VERSION_1_21_X
  2320. bool "busybox version selection has been removed"
  2321. select BR2_LEGACY
  2322. help
  2323. The possibility of selecting the Busybox version has been
  2324. removed. Use the latest version provided by the Busybox
  2325. package instead.
  2326. config BR2_PACKAGE_LIBV4L_DECODE_TM6000
  2327. bool "decode_tm6000"
  2328. select BR2_PACKAGE_LIBV4L_UTILS
  2329. select BR2_LEGACY
  2330. help
  2331. This libv4l option has been deprecated and replaced by a
  2332. single option to build all the libv4l utilities.
  2333. config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
  2334. bool "ir-keytable"
  2335. select BR2_PACKAGE_LIBV4L_UTILS
  2336. select BR2_LEGACY
  2337. help
  2338. This libv4l option has been deprecated and replaced by a
  2339. single option to build all the libv4l utilities.
  2340. config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
  2341. bool "v4l2-compliance"
  2342. select BR2_PACKAGE_LIBV4L_UTILS
  2343. select BR2_LEGACY
  2344. help
  2345. This libv4l option has been deprecated and replaced by a
  2346. single option to build all the libv4l utilities.
  2347. config BR2_PACKAGE_LIBV4L_V4L2_CTL
  2348. bool "v4l2-ctl"
  2349. select BR2_PACKAGE_LIBV4L_UTILS
  2350. select BR2_LEGACY
  2351. help
  2352. This libv4l option has been deprecated and replaced by a
  2353. single option to build all the libv4l utilities.
  2354. config BR2_PACKAGE_LIBV4L_V4L2_DBG
  2355. bool "v4l2-dbg"
  2356. select BR2_PACKAGE_LIBV4L_UTILS
  2357. select BR2_LEGACY
  2358. help
  2359. This libv4l option has been deprecated and replaced by a
  2360. single option to build all the libv4l utilities.
  2361. ###############################################################################
  2362. comment "Legacy options removed in 2014.05"
  2363. config BR2_PACKAGE_EVTEST_CAPTURE
  2364. bool "evtest-capture support removed (dropped since evtest 1.31)"
  2365. select BR2_LEGACY
  2366. help
  2367. Support for evtest-capture has been removed (dropped from
  2368. evtest package since version 1.31), use evemu package
  2369. instead.
  2370. config BR2_KERNEL_HEADERS_3_6
  2371. bool "kernel headers version 3.6.x are no longer supported"
  2372. select BR2_KERNEL_HEADERS_3_4
  2373. select BR2_LEGACY
  2374. help
  2375. Version 3.6.x of the Linux kernel headers have been deprecated
  2376. for more than four buildroot releases and are now removed.
  2377. As an alternative, version 3.4.x of the headers have been
  2378. automatically selected in your configuration.
  2379. config BR2_KERNEL_HEADERS_3_7
  2380. bool "kernel headers version 3.7.x are no longer supported"
  2381. select BR2_KERNEL_HEADERS_3_4
  2382. select BR2_LEGACY
  2383. help
  2384. Version 3.7.x of the Linux kernel headers have been deprecated
  2385. for more than four buildroot releases and are now removed.
  2386. As an alternative, version 3.4.x of the headers have been
  2387. automatically selected in your configuration.
  2388. config BR2_PACKAGE_VALA
  2389. bool "vala target package has been removed"
  2390. select BR2_LEGACY
  2391. help
  2392. The 'vala' target package has been removed since it has been
  2393. deprecated for more than four buildroot releases.
  2394. Note: the host vala package still exists.
  2395. config BR2_TARGET_TZ_ZONELIST
  2396. default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
  2397. config BR2_PACKAGE_TZDATA_ZONELIST
  2398. string "tzdata: the timezone list option has been renamed"
  2399. help
  2400. The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
  2401. BR2_TARGET_TZ_ZONELIST, and moved to the "System
  2402. configuration" menu. You'll need to select BR2_TARGET_TZ_INFO.
  2403. config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
  2404. bool
  2405. default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
  2406. select BR2_LEGACY
  2407. config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
  2408. bool "Lua command-line editing none has been renamed"
  2409. select BR2_LEGACY
  2410. help
  2411. The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
  2412. renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to
  2413. select it in the corresponding choice.
  2414. config BR2_PACKAGE_LUA_INTERPRETER_READLINE
  2415. bool "Lua command-line editing using readline has been renamed"
  2416. select BR2_LEGACY
  2417. help
  2418. The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
  2419. renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
  2420. it in the corresponding choice.
  2421. config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
  2422. bool "Lua command-line editing using linenoise has been renamed"
  2423. select BR2_LEGACY
  2424. help
  2425. The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
  2426. renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
  2427. it in the corresponding choice.
  2428. config BR2_PACKAGE_DVB_APPS_UTILS
  2429. bool "dvb-apps utilities now built by default"
  2430. select BR2_LEGACY
  2431. help
  2432. The dvb-apps utilities are now always built when the dvb-apps
  2433. package is selected.
  2434. config BR2_KERNEL_HEADERS_SNAP
  2435. bool "Local Linux snapshot support removed"
  2436. select BR2_LEGACY
  2437. help
  2438. Support for using a custom snapshot to install the Linux
  2439. kernel headers has been removed.
  2440. config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
  2441. bool "/dev management by udev removed"
  2442. select BR2_LEGACY
  2443. help
  2444. The 'udev' package has been converted to a virtual package.
  2445. The providers for this feature are: 'eudev', 'systemd'.
  2446. Therefore, if you are not using 'systemd' as init system, you
  2447. must choose 'Dynamic using eudev' in the '/dev management'
  2448. menu to get the same behaviour as in your old configuration.
  2449. If you are using 'systemd', its internal implementation of
  2450. 'udev' will be used automatically.
  2451. You must also check the packages depending on 'udev' are still
  2452. selected.
  2453. config BR2_PACKAGE_UDEV
  2454. bool "udev is now a virtual package"
  2455. select BR2_LEGACY
  2456. select BR2_PACKAGE_HAS_UDEV
  2457. help
  2458. The 'udev' package has been converted to a virtual package.
  2459. The providers for this feature are: 'eudev', 'systemd'.
  2460. Your old configuration refers to packages depending on 'udev',
  2461. either for build or at runtime.
  2462. Check that a 'udev' provider is selected. If you are not using
  2463. 'systemd' as init system, 'eudev' should be selected, which is
  2464. the case if '/dev management' is set to 'Dynamic using eudev'.
  2465. If you are using 'systemd', its internal implementation of
  2466. 'udev' is used.
  2467. config BR2_PACKAGE_UDEV_RULES_GEN
  2468. bool "udev rules generation handled by provider"
  2469. select BR2_LEGACY
  2470. select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
  2471. select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
  2472. help
  2473. The 'udev' package has been converted to a virtual package.
  2474. The providers for this feature are: 'eudev', 'systemd'.
  2475. If you are not using 'systemd' as init system, udev rules
  2476. generation will be handled by 'eudev'. Check that
  2477. '/dev management' is set to 'Dynamic using eudev' to get
  2478. the same behaviour as in your old configuration.
  2479. If you are using 'systemd', it internal implementation of
  2480. 'udev' will generate the rules.
  2481. config BR2_PACKAGE_UDEV_ALL_EXTRAS
  2482. bool "udev extras removed"
  2483. select BR2_LEGACY
  2484. help
  2485. The 'udev' package has been converted to a virtual package.
  2486. The providers for this feature are: 'eudev', 'systemd'.
  2487. The option to enable the extra features of 'udev' (gudev, ...)
  2488. has been removed. These features are automatically enabled in
  2489. the 'udev' providers if the dependencies are selected. For
  2490. example, selecting 'libglib2' will trigger the build of gudev.
  2491. config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
  2492. bool "xlib-libpthread-stubs option has been renamed"
  2493. depends on BR2_PACKAGE_XORG7
  2494. select BR2_LEGACY
  2495. select BR2_PACKAGE_LIBPTHREAD_STUBS
  2496. help
  2497. The pthread stubs neither depend on X11 nor Xlib. Thus the
  2498. package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
  2499. ###############################################################################
  2500. comment "Legacy options removed in 2014.02"
  2501. config BR2_sh2
  2502. bool "sh2 support removed"
  2503. select BR2_LEGACY
  2504. help
  2505. Due to an inexistent user base and generally poor Linux
  2506. support, the support for the SH2 architecture was removed.
  2507. config BR2_sh3
  2508. bool "sh3 support removed"
  2509. select BR2_LEGACY
  2510. help
  2511. Due to an inexistent user base and generally poor Linux
  2512. support, the support for the SH3 architecture was removed.
  2513. config BR2_sh3eb
  2514. bool "sh3eb support removed"
  2515. select BR2_LEGACY
  2516. help
  2517. Due to an inexistent user base and generally poor Linux
  2518. support, the support for the SH3eb architecture was removed.
  2519. config BR2_KERNEL_HEADERS_3_1
  2520. bool "kernel headers version 3.1.x are no longer supported"
  2521. select BR2_KERNEL_HEADERS_3_2
  2522. select BR2_LEGACY
  2523. help
  2524. Version 3.1.x of the Linux kernel headers have been deprecated
  2525. for more than four buildroot releases and are now removed.
  2526. As an alternative, version 3.2.x of the headers have been
  2527. automatically selected in your configuration.
  2528. config BR2_KERNEL_HEADERS_3_3
  2529. bool "kernel headers version 3.3.x are no longer supported"
  2530. select BR2_KERNEL_HEADERS_3_2
  2531. select BR2_LEGACY
  2532. help
  2533. Version 3.3.x of the Linux kernel headers have been deprecated
  2534. for more than four buildroot releases and are now removed.
  2535. As an alternative, version 3.2.x of the headers have been
  2536. automatically selected in your configuration.
  2537. config BR2_KERNEL_HEADERS_3_5
  2538. bool "kernel headers version 3.5.x are no longer supported"
  2539. select BR2_KERNEL_HEADERS_3_4
  2540. select BR2_LEGACY
  2541. help
  2542. Version 3.5.x of the Linux kernel headers have been deprecated
  2543. for more than four buildroot releases and are now removed.
  2544. As an alternative, version 3.4.x of the headers have been
  2545. automatically selected in your configuration.
  2546. config BR2_GDB_VERSION_7_2
  2547. bool "gdb 7.2.x is no longer supported"
  2548. select BR2_GDB_VERSION_7_6
  2549. select BR2_LEGACY
  2550. help
  2551. Version 7.2.x of gdb has been deprecated for more than four
  2552. buildroot releases and is now removed. As an alternative, gdb
  2553. 7.5.x has been automatically selected in your configuration.
  2554. config BR2_GDB_VERSION_7_3
  2555. bool "gdb 7.3.x is no longer supported"
  2556. select BR2_GDB_VERSION_7_6
  2557. select BR2_LEGACY
  2558. help
  2559. Version 7.3.x of gdb has been deprecated for more than four
  2560. buildroot releases and is now removed. As an alternative, gdb
  2561. 7.5.x has been automatically selected in your configuration.
  2562. config BR2_PACKAGE_CCACHE
  2563. bool "ccache target package has been removed"
  2564. select BR2_LEGACY
  2565. help
  2566. The 'ccache' target package has been removed since it has been
  2567. deprecated for more than four buildroot releases.
  2568. Note: using ccache for speeding up builds is still supported.
  2569. config BR2_HAVE_DOCUMENTATION
  2570. bool "support for documentation on target has been removed"
  2571. select BR2_LEGACY
  2572. help
  2573. Support for documentation on target has been removed since it
  2574. has been deprecated for more than four buildroot releases.
  2575. config BR2_PACKAGE_AUTOMAKE
  2576. bool "automake target package has been removed"
  2577. select BR2_LEGACY
  2578. help
  2579. The 'automake' target package has been removed since it has
  2580. been deprecated for more than four buildroot releases.
  2581. Note: the host automake still exists.
  2582. config BR2_PACKAGE_AUTOCONF
  2583. bool "autoconf target package has been removed"
  2584. select BR2_LEGACY
  2585. help
  2586. The 'autoconf' target package has been removed since it has
  2587. been deprecated for more than four buildroot releases.
  2588. Note: the host autoconf still exists.
  2589. config BR2_PACKAGE_XSTROKE
  2590. bool "xstroke has been removed"
  2591. select BR2_LEGACY
  2592. help
  2593. The 'xstroke' package has been removed since it has been
  2594. deprecated for more than four buildroot releases.
  2595. config BR2_PACKAGE_LZMA
  2596. bool "lzma target package has been removed"
  2597. select BR2_LEGACY
  2598. help
  2599. The 'lzma' target package has been removed since it has been
  2600. deprecated for more than four buildroot releases.
  2601. Note: generating lzma-compressed rootfs images is still
  2602. supported.
  2603. config BR2_PACKAGE_TTCP
  2604. bool "ttcp has been removed"
  2605. select BR2_LEGACY
  2606. help
  2607. The 'ttcp' package has been removed since it has been
  2608. deprecated for more than four buildroot releases.
  2609. config BR2_PACKAGE_LIBNFC_LLCP
  2610. bool "libnfc-llcp has been replaced by libllcp"
  2611. select BR2_LEGACY
  2612. select BR2_PACKAGE_LIBLLCP
  2613. help
  2614. The 'libnfc-llcp' package has been removed since upstream
  2615. renamed to 'libllcp'. We have added a new package for
  2616. 'libllcp' and bumped the version at the same time.
  2617. config BR2_PACKAGE_MYSQL_CLIENT
  2618. bool "MySQL client renamed to MySQL"
  2619. select BR2_LEGACY
  2620. select BR2_PACKAGE_MYSQL
  2621. help
  2622. The option has been renamed BR2_PACKAGE_MYSQL
  2623. config BR2_PACKAGE_SQUASHFS3
  2624. bool "squashfs3 has been removed"
  2625. select BR2_LEGACY
  2626. select BR2_PACKAGE_SQUASHFS
  2627. help
  2628. The 'squashfs3' package has been removed since it has been
  2629. deprecated for more than four buildroot releases. Package
  2630. 'squashfs' (4) has been selected automatically as replacement.
  2631. config BR2_TARGET_ROOTFS_SQUASHFS3
  2632. bool "squashfs3 rootfs support has been removed"
  2633. select BR2_LEGACY
  2634. help
  2635. Together with the removal of the squashfs3 package, support
  2636. for squashfs3 root filesystems has been removed too. Squashfs
  2637. root filesystems will automatically use squashfs4 now.
  2638. config BR2_PACKAGE_NETKITBASE
  2639. bool "netkitbase has been removed"
  2640. select BR2_LEGACY
  2641. help
  2642. The 'netkitbase' package has been removed since it has been
  2643. deprecated since 2012.11. This package provided 'inetd'
  2644. which is replaced by 'xinet' and 'ping' which is replaced by
  2645. 'busybox' or 'fping'.
  2646. config BR2_PACKAGE_NETKITTELNET
  2647. bool "netkittelnet has been removed"
  2648. select BR2_LEGACY
  2649. help
  2650. The 'netkittelnet' package has been removed since it has
  2651. been deprecated since 2012.11. 'busybox' provides a telnet
  2652. client and should be used instead.
  2653. config BR2_PACKAGE_LUASQL
  2654. bool "luasql has been replaced by luasql-sqlite3"
  2655. select BR2_PACKAGE_LUASQL_SQLITE3
  2656. select BR2_LEGACY
  2657. help
  2658. The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
  2659. config BR2_PACKAGE_LUACJSON
  2660. bool "luacjson has been replaced by lua-cjson"
  2661. select BR2_PACKAGE_LUA_CJSON
  2662. select BR2_LEGACY
  2663. help
  2664. The option has been renamed BR2_PACKAGE_LUA_CJSON.
  2665. ###############################################################################
  2666. comment "Legacy options removed in 2013.11"
  2667. config BR2_PACKAGE_LVM2_DMSETUP_ONLY
  2668. bool "lvm2's 'dmsetup only' option removed"
  2669. select BR2_LEGACY
  2670. help
  2671. The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
  2672. led to problems with other packages that need the full lvm2
  2673. suite. Therefore, the option has been replaced with the
  2674. positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
  2675. # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
  2676. # in order to automatically propagate old configs
  2677. config BR2_PACKAGE_QT_JAVASCRIPTCORE
  2678. bool "qt javascriptcore option removed"
  2679. select BR2_LEGACY
  2680. help
  2681. The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
  2682. force the activation or disabling of the JIT compiler in the
  2683. Qt Javascript interpreter. However, the JIT compiler is not
  2684. available for all architectures, so forcing its activation
  2685. does not always work. Moreover, Qt knows by itself for which
  2686. architectures JIT support is possible, and will
  2687. automatically enable it if possible.
  2688. Therefore, this option was in fact useless, and causing
  2689. build problems when enabled on architectures for which the
  2690. JIT support was not available. It has been removed, and
  2691. there is no replacement: Qt will enable JIT at compile time
  2692. when possible.
  2693. config BR2_PACKAGE_MODULE_INIT_TOOLS
  2694. bool "module-init-tools replaced by kmod"
  2695. select BR2_PACKAGE_KMOD
  2696. select BR2_PACKAGE_KMOD_TOOLS
  2697. select BR2_LEGACY
  2698. help
  2699. The 'module-init-tools' package has been removed, since it
  2700. has been depracated upstream and replaced by 'kmod'.
  2701. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
  2702. string "u-boot: the git repository URL option has been renamed"
  2703. help
  2704. The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
  2705. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
  2706. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
  2707. bool
  2708. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
  2709. select BR2_LEGACY
  2710. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
  2711. # boot/uboot/Config.in
  2712. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
  2713. string "u-boot: the git repository version option has been renamed"
  2714. help
  2715. The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
  2716. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
  2717. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
  2718. bool
  2719. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
  2720. select BR2_LEGACY
  2721. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
  2722. # boot/uboot/Config.in
  2723. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
  2724. string "linux: the git repository URL option has been renamed"
  2725. help
  2726. The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
  2727. been renamed to
  2728. BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
  2729. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
  2730. bool
  2731. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
  2732. select BR2_LEGACY
  2733. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
  2734. # linux/Config.in
  2735. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
  2736. string "linux: the git repository version option has been renamed"
  2737. help
  2738. The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
  2739. been renamed to
  2740. BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
  2741. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
  2742. bool
  2743. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
  2744. select BR2_LEGACY
  2745. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
  2746. # linux/Config.in
  2747. ###############################################################################
  2748. comment "Legacy options removed in 2013.08"
  2749. config BR2_ARM_OABI
  2750. bool "ARM OABI support has been removed"
  2751. select BR2_LEGACY
  2752. help
  2753. The support for the ARM OABI was deprecated since a while,
  2754. and has been removed completely from Buildroot. It is also
  2755. deprecated in upstream gcc, since gcc 4.7. People should
  2756. switch to EABI instead, which should not be a problem as
  2757. long as you don't have pre-built OABI binaries in your
  2758. system that you can't recompile.
  2759. config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
  2760. bool "dosfstools dosfsck renamed to fsck.fat"
  2761. select BR2_LEGACY
  2762. select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
  2763. help
  2764. dosfsck was renamed upstream to fsck.fat for consistency.
  2765. config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
  2766. bool "dosfstools dosfslabel renamed to fatlabel"
  2767. select BR2_LEGACY
  2768. select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
  2769. help
  2770. doslabel was renamed upstream to fatlabel for consistency.
  2771. config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
  2772. bool "dosfstools mkdosfs renamed to mkfs.fat"
  2773. select BR2_LEGACY
  2774. select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
  2775. help
  2776. mkdosfs was renamed upstream to mkfs.fat for consistency.
  2777. config BR2_ELF2FLT
  2778. bool "the elf2flt option has been renamed"
  2779. select BR2_LEGACY
  2780. help
  2781. The BR2_ELF2FLT option has been renamed to
  2782. BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
  2783. the package infrastructure.
  2784. config BR2_VFP_FLOAT
  2785. bool "the ARM VFP floating point option has been renamed"
  2786. select BR2_LEGACY
  2787. help
  2788. Due to a major refactoring of the floating-point handling of
  2789. the ARM architecture support, the BR2_VFP_FLOAT option has
  2790. been replaced with a choice of options that allows to select
  2791. between various VFP versions/capabilities.
  2792. config BR2_PACKAGE_GCC_TARGET
  2793. bool "gcc on the target filesystem has been removed"
  2794. select BR2_LEGACY
  2795. help
  2796. The support for gcc in the target filesystem was deprecated
  2797. since a while, and has been removed completely from Buildroot.
  2798. See Buildroot's documentation for more explanations.
  2799. config BR2_HAVE_DEVFILES
  2800. bool "development files in target filesystem has been removed"
  2801. select BR2_LEGACY
  2802. help
  2803. The installation of the development files in the target
  2804. filesystem was deprecated since a while, and has been removed
  2805. completely from Buildroot.
  2806. See Buildroot's documentation for more explanations.
  2807. endmenu
  2808. endif # !SKIP_LEGACY