Config.in.legacy 169 KB

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