Config.in.legacy 149 KB

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