Config.in.legacy 172 KB

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