Config.in.legacy 174 KB

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