Config.in.legacy 180 KB

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