Config.in.legacy 150 KB

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