Config.in.legacy 171 KB

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