Config.in.legacy 175 KB

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