Config.in.legacy 127 KB

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