Config.in.legacy 177 KB

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