Config.in.legacy 144 KB

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