Config.in.legacy 175 KB

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