Config.in.legacy 171 KB

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