2
1

Config.in.legacy 158 KB

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