Config.in.legacy 126 KB

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