Config.in.legacy 129 KB

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