Config.in.legacy 163 KB

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