Config.in.legacy 180 KB

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