Config.in.legacy 123 KB

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