Config.in.legacy 125 KB

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