Config.in.legacy 166 KB

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