Config.in.legacy 146 KB

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