Config.in.legacy 157 KB

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