Config.in.legacy 166 KB

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