Config.in.legacy 181 KB

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