Config.in.legacy 156 KB

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