Config.in.legacy 165 KB

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