Config.in.legacy 173 KB

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