Config.in.legacy 171 KB

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