Config.in.legacy 170 KB

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