Config.in.legacy 178 KB

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