Config.in.legacy 173 KB

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