Config.in.legacy 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134
  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 2019.02"
  140. config BR2_PACKAGE_LUA_5_2
  141. bool "Lua 5.2.x version removed"
  142. select BR2_LEGACY
  143. select BR2_PACKAGE_LUA_5_3
  144. help
  145. The Lua 5.2.x version was removed.
  146. config BR2_TARGET_GENERIC_PASSWD_MD5
  147. bool "target passwd md5 format support has been removed"
  148. select BR2_LEGACY
  149. help
  150. The default has been moved to SHA256 and all C libraries
  151. now support that method by default
  152. comment "Legacy options removed in 2018.11"
  153. config BR2_TARGET_XLOADER
  154. bool "xloader has been removed"
  155. select BR2_LEGACY
  156. help
  157. The package has been removed as u-boot SPL provides
  158. similar functionality
  159. config BR2_PACKAGE_TIDSP_BINARIES
  160. bool "tidsp-binaries package removed"
  161. select BR2_LEGACY
  162. help
  163. The tidsp-binaries package was removed.
  164. config BR2_PACKAGE_DSP_TOOLS
  165. bool "dsp-tools package removed"
  166. select BR2_LEGACY
  167. help
  168. The dsp-tools package was removed.
  169. config BR2_PACKAGE_GST_DSP
  170. bool "gst-dsp package removed"
  171. select BR2_LEGACY
  172. help
  173. The gst-dsp package was removed.
  174. config BR2_PACKAGE_BOOTUTILS
  175. bool "bootutils package removed"
  176. select BR2_LEGACY
  177. help
  178. The bootutils package was removed.
  179. config BR2_PACKAGE_EXPEDITE
  180. bool "expedite package has been removed"
  181. select BR2_LEGACY
  182. help
  183. expedite is not actively maintained anymore.
  184. https://sourceforge.net/p/enlightenment/mailman/message/36428571
  185. config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT
  186. bool "mesa3d opengl texture float option removed"
  187. select BR2_LEGACY
  188. help
  189. mesa3d now unconditionally enables floating-point textures,
  190. as the corresponding patent has expired.
  191. config BR2_KERNEL_HEADERS_4_10
  192. bool "kernel headers version 4.10.x are no longer supported"
  193. select BR2_LEGACY
  194. help
  195. Version 4.10.x of the Linux kernel headers are no longer
  196. maintained upstream and are now removed.
  197. config BR2_KERNEL_HEADERS_4_11
  198. bool "kernel headers version 4.11.x are no longer supported"
  199. select BR2_LEGACY
  200. help
  201. Version 4.11.x of the Linux kernel headers are no longer
  202. maintained upstream and are now removed.
  203. config BR2_KERNEL_HEADERS_4_12
  204. bool "kernel headers version 4.12.x are no longer supported"
  205. select BR2_LEGACY
  206. help
  207. Version 4.12.x of the Linux kernel headers are no longer
  208. maintained upstream and are now removed.
  209. config BR2_KERNEL_HEADERS_4_13
  210. bool "kernel headers version 4.13.x are no longer supported"
  211. select BR2_LEGACY
  212. help
  213. Version 4.13.x of the Linux kernel headers are no longer
  214. maintained upstream and are now removed.
  215. config BR2_KERNEL_HEADERS_4_15
  216. bool "kernel headers version 4.15.x are no longer supported"
  217. select BR2_LEGACY
  218. help
  219. Version 4.15.x of the Linux kernel headers are no longer
  220. maintained upstream and are now removed.
  221. config BR2_KERNEL_HEADERS_4_17
  222. bool "kernel headers version 4.17.x are no longer supported"
  223. select BR2_LEGACY
  224. help
  225. Version 4.17.x of the Linux kernel headers are no longer
  226. maintained upstream and are now removed.
  227. config BR2_PACKAGE_LIBNFTNL_XML
  228. bool "libnftl no longer supports XML output"
  229. select BR2_LEGACY
  230. help
  231. libnftnl removed integration with libmxml.
  232. config BR2_KERNEL_HEADERS_3_2
  233. bool "kernel headers version 3.2.x are no longer supported"
  234. select BR2_LEGACY
  235. help
  236. Version 3.2.x of the Linux kernel headers are no longer
  237. maintained upstream and are now removed.
  238. config BR2_KERNEL_HEADERS_4_1
  239. bool "kernel headers version 4.1.x are no longer supported"
  240. select BR2_LEGACY
  241. help
  242. Version 4.1.x of the Linux kernel headers are no longer
  243. maintained upstream and are now removed.
  244. config BR2_KERNEL_HEADERS_4_16
  245. bool "kernel headers version 4.16.x are no longer supported"
  246. select BR2_LEGACY
  247. help
  248. Version 4.16.x of the Linux kernel headers are no longer
  249. maintained upstream and are now removed.
  250. config BR2_KERNEL_HEADERS_4_18
  251. bool "kernel headers version 4.18.x are no longer supported"
  252. select BR2_LEGACY
  253. help
  254. Version 4.18.x of the Linux kernel headers are no longer
  255. maintained upstream and are now removed.
  256. ###############################################################################
  257. comment "Legacy options removed in 2018.08"
  258. config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT
  259. bool "docker-engine static client option renamed"
  260. select BR2_LEGACY
  261. select BR2_PACKAGE_DOCKER_CLI_STATIC
  262. help
  263. BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT has been renamed to
  264. BR2_PACKAGE_DOCKER_CLI_STATIC, following the package split of
  265. docker-engine and docker-cli.
  266. config BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_19
  267. bool "Modular X.org server was updated to version 1.20.0"
  268. select BR2_LEGACY
  269. select BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_20
  270. help
  271. Modular X.org server was updated to version 1.20.0
  272. config BR2_PACKAGE_XPROTO_APPLEWMPROTO
  273. bool "xproto-applewmproto package replaced by xorgproto"
  274. select BR2_LEGACY
  275. select BR2_PACKAGE_XORGPROTO
  276. help
  277. The xproto-applewmproto package has been replaced by the
  278. xorgproto package, which combines all xproto_* packages.
  279. config BR2_PACKAGE_XPROTO_BIGREQSPROTO
  280. bool "xproto-bigreqsproto package replaced by xorgproto"
  281. select BR2_LEGACY
  282. select BR2_PACKAGE_XORGPROTO
  283. help
  284. The xproto-bigreqsproto package has been replaced by the
  285. xorgproto package, which combines all xproto_* packages.
  286. config BR2_PACKAGE_XPROTO_COMPOSITEPROTO
  287. bool "xproto-compositeproto package replaced by xorgproto"
  288. select BR2_LEGACY
  289. select BR2_PACKAGE_XORGPROTO
  290. help
  291. The xproto-compositeproto package has been replaced by the
  292. xorgproto package, which combines all xproto_* packages.
  293. config BR2_PACKAGE_XPROTO_DAMAGEPROTO
  294. bool "xproto-dameproto package replaced by xorgproto"
  295. select BR2_LEGACY
  296. select BR2_PACKAGE_XORGPROTO
  297. help
  298. The xproto-dameproto package has been replaced by the
  299. xorgproto package, which combines all xproto_* packages.
  300. config BR2_PACKAGE_XPROTO_DMXPROTO
  301. bool "xproto-dmxproto package replaced by xorgproto"
  302. select BR2_LEGACY
  303. select BR2_PACKAGE_XORGPROTO
  304. help
  305. The xproto-dmxproto package has been replaced by the
  306. xorgproto package, which combines all xproto_* packages.
  307. config BR2_PACKAGE_XPROTO_DRI2PROTO
  308. bool "xproto-dri2proto package replaced by xorgproto"
  309. select BR2_LEGACY
  310. select BR2_PACKAGE_XORGPROTO
  311. help
  312. The xproto-dri2proto package has been replaced by the
  313. xorgproto package, which combines all xproto_* packages.
  314. config BR2_PACKAGE_XPROTO_DRI3PROTO
  315. bool "xproto-dri3proto package replaced by xorgproto"
  316. select BR2_LEGACY
  317. select BR2_PACKAGE_XORGPROTO
  318. help
  319. The xproto-dri3proto package has been replaced by the
  320. xorgproto package, which combines all xproto_* packages.
  321. config BR2_PACKAGE_XPROTO_FIXESPROTO
  322. bool "xproto-fixesproto package replaced by xorgproto"
  323. select BR2_LEGACY
  324. select BR2_PACKAGE_XORGPROTO
  325. help
  326. The xproto-fixesproto package has been replaced by the
  327. xorgproto package, which combines all xproto_* packages.
  328. config BR2_PACKAGE_XPROTO_FONTCACHEPROTO
  329. bool "xproto-fontcacheproto package replaced by xorgproto"
  330. select BR2_LEGACY
  331. select BR2_PACKAGE_XORGPROTO
  332. help
  333. The xproto-fontcacheproto package has been replaced by the
  334. xorgproto package, which combines all xproto_* packages.
  335. config BR2_PACKAGE_XPROTO_FONTSPROTO
  336. bool "xproto-fontsproto package replaced by xorgproto"
  337. select BR2_LEGACY
  338. select BR2_PACKAGE_XORGPROTO
  339. help
  340. The xproto-fontsproto package has been replaced by the
  341. xorgproto package, which combines all xproto_* packages.
  342. config BR2_PACKAGE_XPROTO_GLPROTO
  343. bool "xproto-glproto package replaced by xorgproto"
  344. select BR2_LEGACY
  345. select BR2_PACKAGE_XORGPROTO
  346. help
  347. The xproto-glproto package has been replaced by the
  348. xorgproto package, which combines all xproto_* packages.
  349. config BR2_PACKAGE_XPROTO_INPUTPROTO
  350. bool "xproto-inputproto package replaced by xorgproto"
  351. select BR2_LEGACY
  352. select BR2_PACKAGE_XORGPROTO
  353. help
  354. The xproto-inputproto package has been replaced by the
  355. xorgproto package, which combines all xproto_* packages.
  356. config BR2_PACKAGE_XPROTO_KBPROTO
  357. bool "xproto-kbproto package replaced by xorgproto"
  358. select BR2_LEGACY
  359. select BR2_PACKAGE_XORGPROTO
  360. help
  361. The xproto-kbproto package has been replaced by the
  362. xorgproto package, which combines all xproto_* packages.
  363. config BR2_PACKAGE_XPROTO_PRESENTPROTO
  364. bool "xproto-presentproto package replaced by xorgproto"
  365. select BR2_LEGACY
  366. select BR2_PACKAGE_XORGPROTO
  367. help
  368. The xproto-presentproto package has been replaced by the
  369. xorgproto package, which combines all xproto_* packages.
  370. config BR2_PACKAGE_XPROTO_RANDRPROTO
  371. bool "xproto-randrproto package replaced by xorgproto"
  372. select BR2_LEGACY
  373. select BR2_PACKAGE_XORGPROTO
  374. help
  375. The xproto-randrproto package has been replaced by the
  376. xorgproto package, which combines all xproto_* packages.
  377. config BR2_PACKAGE_XPROTO_RECORDPROTO
  378. bool "xproto-recordproto package replaced by xorgproto"
  379. select BR2_LEGACY
  380. select BR2_PACKAGE_XORGPROTO
  381. help
  382. The xproto-recordproto package has been replaced by the
  383. xorgproto package, which combines all xproto_* packages.
  384. config BR2_PACKAGE_XPROTO_RENDERPROTO
  385. bool "xproto-renderproto package replaced by xorgproto"
  386. select BR2_LEGACY
  387. select BR2_PACKAGE_XORGPROTO
  388. help
  389. The xproto-renderproto package has been replaced by the
  390. xorgproto package, which combines all xproto_* packages.
  391. config BR2_PACKAGE_XPROTO_RESOURCEPROTO
  392. bool "xproto-resourceproto package replaced by xorgproto"
  393. select BR2_LEGACY
  394. select BR2_PACKAGE_XORGPROTO
  395. help
  396. The xproto-resourceproto package has been replaced by the
  397. xorgproto package, which combines all xproto_* packages.
  398. config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
  399. bool "xproto-scrnsaverprot package replaced by xorgproto"
  400. select BR2_LEGACY
  401. select BR2_PACKAGE_XORGPROTO
  402. help
  403. The xproto-scrnsaverprot package has been replaced by the
  404. xorgproto package, which combines all xproto_* packages.
  405. config BR2_PACKAGE_XPROTO_VIDEOPROTO
  406. bool "xproto-videoproto package replaced by xorgproto"
  407. select BR2_LEGACY
  408. select BR2_PACKAGE_XORGPROTO
  409. help
  410. The xproto-videoproto package has been replaced by the
  411. xorgproto package, which combines all xproto_* packages.
  412. config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO
  413. bool "xproto-windowswmproto package replaced by xorgproto"
  414. select BR2_LEGACY
  415. select BR2_PACKAGE_XORGPROTO
  416. help
  417. The xproto-windowswmproto package has been replaced by the
  418. xorgproto package, which combines all xproto_* packages.
  419. config BR2_PACKAGE_XPROTO_XCMISCPROTO
  420. bool "xproto-xcmiscproto package replaced by xorgproto"
  421. select BR2_LEGACY
  422. select BR2_PACKAGE_XORGPROTO
  423. help
  424. The xproto-xcmiscproto package has been replaced by the
  425. xorgproto package, which combines all xproto_* packages.
  426. config BR2_PACKAGE_XPROTO_XEXTPROTO
  427. bool "xproto-xextproto package replaced by xorgproto"
  428. select BR2_LEGACY
  429. select BR2_PACKAGE_XORGPROTO
  430. help
  431. The xproto-xextproto package has been replaced by the
  432. xorgproto package, which combines all xproto_* packages.
  433. config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
  434. bool "xproto-xf86bigfontproto package replaced by xorgproto"
  435. select BR2_LEGACY
  436. select BR2_PACKAGE_XORGPROTO
  437. help
  438. The xproto-xf86bigfontproto package has been replaced by the
  439. xorgproto package, which combines all xproto_* packages.
  440. config BR2_PACKAGE_XPROTO_XF86DGAPROTO
  441. bool "xproto-xf86dgaproto package replaced by xorgproto"
  442. select BR2_LEGACY
  443. select BR2_PACKAGE_XORGPROTO
  444. help
  445. The xproto-xf86dgaproto package has been replaced by the
  446. xorgproto package, which combines all xproto_* packages.
  447. config BR2_PACKAGE_XPROTO_XF86DRIPROTO
  448. bool "xproto-xf86driproto package replaced by xorgproto"
  449. select BR2_LEGACY
  450. select BR2_PACKAGE_XORGPROTO
  451. help
  452. The xproto-xf86driproto package has been replaced by the
  453. xorgproto package, which combines all xproto_* packages.
  454. config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
  455. bool "xproto-xf86vidmodeproto package replaced by xorgproto"
  456. select BR2_LEGACY
  457. select BR2_PACKAGE_XORGPROTO
  458. help
  459. The xproto-xf86vidmodeproto package has been replaced by the
  460. xorgproto package, which combines all xproto_* packages.
  461. config BR2_PACKAGE_XPROTO_XINERAMAPROTO
  462. bool "xproto-xineramaproto package replaced by xorgproto"
  463. select BR2_LEGACY
  464. select BR2_PACKAGE_XORGPROTO
  465. help
  466. The xproto-xineramaproto package has been replaced by the
  467. xorgproto package, which combines all xproto_* packages.
  468. config BR2_PACKAGE_XPROTO_XPROTO
  469. bool "xproto-xproto package replaced by xorgproto"
  470. select BR2_LEGACY
  471. select BR2_PACKAGE_XORGPROTO
  472. help
  473. The xproto-xproto package has been replaced by the
  474. xorgproto package, which combines all xproto_* packages.
  475. config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
  476. bool "xproto-xproxymanagementprotocol package replaced by xorgproto"
  477. select BR2_LEGACY
  478. select BR2_PACKAGE_XORGPROTO
  479. help
  480. The xproto-xproxymanagementprotocol package has been
  481. replaced by the xorgproto package, which combines all
  482. xproto_* packages.
  483. config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL
  484. bool "gst1-plugins-bad opengl option moved to gst1-plugins-base"
  485. select BR2_LEGACY
  486. select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
  487. help
  488. The opengl option has been moved from gst1-plugins-bad to
  489. gst1-plugins-base.
  490. config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2
  491. bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base"
  492. select BR2_LEGACY
  493. select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2
  494. help
  495. The gles2 option has been moved from gst1-plugins-bad to
  496. gst1-plugins-base.
  497. config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX
  498. bool "gst1-plugins-bad glx option moved to gst1-plugins-base"
  499. select BR2_LEGACY
  500. select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX
  501. help
  502. The glx option has been moved from gst1-plugins-bad to
  503. gst1-plugins-base.
  504. config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL
  505. bool "gst1-plugins-bad egl option moved to gst1-plugins-base"
  506. select BR2_LEGACY
  507. select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL
  508. help
  509. The egl option has been moved from gst1-plugins-bad to
  510. gst1-plugins-base.
  511. config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11
  512. bool "gst1-plugins-bad x11 option moved to gst1-plugins-base"
  513. select BR2_LEGACY
  514. select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11
  515. help
  516. The x11 option has been moved from gst1-plugins-bad to
  517. gst1-plugins-base.
  518. config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND
  519. bool "gst1-plugins-bad wayland option moved to gst1-plugins-base"
  520. select BR2_LEGACY
  521. select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND
  522. help
  523. The wayland option has been moved from gst1-plugins-bad to
  524. gst1-plugins-base.
  525. config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX
  526. bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base"
  527. select BR2_LEGACY
  528. select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX
  529. help
  530. The dispmanx option has been moved from gst1-plugins-mad to
  531. gst1-plugins-base.
  532. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
  533. bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base"
  534. select BR2_LEGACY
  535. select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER
  536. help
  537. The audiomixer option has been moved from gst1-plugins-bad to
  538. gst1-plugins-base.
  539. config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
  540. bool "gst1-plugins-ugly lame option moved to gst1-plugins-good"
  541. select BR2_LEGACY
  542. select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
  543. help
  544. The lame option has been moved from gst1-plugins-ugly to
  545. gst1-plugins-good.
  546. config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
  547. bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good"
  548. select BR2_LEGACY
  549. select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
  550. help
  551. The mpg123 option has been moved from gst1-plugins-ugly to
  552. gst1-plugins-good.
  553. config BR2_GDB_VERSION_7_11
  554. bool "gdb 7.11 has been removed"
  555. select BR2_LEGACY
  556. help
  557. The 7.11 version of gdb has been removed. Use a newer version
  558. instead.
  559. config BR2_GDB_VERSION_7_10
  560. bool "gdb 7.10 has been removed"
  561. select BR2_LEGACY
  562. help
  563. The 7.10 version of gdb has been removed. Use a newer version
  564. instead.
  565. ###############################################################################
  566. comment "Legacy options removed in 2018.05"
  567. config BR2_PACKAGE_MEDIAART_BACKEND_NONE
  568. bool "libmediaart none backend option renamed"
  569. select BR2_LEGACY
  570. help
  571. For consistency reasons, the option
  572. BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to
  573. BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
  574. config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
  575. bool "libmediaart gdk-pixbuf backend option renamed"
  576. select BR2_LEGACY
  577. help
  578. For consistency reasons, the option
  579. BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to
  580. BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF
  581. config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
  582. bool "libmediaart qt backend option renamed"
  583. select BR2_LEGACY
  584. help
  585. For consistency reasons, the option
  586. BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to
  587. BR2_PACKAGE_LIBMEDIAART_BACKEND_QT
  588. # Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from
  589. # package/ti-sgx-km/Config.in
  590. config BR2_PACKAGE_TI_SGX_AM335X
  591. bool "ti-sgx-km AM335X option renamed"
  592. select BR2_LEGACY
  593. help
  594. For consistency reasons, the option
  595. BR2_PACKAGE_TI_SGX_AM335X has been renamed to
  596. BR2_PACKAGE_TI_SGX_KM_AM335X.
  597. # Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from
  598. # package/ti-sgx-km/Config.in
  599. config BR2_PACKAGE_TI_SGX_AM437X
  600. bool "ti-sgx-km AM437X option renamed"
  601. select BR2_LEGACY
  602. help
  603. For consistency reasons, the option
  604. BR2_PACKAGE_TI_SGX_AM437X has been renamed to
  605. BR2_PACKAGE_TI_SGX_KM_AM437X.
  606. # Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from
  607. # package/ti-sgx-km/Config.in
  608. config BR2_PACKAGE_TI_SGX_AM4430
  609. bool "ti-sgx-km AM4430 option renamed"
  610. select BR2_LEGACY
  611. help
  612. For consistency reasons, the option
  613. BR2_PACKAGE_TI_SGX_AM4430 has been renamed to
  614. BR2_PACKAGE_TI_SGX_KM_AM4430.
  615. # Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from
  616. # package/ti-sgx-km/Config.in
  617. config BR2_PACKAGE_TI_SGX_AM5430
  618. bool "ti-sgx-km AM5430 option renamed"
  619. select BR2_LEGACY
  620. help
  621. For consistency reasons, the option
  622. BR2_PACKAGE_TI_SGX_AM5430 has been renamed to
  623. BR2_PACKAGE_TI_SGX_KM_AM5430.
  624. config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
  625. bool "janus-gateway audio-bridge option renamed"
  626. select BR2_LEGACY
  627. select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
  628. help
  629. For consistency reasons, the janus-gateway option
  630. BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
  631. BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
  632. config BR2_PACKAGE_JANUS_ECHO_TEST
  633. bool "janus-gateway echo-test option renamed"
  634. select BR2_LEGACY
  635. select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
  636. help
  637. For consistency reasons, the janus-gateway option
  638. BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
  639. BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
  640. config BR2_PACKAGE_JANUS_RECORDPLAY
  641. bool "janus-gateway recordplay option renamed"
  642. select BR2_LEGACY
  643. select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
  644. help
  645. For consistency reasons, the janus-gateway option
  646. BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
  647. BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
  648. config BR2_PACKAGE_JANUS_SIP_GATEWAY
  649. bool "janus-gateway sip-gateway option renamed"
  650. select BR2_LEGACY
  651. select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
  652. help
  653. For consistency reasons, the janus-gateway option
  654. BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
  655. BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
  656. config BR2_PACKAGE_JANUS_STREAMING
  657. bool "janus-gateway streaming option renamed"
  658. select BR2_LEGACY
  659. select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
  660. help
  661. For consistency reasons, the janus-gateway option
  662. BR2_PACKAGE_JANUS_STREAMING has been renamed to
  663. BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
  664. config BR2_PACKAGE_JANUS_TEXT_ROOM
  665. bool "janus-gateway text-room option renamed"
  666. select BR2_LEGACY
  667. select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
  668. help
  669. For consistency reasons, the janus-gateway option
  670. BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
  671. BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
  672. config BR2_PACKAGE_JANUS_VIDEO_CALL
  673. bool "janus-gateway video-call option renamed"
  674. select BR2_LEGACY
  675. select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
  676. help
  677. For consistency reasons, the janus-gateway option
  678. BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
  679. BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
  680. config BR2_PACKAGE_JANUS_VIDEO_ROOM
  681. bool "janus-gateway video-room option renamed"
  682. select BR2_LEGACY
  683. select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
  684. help
  685. For consistency reasons, the janus-gateway option
  686. BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
  687. BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
  688. config BR2_PACKAGE_JANUS_MQTT
  689. bool "janus-gateway mqtt option renamed"
  690. select BR2_LEGACY
  691. select BR2_PACKAGE_JANUS_GATEWAY_MQTT
  692. help
  693. For consistency reasons, the janus-gateway option
  694. BR2_PACKAGE_JANUS_MQTT has been renamed to
  695. BR2_PACKAGE_JANUS_GATEWAY_MQTT.
  696. config BR2_PACKAGE_JANUS_RABBITMQ
  697. bool "janus-gateway rabbitmq option renamed"
  698. select BR2_LEGACY
  699. select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
  700. help
  701. For consistency reasons, the janus-gateway option
  702. BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
  703. BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
  704. config BR2_PACKAGE_JANUS_REST
  705. bool "janus-gateway rest option renamed"
  706. select BR2_LEGACY
  707. select BR2_PACKAGE_JANUS_GATEWAY_REST
  708. help
  709. For consistency reasons, the janus-gateway option
  710. BR2_PACKAGE_JANUS_REST has been renamed to
  711. BR2_PACKAGE_JANUS_GATEWAY_REST.
  712. config BR2_PACKAGE_JANUS_UNIX_SOCKETS
  713. bool "janus-gateway unix-sockets option renamed"
  714. select BR2_LEGACY
  715. select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
  716. help
  717. For consistency reasons, the janus-gateway option
  718. BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
  719. BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
  720. config BR2_PACKAGE_JANUS_WEBSOCKETS
  721. bool "janus-gateway websockets option renamed"
  722. select BR2_LEGACY
  723. select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
  724. help
  725. For consistency reasons, the janus-gateway option
  726. BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
  727. BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
  728. config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
  729. bool "ipsec-tools security context disable option renamed"
  730. select BR2_LEGACY
  731. help
  732. For consistency reasons, the option
  733. BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
  734. BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
  735. config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
  736. bool "ipsec-tools SELinux security context enable option renamed"
  737. select BR2_LEGACY
  738. help
  739. For consistency reasons, the option
  740. BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
  741. BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
  742. config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
  743. bool "ipsec-tools kernel security context enable option renamed"
  744. select BR2_LEGACY
  745. help
  746. For consistency reasons, the option
  747. BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
  748. BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
  749. config BR2_PACKAGE_LIBTFDI_CPP
  750. bool "libftdi C++ bindings option renamed"
  751. select BR2_LEGACY
  752. select BR2_PACKAGE_LIBFTDI_CPP
  753. help
  754. The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
  755. BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
  756. name.
  757. config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
  758. bool "jquery-ui-themes option black-tie renamed"
  759. select BR2_LEGACY
  760. help
  761. For consistency reasons, the jquery-ui-themes option for the
  762. black-tie theme has been renamed from
  763. BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
  764. BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
  765. config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
  766. bool "jquery-ui-themes option blitzer renamed"
  767. select BR2_LEGACY
  768. help
  769. For consistency reasons, the jquery-ui-themes option for the
  770. blitzer theme has been renamed from
  771. BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
  772. BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
  773. config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
  774. bool "jquery-ui-themes option cupertino renamed"
  775. select BR2_LEGACY
  776. help
  777. For consistency reasons, the jquery-ui-themes option for the
  778. cupertino theme has been renamed from
  779. BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
  780. BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
  781. config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
  782. bool "jquery-ui-themes option dark-hive renamed"
  783. select BR2_LEGACY
  784. help
  785. For consistency reasons, the jquery-ui-themes option for the
  786. dark-hive theme has been renamed from
  787. BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
  788. BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
  789. config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
  790. bool "jquery-ui-themes option dot-luv renamed"
  791. select BR2_LEGACY
  792. help
  793. For consistency reasons, the jquery-ui-themes option for the
  794. dot-luv theme has been renamed from
  795. BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
  796. BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
  797. config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
  798. bool "jquery-ui-themes option eggplant renamed"
  799. select BR2_LEGACY
  800. help
  801. For consistency reasons, the jquery-ui-themes option for the
  802. eggplant theme has been renamed from
  803. BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
  804. BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
  805. config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
  806. bool "jquery-ui-themes option excite-bike renamed"
  807. select BR2_LEGACY
  808. help
  809. For consistency reasons, the jquery-ui-themes option for the
  810. excite-bike theme has been renamed from
  811. BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
  812. BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
  813. config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
  814. bool "jquery-ui-themes option flick renamed"
  815. select BR2_LEGACY
  816. help
  817. For consistency reasons, the jquery-ui-themes option for the
  818. flick theme has been renamed from
  819. BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
  820. BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
  821. config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
  822. bool "jquery-ui-themes option hot-sneaks renamed"
  823. select BR2_LEGACY
  824. help
  825. For consistency reasons, the jquery-ui-themes option for the
  826. hot-sneaks theme has been renamed from
  827. BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
  828. BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
  829. config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
  830. bool "jquery-ui-themes option humanity renamed"
  831. select BR2_LEGACY
  832. help
  833. For consistency reasons, the jquery-ui-themes option for the
  834. humanity theme has been renamed from
  835. BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
  836. BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
  837. config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
  838. bool "jquery-ui-themes option le-frog renamed"
  839. select BR2_LEGACY
  840. help
  841. For consistency reasons, the jquery-ui-themes option for the
  842. le-frog theme has been renamed from
  843. BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
  844. BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
  845. config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
  846. bool "jquery-ui-themes option mint-choc renamed"
  847. select BR2_LEGACY
  848. help
  849. For consistency reasons, the jquery-ui-themes option for the
  850. mint-choc theme has been renamed from
  851. BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
  852. BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
  853. config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
  854. bool "jquery-ui-themes option overcast renamed"
  855. select BR2_LEGACY
  856. help
  857. For consistency reasons, the jquery-ui-themes option for the
  858. overcast theme has been renamed from
  859. BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
  860. BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
  861. config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
  862. bool "jquery-ui-themes option pepper-grinder renamed"
  863. select BR2_LEGACY
  864. help
  865. For consistency reasons, the jquery-ui-themes option for the
  866. pepper-grinder theme has been renamed from
  867. BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
  868. BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
  869. config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
  870. bool "jquery-ui-themes option redmond renamed"
  871. select BR2_LEGACY
  872. help
  873. For consistency reasons, the jquery-ui-themes option for the
  874. redmond theme has been renamed from
  875. BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
  876. BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
  877. config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
  878. bool "jquery-ui-themes option smoothness renamed"
  879. select BR2_LEGACY
  880. help
  881. For consistency reasons, the jquery-ui-themes option for the
  882. smoothness theme has been renamed from
  883. BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
  884. BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
  885. config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
  886. bool "jquery-ui-themes option south-street renamed"
  887. select BR2_LEGACY
  888. help
  889. For consistency reasons, the jquery-ui-themes option for the
  890. south-street theme has been renamed from
  891. BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
  892. BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
  893. config BR2_PACKAGE_JQUERY_UI_THEME_START
  894. bool "jquery-ui-themes option start renamed"
  895. select BR2_LEGACY
  896. help
  897. For consistency reasons, the jquery-ui-themes option for the
  898. start theme has been renamed from
  899. BR2_PACKAGE_JQUERY_UI_THEME_START to
  900. BR2_PACKAGE_JQUERY_UI_THEMES_START.
  901. config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
  902. bool "jquery-ui-themes option sunny renamed"
  903. select BR2_LEGACY
  904. help
  905. For consistency reasons, the jquery-ui-themes option for the
  906. sunny theme has been renamed from
  907. BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
  908. BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
  909. config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
  910. bool "jquery-ui-themes option swanky-purse renamed"
  911. select BR2_LEGACY
  912. help
  913. For consistency reasons, the jquery-ui-themes option for the
  914. swanky-purse theme has been renamed from
  915. BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
  916. BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
  917. config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
  918. bool "jquery-ui-themes option trontastic renamed"
  919. select BR2_LEGACY
  920. help
  921. For consistency reasons, the jquery-ui-themes option for the
  922. trontastic theme has been renamed from
  923. BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
  924. BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
  925. config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
  926. bool "jquery-ui-themes option ui-darkness renamed"
  927. select BR2_LEGACY
  928. help
  929. For consistency reasons, the jquery-ui-themes option for the
  930. ui-darkness theme has been renamed from
  931. BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
  932. BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
  933. config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
  934. bool "jquery-ui-themes option ui-lightness renamed"
  935. select BR2_LEGACY
  936. help
  937. For consistency reasons, the jquery-ui-themes option for the
  938. ui-lightness theme has been renamed from
  939. BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
  940. BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
  941. config BR2_PACKAGE_JQUERY_UI_THEME_VADER
  942. bool "jquery-ui-themes option vader renamed"
  943. select BR2_LEGACY
  944. help
  945. For consistency reasons, the jquery-ui-themes option for the
  946. vader theme has been renamed from
  947. BR2_PACKAGE_JQUERY_UI_THEME_VADER to
  948. BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
  949. config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
  950. bool "bluez5-utils health plugin option renamed"
  951. select BR2_LEGACY
  952. select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
  953. help
  954. For consistency reasons, the option
  955. BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
  956. BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
  957. config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
  958. bool "bluez5-utils midi plugin option renamed"
  959. select BR2_LEGACY
  960. select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
  961. help
  962. For consistency reasons, the option
  963. BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
  964. BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
  965. config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
  966. bool "bluez5-utils nfc plugin option renamed"
  967. select BR2_LEGACY
  968. select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
  969. help
  970. For consistency reasons, the option
  971. BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
  972. BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
  973. config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
  974. bool "bluez5-utils sap plugin option renamed"
  975. select BR2_LEGACY
  976. select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
  977. help
  978. For consistency reasons, the option
  979. BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
  980. BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
  981. config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
  982. bool "bluez5-utils sixaxis plugin option renamed"
  983. select BR2_LEGACY
  984. select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
  985. help
  986. For consistency reasons, the option
  987. BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
  988. BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
  989. config BR2_PACKAGE_TRANSMISSION_REMOTE
  990. bool "transmission remote tool option removed"
  991. select BR2_LEGACY
  992. select BR2_PACKAGE_TRANSMISSION_DAEMON
  993. help
  994. Upstream does not provide a separate configure option for
  995. the tool transmission-remote, it is built when the
  996. transmission daemon has been enabled. Therefore, Buildroot
  997. has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
  998. for you.
  999. config BR2_PACKAGE_LIBKCAPI_APPS
  1000. bool "libkcapi test applications removed"
  1001. select BR2_LEGACY
  1002. select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
  1003. select BR2_PACKAGE_LIBKCAPI_RNGAPP
  1004. select BR2_PACKAGE_LIBKCAPI_SPEED
  1005. select BR2_PACKAGE_LIBKCAPI_TEST
  1006. help
  1007. Test applications (hasher, rng read, speed-test, test) now
  1008. have their own configuration options in the libkcapi menu.
  1009. config BR2_PACKAGE_MPLAYER
  1010. bool "mplayer package removed"
  1011. select BR2_LEGACY
  1012. help
  1013. The mplayer package was removed.
  1014. config BR2_PACKAGE_MPLAYER_MPLAYER
  1015. bool "mplayer package removed"
  1016. select BR2_LEGACY
  1017. help
  1018. The mplayer package was removed.
  1019. config BR2_PACKAGE_MPLAYER_MENCODER
  1020. bool "mplayer package removed"
  1021. select BR2_LEGACY
  1022. help
  1023. The mplayer package was removed.
  1024. config BR2_PACKAGE_LIBPLAYER_MPLAYER
  1025. bool "mplayer support in libplayer removed"
  1026. select BR2_LEGACY
  1027. help
  1028. The mplayer package was removed.
  1029. config BR2_PACKAGE_IQVLINUX
  1030. bool "iqvlinux package removed"
  1031. select BR2_LEGACY
  1032. help
  1033. This package contained a kernel module from Intel, which
  1034. could only be used together with Intel userspace tools
  1035. provided under NDA, which also come with the same kernel
  1036. module. The copy of the kernel module available on
  1037. SourceForge is provided only to comply with the GPLv2
  1038. requirement. Intel engineers were even surprised it even
  1039. built and were not willing to make any effort to fix their
  1040. tarball naming to contain a version number. Therefore, it
  1041. does not make sense for Buildroot to provide such a package.
  1042. See https://sourceforge.net/p/e1000/bugs/589/ for the
  1043. discussion.
  1044. config BR2_BINFMT_FLAT_SEP_DATA
  1045. bool "binfmt FLAT with separate code and data removed"
  1046. select BR2_LEGACY
  1047. help
  1048. This FLAT binary format was only used on Blackfin, which has
  1049. been removed.
  1050. config BR2_bfin
  1051. bool "Blackfin architecture support removed"
  1052. select BR2_LEGACY
  1053. help
  1054. Following the removal of Blackfin support for the upstream
  1055. Linux kernel, Buildroot has removed support for this CPU
  1056. architecture.
  1057. config BR2_PACKAGE_KODI_ADSP_BASIC
  1058. bool "kodi-adsp-basic package removed"
  1059. select BR2_LEGACY
  1060. help
  1061. kodi-adsp-basic is unmaintained
  1062. config BR2_PACKAGE_KODI_ADSP_FREESURROUND
  1063. bool "kodi-adsp-freesurround package removed"
  1064. select BR2_LEGACY
  1065. help
  1066. kodi-adsp-freesurround is unmaintained
  1067. ###############################################################################
  1068. comment "Legacy options removed in 2018.02"
  1069. config BR2_KERNEL_HEADERS_3_4
  1070. bool "kernel headers version 3.4.x are no longer supported"
  1071. select BR2_LEGACY
  1072. help
  1073. Version 3.4.x of the Linux kernel headers are no longer
  1074. maintained upstream and are now removed.
  1075. config BR2_KERNEL_HEADERS_3_10
  1076. bool "kernel headers version 3.10.x are no longer supported"
  1077. select BR2_LEGACY
  1078. help
  1079. Version 3.10.x of the Linux kernel headers are no longer
  1080. maintained upstream and are now removed.
  1081. config BR2_KERNEL_HEADERS_3_12
  1082. bool "kernel headers version 3.12.x are no longer supported"
  1083. select BR2_LEGACY
  1084. help
  1085. Version 3.12.x of the Linux kernel headers are no longer
  1086. maintained upstream and are now removed.
  1087. config BR2_BINUTILS_VERSION_2_27_X
  1088. bool "binutils version 2.27 support removed"
  1089. select BR2_LEGACY
  1090. help
  1091. Support for binutils version 2.27 has been removed. The
  1092. current default version (2.29 or later) has been selected
  1093. instead.
  1094. config BR2_PACKAGE_EEPROG
  1095. bool "eeprog package removed"
  1096. select BR2_LEGACY
  1097. select BR2_PACKAGE_I2C_TOOLS
  1098. select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  1099. help
  1100. The eeprog program is now provided by the i2c-tools package.
  1101. config BR2_PACKAGE_GNUPG2_GPGV2
  1102. bool "gnupg2 gpgv2 option removed"
  1103. select BR2_LEGACY
  1104. select BR2_PACKAGE_GNUPG2_GPGV
  1105. help
  1106. The gpgv2 executable is now named gpgv. The config option
  1107. has been renamed accordingly.
  1108. config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
  1109. bool "Vivante apitrace tool option removed"
  1110. select BR2_LEGACY
  1111. help
  1112. The apitrace tool for Vivante is not provided by the
  1113. imx-gpu-viv package any longer.
  1114. config BR2_PACKAGE_IMX_GPU_VIV_G2D
  1115. bool "Vivante G2D libraries from imx-gpu-viv removed"
  1116. select BR2_LEGACY
  1117. select BR2_PACKAGE_IMX_GPU_G2D
  1118. help
  1119. The G2D libraries are now provided by the imx-gpu-g2d package.
  1120. ###############################################################################
  1121. comment "Legacy options removed in 2017.11"
  1122. config BR2_PACKAGE_RFKILL
  1123. bool "rfkill package removed"
  1124. select BR2_LEGACY
  1125. select BR2_PACKAGE_UTIL_LINUX
  1126. select BR2_PACKAGE_UTIL_LINUX_RFKILL
  1127. help
  1128. The rfkill program is now provided by the util-linux package.
  1129. config BR2_PACKAGE_UTIL_LINUX_RESET
  1130. bool "util-linux reset option removed"
  1131. select BR2_LEGACY
  1132. help
  1133. The util-linux package no longer offers a "reset" command. Use
  1134. either the reset command provided by BusyBox or select ncurses
  1135. programs, which will install a symlink from "tset" to reset.
  1136. config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
  1137. bool "policycoreutils audit2allow option removed"
  1138. select BR2_LEGACY
  1139. select BR2_PACKAGE_SELINUX_PYTHON
  1140. select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
  1141. help
  1142. The policycoreutils package no longer offers audit2allow
  1143. as a option. This package has been moved into the
  1144. selinux-python package by the SELinux maintainers.
  1145. config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
  1146. bool "policycoreutils restorecond option removed"
  1147. select BR2_LEGACY
  1148. select BR2_PACKAGE_RESTORECOND
  1149. help
  1150. The policycoreutils package no longer offers restorecond
  1151. as a option. This package has been moved into a seperate
  1152. package maintained by the SELinux maintainers.
  1153. config BR2_PACKAGE_SEPOLGEN
  1154. bool "sepolgen package has been removed"
  1155. select BR2_LEGACY
  1156. select BR2_PACKAGE_SELINUX_PYTHON
  1157. select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
  1158. help
  1159. Sepolgen is no longer a individual package, but instead has
  1160. been moved into the selinux-python package by the SELinux
  1161. maintainers.
  1162. config BR2_PACKAGE_OPENOBEX_BLUEZ
  1163. bool "openobex bluez option removed"
  1164. select BR2_LEGACY
  1165. select BR2_PACKAGE_BLUEZ_UTILS
  1166. help
  1167. The OpenOBEX package no longer offers an option to enable or
  1168. disable BlueZ support. Instead, BlueZ support is always
  1169. included when the bluez5_utils or bluez_utils package is
  1170. selected.
  1171. config BR2_PACKAGE_OPENOBEX_LIBUSB
  1172. bool "openobex libusb option removed"
  1173. select BR2_LEGACY
  1174. select BR2_PACKAGE_LIBUSB
  1175. help
  1176. The OpenOBEX package no longer offers an option to enable or
  1177. disable libusb support. Instead, USB support is always
  1178. included when the libusb package is selected.
  1179. config BR2_PACKAGE_OPENOBEX_APPS
  1180. bool "openobex apps option removed"
  1181. select BR2_LEGACY
  1182. help
  1183. The OpenOBEX package no longer offers an option to enable or
  1184. disable apps support.
  1185. config BR2_PACKAGE_OPENOBEX_SYSLOG
  1186. bool "openobex syslog option removed"
  1187. select BR2_LEGACY
  1188. help
  1189. The OpenOBEX package no longer offers an option to enable or
  1190. disable syslog support.
  1191. config BR2_PACKAGE_OPENOBEX_DUMP
  1192. bool "openobex dump option removed"
  1193. select BR2_LEGACY
  1194. help
  1195. The OpenOBEX package no longer offers an option to enable or
  1196. disable dump support.
  1197. config BR2_PACKAGE_AICCU
  1198. bool "aiccu utility removed"
  1199. select BR2_LEGACY
  1200. help
  1201. As the SixXS project has ceased its operation on 2017-06-06,
  1202. the AICCU utility has no use anymore and has been removed.
  1203. https://www.sixxs.net/sunset/
  1204. config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
  1205. bool "util-linux login utilities option removed"
  1206. select BR2_LEGACY
  1207. select BR2_PACKAGE_UTIL_LINUX_LAST
  1208. select BR2_PACKAGE_UTIL_LINUX_LOGIN
  1209. select BR2_PACKAGE_UTIL_LINUX_RUNUSER
  1210. select BR2_PACKAGE_UTIL_LINUX_SU
  1211. select BR2_PACKAGE_UTIL_LINUX_SULOGIN
  1212. help
  1213. Login utilities (last, login, runuser, su, sulogin) now have
  1214. their own configuration options in the util-linux menu.
  1215. ###############################################################################
  1216. comment "Legacy options removed in 2017.08"
  1217. config BR2_TARGET_GRUB
  1218. bool "grub (aka grub-legacy) has been removed"
  1219. select BR2_LEGACY
  1220. help
  1221. grub-legacy is no longer maintained, and no longer builds with
  1222. recent binutils versions.
  1223. Use grub2 or syslinux instead.
  1224. config BR2_PACKAGE_SIMICSFS
  1225. bool "simicsfs support removed"
  1226. select BR2_LEGACY
  1227. help
  1228. Support for simicsfs kernel driver that provides access to a
  1229. host computer's local filesystem when the target is
  1230. executing within a SIMICS simulation has been removed.
  1231. Simics is now moving away from the simicsfs kernel module,
  1232. as the kernel module has required too much maintenance
  1233. work. Users should move to the user mode Simics agent
  1234. instead.
  1235. config BR2_BINUTILS_VERSION_2_26_X
  1236. bool "binutils version 2.26 support removed"
  1237. select BR2_LEGACY
  1238. help
  1239. Support for binutils version 2.26 has been removed. The
  1240. current default version (2.28 or later) has been selected
  1241. instead.
  1242. config BR2_XTENSA_OVERLAY_DIR
  1243. string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
  1244. help
  1245. The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
  1246. BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
  1247. path to the overlay file, not to the directory containing
  1248. it.
  1249. config BR2_XTENSA_OVERLAY_DIR_WRAP
  1250. bool
  1251. default y if BR2_XTENSA_OVERLAY_DIR != ""
  1252. select BR2_LEGACY
  1253. config BR2_XTENSA_CUSTOM_NAME
  1254. string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
  1255. help
  1256. The BR2_XTENSA_CUSTOM_NAME option has been removed.
  1257. config BR2_XTENSA_CUSTOM_NAME_WRAP
  1258. bool
  1259. default y if BR2_XTENSA_CUSTOM_NAME != ""
  1260. select BR2_LEGACY
  1261. config BR2_PACKAGE_HOST_MKE2IMG
  1262. bool "host mke2img has been removed"
  1263. select BR2_LEGACY
  1264. help
  1265. We now call mkfs directly to generate ext2/3/4 filesystem
  1266. image, so mke2img is no longer necessary.
  1267. config BR2_TARGET_ROOTFS_EXT2_BLOCKS
  1268. int "exact size in blocks has been removed"
  1269. default 0
  1270. help
  1271. This option has been removed in favor of
  1272. BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
  1273. to the value you had before. Set to 0 here to remove the
  1274. warning.
  1275. config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
  1276. bool
  1277. default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
  1278. BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
  1279. select BR2_LEGACY
  1280. # Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
  1281. config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
  1282. int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
  1283. default 0
  1284. help
  1285. Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
  1286. images. It now automatically selects the number of inodes
  1287. based on the image size. The extra number of inodes can no
  1288. longer be provided; instead, provide the total number of
  1289. inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
  1290. config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
  1291. bool
  1292. default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
  1293. select BR2_LEGACY
  1294. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
  1295. bool "cdxaparse removed"
  1296. select BR2_LEGACY
  1297. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
  1298. bool "dataurisrc moved to gstreamer1"
  1299. select BR2_LEGACY
  1300. help
  1301. Dataurisrc has moved to gstreamer core and is always built.
  1302. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
  1303. bool "dccp removed"
  1304. select BR2_LEGACY
  1305. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
  1306. bool "hdvparse removed"
  1307. select BR2_LEGACY
  1308. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
  1309. bool "mve removed"
  1310. select BR2_LEGACY
  1311. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
  1312. bool "nuvdemux removed"
  1313. select BR2_LEGACY
  1314. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
  1315. bool "patchdetect removed"
  1316. select BR2_LEGACY
  1317. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
  1318. bool "sdi removed"
  1319. select BR2_LEGACY
  1320. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
  1321. bool "tta removed"
  1322. select BR2_LEGACY
  1323. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
  1324. bool "videomeasure removed"
  1325. select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
  1326. select BR2_LEGACY
  1327. help
  1328. videomeasure plugin has been removed and has been replaced by
  1329. iqa, which has automatically been enabled.
  1330. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
  1331. bool "apexsink removed"
  1332. select BR2_LEGACY
  1333. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
  1334. bool "sdl removed"
  1335. select BR2_LEGACY
  1336. config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
  1337. bool "mad (*.mp3 audio) removed"
  1338. select BR2_LEGACY
  1339. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
  1340. bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
  1341. select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
  1342. select BR2_LEGACY
  1343. help
  1344. The WebRTC plugin in GStreamer 1.x has always been named
  1345. webrtcdsp, but was wrongly introduced in Buildroot under the
  1346. name webrtc. Therefore, we have renamed the option to match
  1347. the actual name of the GStreamer plugin.
  1348. config BR2_STRIP_none
  1349. bool "Strip command 'none' has been removed"
  1350. select BR2_LEGACY
  1351. help
  1352. The strip command choice has been changed into a single
  1353. boolean option. Please check that the new setting is
  1354. correct (in the "Build options" sub-menu)
  1355. config BR2_PACKAGE_BEECRYPT_CPP
  1356. bool "C++ support removed in beecrypt"
  1357. select BR2_LEGACY
  1358. help
  1359. Support for C++ depends on icu. The beecrypt package is
  1360. incompatible with icu 59+.
  1361. config BR2_PACKAGE_SPICE_CLIENT
  1362. bool "spice client support removed"
  1363. select BR2_LEGACY
  1364. help
  1365. Spice client support has been removed upstream. The
  1366. functionality now lives in the spice-gtk widget and
  1367. virt-viewer.
  1368. config BR2_PACKAGE_SPICE_GUI
  1369. bool "spice gui support removed"
  1370. select BR2_LEGACY
  1371. help
  1372. Spice gui support has been removed upstream. The
  1373. functionality now lives in the spice-gtk widget and
  1374. virt-viewer.
  1375. config BR2_PACKAGE_SPICE_TUNNEL
  1376. bool "spice network redirection removed"
  1377. select BR2_LEGACY
  1378. help
  1379. Spice network redirection, aka tunnelling has been removed
  1380. upstream.
  1381. config BR2_PACKAGE_INPUT_TOOLS
  1382. bool "input-tools removed"
  1383. select BR2_LEGACY
  1384. select BR2_PACKAGE_LINUXCONSOLETOOLS
  1385. help
  1386. input-tools has been removed, it is replaced by
  1387. linuxconsoletools, which has automatically been enabled.
  1388. config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
  1389. bool "inputattach moved to linuxconsoletools"
  1390. select BR2_LEGACY
  1391. select BR2_PACKAGE_LINUXCONSOLETOOLS
  1392. select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
  1393. help
  1394. input-tools has been removed, inputattach is now part
  1395. of linuxconsoletools, which has automatically been
  1396. enabled.
  1397. config BR2_PACKAGE_INPUT_TOOLS_JSCAL
  1398. bool "jscal moved to linuxconsoletools"
  1399. select BR2_LEGACY
  1400. select BR2_PACKAGE_LINUXCONSOLETOOLS
  1401. select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
  1402. help
  1403. input-tools has been removed, jscal is now part
  1404. of linuxconsoletools, which has automatically been
  1405. enabled.
  1406. config BR2_PACKAGE_INPUT_TOOLS_JSTEST
  1407. bool "jstest moved to linuxconsoletools"
  1408. select BR2_LEGACY
  1409. select BR2_PACKAGE_LINUXCONSOLETOOLS
  1410. select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
  1411. help
  1412. input-tools has been removed, jstest is now part
  1413. of linuxconsoletools, which has automatically been
  1414. enabled.
  1415. config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
  1416. bool "SH Sourcery toolchain has been removed"
  1417. select BR2_LEGACY
  1418. help
  1419. The Sourcery CodeBench toolchain for the sh architecture has
  1420. been removed, since it uses glibc older than 2.17 that
  1421. requires -lrt to link executables using clock_* system calls.
  1422. This makes this toolchain difficult to maintain over time.
  1423. config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
  1424. bool "x86 Sourcery toolchain has been removed"
  1425. select BR2_LEGACY
  1426. help
  1427. The Sourcery CodeBench toolchain for the x86 architecture has
  1428. been removed, since it uses glibc older than 2.17 that
  1429. requires -lrt to link executables using clock_* system calls.
  1430. This makes this toolchain difficult to maintain over time.
  1431. config BR2_GCC_VERSION_4_8_X
  1432. bool "gcc 4.8.x support removed"
  1433. select BR2_LEGACY
  1434. help
  1435. Support for gcc version 4.8.x has been removed. The current
  1436. default version (5.x or later) has been selected instead.
  1437. ###############################################################################
  1438. comment "Legacy options removed in 2017.05"
  1439. config BR2_PACKAGE_SUNXI_MALI_R2P4
  1440. bool "sunxi-mali r2p4 removed"
  1441. select BR2_LEGACY
  1442. help
  1443. sunxi-mali libMali for r2p4 Mali kernel module has been
  1444. removed since the libump package only provides libUMP.so.3.
  1445. libMali for r2p4 Mali kernel module requires libUMP.so.2.
  1446. config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
  1447. bool "CoffeeScript option has been removed"
  1448. select BR2_LEGACY
  1449. help
  1450. The option to enable NodeJS CoffeeScript has been removed.
  1451. To continue using it, add "coffee-script" to
  1452. BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
  1453. config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
  1454. bool "Express web application framework option has been removed"
  1455. select BR2_LEGACY
  1456. help
  1457. The option to enable the NodeJS Express web application
  1458. framework has been removed. To continue using it, add
  1459. "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
  1460. config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
  1461. bool "bluez5_utils gatttool install option removed"
  1462. select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
  1463. help
  1464. The option to install gatttool specifically has been removed.
  1465. Since version 5.44 gatttool is in the list of deprecated
  1466. tools. The option to build and install deprecated tools has
  1467. been automatically enabled.
  1468. config BR2_PACKAGE_OPENOCD_FT2XXX
  1469. bool "openocd ft2232 support has been removed"
  1470. select BR2_PACKAGE_OPENOCD_FTDI
  1471. select BR2_LEGACY
  1472. help
  1473. FT2232 support in OpenOCD has been removed, it's replaced by
  1474. FDTI support, which has automatically been enabled.
  1475. config BR2_PACKAGE_KODI_RTMPDUMP
  1476. bool "kodi rtmp has been removed"
  1477. select BR2_LEGACY
  1478. select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
  1479. help
  1480. Internal rtmp support was removed from Kodi.
  1481. config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
  1482. bool "kodi-visualisation-fountain has been removed"
  1483. select BR2_LEGACY
  1484. help
  1485. According to upstream 'the visualization is not currently
  1486. in a working shape.'
  1487. config BR2_PACKAGE_PORTMAP
  1488. bool "portmap has been removed"
  1489. select BR2_LEGACY
  1490. select BR2_PACKAGE_RPCBIND
  1491. help
  1492. The portmap upstream tarball is removed, no releases since
  1493. ten years and latest change in upstream git in 2014.
  1494. You should better use rpcbind as a RPC portmapper.
  1495. config BR2_BINUTILS_VERSION_2_25_X
  1496. bool "binutils version 2.25 support removed"
  1497. select BR2_LEGACY
  1498. help
  1499. Support for binutils version 2.25 has been removed. The
  1500. current default version (2.27 or later) has been selected
  1501. instead.
  1502. config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
  1503. bool "uclibc RPC support has been removed"
  1504. select BR2_LEGACY
  1505. help
  1506. uClibc-ng removed internal RPC implementation in 1.0.23. You
  1507. should use libtirpc instead.
  1508. config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
  1509. int "extra size in blocks has been removed"
  1510. default 0
  1511. help
  1512. Since the support for auto calculation of the filesystem size
  1513. has been removed, this option is now useless and must be 0.
  1514. You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
  1515. matchs your needs.
  1516. config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
  1517. bool
  1518. default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
  1519. select BR2_LEGACY
  1520. config BR2_PACKAGE_SYSTEMD_KDBUS
  1521. bool "systemd-kdbus has been removed"
  1522. select BR2_LEGACY
  1523. help
  1524. --enable/disable-kdbus configure option has been removed since
  1525. systemd-231.
  1526. config BR2_PACKAGE_POLARSSL
  1527. bool "polarssl has been removed"
  1528. select BR2_LEGACY
  1529. help
  1530. The polarssl crypto library has been removed since the 1.2.x
  1531. release branch is no longer maintained. Newer upstream
  1532. branches/releases (mbedtls) have API changes so they're not
  1533. drop-in replacements.
  1534. config BR2_NBD_CLIENT
  1535. bool "nbd client option was renamed"
  1536. select BR2_LEGACY
  1537. select BR2_PACKAGE_NBD_CLIENT
  1538. help
  1539. The nbd client option has been renamed to
  1540. BR2_PACKAGE_NBD_CLIENT.
  1541. config BR2_NBD_SERVER
  1542. bool "nbd server option was renamed"
  1543. select BR2_LEGACY
  1544. select BR2_PACKAGE_NBD_SERVER
  1545. help
  1546. The nbd server option has been renamed to
  1547. BR2_PACKAGE_NBD_SERVER.
  1548. config BR2_PACKAGE_GMOCK
  1549. bool "gmock merged into gtest package"
  1550. select BR2_LEGACY
  1551. select BR2_PACKAGE_GTEST
  1552. select BR2_PACKAGE_GTEST_GMOCK
  1553. help
  1554. GMock is now a suboption of the GTest package.
  1555. config BR2_KERNEL_HEADERS_4_8
  1556. bool "kernel headers version 4.8.x are no longer supported"
  1557. select BR2_LEGACY
  1558. help
  1559. Version 4.8.x of the Linux kernel headers are no longer
  1560. maintained upstream and are now removed.
  1561. config BR2_KERNEL_HEADERS_3_18
  1562. bool "kernel headers version 3.18.x are no longer supported"
  1563. select BR2_LEGACY
  1564. help
  1565. Version 3.18.x of the Linux kernel headers are no longer
  1566. maintained upstream and are now removed.
  1567. config BR2_GLIBC_VERSION_2_22
  1568. bool "glibc 2.22 removed"
  1569. select BR2_LEGACY
  1570. help
  1571. Support for glibc version 2.22 has been removed. The current
  1572. default version has been selected instead.
  1573. ###############################################################################
  1574. comment "Legacy options removed in 2017.02"
  1575. config BR2_PACKAGE_PERL_DB_FILE
  1576. bool "perl-db-file removed"
  1577. select BR2_LEGACY
  1578. select BR2_PACKAGE_BERKELEYDB
  1579. select BR2_PACKAGE_PERL
  1580. help
  1581. DB_File can be built as a core Perl module, so the separate
  1582. perl-db-file package has been removed.
  1583. config BR2_KERNEL_HEADERS_4_7
  1584. bool "kernel headers version 4.7.x are no longer supported"
  1585. select BR2_LEGACY
  1586. help
  1587. Version 4.7.x of the Linux kernel headers are no longer
  1588. maintained upstream and are now removed.
  1589. config BR2_KERNEL_HEADERS_4_6
  1590. bool "kernel headers version 4.6.x are no longer supported"
  1591. select BR2_LEGACY
  1592. help
  1593. Version 4.6.x of the Linux kernel headers are no longer
  1594. maintained upstream and are now removed.
  1595. config BR2_KERNEL_HEADERS_4_5
  1596. bool "kernel headers version 4.5.x are no longer supported"
  1597. select BR2_LEGACY
  1598. help
  1599. Version 4.5.x of the Linux kernel headers are no longer
  1600. maintained upstream and are now removed.
  1601. config BR2_KERNEL_HEADERS_3_14
  1602. bool "kernel headers version 3.14.x are no longer supported"
  1603. select BR2_LEGACY
  1604. help
  1605. Version 3.14.x of the Linux kernel headers are no longer
  1606. maintained upstream and are now removed.
  1607. config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
  1608. bool "musl-cross 1.1.12 toolchain removed"
  1609. select BR2_LEGACY
  1610. help
  1611. The support for the prebuilt toolchain based on the Musl C
  1612. library provided by the musl-cross project has been removed.
  1613. Upstream doesn't provide any prebuilt toolchain anymore, use
  1614. the Buildroot toolchain instead.
  1615. config BR2_UCLIBC_INSTALL_TEST_SUITE
  1616. bool "uClibc tests now in uclibc-ng-test"
  1617. select BR2_LEGACY
  1618. select BR2_PACKAGE_UCLIBC_NG_TEST
  1619. help
  1620. The test suite of the uClibc C library has been moved into a
  1621. separate package, uclibc-ng-test.
  1622. config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
  1623. bool "Blackfin.uclinux.org 2014R1 toolchain removed"
  1624. select BR2_LEGACY
  1625. help
  1626. The ADI Blackfin toolchain has many bugs which are fixed in
  1627. more recent gcc and uClibc-ng releases. Use the Buildroot
  1628. toolchain instead.
  1629. config BR2_PACKAGE_MAKEDEVS
  1630. bool "makedevs removed"
  1631. select BR2_LEGACY
  1632. help
  1633. The makedevs tool is part of busybox. The Buildroot fork
  1634. should not be used outside of the Buildroot infrastructure.
  1635. config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
  1636. bool "Arago ARMv7 2011.09 removed"
  1637. select BR2_LEGACY
  1638. help
  1639. The Arago toolchains are every old and not updated anymore.
  1640. config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
  1641. bool "Arago ARMv5 2011.09 removed"
  1642. select BR2_LEGACY
  1643. help
  1644. The Arago toolchains are every old and not updated anymore.
  1645. config BR2_PACKAGE_SNOWBALL_HDMISERVICE
  1646. bool "snowball-hdmiservice removed"
  1647. select BR2_LEGACY
  1648. help
  1649. We no longer have support for the Snowball platform in
  1650. Buildroot, so this package was no longer useful.
  1651. config BR2_PACKAGE_SNOWBALL_INIT
  1652. bool "snowball-init removed"
  1653. select BR2_LEGACY
  1654. help
  1655. We no longer have support for the Snowball platform in
  1656. Buildroot, so this package was no longer useful.
  1657. config BR2_GDB_VERSION_7_9
  1658. bool "gdb 7.9 has been removed"
  1659. select BR2_LEGACY
  1660. help
  1661. The 7.9 version of gdb has been removed. Use a newer version
  1662. instead.
  1663. ###############################################################################
  1664. comment "Legacy options removed in 2016.11"
  1665. config BR2_PACKAGE_PHP_SAPI_CLI_CGI
  1666. bool "PHP CGI and CLI options are now seperate"
  1667. select BR2_PACKAGE_PHP_SAPI_CLI
  1668. select BR2_PACKAGE_PHP_SAPI_CGI
  1669. select BR2_LEGACY
  1670. help
  1671. The PHP Interface options have been split up into a
  1672. separate option for each interface.
  1673. config BR2_PACKAGE_PHP_SAPI_CLI_FPM
  1674. bool "PHP CLI and FPM options are now separate"
  1675. select BR2_PACKAGE_PHP_SAPI_CLI
  1676. select BR2_PACKAGE_PHP_SAPI_FPM
  1677. select BR2_LEGACY
  1678. help
  1679. The PHP Interface options have been split up into a
  1680. separate option for each interface.
  1681. config BR2_PACKAGE_WVSTREAMS
  1682. bool "wvstreams removed"
  1683. select BR2_LEGACY
  1684. help
  1685. wvstreams is not maintained anymore since about 2009. It also
  1686. doesn't build anymore with recent compilers (GCC 5+).
  1687. config BR2_PACKAGE_WVDIAL
  1688. bool "wvdial removed"
  1689. select BR2_LEGACY
  1690. help
  1691. wvdial is not maintained anymore since about 2009. It also
  1692. doesn't build anymore with recent compilers (GCC 5+).
  1693. config BR2_PACKAGE_WEBKITGTK24
  1694. bool "webkitgtk 2.4.x removed"
  1695. select BR2_LEGACY
  1696. help
  1697. This legacy package only existed because some other packages
  1698. depended on that specific version of webkitgtk. However, the
  1699. other packages have been fixed. webkitgtk 2.4 is full of
  1700. security issues so it needs to be removed.
  1701. config BR2_PACKAGE_TORSMO
  1702. bool "torsmo removed"
  1703. select BR2_LEGACY
  1704. help
  1705. torsmo has been unmaintained for a long time, and nobody
  1706. seems to be interested in it.
  1707. config BR2_PACKAGE_SSTRIP
  1708. bool "sstrip removed"
  1709. select BR2_LEGACY
  1710. help
  1711. sstrip is unmaintained and potentially harmful. It doesn't
  1712. save so much compared to normal binutils strip, and there is
  1713. a big risk of binaries that don't work. Use normal strip
  1714. instead.
  1715. config BR2_KERNEL_HEADERS_4_3
  1716. bool "kernel headers version 4.3.x are no longer supported"
  1717. select BR2_LEGACY
  1718. help
  1719. Version 4.3.x of the Linux kernel headers are no longer
  1720. maintained upstream and are now removed.
  1721. config BR2_KERNEL_HEADERS_4_2
  1722. bool "kernel headers version 4.2.x are no longer supported"
  1723. select BR2_LEGACY
  1724. help
  1725. Version 4.2.x of the Linux kernel headers are no longer
  1726. maintained upstream and are now removed.
  1727. config BR2_PACKAGE_KODI_ADDON_XVDR
  1728. bool "kodi-addon-xvdr removed"
  1729. select BR2_LEGACY
  1730. help
  1731. According to the github project page:
  1732. https://github.com/pipelka/xbmc-addon-xvdr
  1733. this package is discontinued.
  1734. config BR2_PACKAGE_IPKG
  1735. bool "ipkg removed"
  1736. select BR2_LEGACY
  1737. help
  1738. ipkg dates back to the early 2000s when Compaq started the
  1739. handhelds.org project and it hasn't seen development since
  1740. 2006. Use opkg as a replacement.
  1741. config BR2_GCC_VERSION_4_7_X
  1742. bool "gcc 4.7.x support removed"
  1743. select BR2_LEGACY
  1744. help
  1745. Support for gcc version 4.7.x has been removed. The current
  1746. default version (4.9.x or later) has been selected instead.
  1747. config BR2_BINUTILS_VERSION_2_24_X
  1748. bool "binutils version 2.24 support removed"
  1749. select BR2_LEGACY
  1750. help
  1751. Support for binutils version 2.24 has been removed. The
  1752. current default version (2.26 or later) has been selected
  1753. instead.
  1754. config BR2_PACKAGE_WESTON_RPI
  1755. bool "Weston propietary RPI support is gone"
  1756. select BR2_LEGACY
  1757. help
  1758. Upstream decided the propietary (rpi-userland) weston composer
  1759. support wasn't worth the effort so it was removed. Switch to
  1760. the open VC4 support.
  1761. config BR2_LINUX_KERNEL_TOOL_CPUPOWER
  1762. bool "linux-tool cpupower"
  1763. depends on BR2_LINUX_KERNEL
  1764. select BR2_LEGACY
  1765. select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
  1766. help
  1767. Linux tool cpupower option was renamed.
  1768. config BR2_LINUX_KERNEL_TOOL_PERF
  1769. bool "linux-tool perf"
  1770. depends on BR2_LINUX_KERNEL
  1771. select BR2_LEGACY
  1772. select BR2_PACKAGE_LINUX_TOOLS_PERF
  1773. help
  1774. Linux tool perf option was renamed.
  1775. config BR2_LINUX_KERNEL_TOOL_SELFTESTS
  1776. bool "linux-tool selftests"
  1777. depends on BR2_LINUX_KERNEL
  1778. select BR2_LEGACY
  1779. select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
  1780. help
  1781. Linux tool selftests option was renamed.
  1782. config BR2_GCC_VERSION_4_8_ARC
  1783. bool "gcc arc option renamed"
  1784. select BR2_LEGACY
  1785. select BR2_GCC_VERSION_ARC
  1786. help
  1787. The option that selects the gcc version for the ARC
  1788. architecture has been renamed to BR2_GCC_VERSION_ARC.
  1789. config BR2_KERNEL_HEADERS_4_0
  1790. bool "kernel headers version 4.0.x are no longer supported"
  1791. select BR2_LEGACY
  1792. help
  1793. Version 4.0.x of the Linux kernel headers have been deprecated
  1794. for more than four buildroot releases and are now removed.
  1795. config BR2_KERNEL_HEADERS_3_19
  1796. bool "kernel headers version 3.19.x are no longer supported"
  1797. select BR2_LEGACY
  1798. help
  1799. Version 3.19.x of the Linux kernel headers have been
  1800. deprecated for more than four buildroot releases and are now
  1801. removed.
  1802. config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
  1803. bool "libevas-generic-loaders package removed"
  1804. select BR2_LEGACY
  1805. select BR2_PACKAGE_EFL
  1806. help
  1807. With EFL 1.18, libevas-generic-loaders is now provided by the
  1808. efl package.
  1809. config BR2_PACKAGE_ELEMENTARY
  1810. bool "elementary package removed"
  1811. select BR2_LEGACY
  1812. select BR2_PACKAGE_EFL
  1813. help
  1814. With EFL 1.18, elementary is now provided by the efl package.
  1815. config BR2_LINUX_KERNEL_CUSTOM_LOCAL
  1816. bool "Linux kernel local directory option removed"
  1817. help
  1818. The option to select a local directory as the source of the
  1819. Linux kernel has been removed. It hurts reproducibility of
  1820. builds.
  1821. In case you were using this option during development of your
  1822. Linux kernel, use the override mechanism instead.
  1823. ###############################################################################
  1824. comment "Legacy options removed in 2016.08"
  1825. config BR2_PACKAGE_EFL_JP2K
  1826. bool "libevas jp2k loader has been removed"
  1827. select BR2_LEGACY
  1828. help
  1829. JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
  1830. while Buildroot only packages openjpeg 2.x. Therefore, the
  1831. JP2K loader has been removed from EFL.
  1832. config BR2_PACKAGE_SYSTEMD_COMPAT
  1833. bool "systemd compatibility libraries have been removed"
  1834. select BR2_LEGACY
  1835. help
  1836. The systemd option to enable the compatibility libraries has
  1837. been removed. Theses libraries have been useless since a few
  1838. version, and have been fully dropped from the source since
  1839. v230.
  1840. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
  1841. bool "gst1-plugins-bad liveadder plugin removed"
  1842. select BR2_LEGACY
  1843. select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
  1844. help
  1845. The functionality of the liveadder plugin of the
  1846. gst1-plugins-bad package has been merged into audiomixer.
  1847. config BR2_PACKAGE_LIBFSLVPUWRAP
  1848. bool "libfslvpuwrap has been renamed to imx-vpuwrap"
  1849. select BR2_LEGACY
  1850. select BR2_PACKAGE_IMX_VPUWRAP
  1851. help
  1852. The libfslvpuwrap has been renamed to match the renamed
  1853. package.
  1854. config BR2_PACKAGE_LIBFSLPARSER
  1855. bool "libfslparser has been renamed to imx-parser"
  1856. select BR2_LEGACY
  1857. select BR2_PACKAGE_IMX_PARSER
  1858. help
  1859. The libfslparser has been renamed to match the renamed
  1860. package.
  1861. config BR2_PACKAGE_LIBFSLCODEC
  1862. bool "libfslcodec has been renamed to imx-codec"
  1863. select BR2_LEGACY
  1864. select BR2_PACKAGE_IMX_CODEC
  1865. help
  1866. The libfslcodec has been renamed to match the renamed package.
  1867. config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
  1868. bool "FIT support in uboot-tools has been refactored"
  1869. select BR2_LEGACY
  1870. select BR2_PACKAGE_DTC
  1871. select BR2_PACKAGE_DTC_PROGRAMS
  1872. select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
  1873. select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
  1874. select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
  1875. help
  1876. This option has been removed in favor of a more fine-grained
  1877. configuration, which is recommended. Selecting this option
  1878. enables FIT and FIT signature support for the target packages.
  1879. It will also select the dtc and openssl packages.
  1880. config BR2_PTHREADS_OLD
  1881. bool "linuxthreads (stable/old)"
  1882. select BR2_LEGACY
  1883. help
  1884. Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
  1885. BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
  1886. config BR2_BINUTILS_VERSION_2_23_X
  1887. bool "binutils 2.23 removed"
  1888. select BR2_LEGACY
  1889. help
  1890. Binutils 2.23 has been removed, using a newer version is
  1891. recommended.
  1892. config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
  1893. bool "eglibc support has been removed"
  1894. select BR2_LEGACY
  1895. help
  1896. The eglibc project no longer exists, as it has been merged
  1897. back into the glibc project. Therefore, support for eglibc
  1898. has been removed, and glibc should be used instead.
  1899. config BR2_GDB_VERSION_7_8
  1900. bool "gdb 7.8 has been removed"
  1901. select BR2_LEGACY
  1902. help
  1903. The 7.8 version of gdb has been removed. Use a newer version
  1904. instead.
  1905. ###############################################################################
  1906. comment "Legacy options removed in 2016.05"
  1907. config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
  1908. bool "openvpn polarssl crypto backend removed"
  1909. select BR2_LEGACY
  1910. help
  1911. The OpenVPN polarssl crypto backend option has been removed.
  1912. Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
  1913. compatible with mbedtls (polarssl) series 2.x which is the
  1914. version provided in buildroot. And both can't coexist.
  1915. It now uses OpenSSL as the only option.
  1916. config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
  1917. bool "nginx http spdy module removed"
  1918. select BR2_LEGACY
  1919. select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
  1920. help
  1921. The ngx_http_spdy_module has been superseded by the
  1922. ngx_http_v2_module since nginx v1.9.5. The
  1923. ngx_http_v2_module modules has been automatically selected
  1924. in your configuration.
  1925. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
  1926. bool "gst1-plugins-bad rtp plugin moved to good"
  1927. select BR2_LEGACY
  1928. help
  1929. The rtp plugin has been moved from gst1-plugins-base to
  1930. gst1-plugins-good.
  1931. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
  1932. bool "gst1-plugins-bad mpg123 plugin moved to ugly"
  1933. select BR2_LEGACY
  1934. help
  1935. The mpg123 plugin has been moved from gst1-plugins-bad to
  1936. gst1-plugins-ugly.
  1937. config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
  1938. bool "PowerPC Sourcery toolchain has been removed"
  1939. select BR2_LEGACY
  1940. help
  1941. The Sourcery CodeBench toolchain for the PowerPC
  1942. architecture has been removed, as it was very old, not
  1943. maintained, and causing numerous build failures with modern
  1944. userspace packages.
  1945. config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
  1946. bool "PowerPC Sourcery E500v2 toolchain has been removed"
  1947. select BR2_LEGACY
  1948. help
  1949. The Sourcery CodeBench toolchain for the PowerPC E500v2
  1950. architecture has been removed, as it was very old, not
  1951. maintained, and causing numerous build failures with modern
  1952. userspace packages.
  1953. config BR2_x86_i386
  1954. bool "x86 i386 support removed"
  1955. select BR2_LEGACY
  1956. help
  1957. The support for the i386 processors of the x86 architecture
  1958. has been removed.
  1959. config BR2_PACKAGE_QT5QUICK1
  1960. bool "qt5quick1 package removed"
  1961. select BR2_LEGACY
  1962. help
  1963. The qt5quick1 package has been removed, since it was removed
  1964. from upstream starting from Qt 5.6.
  1965. config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
  1966. string "uboot custom patch dir has been removed"
  1967. help
  1968. The uboot custom patch directory option has been removed. Use
  1969. the improved BR2_TARGET_UBOOT_PATCH option instead.
  1970. config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
  1971. bool
  1972. default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
  1973. select BR2_LEGACY
  1974. # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
  1975. # boot/uboot/Config.in
  1976. config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
  1977. bool "xf86-input-void removed"
  1978. select BR2_LEGACY
  1979. help
  1980. The xf86-input-void package has been removed, there's no need
  1981. for it in any modern (post-2007) xorg server.
  1982. config BR2_KERNEL_HEADERS_3_17
  1983. bool "kernel headers version 3.17.x are no longer supported"
  1984. select BR2_LEGACY
  1985. help
  1986. Version 3.17.x of the Linux kernel headers have been
  1987. deprecated for more than four buildroot releases and are now
  1988. removed.
  1989. config BR2_GDB_VERSION_7_7
  1990. bool "gdb 7.7 has been removed"
  1991. select BR2_LEGACY
  1992. help
  1993. The 7.7 version of gdb has been removed. Use a newer version
  1994. instead.
  1995. config BR2_PACKAGE_FOOMATIC_FILTERS
  1996. bool "foomatic-filters"
  1997. select BR2_LEGACY
  1998. help
  1999. The foomatic-filters package was removed.
  2000. config BR2_PACKAGE_SAMBA
  2001. bool "samba"
  2002. select BR2_LEGACY
  2003. help
  2004. The samba package was removed in favour of samba4 since the
  2005. 3.x series isn't supported by upstream any longer.
  2006. config BR2_PACKAGE_KODI_WAVPACK
  2007. bool "wavpack"
  2008. select BR2_LEGACY
  2009. help
  2010. wavpack support was removed in favour of ffmpeg:
  2011. https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
  2012. config BR2_PACKAGE_KODI_RSXS
  2013. bool "rsxs support in Kodi was moved to an addon"
  2014. select BR2_LEGACY
  2015. select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
  2016. help
  2017. rsxs support in Kodi was moved to an addon
  2018. config BR2_PACKAGE_KODI_GOOM
  2019. bool "Goom support in Kodi was moved to an addon"
  2020. select BR2_LEGACY
  2021. select BR2_PACKAGE_KODI_VISUALISATION_GOOM
  2022. help
  2023. Goom support in Kodi was moved to an addon
  2024. config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
  2025. bool "systemd all extras option has been removed"
  2026. select BR2_LEGACY
  2027. select BR2_PACKAGE_XZ
  2028. select BR2_PACKAGE_LIBGCRYPT
  2029. help
  2030. The systemd option to enable "all extras" has been
  2031. removed. To get the same features, the libgcrypt and xz
  2032. package should now be enabled.
  2033. config BR2_GCC_VERSION_4_5_X
  2034. bool "gcc 4.5.x has been removed"
  2035. select BR2_LEGACY
  2036. help
  2037. The 4.5.x version of gcc has been removed. Use a newer
  2038. version instead.
  2039. config BR2_PACKAGE_SQLITE_READLINE
  2040. bool "sqlite command-line editing support was updated"
  2041. select BR2_PACKAGE_NCURSES
  2042. select BR2_PACKAGE_READLINE
  2043. select BR2_LEGACY
  2044. help
  2045. This option was removed in favour of the sqlite package
  2046. deciding itself depending on the enabled packages whether
  2047. command-line editing should be enabled, it also also takes
  2048. libedit into account.
  2049. ###############################################################################
  2050. comment "Legacy options removed in 2016.02"
  2051. config BR2_PACKAGE_DOVECOT_BZIP2
  2052. bool "bzip2 support option has been removed"
  2053. select BR2_LEGACY
  2054. select BR2_PACKAGE_BZIP2
  2055. help
  2056. Bzip2 support is built if the bzip2 package is selected.
  2057. config BR2_PACKAGE_DOVECOT_ZLIB
  2058. bool "zlib support option has been removed"
  2059. select BR2_LEGACY
  2060. select BR2_PACKAGE_ZLIB
  2061. help
  2062. Zlib support is built if the zlib package is selected.
  2063. config BR2_PACKAGE_E2FSPROGS_FINDFS
  2064. bool "e2fsprogs findfs option has been removed"
  2065. select BR2_LEGACY
  2066. help
  2067. This option attempted to enable findfs capabilities from
  2068. e2fsprogs but has not worked since July 2015 (due to
  2069. packaging changes). One can use BusyBox's findfs support or
  2070. enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
  2071. config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
  2072. bool "openpowerlink debug option has been removed"
  2073. select BR2_LEGACY
  2074. help
  2075. This option depends on BR2_ENABLE_DEBUG which should not be
  2076. used by packages anymore.
  2077. config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
  2078. bool "openpowerlink package has been updated"
  2079. select BR2_LEGACY
  2080. select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
  2081. help
  2082. openpowerlink kernel modules are built if the
  2083. kernel stack library is selected.
  2084. config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
  2085. bool "openpowerlink package has been updated"
  2086. select BR2_LEGACY
  2087. select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
  2088. help
  2089. The user space support has been split in two part:
  2090. - a monolitic user space library
  2091. - a user spae deamon driver
  2092. config BR2_LINUX_KERNEL_SAME_AS_HEADERS
  2093. bool "using the linux headers version for the kernel has been removed"
  2094. select BR2_LEGACY
  2095. help
  2096. The option to use the version of the kernel headers for the
  2097. kernel to build has been removed.
  2098. There is now the converse, better-suited and more versatile
  2099. option to use the kernel version for the linux headers.
  2100. config BR2_PACKAGE_CUPS_PDFTOPS
  2101. bool "Pdftops support has been removed from Cups"
  2102. select BR2_PACKAGE_CUPS_FILTERS
  2103. select BR2_LEGACY
  2104. help
  2105. Pdftops support has been removed from the cups package
  2106. It is now part of the cups-filters package.
  2107. config BR2_KERNEL_HEADERS_3_16
  2108. bool "kernel headers version 3.16.x are no longer supported"
  2109. select BR2_LEGACY
  2110. help
  2111. Version 3.16.x of the Linux kernel headers have been
  2112. deprecated for more than four buildroot releases and are now
  2113. removed.
  2114. config BR2_PACKAGE_PYTHON_PYXML
  2115. bool "python-pyxml package has been removed"
  2116. select BR2_LEGACY
  2117. help
  2118. PyXML is obsolete and its functionality is covered either via
  2119. native Python XML support or python-lxml package.
  2120. # BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
  2121. config BR2_ENABLE_SSP
  2122. bool "Stack Smashing protection now has different levels"
  2123. help
  2124. The protection offered by SSP can now be selected from
  2125. different protection levels. Be sure to review the SSP level
  2126. in the build options menu.
  2127. config BR2_PACKAGE_DIRECTFB_CLE266
  2128. bool "cle266 driver for directfb removed"
  2129. select BR2_LEGACY
  2130. help
  2131. The cle266 directfb driver support has been removed.
  2132. It doesn't build in the latest version and it's unlikely
  2133. anyone has any use for it.
  2134. config BR2_PACKAGE_DIRECTFB_UNICHROME
  2135. bool "unichrome driver for directfb removed"
  2136. select BR2_LEGACY
  2137. help
  2138. The unichrome directfb driver support has been removed.
  2139. It doesn't build in the latest version and it's unlikely
  2140. anyone has any use for it.
  2141. config BR2_PACKAGE_LIBELEMENTARY
  2142. bool "libelementary has been renamed to elementary"
  2143. select BR2_LEGACY
  2144. select BR2_PACKAGE_ELEMENTARY
  2145. help
  2146. The libelementary package has been renamed to match the
  2147. upstream name.
  2148. config BR2_PACKAGE_LIBEINA
  2149. bool "libeina package has been removed"
  2150. select BR2_LEGACY
  2151. select BR2_PACKAGE_EFL
  2152. help
  2153. With EFL 1.15, libeina is now provided by the efl package.
  2154. config BR2_PACKAGE_LIBEET
  2155. bool "libeet package has been removed"
  2156. select BR2_LEGACY
  2157. select BR2_PACKAGE_EFL
  2158. help
  2159. With EFL 1.15, libeet is now provided by the efl package.
  2160. config BR2_PACKAGE_LIBEVAS
  2161. bool "libevas package has been removed"
  2162. select BR2_LEGACY
  2163. select BR2_PACKAGE_EFL
  2164. help
  2165. With EFL 1.15, libevas is now provided by the efl package.
  2166. config BR2_PACKAGE_LIBECORE
  2167. bool "libecore package has been removed"
  2168. select BR2_LEGACY
  2169. select BR2_PACKAGE_EFL
  2170. help
  2171. With EFL 1.15, libecore is now provided by the efl package.
  2172. config BR2_PACKAGE_LIBEDBUS
  2173. bool "libedbus package has been removed"
  2174. select BR2_LEGACY
  2175. select BR2_PACKAGE_EFL
  2176. help
  2177. With EFL 1.15, libedbus is now provided by the efl package.
  2178. config BR2_PACKAGE_LIBEFREET
  2179. bool "libefreet package has been removed"
  2180. select BR2_LEGACY
  2181. select BR2_PACKAGE_EFL
  2182. help
  2183. With EFL 1.15, libefreet is now provided by the efl package.
  2184. config BR2_PACKAGE_LIBEIO
  2185. bool "libeio package has been removed"
  2186. select BR2_LEGACY
  2187. select BR2_PACKAGE_EFL
  2188. help
  2189. With EFL 1.15, libeio is now provided by the efl package.
  2190. config BR2_PACKAGE_LIBEMBRYO
  2191. bool "libembryo package has been removed"
  2192. select BR2_LEGACY
  2193. select BR2_PACKAGE_EFL
  2194. help
  2195. With EFL 1.15, libembryo is now provided by the efl package.
  2196. config BR2_PACKAGE_LIBEDJE
  2197. bool "libedje package has been removed"
  2198. select BR2_LEGACY
  2199. select BR2_PACKAGE_EFL
  2200. help
  2201. With EFL 1.15, libedje is now provided by the efl package.
  2202. config BR2_PACKAGE_LIBETHUMB
  2203. bool "libethumb package has been removed"
  2204. select BR2_LEGACY
  2205. select BR2_PACKAGE_EFL
  2206. help
  2207. With EFL 1.15, libethumb is now provided by the efl package.
  2208. config BR2_PACKAGE_INFOZIP
  2209. bool "infozip option has been renamed to zip"
  2210. select BR2_LEGACY
  2211. select BR2_PACKAGE_ZIP
  2212. help
  2213. Info-Zip's Zip package has been renamed from infozip to zip,
  2214. to avoid ambiguities with Info-Zip's UnZip which has been
  2215. added in the unzip package.
  2216. config BR2_BR2_PACKAGE_NODEJS_0_10_X
  2217. bool "nodejs 0.10.x option removed"
  2218. select BR2_LEGACY
  2219. select BR2_PACKAGE_NODEJS
  2220. help
  2221. nodejs 0.10.x option has been removed. 0.10.x is now
  2222. automatically chosen for ARMv5 architectures only and the
  2223. latest nodejs for all other supported architectures. The
  2224. correct nodejs version has been automatically selected in your
  2225. configuration.
  2226. config BR2_BR2_PACKAGE_NODEJS_0_12_X
  2227. bool "nodejs version 0.12.x has been removed"
  2228. select BR2_LEGACY
  2229. select BR2_PACKAGE_NODEJS
  2230. help
  2231. nodejs version 0.12.x has been removed. As an alternative,
  2232. the latest nodejs version has been automatically selected in
  2233. your configuration.
  2234. config BR2_BR2_PACKAGE_NODEJS_4_X
  2235. bool "nodejs version 4.x has been removed"
  2236. select BR2_LEGACY
  2237. select BR2_PACKAGE_NODEJS
  2238. help
  2239. nodejs version 4.x has been removed. As an alternative,
  2240. the latest nodejs version has been automatically selected in
  2241. your configuration.
  2242. ###############################################################################
  2243. comment "Legacy options removed in 2015.11"
  2244. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
  2245. bool "gst1-plugins-bad real plugin has been removed"
  2246. select BR2_LEGACY
  2247. help
  2248. The real plugin from GStreamer 1 bad plugins has been
  2249. removed.
  2250. config BR2_PACKAGE_MEDIA_CTL
  2251. bool "media-ctl package has been removed"
  2252. select BR2_LEGACY
  2253. select BR2_PACKAGE_LIBV4L
  2254. select BR2_PACKAGE_LIBV4L_UTILS
  2255. help
  2256. media-ctl source and developement have been moved to v4l-utils
  2257. since June 2014. For an up-to-date media-ctl version select
  2258. BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
  2259. config BR2_PACKAGE_SCHIFRA
  2260. bool "schifra package has been removed"
  2261. select BR2_LEGACY
  2262. help
  2263. Schifra package has been maked broken since 2014.11 release
  2264. and haven't been fixed since then.
  2265. config BR2_PACKAGE_ZXING
  2266. bool "zxing option has been renamed"
  2267. select BR2_LEGACY
  2268. select BR2_PACKAGE_ZXING_CPP
  2269. help
  2270. ZXing no longer provides the cpp bindings, it has been renamed
  2271. to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
  2272. # Since FreeRDP has new dependencies, protect this legacy to avoid the
  2273. # infamous "unmet direct dependencies" kconfig error.
  2274. config BR2_PACKAGE_FREERDP_CLIENT
  2275. bool "freerdp client option renamed"
  2276. depends on BR2_PACKAGE_FREERDP
  2277. select BR2_LEGACY
  2278. select BR2_PACKAGE_FREERDP_CLIENT_X11
  2279. config BR2_PACKAGE_BLACKBOX
  2280. bool "blackbox package has been removed"
  2281. select BR2_LEGACY
  2282. help
  2283. Upstream is dead and the package has been deprecated for
  2284. some time. There are other alternative maintained WMs.
  2285. config BR2_KERNEL_HEADERS_3_0
  2286. bool "kernel headers version 3.0.x are no longer supported"
  2287. select BR2_LEGACY
  2288. help
  2289. Version 3.0.x of the Linux kernel headers have been deprecated
  2290. for more than four buildroot releases and are now removed.
  2291. config BR2_KERNEL_HEADERS_3_11
  2292. bool "kernel headers version 3.11.x are no longer supported"
  2293. select BR2_LEGACY
  2294. help
  2295. Version 3.11.x of the Linux kernel headers have been
  2296. deprecated for more than four buildroot releases and are now
  2297. removed.
  2298. config BR2_KERNEL_HEADERS_3_13
  2299. bool "kernel headers version 3.13.x are no longer supported"
  2300. select BR2_LEGACY
  2301. help
  2302. Version 3.13.x of the Linux kernel headers have been
  2303. deprecated for more than four buildroot releases and are now
  2304. removed.
  2305. config BR2_KERNEL_HEADERS_3_15
  2306. bool "kernel headers version 3.15.x are no longer supported"
  2307. select BR2_LEGACY
  2308. help
  2309. Version 3.15.x of the Linux kernel headers have been
  2310. deprecated for more than four buildroot releases and are now
  2311. removed.
  2312. config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
  2313. bool "DirectFB example df_andi has been removed"
  2314. select BR2_LEGACY
  2315. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2316. help
  2317. The per-DirectFB example options have been removed. The
  2318. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2319. examples.
  2320. config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
  2321. bool "DirectFB example df_bltload has been removed"
  2322. select BR2_LEGACY
  2323. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2324. help
  2325. The per-DirectFB example options have been removed. The
  2326. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2327. examples.
  2328. config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
  2329. bool "DirectFB example df_cpuload has been removed"
  2330. select BR2_LEGACY
  2331. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2332. help
  2333. The per-DirectFB example options have been removed. The
  2334. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2335. examples.
  2336. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
  2337. bool "DirectFB example df_databuffer has been removed"
  2338. select BR2_LEGACY
  2339. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2340. help
  2341. The per-DirectFB example options have been removed. The
  2342. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2343. examples.
  2344. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
  2345. bool "DirectFB example df_dioload has been removed"
  2346. select BR2_LEGACY
  2347. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2348. help
  2349. The per-DirectFB example options have been removed. The
  2350. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2351. examples.
  2352. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
  2353. bool "DirectFB example df_dok has been removed"
  2354. select BR2_LEGACY
  2355. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2356. help
  2357. The per-DirectFB example options have been removed. The
  2358. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2359. examples.
  2360. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
  2361. bool "DirectFB example df_drivertest has been removed"
  2362. select BR2_LEGACY
  2363. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2364. help
  2365. The per-DirectFB example options have been removed. The
  2366. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2367. examples.
  2368. config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
  2369. bool "DirectFB example df_fire has been removed"
  2370. select BR2_LEGACY
  2371. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2372. help
  2373. The per-DirectFB example options have been removed. The
  2374. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2375. examples.
  2376. config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
  2377. bool "DirectFB example df_flip has been removed"
  2378. select BR2_LEGACY
  2379. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2380. help
  2381. The per-DirectFB example options have been removed. The
  2382. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2383. examples.
  2384. config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
  2385. bool "DirectFB example df_fonts has been removed"
  2386. select BR2_LEGACY
  2387. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2388. help
  2389. The per-DirectFB example options have been removed. The
  2390. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2391. examples.
  2392. config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
  2393. bool "DirectFB example df_input has been removed"
  2394. select BR2_LEGACY
  2395. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2396. help
  2397. The per-DirectFB example options have been removed. The
  2398. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2399. examples.
  2400. config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
  2401. bool "DirectFB example df_joystick has been removed"
  2402. select BR2_LEGACY
  2403. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2404. help
  2405. The per-DirectFB example options have been removed. The
  2406. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2407. examples.
  2408. config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
  2409. bool "DirectFB example df_knuckles has been removed"
  2410. select BR2_LEGACY
  2411. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2412. help
  2413. The per-DirectFB example options have been removed. The
  2414. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2415. examples.
  2416. config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
  2417. bool "DirectFB example df_layer has been removed"
  2418. select BR2_LEGACY
  2419. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2420. help
  2421. The per-DirectFB example options have been removed. The
  2422. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2423. examples.
  2424. config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
  2425. bool "DirectFB example df_matrix has been removed"
  2426. select BR2_LEGACY
  2427. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2428. help
  2429. The per-DirectFB example options have been removed. The
  2430. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2431. examples.
  2432. config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
  2433. bool "DirectFB example df_matrix_water has been removed"
  2434. select BR2_LEGACY
  2435. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2436. help
  2437. The per-DirectFB example options have been removed. The
  2438. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2439. examples.
  2440. config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
  2441. bool "DirectFB example df_neo has been removed"
  2442. select BR2_LEGACY
  2443. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2444. help
  2445. The per-DirectFB example options have been removed. The
  2446. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2447. examples.
  2448. config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
  2449. bool "DirectFB example df_netload has been removed"
  2450. select BR2_LEGACY
  2451. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2452. help
  2453. The per-DirectFB example options have been removed. The
  2454. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2455. examples.
  2456. config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
  2457. bool "DirectFB example df_palette has been removed"
  2458. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2459. help
  2460. The per-DirectFB example options have been removed. The
  2461. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2462. examples.
  2463. config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
  2464. bool "DirectFB example df_particle has been removed"
  2465. select BR2_LEGACY
  2466. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2467. help
  2468. The per-DirectFB example options have been removed. The
  2469. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2470. examples.
  2471. config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
  2472. bool "DirectFB example df_porter has been removed"
  2473. select BR2_LEGACY
  2474. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2475. help
  2476. The per-DirectFB example options have been removed. The
  2477. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2478. examples.
  2479. config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
  2480. bool "DirectFB example df_stress has been removed"
  2481. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2482. help
  2483. The per-DirectFB example options have been removed. The
  2484. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2485. examples.
  2486. config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
  2487. bool "DirectFB example df_texture has been removed"
  2488. select BR2_LEGACY
  2489. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2490. help
  2491. The per-DirectFB example options have been removed. The
  2492. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2493. examples.
  2494. config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
  2495. bool "DirectFB example df_video has been removed"
  2496. select BR2_LEGACY
  2497. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2498. help
  2499. The per-DirectFB example options have been removed. The
  2500. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2501. examples.
  2502. config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
  2503. bool "DirectFB example df_video_particle has been removed"
  2504. select BR2_LEGACY
  2505. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2506. help
  2507. The per-DirectFB example options have been removed. The
  2508. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2509. examples.
  2510. config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
  2511. bool "DirectFB example df_window has been removed"
  2512. select BR2_LEGACY
  2513. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  2514. help
  2515. The per-DirectFB example options have been removed. The
  2516. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  2517. examples.
  2518. config BR2_PACKAGE_KOBS_NG
  2519. bool "kobs-ng was replaced by imx-kobs"
  2520. select BR2_LEGACY
  2521. select BR2_PACKAGE_IMX_KOBS
  2522. help
  2523. The outdated kobs-ng has been replaced by the Freescale-
  2524. maintained imx-kobs package.
  2525. config BR2_PACKAGE_SAWMAN
  2526. bool "sawman package removed"
  2527. select BR2_LEGACY
  2528. select BR2_PACKAGE_DIRECTFB_SAWMAN
  2529. help
  2530. This option has been removed because the sawman package no
  2531. longer exists: it was merged inside DirectFB itself. This
  2532. feature can now be enabled using the
  2533. BR2_PACKAGE_DIRECTFB_SAWMAN option.
  2534. config BR2_PACKAGE_DIVINE
  2535. bool "divine package removed"
  2536. select BR2_LEGACY
  2537. select BR2_PACKAGE_DIRECTFB_DIVINE
  2538. help
  2539. This option has been removed because the divine package no
  2540. longer exists: it was merged inside DirectFB itself. This
  2541. feature can now be enabled using the
  2542. BR2_PACKAGE_DIRECTFB_DIVINE option.
  2543. ###############################################################################
  2544. comment "Legacy options removed in 2015.08"
  2545. config BR2_PACKAGE_KODI_PVR_ADDONS
  2546. bool "Kodi PVR addon was split"
  2547. select BR2_LEGACY
  2548. select BR2_PACKAGE_KODI_PVR_ARGUSTV
  2549. select BR2_PACKAGE_KODI_PVR_DVBLINK
  2550. select BR2_PACKAGE_KODI_PVR_DVBVIEWER
  2551. select BR2_PACKAGE_KODI_PVR_FILMON
  2552. select BR2_PACKAGE_KODI_PVR_HTS
  2553. select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
  2554. select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
  2555. select BR2_PACKAGE_KODI_PVR_MYTHTV
  2556. select BR2_PACKAGE_KODI_PVR_NEXTPVR
  2557. select BR2_PACKAGE_KODI_PVR_NJOY
  2558. select BR2_PACKAGE_KODI_PVR_PCTV
  2559. select BR2_PACKAGE_KODI_PVR_STALKER
  2560. select BR2_PACKAGE_KODI_PVR_VBOX
  2561. select BR2_PACKAGE_KODI_PVR_VDR_VNSI
  2562. select BR2_PACKAGE_KODI_PVR_VUPLUS
  2563. select BR2_PACKAGE_KODI_PVR_WMC
  2564. help
  2565. Kodi PVR addon was split into seperate modules
  2566. config BR2_BINUTILS_VERSION_2_23_2
  2567. bool "binutils 2.23 option renamed"
  2568. select BR2_LEGACY
  2569. help
  2570. Binutils 2.23.2 has been removed, using a newer version is
  2571. recommended.
  2572. config BR2_BINUTILS_VERSION_2_24
  2573. bool "binutils 2.24 option renamed"
  2574. select BR2_LEGACY
  2575. select BR2_BINUTILS_VERSION_2_24_X
  2576. help
  2577. The binutils version option has been renamed to match the
  2578. same patchlevel logic used by gcc. The new option is now
  2579. BR2_BINUTILS_VERSION_2_24_X.
  2580. config BR2_BINUTILS_VERSION_2_25
  2581. bool "binutils 2.25 option renamed"
  2582. select BR2_LEGACY
  2583. select BR2_BINUTILS_VERSION_2_25_X
  2584. help
  2585. The binutils version option has been renamed to match the
  2586. same patchlevel logic used by gcc. The new option is now
  2587. BR2_BINUTILS_VERSION_2_25_X.
  2588. config BR2_PACKAGE_PERF
  2589. bool "perf option has been renamed"
  2590. select BR2_LEGACY
  2591. select BR2_LINUX_KERNEL_TOOL_PERF
  2592. help
  2593. The perf package has been moved as a Linux tools package,
  2594. and the option to enable it is now
  2595. BR2_LINUX_KERNEL_TOOL_PERF.
  2596. config BR2_BINUTILS_VERSION_2_22
  2597. bool "binutils 2.22 removed"
  2598. select BR2_LEGACY
  2599. help
  2600. Binutils 2.22 has been removed, using a newer version is
  2601. recommended.
  2602. config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
  2603. bool "gpu-viv-bin-mx6q"
  2604. select BR2_LEGACY
  2605. select BR2_PACKAGE_IMX_GPU_VIV
  2606. help
  2607. Vivante graphics libraries have been renamed to
  2608. BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
  2609. name.
  2610. config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
  2611. bool "libsemanage python bindings removed"
  2612. depends on BR2_PACKAGE_PYTHON
  2613. select BR2_LEGACY
  2614. help
  2615. This option has been removed, since the libsemanage Python
  2616. bindings on the target were not useful.
  2617. config BR2_TARGET_UBOOT_NETWORK
  2618. bool "U-Boot custom network settings removed"
  2619. select BR2_LEGACY
  2620. help
  2621. U-Boot's custom network settings options have been removed.
  2622. ###############################################################################
  2623. comment "Legacy options removed in 2015.05"
  2624. config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
  2625. bool "jffs2 16kB erasesize NAND flash option renamed"
  2626. select BR2_LEGACY
  2627. select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
  2628. help
  2629. The JFFS2 NAND flash options now longer include the page
  2630. size.
  2631. config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
  2632. bool "jffs2 128kB erasesize NAND flash option renamed"
  2633. select BR2_LEGACY
  2634. select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
  2635. help
  2636. The JFFS2 NAND flash options now longer include the page
  2637. size.
  2638. config BR2_PACKAGE_MONO_20
  2639. bool "2.0/3.5 .Net Runtime"
  2640. select BR2_LEGACY
  2641. help
  2642. This option no longer exists, all versions of the .Net
  2643. runtime are now installed.
  2644. config BR2_PACKAGE_MONO_40
  2645. bool "4.0 .Net Runtime"
  2646. select BR2_LEGACY
  2647. help
  2648. This option no longer exists, all versions of the .Net
  2649. runtime are now installed.
  2650. config BR2_PACKAGE_MONO_45
  2651. bool "4.5 .Net Runtime"
  2652. select BR2_LEGACY
  2653. help
  2654. This option no longer exists, all versions of the .Net
  2655. runtime are now installed.
  2656. config BR2_CIVETWEB_WITH_LUA
  2657. bool "civetweb lua option renamed"
  2658. select BR2_LEGACY
  2659. select BR2_PACKAGE_CIVETWEB_WITH_LUA
  2660. help
  2661. civetweb's lua option has been renamed to
  2662. BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
  2663. packages name options.
  2664. config BR2_PACKAGE_TIFF_TIFF2PDF
  2665. bool "tiff utility-specific option removed"
  2666. select BR2_LEGACY
  2667. select BR2_PACKAGE_TIFF_UTILITIES
  2668. help
  2669. utility-specific options have been removed in favour of
  2670. the new option BR2_PACKAGE_TIFF_UTILITIES.
  2671. config BR2_PACKAGE_TIFF_TIFFCP
  2672. bool "tiff utility-specific option removed"
  2673. select BR2_LEGACY
  2674. select BR2_PACKAGE_TIFF_UTILITIES
  2675. help
  2676. utility-specific options have been removed in favour of
  2677. the new option BR2_PACKAGE_TIFF_UTILITIES.
  2678. config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
  2679. bool "RTAI patch file path has been removed"
  2680. select BR2_LEGACY
  2681. help
  2682. This option has never worked, so it has been removed.
  2683. config BR2_TARGET_GENERIC_PASSWD_DES
  2684. bool "Encoding passwords with DES has been removed"
  2685. select BR2_LEGACY
  2686. help
  2687. Paswords can now only be encoded with either of md5, sha256 or
  2688. sha512. The default is md5, which is stronger that DES (but
  2689. still pretty weak).
  2690. config BR2_PACKAGE_GTK2_THEME_HICOLOR
  2691. bool "hicolor (default theme) is a duplicate"
  2692. select BR2_LEGACY
  2693. select BR2_PACKAGE_HICOLOR_ICON_THEME
  2694. help
  2695. The option was just a duplicate of hicolor icon theme.
  2696. config BR2_PACKAGE_VALGRIND_PTRCHECK
  2697. bool "valgrind's PTRCheck was renamed to SGCheck"
  2698. select BR2_LEGACY
  2699. select BR2_PACKAGE_VALGRIND_SGCHECK
  2700. help
  2701. PTRCheck was renamed to SGCheck in valgrind
  2702. ###############################################################################
  2703. comment "Legacy options removed in 2015.02"
  2704. config BR2_PACKAGE_LIBGC
  2705. bool "libgc package removed"
  2706. select BR2_LEGACY
  2707. select BR2_PACKAGE_BDWGC
  2708. help
  2709. libgc has been removed because we have the same package under
  2710. a different name, bdwgc.
  2711. config BR2_PACKAGE_WDCTL
  2712. bool "util-linux' wdctl option has been renamed"
  2713. select BR2_LEGACY
  2714. select BR2_PACKAGE_UTIL_LINUX_WDCTL
  2715. help
  2716. util-linux' wdctl option has been renamed to
  2717. BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other
  2718. options are named.
  2719. config BR2_PACKAGE_UTIL_LINUX_ARCH
  2720. bool "util-linux' arch option has been removed"
  2721. select BR2_LEGACY
  2722. help
  2723. util-linux' arch was dropped in util-linux 2.23, in favor of
  2724. the coreutils version.
  2725. config BR2_PACKAGE_UTIL_LINUX_DDATE
  2726. bool "util-linux' ddate option has been removed"
  2727. select BR2_LEGACY
  2728. help
  2729. util-linux' ddate was dropped in util-linux 2.23.
  2730. config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
  2731. bool "rpm's bzip2 payloads option has been removed"
  2732. select BR2_LEGACY
  2733. select BR2_PACKAGE_BZIP2
  2734. help
  2735. The bzip2 payloads option rely entirely on the dependant
  2736. package bzip2. So, you need to select it to enable this
  2737. feature.
  2738. config BR2_PACKAGE_RPM_XZ_PAYLOADS
  2739. bool "rpm's xz payloads option has been removed"
  2740. select BR2_LEGACY
  2741. select BR2_PACKAGE_XZ
  2742. help
  2743. The xz payloads option rely entirely on the dependant package
  2744. xz. So, you need to select it to enable this feature.
  2745. config BR2_PACKAGE_M4
  2746. bool "m4 target package removed"
  2747. select BR2_LEGACY
  2748. help
  2749. The m4 target package has been removed, it's been
  2750. deprecated for some time now.
  2751. config BR2_PACKAGE_FLEX_BINARY
  2752. bool "flex binary in target option removed"
  2753. select BR2_LEGACY
  2754. help
  2755. The flex binary in the target option has been removed.
  2756. It's been deprecated for some time now and is essentially a
  2757. development tool which isn't very useful in the target.
  2758. config BR2_PACKAGE_BISON
  2759. bool "bison target package removed"
  2760. select BR2_LEGACY
  2761. help
  2762. The bison target package has been removed, it's been
  2763. deprecated for some time now and is essentially a development
  2764. tool which isn't very useful in the target.
  2765. config BR2_PACKAGE_GOB2
  2766. bool "gob2 target package removed"
  2767. select BR2_LEGACY
  2768. help
  2769. The gob2 target package has been removed, it's been
  2770. deprecated for some time now and was essentially useless
  2771. without a target toolchain.
  2772. config BR2_PACKAGE_DISTCC
  2773. bool "distcc target package removed"
  2774. select BR2_LEGACY
  2775. help
  2776. The distcc target package has been removed, it's been
  2777. deprecated for some time now and was essentially useless
  2778. without a target toolchain.
  2779. config BR2_PACKAGE_HASERL_VERSION_0_8_X
  2780. bool "haserl 0.8.x version removed"
  2781. select BR2_LEGACY
  2782. help
  2783. The 0.8.x version option for haserl has been removed since it
  2784. has been deprecated for some time now.
  2785. You should be able to use the 0.9.x version without issues.
  2786. config BR2_PACKAGE_STRONGSWAN_TOOLS
  2787. bool "strongswan option has been removed"
  2788. select BR2_LEGACY
  2789. select BR2_PACKAGE_STRONGSWAN_PKI
  2790. select BR2_PACKAGE_STRONGSWAN_SCEP
  2791. help
  2792. The tools option has been removed upstream and the different
  2793. tools have been split between the pki and scep options, with
  2794. others deprecated.
  2795. config BR2_PACKAGE_XBMC_ADDON_XVDR
  2796. bool "xbmc-addon-xvdr removed"
  2797. select BR2_LEGACY
  2798. help
  2799. According to the github project page:
  2800. https://github.com/pipelka/xbmc-addon-xvdr
  2801. this package is discontinued.
  2802. config BR2_PACKAGE_XBMC_PVR_ADDONS
  2803. bool "xbmc options have been renamed"
  2804. select BR2_LEGACY
  2805. select BR2_PACKAGE_KODI_PVR_ADDONS
  2806. help
  2807. The XBMC media center project was renamed to Kodi
  2808. entertainment center
  2809. config BR2_PACKAGE_XBMC
  2810. bool "xbmc options have been renamed"
  2811. select BR2_LEGACY
  2812. select BR2_PACKAGE_KODI
  2813. help
  2814. The XBMC media center project was renamed to Kodi
  2815. entertainment center
  2816. config BR2_PACKAGE_XBMC_ALSA_LIB
  2817. bool "xbmc options have been renamed"
  2818. select BR2_LEGACY
  2819. select BR2_PACKAGE_KODI_ALSA_LIB
  2820. help
  2821. The XBMC media center project was renamed to Kodi
  2822. entertainment center
  2823. config BR2_PACKAGE_XBMC_AVAHI
  2824. bool "xbmc options have been renamed"
  2825. select BR2_LEGACY
  2826. select BR2_PACKAGE_KODI_AVAHI
  2827. help
  2828. The XBMC media center project was renamed to Kodi
  2829. entertainment center
  2830. config BR2_PACKAGE_XBMC_DBUS
  2831. bool "xbmc options have been renamed"
  2832. select BR2_LEGACY
  2833. select BR2_PACKAGE_KODI_DBUS
  2834. help
  2835. The XBMC media center project was renamed to Kodi
  2836. entertainment center
  2837. config BR2_PACKAGE_XBMC_LIBBLURAY
  2838. bool "xbmc options have been renamed"
  2839. select BR2_LEGACY
  2840. select BR2_PACKAGE_KODI_LIBBLURAY
  2841. help
  2842. The XBMC media center project was renamed to Kodi
  2843. entertainment center
  2844. config BR2_PACKAGE_XBMC_GOOM
  2845. bool "xbmc options have been renamed"
  2846. select BR2_LEGACY
  2847. select BR2_PACKAGE_KODI_GOOM
  2848. help
  2849. The XBMC media center project was renamed to Kodi
  2850. entertainment center
  2851. config BR2_PACKAGE_XBMC_RSXS
  2852. bool "xbmc options have been renamed"
  2853. select BR2_LEGACY
  2854. select BR2_PACKAGE_KODI_RSXS
  2855. help
  2856. The XBMC media center project was renamed to Kodi
  2857. entertainment center
  2858. config BR2_PACKAGE_XBMC_LIBCEC
  2859. bool "xbmc options have been renamed"
  2860. select BR2_LEGACY
  2861. select BR2_PACKAGE_KODI_LIBCEC
  2862. help
  2863. The XBMC media center project was renamed to Kodi
  2864. entertainment center
  2865. config BR2_PACKAGE_XBMC_LIBMICROHTTPD
  2866. bool "xbmc options have been renamed"
  2867. select BR2_LEGACY
  2868. select BR2_PACKAGE_KODI_LIBMICROHTTPD
  2869. help
  2870. The XBMC media center project was renamed to Kodi
  2871. entertainment center
  2872. config BR2_PACKAGE_XBMC_LIBNFS
  2873. bool "xbmc options have been renamed"
  2874. select BR2_LEGACY
  2875. select BR2_PACKAGE_KODI_LIBNFS
  2876. help
  2877. The XBMC media center project was renamed to Kodi
  2878. entertainment center
  2879. config BR2_PACKAGE_XBMC_RTMPDUMP
  2880. bool "xbmc options have been renamed"
  2881. select BR2_LEGACY
  2882. select BR2_PACKAGE_KODI_RTMPDUMP
  2883. help
  2884. The XBMC media center project was renamed to Kodi
  2885. entertainment center
  2886. config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
  2887. bool "xbmc options have been renamed"
  2888. select BR2_LEGACY
  2889. select BR2_PACKAGE_KODI_LIBSHAIRPLAY
  2890. help
  2891. The XBMC media center project was renamed to Kodi
  2892. entertainment center
  2893. config BR2_PACKAGE_XBMC_LIBSMBCLIENT
  2894. bool "xbmc options have been renamed"
  2895. select BR2_LEGACY
  2896. select BR2_PACKAGE_KODI_LIBSMBCLIENT
  2897. help
  2898. The XBMC media center project was renamed to Kodi
  2899. entertainment center
  2900. config BR2_PACKAGE_XBMC_LIBTHEORA
  2901. bool "xbmc options have been renamed"
  2902. select BR2_LEGACY
  2903. select BR2_PACKAGE_KODI_LIBTHEORA
  2904. help
  2905. The XBMC media center project was renamed to Kodi
  2906. entertainment center
  2907. config BR2_PACKAGE_XBMC_LIBUSB
  2908. bool "xbmc options have been renamed"
  2909. select BR2_LEGACY
  2910. select BR2_PACKAGE_KODI_LIBUSB
  2911. help
  2912. The XBMC media center project was renamed to Kodi
  2913. entertainment center
  2914. config BR2_PACKAGE_XBMC_LIBVA
  2915. bool "xbmc options have been renamed"
  2916. select BR2_LEGACY
  2917. select BR2_PACKAGE_KODI_LIBVA
  2918. help
  2919. The XBMC media center project was renamed to Kodi
  2920. entertainment center
  2921. config BR2_PACKAGE_XBMC_WAVPACK
  2922. bool "xbmc options have been renamed"
  2923. select BR2_LEGACY
  2924. select BR2_PACKAGE_KODI_WAVPACK
  2925. help
  2926. The XBMC media center project was renamed to Kodi
  2927. entertainment center
  2928. config BR2_PREFER_STATIC_LIB
  2929. bool "static library option renamed"
  2930. select BR2_LEGACY
  2931. help
  2932. The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
  2933. highlights the fact that the option no longer "prefers"
  2934. static libraries, but "enforces" static libraries (i.e
  2935. shared libraries are completely unused).
  2936. Take care of updating the type of libraries you want under the
  2937. "Build options" menu.
  2938. ###############################################################################
  2939. comment "Legacy options removed in 2014.11"
  2940. config BR2_x86_generic
  2941. bool "x86 generic variant has been removed"
  2942. select BR2_LEGACY
  2943. help
  2944. The generic x86 CPU variant has been removed. Use another
  2945. CPU variant instead.
  2946. config BR2_GCC_VERSION_4_4_X
  2947. bool "gcc 4.4.x has been removed"
  2948. select BR2_LEGACY
  2949. help
  2950. The 4.4.x version of gcc has been removed. Use a newer
  2951. version instead.
  2952. config BR2_sparc_sparchfleon
  2953. bool "sparchfleon CPU has been removed"
  2954. select BR2_LEGACY
  2955. help
  2956. The sparchfleon CPU was only supported in a patched gcc 4.4
  2957. version. Its support has been removed in favor of the leon3
  2958. CPU starting from gcc 4.8.x.
  2959. config BR2_sparc_sparchfleonv8
  2960. bool "sparchfleonv8 CPU has been removed"
  2961. select BR2_LEGACY
  2962. help
  2963. The sparchfleonv8 CPU was only supported in a patched gcc
  2964. 4.4 version. Its support has been removed in favor of the
  2965. leon3 CPU starting from gcc 4.8.x.
  2966. config BR2_sparc_sparcsfleon
  2967. bool "sparcsfleon CPU has been removed"
  2968. select BR2_LEGACY
  2969. help
  2970. The sparcsfleon CPU was only supported in a patched gcc 4.4
  2971. version. Its support has been removed in favor of the leon3
  2972. CPU starting from gcc 4.8.x.
  2973. config BR2_sparc_sparcsfleonv8
  2974. bool "sparcsfleonv8 CPU has been removed"
  2975. select BR2_LEGACY
  2976. help
  2977. The sparcsfleonv8 CPU was only supported in a patched gcc
  2978. 4.4 version. Its support has been removed in favor of the
  2979. leon3 CPU starting from gcc 4.8.x.
  2980. config BR2_PACKAGE_XLIB_LIBPCIACCESS
  2981. bool "xlib-libpciaccess option has been renamed"
  2982. depends on BR2_PACKAGE_XORG7
  2983. select BR2_LEGACY
  2984. select BR2_PACKAGE_LIBPCIACCESS
  2985. help
  2986. libpciaccess neither depends on X11 nor Xlib. Thus the
  2987. package has been renamed BR2_PACKAGE_LIBPCIACCESS
  2988. config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
  2989. bool "Xceive xc5000 option has been renamed"
  2990. select BR2_LEGACY
  2991. select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
  2992. help
  2993. The Xceive xc5000 option now also handles older firmwares from
  2994. Xceive (the xc4000 series), as well as new firmwares (the
  2995. xc5000c) from Cresta, who bought Xceive.
  2996. config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
  2997. bool "Chelsio T4 option has been renamed"
  2998. select BR2_LEGACY
  2999. select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
  3000. help
  3001. The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
  3002. has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
  3003. to better account for the fact that a T5 variant exists.
  3004. config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
  3005. bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
  3006. select BR2_LEGACY
  3007. help
  3008. The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
  3009. renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
  3010. select it in:
  3011. Target packages -> Hardware handling ->
  3012. Firmware -> linux-firmware -> WiFi firmware ->
  3013. iwlwifi 3160/726x revision to use (revision 7)
  3014. config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
  3015. bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
  3016. select BR2_LEGACY
  3017. help
  3018. The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
  3019. renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
  3020. select it in:
  3021. Target packages -> Hardware handling ->
  3022. Firmware -> linux-firmware -> WiFi firmware ->
  3023. iwlwifi 3160/726x revision to use (revision 8)
  3024. ###############################################################################
  3025. comment "Legacy options removed in 2014.08"
  3026. config BR2_PACKAGE_LIBELF
  3027. bool "libelf has been removed"
  3028. select BR2_PACKAGE_ELFUTILS
  3029. select BR2_LEGACY
  3030. help
  3031. The libelf package provided an old version of the libelf
  3032. library and is deprecated. The libelf library is now provided
  3033. by the elfutils package.
  3034. config BR2_KERNEL_HEADERS_3_8
  3035. bool "kernel headers version 3.8.x are no longer supported"
  3036. select BR2_LEGACY
  3037. help
  3038. Version 3.8.x of the Linux kernel headers have been deprecated
  3039. for more than four buildroot releases and are now removed.
  3040. config BR2_PACKAGE_GETTEXT_TOOLS
  3041. bool "support for gettext-tools on target has been removed"
  3042. select BR2_LEGACY
  3043. help
  3044. The option to install the gettext utilities on the target
  3045. has been removed. This is not necessary as Buildroot is not
  3046. designed to provide a full development environment on the
  3047. target. gettext tools should be used on the build machine
  3048. instead.
  3049. config BR2_PACKAGE_PROCPS
  3050. bool "procps has been replaced by procps-ng"
  3051. select BR2_PACKAGE_PROCPS_NG
  3052. select BR2_LEGACY
  3053. help
  3054. The procps package has been replaced by the equivalent
  3055. procps-ng.
  3056. config BR2_BINUTILS_VERSION_2_20_1
  3057. bool "binutils 2.20.1 has been removed"
  3058. select BR2_LEGACY
  3059. help
  3060. The 2.20.1 version of binutils has been removed. Use a newer
  3061. version instead.
  3062. config BR2_BINUTILS_VERSION_2_21
  3063. bool "binutils 2.21 has been removed"
  3064. select BR2_LEGACY
  3065. help
  3066. The 2.21 version of binutils has been removed. Use a newer
  3067. version instead.
  3068. config BR2_BINUTILS_VERSION_2_23_1
  3069. bool "binutils 2.23.1 has been removed"
  3070. select BR2_LEGACY
  3071. help
  3072. The 2.23.1 version of binutils has been removed. Use a newer
  3073. version instead.
  3074. config BR2_UCLIBC_VERSION_0_9_32
  3075. bool "uclibc 0.9.32 has been removed"
  3076. select BR2_LEGACY
  3077. help
  3078. The 0.9.32 version of uClibc has been removed. Use a newer
  3079. version instead.
  3080. config BR2_GCC_VERSION_4_3_X
  3081. bool "gcc 4.3.x has been removed"
  3082. select BR2_LEGACY
  3083. help
  3084. The 4.3.x version of gcc has been removed. Use a newer
  3085. version instead.
  3086. config BR2_GCC_VERSION_4_6_X
  3087. bool "gcc 4.6.x has been removed"
  3088. select BR2_LEGACY
  3089. help
  3090. The 4.6.x version of gcc has been removed. Use a newer
  3091. version instead.
  3092. config BR2_GDB_VERSION_7_4
  3093. bool "gdb 7.4 has been removed"
  3094. select BR2_LEGACY
  3095. help
  3096. The 7.4 version of gdb has been removed. Use a newer version
  3097. instead.
  3098. config BR2_GDB_VERSION_7_5
  3099. bool "gdb 7.5 has been removed"
  3100. select BR2_LEGACY
  3101. help
  3102. The 7.5 version of gdb has been removed. Use a newer version
  3103. instead.
  3104. config BR2_BUSYBOX_VERSION_1_19_X
  3105. bool "busybox version selection has been removed"
  3106. select BR2_LEGACY
  3107. help
  3108. The possibility of selecting the Busybox version has been
  3109. removed. Use the latest version provided by the Busybox
  3110. package instead.
  3111. config BR2_BUSYBOX_VERSION_1_20_X
  3112. bool "busybox version selection has been removed"
  3113. select BR2_LEGACY
  3114. help
  3115. The possibility of selecting the Busybox version has been
  3116. removed. Use the latest version provided by the Busybox
  3117. package instead.
  3118. config BR2_BUSYBOX_VERSION_1_21_X
  3119. bool "busybox version selection has been removed"
  3120. select BR2_LEGACY
  3121. help
  3122. The possibility of selecting the Busybox version has been
  3123. removed. Use the latest version provided by the Busybox
  3124. package instead.
  3125. config BR2_PACKAGE_LIBV4L_DECODE_TM6000
  3126. bool "decode_tm6000"
  3127. select BR2_PACKAGE_LIBV4L_UTILS
  3128. select BR2_LEGACY
  3129. help
  3130. This libv4l option has been deprecated and replaced by a
  3131. single option to build all the libv4l utilities.
  3132. config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
  3133. bool "ir-keytable"
  3134. select BR2_PACKAGE_LIBV4L_UTILS
  3135. select BR2_LEGACY
  3136. help
  3137. This libv4l option has been deprecated and replaced by a
  3138. single option to build all the libv4l utilities.
  3139. config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
  3140. bool "v4l2-compliance"
  3141. select BR2_PACKAGE_LIBV4L_UTILS
  3142. select BR2_LEGACY
  3143. help
  3144. This libv4l option has been deprecated and replaced by a
  3145. single option to build all the libv4l utilities.
  3146. config BR2_PACKAGE_LIBV4L_V4L2_CTL
  3147. bool "v4l2-ctl"
  3148. select BR2_PACKAGE_LIBV4L_UTILS
  3149. select BR2_LEGACY
  3150. help
  3151. This libv4l option has been deprecated and replaced by a
  3152. single option to build all the libv4l utilities.
  3153. config BR2_PACKAGE_LIBV4L_V4L2_DBG
  3154. bool "v4l2-dbg"
  3155. select BR2_PACKAGE_LIBV4L_UTILS
  3156. select BR2_LEGACY
  3157. help
  3158. This libv4l option has been deprecated and replaced by a
  3159. single option to build all the libv4l utilities.
  3160. ###############################################################################
  3161. comment "Legacy options removed in 2014.05"
  3162. config BR2_PACKAGE_EVTEST_CAPTURE
  3163. bool "evtest-capture support removed (dropped since evtest 1.31)"
  3164. select BR2_LEGACY
  3165. help
  3166. Support for evtest-capture has been removed (dropped from
  3167. evtest package since version 1.31), use evemu package
  3168. instead.
  3169. config BR2_KERNEL_HEADERS_3_6
  3170. bool "kernel headers version 3.6.x are no longer supported"
  3171. select BR2_LEGACY
  3172. help
  3173. Version 3.6.x of the Linux kernel headers have been deprecated
  3174. for more than four buildroot releases and are now removed.
  3175. config BR2_KERNEL_HEADERS_3_7
  3176. bool "kernel headers version 3.7.x are no longer supported"
  3177. select BR2_LEGACY
  3178. help
  3179. Version 3.7.x of the Linux kernel headers have been deprecated
  3180. for more than four buildroot releases and are now removed.
  3181. config BR2_PACKAGE_VALA
  3182. bool "vala target package has been removed"
  3183. select BR2_LEGACY
  3184. help
  3185. The 'vala' target package has been removed since it has been
  3186. deprecated for more than four buildroot releases.
  3187. Note: the host vala package still exists.
  3188. config BR2_TARGET_TZ_ZONELIST
  3189. default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
  3190. config BR2_PACKAGE_TZDATA_ZONELIST
  3191. string "tzdata: the timezone list option has been renamed"
  3192. help
  3193. The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
  3194. BR2_TARGET_TZ_ZONELIST, and moved to the "System
  3195. configuration" menu. You'll need to select BR2_TARGET_TZ_INFO.
  3196. config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
  3197. bool
  3198. default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
  3199. select BR2_LEGACY
  3200. config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
  3201. bool "Lua command-line editing none has been renamed"
  3202. select BR2_LEGACY
  3203. help
  3204. The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
  3205. renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to
  3206. select it in the corresponding choice.
  3207. config BR2_PACKAGE_LUA_INTERPRETER_READLINE
  3208. bool "Lua command-line editing using readline has been renamed"
  3209. select BR2_LEGACY
  3210. help
  3211. The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
  3212. renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
  3213. it in the corresponding choice.
  3214. config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
  3215. bool "Lua command-line editing using linenoise has been renamed"
  3216. select BR2_LEGACY
  3217. help
  3218. The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
  3219. renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
  3220. it in the corresponding choice.
  3221. config BR2_PACKAGE_DVB_APPS_UTILS
  3222. bool "dvb-apps utilities now built by default"
  3223. select BR2_LEGACY
  3224. help
  3225. The dvb-apps utilities are now always built when the dvb-apps
  3226. package is selected.
  3227. config BR2_KERNEL_HEADERS_SNAP
  3228. bool "Local Linux snapshot support removed"
  3229. select BR2_LEGACY
  3230. help
  3231. Support for using a custom snapshot to install the Linux
  3232. kernel headers has been removed.
  3233. config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
  3234. bool "/dev management by udev removed"
  3235. select BR2_LEGACY
  3236. help
  3237. The 'udev' package has been converted to a virtual package.
  3238. The providers for this feature are: 'eudev', 'systemd'.
  3239. Therefore, if you are not using 'systemd' as init system, you
  3240. must choose 'Dynamic using eudev' in the '/dev management'
  3241. menu to get the same behaviour as in your old configuration.
  3242. If you are using 'systemd', its internal implementation of
  3243. 'udev' will be used automatically.
  3244. You must also check the packages depending on 'udev' are still
  3245. selected.
  3246. config BR2_PACKAGE_UDEV
  3247. bool "udev is now a virtual package"
  3248. select BR2_LEGACY
  3249. select BR2_PACKAGE_HAS_UDEV
  3250. help
  3251. The 'udev' package has been converted to a virtual package.
  3252. The providers for this feature are: 'eudev', 'systemd'.
  3253. Your old configuration refers to packages depending on 'udev',
  3254. either for build or at runtime.
  3255. Check that a 'udev' provider is selected. If you are not using
  3256. 'systemd' as init system, 'eudev' should be selected, which is
  3257. the case if '/dev management' is set to 'Dynamic using eudev'.
  3258. If you are using 'systemd', its internal implementation of
  3259. 'udev' is used.
  3260. config BR2_PACKAGE_UDEV_RULES_GEN
  3261. bool "udev rules generation handled by provider"
  3262. select BR2_LEGACY
  3263. select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
  3264. select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
  3265. help
  3266. The 'udev' package has been converted to a virtual package.
  3267. The providers for this feature are: 'eudev', 'systemd'.
  3268. If you are not using 'systemd' as init system, udev rules
  3269. generation will be handled by 'eudev'. Check that
  3270. '/dev management' is set to 'Dynamic using eudev' to get
  3271. the same behaviour as in your old configuration.
  3272. If you are using 'systemd', it internal implementation of
  3273. 'udev' will generate the rules.
  3274. config BR2_PACKAGE_UDEV_ALL_EXTRAS
  3275. bool "udev extras removed"
  3276. select BR2_LEGACY
  3277. help
  3278. The 'udev' package has been converted to a virtual package.
  3279. The providers for this feature are: 'eudev', 'systemd'.
  3280. The option to enable the extra features of 'udev' (gudev, ...)
  3281. has been removed. These features are automatically enabled in
  3282. the 'udev' providers if the dependencies are selected. For
  3283. example, selecting 'libglib2' will trigger the build of gudev.
  3284. config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
  3285. bool "xlib-libpthread-stubs option has been renamed"
  3286. depends on BR2_PACKAGE_XORG7
  3287. select BR2_LEGACY
  3288. select BR2_PACKAGE_LIBPTHREAD_STUBS
  3289. help
  3290. The pthread stubs neither depend on X11 nor Xlib. Thus the
  3291. package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
  3292. ###############################################################################
  3293. comment "Legacy options removed in 2014.02"
  3294. config BR2_sh2
  3295. bool "sh2 support removed"
  3296. select BR2_LEGACY
  3297. help
  3298. Due to an inexistent user base and generally poor Linux
  3299. support, the support for the SH2 architecture was removed.
  3300. config BR2_sh3
  3301. bool "sh3 support removed"
  3302. select BR2_LEGACY
  3303. help
  3304. Due to an inexistent user base and generally poor Linux
  3305. support, the support for the SH3 architecture was removed.
  3306. config BR2_sh3eb
  3307. bool "sh3eb support removed"
  3308. select BR2_LEGACY
  3309. help
  3310. Due to an inexistent user base and generally poor Linux
  3311. support, the support for the SH3eb architecture was removed.
  3312. config BR2_KERNEL_HEADERS_3_1
  3313. bool "kernel headers version 3.1.x are no longer supported"
  3314. select BR2_LEGACY
  3315. help
  3316. Version 3.1.x of the Linux kernel headers have been deprecated
  3317. for more than four buildroot releases and are now removed.
  3318. config BR2_KERNEL_HEADERS_3_3
  3319. bool "kernel headers version 3.3.x are no longer supported"
  3320. select BR2_LEGACY
  3321. help
  3322. Version 3.3.x of the Linux kernel headers have been deprecated
  3323. for more than four buildroot releases and are now removed.
  3324. config BR2_KERNEL_HEADERS_3_5
  3325. bool "kernel headers version 3.5.x are no longer supported"
  3326. select BR2_LEGACY
  3327. help
  3328. Version 3.5.x of the Linux kernel headers have been deprecated
  3329. for more than four buildroot releases and are now removed.
  3330. config BR2_GDB_VERSION_7_2
  3331. bool "gdb 7.2.x is no longer supported"
  3332. select BR2_GDB_VERSION_7_6
  3333. select BR2_LEGACY
  3334. help
  3335. Version 7.2.x of gdb has been deprecated for more than four
  3336. buildroot releases and is now removed. As an alternative, gdb
  3337. 7.5.x has been automatically selected in your configuration.
  3338. config BR2_GDB_VERSION_7_3
  3339. bool "gdb 7.3.x is no longer supported"
  3340. select BR2_GDB_VERSION_7_6
  3341. select BR2_LEGACY
  3342. help
  3343. Version 7.3.x of gdb has been deprecated for more than four
  3344. buildroot releases and is now removed. As an alternative, gdb
  3345. 7.5.x has been automatically selected in your configuration.
  3346. config BR2_PACKAGE_CCACHE
  3347. bool "ccache target package has been removed"
  3348. select BR2_LEGACY
  3349. help
  3350. The 'ccache' target package has been removed since it has been
  3351. deprecated for more than four buildroot releases.
  3352. Note: using ccache for speeding up builds is still supported.
  3353. config BR2_HAVE_DOCUMENTATION
  3354. bool "support for documentation on target has been removed"
  3355. select BR2_LEGACY
  3356. help
  3357. Support for documentation on target has been removed since it
  3358. has been deprecated for more than four buildroot releases.
  3359. config BR2_PACKAGE_AUTOMAKE
  3360. bool "automake target package has been removed"
  3361. select BR2_LEGACY
  3362. help
  3363. The 'automake' target package has been removed since it has
  3364. been deprecated for more than four buildroot releases.
  3365. Note: the host automake still exists.
  3366. config BR2_PACKAGE_AUTOCONF
  3367. bool "autoconf target package has been removed"
  3368. select BR2_LEGACY
  3369. help
  3370. The 'autoconf' target package has been removed since it has
  3371. been deprecated for more than four buildroot releases.
  3372. Note: the host autoconf still exists.
  3373. config BR2_PACKAGE_XSTROKE
  3374. bool "xstroke has been removed"
  3375. select BR2_LEGACY
  3376. help
  3377. The 'xstroke' package has been removed since it has been
  3378. deprecated for more than four buildroot releases.
  3379. config BR2_PACKAGE_LZMA
  3380. bool "lzma target package has been removed"
  3381. select BR2_LEGACY
  3382. help
  3383. The 'lzma' target package has been removed since it has been
  3384. deprecated for more than four buildroot releases.
  3385. Note: generating lzma-compressed rootfs images is still
  3386. supported.
  3387. config BR2_PACKAGE_TTCP
  3388. bool "ttcp has been removed"
  3389. select BR2_LEGACY
  3390. help
  3391. The 'ttcp' package has been removed since it has been
  3392. deprecated for more than four buildroot releases.
  3393. config BR2_PACKAGE_LIBNFC_LLCP
  3394. bool "libnfc-llcp has been replaced by libllcp"
  3395. select BR2_LEGACY
  3396. select BR2_PACKAGE_LIBLLCP
  3397. help
  3398. The 'libnfc-llcp' package has been removed since upstream
  3399. renamed to 'libllcp'. We have added a new package for
  3400. 'libllcp' and bumped the version at the same time.
  3401. config BR2_PACKAGE_MYSQL_CLIENT
  3402. bool "MySQL client renamed to MySQL"
  3403. select BR2_LEGACY
  3404. select BR2_PACKAGE_MYSQL
  3405. help
  3406. The option has been renamed BR2_PACKAGE_MYSQL
  3407. config BR2_PACKAGE_SQUASHFS3
  3408. bool "squashfs3 has been removed"
  3409. select BR2_LEGACY
  3410. select BR2_PACKAGE_SQUASHFS
  3411. help
  3412. The 'squashfs3' package has been removed since it has been
  3413. deprecated for more than four buildroot releases. Package
  3414. 'squashfs' (4) has been selected automatically as replacement.
  3415. config BR2_TARGET_ROOTFS_SQUASHFS3
  3416. bool "squashfs3 rootfs support has been removed"
  3417. select BR2_LEGACY
  3418. help
  3419. Together with the removal of the squashfs3 package, support
  3420. for squashfs3 root filesystems has been removed too. Squashfs
  3421. root filesystems will automatically use squashfs4 now.
  3422. config BR2_PACKAGE_NETKITBASE
  3423. bool "netkitbase has been removed"
  3424. select BR2_LEGACY
  3425. help
  3426. The 'netkitbase' package has been removed since it has been
  3427. deprecated since 2012.11. This package provided 'inetd'
  3428. which is replaced by 'xinet' and 'ping' which is replaced by
  3429. 'busybox' or 'fping'.
  3430. config BR2_PACKAGE_NETKITTELNET
  3431. bool "netkittelnet has been removed"
  3432. select BR2_LEGACY
  3433. help
  3434. The 'netkittelnet' package has been removed since it has
  3435. been deprecated since 2012.11. 'busybox' provides a telnet
  3436. client and should be used instead.
  3437. config BR2_PACKAGE_LUASQL
  3438. bool "luasql has been replaced by luasql-sqlite3"
  3439. select BR2_PACKAGE_LUASQL_SQLITE3
  3440. select BR2_LEGACY
  3441. help
  3442. The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
  3443. config BR2_PACKAGE_LUACJSON
  3444. bool "luacjson has been replaced by lua-cjson"
  3445. select BR2_PACKAGE_LUA_CJSON
  3446. select BR2_LEGACY
  3447. help
  3448. The option has been renamed BR2_PACKAGE_LUA_CJSON.
  3449. ###############################################################################
  3450. comment "Legacy options removed in 2013.11"
  3451. config BR2_PACKAGE_LVM2_DMSETUP_ONLY
  3452. bool "lvm2's 'dmsetup only' option removed"
  3453. select BR2_LEGACY
  3454. help
  3455. The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
  3456. led to problems with other packages that need the full lvm2
  3457. suite. Therefore, the option has been replaced with the
  3458. positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
  3459. # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
  3460. # in order to automatically propagate old configs
  3461. config BR2_PACKAGE_QT_JAVASCRIPTCORE
  3462. bool "qt javascriptcore option removed"
  3463. select BR2_LEGACY
  3464. help
  3465. The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
  3466. force the activation or disabling of the JIT compiler in the
  3467. Qt Javascript interpreter. However, the JIT compiler is not
  3468. available for all architectures, so forcing its activation
  3469. does not always work. Moreover, Qt knows by itself for which
  3470. architectures JIT support is possible, and will
  3471. automatically enable it if possible.
  3472. Therefore, this option was in fact useless, and causing
  3473. build problems when enabled on architectures for which the
  3474. JIT support was not available. It has been removed, and
  3475. there is no replacement: Qt will enable JIT at compile time
  3476. when possible.
  3477. config BR2_PACKAGE_MODULE_INIT_TOOLS
  3478. bool "module-init-tools replaced by kmod"
  3479. select BR2_PACKAGE_KMOD
  3480. select BR2_PACKAGE_KMOD_TOOLS
  3481. select BR2_LEGACY
  3482. help
  3483. The 'module-init-tools' package has been removed, since it
  3484. has been depracated upstream and replaced by 'kmod'.
  3485. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
  3486. string "u-boot: the git repository URL option has been renamed"
  3487. help
  3488. The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
  3489. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
  3490. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
  3491. bool
  3492. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
  3493. select BR2_LEGACY
  3494. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
  3495. # boot/uboot/Config.in
  3496. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
  3497. string "u-boot: the git repository version option has been renamed"
  3498. help
  3499. The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
  3500. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
  3501. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
  3502. bool
  3503. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
  3504. select BR2_LEGACY
  3505. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
  3506. # boot/uboot/Config.in
  3507. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
  3508. string "linux: the git repository URL option has been renamed"
  3509. help
  3510. The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
  3511. been renamed to
  3512. BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
  3513. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
  3514. bool
  3515. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
  3516. select BR2_LEGACY
  3517. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
  3518. # linux/Config.in
  3519. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
  3520. string "linux: the git repository version option has been renamed"
  3521. help
  3522. The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
  3523. been renamed to
  3524. BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
  3525. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
  3526. bool
  3527. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
  3528. select BR2_LEGACY
  3529. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
  3530. # linux/Config.in
  3531. ###############################################################################
  3532. comment "Legacy options removed in 2013.08"
  3533. config BR2_ARM_OABI
  3534. bool "ARM OABI support has been removed"
  3535. select BR2_LEGACY
  3536. help
  3537. The support for the ARM OABI was deprecated since a while,
  3538. and has been removed completely from Buildroot. It is also
  3539. deprecated in upstream gcc, since gcc 4.7. People should
  3540. switch to EABI instead, which should not be a problem as
  3541. long as you don't have pre-built OABI binaries in your
  3542. system that you can't recompile.
  3543. config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
  3544. bool "dosfstools dosfsck renamed to fsck.fat"
  3545. select BR2_LEGACY
  3546. select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
  3547. help
  3548. dosfsck was renamed upstream to fsck.fat for consistency.
  3549. config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
  3550. bool "dosfstools dosfslabel renamed to fatlabel"
  3551. select BR2_LEGACY
  3552. select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
  3553. help
  3554. doslabel was renamed upstream to fatlabel for consistency.
  3555. config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
  3556. bool "dosfstools mkdosfs renamed to mkfs.fat"
  3557. select BR2_LEGACY
  3558. select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
  3559. help
  3560. mkdosfs was renamed upstream to mkfs.fat for consistency.
  3561. config BR2_ELF2FLT
  3562. bool "the elf2flt option has been renamed"
  3563. select BR2_LEGACY
  3564. help
  3565. The BR2_ELF2FLT option has been renamed to
  3566. BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
  3567. the package infrastructure.
  3568. config BR2_VFP_FLOAT
  3569. bool "the ARM VFP floating point option has been renamed"
  3570. select BR2_LEGACY
  3571. help
  3572. Due to a major refactoring of the floating-point handling of
  3573. the ARM architecture support, the BR2_VFP_FLOAT option has
  3574. been replaced with a choice of options that allows to select
  3575. between various VFP versions/capabilities.
  3576. config BR2_PACKAGE_GCC_TARGET
  3577. bool "gcc on the target filesystem has been removed"
  3578. select BR2_LEGACY
  3579. help
  3580. The support for gcc in the target filesystem was deprecated
  3581. since a while, and has been removed completely from Buildroot.
  3582. See Buildroot's documentation for more explanations.
  3583. config BR2_HAVE_DEVFILES
  3584. bool "development files in target filesystem has been removed"
  3585. select BR2_LEGACY
  3586. help
  3587. The installation of the development files in the target
  3588. filesystem was deprecated since a while, and has been removed
  3589. completely from Buildroot.
  3590. See Buildroot's documentation for more explanations.
  3591. endmenu
  3592. endif # !SKIP_LEGACY