Config.in.legacy 173 KB

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