Config.in.legacy 140 KB

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