Config.in.legacy 172 KB

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