Config.in.legacy 138 KB

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