Config.in.legacy 177 KB

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