Config.in.legacy 182 KB

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