Config.in.legacy 127 KB

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