Config.in.legacy 134 KB

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