Config.in.legacy 157 KB

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