Config.in.legacy 165 KB

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