Config.in.legacy 169 KB

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