Config.in.legacy 130 KB

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