Config.in.legacy 171 KB

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