Config.in.legacy 166 KB

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