Config.in.legacy 127 KB

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