Config.in.legacy 174 KB

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