Config.in.legacy 183 KB

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