Config.in.legacy 137 KB

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