Config.in.legacy 127 KB

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