Config.in.legacy 166 KB

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