Config.in.legacy 179 KB

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