Config.in.legacy 139 KB

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