Config.in.legacy 182 KB

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