Config.in.legacy 178 KB

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