Config.in.legacy 155 KB

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