Config.in.legacy 126 KB

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