Config.in.legacy 182 KB

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