Config.in.legacy 180 KB

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