CHANGES 419 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658
  1. 2021.05-rc2, released May 22th, 2021
  2. Fixes all over the tree.
  3. support/scripts/gen-missing-cpe: A script to query the list of
  4. CPE IDs for the packages enabled in the current configuration and:
  5. - for CPE IDs that do not have any matching entry in the CPE
  6. database, it emits a warning
  7. - for CPE IDs that do have a matching entry, but not with the same
  8. version, it generates a snippet of XML that can be used to propose
  9. an updated version to NIST.
  10. CPE meta data has been added for a large number of packages
  11. Updated/fixed packages: assimp, binutils, bitcoin, bullet,
  12. cutelyst, dhcp, dmalloc, docker-engine, ebtables,
  13. environment-setup, flatcc, gcc, gd, gerbera, hostapd,
  14. imx-gpu-viv, intel-microcode, jquery-validation, libdrm,
  15. libgeos, libraw, libtirpc, libxml2, libxslt, live555, lmbench,
  16. localedef, lvm2, mender, mender-grubenv, modem-manager, mutt,
  17. opensbi, openssh, opentyrian, pipewire, postgis, postgresql,
  18. prosody, python-bluezero, python-falcon, redis, rocksdb,
  19. rt-tests, runc, vlc, waylandpp, webkitgtk, wireshark,
  20. wpa_supplicant, wpewebkit, xlib_libX11, xterm
  21. New packages: jh71xx-tools
  22. Issues resolved (http://bugs.uclibc.org):
  23. #13781: isc dhcp-server package don't create file /usr/bin/dhcpd
  24. #13801: toolchainfile.cmake CMAKE_BUILD_TYPE
  25. #13806: Building host-localedef fails on fedora 34/gcc 11
  26. 2021.05-rc1, released May 12th, 2021
  27. Fixes all over the tree and new features.
  28. FORTIFY_SOURCE, PIC/PIE, RELRO and SSP security hardening
  29. options are now enabled by default.
  30. Dependencies: Explicitly detect and bail out if PATH contains
  31. spaces or tabs. A number of packages fail to build in such
  32. setups, so explicitly inform about this.
  33. Infrastructure: Expose CONFIG_DIR to post-build/post-image
  34. scripts, so they can call the Buildroot Makefile in the
  35. correct directory for both in-tree / out-of-tree builds.
  36. CMake infrastructure: Use CMAKE_EXE_LINKER_FLAGS rather than
  37. CMAKE_CXX_FLAGS to link with libatomic to fix an compatibility
  38. issue with poppler. Bump minimal host cmake version to 3.16
  39. (from 3.15) to fix a compatibility issue with domoticz.
  40. Meson: Use correct C++ host compiler (rather than C compiler)
  41. utils/scanpypi: Explicitly use python3 for compatibility with
  42. packages using python3 syntax in setup.py
  43. support/download: Fix tarball generation (from git/svn repos)
  44. including symlinks pointing to ./<something>. Fix svn download
  45. for <1.9 clients or repos using CVS-style keywords.
  46. support/scripts/cve.py: Use the (significantly) faster yajl2
  47. ijson backend for older (< 2.5) ijson versions rather than the
  48. slow python default, speeding up pkg-stats by ~2x.
  49. Toolchain: Add logic to work around binutils bug 21464
  50. (affecting OpenRISC), bug 27597 (affecting Nios II) and drop
  51. the now longer applicable bug 19615 / 20006 handling.
  52. Python{,3}: Fix byte compiling python files with short (single
  53. character before .py) file names.
  54. CPE meta data has been added for a large number of packages
  55. New defconfigs: Acme Systems Acqua A5 (256/512MB), Beagleboard
  56. BeagleV, Boundary devices Nitrogen8M Plus SOM, NXP i.MX 8M
  57. Plus EVK, QEMU PPC e500mc
  58. New packages: beaglev-ddrinit, beaglev-secondboot, janet,
  59. kodi-inputstream-ffmpegdirect, kodi-vfs-libarchive,
  60. kodi-visualisation-matrix, libxcrypt, libqrtr-glib, log4qt,
  61. mawk, perl-parse-yapp, postgis, protozero, python-flask-wtf,
  62. python-iwlib, python-semantic-version, python-setuptools-rust,
  63. python-toml, riscv64-elf-toolchain, siproxyd, uftrace, zfs
  64. Removed packages: iostat, kodi-platform,
  65. kodi-screensaver-crystalmorph, monkey
  66. Issues resolved (http://bugs.uclibc.org):
  67. #13271: systemd-resolved: /etc/resolv.conf link broken on per-pa..
  68. #13516: utils/scanpypi: Failure when parsing diffoscope
  69. #13551: 2021.02.rc2: Unicode not work on qt 5.15.2
  70. #13576: Issues compiling buildroot for 5x86
  71. #13601: Gen image :Iappropriate ioctl error
  72. #13616: tar file from git repository generation issue
  73. #13631: Commit 54d3d94b6e breaks packages with git download method
  74. #13641: glibc on raspberrypi
  75. #13646: Gen image version 14 error : no sub -section title/..
  76. #13651: pkg-golang cannot build when main.go is in the root
  77. #13661: host-python2 build fails on aarch64
  78. #13671: openSSH server closes connection before authentication..
  79. #13721: c-stack.c:55:26: error: missing binary operator before ..
  80. #13731: Readline Patch is missing Author Information
  81. #13741: genext2fs does not allow to set perms of root node
  82. #13751: libopenssl (static): huge drop in performance in newer ..
  83. #13771: package htop has undeclared dependency on host python
  84. 2021.02.2, released May 12th, 2021
  85. Important / security related fixes.
  86. Toolchain: Add logic to mark toolchains affected by binutils
  87. bug 27597 (Nios II).
  88. support/scripts/cve.py: Use the (significantly) faster yajl2
  89. ijson backend for older (< 2.5) ijson versions rather than the
  90. slow python default, speeding up pkg-stats by ~2x.
  91. CMake infrastructure: Use CMAKE_EXE_LINKER_FLAGS rather than
  92. CMAKE_CXX_FLAGS to link with libatomic to fix an compatibility
  93. issue with poppler.
  94. Infrastructure: Expose CONFIG_DIR to post-build/post-image
  95. scripts, so they can call the Buildroot Makefile in the
  96. correct directory for both in-tree / out-of-tree builds.
  97. Updated/fixed packages: at91bootstrap, avahi, bash, bind,
  98. bridge-utils, boost, cegui, cifs-utils, clamav, cmake,
  99. coremark-pro, coreutils, cryptsetup, dmalloc, dnsmasq,
  100. docker-cli, docker-engine, domoticz, efl, exim, ffmpeg, flex,
  101. gcc, genext2fs, go, gst1-interpipe, haproxy, hostapd,
  102. i2c-tools, imx-vpu, kexec, kf5-kcoreaddons, kismet, libcamera,
  103. libcurl, libdrm, libfreefare, libfuse3, libgeos, libgpiod,
  104. libnpupnp, libopenssl, libp11, librsync, libtomcrypt, libupnp,
  105. localedef, lvm2, lxc, m4, makedevs, mender, mesa3d,
  106. mesa3d-headers, mkpasswd, mkpimage, modem-manager, monkey,
  107. mpd, ncurses, nettle, network-manager, nginx, numactl,
  108. openjdk, openjdk-bin, openldap, openvpn, php, pipewire,
  109. python-aioconsole, python-asgiref, python-botocore,
  110. python-django, python-dnspython, python-flup, python-httplib2,
  111. python-markdown2, python-mbrstrdecoder, python3, quickjs,
  112. readline, rsyslog, ruby, rust, samba4, sconeserver, snort,
  113. sox, systemd, tar, timescaledb, tio, tor, usb_modeswitch,
  114. wpa_supplicant, xdriver_xf86-video-ati, xen, xlib_libXaw,
  115. xserver_xorg-server
  116. Issues resolved (http://bugs.uclibc.org):
  117. #13271: systemd-resolved: /etc/resolv.conf link broken on per-pa..
  118. #13551: 2021.02.rc2: Unicode not work on qt 5.15.2
  119. #13651: pkg-golang cannot build when main.go is in the root
  120. #13661: host-python2 build fails on aarch64
  121. #13721: c-stack.c:55:26: error: missing binary operator before ..
  122. #13731: Readline Patch is missing Author Information
  123. #13741: genext2fs does not allow to set perms of root node
  124. #13751: libopenssl (static): huge drop in performance in newer ..
  125. #13771: package htop has undeclared dependency on host python
  126. 2021.02.1, released April 7, 2021
  127. Important / security related fixes.
  128. Dependencies: Explicitly detect and bail out if PATH contains
  129. spaces or tabs. A number of packages fail to build in such
  130. setups, so explicitly inform about this.
  131. utils/scanpypi: Explicitly use python3 for compatibility with
  132. packages using python3 syntax in setup.py
  133. support/download: Fix tarball generation (from git/svn repos)
  134. including symlinks pointing to ./<something>. Fix svn download
  135. for <1.9 clients or repos using CVS-style keywords.
  136. Meson: Use correct C++ host compiler (rather than C compiler)
  137. Toolchain: Add logic to work around binutils bug 21464,
  138. affecting OpenRISC, and drop the now longer applicable bug
  139. 19615 / 20006 handling.
  140. Python{,3}: Fix byte compiling python files with short (single
  141. character before .py) file names.
  142. CPE meta data has been added for a large number of packages
  143. Defconfigs: Correct Beaglebone QT file system overlay
  144. Updated/fixed packages: alsa-utils, at91bootstrap3,
  145. batman-adv, binutils, botan, bridge-utils, busybox,
  146. ca-certificates, cog, coreutils, diffutils, dmidecode,
  147. docker-cli, docker-containerd, docker-engine, efivar,
  148. fetchmail, frr, genimage, git, gnutls, go, grub2, gst-omx,
  149. gst1-devtools, gst1-libav, gst1-plugins-bad,
  150. gst1-plugins-base, gst1-plugins-good, gst1-plugins-ugly,
  151. gst1-python, gst1-rtsp-server, gst1-vaapi, gstreamer1,
  152. gstreamer1-editing-services, haproxy, haserl, hwloc,
  153. irqbalance, jasper, kexec, kexec-lite, kismet, kodi, libcurl,
  154. libfreeglut, libgcrypt, libgeos, libglib2, libopenssl, libqmi,
  155. libressl, libupnp, libvips, libvpx, libwebsockets, linux,
  156. lldpd, logrotate, lttng-libust, lttng-tools, mariadb, mbedtls,
  157. mcelog, mender, micropython, mongoose, mosquitto, mpd,
  158. netsnmp, nodejs, openmpi, openssh, openvpn, opkg-utils,
  159. optee-client, optee-test, perl, php, proftpd, protobuf,
  160. python-django, python-jinja2, python-lxml, python-paramiko,
  161. python-py, python-pygments, python-rpi-ws281x, python-urllib3,
  162. python3, qt5webkit, qwt, rpm, samba4, sconeserver, sdl2, shim,
  163. sqlcipher, squid, sysklogd, syslinux, sysvinit, tor,
  164. transmission, tzdata, uboot, uclibc, upx, webkitgtk,
  165. wireshark, wpebackend-fdo, wpewebkit, xen, zstd
  166. New packages: perl-parse-yapp
  167. Issues resolved (http://bugs.uclibc.org):
  168. #13516: utils/scanpypi: Failure when parsing diffoscope
  169. #13576: Issues compiling buildroot for 5x86
  170. #13601: Gen image :Iappropriate ioctl error
  171. #13616: tar file from git repository generation issue
  172. #13641: glibc on raspberrypi
  173. #13646: Gen image version 14 error : no sub -section title/..
  174. #13671: openSSH server closes connection before authentication..
  175. 2021.02, released March 6th, 2021
  176. Various fixes.
  177. Toolchain: Correct Bootlin xtensa-lx60 dependencies
  178. Updated/fixed packages: asterisk, belle-sip, bustle, dhcpcd,
  179. dovecot, dovecot-pigeonhole, gnuchess, gnuradio,
  180. gst1-plugins-bad, haproxy, jasper, kismet, libebml,
  181. libeXosip2, libgeos, libhtp, libjpeg, libopenssl, libshout,
  182. libstrophe, mosquitto, openblas, openssh, perl, privoxy,
  183. prosody, python-pyyaml, python3-pyyaml, quagga, redis,
  184. rust-bin, sox, suricata, tpm2-pkcs11, uclibc-ng-test, ushare,
  185. util-linux, wolfssl, wpa_supplicant
  186. Issues resolved (http://bugs.uclibc.org):
  187. #13501: 2021.02.rc2: Unicode not work on qt 5.15.2
  188. #13581: jpegsrc.v9d.tar.gz has changed hash
  189. 2021.02-rc3, released February 27th, 2021
  190. Fixes all over the tree.
  191. utils/scanpypi: Explicitly use python3 to ensure compatiblity
  192. with packages having python3-only code in setup.py
  193. support/download: Ensure sub-second timestamp precision is
  194. dropped when creating a tarball from a (subversion) repo, as
  195. that is not representable in the PAX tar format
  196. Updated/fixed packages: babeltrace2, bind, botan, brltty,
  197. cegui, elfutils, fakeroot, imagemagick, intel-mediasdk,
  198. irqbalance, libglib2, libselinux, libusb, libuwsc, nodejs,
  199. open62541, openldap, ply, python-aiohttp, python-django,
  200. python3, qemu, readline, rust, screen, taglib, unbound, xterm
  201. Issues resolved (http://bugs.uclibc.org):
  202. #13516: utils/scanpypi: Failure when parsing diffoscope
  203. #13541: 2021.02.rc2: irqbalance: Daemon couldn't be bound to...
  204. #13561: Create a new user defining users-table.txt not working..
  205. 2021.02-rc2, released February 16th, 2021
  206. Fixes all over the tree.
  207. Vulnerability scanning: cpedb.py: Drop CPE XML database
  208. caching, as it did not speed up processing much and uses a lot
  209. of additional memory.
  210. pkg-stats: include information about ignored CVEs in JSON
  211. output
  212. Fakeroot: Fix compatibility issue with glibc 2.33
  213. Updated/fixed packages: can-utils, collectd, dnsmaqs,
  214. docker-cli, docker-engine, ebtables, fakeroot, flashrom,
  215. gdk-pixbuf, go, gst1-python, jasper, kodi,
  216. kodi-inputstream-adaptive, lcms2, libgeos, libgpg-error,
  217. libopenssl, mongoose, mpd, ne10, netopeer2, openblas, orc,
  218. perl-gd, ply, postgresql, protobuf, subversion, tcpdump,
  219. tzdate, uboot-tools, wireshark, webkitgtk, wpewebkit, xterm
  220. New packages: perl-extutils-pkgconfig
  221. Issues resolved (http://bugs.uclibc.org):
  222. #11706: binman (U-boot tool) cannot find libfdt "binman: No mod..
  223. 2021.02-rc1, released February 9th, 2021
  224. Fixes all over the tree and new features.
  225. Toolchain: Default to binutils 2.35.2, add 2.36.1, drop
  226. 2.33.x. Fix GCC 10.x ARC adc/sbc pattern handling, Update ARM
  227. toolchains to 10.2-2020.11 release.
  228. Architectures: ARC: add support for generic HS48 processor,
  229. PPC: drop PPC601 support, which was removed from Linux 5.10.
  230. Vulnerability scanning: The CVE checking logic has been
  231. extended to match packages based on CPE (Common Platform
  232. Enumeration) IDs for more accurate matching, and CPE
  233. identifiers have been added for a large amount of packages.
  234. Download: Rework the tarball creation logic (E.G. when a
  235. package is fetched from a git/svn repo) to no longer require a
  236. host-tar <= 1.29. To differ between the old and the new
  237. format, the new tarballs have gained a -br1 suffix
  238. (<pkg>-<version>-br1.tar.gz).
  239. SELinux support: A significant number of packages now pull in
  240. the relevant refpolicy modules when enabled.
  241. New defconfigs: arrow avenger96, bananapi M1+, microchip
  242. sam9x60ek, pine64 rock64
  243. Removed defconfigs: QEMU ppc virtex-ml507
  244. New packages: balena-engine, casync, coremark, coremark-pro,
  245. datatables, datatables-buttons, datatables-fixedcolumns,
  246. datatables-responsive, delve, frotz, gkrellm, inih, jszip,
  247. libgeos, libiec61850, libmdbx, lualdap, neofetch,
  248. nvidia-modprobe, open62541, perl-devel-cycle, perl-devel-size,
  249. perl-math-int64, ply, popperjs, python-bleak,
  250. python-defusedxml, python-pycups, python-pytest-asyncio,
  251. python-typing-extensions, qcom-db410c-firmware, qt5coap,
  252. qt5knx, qt5mqtt, quickjs, rcw-smarc-sal28, screenfetch,
  253. ssdp-responder, tpm2-pkcs11, wqy-zenhei, xorcurses
  254. Removed packages: audiofile, boa, ipsec-tools, libupnp18,
  255. ti-sgx-libgdbm
  256. Renamed rcw package to qoriq-rcw
  257. Issues resolved (http://bugs.uclibc.org):
  258. #13316: beaglebone_qt5_defconfig: PowerVR fails to start
  259. #13416: dhcpcd start warning message: no such user dhcpcd
  260. #13456: ccache prevents build
  261. #13471: package/mpd/mpd.conf make use of path not created
  262. #13506: BR2_PACKAGE_DHCPCD missing directory creation
  263. 2020.11.4, released April 5th, 2021
  264. Important / security related fixes.
  265. Dependencies: Explicitly detect and bail out if PATH contains
  266. spaces or tabs. A number of packages fail to build in such
  267. setups, so explicitly inform about this.
  268. utils/scanpypi: Explicitly use python3 for compatibility with
  269. packages using python3 syntax in setup.py
  270. support/download: Fix tarball generation (from git/svn repos)
  271. including symlinks pointing to ./<something>
  272. Meson: Use correct C++ host compiler (rather than C compiler)
  273. Updated/fixed packages: asterisk, at91bootstrap3, babeltrace2,
  274. batman-adv, bind, ca-certificates, cegui, cog, diffutils,
  275. docker-containerd, dovecot, dovecot-pigeonhole, efivar,
  276. elfutils, fakeroot, git, gnuchess, gnuradio, gnutls, go,
  277. grub2, haserl, i7z, imagemagick, intel-mediasdk, irqbalance,
  278. jasper, kodi, libcurl, libebml, libeXosip2, libglib2, libhtp,
  279. libjpeg, libopenssl, libqmi, libressl, libupnp, libuwsc,
  280. libvips, lldpd, mariadb, mbedtls, mender, micropython,
  281. mosquitto, netsnmp, nodejs, openblas, openldap, openmpi,
  282. openssh, opkg-utils, optee-client, optee-test, perl, php,
  283. privoxy, proftpd, prosody, protobuf, python-aiohttp,
  284. python-django, python-lxml, python-pyyaml, python-rpi-ws281x,
  285. python-typing-extensions, python3, quagga, qwt, redis, rpm,
  286. sconeserver, screen, sox, sqlcipher, squid, suricata,
  287. syslinux, sysvinit, tor, transmission, tzdata, uboot, unbound,
  288. upx, util-linux, webkitgtk, wireshark, wolfssl,
  289. wpebackend-fdo, wpewebkit, wpa_supplicant, zstd
  290. Issues resolved (http://bugs.uclibc.org):
  291. #13516: utils/scanpypi: Failure when parsing diffoscope
  292. #13541: 2021.02.rc2: irqbalance: Daemon couldn't be bound to..
  293. #13576: Issues compiling buildroot for 5x86
  294. #13581: jpegsrc.v9d.tar.gz has changed hash
  295. #13616: tar file from git repository generation issue
  296. 2020.11.3, released February 17th, 2021
  297. meson: Fix ccache detection handling when per-package builds
  298. are used.
  299. Fakeroot: Fix compatibility issue with glibc 2.33
  300. Updated/fixed packages: atftp, binutils, busybox, cereal,
  301. chartjs, connman, dhcpcd, dnsmasq, docker-cli, docker-engine,
  302. ebtables, fakeroot, flashrom, go, gst1-python, guile,
  303. intel-mediadriver, intel-microcode, jasper,
  304. kodi-inputstream-adaptive, lcms2, libbsd, libopenssl,
  305. makedumpfile, memtester, mosquitto, ne10, openblas, orc, php,
  306. postgresql, privoxy, pugixml, python-bottle, python-django,
  307. python3, rauc, sox, stress-ng, subversion, tzdata,
  308. uboot-tools, uclibc, webkitgtk, wireguard-linux-compat,
  309. wireshark, wpa_supplicant, wpewebkit, xenomai,
  310. xserver_xorg-server, xterm
  311. Issues resolved (http://bugs.uclibc.org):
  312. #11706: binman (U-boot tool) cannot find libfdt "binman: No mod..
  313. #13506: BR2_PACKAGE_DHCPCD missing directory creation
  314. 2020.11.2, released January 31st, 2021
  315. Important / security related fixes.
  316. Download: Ensure git submodules are correctly fetched if
  317. enabled for a package with <pkg>_GIT_SUBMODULES = YES and the
  318. host variant is downloaded first.
  319. Toolchain: Mark CodeSourcery Aarch64 2014.11 toolchain as not
  320. having libatomic. Bootlin PowerPC-440 FP toolchain updated for
  321. SecurePLT fix.
  322. pkg-stats: Fix python 3.8+ deprecation warning.
  323. meson: Ensure ccache is not detected and used, as it may
  324. conflict with the ccache handling in Buildroot.
  325. Updated/fixed packages: barebox, boost, brltty, dbus,
  326. docker-containerd, dovecot, dovecot-pigeonhole,
  327. environment-setup, firmware-imx, gcc, gerbera, glibc,
  328. gmrender-resurrect, igd2-for-linux, kodi-pvr-zattoo, libclc,
  329. libfuse3, libllcp, libodb-mysql, libtorrent-rasterbar,
  330. libupnp, lpc32xxcdl, luarocks, mpd, multipath-tools, mutt,
  331. nfs-utils, nodejs, openjpeg, openldap, opentracing-cpp,
  332. openvpn, p11-kit, paho-mqtt-c, php, poppler, postgresql,
  333. python3, redis, resiprocate, rpm, runc, socat, sslh, sudo,
  334. sunxi-mali-mainline-driver, syslog-ng, systemd, tini,
  335. tpm2-tss, trace-cmd, tzdata, uboot-tools, uhd, ushare,
  336. util-linux, vlc, wavpack, wireguard-linux-compat, wolfssl,
  337. xapp_xload, xorriso, zic
  338. Removed packages: libupnp18
  339. Issues resolved (http://bugs.uclibc.org):
  340. #13471: package/mpd/mpd.conf make use of path not created
  341. 2020.11.1, released December 27th, 2020
  342. Important / security related fixes.
  343. Infrastructure:
  344. - cmake: fix host ccache handling for CMake 3.19
  345. - meson: Forcibly disable binary stripping for
  346. target builds, enable for host builds
  347. - golang: Fix HOST / TARGET directories for per-package builds
  348. Defconfigs: Beaglebone Qt5: Fix ti-sgx related issues
  349. Updated/fixed packages: apitrace, arm-trusted-firmware,
  350. ca-certificates, cryptopp, dhcpcd, dtv-scan-tables,
  351. flare-engine, ghostscript, go, haproxy, imagemagick,
  352. imx-gpu-viv, jasper, kismet, libcurl, libglib2, libhtp,
  353. libopenssl, libressl, libuv, libuvw, lua, mbedtls, mongodb,
  354. mutt, ncurses, netsnmp, nodejs, opencv3, openldap, opkg-utils,
  355. paho-mqtt-c, python-crc16, python-lxml, python-pyparsing,
  356. python-pyqt5, qt5base, rauc, shadowsocks-libev, sqlcipher,
  357. suricata, ti-sgx-demos, tinycbor, uclibc-ng-test, unbound,
  358. webkitgtk, wpewebkit, wireshark, x11vnc, xen,
  359. xserver_xorg-server
  360. Issues resolved (http://bugs.uclibc.org):
  361. #13316: beaglebone_qt5_defconfig: PowerVR fails to start
  362. #13416: dhcpcd start warning message: no such user dhcpcd
  363. 2020.11, released December 2nd, 2020
  364. Various fixes.
  365. Updated/fixed packages: bustle, docker-containerd, gnuplot,
  366. gst1-plugins-good, jemalloc, kmsxx, libcap, libplist,
  367. libuhttpd, libxkbcommon, lynx, mariadb, netsurf, privoxy,
  368. s390-tools, setserial, xserver_xorg-server
  369. Issues resolved (http://bugs.uclibc.org):
  370. #13276: libcap builds libcap.pc incorrectly
  371. 2020.11-rc3, released November 28th, 2020
  372. Fixes all over the tree.
  373. Updated/fixed packages: c-ares, cage, cdrkit,
  374. dovecot-pigeonhole, efl, gvfs, harfbuzz, jpeg-turbo,
  375. libcamera, libkrb5, libpam-tacplus, libxkbcommon, minidlna,
  376. modem-manager, monkey, musl, ncurses, numactl, openntpd,
  377. openrc, postgresql, proftpd, python-flask-cors, python-pip,
  378. qemu, raptor, redis, slirp, spandsp, thermald, uhd, vsftpd,
  379. webkitgtk, wireless-regdb, wlroots, wpewebkit, xen, xinetd,
  380. xorriso
  381. Issues resolved (http://bugs.uclibc.org):
  382. #13296: host-libcap failed to build
  383. #13331: openrc-0.42.1 compilation failure on gcc-10
  384. #13336: thermald-1.9.1 compilation failure with musl 1.2.1
  385. #13341: Mistake in /etc/init.d/S70vsftpd
  386. 2020.11-rc2, released November 14th, 2020
  387. Fixes all over the tree.
  388. cve-checker script dropped. Instead the pkg-stats logic has
  389. been extended to be able to only generate stats for the
  390. configured packages using 'make pkg-stats'
  391. Removed defconfigs: rock64
  392. Updated/fixed packages: apparmor, asterisk, bitcoin, busybox,
  393. cups-filters, cryptsetup, davfs2, domoticz, elf2flt, freetype,
  394. ghostscript, glmark2, go, gst1-plugins-bad, guile, jsoncpp,
  395. libcap, libexif, libnetfilter_conntrack, libpam-tacplus,
  396. libsigrokdecode, linux-backports, linux-firmware, mesa3d,
  397. modem-manager, mp4v2, oniguruma, openntpd, python3,
  398. python-lmdb, python-m2crypto, rauc, s390-tools, slirp,
  399. stress-ng, suricata, systemd, tcpdump, tmux, tor, webkitgtk,
  400. wireguard-linux-compat, wpewebkit, xen
  401. Issues resolved (http://bugs.uclibc.org):
  402. #13281: Raspberry Pi 2: overlays folder missing in genimage-ra..
  403. #13291: BR2_DL_DIR is ignored when creating defconfig
  404. #13306: wpewebkit build problem in 2020-11-rc1
  405. 2020.11-rc1, released November 4th, 2020
  406. Fixes all over the tree and new features.
  407. Architectures: Support for IBM s390x
  408. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC
  409. 32. Binutils 2.35.1 added, now defaulting to 2.34. ARC
  410. 2020.09-release toolchain. GCC 7.x dropped. RISC-V support for
  411. uclibc-ng. Support for Bootlin external toolchains.
  412. SELinux support improvements: File security contexts are now
  413. set when the file systems are created, so there is no need to
  414. run restorecon on first boot / read only rootfs is supported.
  415. An optimized / stripped refpolicy SELinux policy is now
  416. used. Packages can enable additional refpolicy modules using
  417. <pkg>_SELINUX_MODULES.
  418. support/scripts/cve-checker: Utility script to check for known
  419. CVEs in just the packages enabled in a Buildroot configuration
  420. rather than all packages, by passing the output of 'make
  421. show-info' to it.
  422. Go: Modules handling. The module name must be specified using
  423. <pkg>_GOMOD.
  424. BR2_EXTERNAL: Support for defining skeleton and init system
  425. packages in external trees.
  426. meson: Correct SDK cross-compilation.conf file when
  427. per-package builds were used to build SDK.
  428. systemd: Use /run rather than /var/run for PID files in units.
  429. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  430. after all finalization hooks (including pre-rootfs) to ensure
  431. they can override any late configuration done by packages.
  432. support/script/pycompile: Rework logic to ensure .pyc files
  433. contain absolute target paths, fixing code inspection at
  434. runtime when executed with cwd != '/'.
  435. support/scripts/setlocalversion: Correct Mercurial output to
  436. match behaviour with Git.
  437. support/scripts/apply-patches.sh: Use patch
  438. --no-backup-if-mismatch, so we no longer blindly have to
  439. remove *.orig files after patching, fixing issues with
  440. packages containing such files.
  441. New defconfigs: Acer chromebook elm, Friendlyarm nanopc-t4 and
  442. nanopi-m4, Hardkernel odroid-c2, Kontron SMARC-sAL28, NXP
  443. imx8mqevk, Orangepi RK3399 and zero+, PCengines APU2, Pine64
  444. rockpro64, QEMU s390x, Raxda rockpi-n8,
  445. New packages: altera-stapl, asn1c, babeltrace2, cukinia,
  446. easyframes, environment-setup, frr, graphicsmagick, htpdate,
  447. ipcalc, libbacktrace, libblockdev, libbytesize, librelp,
  448. libuev, makedumpfile, meson-tools, mg, mrp, multipath-tools,
  449. netcalc, odroidc2-firmware, php-xdebug, python-aiofiles,
  450. python-ansicolors, python-boto3, python-botocore,
  451. python-bsdiff4, python-crayons, python-iniconfig,
  452. python-intelhex, python-ipdb, python-jmespath,
  453. python-m2crypto, python-opcua-asyncio, python-packaging,
  454. python-piexif, python-pluggy, python-pytest,
  455. python-s3transfer, python-xmodem, qprint, qt5lottie,
  456. qt5remoteobjects, re2, redir, s390-tools, sentry-cli,
  457. sentry-native, timescaledb, tinyhttpd, uhd, uredir, watchdog,
  458. wayland-utils, weston-imx
  459. Removed packages: amd-catalyst, bellagio, gqview, libcroco,
  460. nvidia-tegra23, opencv
  461. Issues resolved (http://bugs.uclibc.org):
  462. #11811: lsblk (util-linux) should depend on libudev if available
  463. #11931: Bugs in support/scripts/apply-patches.sh
  464. #12301: systemd-journal-gatewayd: config options broken
  465. #12911: usb_modeswitch installation race condition
  466. #13236: Can't compile linux 5.4.8 (with gcc 10 on host)
  467. #13286: The system hangs in vmware workstation on the line..
  468. 2020.08.3, released December 27th, 2020
  469. Important / security related fixes.
  470. Infrastructure:
  471. - cmake: fix host ccache handling for CMake 3.19
  472. - meson: Forcibly disable binary stripping for
  473. target builds, enable for host builds
  474. - golang: Fix HOST / TARGET directories for per-package builds
  475. Defconfigs: Beaglebone Qt5: Fix ti-sgx related issues
  476. Updated/fixed packages: apitrace, arm-trusted-firmware,
  477. bustle, c-ares, ca-certificates, cage, cdrkit, cryptopp,
  478. dhcpcd, docker-containerd, dtv-scan-tables, flare-engine,
  479. ghostscript, gvfs, haproxy, imagemagick, imx-gpu-viv, jasper,
  480. jemalloc, jpeg-turbo, libcamera, libcap, libcurl, libglib2,
  481. libgpiod, libkrb5, libopenssl, libplist, libressl, libuv,
  482. libuvw, lynx, mariadb, mbedtls, minidlna, mongodb, monkey,
  483. musl, mutt, ncurses, netsnmp, netsurf, nodejs, opencv3,
  484. openldap, openrc, opkg-utils, paho-mqtt-c, php, privoxy,
  485. proftpd, python-crc16, python-flask-cors, python-lxml,
  486. python-pip, python-pyparsing, python-pyqt5, qemu, qt5base,
  487. raptor, rauc, ruby, setserial, shadowsocks-libev, slirp,
  488. sqlcipher, thermald, ti-sgx-demos, tinycbor, unbound, vsftpd,
  489. wireless-regdb, wireshark, wlroots, x11vnc, xen, xinetd,
  490. xserver_xorg-server
  491. Issues resolved (http://bugs.uclibc.org):
  492. #13276: libcap builds libcap.pc incorrectly
  493. #13316: beaglebone_qt5_defconfig: PowerVR fails to start
  494. #13336: thermald-1.9.1 compilation failure with musl 1.2.1
  495. #13341: Mistake in /etc/init.d/S70vsftpd
  496. #13416: dhcpcd start warning message: no such user dhcpcd
  497. 2020.08.2, released November 16th, 2020
  498. Important / security related fixes.
  499. Toolchain-wrapper: Pass -fno-tree-loop-distribute-patterns to
  500. fix kernel build on microblaze with gcc 10.x when
  501. optimizations are enabled.
  502. Updated/fixed packages: apparmor, argp-standalone, asterisk,
  503. bandwidthd, binutils, bitcoin, busybox, collectd, cryptsetup,
  504. cups-filters, darkhttpd, davfs2, docker-cli,
  505. docker-containerd, docker-engine, dovecot-pigeonhole,
  506. dvb-apps, elf2flt, fastd, fbset, fbtft, freetype, gcc,
  507. ghostscript, grpc, gst1-plugins-bad, jsoncpp,
  508. kernel-module-imx-gpu-viv, keepalived, kmscube, libass,
  509. libexif, libiqrf, libnetfilter_conntrack, libpam-tacplus,
  510. libraw, linux-backports, linux-firmware, lzlib, mp4v2,
  511. netsnmp, nginx, numactl, oniguruma, opencv3, openntpd,
  512. patchelf, php, pistache, postgresql, python-pyqt5, qemu,
  513. qt5base, rauc, redis, samba4, slirp, systemd, tcpdump,
  514. tinyproxy, tmux, tor, waf, webkitgtk, wine,
  515. wireguard-linux-compat, wireshark, wpewebkit, xen, xorriso,
  516. xvisor, zeromq, zxing-cpp
  517. Issues resolved (http://bugs.uclibc.org):
  518. #11931: Bugs in support/scripts/apply-patches.sh
  519. 2020.08.1, released October 12th, 2020
  520. Important / security related fixes.
  521. Fixes for various compilation issues with GCC 10.x.
  522. meson: Correct SDK cross-compilation.conf file when
  523. per-package builds were used to build SDK.
  524. systemd: Use /run rather than /var/run for PID files in units.
  525. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  526. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  527. after all finalization hooks (including pre-rootfs) to ensure
  528. they can override any late configuration done by packages.
  529. support/script/pycompile: Rework logic to ensure .pyc files
  530. contain absolute target paths, fixing code inspection at
  531. runtime when executed with cwd != '/'.
  532. support/scripts/setlocalversion: Correct Mercurial output to
  533. match behaviour with Git.
  534. support/scripts/apply-patches.sh: Use patch
  535. --no-backup-if-mismatch, so we no longer blindly have to
  536. remove *.orig files after patching, fixing issues with
  537. packages containing such files.
  538. fs/jffs2: Now correctly handles xattrs
  539. Updated/fixed packages: acpica, afboot-stm32, alsa-utils,
  540. apparmor, bandwidthd, barebox, bash, bison, brotli,
  541. cifs-utils, cups, dhcpcd, dhcpdump, docker-cli, docker-engine,
  542. ecryptfs-utils, efl, fail2ban, fbterm, ffmpeg, fontconfig,
  543. freetype, gcc, gdb, ghostscript, gnupg2, gnutls, go, gqview,
  544. gst1-plugins-base, gst1-plugins-ugly, ipmitool, jbig2dec,
  545. kexec, lcdproc, libcamera, libhtp, libnetconf2, libraw,
  546. libssh, libxml2, libxml-parser-perl, libzip, linux-headers,
  547. live555, localedef, ltp-testsuite, lua, matchbox, memcached,
  548. memtester, mesa3d, meson, minidlna, mongodb, mongrel2, motion,
  549. mraa, mtd, musepack, neardal, netatalk, netperf, netsniff-ng,
  550. nginx, nodejs, nss-pam-ldapd, open-plc-utils, openswan,
  551. opentyrian, openvmtools, php, postgresql, python,
  552. python-aenum, python-cycler, python-engineio, python-fire,
  553. python-pymodbus, python-scapy, python-semver,
  554. python-sentry-sdk, python-socketio, python-texttable,
  555. python-tinyrpc, python-txtorcon, python3, qt5base, quagga,
  556. read-edid, redis, rsh-redone, runc, samba4, socketcand,
  557. strace, supertux, suricata, systemd, ti-utils, trinity,
  558. uclibc, usb_modeswitch, vlc, vsftpd, wampcc,
  559. wayland-protocols, wireguard-linux-compat, wireshark, wlroots,
  560. wolfssl, w_scan, xerces, xfsprogs, xdriver-xf86-video-ati,
  561. xserver_xorg-server, ympd, zeromq, zlib-ng, zstd
  562. Issues resolved (http://bugs.uclibc.org):
  563. #12911: usb_modeswitch installation race condition
  564. #13236: Can't compile linux 5.4.8 (with gcc 10 on host)
  565. 2020.08, released September 1st, 2020
  566. Various fixes.
  567. Updated/fixed packages: am33x-cm3, avahi, bluez-tools,
  568. busybox, chocolate-doom, collectd, dhcp, docker-cli, domoticz,
  569. gobject-introspection, graphite2, haproxy, ibm-sw-tpm2,
  570. imagemagick, libeXosip2, libressl, lxc, mbedtls, menu-cache,
  571. mongodb, mosquitto, nvidia-driver, paho-mqtt-c, pixz,
  572. postgresql, python-django, rtty, squid, stress-ng, systemd,
  573. trousers, uclibc, wireshark, wolfssl, zbar
  574. 2020.08-rc3, released August 28th, 2020
  575. Fixes all over the tree.
  576. Infrastructure: Ensure RPATH entries that may be needed for
  577. dlopen() are not dropped by patchelf.
  578. Toolchain: Drop old GCC 6 based external Sourcery AMD64
  579. toolchain.
  580. Updated/fixed packages: assimp, davfs2, dillo, glibc,
  581. gnuradio, hostapd, ibm-sw-tpm2, ipmitool, json-c, libroxml,
  582. linux, mender, netopeer2, openal, openjpeg, python-matplotlib,
  583. ripgrep, shadowsocks-libev, trousers, xlib_libX11,
  584. xserver_xorg-server
  585. Issues resolved (http://bugs.uclibc.org):
  586. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  587. 2020.08-rc2, released August 24th, 2020
  588. Fixes all over the tree, including a number of fixes for
  589. compilation with GCC-10.
  590. Toolchain: Disallow building uClibc-ng for RISC-V 64-bit,
  591. because of issues with a missing __riscv_flush_icache()
  592. implementation.
  593. Defconfigs: CI20: Use mainline Linux and U-boot. Update
  594. Microchip sama5d27_wlsom1_ek_mmc_dev to use bluez5-utils
  595. instead of (the removed) legacy bluez-utils
  596. Updated/fixed packages: 18xx-ti-utils, aircrack-ng, apache,
  597. atest, bandwidthd, bellagio, bind, bird, bluez-alsa, boost,
  598. c-periphery, capnproto, chrony, collectd, cpio, cvs,
  599. dieharder, domoticz, dovecot, dovecot-pigeonhole, drbd-utils,
  600. dump1090, efl, elixir, f2fs-tools, feh, fluidsynth, fping,
  601. gdbm, gdk-pixbuf, ghostscript, gst1-plugins-bad,
  602. gstreamer1-editing-services, htop, ibm-sw-tpm2, ifplugd,
  603. iftop, igd2-for-linux, ima-evm-utils, iprutils, iputils,
  604. keepalived, kmsxx, libabseil-cpp, libcamera, libcurl,
  605. libfuse3, libnss, librtlsdr, libubox, libunwind, live555,
  606. lttng-tools, luabitop, mender-artifact, minizip,
  607. mjpg-streamer, mpd, mpv, mtd, ncftp, open-lldp, openal,
  608. opencv, opencv3, openfpgaloader, optee-os, owfs, php,
  609. pistache, prosody, pulseview, python-decorator,
  610. python-gunicorn, python-rpi-gpio, python-spidev,
  611. python3-decorator, python3-mako, python3-pyselftools, qt5,
  612. qt5webengine, rauc, redis, ripgrep, rtl8188eu, rtl8821au,
  613. setools, smstools3, supertux, tftpd, tpm2-abrmd,
  614. wpa_supplicant, xen, xlib_libX11, xserver_xorg-server
  615. New packages: python3-cython, python3-pycryptodomex
  616. Issues resolved (http://bugs.uclibc.org):
  617. #12876: nodejs fails to build when host-icu has been built before
  618. #13111: python-gunicorn: missing dependency on python-setuptools
  619. #13121: wpa_supplicant fails to build without libopenssl enabled
  620. #13146: raspberrypi3_defconfig: "Inappropriate ioctl for device"..
  621. #13156: package live555 new license
  622. #13166: python-rpi-gpio: does not work against aarch64, unint..
  623. 2020.08-rc1, released August 6th, 2020
  624. Toolchain:
  625. - GCC 10.x added, GCC 9.x is the default
  626. - binutils 2.34 added, binutils 2.33 is the default, binutils
  627. 2.31 removed
  628. - glibc updated to 2.31
  629. - ARC toolchain components updated to 2020.03-release.
  630. - Enable uClibc-ng usage for RISC-V 64-bit
  631. Infrastructure:
  632. - qmake-package was fixed to be compatible with
  633. BR2_PER_PACKAGE_DIRECTORIES
  634. - complete rewrite of the Gitlab CI Yaml configuration file,
  635. now generated directly by the Gitlab CI pipeline itselfs
  636. Misc:
  637. - cargo and cargo-bin packages removed, as cargo is now part
  638. of Rust itself
  639. Filesystem: ubinize configuration files can now use
  640. BINARIES_DIR to refer to the $(O)/images directory.
  641. New packages: bitwise, earlyoom, fuse-overlayfs, gloox,
  642. kodi-pvr-octonet, kodi-pvr-zattoo, libabseil-cpp, libcutl,
  643. libnids, libnpupnp, libodb, libodb-boost, libodb-mysql,
  644. libodb-pgsql, mbpfan, netopeer2, odb, parprouted,
  645. python-colorzero, python-gpiozero, python-pybind, python-yatl,
  646. python3-decorator, qt5quicktimeline, resiprocate, ttyd,
  647. unclutter-xfixes, urandom-scripts,
  648. New defconfigs: bananapi_m2_zero, freescale_imx8mnevk,
  649. globalscale_espressobin, imx6ullevk,
  650. microchip_sama5d27_wlsom1_ek, rock_pi_4, rock_pi_n10
  651. Removed packages: cargo, cargo-bin,
  652. kodi-peripheral-steamcontroller
  653. Issues resolved (http://bugs.uclibc.org):
  654. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_DIRECTORIES
  655. #12946: Grub: Decompressor is too big.
  656. #12986: Mtools: Error converting to codepage 850
  657. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  658. #13011: Incorrect selection of gcc version
  659. #13021: Minor code error when building granite-0.4.1
  660. #13026: rpi-firmware: must not rename start files
  661. #13046: Optimize for fast -Ofast is not compliant
  662. #13081: host-e2fsprogs attempts to create udev rules.d on build host if not exists
  663. #13101: BR audit2allow support
  664. 2020.05.3, released October 12th, 2020
  665. Important / security related fixes.
  666. meson: Correct SDK cross-compilation.conf file when
  667. per-package builds were used to build SDK.
  668. systemd: Use /run rather than /var/run for PID files in units.
  669. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  670. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  671. after all finalization hooks (including pre-rootfs) to ensure
  672. they can override any late configuration done by packages.
  673. support/script/pycompile: Rework logic to ensure .pyc files
  674. contain absolute target paths, fixing code inspection at
  675. runtime when executed with cwd != '/'.
  676. support/scripts/setlocalversion: Correct Mercurial output to
  677. match behaviour with Git.
  678. support/scripts/apply-patches.sh: Use patch
  679. --no-backup-if-mismatch, so we no longer blindly have to
  680. remove *.orig files after patching, fixing issues with
  681. packages containing such files.
  682. Updated/fixed packages: alsa-utils, apparmor, avahi,
  683. bandwidthd, barebox, bash, bison, brotli, busybox, cifs-utils,
  684. cryptsetup, cups, dhcpcd, dhcpdump, docker-cli, docker-engine,
  685. ecryptfs-utils, efl, fail2ban, freetype, gcc, gdb,
  686. ghostscript, gnutls, go, graphite2, gst1-plugins-base,
  687. gst1-plugins-ugly, imagemagick, ipmitool, jbig2dec, libhtp,
  688. libraw, libssh, libxml2, libxml-parser-perl, linux-headers,
  689. localedef, lua, mbedtls, memcached, mesa3d, meson, minidlna,
  690. mongodb, nginx, nodejs, nss-pam-ldapd, openvmtools,
  691. paho-mqtt-c, php, postgresql, python, python-aenum,
  692. python-django, python-engineio, python-fire, python-pymodbus,
  693. python-scapy, python-semver, python-sentry-sdk,
  694. python-socketio, python-texttable, python-tinyrpc,
  695. python-txtorcon, python3, qt5base, rsh-redone, runc, samba4,
  696. strace, supertux, suricata, systemd, uclibc, usb_modeswitch,
  697. vlc, vsftpd, wayland-protocols, wireguard-linux-compat,
  698. wireshark, wlroots, wolfssl, xserver_xorg-server, ympd,
  699. zeromq, zstd
  700. Issues resolved (http://bugs.uclibc.org):
  701. #12911: usb_modeswitch installation race condition
  702. #13251: cryptsetup does not work on branch 2020.02 following..
  703. 2020.05.2, released August 29th, 2020
  704. Important / security related fixes.
  705. Infrastructure: Ensure RPATH entries that may be needed for
  706. dlopen() are not dropped by patchelf.
  707. BR_VERSION_FULL/setlocalversion (used by make print-version
  708. and /etc/os-release): Properly handle local git tags
  709. Updated/fixed packages: apache, assimp, at91bootstrap3, bind,
  710. boost, busybox, capnproto, cegui, chrony, collectd, cpio,
  711. cryptsetup, cups, cvs, dbus, docker-engine, domoticz, dovecot,
  712. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  713. gd, gdk-pixbuf, ghostscript, glibc, gnuradio, grub2,
  714. gst1-plugins-bad, gstreamer1-editing-services, hostapd,
  715. ibm-sw-tpm2, iputils, jasper, json-c, libcurl, libressl,
  716. libwebsockets, linux, live555, mesa3d, mongodb, mosquitto,
  717. mpv, nodejs, opencv, opencv3, openfpgaloader, openjpeg,
  718. patchelf, perl, php, postgresql, prosody, python-django,
  719. python-gunicorn, python-matplotlib, ripgrep, rtl8188eu,
  720. rtl8821au, ruby, shadowsocks-libev, squid, systemd,
  721. tpm2-abrmd, tpm2-tools, trousers, uboot, webkitgtk, wireshark,
  722. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  723. xserver_xorg-server
  724. Issues resolved (http://bugs.uclibc.org):
  725. #12876: nodejs fails to build when host-icu has been built before
  726. #13111: python-gunicorn: missing dependency on python-setuptools
  727. #13121: wpa_supplicant fails to build without libopenssl enabled
  728. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  729. #13156: package live555 new license
  730. 2020.05.1, released July 25th, 2020
  731. Important / security related fixes.
  732. Toolchain:
  733. - Make external toolchain version check also work for
  734. toolchains configured with --with-gcc-major-version-only
  735. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  736. compiler supports it, fixing an issue with precompiled
  737. headers
  738. - Ensure debug libs from external toolchains are not installed
  739. into target if debugging is disabled
  740. Download:
  741. - Correct reproducibility issue in handling of git submodules
  742. for older git versions.
  743. - Fix file locking over NFS
  744. fs: Ensure cpio archive element order is reproducible
  745. Br2-external: Fix error reporting for invalid br2-external trees
  746. Per-package:
  747. - Fix an issue with python3 sysconfig data not getting
  748. correctly expanded
  749. - Fix per-package building for packages using the qmake
  750. infrastructure
  751. Updated/fixed packages: a10disp, asterisk, bind, brltty,
  752. cdrkit, clamav, cryptodev-linux, dbus, docker-cli,
  753. docker-engine, dvb-apps, e2fsprogs, exim, exiv2, freerdp, gdb,
  754. gdk-pixbuf, gerbera, gnutls, go, granite, grub2, gssdp,
  755. gst1-plugins-good, gst1-plugins-ugly, gupnp, intel-microcode,
  756. iproute2, irrlicht, iwd, jq, kodi, libcamera, libcec,
  757. libconfuse, libcurl, libevdev, libhttpserver, libmicrohttpd,
  758. libnss, libressl, libvncserver, libxml2, libxmlrpc, lxc,
  759. mbedtls, mediastreamer, mesa3d, meson, minizip, mongodb,
  760. mtools, mutt, nano, network-manager, nghttp2, ngircd, nodejs,
  761. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  762. oracle-mysql, paho-mqtt-c, pango, php, poco, prosody, putty,
  763. python-greenlet, python-urllib3, python-validators, python3,
  764. readline, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  765. sqlite, squid, strace, sunxi-mali-mainline-driver, syslog-ng,
  766. systemd, tcpreplay, tinydtls, upmpdcli, upx, vlc, webkitgtk,
  767. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  768. x11vnc, znc, zstd
  769. Issues resolved (http://bugs.uclibc.org):
  770. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  771. #12946: Grub: Decompressor is too big.
  772. #12986: Mtools: Error converting to codepage 850
  773. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  774. #13011: Incorrect selection of gcc version
  775. #13021: Minor code error when building granite-0.4.1
  776. #13026: rpi-firmware: must not rename start files
  777. #13031: nodejs: RangeError at new ArrayBuffer()
  778. #13046: Optimize for fast -Ofast is not compliant
  779. 2020.05, released June 1st, 2020
  780. Various fixes.
  781. Updated/fixed packages: arm-trusted-firmware, gcc, mp4v2, fmc,
  782. fmlib, glib-networking, libusb-compat, linux, qt5webengine,
  783. sysrepo, wampcc, xen
  784. 2020.05-rc3, released May 29th, 2020
  785. Fixes all over the tree.
  786. Infrastructure: Support checking download hashes for packages
  787. coming from Subversion.
  788. Defconfigs: Increase boot partition size to 64MB for Freescale
  789. boards to allow space for bigger kernels.
  790. Updated/fixed packages: audit, bind, dovecot, efl, erlang,
  791. ffmpeg, fio, gerbera, gnupg, leveldb, lrzip, ltrace, matio,
  792. mesa3d, mp4v2, prosody, qemu, qt5declarative, speexdsp,
  793. systemd, tremor, uboot-tools, unbound, wireshark
  794. Removed packages: wiringpi
  795. Issues resolved (http://bugs.uclibc.org):
  796. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  797. #12686: recipe for target 'install_dev' failed (libcrypto.so..)
  798. 2020.05-rc2, released May 22nd 2020
  799. Fixes all over the tree.
  800. U-Boot: Support building with Python 3.x instead of Python
  801. 2.x. Since U-Boot 2020.01, various U-Boot build scripts use
  802. Python 3.x instead of Python 2.x, so add an option to pull in
  803. host-python3 rather than host-python. Also fix a number of
  804. defconfigs to use this new option.
  805. Updated/fixed packages: apparmor, binutils, bison, brltty,
  806. c-icap, cegui, checkpolicy, clamav, crda, cvs, docker-cli,
  807. docker-engine, domoticz, elf2flt, exfatprogs, fakeroot,
  808. ffmpeg, freerdp, gcc, glibc, gnuconfig, irrlicht, kmod,
  809. libexif, libpam-tacplus, libssh2, libv4l, libvncserver,
  810. localedef, lrzip, mariadb, matchbox, mbuffer, mesa3d,
  811. mesa3d-headers, meson, netsniff-ng, openldap, openocd,
  812. optee-os, p7zip, paho-mqtt-c, php, piglit, pigz,
  813. python-argon2-cffi, python-attrs, python-future,
  814. python-markdown, python-pycryptodomex, python-pyqt5, qt5base,
  815. rpi-firmware, rustc, squashfs, squid, stella, suricata,
  816. systemd, uacme, uclibc, util-linux, vboot-utils
  817. New packages: python3-pyelftools
  818. Removed packages: ezxml, mtdev2tuio, python-pycrypto
  819. Issues resolved (http://bugs.uclibc.org):
  820. #10551: PowerPC SPE and Musl
  821. #12256: package tar is outdated (1.29 is 3 years old)
  822. #12271: python-iptables runtime dependencies
  823. #12321: host-generic-package: PKG_DL_OPTS not used for host package
  824. #12391: CMake-based host package fails to include output/host/include
  825. #12431: ethernet no detected on nanopi neo 2
  826. #12521: RISCV RV32IA selected, RV64GC output
  827. #12586: avahi failure
  828. #12596: host-e2fsprogs: tune2fs incompatibility on older glibc..
  829. #12611: ntp hash is not matching with upstream 4.2.8p13
  830. #12626: PHP missing header files within 2020.02
  831. #12631: glibc support Power-PC SPE
  832. #12656: bison fails to relocate with relocate-sdk.sh
  833. #12661: cups problems in buildroot
  834. #12686: recipe for target 'install_dev' failed (libcrypto.so:..
  835. #12691: host-rust build fails
  836. #12761: Buildroot fails when building GCNano binaries for the STM..
  837. #12786: Systemd spawns two getty processes when the getty port..
  838. #12806: There are multiple issues in buildroot that faults cups..
  839. #12826: nodejs-12.16.1: error: 'uv_sleep' was not declared in..
  840. #12831: RPI-firmware package: DTB-overlay dependency
  841. #12836: libunwind: package does not show up in menuconfig for..
  842. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  843. #12866: should we be disabling bash executable path caching?
  844. #12886: GMP built in wrong order (?)
  845. #12891: QEMU, libvirt-bin, qemu-kvm Package Support required
  846. #12901: GStreamer doesn't build on 2020-05 rc1 with GObject..
  847. #12906: qt PrefixPath is wrong on 2020.05-rc1
  848. #12921: nodejs-12.16.1: error: overriding 'virtual icu_65::..
  849. 2020.05-rc1, released May 7th 2020
  850. Addition of support for gobject-introspection: both the
  851. gobject-introspection package itself, but also introspection
  852. support was enabled in a number of other packages.
  853. Support for Qt 5.6 was dropped as its support was dropped
  854. upstream, only one version of Qt is supported at the moment:
  855. Qt 5.14.2.
  856. Addition of support for the apparmor Linux security module, by
  857. adding the necessary user-space packages.
  858. Addition of a qmake package infrastructure, now used by most
  859. Qt-related packages.
  860. The Luarocks package infrastructure has been extended to
  861. support build host packages.
  862. The package infrastructure was improved to allow each package
  863. to indicate the Linux kernel configuration options it needs.
  864. Addition of support for generating filesystem images using the
  865. EROFS filesystem.
  866. The logic that calculates the list of files installed by each
  867. package was reworked to be compatible with the top-level
  868. parallel build functionality.
  869. Addition of a package for a pre-compiled ARM32 bare-metal
  870. toolchain, which can be used to build ARM32 code in ARM64
  871. configurations, such as firmware/bootloader code.
  872. The Qemu defconfigs are now boot-tested in Qemu as part of the
  873. Gitlab continuous integration.
  874. Toolchain: gcc 9.x bumped to 9.3.0, gcc 8.x bumped to 8.4.0,
  875. gdb bumped to 8.3.1.
  876. New packages: apcupsd, apparmor, arm-gnu-a-toolchain, bearssl,
  877. belle-sip, belr, cage, chartjs, erofs-utils, exfatprogs,
  878. gobject-introspection, ibm-sw-tpm2, imx-seco, jbig2dec,
  879. libapparmor, libiberty, libfuse3, libtextstyle, libudfread,
  880. libuhttpd, libuwsc, lua-lyaml, matio, mbuffer, netdata,
  881. openfpgaloader, perl-i18n, perl-locale-maketext-lexicon,
  882. perl-lwp-protocol-https,
  883. perl-mojolicious-plugin-authorization,
  884. perl-mojolicious-plugin-cspheader,
  885. perl-mojolicious-plugin-i18n,
  886. perl-mojolicious-plugin-securityheader, perl-mozilla-ca,
  887. perl-path-class, pistache, pkcs11-helper, prelink-cross,
  888. python-argon2-cffi, python-canopen, python-cbor2,
  889. python-filelock, python-flatbuffers, python-greenlet,
  890. python-modbus-tk, python-pyalsa, python-pysftp, python-regex,
  891. python-snappy, rtty, tinyproxy, udev-gentoo-scripts, unbound,
  892. vuejs, wlroots.
  893. New defconfigs: freescale_imx6ullevk, freescale_imx8qmmek,
  894. nanopi_neo4, nanopi_r1, nitrogen8mm, nitrogen8mn, olpc_xo1,
  895. olpc_xo175, roc_rk3399_pc, stm32mp157a_dk1, zynq_qmtech
  896. Issues resolved (http://bugs.uclibc.org):
  897. #10386: Add an option to put all compiled executables that
  898. show up on target/ in staging/ as well
  899. #11866: iniramfs file system fails to boot using Grub on EFI x86_64
  900. #12666: Doesn't pick up a custom bash profile
  901. #12696: Uboot 2020.01 Problem loading Linux kernel on Nano PI NEO
  902. #12701: [patch] wpa_supplicant must depend on openssl
  903. #12711: host-localedef 2.30-20 fails to compile on fedora 32 (gcc 10.0.1)
  904. #12716: bio.h not found
  905. #12726: systemctl preset-all failed for ctrl-alt-del.target
  906. #12731: rtl8188eu not buildung for banana pi M1 (glib, systemd, 4.18.12)
  907. #12746: "sysdig" package description points to
  908. http://sysdig.org, which bounces to malware site
  909. #12751: OpenJdk package installation issues on target
  910. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  911. #12811: bootstrap stuck and no login prompt
  912. 2020.02.12, released April 5, 2021
  913. Important / security related fixes.
  914. Dependencies: Explicitly detect and bail out if PATH contains
  915. spaces or tabs. A number of packages fail to build in such
  916. setups, so explicitly inform about this.
  917. utils/scanpypi: Explicitly use python3 for compatibility with
  918. packages using python3 syntax in setup.py
  919. support/download: Fix tarball generation (from git/svn repos)
  920. including symlinks pointing to ./<something>
  921. Meson: Use correct C++ host compiler (rather than C compiler)
  922. Updated/fixed packages: asterisk, batman-adv, bind,
  923. ca-certificates, docker-containerd, dovecot,
  924. dovecot-pigeonhole, diffutils, efivar, git, gnuchess, gnutls,
  925. grub2, fakeroot, haserl, imagemagick, irqbalance, jasper,
  926. kodi, libcurl, libebml, libglib2, libjpeg, libopenssl,
  927. libupnp, libvips, lldpd, mariadb, mbedtls, mosquitto, nodejs,
  928. netsnmp, nettle, openldap, openmpi, openssh, opkg-utils, perl,
  929. php, privoxy, prosody, protobuf, python-aiohttp,
  930. python-django, python-lxml, python-pyyaml, python-rpi-ws281x,
  931. python3, redis, rpm, sconeserver, screen, sox, sqlcipher,
  932. squid, sysvinit, tor, transmission, tzdata, uboot, upx,
  933. util-linux, wireshark, wolfssl, wpa_supplicant, zstd
  934. Issues resolved (http://bugs.uclibc.org):
  935. #13516: utils/scanpypi: Failure when parsing diffoscope
  936. #13541: 2021.02.rc2: irqbalance: Daemon couldn't be bound to..
  937. #13576: Issues compiling buildroot for 5x86
  938. #13581: jpegsrc.v9d.tar.gz has changed hash
  939. #13616: tar file from git repository generation issue
  940. 2020.02.11, released February 17, 2021
  941. Important / security related fixes.
  942. meson: Fix ccache detection handling when per-package builds
  943. are used.
  944. Fakeroot: Fix compatibility issue with glibc 2.33
  945. Updated/fixed packages: atftp, busybox, cereal, connman,
  946. dhcpcd, dnsmasq, docker-cli, docker-engine, fakeroot,
  947. intel-mediadriver, intel-microcode, jasper,
  948. kodi-inputstream-adaptive, libbsd, libopenssl, linux-headers,
  949. mosquitto, orc, php, postgresql, privoxy, pugixml,
  950. python-bottle, python-django, python3, rauc, sox, subversion,
  951. tzdata, wireguard-linux-compat, wpa_supplicant, xenomai, xterm
  952. Issues resolved (http://bugs.uclibc.org):
  953. #13506: BR2_PACKAGE_DHCPCD missing directory creation
  954. 2020.02.10, released January 31st, 2021
  955. Important / security related fixes.
  956. Download: Ensure git submodules are correctly fetched if
  957. enabled for a package with <pkg>_GIT_SUBMODULES = YES and the
  958. host variant is downloaded first.
  959. Toolchain: Mark CodeSourcery Aarch64 2014.11 toolchain as not
  960. having libatomic.
  961. pkg-stats: Fix python 3.8+ deprecation warning.
  962. meson: Ensure ccache is not detected and used, as it may
  963. conflict with the ccache handling in Buildroot.
  964. New packages: libnpupnp
  965. Updated/fixed packages: bctoolbox, brltty, dbus, dovecot,
  966. dovecot-pigeonhole, gcc, gerbera, gmrender-resurrect, gst-omx,
  967. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  968. gst1-plugins-ugly, gst1-rtsp-server, gst1-vaapi,
  969. gst1-validate, gstreamer1, gstreamer1-editing-services,
  970. igd2-for-linux, libclc, libllcp, libtorrent-rasterbar,
  971. libupnp, libupnpp, lpc32xxcdl, luarocks, mpd, nfs-utils,
  972. nodejs, openjpeg, openldap, opentracing-cpp, openvpn, p11-kit,
  973. paho-mqtt-c, php, poppler, postgresql, python3, runc, sudo,
  974. syslog-ng, systemd, tini, trace-cmd, tzdata, ushare, vlc,
  975. wavpack, wireguard-linux-compat, wolfssl, xapp_xload, xorriso,
  976. zic
  977. Removed packages: libupnp18
  978. Issues resolved (http://bugs.uclibc.org):
  979. #13471: package/mpd/mpd.conf make use of path not created
  980. 2020.02.9, released December 27th, 2020
  981. Important / security related fixes.
  982. Infrastructure:
  983. - cmake: fix host ccache handling for CMake 3.19
  984. - meson: Forcibly disable binary stripping for
  985. target builds, enable for host builds
  986. - golang: Fix HOST / TARGET directories for per-package builds
  987. Defconfigs: Beaglebone Qt5: Fix ti-sgx related issues
  988. Updated/fixed packages: apitrace, arm-trusted-firmware,
  989. bustle, c-ares, ca-certificates, cdrkit, cryptopp, dhcpcd,
  990. docker-containerd, dtv-scan-tables, flare-engine, ghostscript,
  991. haproxy, imagemagick, imx-gpu-viv, jasper, jemalloc,
  992. jpeg-turbo, libcap, libcurl, libglib2, libgpiod, libkrb5,
  993. libopenssl, libplist, libressl, libuv, libuvw, lynx, mariadb,
  994. mbedtls, minidlna, monkey, musl, mutt, ncurses, netsnmp,
  995. nodejs, opencv3, openldap, openrc, opkg-utils, paho-mqtt-c,
  996. php, privoxy, proftpd, python-crc16, python-flask-cors,
  997. python-lxml, python-pip, python-pyparsing, python-pyqt5, qemu,
  998. qt5base, raptor, rauc, ruby, setserial, shadowsocks-libev,
  999. slirp, sqlcipher, ti-sgx-demos, tinycbor, vsftpd,
  1000. wireless-regdb, wireshark, x11vnc, xen, xinetd,
  1001. xserver_xorg-server
  1002. Issues resolved (http://bugs.uclibc.org):
  1003. #13276: libcap builds libcap.pc incorrectly
  1004. #13316: beaglebone_qt5_defconfig: PowerVR fails to start
  1005. #13341: Mistake in /etc/init.d/S70vsftpd
  1006. 2020.02.8, released November 16th, 2020
  1007. Important / security related fixes.
  1008. Updated/fixed packages: angularjs, argp-standalone, asterisk,
  1009. bandwidthd, bitcoin, busybox, cryptsetup, darkhttpd, davfs2,
  1010. docker-cli, docker-containerd, docker-engine,
  1011. dovecot-pigeonhole, fastd, fbset, fbtft, freetype, gcc,
  1012. ghostscript, gnuradio, grpc, gst1-plugins-bad, jsoncpp,
  1013. keepalived, libass, libexif, libiqrf, libpam-tacplus, libraw,
  1014. linux-backports, linux-firmware, lzlib, netsnmp, nginx,
  1015. oniguruma, opencv3, openntpd, patchelf, php, postgresql,
  1016. python-pyqt5, qt5base, rauc, redis, samba4, slirp, systemd,
  1017. tcpdump, tmux, tor, webkitgtk, wireguard-linux-compat,
  1018. wireshark, wpewebkit, xen, xorriso, zeromq, zxing-cpp
  1019. Issues resolved (http://bugs.uclibc.org):
  1020. #11931: Bugs in support/scripts/apply-patches.sh
  1021. 2020.02.7, released October 12th, 2020
  1022. Important / security related fixes.
  1023. meson: Correct SDK cross-compilation.conf file when
  1024. per-package builds were used to build SDK.
  1025. systemd: Use /run rather than /var/run for PID files in units.
  1026. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  1027. support/script/pycompile: Rework logic to ensure .pyc files
  1028. contain absolute target paths, fixing code inspection at
  1029. runtime when executed with cwd != '/'.
  1030. support/scripts/setlocalversion: Correct Mercurial output to
  1031. match behaviour with Git.
  1032. support/scripts/apply-patches.sh: Use patch
  1033. --no-backup-if-mismatch, so we no longer blindly have to
  1034. remove *.orig files after patching, fixing issues with
  1035. packages containing such files.
  1036. Updated/fixed packages: bandwidthd, barebox, bash, bison,
  1037. brotli, cifs-utils, cryptsetup, dhcpcd, dhcpdump, docker-cli,
  1038. docker-engine, ecryptfs-utils, efl, fail2ban, freetype, gcc,
  1039. gdb, ghostscript, gnutls, go, gst1-plugins-base,
  1040. gst1-plugins-ugly, ipmitool, libhtp, libraw, libssh, libxml2,
  1041. libxml-parser-perl, localedef, lua, memcached, mesa3d, meson,
  1042. minidlna, nginx, nodejs, nss-pam-ldapd, openvmtools, php,
  1043. postgresql, python, python-aenum, python-autobahn,
  1044. python-engineio, python-fire, python-pymodbus, python-scapy,
  1045. python-semver, python-sentry-sdk, python-socketio,
  1046. python-texttable, python-tinyrpc, python-txtorcon, python3,
  1047. qt5base, runc, samba4, strace, supertux, suricata, systemd,
  1048. vlc, wayland-protocols, wireguard-linux-compat, wireshark,
  1049. xserver_xorg-server, zeromq, zstd
  1050. Issues resolved (http://bugs.uclibc.org):
  1051. #12911: usb_modeswitch installation race condition
  1052. #13251: cryptsetup does not work on branch 2020.02 following..
  1053. 2020.02.6, released September 5th, 2020
  1054. Important / security related fixes.
  1055. Fix a 2020.02.5 build regression in busybox when systemd (and
  1056. not less) are enabled because of missing infrastructure.
  1057. Updated/fixed packages: alsa-utils, avahi, busybox, cups,
  1058. docker-cli, graphite2, imagemagick, libeXosip2, mbedtls,
  1059. nvidia-driver, paho-mqtt-c, python-django, systemd, uclibc,
  1060. usb_modeswitch, wolfssl
  1061. Issues resolved (http://bugs.uclibc.org):
  1062. #12911: usb_modeswitch installation race condition
  1063. 2020.02.5, released August 29th, 2020
  1064. Important / security related fixes.
  1065. Infrastructure: Ensure RPATH entries that may be needed for
  1066. dlopen() are not dropped by patchelf.
  1067. BR_VERSION_FULL/setlocalversion (used by make print-version
  1068. and /etc/os-release): Properly handle local git tags
  1069. Updated/fixed packages: apache, at91bootstrap3, bind, boost,
  1070. busybox, capnproto, chrony, collectd, cpio, cryptsetup, cups,
  1071. cvs, dbus, docker-engine, domoticz, dovecot,
  1072. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  1073. gd, gdk-pixbuf, ghostscript, glibc, grub2, gst1-plugins-bad,
  1074. hostapd, iputils, jasper, json-c, libcurl, libwebsockets,
  1075. linux, live555, mesa3d, mosquitto, mpv, nodejs, opencv,
  1076. opencv3, openjpeg, patchelf, perl, php, postgresql,
  1077. python-django, python-gunicorn, python-matplotlib, ripgrep,
  1078. rtl8188eu, rtl8821au, ruby, shadowsocks-libev, squid,
  1079. tpm2-abrmd, tpm2-tools, trousers, uacme, webkitgtk, wireshark,
  1080. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  1081. xserver_xorg-server
  1082. Issues resolved (http://bugs.uclibc.org):
  1083. #12876: nodejs fails to build when host-icu has been built before
  1084. #13111: python-gunicorn: missing dependency on python-setuptools
  1085. #13121: wpa_supplicant fails to build without libopenssl enabled
  1086. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  1087. #13156: package live555 new license
  1088. 2020.02.4, released July 26th, 2020
  1089. Important / security related fixes.
  1090. Toolchain:
  1091. - Make external toolchain version check also work for
  1092. toolchains configured with --with-gcc-major-version-only
  1093. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  1094. compiler supports it, fixing an issue with precompiled
  1095. headers
  1096. - Ensure debug libs from external toolchains are not installed
  1097. into target if debugging is disabled
  1098. Download:
  1099. - Correct reproducibility issue in handling of git submodules
  1100. for older git versions.
  1101. - Fix file locking over NFS
  1102. fs: Ensure cpio archive element order is reproducible
  1103. Br2-external: Fix error reporting for invalid br2-external trees
  1104. Per-package:
  1105. - Fix an issue with python3 sysconfig data not getting
  1106. correctly expanded
  1107. - Fix per-package building for packages using the qmake
  1108. infrastructure
  1109. Updated/fixed packages: a10disp, asterisk, bind, cdrkit,
  1110. checkpolicy, clamav, dbus, docker-cli, docker-engine,
  1111. dvb-apps, e2fsprogs, exim, exiv2, freerdp, gnutls, go, grub2,
  1112. gssdp, gst1-plugins-good, gst1-plugins-ugly, gupnp,
  1113. intel-microcode, iproute2, irrlicht, iwd, jq, kodi, libcamera,
  1114. libconfuse, libcurl, libglib2, libhttpserver, libmicrohttpd,
  1115. libopenssl, libvncserver, libxml2, libxmlrpc, lxc, mbedtls,
  1116. mesa3d, meson, mongodb, mtools, mutt, nghttp2, ngircd, nodejs,
  1117. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  1118. oracle-mysql, paho-mqtt-c, pcre, php, poco, prosody, putty,
  1119. python-twisted, python-urllib3, python-validators, python3,
  1120. qt5xmlpatterns, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  1121. sqlite, squid, syslog-ng, systemd, tcpreplay, tinydtls,
  1122. upmpdcli, upx, vlc, webkitgtk, wireguard-linux-compat,
  1123. wireshark, wpebackend-fdo, wpewebkit, zstd
  1124. Issues resolved (http://bugs.uclibc.org):
  1125. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  1126. #12946: Grub: Decompressor is too big.
  1127. #12986: Mtools: Error converting to codepage 850
  1128. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  1129. #13011: Incorrect selection of gcc version
  1130. #13026: rpi-firmware: must not rename start files
  1131. #13031: nodejs: RangeError at new ArrayBuffer()
  1132. #13046: Optimize for fast -Ofast is not compliant
  1133. 2020.02.3, released June 3rd, 2020
  1134. Important / security related fixes.
  1135. Fix various build issues of host packages on hosts using GCC
  1136. 10.
  1137. Updated/fixed packages: arm-trusted-firmware, audit, bind,
  1138. binutils, bison, clamav, crda, dovecot, dtc, efl, elf2flt,
  1139. erlang, fakeroot, ffmpeg, fmc, fmlib, freerdp, gcc, git,
  1140. glib-networking, gnupg, leveldb, libexif, libssh2,
  1141. libusb-compat, linux-headers, lrzip, ltrace, mariadb, mesa3d,
  1142. mp4v2, openldap, openocd, perl, php, prosody,
  1143. python-pycryptodomex, python-pyqt5, qemu, rpi-firmware, rustc,
  1144. speexdsp, sysrepo, systemd, tremor, vboot-utils, wireshark,
  1145. xen
  1146. Removed packages: python-pycrypto
  1147. Issues resolved (http://bugs.uclibc.org):
  1148. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  1149. #12656: bison fails to relocate with relocate-sdk.sh
  1150. #12671: leveldb won't detect that snappy is present (static..
  1151. #12691: host-rust build fails
  1152. #12831: RPI-firmware package: DTB-overlay dependency
  1153. 2020.02.2, released May 12th, 2020
  1154. Important / security related fixes.
  1155. Musl: Disallow on PPC64 cores without AltiVec support
  1156. (E.G. e5500).
  1157. fs/cpio: Correctly handle booting with 'console='
  1158. release: Ensure temporary .br2-external.* files are not
  1159. included in the release tarball
  1160. Defconfigs: Fix various mistyped config options, or config
  1161. options where the dependencies were no longer met.
  1162. Updated/fixed packages: apache, azure-iot-sdk-c, binutils,
  1163. boinc, c-ares, cvs, docker-cli, docker-containerd,
  1164. docker-engine, domoticz, e2fsprogs, efl, evtest, exim, ffmpeg,
  1165. freerdp, gcc, gflags, glibc, gnuconfig, haproxy, imx-gpu-2d,
  1166. irrlicht, jpeg kodi-pvr-vuplus, libarchive, libcoap,
  1167. libfpm-extra, libglib2, libhtp, libid3tag, libinput, libmad,
  1168. libopenssl, libsepol, libssh, libv4l, libvncserver, libwpe,
  1169. localedef, mariadb, matchbox, mbedtls, mc, mesa3d-headers,
  1170. meson, midori, msgpack, netsnmp, nginx, ogre, openjdk,
  1171. openldap, openvpn, p7zip, paho-mqtt-c, php, polkit, python,
  1172. python-attrs, python-crossbar, python-dpkt, python-flask,
  1173. python-future, python-iptables, python-jedi, python-markdown2,
  1174. python3, qemu, qpdf, qt5, samba4, squashfs, squid, strongswan,
  1175. suricata, tzdata, util-linux, vlc, wget, webkitgtk,
  1176. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  1177. zic
  1178. Issues resolved (http://bugs.uclibc.org):
  1179. #11866: initramfs file system fails to boot using Grub on EFI x86_64
  1180. #12271: python-iptables runtime dependencies
  1181. #12726: systemctl preset-all failed for ctrl-alt-del.target
  1182. #12751: OpenJdk package installation issues on target
  1183. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  1184. #12811: bootstrap stuck and no login prompt
  1185. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  1186. 2020.02.1, released April 10th, 2020
  1187. Important / security related fixes.
  1188. core: Also fixup /lib references in libtool .la files, similar
  1189. to how it is done for /usr/*.
  1190. Various fixes for builds with per-package target/host
  1191. directories.
  1192. toolchain: Fix kernel headers validation check for external
  1193. toolchains. Fix make 4.3+ compatibility in external toolchain
  1194. logic.
  1195. fs/initramfs: fix show-info so it also shows the usual
  1196. rootfs-related variables.
  1197. Updated/fixed packages: arm-trusted-firmware, barebox-aux,
  1198. bluez5_utils, bubblewrap, busybox, civetweb, cog, collectd,
  1199. ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy, hiredis, hostapd,
  1200. kmscube, kodi-screensaver-rsxs, libical, libinput, libexif,
  1201. libopenssl, libsndfile, linux, linux-tools, llvm, localedef,
  1202. mcrypt, mesa3d, meson, monit, nftables, ntp, opencv3,
  1203. oprofile, php, pinentry, polkit, pure-ftpd, python-pyyaml,
  1204. qt5, quagga, radvd, rcw, redis, rocksdb, samba4, screen,
  1205. sdbusplus, swupdate, sysdig, sysklogd, syslinux, syslog-ng,
  1206. tor, tslib, uacme, util-linux, vala, vlc,
  1207. wireguard-linux-compat, wireguard-tools, wireshark,
  1208. wpa_supplicant, xserver_xorg-server
  1209. Issues resolved (http://bugs.uclibc.org):
  1210. #12711: host-localedef 2.30-20 fails to compile on fedora 32
  1211. #12746: "sysdig" package description points to http://sysdig.org, ..
  1212. 2020.02, released March 8th, 2020
  1213. Various fixes.
  1214. br2-external: Fix compatibility with make 4.3+
  1215. Updated/fixed packages: bash, bcm2835, binutils, cups,
  1216. erlang-p1-acme, fbgrab, gr-osmosdr, gst1-plugins-base,
  1217. gst1-validate, gstreamer1, guile, jhead, libdrm, libevdev,
  1218. libinput, libnss, libsndfile, libvncserver, linux-firmware,
  1219. mesa3d, nodejs, openjdk-bin, openvmtools, optee-test, patch,
  1220. php, piglit, pppd, python-django, qemu, qt5base, ruby,
  1221. ser2net, swupdate, thrift, zziplib
  1222. Removed packages: classpath, jamvm
  1223. Issues resolved (http://bugs.uclibc.org):
  1224. #12606: fbgrab location has changed
  1225. 2020.02-rc3, released March 2nd, 2020
  1226. Fixes all over the tree.
  1227. Infrastructure: Rework file list handling to fix race
  1228. conditions when building with per-package target and host
  1229. directories and top-level parallel builds.
  1230. Updated/fixed packages: aufs, binutils, blktrace, brltty,
  1231. cairo, dnsmasq, docker-compose, elf2flt, exim, exiv2, git,
  1232. kodi-inputstream-adaptive, libarchive, libcgroup, libgdiplus,
  1233. libssh2, libvncserver, libvorbis, linknx, linux-firmware, lxc,
  1234. lz4, mosquitto, openjpeg, openrc, poco, proftpd, pure-ftpd,
  1235. python3, python-multidict, python-setuptools-scm-git-archive,
  1236. qpdf, qt5tools, rdesktop, rocksdb, shellinabox, squid,
  1237. suricata, swig, systemd, taglib, util-linux, wireshark, zsh
  1238. Issues resolved (http://bugs.uclibc.org):
  1239. #12571: ltp-testsuite : Build failure
  1240. #12576: 2020.02-RC1: error while loading shared libraries: ...
  1241. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  1242. 2020.02-rc2, released February 26th, 2020
  1243. Fixes all over the tree.
  1244. Toolchain: Ensure strong SSP can only be enabled if the
  1245. (external) toolchain supports it.
  1246. Fix a race condition related to creating the output/staging
  1247. symlink on systems with coreutils < 8.27.
  1248. Drop support for the (end of life) Qt 5.6 variant.
  1249. Updated/fixed packages: at, armadillo, audiofile, bash,
  1250. busybox, erlang, fail2ban, fluidsynth, ipsec-tools, jpeg-turbo,
  1251. kvm-unit-tests, libftdi1, libinput, libsvgtiny, libtomcrypt,
  1252. libupnpp, libxml2, linux-tools, luv, mbedtls, mesa3d, minicom,
  1253. openvmtools, php, qt5, qt5webengine, qwt, radvd, rcw,
  1254. sdbusplus, systemd, tpm2-tss, vorbis-tools
  1255. Issues resolved (http://bugs.uclibc.org):
  1256. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  1257. 2020.02-rc1, released February 18th, 2020
  1258. Fixes all over the tree and new features.
  1259. Add experimental support for building with a per-package
  1260. target and host directory. This still has some rough edges,
  1261. but brings a number of advantages:
  1262. - Packages will only be able to access the explicitly listed
  1263. dependencies and not any other packages that happen to be
  1264. built before, ensuring correct dependency information in
  1265. Buildroot.
  1266. - Possibility for top-level parallel builds, speeding up
  1267. builds on multicore machines.
  1268. Core: Ensure package-file-lists data is correct after
  1269. incremental builds as well.
  1270. Architecture: Add support for ARC-HS38 with 64bit multiplier
  1271. variant, allow building glibc for big endian ARC, handle 16KB
  1272. MMU page size for ARC in toolchain wrapper.
  1273. Toolchain: Add binutils 2.33.1, GCC 7.5.0, Arm 9.2-2019.12
  1274. toolchains, ARC 2019.09 toolchain. Allow using custom kernel
  1275. headers newer than what is known by Buildroot.
  1276. pkg-stats: Support for CVE vulnerability reporting by
  1277. comparing to NVD database.
  1278. Reproducible builds: The go -trimpath option is now used to
  1279. get rid of absolute build paths, __FILE__ and __BASE_FILE__
  1280. defines are now handled in the toolchain wrapper.
  1281. Systemd: Build host variant and use systemctl to automatically
  1282. enable unit files rather than manually managing symlinks.
  1283. Util-linux: Ensure that hwclock is built without GPLv3
  1284. code. Notice that builds with hwclock has contained
  1285. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  1286. New defconfigs: Beelink GS1, Raspberrypi4 64bit
  1287. New packages: alura, avro-c, bubblewrap, cctz, cereal,
  1288. cpuburn-arm, elixir, erlang-base64url, erlang-idna,
  1289. erlang-jose, erlang-p1-acme, erlang-p1-mqtree,
  1290. erlang-p1-yconf, fluid-soundfont, fluidsynth, gcnano-binaries,
  1291. gensio, glslsandbox-player, libargon2, libmodsecurity,
  1292. libpam-nfc, libtelnet, lua-codegen, lua-livr, lua-livr-extra,
  1293. lua-rotas, lua-silva, mfoc, network-manager-openvpn,
  1294. nginx-modsecurity, perl-crypt-openssl-aes,
  1295. perl-math-prime-util, pipewire, ptm2human, python-aenum,
  1296. python-aiohttp-debugtoolbar, python-aiohttp-mako,
  1297. python-aiologstash, python-aiosignal, python-aiozipkin,
  1298. python-async-lru, python-avro, python-bunch, python-crontab,
  1299. python-dnspython, python-entrypoints, python-esptool,
  1300. python-frozenlist, python-future, python-gitdb, python-janus,
  1301. python-lockfile, python-logstash, python-nested-dict,
  1302. python-pbr, python-pyaes, python-pydantic, python-smmap2,
  1303. python-sockjs, python-zc-lockfile, raspi-gpio, rocksdb,
  1304. sdbusplus, spidermonkey, thermald, ti-sgx-libgbm, tinyssh,
  1305. tio, umtprd, weston-imx, wireguard-linux-compat,
  1306. wireguard-tools, xdg-dbus-proxy
  1307. Removed packages: bluez_utils, celt051, erlang-p1-iconv, fis,
  1308. gadgetfs-test, libplayer, gstreamer, gst-ffmpeg,
  1309. gst-fsl-plugins, gst-omapfb, gst-plugins-bad,
  1310. gst-plugins-base, gst-plugins-good, gst-plugins-ugly,
  1311. perl-digest-md5, perl-mime-base64, perl-net-ping,
  1312. python-scapy3k, wireguard
  1313. Issues resolved (http://bugs.uclibc.org):
  1314. #11906: the new version of mesa3d cannot support etnaviv when..
  1315. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  1316. #12121: PyQt5.QtSerialPort and other modules not being built
  1317. #12256: package tar is outdated (1.29 is 3 years old
  1318. #12286: Can't import gobject in python 3.8
  1319. #12376: python-scapy3k is deprecated
  1320. #12386: carriage return issue when "make menuconfig"
  1321. #12441: qt5webengine build error: asm/errno.h: No such file or..
  1322. #12446: Buildroot fails to finish installing packages
  1323. #12456: qtvirtualkeyboard: No such file or directory
  1324. #12461: libglib2 build files with deep directory structure
  1325. #12481: minicom fails when output directory path contains "m4"
  1326. #12501: libnss-3.49.1: ld error: multiple definition of `gcm_..
  1327. #12526: host-nodejs 12.14.1: configure fail: AttributeError: ..
  1328. #12536: Linux-Headers extracting failure
  1329. #12546: Ninja 1.10 build Error
  1330. 2019.11.3, released April 10th, 2020
  1331. Important / security related fixes.
  1332. core: Fix compatibility with make 4.3+. Also fixup /lib
  1333. references in libtool .la files, similar to how it is done for
  1334. /usr/*.
  1335. toolchain: Fix kernel headers validation check for external
  1336. toolchains.
  1337. fs/initramfs: fix show-info so it also shows the usual
  1338. rootfs-related variables.
  1339. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  1340. civetweb, cog, collectd, ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy,
  1341. hiredis, hostapd, kmscube, libical, libopenssl, libsndfile,
  1342. linux-tools, llvm, monit, ntp, php, pure-ftpd, radvd, redis,
  1343. samba4, screen, sysdig, syslinux, syslog-ng, tor, uacme,
  1344. util-linux, vala, vlc, wpa_supplicant, xserver_xorg-server
  1345. Issues resolved (http://bugs.uclibc.org):
  1346. #12746: "sysdig" package description points to http://sysdig.org, ..
  1347. 2019.11.2, released March 16th, 2020
  1348. Important / security related fixes.
  1349. Core: Ensure package-file-lists data is correct after
  1350. incremental builds as well.
  1351. Fix a race condition related to creating the output/staging
  1352. symlink on systems with coreutils < 8.27.
  1353. Toolchain: ARC tools bumped to arc-2019.09.
  1354. Br2-external: Fix patch handling when external linux-extension
  1355. packages are used. Fix compatibility with make 4.3+
  1356. Util-linux: Ensure that hwclock is built without GPLv3
  1357. code. Notice that builds with hwclock has contained
  1358. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  1359. Updated/fixed packages: armadillo, at, bcm2835, binutils,
  1360. blktrace, bluez-alsa, bootstrap, brltty, busybox, cairo,
  1361. clamav, cog, cups, czmq, dnsmasq, docker-containerd, dovecot,
  1362. dovecot-pigeonhole, e2fsprogs, elf2flt, eudev, exim, exiv2,
  1363. fbgrab, gettext-tiny, glibc, go, grep, gst1-validate, guile,
  1364. imagemagick, jhead, jpeg-turbo, kvm-unit-tests, lapack,
  1365. libarchive, libcgroup, libdrm, libevent, libexif, libftdi1,
  1366. libgdiplus, libjpeg, libsigrok, libsndfile, libssh2,
  1367. libsvgtiny, libvncserver, libvorbis, libxml2, libxslt, linknx,
  1368. lxc, lz4, mariadb, mbedtls, meson, mongoose, mosquitto, musl,
  1369. ncurses, nodejs, ntfs-3g, ogre, opencv3, openjdk, openjpeg,
  1370. openrc, openswan, openvmtools, optee-test, patch, php, piglet,
  1371. postgresql, pppd, proftpd, pure-ftpd, python-django,
  1372. python-pyqt5, python-setuptools-scm-git-archive, python3,
  1373. qemu, qt5base, qt5tools, qt5virtualkeyboard, qt5webengine,
  1374. qwt, rdesktop, ruby, runc, samba4, shellinabox,
  1375. skeleton-init-openrc, smartmontools, spdlog, sqlcipher, squid,
  1376. suricata, swig, swupdate, sysklogd, taglib, thrift,
  1377. ti-cgt-pru, uclibc, util-linux, vorbis-tools, webkitgtk,
  1378. wireshark, wpebackend-fdo, wpewebkit, xen,
  1379. xserver_xorg-server, zeromq, zsh, zziplib
  1380. Issues resolved (http://bugs.uclibc.org):
  1381. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  1382. #12331: meson issue
  1383. #12456: qtvirtualkeyboard: No such file or directory
  1384. #12461: libglib2 build files with deep directory structure
  1385. #12481: minicom fails when output directory path contains "m4"
  1386. #12606: fbgrab location has changed
  1387. 2019.11.1, released January 12th, 2020
  1388. Important / security related fixes.
  1389. Infrastructure: kconfig: Fix reconfigure logic, python: Ensure
  1390. correct compiler and linker flags are used for compiled code
  1391. utils/scanpypi: Remind users to update DEVELOPERS
  1392. Defconfigs: imx6-sabresd: Fix the Qt5 display names,
  1393. imx8: Drop extra copy of U-Boot DTB
  1394. Updated/fixed packages: acsccid, bitcoin, boost, busybox,
  1395. cc-tool, cmocka, cpio, cups, dante, dialog, dillo, docker-cli,
  1396. docker-containerd, docker-engine, easy-rsa, ebtables,
  1397. ecryptfs-utils, efl, ffmpeg, gdb, git, glibc, gnupg2, go,
  1398. gpsd, grpc, gst1-plugins-bad, iputils, jasper,
  1399. kf5-kcoreaddons, leveldb, libarchive, libfribi, libgit2,
  1400. libkrb5, libp11, librsvg, libssh, libtomcrypt, libuio, libv4l,
  1401. lirc-tools, log4cplus, lrzip, lvm2, mali-t76x,
  1402. matchbox-desktop, mender-grubenv, mmc-utils, mosquitto,
  1403. nodejs, ntp, openipmi, opencv3, openpowerlink, openrc, pango,
  1404. perl-sys-cpu, pimd, postgresql, pulseaudio, python-brotli,
  1405. python-coherence, python-crc16, python-django, python-dpkt,
  1406. python-gobject, python-pyasn-modules, python-pypcap,
  1407. python-pyqt5, python-subprocess32, python3, qpdf,
  1408. qt-webkit-kiosk, qt5virtualkeyboard, qt5webengine, quota,
  1409. rabbitmq-c, rauc, rpcbind, rtl8821au, runc, rygel, samba4,
  1410. sdl2, setserial, snort, spidev_test,
  1411. sunxi-mali-mainline-driver, syslog-ng, sysrepo, tcllib, tftpd,
  1412. usbmount, w_scan, wavpack, wsapi, wsapi-fcgi, wsapi-xavante,
  1413. x265, xserver_xorg-server, ytree, zip
  1414. Issues resolved (http://bugs.uclibc.org):
  1415. #12121: PyQt5.QtSerialPort and other modules not being built
  1416. #12286: Can't import gobject in python 3.8
  1417. 2019.11, released December 1st, 2019
  1418. Various fixes.
  1419. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1420. <pkg>_DL_OPTS by default, just like it is done for a number of
  1421. other package variables.
  1422. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1423. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1424. the (rare) case where the .py files are needed at runtime
  1425. rather than .pyc.
  1426. Updated/fixed packages: am33x-cm3, bind, collectd, go, gob2,
  1427. gst1-plugins-bad, haproxy, jasper, jpeg-turbo, libdrm,
  1428. libftdi, libftdi1, libnss, libselinux, libstrophe, lzma,
  1429. minicom, network-manager, nodejs, oniguruma, opencv3,
  1430. openvmtools, perl-gdgraph, perl-gdtextutil, prosody,
  1431. python-cchardet, systemd, tiff, wolfssl,
  1432. Issues resolved (http://bugs.uclibc.org):
  1433. #11416: check-uniq-files staging issue
  1434. #12146: Oprofile runtime issue
  1435. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1436. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1437. #12196: duma package
  1438. #12211: host-nodejs 10.15.3 package fail to build
  1439. #12316: tzdata fails to install with empty "default local time"
  1440. #12326: network-manager build fails with missing glib error
  1441. #12366: Gstreamer1 gst1-plugins-bad do not compile with RPI-Userland
  1442. 2019.11-rc3, released November 24th, 2019
  1443. Fixes all over the tree.
  1444. Updated/fixed packages: asterisk, clamav, domoticz, faifa,
  1445. gerbera, kmod, kvm-unit-tests, libupnp18, linux-serial-test,
  1446. lsof, ltp-testsuite, lxc, mesa3d, mesa3d-headers, perl, php,
  1447. postgresql, qemu, rauc, redis, rpcbind, spice, spice-protocol,
  1448. systemd, tftpd, waylandpp, webkitgtk, zip
  1449. 2019.11-rc2, released November 16th, 2019
  1450. Fixes all over the tree.
  1451. Toolchain: ARC tools bumped to arc-2019.09-rc1, ensure
  1452. external toolchain kernel headers version check correctly stop
  1453. the build on mismatch
  1454. Meson: Fix generation of global cross-compilation.conf
  1455. Download: Also use the package download method for extra
  1456. downloads from the same site, so it does not get confused by
  1457. URLs containing '+'
  1458. Defconfigs: Fix boot issue for beaglebone
  1459. Updated/fixed packages: bird, chrony, connman, dhcp, domoticz,
  1460. dropwatch, dtc, elf2flt, gettext-tiny, glog, intel-microcode,
  1461. ipsec-tools, jailhouse, kodi, libfribi, libmbim, libressl,
  1462. libsigrokdecode, libsvgtiny, linux-serial-test, ltp-testsuite,
  1463. lvm2, lxc, mariadb, mesa3d, minizip, ndisc6, neardal, ninja,
  1464. ofono, openvmtools, oracle-mysql, qt5wayland, safeclib, socat,
  1465. sudo, systemd, wpewebkit, xserver_xorg-server
  1466. 2019.11-rc1, released November 5th, 2019
  1467. Fixes all over the tree and new features.
  1468. Dependencies: Gcc/g++ 4.8 or newer is now required on the
  1469. build host.
  1470. Ensure host has JSON::PP perl module installed if
  1471. webkitgtk/wpewebkit packages are enabled as it is needed
  1472. during their build process.
  1473. Toolchain: Add support for the D programming language (GCC
  1474. 9.x, Glibc).
  1475. GCC 9.x updated to 9.2.0, Glibc updated to 2.30, Musl updated
  1476. to 1.1.24, uClibc-ng updated to 1.0.32, ARC toolchain updated
  1477. to arc-2019.09-eng002.
  1478. Musl: Add a patch to add support for
  1479. sched_{get,set}scheduler() and sched_{get,set}param() for
  1480. compatibility.
  1481. Generate check-headers program under BUILD_DIR rather than
  1482. /tmp to fix issues with distributions mounting /tmp noexec.
  1483. Also copy libssp.so for external toolchains if SSP
  1484. to handle toolchains providing SSP support in libssp rather
  1485. than in the C library
  1486. New defconfigs: Beaglebone AI, FriendlyARM Nanopi NEO Plus2,
  1487. Libre Computer "La Frite", QEMU Armv7-A with trustzone/OP-TEE,
  1488. STM32MP157 Discovery Kit
  1489. Arch: RISC-V: Default to a sensible floating point ABI based
  1490. on the selected ISA extensions rather than always defaulting
  1491. to ILP32/64
  1492. Graph-size: Package sizes are now shown in human readable form
  1493. (Kib/Mib/Gib) rather than always in Kib. Binary (KB/MB/GB)
  1494. format can be selected using the --binary option. The cut-off
  1495. limit for classifying packages as "other" is now configurable
  1496. using the --size-limit option.
  1497. Br2-external: Linux kernel extensions can now also be provided
  1498. in an external tree by adding packages under
  1499. linux/linux-ext-*.mk. See the manual for details.
  1500. Fakeroot now works correctly under Microsoft Windows 10
  1501. Services for Linux, which does not provide SYSV IPC support
  1502. The check-uniq-files logic which would complain if multiple
  1503. packages would touch the same files has been removed as it
  1504. causes issues in certain situations (when packages are
  1505. rebuilt) and the issue is no longer considered a problem for
  1506. toplevel parallel builds as those will use a per-package
  1507. staging/target directory.
  1508. With this removed, Python is no longer required for a basic
  1509. build (only for optional scripts).
  1510. support/scripts/genimage.sh will no longer make a copy of
  1511. TARGET_DIR, speeding up post-build/image scripts.
  1512. The runtime test logic now uses Python 3.x.
  1513. A 'v' prefix has been dropped from the <pkg>_SOURCE variable
  1514. for a number of packages to match the version numbers used by
  1515. https://release-monitoring.org
  1516. New packages: caps, collectl, dav1d, fstrcmp, ima-evm-utils,
  1517. jitterentropy-library, kodi-vfs-rar, kodi-vfs-sftp, libavl,
  1518. libhttpserver, libmspack, libnetconf2, libolm, libyang,
  1519. linux-serial-test, lrzip, mdevd, minimodem, musl-fts, netifrc,
  1520. ogre, openlayers, python-aioredis, python-asgiref,
  1521. python-backports-functools-lru-cache, python-bluezero,
  1522. python-brotli, python-channels, python-channels-redis,
  1523. python-colorlog, python-daphne, python-django-enumfields,
  1524. python-jaraco-functools, python-kiwisolver, python-msgfy,
  1525. python-rpi-ws281x, python-setuptools-scm-git-archive,
  1526. python-simplelogging, python-soupsieve, python-sqliteschema,
  1527. python-sqlparse, python-tqdm, python-webencodings, qt5webview,
  1528. restclient-cpp, ripgrep, snmpclitools, sunwait, sysrepo,
  1529. uacme, utf8proc, uvw, ytree
  1530. Removed packages: alljoyn, alljoyn-base, alljoyn-tcl-base,
  1531. devmem2, eventlog, kodi-audiodecoder-opus,
  1532. kodi-screensaver-planestate, kodi-visualisation-waveforhue,
  1533. python-pysnmp-apps, riscv-pk, ustr
  1534. Issues resolved (http://bugs.uclibc.org):
  1535. #9881: systemd-resolved not setting resolv.conf link
  1536. #10171: devmem2 w (word) is 8 bytes in x86 64 systems
  1537. #10586: musl gcc has ifunc enabled when musl doesn't support it
  1538. #10806: Allow nfs-utils to use ipv6
  1539. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1540. #11411: check-uniq-files target issue
  1541. #11766: Console (getty) issues with systemd
  1542. #11781: mariadb build error
  1543. #12031: Build of cups-filters fails while linking, apparently due..
  1544. #12116: console prompt does not appear after login
  1545. #12141: eudev package is missing "render" and "kvm" groups
  1546. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  1547. #12186: Raspberry Pi Zero-W build fails on newer kernel versions
  1548. #12191: cmake BUILDDIR
  1549. #12241: Permission denied while running "make"
  1550. #12261: sudo versions prior to 1.8.28 are affected.
  1551. #12276: make clean/distclean does not remove BR2_DL_DIR and BR2_HOST_DIR
  1552. #12281: Custom configuration fails to build (based on raspberrypi3_..
  1553. 2019.08.3, released December 7th, 2019
  1554. Important / security related fixes.
  1555. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1556. <pkg>_DL_OPTS by default, just like it is done for a number of
  1557. other package variables
  1558. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1559. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1560. the (rare) case where the .py files are needed at runtime
  1561. rather than .pyc.
  1562. Fix <pkg>-reconfigure handling for packages using the kconfig
  1563. infrastructure.
  1564. Toolchain: ensure external toolchain kernel headers version
  1565. check correctly stop the build on mismatch
  1566. Deconfigs: beaglebone: fix boot issue
  1567. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1568. clamav, cmocka, collectd, connman, dhcp, dropwatch, faifa,
  1569. gettext-tiny, gob2, haproxy, intel-microcode, ipsec-tools,
  1570. jailhouse, jasper, jpeg-turbo, kodi, kvm-unit-tests, libftdi,
  1571. libftdi1, libnss, libressl, libstrophe, libsvgtiny, lvm2,
  1572. lzma, mariadb, minicom, mosquitto, neardal, ninja, nodejs,
  1573. oniguruma, openvmtools, oracle-mysql, perl-gdgraph,
  1574. perl-gdtextutil, php, postgresql, prosody, python-cchardet,
  1575. python-django, qt5wayland, rabbitmq, rauc, redis, rpcbind,
  1576. socat, spice, spice-protocol, tftpd, tiff, webkitgtk
  1577. New packages: libmspack
  1578. Issues resolved (http://bugs.uclibc.org):
  1579. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1580. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1581. #12211: host-nodejs 10.15.3 package fail to build
  1582. #12316: tzdata fails to install with empty "default local time"
  1583. 2019.08.2, released November 9th, 2019
  1584. Important / security related fixes.
  1585. Toolchain: Also copy libssp.so for external toolchains if SSP
  1586. to handle toolchains providing SSP support in libssp rather
  1587. than in the C library
  1588. Download: Also use the package download method for extra
  1589. downloads from the same site, so it does not get confused by
  1590. URLs containing '+'
  1591. Fakeroot now works correctly under Microsoft Windows 10
  1592. Services for Linux, which does not provide SYSV IPC support
  1593. utils/test-pkg: ensure to exit with an error upon failure
  1594. Updated/fixed packages: asterisk, azmq, binutils,
  1595. cups-filters, domoticz, dtc, duma, elf2flt, eudev, exfat,
  1596. exfat-utils, fakeroot, fdk-aac, file, freerdp, gcc, gd,
  1597. ghostscript, go, gpsd, grpc, gst1-plugins-base, gvfs, icu,
  1598. intel-microcode, kvm-unit-tests, libfribidi, libnspr, libnss,
  1599. libopenssl, libpcap, libpciaccess, librsvg, libseccomp,
  1600. libsigrok, libtorrent, libunwind, libva, linux-tools,
  1601. lua-sdl2, lxc, minizip, mjpegtools, mongoose, mono, nbd,
  1602. nfs-utils, php, piglit, python, python-autobahn,
  1603. python-pysnmp-apps, python-tornado, python3, qemu, qt5base,
  1604. ruby, safeclib, samba4, sdl_mixer, sox, sudo, suricata,
  1605. systemd, tcpdump, unscd, util-linux, vdr-plugin-vnsiserver,
  1606. vtun, wireshark, xvisor, yaffs2utils
  1607. Issues resolved (http://bugs.uclibc.org):
  1608. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1609. #12261: sudo versions prior to 1.8.28 are affected
  1610. 2019.08.1, released October 3rd, 2019
  1611. Important / security related fixes.
  1612. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1613. Use default console settings
  1614. Dependencies: Ensure host has JSON::PP perl module installed
  1615. if webkitgtk/wpewebkit packages are enabled as it is needed
  1616. during their build process.
  1617. Toolchain: Generate check-headers program under BUILD_DIR
  1618. rather than /tmp to fix issues with distributions mounting
  1619. /tmp noexec.
  1620. Updated/fixed packages: asterisk, augeas, axel, bind, bwm-ng,
  1621. cups, cups-filters, docker-cli, docker-engine, docker-proxy,
  1622. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd, joe,
  1623. kf5-extra-cmake-modules, kf5-modemmanager-qt,
  1624. kf5-networkmanager-qt, libcamera, libcurl, libgcrypt,
  1625. libglib2, libgpg-error, libnspr, libnss, libopenssl,
  1626. logrotate, luksmeta, mariadb, mbedtls, mongodb, mosquitto,
  1627. ncurses, nfs-utils, nghttp2, nodejs, openvmtools, php,
  1628. protobuf, putty, qemu, samba4, snort, swupdate,
  1629. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1630. wireshark
  1631. Issues resolved (http://bugs.uclibc.org):
  1632. #10806: Allow nfs-utils to use ipv6
  1633. #11781: mariadb build error
  1634. #12031: Build of cups-filters fails while linking, apparently due..
  1635. #12141: eudev package is missing "render" and "kvm" groups
  1636. #12241: Permission denied while running "make"
  1637. 2019.08, released September 1st, 2019
  1638. Various fixes.
  1639. Defconfigs: Removed nanopc t4, nanopi m4 and neo4, pine64
  1640. rockpro64 and raxda rock pi4 as they rely on a ARM32 toolchain
  1641. on the build host to build ATF. These defconfigs will be added
  1642. back once a package providing such toolchain is
  1643. available. Also dropped ts4800 defconfig as it does not build
  1644. with GCC >= 8.x.
  1645. Updated/fixed packages: libxcb, php, python-numpy, webkitgtk,
  1646. wpewebkit, xfont_font-util
  1647. Issues resolved (http://bugs.uclibc.org):
  1648. #12156: buildroot-2019.08-rc3 does not build for Pi Zero W
  1649. 2019.08-rc3, released August 28th, 2019
  1650. Fixes all over the tree.
  1651. Updated/fixed packages: clamav, dovecot, dovecot-pigeonhole,
  1652. gcc, intel-microcode, libmicrohttpd, libmodplug, mpg123,
  1653. nginx, openldap, python, qemu, samba4, squid, strace, vlc
  1654. Issues resolved (http://bugs.uclibc.org):
  1655. #11686: fbdev_drv.so: undefined symbol: shadowUpdatePackedWeak,..
  1656. 2019.08-rc2, released August 20th, 2019
  1657. Fixes all over the tree.
  1658. Compile fixes for a number of defconfigs.
  1659. Updated/fixed packages: apache, autofs, batctl, batman-adv,
  1660. bind, collectd, cwiid, dahdi-linux, dahdi-tools, daq,
  1661. dehydrated, dhcp, dtc, efl, enlightenment, evtest, giflib,
  1662. gnutls, go, gst-plugins-bad, gst-plugins-base,
  1663. gst1-plugins-bad, gst1-plugins-base, gst1-rtsp-server, gtkmm3,
  1664. gupnp, harfbuzz, imagemagick, lftp, libbsd, libcpprestsdk,
  1665. libdnet, libfm, libgit2, libgtk2, libgtk3, libpri, librsvg,
  1666. libss7, libssh2, libwpe, lua-cqueues, metacity, micropython,
  1667. mpd, mpg123, musl, mpv, openblas, openbox, opencv, pango,
  1668. pcmanfm, piglit, pigpio, pinentry, postgresql, qemu, qt5base,
  1669. qt5enginio, qt5multimedia, qt5serialbus, quagga, quazip,
  1670. rrdtool, rygel, samba4, stellarium, tcpreplay, ti-gfx, vte,
  1671. wampcc, wilink-bt-firmware, wireless-regdb, wpebackend-fdo,
  1672. xscreensaver
  1673. Removed packages: libamcodec, odroid-mali, odroid-scripts
  1674. Issues resolved (http://bugs.uclibc.org):
  1675. #9481: NetworkManager/Ping unable to resolve domains
  1676. #10566: php.mk is missing option --with-pgsql
  1677. #10861: Package batman_adv Makefile is missing include header direct..
  1678. #11641: linux kernel .config timestamp always out of date fixed with..
  1679. #11671: russian locale ru_RU:145: LC_TIME: syntax error
  1680. #11701: recuuring of usr and in bin shortcuts are created
  1681. #11741: pigpio does not build host-pigpio
  1682. #11876: automount using host mount/umount
  1683. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1684. #11921: dahdi fails to build
  1685. #11936: libcpprestsdk should install to staging
  1686. #11946: wilink-bt-firmware: moved from github to http://git.ti.com/ti-bt
  1687. #11961: libpri build failure
  1688. #12086: dhcp shared libraries not installed to target
  1689. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1690. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1691. #12126: vc4 has neon as hard dependency
  1692. 2019.08-rc1, released August 9th, 2019
  1693. Fixes all over the tree and new features.
  1694. toolchain: ARC toolchain updated to 2019.03 (binutils 2.32.51
  1695. / GCC 8.3.1 / glibc 2.29), ARM AAarch64/ARM toolchains updated
  1696. to 2019.03. Add GCC 9.1.0, remove GCC 4.9 and 6.5, add GDB
  1697. 8.3, remove GDB 7.12 and 8.0.1, default to GDB 8.2, GCC
  1698. 8.3.0. Musl updated to 1.1.23, bringing support for RISC-V 64.
  1699. Architectures: Internal toolchain support for C-SKY, support
  1700. for ARC HS48 v3.1 and HS38 with Quad MAC & FPU, support for
  1701. ARM A76, A76/A55 big.LITTLE, emag, neoverse-N1, phecda and
  1702. tsv110.
  1703. Filesystems: Pass extra pax options to tar for binary
  1704. reproducibility. Build host-cpio for the --reproducible option
  1705. support when BR2_REPRODUCIBLE is enabled. Genimage updated to
  1706. version 11, bringing GPT support.
  1707. Br2-external: Add support for injecting additional options to
  1708. the list of preconfigured external toolchains and libjpeg and
  1709. openssl providers using files under provides/. See the manual
  1710. for details.
  1711. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1712. passed before the standard exclusions so they are not ignored
  1713. by rsync when using override-srcdir.
  1714. Gnuconfig updated to 2019-05-28, adding C-SKY support.
  1715. test-pkg: Correct long option handling and clean output dir
  1716. after a successful build to save disk space.
  1717. support/testing: Emulate a machine with 256MB RAM to fix
  1718. issues with certain tests running out of memory, use
  1719. virtio-rng to provide needed entrophy.
  1720. pkg-stats: support outputting in JSON format with --json for
  1721. easier post processing. The classic HTML output is still
  1722. available with --html. Parallelize access to
  1723. release-monitoring.org to speed up runtime.
  1724. Drop non-conventional version prefix/suffix/separators for
  1725. packages for better compatibility with release-monitoring.org
  1726. Packages:
  1727. Init systems: Add basic openrc support and
  1728. <pkg>_INSTALL_INIT_OPENRC variable in the infrastructure to
  1729. install openrc service scripts if enabled.
  1730. busybox: Build each applet as a separate binary when SELinux
  1731. is enabled for more finegrained policy control. Use daemon
  1732. mode for mdev rather than legacy hotplug.
  1733. linux: Workaround -Werror related build failure on powerpc,
  1734. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1735. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1736. partition is available before mounting.
  1737. New defconfigs: HiFive Unleashed, I.MX8MM EVK and Pico, Nanopi
  1738. m4 and neo4, Nanopc t4, Olimex A33 olinuxino, Pine64
  1739. Rockpro64, PowerPC mac99, QEMU C-SKY 610/807/810/860 virt,
  1740. Raspberry Pi 4, Raxda rock pi4, Solidrun Clearfog GT-8K
  1741. Removed defconfigs: Odroid C2
  1742. New packages: bitcoin, c-capnproto, fatcat, ifmetric, jack1,
  1743. jailhouse, libubootenv, luasyslog, mender-grubenv,
  1744. murata-cyw-fw, openrc, piglit, python-colorama, python-cycler,
  1745. python-hiredis, python-ifaddr, python-inflection,
  1746. python-iptables, python-matplotlib, python-periphery,
  1747. python-pycairo, python-redis, python-termcolor,
  1748. python-tinyrpc, python-txdbus, skeleton-init-openrc, spdlog,
  1749. sshguard, stellarium, zziplib
  1750. Removed packages: xapp_mkfontdir
  1751. Issues resolved (http://bugs.uclibc.org):
  1752. #11096: Upgrade from glibc 2.26 to 2.27 broke some locales...
  1753. #11271: utils/check-package fails with exception depending on..
  1754. #11991: [numpy] segfault when compiling for RPi3 64bits
  1755. #12016: Grub fails to boot bzImage after upgrade to 2019.05
  1756. #12046: Can’t login as root user after upgrading to buildroot..
  1757. #12051: package/dhcp installs libtool wrapper scripts on tar...
  1758. #12076: Patchelf can link against an incompatible libc++ ver...
  1759. 2019.05.3, Released October 3rd, 2019
  1760. Important / security related fixes.
  1761. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1762. Use default console settings
  1763. Dependencies: Ensure host has JSON::PP perl module installed
  1764. if webkitgtk/wpewebkit packages are enabled as it is needed
  1765. during their build process.
  1766. Toolchain: Generate check-headers program under BUILD_DIR
  1767. rather than /tmp to fix issues with distributions mounting
  1768. /tmp noexec.
  1769. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1770. cups-filters, docker-cli, docker-engine, docker-proxy,
  1771. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd,
  1772. iptables, joe, kf5-extra-cmake-modules, kf5-modemmanager-qt,
  1773. kf5-networkmanager-qtlibcamera, libcurl, libgcrypt,
  1774. libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1775. libtorrent-rasterbar, luksmeta, mariadb, mbedtls, mongodb,
  1776. mosquitto, ncurses, nfs-utils, nghttp2, nodejs, openvmtools,
  1777. php, protobuf, putty, qemu, samba4, swupdate,
  1778. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1779. wireshark
  1780. Issues resolved (http://bugs.uclibc.org):
  1781. #10806: Allow nfs-utils to use ipv6
  1782. #11781: mariadb build error
  1783. #12031: Build of cups-filters fails while linking, apparently due..
  1784. #12141: eudev package is missing "render" and "kvm" groups
  1785. #12241: Permission denied while running "make"
  1786. 2019.05.2, Released September 3rd, 2019
  1787. Important / security related fixes.
  1788. Filesystems: Pass extra pax options to tar for binary
  1789. reproducibility.
  1790. Updated/fixed packages: apache, arm-trusted-firmware,
  1791. asterisk, atk, autofs, batctl, batman-adv, berkeleydb,
  1792. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1793. dahdi-linux, dahdi-tools, daq, dehydrated, dhcp, dovecot,
  1794. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1795. git, glib-networking, glibc, gnupg2, gnutls, go,
  1796. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1797. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1798. libgit2, libgtk2, libgtk3, libmodplug, libnss, libpri,
  1799. libshout, libss7, libssh2, libvips, libxcb, linux-headers,
  1800. mdadm, mesa3d, metacity, mpg123, mosquitto, musl, nginx,
  1801. oniguruma, openblas, opencv3, openjdk, openjdk-bin, openldap,
  1802. openvmtools, pcmanfm, php, pigpio, postgresql, prboom,
  1803. proftpd, proj, python, python-django, python-idna,
  1804. python-numpy, python-urllib3, python3, qemu, qt5, qt5base,
  1805. qt5enginio, quagga, rygel, squid, subversion, tcpreplay,
  1806. unzip, vlc, vte, webkitgtk, wireless-regdb, xen,
  1807. xfont_font-util, xlib_libICE, xlib_libXfont, xlib_libXfont2,
  1808. yad, zeromq
  1809. Issues resolved (http://bugs.uclibc.org):
  1810. #11741: pigpio does not build host-pigpio
  1811. #11876: automount using host mount/umount
  1812. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1813. #11921: dahdi fails to build
  1814. #11961: libpri build failure
  1815. #12086: (dhcpd-missing-libs) - dhcp shared libraries not installed to..
  1816. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1817. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1818. #12126: vc4 has neon as hard dependency
  1819. 2019.05.1, Released July 7th, 2019
  1820. Important / security related fixes.
  1821. arch: x86: Fix typo breaking 'core-avx2' variant
  1822. linux: Workaround -Werror related build failure on powerpc,
  1823. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1824. support/testing: Emulate a machine with 256MB RAM to fix
  1825. issues with certain tests running out of memory.
  1826. test-pkg: Correct long option handling and clean output dir
  1827. after a successful build to save disk space.
  1828. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1829. partition is available before mounting.
  1830. Updated/fixed packages: barebox, busybox, bzip2, davfs2,
  1831. dialog, docker-cli, docker-engine, exim, expat, faad2,
  1832. haveged, irssi, libcamera, libcdaudio, libcurl, libglib2,
  1833. libressl, libsecret, lmbench, meson, monit, php, postgresql,
  1834. psplash, python-django, qt5base, tvheadend, webkitgtk,
  1835. xserver_xorg-server, znc
  1836. 2019.05, released June 2nd, 2019
  1837. Various fixes.
  1838. Toolchain: Ensure pre-built Andes toolchains can only be
  1839. selected when x86 32bit support is available on the host.
  1840. Disallow PowerPC SPE ABI for GCC >= 8.x, as it is no longer
  1841. supported.
  1842. Infra: pkg-config: Use a dedicated timestamp file rather than
  1843. .config as that gets touched by linux-4.19+, causing repeated
  1844. builds.
  1845. Add C-SKY support to our config.sub (gnuconfig)
  1846. Updated/fixed packages: dosfstools, botan, brotli, dropbear,
  1847. flare-engine, gst1-plugins-bad, libhtp, libnss, libopenssl,
  1848. linuxptp, matchbox-panel, mender, mutt, netsurf,
  1849. network-manager, opencv3, openjdk, openmpi, php,
  1850. python-cython, qt5multimedia, qtwayland, qt5webkit-examples,
  1851. supertux, suricata, tpm2-totp, v4l2loopback, wireshark,
  1852. wpewebkit
  1853. 2019.05-rc3, released May 25th, 2019
  1854. Fixes all over the tree.
  1855. check-bin-arch: Ignore /usr/lib/grub, similar to how /lib/grub
  1856. is ignored.
  1857. check-package: Warn about utf-8 characters in .mk files
  1858. Linux: Default to 5.1.x series
  1859. Updated/fixed packages: assimp, atop, chocolate-doom, cjson,
  1860. ddrescue, dhcp, ffmpeg, gerbera, glibmm, gpsd, gst-ffmpeg,
  1861. intel-microcode, jasper, keepalived, kismet, libcpprestsdk,
  1862. libcurl, libssh2, libupnp18, luarocks, mono-gtksharp3, opus,
  1863. postgresql, pcsc-lite, python, tslib, webkitgtk,
  1864. wpebackend-fdo, wpewebkit
  1865. 2019.05-rc2, released May 15th, 2019
  1866. Fixes all over the tree.
  1867. Updated/fixed packages: bind, bullet, ca-certificates,
  1868. collectd, cracklib, dhcp, gdb, libinput, libtorrent-rasterbar,
  1869. linknx, lynx, mono, netsurf, optee-os, postgresql, qt5enginio,
  1870. qt5multimedia, rpm, samba4, sqlite, strace, uclibc, woff2
  1871. Issues resolved (http://bugs.uclibc.org):
  1872. #11841: grub-efi.cfg not used when building EFI disk image
  1873. 2019.05-rc1, Released May 8th, 2019
  1874. Fixes all over the tree and new features.
  1875. Architecture: Andes 32-bit (nds32) support added.
  1876. Only build host-lzip / host-xz when really needed by packages,
  1877. not just when not available on the build host.
  1878. Toolchain: Glibc bumped to 2.29, musl bumped to 1.1.22,
  1879. binutils 2.32 added, 2.28/2.29 removed, default changed to
  1880. 2.31.1.
  1881. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1882. forward {f,l,}chown calls to libc when running under fakeroot
  1883. to fix issues when building in restricted environments
  1884. (E.G. user namespace with bubblewrap).
  1885. Linux: Also build default make target to ensure extra files
  1886. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1887. built. Notice: This may mean that extra host utilities like
  1888. uboot-mkimage are needed.
  1889. Infrastructure: show-info and <pkg>-show-info make targets
  1890. added to output package metadata in JSON format for external
  1891. use.
  1892. pkg-generic: Only tweak .la files needing it to ensure they
  1893. are not included in subsequent package file lists.
  1894. test-pkg: Generate a basic package config if none is
  1895. specified.
  1896. Gettext-tiny package added as an lightweight replacement for
  1897. GNU gettext for situations where NLS support is not needed.
  1898. New defconfigs: Andes AE3XX, Freescale imx8mpico / imx8qxpmek
  1899. / T2080 QDS RDB, Licheepi zero, Orangepi R1
  1900. Removed defconfigs: Olimx A20 Olinuxino Lime legacy
  1901. New packages: bats-core, bayer2rgb-neon, brickd, cog, dacapo,
  1902. enet, gettext-tiny, gli, gst1-plugins-bayer2rgb-neon,
  1903. imx-sc-firmware, intel-mediadriver, intel-mediasdk, libcamera,
  1904. libhtp, libp11, libwpe, lua-binaryheap, lua-gd, lua-lunitx,
  1905. mender-artifact, most, oniguruma, openjdk, openjdk-bin,
  1906. opensbi, optee-benchmark, optee-client, optee-examples,
  1907. optee-os, optee-test, paho-mqtt-cpp, python-aioblescan,
  1908. python-aioconsole, python-aiohttp-cors, python-aiomonitor,
  1909. python-backcall, python-jedi, python-parso, python-pyjwt,
  1910. python-terminaltables, suricata, tpm2-totp, uftp,
  1911. wpebackend-fdo, wpewebkit
  1912. Removed packages: libump, lunit, sunxi-mali
  1913. Issues resolved (http://bugs.uclibc.org):
  1914. #11716: Typo on website, saying latest release is 2018.2.11
  1915. #11756: package/syslinux: MBR's don't fit because of binutils..
  1916. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1917. #11816: Only selected coreutils binaries are installed
  1918. 2019.02.11, released April 9th, 2020
  1919. Important / security related fixes.
  1920. core: Fix compatibility with make 4.3+. Also fixup /lib
  1921. references in libtool .la files, similar to how it is done for
  1922. /usr/*.
  1923. toolchain: Fix kernel headers validation check for external
  1924. toolchains.
  1925. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  1926. civetweb, collectd, ffmpeg, gcc, gnutls, gvfs, haproxy,
  1927. hiredis, kmscube, libical, libopenssl, libsndfile,
  1928. linux-tools, ntp, php, pure-ftpd, screen, sysdig, tor,
  1929. util-linux, vala, vlc, xserver_xorg-server
  1930. Issues resolved (http://bugs.uclibc.org):
  1931. #12746: "sysdig" package description points to http://sysdig.org, ..
  1932. 2019.02.10, released March 16th, 2020
  1933. Important / security related fixes.
  1934. Core: Ensure package-file-lists data is correct after
  1935. incremental builds as well.
  1936. Fix a race condition related to creating the output/staging
  1937. symlink on systems with coreutils < 8.27.
  1938. Br2-external: Fix compatibility with make 4.3+
  1939. Util-linux: Ensure that hwclock is built without GPLv3
  1940. code. Notice that builds with hwclock has contained
  1941. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  1942. Updated/fixed packages: armadillo, at, binutils, blktrace,
  1943. bootstrap, busybox, cairo, cups, czmq, dnsmasq,
  1944. docker-containerd, dovecot, dovecot-pigeonhole, e2fsprogs,
  1945. eudev, exim, exiv2, fbgrab, grep, gst1-validate, guile,
  1946. imagemagick, jhead, kvm-unit-tests, lapack, libcgroup,
  1947. libftdi1, libjpeg, libsigrok, libsndfile, libssh2, libsvgtiny,
  1948. libvncserver, libvorbis, libxml2, libxslt, linux, lz4,
  1949. mariadb, mbedtls, meson, mfgtools, mongoose, ncurses, ntfs-3g,
  1950. opencv3, openjpeg, openswan, openvmtools, patch, php,
  1951. postgresql, pppd, proftpd, pure-ftpd, python-django,
  1952. python-pyqt5, python3, qemu, qt5base, qt5webengine, qwt,
  1953. rdesktop, ruby, runc, samba4, shellinabox, smartmontools,
  1954. sqlcipher, squid, swupdate, sysklogd, taglib, thrift,
  1955. ti-cgt-pru, uboot, util-linux, vorbis-tools, webkitgtk,
  1956. wireshark, xen, xserver_xorg-server, zeromq, zsh
  1957. Issues resolved (http://bugs.uclibc.org):
  1958. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  1959. #12331: meson issue
  1960. #12461: libglib2 build files with deep directory structure
  1961. #12606: fbgrab location has changed
  1962. 2019.02.9, released January 12th, 2020
  1963. Important / security related fixes.
  1964. pkg-python infrastructure: Ensure correct compiler and linker
  1965. flags are used for compiled code
  1966. utils/scanpypi: Remind users to update DEVELOPERS
  1967. Updated/fixed packages: busybox, cc-tool, cpio, cups, dante,
  1968. dillo, docker-cli, docker-containerd, docker-engine, easy-rsa,
  1969. ecryptfs-utils, efl, git, glibc, gnupg2, gst1-plugins-bad,
  1970. kf5-kcoreaddons, libarchive, libgit2, libkrb5, librsvg,
  1971. libssh, libtomcrypt, libuio, lirc-tools, lvm2,
  1972. matchbox-desktop, nodejs, ntp, opencv3, openpowerlink,
  1973. python-django, python-ecdsa, python-pyasn-modules,
  1974. python-pyqt5, python-subprocess32, python3, qpdf, runc, rygel,
  1975. samba4, sdl2, wavpack, xserver_xorg-server, zip
  1976. Issues resolved (http://bugs.uclibc.org):
  1977. #12121: PyQt5.QtSerialPort and other modules not being built
  1978. 2019.02.8, released December 7th, 2019
  1979. Important / security related fixes.
  1980. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1981. <pkg>_DL_OPTS by default, just like it is done for a number of
  1982. other package variables
  1983. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1984. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1985. the (rare) case where the .py files are needed at runtime
  1986. rather than .pyc.
  1987. Fix <pkg>-reconfigure handling for packages using the kconfig
  1988. infrastructure.
  1989. Toolchain: ensure external toolchain kernel headers version
  1990. check correctly stop the build on mismatch
  1991. Deconfigs: beaglebone: fix boot issue
  1992. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1993. clamav, collectd, connman, faifa, gob2, haproxy,
  1994. intel-microcode, ipsec-tools, jasper, jpeg-turbo, kodi,
  1995. kvm-unit-tests, libftdi, libftdi1, libnss, libstrophe,
  1996. libsvgtiny, lvm2, lzma, mariadb, minicom, neardal, nodejs,
  1997. opencv3, openvmtools, oracle-mysql, perl-gdgraph,
  1998. perl-gdtextutil, php, postgresql, prosody, python-django,
  1999. rabbitmq-c, rauc, redis, rpcbind, socat, spice,
  2000. spice-protocol, tftpd, tiff, webkitgtk
  2001. New packages: libmspack
  2002. Issues resolved (http://bugs.uclibc.org):
  2003. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  2004. #12171: Python-opencv needs config.py and config-3.7.py to run..
  2005. #12211: host-nodejs 10.15.3 package fail to build
  2006. #12316: tzdata fails to install with empty "default local time"
  2007. 2019.02.7, Released November 10th, 2019
  2008. Important / security related fixes.
  2009. support/testing: use a kernel with HW_RANDOM_VIRTIO to work
  2010. around issues with lack of entrophy
  2011. Toolchain: Also copy libssp.so for external toolchains if SSP
  2012. is enabled to handle toolchains providing SSP support in
  2013. libssp rather than in the C library
  2014. Download: Also use the package download method for extra
  2015. downloads from the same site, so it does not get confused by
  2016. URLs containing '+'
  2017. Fakeroot now works correctly under Microsoft Windows 10
  2018. Services for Linux, which does not provide SYSV IPC support
  2019. utils/test-pkg: ensure to exit with an error upon failure
  2020. Updated/fixed packages: asterisk, azmq, cups-filters,
  2021. domoticz, duma, elf2flt, eudev, exfat, exfat-utils, fakeroot,
  2022. file, freerdp, gd, ghostscript, go, gvfs, intel-microcode,
  2023. kvm-unit-tests, libarchive, libnspr, libnss, libopenssl,
  2024. libpcap, libpciaccess, librsvg, libseccomp, libsigrok,
  2025. libtorrent, libunwind, linux-tools, lua-sdl2, lxc, minizip,
  2026. mjpegtools, mongoose, php, python, python-pysnmp-apps,
  2027. python3, qemu, qt5base, ruby, safeclib, samba4, sdl_mixer,
  2028. sox, sudo, systemd, tcpdump, unscd, util-lkinux, vtun, xvisor,
  2029. yaffs2utils
  2030. Issues resolved (http://bugs.uclibc.org):
  2031. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  2032. #12261: sudo versions prior to 1.8.28 are affected
  2033. 2019.02.6, Released October 3rd, 2019
  2034. Important / security related fixes.
  2035. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  2036. Use default console settings
  2037. Dependencies: Ensure host has JSON::PP perl module installed
  2038. if webkitgtk/wpewebkit packages are enabled as it is needed
  2039. during their build process.
  2040. Toolchain: Generate check-headers program under BUILD_DIR
  2041. rather than /tmp to fix issues with distributions mounting
  2042. /tmp noexec.
  2043. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  2044. cups-filters, docker-cli, docker-engine, docker-proxy,
  2045. dropbear, e2fsprogs, eudev, exim, expat, gcc, go, ifplugd,
  2046. haveged, iptables, joe, kf5-extra-cmake-modules,
  2047. kf5-modemmanager-qt, kf5-networkmanager-qt, libcurl,
  2048. libgcrypt, libgpg-error, libnftl, libnspr, libnss, libopenssl,
  2049. luksmeta, mariadb, mbedtls, mongodb, mosquitto, ncurses,
  2050. nfs-utils, nghttp2, nodejs, openvmtools, php, protobuf, putty,
  2051. qemu, qt5base, samba4, swupdate, systemd-bootchart, thttpd,
  2052. uclibc, unzip, util-linux, wireshark
  2053. Issues resolved (http://bugs.uclibc.org):
  2054. #10806: Allow nfs-utils to use ipv6
  2055. #11781: mariadb build error
  2056. #12031: Build of cups-filters fails while linking, apparently due..
  2057. #12141: eudev package is missing "render" and "kvm" groups
  2058. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  2059. #12241: Permission denied while running "make"
  2060. 2019.02.5, Released September 2nd, 2019
  2061. Important / security related fixes.
  2062. Filesystems: Pass extra pax options to tar for binary
  2063. reproducibility.
  2064. Updated/fixed packages: apache, arm-trusted-firmware,
  2065. asterisk, atk, autofs, batctl, batman-adv, berkeleydb, brotli,
  2066. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  2067. cryptopp, dahdi-linux, dahdi-tools, daq, dehydrated, dovecot,
  2068. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  2069. git, glib-networking, glibc, gnupg2, gnutls, go,
  2070. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  2071. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  2072. libgit2, libgtk3, libmodplug, libnss, libpri, libshout,
  2073. libss7, libssh2, libvips, libxcb, linux-headers, mdadm,
  2074. mesa3d, metacity, mpg123, mosquitto, musl, nginx, openblas,
  2075. opencv3, openldap, openvmtools, pcmanfm, php, pigpio,
  2076. postgresql, prboom, proftpd, proj, python, python-django,
  2077. python-idna, python-numpy, python-urllib3, python3, qemu, qt5,
  2078. qt5base, qt5enginio, quagga, rygel, squid, subversion,
  2079. tcpreplay, unzip, vlc, vte, webkitgtk, weston, wireless-regdb,
  2080. xen, xfont_font-util, xlib_libICE, xlib_libXfont,
  2081. xlib_libXfont2, yad, zeromq
  2082. Issues resolved (http://bugs.uclibc.org):
  2083. #11741: pigpio does not build host-pigpio
  2084. #11876: automount using host mount/umount
  2085. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  2086. #11921: dahdi fails to build
  2087. #11961: libpri build failure
  2088. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  2089. #12106: daq: build fails if libdumbnet-dev is installed in the host
  2090. #12126: vc4 has neon as hard dependency
  2091. 2019.02.4, Released July 10th, 2019
  2092. Important / security related fixes.
  2093. arch: x86: Fix typo breaking 'core-avx2' variant, add Westmere
  2094. variant.
  2095. linux: Workaround -Werror related build failure on powerpc,
  2096. by forcing CONFIG_PPC_DISABLE_WERROR on.
  2097. support/testing: Emulate a machine with 256MB RAM to fix
  2098. issues with certain tests running out of memory.
  2099. test-pkg: Correct long option handling and clean output dir
  2100. after a successful build to save disk space.
  2101. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  2102. passed before the standard exclusions so they are not ignored
  2103. by rsync when using override-srcdir.
  2104. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  2105. partition is available before mounting.
  2106. Updated/fixed packages: barebox, bzip2, davfs2, dbus, dialog,
  2107. docker-cli, docker-engine, expat, faad2, ffmpeg, freeswitch,
  2108. gerbera, haveged, irssi, libcdadio, libgit2, libglib2,
  2109. libsecret, libvncserver, lmbench, logrotate, mariadb, meson,
  2110. mongoose, monit, mpd, openblas, php, postgresql, psplash,
  2111. python, python-django, python3, qt5base, samba4, taglib,
  2112. tvheadend, vlc, webkitgtk, xserver_xorg-server, znc
  2113. 2019.02.3, Released June 7th, 2019
  2114. Important / security related fixes.
  2115. Infra: pkg-config: Use a dedicated timestamp file rather than
  2116. .config as that gets touched by linux-4.19+, causing repeated
  2117. builds.
  2118. check-bin-arch: Also ignore /usr/lib/grub to support merged
  2119. /usr setups, similar to how /lib/grub is ignored.
  2120. gnuconfig/config.sub: Add C-SKY architecture support.
  2121. Updated/fixed packages: assimp, atftp, atop, botan, busybox,
  2122. ca-certificates, chocolate-doom, cjson, coreutils, cracklib,
  2123. ddrescue, dhcp, docker-cli, docker-containerd, docker-engine,
  2124. dosfstools, dovecot, dovecot-pigeonhole, dropbear, exim,
  2125. ffmpeg, flare-engine, gcc, gdb, gerbera, glibmm, go, gpsd,
  2126. gst-ffmpeg, gst1-plugins-bad, gst1-plugins-base, imagemagick,
  2127. intel-microcode, jasper, kf5-kcoreaddons, kismet, libcurl,
  2128. libglib2, libnss, libopenssl, libsigrok, libssh2, libupnp18,
  2129. linuxptp, luajit, lynx, matchbox-panel, mender,
  2130. netcat-openbsd, netsurf, nfs-utils, opus, orc, owfs,
  2131. pcsc-lite, php, popt, postgresql, python, python-cython,
  2132. python-django, python-ply, qt5enginio, rpm, runc, samba4,
  2133. sqlite, subversion, supertux, systemd, tslib, uclibc,
  2134. v4l2loopback, webkitgtk, woff2
  2135. Issues resolved (http://bugs.uclibc.org):
  2136. #11816: Only selected coreutils binaries are installed
  2137. #11841: grub-efi.cfg not used when building EFI disk image
  2138. #11911: systemd v240 memory leak in systemd-journald
  2139. 2019.02.2, Released April 29th, 2019
  2140. Important / security related fixes.
  2141. Only build host-lzip / host-xz when really needed by packages,
  2142. not just when not available on the build host.
  2143. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  2144. forward {f,l,}chown calls to libc when running under fakeroot
  2145. to fix issues when building in restricted environments
  2146. (E.G. user namespace with bubblewrap).
  2147. Linux: Also build default make target to ensure extra files
  2148. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  2149. built. Notice: This may mean that extra host utilities like
  2150. uboot-mkimage are needed.
  2151. Defconfigs: ASUS tinker and Amarula vyasa rk3822: Support
  2152. larger kernel images, Atmel SAM5D27, SAM5D2,3,4 xplained:
  2153. Increase rootfs size to fit utilities, Raspberry Pi 64bit:
  2154. Include overlays in sdcard image
  2155. Updated/fixed packages: android-tools, apache, bind, binutils,
  2156. busybox, civetweb, cjson, copas, davfs2, docker-cli,
  2157. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  2158. freerdp, gerbera, ghostscript, git, gnutls, go, gst-omx,
  2159. gst1-plugins-base, gst1-plugins-ugly, haproxy, hostapd,
  2160. ipsec-tools, libfreefare, libfuse, libkrb5, libpng, libxml2,
  2161. libxslt, linknx, linux, linux-firmware, linux-tools, live555,
  2162. lldp, lrzsz, lynx, madplay, make, minicom, mongodb, msmtp,
  2163. musl, mutt, neon, netsnmp, numactl, opus, perl, php,
  2164. postgresql, pure-ftpd, python-urllib3, python3, qt5base,
  2165. rapidxml, rpm, rsyslog, ruby, runc, samba4, sane-backends,
  2166. softether, stunnel, sysklogd, syslinux, syslog-ng,
  2167. systemd-bootchart, thttpd, thrift, tiff, tor, tpm2-tools,
  2168. tpm2-tss, webkitgtk, yaffs2utils, wget, wpa_supplicant, wsapi,
  2169. xapp_xfd, xapp_xload, xlib_libXpm, xserver_xorg-server, xz,
  2170. znc
  2171. Issues resolved (http://bugs.uclibc.org):
  2172. #11756: package/syslinux: MBR's don't fit because of binutils..
  2173. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  2174. 2019.02.1, Released March 29th, 2019
  2175. Important / security related fixes.
  2176. pkg-generic: Only tweak .la files needing it to ensure they
  2177. are not included in subsequent package file lists.
  2178. test-pkg: Generate a basic package config if none is
  2179. specified.
  2180. Updated/fixed packages: asterisk, avahi, bash, beecrypt,
  2181. binutils, busybox, clamav, cups, efl, eigen, fetchmail, file,
  2182. flashrom, fltk, gerbera, git, glibc, gnuradio, go,
  2183. gst-plugins-bad, intel-gmmlib, jq, kexec, kf5-modemmanager-qt,
  2184. leveldb, libcurl, libdrm, libftdi1, libglib2, libiio, libpcap,
  2185. libseccomp, libssh2, log4cplus, lvm2, mariadb, mender,
  2186. mongodb, mosquitto, musl, nodejs, ntp, openjpeg, owfs, php,
  2187. pure-ftpd, putty, python-aiojobs, qt5webkit, rdesktop, samba4,
  2188. sunxi-tools, supertux, swupdate, tpm2-abrmd, tpm2-tss,
  2189. wavemon, wireshark, vsftpd, xapp_xdm, xen,
  2190. xdriver_xf86-video-fbdev, xlib_libXdmcp
  2191. Issues resolved (http://bugs.uclibc.org):
  2192. #11716: Typo on website, saying latest release is 2018.2.11
  2193. 2019.02, released March 4th, 2019
  2194. Minor fixes.
  2195. Libressl support added for Qt 5.6 as a replacement for
  2196. openssl, as 5.6 is not compatible with openssl 1.1.x.
  2197. Updated/fixed packages: cutelyst, devmem2, gqrx,
  2198. gst-plugins-bad, libraw, libsoxr, qt5base, runc, systemd, tor
  2199. 2019.02-rc3, released March 1st, 2019
  2200. Fixes all over the tree.
  2201. Openssl support dropped from Qt 5.6, as it isn't compatible
  2202. with openssl 1.1.x.
  2203. Toolchain: GCC 8.x updated to 8.3.0, fixing a number of
  2204. issues.
  2205. Dependencies: Require CMake 3.8 or newer to fix compilation
  2206. issue with certain packages. If not available, host-cmake will
  2207. instead be built.
  2208. Printvars: Fix performance regression since 2018.02
  2209. Scanypi: Correctly handle underscores in python package names.
  2210. Updated/fixed packages: botan, clamav, cryptopp, i2pd,
  2211. ibrcommon, iproute2, libcpprestsdk, libssh, lua-curl,
  2212. luaexpat, qt5base, runc, stress-ng, syslinux, systemd,
  2213. upmpdcli, zbar
  2214. Issues resolved (http://bugs.uclibc.org):
  2215. #9966: util-linux-2.30/.stamp_built' failed
  2216. #11696: possible typo in board/pc/post-build.sh
  2217. 2019.02-rc2, released February 23th, 2019
  2218. Fixes all over the tree.
  2219. Removed zynq_zybo defconfig, as it hasn't seen any update
  2220. since it was added in 2016, and uses a U-Boot version not
  2221. compatible with openssl-1.1.x.
  2222. Linux: Ignore user supplied downloadable hashes, as no hash
  2223. checksums are available for those.
  2224. Updated/fixed packages: bind, cryptopp, docker-containerd,
  2225. dtc, efivar, gdb, imagemagick, ipmiutil, libcpprestsdk,
  2226. libcurl, libgpiod, libid3tag, libv4l, log4cplus, luvi,
  2227. madplay, mender, mosquitto, poco, postgresql, proftpd,
  2228. pulseaudio, python-django, qemu, qt5base, qwt, rabbitmq-c,
  2229. reaver, safeclip, stress-ng, swupdate, syslog-ng, systemd,
  2230. tor, unzip, xenomai
  2231. Issues resolved (http://bugs.uclibc.org):
  2232. #11501: compile sdl2 with enable wayland
  2233. #11681: .. unable to initialize decompress status for section..
  2234. 2019.02-rc1, released February 13th, 2019
  2235. Fixes all over the tree and new features.
  2236. Dependencies:
  2237. Require Python >= 2.7 as it is needed for E.G. building
  2238. libglib2.
  2239. Ensure GNU gzip is used for reproducible tarballs (instead of
  2240. pigz)
  2241. Infrastucture:
  2242. Ensure the PLATFORM and OS environment variables are not set,
  2243. as they cause build issues for some packages.
  2244. The package list infrastructure now correctly handles packages
  2245. installing files with old mtime.
  2246. Add a config option to force all optional host utilities to be
  2247. built, even if suitable versions are available on the build
  2248. machine.
  2249. graph-build-time: Also show time spent downloading
  2250. Download: fixes for SSH/SCP support
  2251. Ensure user provided permissions override permissions from
  2252. packages.
  2253. SDK: Fix handling of relative symlinks (targets starting with
  2254. '.' or '..')
  2255. BR2_SYSTEM_DEFAULT_PATH setting to customize the default path
  2256. for processes.
  2257. The custom skeleton logic will now populate the needed /bin,
  2258. /lib, /sbin directories/symlinks if not present. Merged /usr
  2259. can now be used with a custom skeleton.
  2260. Rootfs overlays can now override symbolic links from
  2261. packages. This was disabled to ensure the correct symbolic
  2262. links are present when merged /usr is used. Instead validate
  2263. that the rootfs overlays do not include invalid /bin, /sbin
  2264. and /lib entries.
  2265. The waf infrastructure now support the <pkg>_SUBDIR variable,
  2266. similar to the other package types.
  2267. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  2268. Various improvements to the meson infrastructure.
  2269. Luarocks: A Buildroot addon has been added to automate
  2270. creating a Buildroot package from luarocks, similar to
  2271. scancpan and scanpypi.
  2272. scanpypi: protect against zip-slip vulnerability in zip/tar
  2273. handling
  2274. check-package: fix Python 3 support
  2275. get-developers: Fix behaviour when called from elsewhere than
  2276. the toplevel directory.
  2277. pkg-stats: Show latest upstream version of each package, based
  2278. on data from release-monitoring.org
  2279. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  2280. a clean tree when ccache is enabled.
  2281. Default to sha256 password encoding, drop md5 support.
  2282. Architecture:
  2283. Support for RISC-V 32bit architecture, ARM A55, 75 and Saphira
  2284. variants, MIPS support for mips32r3, mips64r3 and Marvell
  2285. Octeon II/III variants.
  2286. Toolchain:
  2287. ARC toolchain 2018.09, ARM 8.2-2018.11, Codescape IMG/MTI MIPS
  2288. 2018.09-02, MUSL 1.1.21, GCC 6.5.0 / 7.4.0, GDB 8.2.1
  2289. Packages:
  2290. openssl: Bump to 1.1.1x series, bringing TLSv1.3 support and
  2291. long term support.
  2292. fftw: Split into fftw-{single,double,long-double,quad}
  2293. packages for the different data precision options.
  2294. libcurl: Now has explicit TLS backend selection options.
  2295. linux: Support building device tree blobs with the -@ option
  2296. for device tree overlays.
  2297. weston: The weston-imx i.MX variant is now used when
  2298. imx-gpu-viv is enabled
  2299. pkgconf: Update to 1.5.3, which brings support for
  2300. --define-prefix (used by GStreamer)
  2301. Add host-python3-setuptools package to handle host python
  2302. packages needing python3 with setuptools support.
  2303. New defconfigs: Aarch64 EFI, Orangepi one plus, Orangepi lite
  2304. 2, QEMU RISC-V 32bit virt, Rock64
  2305. New packages: brcm-patchram-plus, clinfo, cunit, docker-cli,
  2306. erlang-p1-eimp, exempi, fail2ban, fftw-double,
  2307. fftw-double-long, fftw-quad, fftw-single, gerbera, grpc,
  2308. gst1-shark, intel-gmmlib, iwd, kf5-kcoreaddons, libeastl,
  2309. libpackagekite, libtorrent-rasterbar, lua-std-debug,
  2310. lua-std-normalize, mini-snmpd, netsurf, pamtester, pcm-tools,
  2311. python-aiodns, python-aiohttp, python-aiohttp-jinja2,
  2312. python-aiohttp-remotes, python-aiohttp-security,
  2313. python-aiohttp-session, python-aiohttpd-sse, python-aiojobs,
  2314. python-cchardet, python-pycares, python-sentry-sdk,
  2315. python-wtforms, python3-setuptools, rcw, rtc-tools, shim,
  2316. utp_com, vmtouch, websocketpp
  2317. Removed packages: fftw, lua 5.2.x, luacrypto, perl-time-hires,
  2318. python-pyqt, qt, qtuio, tn5250
  2319. Issues resolved (http://bugs.uclibc.org):
  2320. #10851: Patch to handle numpad Enter key properly
  2321. #11066: x11r7 X11 S40xorg leads to a black screen on QEMU x86..
  2322. #11126: Bash Shell Programming using Buildroot
  2323. #11426: pps-tools bash dependency
  2324. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  2325. #11536: dt-utils building fails with glibc 2.28
  2326. #11546: open-vm-tools with glibc 2.28
  2327. #11566: Fix init script
  2328. #11576: Unable to start apache with event MPM on raspberry pi 3
  2329. #11591: [pkgconf 1.5.3] xserver OpenGL support is missing
  2330. #11606: libjpeg has no Config.in
  2331. #11616: 2018.02.09 fails to build libzlib with full RELRO..
  2332. #11656: Custom device tree and u-boot boot.scr not integrated..
  2333. #11666: Touchscreen with (Py)Qt5 should use tslib instead of evdev
  2334. 2018.11.4, Released March 28th, 2019
  2335. Important / security related fixes.
  2336. Updated/fixed packages: avahi, beecrypt, binutils, botan,
  2337. busybox, clamav, cups, devmem2, efl, fetchmail, file, fltk,
  2338. gcc, gdb, git, go, gst-plugins-bad, iproute2, jq,
  2339. kf5-modemmanager-qt, leveldb, libopenssl, libraw, libseccomp,
  2340. libsoxr, libssh2, mariadb, mosquitto, nodejs, ntp, openjpeg,
  2341. perl, php, putty, qt5webkit, rdesktop, runc, samba4, swupdate,
  2342. systemd, tor, vsftpd, wireshark, xapp_xdm, xen, xlib_libXdmcp
  2343. 2018.11.3, Released February 23th, 2019
  2344. Important / security related fixes.
  2345. Ensure the PLATFORM and OS environment variables are not set,
  2346. as they cause build issues for some packages.
  2347. The package list infrastructure now correctly handles packages
  2348. installing files with old mtime.
  2349. Linux: Skip hash checks for user supplied downloadable
  2350. patches, as no hash checksums are available for those.
  2351. scanpypi: protect against zip-slip vulnerability in zip/tar
  2352. handling
  2353. Download: fixes for SSH/SCP support
  2354. SDK: Fix handling of relative symlinks (targets starting with
  2355. '.' or '..')
  2356. Updated/fixed packages: bind, dhcpcd, docker-compose,
  2357. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  2358. dtc, efivar, ghostscript, gnuradio, imagemagick, jpeg-turbo,
  2359. libarchive, libb64, libcurl, libgeotiff, libgpiod, libid3tag,
  2360. libupnp18, log4cplus, madplay, meson, mosquitto, openssh, php,
  2361. poco, postgresql, proftpd, pulseaudio, python, python-django,
  2362. python3, qt5base, reaver, runc, sg3_utils, sqlcipher,
  2363. swupdate, systemd, unzip, webkitgtk, xenomai
  2364. 2018.11.2, Released January 30th, 2019
  2365. Important / security related fixes.
  2366. Defconfigs: Fixes for imx6slevk, imx7dsabresd, imx8mqevk, Lego
  2367. EV3, QEMU AArch64-virt
  2368. Download: Fix scp download handling
  2369. check-package: fix Python 3 support
  2370. get-developers: Fix behaviour when called from elsewhere than
  2371. the toplevel directory.
  2372. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  2373. a clean tree when ccache is enabled.
  2374. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  2375. Updated/fixed packages: acpica, apache, apr, avrdude, cargo,
  2376. cc-tool, dash, dhcpdump, dmalloc, docker-containerd, efivar,
  2377. fwts, glibc, gnuchess, gnupg2, go, leveldb, libarchive,
  2378. libassuan, libftdi1, libgpg-error, libhttpparser, libkcapi,
  2379. libmad, libsndfile, libsquish, liburiparser, libwebsock,
  2380. libxml2, lighttpd, llvm, lm-sensors, lua-msgpack-native, lxc,
  2381. mariadb, mbedtls, meson, mosquitto, netatalk, nodejs, odhcp6c,
  2382. openresolv, openssh, pango, patchelf, php, python-django,
  2383. python-numpy, python-pyyaml, rauc, rp-pppoe, s6-networking,
  2384. samba4, sdl_sound, shairport-sync, sqlite, subversion,
  2385. sunxi-cedarx, swupdate, systemd, tcpreplay, tekui, tmp2-abrmd,
  2386. tpm2-tools, tpm2-tss, udisks, unixodbc, usb_modeswitch,
  2387. webkitgtk, wireshark, wolfssl, xapp_rgb, xenomai, xerces
  2388. Issues resolved (http://bugs.uclibc.org):
  2389. #11576: Unable to start apache with event MPM on raspberry pi 3
  2390. 2018.11.1, Released December 20th, 2018
  2391. Important / security related fixes.
  2392. defconfigs: Fixes for bananapi m2 ultra, ci20
  2393. Download wrapper: Fix for urlencode handling
  2394. Updated/fixed packages: asterisk, docker-compose,
  2395. docker-engine, dt-utils, gnutls, go, grub, libbsd, libcurl,
  2396. libpgpme, libiscsi, liblo, libmpd, libopenssl, liboping,
  2397. libpam-tacplus, libpjsip, linux-firmware, liquid-dsp,
  2398. lua-cqueue, luvi, lxc, lynx, nginx, nodejs, openzwave, php,
  2399. pps-tools, proftpd, prosody, sdl2_net, squashfs, swupdate,
  2400. uclibc, vtu, webkitgtk, wine, xen
  2401. New packages: docker-cli
  2402. Issues resolved (http://bugs.uclibc.org):
  2403. #11426: pps-tools bash dependency
  2404. #11536: dt-utils building fails with glibc 2.28
  2405. 2018.11, Released December 1st, 2018
  2406. Minor fixes.
  2407. Updated/fixed packages: c-ares, quagga, squid
  2408. 2018.11-rc3, released November 30th, 2018
  2409. Fixes all over the tree.
  2410. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  2411. olinuxino lime legacy, Orangepi zero plus 2, PC, Riotboard.
  2412. graph-depends: Fix for package names starting with a non-alpha
  2413. character.
  2414. Updated/fixed packages: alsa-utils, botan, dante, domoticz,
  2415. dtc, freetype, gauche, gcc, gdb, ghostscript, glibc,
  2416. imx-usb-loader, libbsd, libid3tag, libkrb5, libmicrohttpd,
  2417. libopenssl, libsoxr, linux, motion, msgpack, mtd,
  2418. perl-net-ssleay, php, popt, python-numpy, qt5declarative,
  2419. samba4, shadowsocks-libev, stress-ng, systemd, usb_modeswitch,
  2420. webkitgtk, valgrind, weston, xfsprogs
  2421. 2018.11-rc2, released November 21th, 2018
  2422. Fixes all over the tree.
  2423. fs: Drop intermediate tarball from the filesystem handling to
  2424. fix an issue with xattrs handling related to fakeroot. Ensure
  2425. tarball target includes xattrs.
  2426. download: Fix confusion in git submodule handling if dl/ is a
  2427. symlink.
  2428. genrandconfig: Fix missing newline in BR2_WGET handling,
  2429. causing the following line to be ignored. This would affect
  2430. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  2431. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  2432. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  2433. show-build-order: Also include the dependencies of
  2434. rootfs-common.
  2435. Fix a number of build issues in packages for the recently
  2436. merged RISC-V architecture support.
  2437. Updated/fixed packages: dt-utils, easydbus, elfutils,
  2438. flare-engine, flatcc, glibc, gstreamer, gstreamer1, imx-uuc,
  2439. libassuan, libcorrect, libiscsi, libkrb5, libmicrohttpd,
  2440. libnftnl, libnspr, libnss, libsemanage, libsigsegv, libv4l,
  2441. ltp-testsuite, luv, luvi, make, ncmpc, netplug, openocd,
  2442. prosody, qemu, rpm, sconeserver, shadowsocks-libev,
  2443. supertuxcart, syslinux, systemd, trace-cmd, uclibc,
  2444. uclibc-ng-test, vtun, webkitgtk, weston, wireshark, xen,
  2445. xlib_libfontenc
  2446. Issues resolved (http://bugs.uclibc.org):
  2447. #11086: download/git submodule breaks on symlinked dl folder
  2448. #11216: Capabilities not applied to filesystem
  2449. 2018.11-rc1, released November 9th, 2018
  2450. Fixes all over the tree and new features.
  2451. Architecture: RISC-V support (64bit) added.
  2452. Toolchain: Glibc bumped to 2.28. Fortran support for external
  2453. toolchains. ARM (Linaro) toolchains updated to 8.2-2018.08.
  2454. Hardening flags (RELRO) are now handled by the toolchain
  2455. wrapper instead of explicitly through CFLAGS/LDFLAGS, fixing a
  2456. number of issues.
  2457. Filesystems: Support for creating btrfs and f2fs filesystems
  2458. added.
  2459. Add a number of patches to fix build errors for host utilities
  2460. on modern distributions using glibc-2.28.
  2461. mkusers: Ensure existing group members are preserved when a
  2462. group is reprocessed.
  2463. printvars: Fix issue with exceeding shell command line length
  2464. limits for certain setups.
  2465. Workaround added for incompatibility issues between host-dtc
  2466. and older U-Boot and Linux kernel versions.
  2467. Detect and reject build paths containing '@', as this confuses
  2468. a number of packages, including GCC.
  2469. utils/diffconfig: Make it work for (non-Buildroot) config
  2470. files not using the BR2_ prefix.
  2471. New defconfigs: Amarula a64-relic, Bananapi m2 ultra, Embest
  2472. riotboard, Hardkernel Odroid XU-4, QEMU riscv64-virt.
  2473. olimex_a20_olinuxion_lime_mali is renamed to _legacy.
  2474. OpenCL infrastructure support added, similar to how OpenGL is
  2475. handled.
  2476. Linux-headers: Support for kernel headers from a custom
  2477. tarball / git repo added.
  2478. New packages: bird, bluez5_utils-headers, btrfs-progs,
  2479. checksec, davici, duktape, ell, haproxy, libclc, libcorrect,
  2480. libopencl, libopenresolv, nss-myhostname,
  2481. perl-apache-logformat-compiler, perl-appconfig,
  2482. perl-astro-suntime, perl-class-inspector, perl-class-load,
  2483. perl-class-method-modifiers, perl-class-std,
  2484. perl-class-std-fast, perl-cookie-baker, perl-data-dump,
  2485. perl-data-optlist, perl-data-uuid, perl-data-manip,
  2486. perl-dbd-mysql, perl-dbi, perl-devel-globaldestruction,
  2487. perl-devel-stacktrace, perl-devel-stacktrace-ashtml,
  2488. perl-device-serialport, perl-dist-checkconflicts,
  2489. perl-exporter-tiny, perl-file-sharedir, perl-file-slurp,
  2490. perl-filesys-notify-simple, perl-hash-multivalue,
  2491. perl-http-entity-parser, perl-http-headers-fast,
  2492. perl-http-multipartparser, perl-io-interface,
  2493. perl-io-socket-multicast, perl-json-maybexs, perl-mime-tools,
  2494. perl-module-implementation, perl-module-runtime, perl-moo,
  2495. perl-number-bytes-human, perl-package-stash, perl-params-util,
  2496. perl-plack, perl-posix-strftime-compiler, perl-role-tiny,
  2497. perl-streams-buffered, perl-sub-exporter-progressive,
  2498. perl-sub-install, perl-sub-quote, perl-sys-cpu,
  2499. perl-sys-meminfo, perl-sys-mmap, perl-time-parsedate,
  2500. perl-type-tiny, perl-www-form-urlencoded, perl-x10, pigpio,
  2501. python-async-timeout, python-falcon, python-fire,
  2502. python-mimeparse, python-multidict, python-passlib,
  2503. python-pigpio, python-pip, python-ply, python-py,
  2504. python-pyasn1, python-pyasn1-modules, python-pycryptodomex,
  2505. python-pyhamcrest, python-pysmi, python-scapy, python-semver,
  2506. python-serial-asyncio, python-typing, python-uvloop,
  2507. pythonwrapt, python-yarl, python-zeroconf, riscv-pk, sedutil,
  2508. spandsp, tini, waffle, xapian
  2509. Removed packages: bootutils, dsp-tools, expedite, gst-dsp,
  2510. xloader
  2511. Issues resolved (http://bugs.uclibc.org):
  2512. #11116: Buildroot should set PYTHON_EGG_CACHE instead of writing ..
  2513. #11156: In python3 module 'socket' has no attribute 'AF_BLUETOOTH'
  2514. #11166: Erlang bad argument on valid uint64 when crosscompiled on..
  2515. #11206: zlib: fails to build with Linaro toolchain, BR2_RELRO_FULL..
  2516. #11241: ACPID shouldn't depend on BR2_x86_64 || BR2_i386
  2517. #11251: Util scanpypi failes when package change - to _ in tar file
  2518. #11266: qt5base-5.11.1 does not compile with musl, complains about..
  2519. #11286: python-rpi-gpio only should depend on BR2_arm || BR2_aarch64
  2520. #11321: Latest master fails to build readline with RELRO FULL
  2521. #11326: sysvinit fails to build in latest GIT master
  2522. #11331: Internal application no longer builds with latest GIT master
  2523. #11336: nfs-utils fails to build in latest GIT master
  2524. #11351: build root-2018-08, linaro aarch64 compile error
  2525. #11376: mdmon binary missing
  2526. #11391: Valgind availability on ARM
  2527. #11396: uboot environment image checksum invalid if target is big endian
  2528. #11421: GCC error message for ARM Cortex-A9/ARM.V7
  2529. #11451: Can't find libmpfr.so.4 when using external toolchain on ubuntu..
  2530. #11481: Docs: Is external.desc required?
  2531. 2018.08.4, Released December 20th, 2018
  2532. Important / security related fixes.
  2533. Defconfigs: Fixes for ci20, orangepi zero plus 2
  2534. Download wrapper: Fix for urlencode handling
  2535. Updated/fixed packages: c-ares, dante, docker-compose,
  2536. domoticz, freetype, ghostscript, gnutls, libcurl, libgpgme,
  2537. libid3tag, libiscsi, libmpd, libopenssl, liboping, libpjsip,
  2538. linux-firmware, liquid-dsp, luvi, lynx, msgpack, nginx,
  2539. nodejs, php, popt, pps-tools, prosody, python-numpy,
  2540. python-requests, samba4, sdl2_net, squashfs, swupdate,
  2541. systemd, uclibc, vte, webkitgtk, wine, xfsprogs
  2542. Issues resolved (http://bugs.uclibc.org):
  2543. #11426: pps-tools bash dependency
  2544. 2018.08.3, Released November 26th, 2018
  2545. Important / security related fixes.
  2546. fs: Drop intermediate tarball from the filesystem handling to
  2547. fix an issue with xattrs handling related to fakeroot. Ensure
  2548. tarball target includes xattrs.
  2549. download: Fix confusion in git submodule handling if dl/ is a
  2550. symlink.
  2551. toolchain: Only allow enabling stack protection on
  2552. architectures with control flow integrity (CFI) support. Only
  2553. allow FORTIFY_SOURCE support on gcc >= 6.
  2554. genrandconfig: Fix missing newline in BR2_WGET handling,
  2555. causing the following line to be ignored. This would affect
  2556. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  2557. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  2558. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  2559. show-build-order: Also include the dependencies of
  2560. rootfs-common.
  2561. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  2562. olinuxino lime legacy, Orangepi zero plus 2.
  2563. graph-depends: Fix for package names starting with a non-alpha
  2564. character.
  2565. Updated/fixed packages: attr, audit, bind, brotli, busybox,
  2566. dtc, easydbus, elfutils, flare-engine, flatcc, gauche, gcc,
  2567. giflib, gpsd, lcdproc, libcurl, libiscsi, libkcapi, libnfs,
  2568. libnspr, libnss, libsemanage, liburiparser, lighttpd,
  2569. lua-curl, mariadb, mmc, mosquitto, mysql, ncmpc, neardal,
  2570. netplug, network-manager, nfs-utils, nginx, openocd, openswan,
  2571. p11-kit, postgresql, prosody, qemu, qt, rpm, ruby, samba4,
  2572. squid, supertuxkart, systemd, tar, trace-cmd, traceroute,
  2573. twolame, uclibc, usb_modeswitch, vtun, webkitgtk, weston,
  2574. xdriver_xf86-video-geode, xlib_libfontenc, xserver_xorg-server
  2575. Issues resolved (http://bugs.uclibc.org):
  2576. #11086: download/git submodule breaks on symlinked dl folder
  2577. #11481: Docs: Is external.desc required?
  2578. 2018.08.2, Released October 25th, 2018
  2579. Important / security related fixes.
  2580. Workaround added for incompatibility issues between host-dtc
  2581. and older U-Boot and Linux kernel versions.
  2582. Detect and reject build paths containing '@', as this confuses
  2583. a number of packages, including GCC.
  2584. utils/get-developers: Add -e option for use with git
  2585. send-email.
  2586. utils/diffconfig: Make it work for (non-Buildroot) config
  2587. files not using the BR2_ prefix.
  2588. u-boot: Fix for environment image handling on big endian
  2589. systems.
  2590. Updated/fixed packages: binutils, ca-certificates,
  2591. cups-filters, dtc, erlang, file, freetype, gcc, git, gvfs,
  2592. jasper, leveldb, libarchive, libssh, live555, ljlinenoise,
  2593. mariadb, mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils,
  2594. poco, psmisc, ptpd2, python-enum34, qemu, qt, qt5base,
  2595. setools, spice, spice-protocol, tinc, ustr, wireshark,
  2596. Issues resolved (http://bugs.uclibc.org):
  2597. #11396: uboot environment image checksum invalid if target is big endian
  2598. 2018.08.1, Released October 7th, 2018
  2599. Important / security related fixes.
  2600. Add a number of patches to fix build errors for host utilities
  2601. on modern distributions using glibc-2.28.
  2602. mkusers: Ensure existing group members are preserved when a
  2603. group is reprocessed.
  2604. printvars: Fix issue with exceeding shell command line length
  2605. limits for certain setups.
  2606. Updated/fixed packages: acpid, android-tools, apache,
  2607. arp-scan, bandwidthd, bind, brltty, clamav, connman, cppcms,
  2608. domoticz, dtc, fio, gcc, gdb, ghostscript, gnupg, httpping,
  2609. igmpproxy, imlib2, ipsec-tools, libesmtp, libnfs, libxslt,
  2610. links, lua, mosquitto, nilfs-utils, ocrad, parted, php,
  2611. python-django, screen, shairport-sync, strongswan,
  2612. vboot-utils, webkitgtk, wireguard, x265 xen, xlib_libXdmcp,
  2613. xlib_libXfont, xlib_libXft, xlib_libxshmfence,
  2614. xutil_makedepend, zeromq
  2615. 2018.08, Released September 6th, 2018
  2616. Minor fixes.
  2617. Known issues:
  2618. - Glibc 2.28 on the build host breaks compilation of a number
  2619. of host packages. 2018.08 contains fixes for some of these
  2620. packages, but not all. Consider building on hosts (or in
  2621. containers) using older Glibc versions.
  2622. - host-dtc 1.4.7 breaks compilation of older U-Boot and Linux
  2623. kernel configurations using FDT/DTC. Consider updating the
  2624. Linux kernel to >= 4.17 and U-Boot to >= 2018.07 or
  2625. backporting commit 9130ba8846 (scripts/dtc: Update to
  2626. upstream version v1.4.6-9-gaadd0b65c987) for the Linux
  2627. kernel / commit db405d1980 for U-Boot.
  2628. Alternatively revert commit 7b929ddcf0 (dtc: bump version to
  2629. 1.4.7) and ensure your build host does not have the libfdt
  2630. development headers installed.
  2631. Updated/fixed packages: busybox, chipmunk, cutelyst,
  2632. domoticz, gcc, imagemagick, lcms2, libcurl, mediastreamer,
  2633. moarvm, php, qt, qt5virtualkeyboard, qt5webengine, screen,
  2634. sdl2, squashfs, uboot, xen
  2635. Issues resolved (http://bugs.uclibc.org):
  2636. #11261: ccache using wrong cached objects
  2637. #11276: Understanding the patch for kernel-4.9 and other..
  2638. 2018.08-rc3, Released August 31th, 2018
  2639. Fixes all over the tree.
  2640. linux: additional improvements to the flex / bison dependency
  2641. handling, use system provided variant if available. Ensure
  2642. toolchain is available when configuring for 4.18+ support.
  2643. Download: Fix handling of primary sites using file://
  2644. Toolchain: Correct external toolchain musl detection for
  2645. static toolchains.
  2646. Updated/fixed packages: aircrack-ng, bison, brltty, busybox,
  2647. cutelyst, dropbear, gr-osmosdr, i2c-tools, json-c, libconfuse,
  2648. libkcapi, libsoup, libssh, liburiparser, mbedtls, mender,
  2649. mesa3d, minicom, mjpegtools, mutt, openpowerlink, openssh,
  2650. oracle-mysql, php, postgresql, pv, qt5base, qt5quickcontrols,
  2651. rauc, shairport-sync, systemd, xlib_libX11, zeromq,
  2652. Issues resolved (http://bugs.uclibc.org):
  2653. #11091: BR2_PRIMARY_SITE doesn't work (wget is selected...
  2654. #11141: WF111 package no longer available
  2655. #11211: Internal compiler error: Killed (program cc1plus)..
  2656. #11236: util-linux fails to build on Travis CI when python..
  2657. #11246: Glibc 2.28 - fails to build host-bison and host-m4
  2658. #11256: Add python-falcon and python-mimeparse packages
  2659. 2018.08-rc2, Released August 20th, 2018
  2660. Fixes all over the tree.
  2661. pkg-kconfig: Support dependencies needed to run the
  2662. configurator, E.G. recent Linux kernel versions needing flex
  2663. and bison.
  2664. Defconfigs: ARM Juno: Bump ATF to fix a build
  2665. issue. Raspberrypi2: Bump rootfs size. Snps_archs38_vdk:
  2666. Correct /etc/inittab. Technologic ts7680: Correct genimage
  2667. configuration. Orange PI PC / Zero, Sheevaplug: Bump U-boot to
  2668. 2018.07 to fix build issue. Ensure host-openssl is pulled in
  2669. for kernel builds where needed.
  2670. Updated/fixed packages: aircrack-ng, bind, boost,
  2671. boot-wrapper-aarch64, bzip2, busybox, chrony, cryptsetup,
  2672. dahdi-tools, dbus, domoticz, eigen, ipsec-tools, libarchive,
  2673. libfuse, libgit2, libopenssl, libselinux, lighttpd, lvm2, m4,
  2674. makedevs, mariadb, mesa3d-headers, mono, ncmpc, ncurses,
  2675. nodejs, php, python-django, python-pyqt5, qt5base,
  2676. qt5serialbus, ruby, samba4, uboot-tools, uclibc, vlc,
  2677. waylandpp, wireless_tools, wireshark, wpa_supplicant, mtd,
  2678. xdriver_xf86-video-ati, xserver_xorg-server
  2679. Issues resolved (http://bugs.uclibc.org):
  2680. #10781: cryptsetup luksOpen container_file container causes..
  2681. #10996: bogus musl ARM toolchain
  2682. #11191: xattr and check-package issue
  2683. 2018.08-rc1, Released August 5th, 2018
  2684. Toolchain:
  2685. - add support for gcc 8.x, switch to gcc 7.x as the default
  2686. version
  2687. - add support for gdb 8.1, switch to gdb 8.0 as the default
  2688. and remove gdb 7.10/7.11
  2689. - add support for binutils 2.31
  2690. - NIOSII CodeSourcery toolchain updated
  2691. - Linaro AArch64 BE toolchain added, and other Linaro
  2692. toolchains updated
  2693. - Synopsys ARC pre-built toolchain updated
  2694. Architecture: add support for ARM Cortex-M7
  2695. Major updates:
  2696. - systemd bumped to 239
  2697. - Qt5 bumped to 5.11.1
  2698. - Rust bumped to 1.27
  2699. - GStreamer stack bumped to 1.14.2
  2700. - X.org server bumped to 1.20, and all X.org proto packages
  2701. replaced by the single xorgproto package
  2702. - i.MX6 support packages bumped to 6.2.4
  2703. - i.MX Vivante graphics version bumped to 6.2.4.p1.2,
  2704. adding support for Wayland and i.MX8MQ platforms
  2705. Linux: bumped to 4.17 by default.
  2706. Infrastructure: new package infrastructure added for packages
  2707. using the Meson build system
  2708. New packages: at-spi2-atk, at-spi2-core, capnproto, cmocka,
  2709. corkscrew, cutelyst, davfs2, flatcc, libidn2, libgit2,
  2710. libopusenc, mender, nghttp2, perl-convert-asn1, perl-crypt-blowfish,
  2711. perl-crypt-cbc, perl-digest-md5, perl-mime-base64-urlsafe,
  2712. perl-mojolicious-plugin-authentication, perl-net-ping,
  2713. perl-net-snmp, perl-net-ssh2, perl-net-telnet, pigz,
  2714. python-reentry, python-request-id, python-validators,
  2715. python-webob, shadowsocks-libev, speexdsp, xorgproto, wampcc
  2716. New defconfigs: NXP i.MX7D SDB, Boundary Devices Nitrogen 8M,
  2717. Olimex A10 OLinuxino, ZynqMP ZCU106
  2718. Removed packages: all xproto_* have been removed and replaced
  2719. by xorgproto
  2720. Issues resolved (http://bugs.uclibc.org):
  2721. #9411: MUSL build with RT Error relocating /lib/libgcc_s.so.1:
  2722. __cpu_indicator_init: symbol not found
  2723. #9921: lockfile module within python-daemon not available
  2724. #10341: gdb install of py files when using buildroot toolchain
  2725. includes build path
  2726. #10661: /etc/init.d/S29netplug starts multiple instances of netplugd
  2727. #10751: Missing dependency in pulseaudio package
  2728. #10811: kodi-17.6-Krypton does not compile for freescale_* devices
  2729. #10856: openblas on qemu_x86_64_defconfig fails with
  2730. "sgemm_kernel.o: No such file or directory"
  2731. #11056: Compiling a file that uses libdrm headers fails with:
  2732. fatal error: drm.h: No such file or directory
  2733. #11061: support/download: git version=master broken
  2734. #11071: Building postgresql package on Debian 9.4 x64 for armel target fails
  2735. #11076: Docker containerd installed to incorrect path
  2736. #11101: host-patchelf Endian Issue with relative RPATH
  2737. #11111: raspberry pi 3 b+: missing BSP for 64-bit kernel
  2738. #11121: statfs call corrupts memory struct statfs too small
  2739. #11181: Switching toolchain does not work
  2740. 2018.05.3, Released October 6th, 2018
  2741. Important / security related fixes.
  2742. Add a number of patches to fix build errors for host utilities
  2743. on modern distributions using glibc-2.28.
  2744. mkusers: Ensure existing group members are preserved when a
  2745. group is reprocessed.
  2746. printvars: Fix issue with exceeding shell command line length
  2747. limits for certain setups.
  2748. Updated/fixed packages: acpid, android-tools, apache,
  2749. arp-scan, bandwidthd, bind, bison, brltty, chipmunk, connman,
  2750. cppcms, fio, gcc, ghostscript, gnupg, httping, igmpproxy,
  2751. imagemagick, imlib2, ipsec-tools, lcm2, libcurl, libesmtp,
  2752. libnfs, libssh, libxslt, links, mediastreamer, minicom,
  2753. moarvm, nilfs-utils, ocrad, parted, php, postgresql, pv,
  2754. python-django, qt, qt5quickcontrols, qt5webengine, screen,
  2755. sdl2, shairport-sync, squashfs, strongswan, vboot-utils,
  2756. webkitgtk, wireguard, x265, xen, xlib_libXfont, xlib_libXft,
  2757. xlib_libxshmfence, zeromq
  2758. 2018.05.2, Released August 28th, 2018
  2759. Important / security related fixes.
  2760. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2761. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2762. issue.
  2763. Updated/fixed packages: acl, attr, apache, bind,
  2764. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2765. dahdi-tools, dmidecode, dropbear, eigen, ffmpeg, gawk, gcc,
  2766. ghostscript, gnutls, imx-gpu-viv, ipsec-tools, libarchive,
  2767. libfuse, libglib2, libopenssl, libselinux, libsoup, lighttpd,
  2768. linuxptp, lttng-modules, lttng-tools, lua-flu, lvm2, m4,
  2769. makedevs, mariadb, mbedtls, mesa3d-heders, mtd, ncurses,
  2770. nodejs, openssh, php, python-django, rauc, ruby, samba4,
  2771. stress-ng, ti-utils, uboot-tools, uclibc, vim, waylandpp,
  2772. wireless_tools, wireless-regdb, wireshark, wpa_supplicant,
  2773. xorriso, znc
  2774. Issues resolved (http://bugs.uclibc.org):
  2775. #10781: cryptsetup luksOpen container_file container causes..
  2776. #10986: Installing package attr when already supplied by..
  2777. #11191: xattr and check-package issue
  2778. 2018.05.1, Released July 20th, 2018
  2779. Important / security related fixes.
  2780. U-Boot: Ensure host version of ncurses is picked up and not
  2781. host-ncurses built by buildroot, as that otherwise causes
  2782. widechar/non-widechar conflicts and corrupted menuconfig
  2783. menus.
  2784. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2785. Toolchain: ARC tools updated to arc-2018.03.
  2786. pkg-stats: Fix python 3.x compatibility.
  2787. dl-wrapper: Fix support for URIs containing '+', fix
  2788. no-check-hash for inferred site method.
  2789. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2790. Support ethernet on Turbot variant.
  2791. Updated/fixed packages: audit, bind, btrfs-progs, cifs-utils,
  2792. clamav, collectd, coreutils, docker-containerd, dos2unix,
  2793. edid-decode, file, gcc, gdb, gnupg, gnupg2, heimdal, hidapi,
  2794. imagemagick, libcurl, libgcrypt, libglib2, liblogging,
  2795. libostree, libressl, libsoup, libv4l, libvncserver, libvorbis,
  2796. libwebsockets, libxslt, lm-sensors, mariadb, mpg123, ncurses,
  2797. network-manager, nodejs, patchelf, perl, php-amqp, pinentry,
  2798. pixiewps, qpdf, qt53d, qt5base, qt5charts, qt5script, redis,
  2799. systemd, triggerhappy, uboot, wireguard, wireless-regdb,
  2800. wireshark
  2801. 2018.05, Released June 1st, 2018
  2802. Minor fixes.
  2803. Download: Work around for hanging connections for packages
  2804. from CVS, by adding a 10 minute max timeout.
  2805. Updated/fixed packages: binutils, clang, dash, expect, git,
  2806. glibc, jpeg-turbo, libjpeg, log4cplus, openvmtools, xen,
  2807. Issues resolved (http://bugs.uclibc.org):
  2808. #11051: runtime issue on STM32 with usage of binutils 2.29.x
  2809. 2018.05-rc3, Released May 28th, 2018
  2810. Fixes all over the tree.
  2811. Toolchain: ARC tools updated to arc-2018.03-rc2.
  2812. Fs: Ensure hard links in TARGET_DIR are correctly copied for
  2813. filesystem input. With the recent changes to the file system
  2814. generation logic, hard links were "expanded" in file system
  2815. images leading to bloated rootfs images for setups with hard
  2816. links.
  2817. Infrastructure: Error out for packages using the 'local'
  2818. method but forgetting to specify <pkg>_SITE.
  2819. Build rpcgen for the host when needed to support distributions
  2820. no longer shipping rpcgen with glibc (E.G. recent Fedora).
  2821. Updated/fixed packages: autofs, bash-completion, binutils,
  2822. busybox, cjson, elf2flt, libcoap, libcurl, libtirpc, lrzsz,
  2823. poppler, procps-ng, qt-webkit-kiosk, quota, samba4, xfsprogs
  2824. Issues resolved (http://bugs.uclibc.org):
  2825. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file..
  2826. #11036: C compiler cannot create executables
  2827. #11046: Git package binaries are ~180MB (compared to ~20MB in..
  2828. 2018.05-rc2, Released May 22nd, 2018
  2829. Fixes all over the tree.
  2830. Dependencies: Check that the current working directory (.)
  2831. isn't listed in PATH as that causes various build issues.
  2832. Manual: Clarify that git branch names may not be used as
  2833. version identifiers. This has never been supported, but was
  2834. kind of working (with some limitations) before the git
  2835. download rework - Now it does not work at all.
  2836. Linux: Ensure host version of ncurses is picked up and not
  2837. host-ncurses built by buildroot, as that otherwise causes
  2838. widechar/non-widechar conflicts and corrupted menuconfig
  2839. menus.
  2840. Packages: Renamed a number of package options not prefixed
  2841. with BR2_PACKAGE_<pkg> for consstency.
  2842. Download infrastructure: Fix file:// protocol handling after
  2843. download rework.
  2844. Updated/fixed packages: acl, apr-util, asterisk, attr,
  2845. bluez5_utils, cifs-utils, clamav, clang, cups-filters,
  2846. dahdi-linux, exim, faketime, gdb, go, gst1-plugins-bad,
  2847. imx-mkimage, ipsec-tools, jamvm, janus-gateway,
  2848. jquery-ui-themes, libcap, libcurl, libftdi, libkcapi, libkrb5,
  2849. libmediaart, libmodbus, libmodplug, libmpd,
  2850. libnetfilter_cthelper, libnetfilter_cttimeout, libnfc,
  2851. libnfnetlink, libnss, liboauth, libogg, libosip2,
  2852. libpam-radius-auth, libpcap, libpciaccess, llvm, log4cplus,
  2853. ltrace, lynx, mbedtls, modem-manager, nfs-utils,
  2854. python-cython, python-websockets, qt5cinex, qt5wayland, rauc,
  2855. snort, strace, ti-sgx-km, transmission, wavpack, wget, woff2,
  2856. xen, zmqpp, znc, zstd
  2857. Issues resolved (http://bugs.uclibc.org):
  2858. #10986: Installing package attr when already supplied by...
  2859. #11011: BUildroot for Raspberry Pi 2
  2860. #11016: Wrong compiler used for external user host packages
  2861. 2018.05-rc1, Released May 9th, 2018
  2862. Toolchain: glibc bumped to 2.27, musl bumped to 1.1.19,
  2863. uClibc-ng 1.0.30, Linux kernel headers bumped to 4.16.x.
  2864. Architecture: support for the Blackfin architecture has been
  2865. removed, as it was removed from Linux upstream, poorly
  2866. maintained in binutils/gdb, and abandoned by Analog Devices.
  2867. Numerous packages updated to have hashes for their license
  2868. files.
  2869. Systemd can now be built with uClibc toolchains.
  2870. Linux: addition of BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF and
  2871. BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL to support building Linux
  2872. kernel configurations that need libelf on the host or openssl
  2873. on the host.
  2874. Coding style:
  2875. - all Python scripts are now verified with flake8
  2876. - check-package extended to check all Config.in and .mk files
  2877. in tree, not only the ones in package/
  2878. Infrastructure:
  2879. - The download infrastructure has seen a major overhaul, with
  2880. the main visible new feature being Git caching: a package
  2881. fetched from Git no longer needs to be re-cloned entirely
  2882. everytime its version is changed. Anoter visible change is
  2883. that the download folder now has subfolders per package. See
  2884. http://lists.busybox.net/pipermail/buildroot/2018-April/217923.html
  2885. for more details about those changes.
  2886. - The logic that generates the root filesystem images has been
  2887. reworked, with the main goal of allowing several filesystem
  2888. images to be produced in parallel, also a requirement for
  2889. top-level parallel build. Now, a .tar filesystem image is
  2890. always created, and re-extracted in a private directory to
  2891. create each format-specific filesystem image.
  2892. - A new package infrastructure was introduced for Go-based
  2893. packages: golang-package.
  2894. - Dependencies on extraction tools are now handled as proper
  2895. per-package dependencies, using
  2896. <pkg>_EXTRACT_DEPENDENCIES. Beyond a cleanup, this is also a
  2897. preparation step for top-level parallel build support.
  2898. - When a file being downloaded is part of a package with a
  2899. .hash file, but there is no hash listed for this file, the
  2900. file is now preserved in the download directory rather than
  2901. removed. This helps when updating a package, as it gives the
  2902. ability to easily calculate the hash of the file.
  2903. - Addition of '<pkg>-show-recursive-depends' and
  2904. '<pkg>-show-recursive-rdepends' make targets, to
  2905. respectively display the recursive list of dependencies and
  2906. the recursive list of reverse dependencies of a given
  2907. package.
  2908. - The /etc/shells file is now automatically generated with the
  2909. list of shell programs installed on the system.
  2910. - Addition of -Ofast optimization level as an available
  2911. option.
  2912. Major updates: Go updated to 1.10, Erlang bumped to 20.3, Qt5
  2913. bumped to 5.10.1.
  2914. New packages: 18xx-ti-utils, abootimg, bluez-alsa, brotli,
  2915. chipmunk, clang, docker-compose, docker-proxy, flare-engine,
  2916. flare-game, gst1-interpipe, gstreamer1-editing-services,
  2917. hackrf, i2pd, imx-alsa-plugins, imx-mkimage, libcdio-paranoia,
  2918. libkrb5, llvm, pixiewps, python-backports-ssl-match-hostname,
  2919. python-cached-property, python-cython, python-docker,
  2920. python-dockerpty, python-docker-pycreds,
  2921. python-flask-sqlalchemy, python-functools32, python-influxdb,
  2922. python-json-models, python-libusb1, python-networkx,
  2923. python-psycopg2, python-pymodbus, python-sqlalchemy,
  2924. python-subprocess32, python-texttable,
  2925. python-websocket-client, python-yieldfrom, quotatool, reaver,
  2926. snort, sunxi-mali-mainline, sunxi-mali-mainline-driver, tk,
  2927. tpm2-abrmd, tpm2-tools, tpm2-tss, udftools, vte, woff2.
  2928. New defconfigs: ARC HS Development Kit, Arcturus ucls1012a,
  2929. Freescale i.MX6UL EVK (with vendor kernel), Freescale i.MX6
  2930. SoloLite EVK (with vendor kernel), Freescale i.MX31 3Stack,
  2931. Freescale i.MX8Q EVK Freescale p1025twr, Freescale t1040d4rdb,
  2932. Qemu PPC64 E5500, SolidRun ClearFog Base, Tinker RK3288, Vyasa
  2933. RK3288,
  2934. Removed packages: iqvlinux, kodi-adsp-*, mplayer
  2935. Removed defconfigs: ci40, firefly_rk3288,
  2936. freescale_p1010rdb_pa, freescale_mpc8315erdb, riotboard,
  2937. teliv_evk_pro3
  2938. Issues resolved (http://bugs.uclibc.org):
  2939. #10151: toolchain eclipse register : fails with a custom
  2940. BR2_HOST_DIR
  2941. #10511: Packages get downloaded uncompressed with wget
  2942. #10531: QtWebengine doesn't build if the host hasn't a 32 bits
  2943. C++ compiler working
  2944. #10846: error in compiling gnutls
  2945. #10886: openssl-1.0.2n fails to build
  2946. #10896: /bin/sh not in /etc/shells
  2947. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is
  2948. enabled
  2949. 2018.02.12, Released March 29th, 2019
  2950. Important / security related fixes.
  2951. Updated/fixed packages: avahi, beecrypt, busybox, clamav,
  2952. cups, devmem2, fetchmail, file, fltk, gcc, gdb, git, jq,
  2953. leveldb, libopenssl, libraw, libseccomp, libssh2,
  2954. libunistring, mariadb, mosquitto, nodejs, ntp, openjpeg, perl,
  2955. php, putty, qt5webkit, rdesktop, systemd, wireshark, vsftpd,
  2956. xapp_xdm, xlib_libXdmcp
  2957. 2018.02.11, Released February 23th, 2019
  2958. Important / security related fixes.
  2959. Ensure the PLATFORM and OS environment variables are not set,
  2960. as they cause build issues for some packages.
  2961. The package list infrastructure now correctly handles packages
  2962. installing files with old mtime.
  2963. Linux: Skip hash checks for user supplied downloadable
  2964. patches, as no hash checksums are available for those.
  2965. scanpypi: protect against zip-slip vulnerability in zip/tar
  2966. handling
  2967. Updated/fixed packages: bind, dhcpcd, dovecot, ghostscript,
  2968. gnuradio, imagemagick, jpeg-turbo, libarchive, libb64,
  2969. libcurl, libid3tag, madplay, mosquitto, openssh, php,
  2970. postgresql, proftpd, python, python-django, python3, qt5base,
  2971. sqlcipher, swupdate, systemd, unzip, webkitgtk
  2972. 2018.02.10, Released January 31th, 2019
  2973. Important / security related fixes.
  2974. Defconfigs: Fixes for Lego EV3, QEMU AArch64-virt
  2975. check-package: fix Python 3 support
  2976. get-developers: Fix behaviour when called from elsewhere than
  2977. the toplevel directory.
  2978. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  2979. Updated/fixed packages: acpica, apache, apr, asterisk,
  2980. avrdude, cargo, cc-tool, dash, dhcpdump, dmalloc, gnuchess,
  2981. gnupg2, leveldb, libarchive, libassuan, libftdi1,
  2982. libgpg-error, libhttpparser, libmad, libsndfile, libsquish,
  2983. liburiparser, libwebsock, libxml2, lighttpd, lm-sensors,
  2984. lua-msgpack-native, mbedtls, mosquitto, netatalk, nodejs,
  2985. openssh, pango, patchelf, php, python-django, python-pyyaml,
  2986. rauc, rp-pppoe, s6-networking, samba4, sdl_sound,
  2987. shairport-sync, sqlite, subversion, sunxi-cedarx, tcpreplay,
  2988. tekui, usb_modeswitch, webkitgtk, wireshark, wolfssl,
  2989. xapp_rgb, xenomai, xerces
  2990. Issues resolved (http://bugs.uclibc.org):
  2991. #11576: Unable to start apache with event MPM on raspberry pi 3
  2992. 2018.02.9, Released December 20th, 2018
  2993. Important / security related fixes.
  2994. defconfigs: Fixes for ci20
  2995. Updated/fixed packages: c-ares, dante, freetype, ghostscript,
  2996. glibc, gnutls, go, libcurl, libgpgme, libid3tag, libiscsi,
  2997. libmpd, libopenssl, libpjsip, linux, liquid-dsp, luvi, lynx,
  2998. msgpack, nginx, nodejs, php, popt, pps-tools, python-numpy,
  2999. python-requests, samba4, sdl2_net, squashfs, swupdate, uclibc,
  3000. wine, webkitgtk, xfsprogs
  3001. Issues resolved (http://bugs.uclibc.org):
  3002. #11426: pps-tools bash dependency
  3003. 2018.02.8, Released November 26th, 2018
  3004. Important / security related fixes.
  3005. fs: Drop intermediate tarball from the filesystem handling to
  3006. fix an issue with xattrs handling related to fakeroot. Ensure
  3007. tarball target includes xattrs.
  3008. download: Fix confusion in git submodule handling if dl/ is a
  3009. symlink.
  3010. toolchain: Only allow enabling stack protection on
  3011. architectures with control flow integrity (CFI) support. Only
  3012. allow FORTIFY_SOURCE support on gcc >= 6.
  3013. genrandconfig: Fix missing newline in BR2_WGET handling,
  3014. causing the following line to be ignored. This would affect
  3015. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  3016. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  3017. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  3018. show-build-order: Also include the dependencies of
  3019. rootfs-common.
  3020. Defconfigs: Fixes for Armadeus APF27, imx6sabre.
  3021. graph-depends: Fix for package names starting with a non-alpha
  3022. character.
  3023. Updated/fixed packages: attr, audit, bind, brotli, easydbus,
  3024. elfutils, gauche, gcc, giflib, gpsd, lcdproc, libcurl,
  3025. libiscsi, libnfs, libnspr, libnss, libkcapi, libsemanage,
  3026. liburiparser, lighttpd, linux, lua-curl, mariadb, mmc-utils,
  3027. mosquitto, mysql, neardal, netplug, network-manager,
  3028. nfs-utils, nginx, openocd, openswan, p11-kit, postgresql,
  3029. prosody, qemu, qt, rpm, ruby, samba4, squid, supertuxkart,
  3030. systemd, tar, trace-cmd, traceroute, twolame, uclibc,
  3031. usb_modeswitch, vtun, webkitgtk, xdriver_xf86-video-geode,
  3032. xlib_libfontenc, xproto_inputproto, xserver_xorg-server
  3033. Issues resolved (http://bugs.uclibc.org):
  3034. #11086: download/git submodule breaks on symlinked dl folder
  3035. #11251: Util scanpypi failes when package change - to _ in..
  3036. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  3037. #11481: Docs: Is external.desc required?
  3038. 2018.02.7, Released October 25th, 2018
  3039. Important / security related fixes.
  3040. Detect and reject build paths containing '@', as this confuses
  3041. a number of packages, including GCC.
  3042. utils/get-developers: Add -e option for use with git
  3043. send-email.
  3044. utils/diffconfig: Make it work for (non-Buildroot) config
  3045. files not using the BR2_ prefix.
  3046. u-boot: Fix for environment image handling on big endian
  3047. systems.
  3048. Updated/fixed packages: binutils, ca-certificates,
  3049. cups-filters, erlang, file, freetype, gcc, git, gvfs, leveldb,
  3050. libarchive, libcurl, libssh, live555, ljlinenoise, mariadb,
  3051. mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils, poco,
  3052. psmisc, ptpd2, python-enum34, qemu, qt, qt5base, setools,
  3053. spice, spice-protocol, tinc, ustr, wireshark
  3054. Issues resolved (http://bugs.uclibc.org):
  3055. #11396: uboot environment image checksum invalid if target is big endian
  3056. 2018.02.6, Released October 7th, 2018
  3057. Important / security related fixes.
  3058. Add a number of patches to fix build errors for host utilities
  3059. on modern distributions using glibc-2.28.
  3060. mkusers: Ensure existing group members are preserved when a
  3061. group is reprocessed.
  3062. printvars: Fix issue with exceeding shell command line length
  3063. limits for certain setups.
  3064. Updated/fixes packages: acpid, android-tools, apache,
  3065. arp-scan, bandwidthd, bind, bison, clamav, connman, cppcms,
  3066. cramfs, fio, gcc, ghostscript, glibc, gnupg, httping,
  3067. igmpproxy, imagemagick, imlib2, ipsec-tools, lcms2, libcurl,
  3068. libesmtp, libnfs, libssh, libxslt, links, linuxptp,
  3069. mediastreamer, minicom, moarvm, nilfs-utils, ocrad, parted,
  3070. php, pv, python-django, qt, qt5quickcontrols, qt5webengine,
  3071. screen, sdl2, shairport-sync, squashfs, strongswan,
  3072. vboot-utils, webkitgtk, wireguard, x265, xen, xlib_libXfont,
  3073. xlib_libXft
  3074. New packages: brotli, woff2
  3075. 2018.02.5, Released August 29th, 2018
  3076. Important / security related fixes.
  3077. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  3078. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  3079. issue.
  3080. Updated/fixed packages: acl, apache, attr, bind,
  3081. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  3082. dahdi-tools, dmidecode, dropbear, eigen, erlang, ffmpeg, gawk,
  3083. gcc, ghostscript, gnutls, ipsec-tools, libarchive, libfuse,
  3084. libopenssl, libselinux, libsoup, lighttpd, linuxptp,
  3085. lttng-modules, lttng-tools, lua-flu, lvm2, m4, makedevs,
  3086. mariadb, mbedtls, mesa3d-headers, mtd, ncurses, nodejs,
  3087. openssh, php, postgresql, python-django, qt5xmlpatterns, ruby,
  3088. samba4, shairport-sync, stress-ng, ti-utils, uboot-tools, vim,
  3089. waylandpp, wireless_tools, wireshark, wpa_supplicant, xorriso,
  3090. znc
  3091. Issues resolved (http://bugs.uclibc.org):
  3092. #10781: cryptsetup luksOpen container_file container causes..
  3093. #10986: Installing package attr when already supplied by..
  3094. #11191: xattr and check-package issue
  3095. 2018.02.4, Released July 21th, 2018
  3096. Important / security related fixes.
  3097. U-Boot: Ensure host version of ncurses is picked up and not
  3098. host-ncurses built by buildroot, as that otherwise causes
  3099. widechar/non-widechar conflicts and corrupted menuconfig
  3100. menus.
  3101. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  3102. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  3103. Support ethernet on Turbot variant.
  3104. Updated/fixed packages: bind, clamav, collectd, dos2unix,
  3105. edid-decode, gcc, gdb, heimdal, hidapi, imx-gpu-viv, libcurl,
  3106. libglib2, liblogging, libostree, libsoup, libv4l, lm-sensors,
  3107. ncurses, network-manager, patchelf, pinentry, procps-ng, qpdf,
  3108. qt5, qt53d, qt5base, qt5charts, qt5script, qt5serialport,
  3109. systemd, wireguard, wireless-regdb
  3110. Issues resolved (http://bugs.uclibc.org):
  3111. #11101: host-patchelf Endian Issue with relative RPATH
  3112. 2018.02.3, Released June 18th, 2018
  3113. Important / security related fixes.
  3114. Various fixes for building on modern distributions (GCC 8.x,
  3115. no rpcgen utility).
  3116. ARM: Default to binutils 2.28 and warn about newer binutils
  3117. versions, which are known to cause boot failures for Linux
  3118. kernels built in thumb mode.
  3119. Busybox/mdev: Fix module autoloading.
  3120. Busybox/sysvinit: inittab: Add /dev/{stdin,stdout,stderr}
  3121. symlinks, call swapon -a to activate any configured swap
  3122. devices.
  3123. Dependencies: Check that PATH does not contain current working
  3124. directory, which triggers a number of build failures.
  3125. Infrastructure: Error out for packages erroneously using the
  3126. 'local' site method but not defining a _SITE.
  3127. Linux: Fix cuImage.<dtb> / simpleImage.<dtb> handling. Ensure
  3128. kconfig uses ncurses from the host to fix a ncurses/ncursesw
  3129. mixup, causing menuconfig display corruption.
  3130. Toolchain: Workarounds for fix-rpath issues with binutils and
  3131. elf2flt.
  3132. Util-linux: Fix blocking on getrandom() issue with recent
  3133. kernels.
  3134. Remove broken freescale_imx31_3stack,
  3135. freescale_imx6sololiteevk and freescale_imx6ulevk defconfigs.
  3136. Updated/fixed packages: apr-util, asterisk, attr, audit,
  3137. autofs, binutils, busybox, cifs-utils, cups-filters, dash,
  3138. ebtables, exim, expect, f2fs-tools, faketime, file, gdb, git,
  3139. glibc, gnupg, gnupg2, gst1-plugins-bad, imagemagick, jamvm,
  3140. jpeg-turbo, libcap, libcoap, libcurl, libgcrypt, libjpeg,
  3141. libnss, libressl, libtirpc, libvncserver, libvorbis, libxslt,
  3142. log4cplus, lrzsz, ltrace, lynx, mariadb, mbedtls, mpg123,
  3143. nasm, netplug, network-manager, nfs-utils, nodejs,
  3144. openvmtools, patch, perl, php-amqp, poppler, procps-ng,
  3145. python, python-websockets, quota, redis, samba4, sysvinit,
  3146. transmission, triggerhappy, util-linux, wavpack, wget,
  3147. wireshark, xen, zmqpp
  3148. Issues resolved (http://bugs.uclibc.org):
  3149. #10986: Installing package attr when already supplied by busybox..
  3150. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file or..
  3151. 2018.02.2, Released May 4th, 2018
  3152. Important / security related fixes.
  3153. Tweak package size/file instrumentation to better handle
  3154. package rebuilds.
  3155. Revert /etc/shells creation when bash is enabled.
  3156. Exclude /lib/firmware from the rpath fixup logic, as it may
  3157. contain non-native ELF files.
  3158. Scanpypi: Support the new PyPi infrastructure.
  3159. Handle GCC 8.x on the host.
  3160. Ensure timestamp of /usr is updated to support the systemd
  3161. ConditionNeedsUpdate option.
  3162. Updated/fixed packages: bluez5_utils, flann, gdb, gnupg2,
  3163. grub2, libcec, libcgi, libglib2, libgpg-error, libgpgme,
  3164. libtomcrypt, mbedtls, mkpasswd, php, python, python-requests,
  3165. python-watchdog, qt53d, qt5websockets, sdl2, sdl2_image,
  3166. syslog-ng, systemd, tcl, tcllib, uclibc, usb_modeswitch,
  3167. wireguard, wmctrl
  3168. Issues resolved (http://bugs.uclibc.org):
  3169. #10896: /bin/sh not in /etc/shells
  3170. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is enabled
  3171. 2018.02.1, Released April 9th, 2018
  3172. Important / security related fixes.
  3173. Removed unmaintained defconfigs: Creator Ci40, Firefly rk3288,
  3174. Freescale mpc8315erdb / p1010rdb_pa, Riotboard, Teliv EVK
  3175. Pro3.
  3176. Infrastructure: Speed up instrumentation for package size by
  3177. comparing timestamps instead of md5 checksums, as doing
  3178. checksums could lead to up to 25% longer build time for big
  3179. configurations.
  3180. Rename the internal <pkg>_BASE_NAME variable to <pkg>_NASENAME
  3181. to avoid name clashes with packages ending on '-base'.
  3182. Add a better fix for build issues for autotools based packages
  3183. checking for C++ support on toolchains without C++ support.
  3184. Build host-tar if tar is older than 1.27 on the build machine
  3185. to work around reproducibility issues with git archives
  3186. containing long paths.
  3187. check-unique-files: Fix for filenames not representable in the
  3188. users' locale.
  3189. Check-bin-arch: Add support for per-package ignore paths
  3190. (<pkg>_BIN_ARCH_EXCLUDE).
  3191. Toolchain: Fix SSP support detection for external toolchains.
  3192. linux: Add _NEEDS_HOST_OPENSSL / LIBELF options to ensure
  3193. these dependencies are available for Linux configurations
  3194. needed these dependencies, similar to how it is done for
  3195. U-Boot.
  3196. Support custom (not in tree) device tree files in addition to
  3197. in-tree ones.
  3198. U-Boot / uboot-tools: Fix header conflict with libfdt-devel
  3199. installed on host.
  3200. Updated/fixed packages: apache, busybox, c-ares, cmake,
  3201. docker-engine, enlightenment, eudev, fbgrab, freescale-imx,
  3202. gtest, imagemagick, intel-microcode, irssi, jimtcl, kmod,
  3203. kodi, ktap, libcoap, libcurl, libfcgi, libhttpparser,
  3204. libminiupnpc, libopenssl, libpjsip, libss7, libssh2, libupnp
  3205. libupnpp, libuv, libvorbis, memcached, motion, musl, nodejs,
  3206. ntp, openblas, opencv3, openocd, opus-tools, patch, php,
  3207. pkgconf, postgresql, powerpc-utils, python-jsonschema,
  3208. python-webpy, qemu, qt5bsae, qt5script, qt5webkit, rapidjson,
  3209. rauc, sam-ba, samba4, sngrep, systemd, tremor, uboot-tools,
  3210. uclibc-ng-test, upmpdcli, wireshark, xerces, xterm, zstd
  3211. New packages: docker-proxy, python-functools32
  3212. Issues resolved (http://bugs.uclibc.org):
  3213. #10766: upmpdcli: Segmentation fault
  3214. #10776: ktap fails to build
  3215. #10846: error in compiling gnutls
  3216. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  3217. 2018.02, Released March 4th, 2018
  3218. Fixes all over the tree.
  3219. Issues with systemd with a readonly rootfs and DBus fixed.
  3220. Instructure:
  3221. - check-uniq-files: fix Python 2.6 compatibility.
  3222. - dependencies.sh: check for external argparse module for
  3223. Python 2.6.
  3224. - Add infrastructure to detect and use a UTF-8 locale on the
  3225. host, needed by systemd.
  3226. Update/fixed packages: clamav, dash, dhcp, dovecot, efl,
  3227. ffmpeg, libv4l, mono, mosquitto, php, postgresql, qt,
  3228. scanpypi, sdl2, systemd, tor, tvheadend, uboot, wavpack
  3229. Issues resolved (http://bugs.uclibc.org):
  3230. #10831: qemu_x86_64_defconfig build fails on linux-headers..
  3231. 2018.02-rc3, Released February 27th, 2018
  3232. Fixes all over the tree.
  3233. check-bin-arch: skip /lib/modules to allow 32-bit userland
  3234. with 64bit kernel.
  3235. dependencies: Blacklist tar 1.30+ and build our own host-tar
  3236. if needed as tar 1.30+ changed the --numeric-owner output for
  3237. long path names. Build host-tar before other host-dependencies
  3238. as they need it to extract their source tarballs.
  3239. Update/fixed packages: asterisk, azmq, bluez5_utils, domoticz,
  3240. e2fsprogs, erlang, exim, glibc, gpsd, jq, libglib2, libvorbis,
  3241. mariadb, mbedtls, mesa3d, mesa3d-headers, mpv, patch, pcre2,
  3242. php, qt5, qt5multimedia, qt5wayland, qt5webengine, qt5webkit,
  3243. systemd, quagga, rustc, uboot, wireguard, zic, zlib-ng
  3244. Issues resolved (http://bugs.uclibc.org):
  3245. #10726: Current libglib2.mk creates broken libglib2 binary...
  3246. #10786: Linux fails to build unless make linux-menuconfig...
  3247. #10796: Cannot generate cpio image without selecting CON...
  3248. 2018.02-rc2, Released February 15th, 2018
  3249. Fixes all over the tree.
  3250. Dependencies: Ensure C++ support is available like for C
  3251. support for packages needing 32bit host support.
  3252. utils/genrandconfig: Check host dependencies for config.
  3253. Updated/fixed packages: busybox, dnsmasq, dropbear, ffmpeg,
  3254. glibc, keepalived, libcpprestsdk, libgpiod, libmaxminddb,
  3255. librsvg, libtasn1, libv4l, libxml2, lightning, ltp-testsuite,
  3256. mesa3d, mesa3d-demos, mesa3d-headers, nftables, open-lldp,
  3257. php, postgresql, python-crossbar, qt5, qt53d, qt5enginio,
  3258. qt5tools, qt5webengine, qt5webkit, rsync, rust-bin, rustc,
  3259. systemd
  3260. Issues resolved (http://bugs.uclibc.org):
  3261. #9781: ti-sgx-km build on kernel >4.1
  3262. #10141: Squashfs extended attribute failures
  3263. 2018.02-rc1, Released February 5th, 2018
  3264. The global source-check and per-package <pkg>-source-check
  3265. targets have been removed.
  3266. Architecture: Add x86 Silvermont variant. Add several new ARM
  3267. variants, rework MIPS NaN logic. Support mainline binutils/gcc
  3268. for ARC.
  3269. Toolchains: Linaro toolchains upgraded to 2017.11 release, ARC
  3270. external toolchains upgraded to arc-2017.09. Libatomic is now
  3271. also copied for external musl based toolchains.
  3272. Add binutils 2.30.x and switch to binutils 2.29.x by default.
  3273. Added hardening options to build with RELRO and FORTITY.
  3274. New defconfigs: Bananapi M64, FriendlyARM Nanopi A64 & NEO2,
  3275. imx6slevk, imx6sx-sdb, imx6ulevk, Olimex A64-OLinuXino,
  3276. Orangepi lite / pc plus / pc / prime / win / win plus / zero
  3277. plus2, Pine64, Solidrun MacchiatoBin. Sopine.
  3278. Add utils/diffconfig, a simple utility for comparing
  3279. configuration files - Adapted from the version in the
  3280. Linux kernel.
  3281. Infrastructure: Check that the same file is not touched by
  3282. multiple packages, as a preparation for toplevel parallel
  3283. builds.
  3284. Hashes for the license files for a large number of packages
  3285. have been added, ensuring that license changes will not be
  3286. missed when packages are bumped.
  3287. Fix build issue for autotools based packages checking for C++
  3288. support on toolchains without C++ support and on a distro
  3289. lacking /lib/cpp (E.G. Arch Linux).
  3290. Support for the meson build system.
  3291. Pie charts generated by 'graph-build' or 'graph-size' are now
  3292. sorted according to the size of each piece.
  3293. System: Only show getty options when busybox init or sysvinit
  3294. are used.
  3295. ARM-trusted-firmware: Support ATF bundled in U-Boot as
  3296. well as U-Boot bundled in ATF.
  3297. Zlib is now a virtual package, provided by either libzlib or
  3298. zlib-ng, similar to openssl.
  3299. Support for the Rust programming language.
  3300. New packages: aoetools, armbian-firmware, binaries-marvell,
  3301. brltty, cargo, cargo-bin, cups-filters, curlpp, daq,
  3302. flatbuffers, gconf, glorytun, gstreamer1-mm, imx-m4fwloader,
  3303. imx-gpu-g2d, json-for-modern-cpp, libcpprestsdk, libgta,
  3304. libostree, libupnp18, luadbi, luadbi-sqlite3, lua-utf8, lynx,
  3305. meson, mv-ddr-marvell, nilfs-utils, opentracing-cpp,
  3306. open-lldp, pimd, proj, python-flask-cors,
  3307. python-jaraco-classes, python-more-itertools, python-oauthlib,
  3308. python-raven, python-remi, python-requests-oauthlib,
  3309. python-schedule, python-secretstorage, python-see,
  3310. python-tabledata, python-txtorcon, python-xlib, qt5charts,
  3311. rtl8189fs, rtl8723bu, rust, rustc, rust-bin, rygel, safeclib,
  3312. solatus, tcf-agent, traceroute, waylandpp, wolfssl,
  3313. zisofs-tools, zlib-ng
  3314. Removed packages: eeprog
  3315. 2017.11.2, Released January 21st, 2018
  3316. Important / security related fixes.
  3317. External toolchain: libatomic is now also copied for musl
  3318. based toolchains.
  3319. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  3320. System: Only show getty options when busybox init or sysvinit
  3321. are used.
  3322. Infrastructure: Fix build issue for autotools based packages
  3323. checking for C++ support on toolchains without C++ support and
  3324. on a distro lacking /lib/cpp (E.G. Arch Linux).
  3325. Pie charts generated by 'graph-build' or 'graph-size' are now
  3326. sorted according to the size of each piece.
  3327. Updated/fixed packages: asterisk, avahi, bind, busybox,
  3328. coreutils, eeprog, intel-microcode, iputils, irssi, kmsxx,
  3329. libiio, linux-firmware, lz4, mariadb, matchbox-lib, mcookie,
  3330. ntp, php, pound, rpcbind, tar, ti-cgt-pru, webkitgtk, xen,
  3331. xlib_libXpm
  3332. Issues resolved (http://bugs.buildroot.org):
  3333. #9996: lz4 package does not install lz4 binaries in target
  3334. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  3335. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  3336. #10301: systemd/getty unused options
  3337. #10331: kmsxx, host installation fails with BR2_SHARED_...
  3338. #10556: Building ntp package with SSL library libressl...
  3339. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  3340. 2017.11.1, Released December 31th, 2017
  3341. Important / security related fixes.
  3342. Updated/fixed packages: asterisk, checkpolicy, dhcp, flann,
  3343. gdb, glibc, heimdal, kodi-pvr-mediaportal-tvserver,
  3344. kodi-pvr-stalker, libcue, libopenssl, libpqxx, libsoxr,
  3345. linknx, linux-tools, lldpd, ltp-testsuite, mariadb, mfgtools,
  3346. nodejs, nut, pulseaudio, python-cffi, qemu, rsync, tor, uboot,
  3347. uboot-tools, vlc, webkitgtk, weston, wireguard, wireshark,
  3348. xenomai, xfsprogs
  3349. 2017.11, Released November 30, 2017
  3350. Fixes all over the tree.
  3351. Toolchain: Use github mirror for Glibc.
  3352. Defconfigs: Correct boot.cmd for bananapi-m1.
  3353. Makefiles: Workaround include order issues for certain make
  3354. versions by explicitly sorting the result of wildcard where it
  3355. matters.
  3356. Download: Ensure subversion runs in non-interactive mode.
  3357. Updated/fixed packages: asterisk, boost, chrony, dovecot,
  3358. dvb-apps, exim, feh, freerdp, fwup, google-breakpad, jose,
  3359. kvm-unit-test, lftp, libcurl, libevent, libfastjson, libpjsip,
  3360. libupnp, linphone, localedef, lttng-tools, mp4v2, mtools,
  3361. ndisc6, oracle-mysql, parted, pdbg, qt, qt5connectivity,
  3362. qt5declarative, qt5webkit, rauc, runc, samba4, shairport-sync,
  3363. systemd-bootchart, webkitgtk, wireguard, xlib_libXcursor,
  3364. xlib_libXfont, xlib_libXfont2,
  3365. Issues resolved (http://bugs.buildroot.org):
  3366. 10501: host-localedef fails to compile on Ubuntu 17.10
  3367. 10506: Changed kernel image type (e.g. zImage to uImage)...
  3368. 2017.11-rc2, Released November 13th, 2017
  3369. Fixes all over the tree.
  3370. Updated/fixed packages: collectd, ffmpeg, freerdp,
  3371. go-bootstrap, imagemagick, jimtcl, libpjsip, libplist, libuv,
  3372. mesa3d, nodejs, ntp, openjpeg, postgresql, python-numpy, ruby,
  3373. snmp++, usb_modeswitch, util-linux, vboot-utils, webkitgtk,
  3374. wireshark, wpa_supplicant, xapp_xdriinfo
  3375. Issues resolved (http://bugs.buildroot.org):
  3376. #10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  3377. #10491: Cannot output security warning when compiled with buildroot..
  3378. 2017.11-rc1, Released November 6th, 2017
  3379. Fixes all over the tree and new features.
  3380. Openssl is now a virtual package, which may be provided by
  3381. OpenSSL (now renamed to libopenssl) or LibreSSL.
  3382. libssh2: there is now an explicit choice of the backend to use
  3383. (mbedtls, gnutls or openssl). Previously, the choice was implicit
  3384. based on the TLS library that was selected. Now, it is possible to
  3385. choose the backend, which is important if several TLS libraries are
  3386. selected.
  3387. netsnmp: all MIB files are now installed, making the target filesystem a
  3388. bit bigger than before. To remove unneeded MIBS, you should use a
  3389. post-build script.
  3390. Toolchain: Linaro toolchains updated to 2017.08, ARC toolchain
  3391. updated to 2017.09, Glibc updated to 2.26, Glibc support for
  3392. ARCv2. The toolchain wrapper now handles SOURCE_DATE_EPOCH for
  3393. older (pre-gcc7.x) toolchains for BR2_REPRODUCIBLE.
  3394. New defconfigs: Atmel SAM45D27, Bananapi M1 and M2 Plus,
  3395. Engicam i.CoreM6 Qt5 configuration, i.MX6 sabreauto (mainline
  3396. kernel/u-boot), i.MX6Q sabresd Qt5 configuration, i.MX7d-pico,
  3397. QEMU ppc64le, Raspberry pi3 Qt5 webengine configuration,
  3398. Technologic TS-7680.
  3399. New packages: asterisk, azmq, bcg729, boinc, dahdi-linux,
  3400. dahdi-tools, freeswitch-mod-bcg729, fscryptctl, libb64,
  3401. libpri, libss7, lua-basexx, lua-compat53, lua-cqueues,
  3402. lua-curl, lua-datafile, lua-fifo, lua-httpd,
  3403. lua-lpeg-patterns, lua-markdown, lua-sailor, lua-value,
  3404. luksmeta, minetest, minetest-game, pdmenu, prosody,
  3405. python-aiocoap, python-automat, python-ibmiotf,
  3406. python-iso8601, python-m2r, python-simplesqlite,
  3407. python-websockets, python-xmltodict, qt5wayland, qt5webengine,
  3408. restorecond, selinux-python, semodule-utils, uhubctl,
  3409. wireguard, wsapi-fcgi, wsapi-xavante
  3410. Removed packages: aiccu, rfkill, sepolgen
  3411. Issues resolved (http://bugs.buildroot.org):
  3412. #10281: lsblk does not compile for util-linux
  3413. #10336: lttng compilation fails : linking error
  3414. #10351: glibc missing in rootfs
  3415. #10356: nfs-utils missing header
  3416. #10361: python3 python-config script generates invalid includes
  3417. #10366: dropbear download url has changed
  3418. #10391: WiringPi retrieves wrong (old) version
  3419. #10406: Beaglebone black: Buggy SGX driver version, swapped...
  3420. #10426: uboot-tools' fw_setenv does not update the redundant...
  3421. #10451: libpcap 1.8.x and 1.7x does not compile on PPC
  3422. 2017.08.2, Released November 28th, 2017
  3423. Important / security related fixes.
  3424. Qt: 5.6 version updated to 5.6.3.
  3425. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  3426. in the environment.
  3427. Makefiles: Workaround include order issues for certain make
  3428. versions by explicitly sorting the result of wildcard where it
  3429. matters.
  3430. Updated/fixed packages: apr, apr-util, arqp-standalone,
  3431. azure-iot-sdk-c, collectd, dvb-apps, ffmpeg, go-bootstrap,
  3432. google-breakpad, gstreamer, imagemagick, irssi, jimtcl,
  3433. kvm-unit-test, libcurl, libfastjson, libglib2, libidn,
  3434. libpjsip, libplist, localedef, lttng-tools, luajit, mesa3d,
  3435. moarvm, mp4v2, openssh, openssl, oracle-mysql, postgresql,
  3436. python3, python-pyqt5, qt, qt5base, qt5canvas3d,
  3437. qt5connectivity, qt5declarative, qt5engineio,
  3438. qt5graphicaleffects, qt5imageformats, qt5location,
  3439. qt5multimedia, qt5quickcontrols, qt5quickcontrols2, qt5script,
  3440. qt5sensors, qt5serialbus, qt5serialport, qt5svg, qt5tools,
  3441. qt5webchannel, qt5webkit, qt5websockets, qt5x11extras,
  3442. qt5xmlpatterns, quagga, redis, ruby, samba4, sdl2, snmppp,
  3443. swupdate, ti-gfx, uboot-tools, usb_modeswitch, vboot-utils,
  3444. webkitgtk, wget, wireshark, xapp_xdriinfo.
  3445. Issues resolved (http://bugs.buildroot.org):
  3446. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  3447. 10361: python3 python-config script generates invalid includes
  3448. 10501: host-localedef fails to compile on Ubuntu 17.10
  3449. 2017.08.1, Released October 23rd, 2017
  3450. Important / security related fixes.
  3451. Webkitgtk bumped to the 2.18.x series, fixing a large number
  3452. of security issues.
  3453. Defconfigs: galileo: fix ext4 related kernel config, bump
  3454. kernel for gcc 6.x compatibility, enable wchar support for
  3455. grub2. wandboard: correct rootfs offset
  3456. support: Ensure gzip compression level 6 is used for git
  3457. tarballs. check-bin-arch: Correctly handle (ignore) symbolic
  3458. links. check-rpath: Also handle PIE binaries
  3459. External toolchain: Correctly handle glibc Buildroot
  3460. toolchains built with merged /usr
  3461. musl: fix ARMv4 build with binutils 2.27.51+, fix for
  3462. CVE-2017-15650
  3463. Updated/fixed packages: apache, augeas, bind, bluez5_utils,
  3464. busybox, bzip2, cmake, dnsmasq, ejabberd, gcc, git, go, ffmpeg, file,
  3465. flashrom, gd, gdk-pixbug, gnupg2, hostapd, ifupdown-scripts,
  3466. imagemagick, iucode-tool, kernel-module-imx-gpu-viv, lame,
  3467. libarchive, libcurl, libffi, libidn, libmbim, libnspr, libnss,
  3468. libressl, librsync, libsoup, libxml2, libzip, mbedtls, musl,
  3469. netplug, nginx, openvpn, pkgconf, poppler, proxychains-ng,
  3470. qemu, qt, rpi-userland, syslog, ruby, samba4, softether,
  3471. sqlite, strongswan, subversion, supertuxkart, supervisor, tcpdump,
  3472. tor, unrar, urq, vboot-utils, webkitgtk, wpa_supplicant, xen,
  3473. xmlstarlet, xlib_libXfont, xlib_libXfont2,
  3474. xserver_xorg-server, zsh
  3475. 2017.08, Released September 1st, 2017
  3476. Minor fixes.
  3477. Toolchain: Don't allow internal toolchain builds for MIPS
  3478. M6201/P6600, as support for these are not yet in mainline GCC.
  3479. Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
  3480. gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
  3481. libphidget, libv4l, linux-tools, mediastreamer, minidlna,
  3482. nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
  3483. transmission, vde2, vim
  3484. Updated/fixed defconfigs:
  3485. Removed packages: simicfs.
  3486. Issues resolved (http://bugs.buildroot.org):
  3487. #10261: Grub2 fails to build for x86_64
  3488. 2017.08-rc3, Released August 23rd, 2017
  3489. Fixes all over the tree.
  3490. Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
  3491. dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
  3492. gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
  3493. libspatialindex, libunwind, linux, linux-headers, lua,
  3494. mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
  3495. whois, xen, zmqpp.
  3496. Updated/fixed defconfigs: ci20, socrates_cyclone5,
  3497. toradex_apalis_imx6.
  3498. Removed defconfig: Armadeus APF9328.
  3499. skeleton-* packages introduced in -rc1 have been renamed to
  3500. skeleton-init-* instead.
  3501. Issues resolved (http://bugs.buildroot.org):
  3502. #10141: Squashfs extended attribute failures
  3503. 2017.08-rc2, Released August 11th, 2017
  3504. Fixes all over the tree.
  3505. Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
  3506. ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
  3507. lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
  3508. swupdate, uclibc, valgrind, webkitgtk.
  3509. Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
  3510. nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
  3511. qemu_sparc64.
  3512. The cmake-package infrastructure for host packages has been
  3513. fixed to not incorrectly detect target packages through
  3514. pkg-config.
  3515. Issues resolved (http://bugs.buildroot.org):
  3516. #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
  3517. #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
  3518. #10026: lua-5.3.4: fix lua linker error in swupdate
  3519. #10146: package/skeleton-common fix recursive variable
  3520. #10156: glibc compilation fails for X86 32bits (i386)
  3521. #10201: toolchain-wrapper.c:192: (error) Memory leak:
  3522. #10221: Buildroot Support
  3523. 2017.08-rc1, Released August 2nd, 2017
  3524. Infrastructure:
  3525. - The skeleton package has been split into multiple packages:
  3526. skeleton-sysv (when Busybox or SysV init are used),
  3527. skeleton-systemd (when systemd is used), skeleton-none (when
  3528. no init system is used) and skeleton-custom (when a custom
  3529. skeleton is used). Those packages, except skeleton-custom,
  3530. share common logic and data in a new package called
  3531. skeleton-common. The skeleton package becomes a virtual
  3532. package. This change allows to generate a filesystem that is
  3533. compliant with systemd expectations.
  3534. - Support for using a read-only filesystem with systemd has
  3535. been fixed.
  3536. - Major revamp of the gettext handling, with user-visible
  3537. effect:
  3538. - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
  3539. package could decide to enable or not NLS support. When
  3540. BR2_ENABLE_LOCALE was disabled, NLS support was forced off
  3541. by passing --disable-nls to packages.
  3542. - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
  3543. controls whether NLS support should be enabled or not in
  3544. packages. This option defaults to disabled, which means
  3545. that now, NLS support is by default disabled in all
  3546. packages.
  3547. Therefore, if you need NLS support in packages, you must now
  3548. explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
  3549. - The host directory no longer has a usr/ component. This
  3550. makes it much more natural to use that directory as an
  3551. externally used toolchain. For compatibility with existing
  3552. scripts, a usr -> . link is still added.
  3553. - Hashes are now checked on tarballs by Buildroot when a
  3554. package is sourced from a Git repository.
  3555. - Patches are no longer being downloaded from Github, since
  3556. auto-generated patches could change over time, and break
  3557. hashes. All patches that were downloaded from Github are now
  3558. stored in their respective package directories.
  3559. - Hash files in packages can now contain hashes for the
  3560. license files contained in the package source code. This
  3561. allows to detect changes in such license files.
  3562. - Binaries in $(TARGET_DIR) are now cleaned up from invalid
  3563. RPATHs at the end of the build.
  3564. - A new "make sdk" target prepares $(HOST_DIR) to be
  3565. relocatable: turns RPATHs in host binaries into relocatable
  3566. ones, removes bogus RPATHs from staging binaries/libraries,
  3567. and provides a relocate-sdk script that can be executed to
  3568. relocate the SDK after installation.
  3569. - Addition of utils/genrandconfig which generates a random
  3570. configuration based on a set of pre-defined toolchain
  3571. configurations (support/config-fragments/autobuild/) and a
  3572. random selection of packages. It is now used by the
  3573. autobuilders to generate the random configurations.
  3574. Filesystems:
  3575. - ext2/3/4 filesystems are now generated using mkfs.ext from
  3576. e2fsprogs instead of using genext2fs.
  3577. Architecture:
  3578. - Addition of support for ARM big.LITTLE variants
  3579. - Improved MIPS support, with options to select NaN encoding
  3580. and FP32 mode.
  3581. Toolchain:
  3582. - Switch to gcc 6.x as the default gcc version, add support
  3583. for gcc 7.x, remove support for gcc 4.8
  3584. - Switch to binutils 2.28 as the default binutils version, add
  3585. support for binutils 2.29, remove support for binutils 2.26
  3586. - Support added for gdb 8.0
  3587. - uClibc-ng bumped to 1.0.26
  3588. - CodeSourcery toolchains for x86 and SuperH have been
  3589. removed, they were using a too old glibc version
  3590. (2.17). External toolchains with glibc 2.17 or earlier are
  3591. no longer supported.
  3592. - The version selection in the glibc package has been
  3593. removed. Like musl and uClibc-ng, we now use the latest
  3594. glibc version.
  3595. - Improved support for Xtensa toolchain overlays, which can
  3596. now be downloaded.
  3597. Tools:
  3598. - Numerous improvements to the runtime test infrastructure
  3599. - Tests are now executed by Gitlab CI on a regular basis
  3600. - Tools that are directly useful to the user have been moved
  3601. from support/scripts/ to utils/: brmake, check-package,
  3602. get-developers, scancpan, scanpipy, size-stats-compare,
  3603. test-pkg.
  3604. New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
  3605. Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
  3606. SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
  3607. New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
  3608. erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
  3609. ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
  3610. kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
  3611. libpwquality, libressl, libspatialindex, libva-utils,
  3612. linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
  3613. lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
  3614. python-backports-shutil-get-terminal-size, python-bcrypt,
  3615. python-cheroot, python-h2, python-hpack, python-hyperframe,
  3616. python-hyperlink, python-ipython-genutils, python-pathlib2,
  3617. python-pickleshare, python-priority, python-portend,
  3618. python-scandir, python-systemd, python-tempora,
  3619. python-traitlets, python-typepy, qt5virtualkeyboard,
  3620. ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
  3621. xr819-xradio, zstd
  3622. Removed packages: cloog, input-tools, mke2img
  3623. Issues resolved (http://bugs.buildroot.org):
  3624. #7892: systemd-journald is broken
  3625. #9341: avahi-utils does not compile with uClibc + libglib2
  3626. #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
  3627. BR2_ENABLE_DEBUG
  3628. #9746: ext4 image generated by Buildroot is not working
  3629. properly with U-Boot
  3630. #9886: Build fails with "unexpected EOF while looking for
  3631. matching `"'" if PATH contains a newline
  3632. #9891: parted 3.1 => 3.2?
  3633. #9911: qt5 does not build on sparc
  3634. #9916: qt5 does not build on
  3635. arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
  3636. #9936: Host QEMU does not build with SDL support because of
  3637. pkg-config
  3638. #9941: nodejs option disappears for arm
  3639. #9951: SCANCPAN failure
  3640. #9966: util-linux-2.30/.stamp_built' failed
  3641. #9976: License file for package 'rtl8821au' incorrect
  3642. #9991: SGX Error implicit declaration of function
  3643. ‘dmac_map_area’
  3644. #10011: wget does not work from Buildroot
  3645. #10036: Buildroot builds Raspbian Jessie headless image
  3646. presenting incorrect prompt
  3647. #10051: make: *** No rule to make target
  3648. 'raspberrpi3_defconfig'. Stop reported with Buildroot
  3649. v2017.05.1
  3650. #10056: No .config file was produced in /buildroot folder
  3651. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
  3652. failure
  3653. #10071: fakeroot: replace hard-coded paths in post install
  3654. #10076: Makefile:4113: recipe for target 'all-gcc' failed
  3655. #10091: gcc7.1 does not build with graphite support due to old
  3656. isl
  3657. #10121: webkit without the multimedia option causes build
  3658. error
  3659. 2017.05.2, Released July 27th, 2017
  3660. Important / security related fixes.
  3661. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3662. of security issues.
  3663. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3664. which default to PIE mode.
  3665. Updated/fixed packages: aespipe, apache, bind, binutils,
  3666. busybox, ccache, collectd, dieharder, efibootmgr, efivar,
  3667. expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
  3668. libmemcached, libosip2, libtirpc, libxml-parser-perl,
  3669. linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
  3670. pulseaudio, python-setproctitle, qt5base, rpi-firmware,
  3671. samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
  3672. webkitgtk, x265, xserver_xorg-server, xvisor
  3673. Issues resolved (http://bugs.buildroot.org):
  3674. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3675. 2017.05.1, Released July 4th, 2017
  3676. Important / security related fixes.
  3677. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3678. has been shutdown.
  3679. Update support/scripts/mkusers to handle setups where
  3680. /etc/shadow is a symlink.
  3681. External toolchain: Don't create musl dynamic loader symlink
  3682. for static builds.
  3683. Setlocalversion: Correct detection of mercurial revisions for
  3684. non-tagged versions.
  3685. Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
  3686. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3687. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
  3688. gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
  3689. iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
  3690. libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
  3691. openssh, openvpn, pngquant, python-simplegeneric, qt5base,
  3692. qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
  3693. tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
  3694. Issues resolved (http://bugs.buildroot.org):
  3695. #9976: License file for package 'rtl8821au' incorrect
  3696. 2017.05, Released May 31st, 2017
  3697. Minor fixes.
  3698. External toolchain: musl dynamic linker symlink for mips-sf
  3699. corrected.
  3700. Updated/fixed packages: agentpp, bash, exim, hans, madplay,
  3701. qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
  3702. xen
  3703. Issues resolved (http://bugs.buildroot.org):
  3704. #9906: genimage: Disk full
  3705. 2017.05-rc3, Released May 30th, 2017
  3706. Fixes all over the tree.
  3707. ARC toolchain bumped to 2017.03
  3708. Runtime testing improvements and cleanups.
  3709. Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
  3710. cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
  3711. fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
  3712. keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
  3713. libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
  3714. mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
  3715. pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
  3716. xen
  3717. Removed packages: firejail, ola
  3718. Issues resolved (http://bugs.buildroot.org):
  3719. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3720. #9876: aarch64 support with gcc 4.8 toolchain
  3721. #9896: host-gcc-initial error downloading because incorrect URL
  3722. 2017.05-rc2, Released May 17th, 2017
  3723. Fixes all over the tree.
  3724. ARC toolchain bumped to 2017.03-rc2
  3725. Updated/fixed packages: bluez_utils, boost, clamav, daemon,
  3726. efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
  3727. git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
  3728. mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
  3729. postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
  3730. rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
  3731. vlc, x11vnc, xfsprogs
  3732. Issues resolved (http://bugs.buildroot.org):
  3733. #9796: source-check broken for Git downloads
  3734. #9866: BASE_DIR usage
  3735. 2017.05-rc1, Released May 8th, 2017
  3736. Fixes all over the tree and new features.
  3737. Infrastructure:
  3738. - Installed binaries are now checked for correct architecture
  3739. to catch natively built binaries or binaries built for other
  3740. architecture variants.
  3741. - Luarocks infrastructure improvements to extraction handling,
  3742. support for upstream name != Buildroot package name.
  3743. - 'make printvars' output format has changed to make it easier
  3744. to use in scripts. It now has options to quote the variables
  3745. and to show the expanded/unexpanded values.
  3746. - Automatic ext2 rootfs size calculation has been removed. The
  3747. logic was not working working reliable in all setups as it
  3748. depends on the host filesystem behaviour, so instead now the
  3749. size has to be specified explicitly (defaults to 60MB).
  3750. - The git download infrastructure now ensures that GNU format
  3751. tar files are created.
  3752. - Fixed a variable clashing issue in the mkusers script with
  3753. internal bash variables.
  3754. - Fakeroot now links against libacl to fix issues on
  3755. distributions using acls.
  3756. - Correct permissions for /dev/pts/ptmx when systemd is used
  3757. with recent glibc versions.
  3758. - br2-external: Improve error reporting.
  3759. - A wrapper script for genimage has been added in
  3760. support/scripts/genimage.sh for easy use of genimage from
  3761. post-image scripts.
  3762. - A script to check for common style issues in new packages
  3763. before submitting has been added in support/scripts/check-package
  3764. - Defconfigs are now tested by gitlab-CI instead of Travis:
  3765. https://gitlab.com/buildroot.org/buildroot
  3766. - Infrastructure for runtime testing has been added to
  3767. support/testing
  3768. Toolchain:
  3769. - External linaro toolchains updated to 2017.02, ARC toolchain
  3770. updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
  3771. - A number of fixes and improvements to the external toolchain
  3772. handling, including C library detection, multilib and ld.so
  3773. handling
  3774. - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
  3775. for uClibc-ng
  3776. - Binutils 2.28 added and default changed to 2.27
  3777. Architectures:
  3778. - Support for the C-SKY architecture has been added.
  3779. License handling:
  3780. - The package license markings for legal info now uses the
  3781. SPDX short identifiers for the license string where possible.
  3782. - License info has been improved / added for a number of packages.
  3783. Misc:
  3784. - Cmake 3.7.x installed on the host is no longer ignored as a
  3785. workaround for the RPATH issues has been implemented.
  3786. - Docker-engine can now be built statically on an otherwise
  3787. dynamic linked build for docker-in-docker setups.
  3788. - U-Boot now supports out-of-tree device trees, similar to
  3789. Linux
  3790. - Nodejs 0.10.x support (and with it, support for <ARMv6) has
  3791. been removed as this is now EOL upstream.
  3792. New defconfigs: AT91sam9x5ek dev/mmc/mmc-dev, banana pro,
  3793. Nationalchip gx6605s, MIPS creator ci40, nexbox a95x, 64bit
  3794. defconfig for raspberry pi 3, stm32f429-disc1.
  3795. The raspberry pi zero-w and rpi3 compute module are now also
  3796. supported by the rpi0 / rpi3 defconfigs, beaglebone green is
  3797. supported by the beaglebone defconfig.
  3798. Removed defconfig: minnowboard, via imx6 vab820, altera
  3799. socdk/sockit
  3800. New packages: arp-scan, atest, augeas, bluez-tools, daemon,
  3801. dc3dd, dieharder, execline, fmt, ghostscript, gqrx,
  3802. gst1-vaapi, jo, keepalived, kmscube, kodi-jsonschemabuilder,
  3803. kodi-skin-confluence, kodi-texturepacker, lensfun, leptonica,
  3804. libbson, libcsv, libgphoto2, libkcapi, libmaxminddb,
  3805. libmediaart, libnpth, libscrypt, lua-bit32, lua-resty-http,
  3806. lugaru, memtool, mpir, nanomsg, physfs, phytool, pngquant,
  3807. python-decorator, python-simplegeneric,
  3808. python-sortedcontainers, rpi-bt-firmware, rpi-wifi-firmware,
  3809. s6, s6-dns, s6-linux-init, s6-linux-utils, s6-networking,
  3810. s6-portable-utils, s6-rc, supertux, tesseract-ocr,
  3811. uccp420wlan, wilink-bt-firmware
  3812. Broken packages: ola
  3813. Removed packages: cosmo, kodi-visualisation-fountain,
  3814. polarssl, portmap, xdriver_xf86-video-glide,
  3815. xdriver_xf86-video-v4l, xdriver_xf86-video-wsfb
  3816. Issues resolved (http://bugs.buildroot.org):
  3817. #8831: image generation fails on host ZFS due to "no free space"
  3818. #9436: e2fsprogs remove busybox applets even of unselected e2fs..
  3819. #9456: mkusers script bash errors
  3820. #9496: mke2img fails during build on ntfs-3g host partition
  3821. #9531: NPM fails to build embedded modules
  3822. #9596: KODI: --enable-lirc needs "HAVE_LIRC" compiler definition..
  3823. #9691: Wrong cryptsetup package include files location
  3824. #9696: Wrong cryptsetup package include files location
  3825. #9706: Can't download newer revisions of package from PyPI
  3826. #9711: Recent libCEC version bump seems to break kodi package
  3827. #9716: exit, shutdown, reboot from kodi
  3828. #9721: version 2017.02: no acceptable m4 could be found in $PATH
  3829. #9726: Raspberry Pi version B - Problems with UART speed in..
  3830. #9751: expat legal info - manifest.csv: GPLv2 Source site: MIT..
  3831. #9756: glibc fails to build on buildroot-sh4*-buildroot-linux-gnu
  3832. #9766: support/scripts/pkgutil.py conflicts with the pkgutil.py..
  3833. #9776: libubox build failed
  3834. #9791: Python searches for packages in the user site directory
  3835. #9806: libseccomp is not available when BR2_arm=y
  3836. #9826: post-build scritp - symlinks created in post-build script..
  3837. #9836: triggerhappy: systemd unit broken
  3838. #9846: musl libc not installed correctly in target folder
  3839. #9856: build libubox failed on ubuntu 17.04 64bit
  3840. 2017.02.11, Released April 11th, 2018
  3841. Important / security related fixes.
  3842. dependencies: Blacklist tar 1.30+ and build our own host-tar
  3843. if needed as tar 1.30+ changed the --numeric-owner output for
  3844. long path names. Build host-tar before other host-dependencies
  3845. as they need it to extract their source tarballs.
  3846. Updated/fixed packages: apache, busybox, clamav, dhcp,
  3847. dnsmasq, dovecot, exim, imagemagick, irssi, jq, libcurl,
  3848. libpjsip, librsvg, libtasn1, libvorbis, libxml2, lz4, mariadb,
  3849. mbedtls, mosquitto, ntp, openblas, opencv3, openssl, patch,
  3850. postgresql, python-webpy, qt53d, qt5tools, quagga, rsync,
  3851. samba4, sngrep, tremor, wavpack, wireshark, xerces, xterm
  3852. Issues resolved (http://bugs.uclibc.org):
  3853. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  3854. 2017.02.10, Released January 31st, 2018
  3855. Important / security related fixes.
  3856. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  3857. System: Only show getty options when busybox init or sysvinit
  3858. are used.
  3859. Infrastructure: Fix build issue for autotools based packages
  3860. checking for C++ support on toolchains without C++ support and
  3861. on a distro lacking /lib/cpp (E.G. Arch Linux).
  3862. Updated/fixed packages: avahi, berkeleydb, bind, busybox,
  3863. ccache, clamav, coreutils, dovecot, eeprog, eudev, fis,
  3864. intel-microcode, iputils, irssi, kmsxx, libcurl, liberation,
  3865. libiio, lz4, mariadb, matchbox-lib, mcookie, openocd, php,
  3866. pound, rpcbind, squid, tar, ti-cgt-pru, transmission,
  3867. util-linux, webkitgtk, wireshark, xen
  3868. Issues resolved (http://bugs.buildroot.org):
  3869. #9996: lz4 package does not install lz4 binaries in target
  3870. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  3871. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  3872. #10301: systemd/getty unused options
  3873. #10331: kmsxx, host installation fails with BR2_SHARED_...
  3874. #10536: Finding non-relative paths in the ccache
  3875. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  3876. 2017.02.9, Released January 1st, 2018
  3877. Important / security related fixes.
  3878. Fix divide by zero issue in size-stats script.
  3879. Fix makefile include ordering issue with certain make versions
  3880. in the external toolchain handling.
  3881. Updated/fixed packages: dhcp, exim, flann, gdb, heimdal,
  3882. libcue, libcurl, libevent, libpqxx, libsoxr, linphone, lldpd,
  3883. mariadb, mfgtools, mtools, nodejs, nut, openssl, rsync,
  3884. samba4, tor, vlc, webkitgtk, wireshark, xfsprogs,
  3885. xlib_libXcursor, xlib_libXfont, xlib_libXfont2
  3886. 2017.02.8, Released November 27th, 2017
  3887. Important / security related fixes.
  3888. Qt: 5.6 version updated to 5.6.3.
  3889. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  3890. in the environment.
  3891. Updated/fixed packages: apr, apr-util, arqp-standalone,
  3892. collectd, dvb-apps, ffmpeg, google-breakpad, gstreamer,
  3893. imagemagick, libfastjson, libglib2, libpjsip, libplist,
  3894. localedef, luajit, mesa3d, openssh, openssl, postgresql,
  3895. python3, python-pyqt5, qt5base, qt5canvas3d, qt5connectivity,
  3896. qt5declarative, qt5engineio, qt5graphicaleffects,
  3897. qt5imageformats, qt5location, qt5multimedia, qt5quickcontrols,
  3898. qt5quickcontrols2, qt5script, qt5sensors, qt5serialbus,
  3899. qt5serialport, qt5svg, qt5tools, qt5webchannel, qt5webkit,
  3900. qt5websockets, qt5x11extras, qt5xmlpatterns, quagga, ruby,
  3901. samba4, snmppp, ti-gfx, vboot-utils, webkitgtk, wireshark,
  3902. xapp_xdriinfo.
  3903. Issues resolved (http://bugs.buildroot.org):
  3904. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  3905. 10361: python3 python-config script generates invalid includes
  3906. 10501: host-localedef fails to compile on Ubuntu 17.10
  3907. 2017.02.7, Released October 28th, 2017
  3908. Important / security related fixes.
  3909. Webkitgtk bumped to the 2.18.x series, fixing a large number
  3910. of security issues.
  3911. Defconfigs: wandboard: Correct rootfs offset
  3912. Toolchain: Linaro toolchains updated to 2017.08 release,
  3913. fixing a number of issues. Musl: fix for CVE-2017-15650.
  3914. Updated/fixed packages: busybox, bzip2, dnsmasq, git, go,
  3915. hostapd, irssi, iucode-tool, lame, libcurl, libffi, libnspr,
  3916. libnss, nodejs, openssh, openvpn, qemu, qt, redis, sdl2,
  3917. webkitgtk, wget, wpa_supplicant, xen, xlib_libXfont,
  3918. xlib_libXfont2, xserver_xorg-server
  3919. 2017.02.6, Released September 24th, 2017
  3920. Important / security related fixes.
  3921. Cmake: Ensure correct pkg-config is used when building host
  3922. packages
  3923. fs/iso9660: Ensure files from earlier builds are not included.
  3924. Updated/fixed packages: apache, bcusdk, bind, binutils,
  3925. bluez5_utils, botan, cmake, connman, dbus, dialog, e2fsprogs,
  3926. faad2, fakeroot, ffmpeg, file, flashrom, gcc, gd, gdb,
  3927. gdk-pixbuf, git, gnupg, gpsd, grub2, gst1-plugins-bad,
  3928. imagemagick, iostat, iucode-tool, jack2, libarchive, libcurl,
  3929. libgcrypt, libidn, libphidget, librsync, librsvg, libsoup,
  3930. libxml2, linux-tools, lua, mariadb, mbedtls, mediastreamer,
  3931. minidlna, netplug, nss-pam-ldapd, nvidia-driver, openjpeg,
  3932. postgresql, proxychains-ng, python-libconfig,
  3933. python-service-identity, qt, rpcbind, ruby, samba4, squashfs,
  3934. squid, strongswan, subversion, supervisor, sysvinit, tcpdump,
  3935. tor, transmission, unrar, valgrind, vim, webkitgtk, whois,
  3936. xen, zmqpp
  3937. Issues resolved (http://bugs.buildroot.org):
  3938. #10141: Squashfs extended attribute failures
  3939. #10261: Grub2 fails to build for x86_64
  3940. #10276: BR2_PACKAGE_LINUX_TOOLS_GPIO fails for MIPS with...
  3941. 2017.02.5, Released July 27th, 2017
  3942. Important / security related fixes.
  3943. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3944. of security issues.
  3945. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3946. which default to PIE mode.
  3947. Updated/fixed packages: aespipe, apache, bind, binutils,
  3948. busybox, ccache, collectd, efibootmgr, efivar, expat, ffmpeg,
  3949. gcc, heimdal, iproute2, irssi, libglib2, libmemcached,
  3950. libosip2, libtirpc, libxml-parser-perl, linux-fusion,
  3951. linux-zigbee, mpg123, nodejs, orc, pcre, php, pulseaudio,
  3952. python-setproctitle, qt5base, rpi-firmware, samba4, syslinux,
  3953. systemd, spice, tcpdump, tiff, webkitgtk, x265, xen,
  3954. xserver_xorg-server, xvisor
  3955. Issues resolved (http://bugs.buildroot.org):
  3956. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3957. 2017.02.4, Released July 4th, 2017
  3958. Important / security related fixes.
  3959. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3960. has been shutdown.
  3961. Update support/scripts/mkusers to handle setups where
  3962. /etc/shadow is a symlink.
  3963. External toolchain: Don't create musl dynamic loader symlink
  3964. for static builds.
  3965. Setlocalversion: Correct detection of mercurial revisions for
  3966. non-tagged versions.
  3967. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3968. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, gnutls,
  3969. gst1-plugins-bad, imagemagick, imx-uuc, intltool, iperf,
  3970. ipsec-tools, irssi, libgcrypt, libmad, libnl, mosquitto,
  3971. mpg123, ncurses, nodejs, ntp, openssh, openvpn, qt5base,
  3972. qt5multimedia, rtl8821au, socat, spice, systemd, tor, tslib,
  3973. vlc, x264, xserver_xorg-server
  3974. Issues resolved (http://bugs.buildroot.org):
  3975. #9976: License file for package 'rtl8821au' incorrect
  3976. 2017.02.3, Released June 2nd, 2017
  3977. Important / security related fixes.
  3978. Download: <pkg>-source-check fixed for packages from git.
  3979. External toolchain: musl dynamic linker symlink for mips-sf
  3980. corrected.
  3981. Updated/fixed packages: armadillo, audiofile, bash,
  3982. bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
  3983. elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
  3984. google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
  3985. libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
  3986. lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
  3987. nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
  3988. postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
  3989. rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
  3990. Issues resolved (http://bugs.buildroot.org):
  3991. #9796: source-check broken for Git downloads
  3992. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3993. 2017.02.2, Released May 1st, 2017
  3994. Important / security related fixes.
  3995. Use HTTPS for the Codesourcery external toolchains as the HTTP
  3996. URLs no longer work.
  3997. Updated/fixed packages: bind, busybox, dovecot, freetype,
  3998. ghostscript, glibc, granite, hiredis, icu, imagemagick,
  3999. gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
  4000. libnspr, libnss, libsamplerate, libsndfile, libunwind,
  4001. minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
  4002. python-web2py, samba4, syslinux, systemd, tiff, trinity,
  4003. uboot, wireshark, xen
  4004. Issues resolved (http://bugs.buildroot.org):
  4005. #9791: Python searches for packages in the user site directory
  4006. 2017.02.1, Released April 4th, 2017
  4007. Important / security related fixes.
  4008. Fix a variable clashing issue in the mkusers script with
  4009. internal bash variables.
  4010. Improve external toolchain version detection.
  4011. Correct permissions for /dev/pts/ptmx when systemd is used
  4012. with recent glibc versions.
  4013. Fix python module name clash for graph-depends.
  4014. Fakeroot now links against libacl to fix issues on
  4015. distributions using acls.
  4016. Ensure that the git download infrastructure creates GNU format
  4017. tar files.
  4018. br2-external: Improve error reporting.
  4019. Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
  4020. dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
  4021. fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
  4022. gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
  4023. libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
  4024. libwebsockets, libxkbcommon, linux-firmware, logrotate,
  4025. lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
  4026. mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
  4027. pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
  4028. skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
  4029. tcpreplay, tor, upmpdcli, wget, wireshark,
  4030. xdriver_xf86-video-vmware, xlib_libXv, zmqpp
  4031. Issues resolved (http://bugs.buildroot.org):
  4032. #9456: mkusers script bash errors
  4033. 2017.02, Released February 28th, 2017
  4034. Minor fixes, mainly fixing autobuilder issues.
  4035. Don't use cmake 3.7.x from the build host as it is also
  4036. affected by the RPATH handling issues, and instead build our
  4037. own if needed.
  4038. Updated/fixed packages: assimp, classpath, genimage, mplayer,
  4039. mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
  4040. vlc, xterm
  4041. 2017.02-rc3, Released February 26th, 2017
  4042. Fixes all over the tree.
  4043. Cmake reverted to version 3.6.3 to workaround regressions
  4044. related to RPATH handling.
  4045. Updated/fixed packages: bctoolbox, berkeleydb, binutils,
  4046. btrfs-progs, classpath, directfb, glibc, gstreamer1,
  4047. gst1-plugins-{base,good,bad,ugly}, gst1-libav,
  4048. gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
  4049. libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
  4050. oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
  4051. trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
  4052. Issues resolved (http://bugs.buildroot.org):
  4053. #9251: Shared C++ libraries for Microblaze results in Segmentation...
  4054. #9456: mkusers script bash errors
  4055. #9506: Collectd 5.7.0 fails to build with libcrypt
  4056. #9581: VagrantFile provisioning step fails due to issue with grub-pc
  4057. #9586: usbmount: usbmount slows down the system... to a state of...
  4058. #9616: CMake host packages cannot provide CONF_ENV
  4059. #9641: Need raptor package installed in staging
  4060. #9671: stunnel build error
  4061. 2017.02-rc2, Released February 20th, 2017
  4062. Fixes all over the tree.
  4063. Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
  4064. older gcc versions for reproducible builds has been
  4065. (temporarily) reverted because of licensing compatiblity
  4066. concerns.
  4067. Defconfigs: SD card generation fix for the Udoo Neo board
  4068. Infrastructure to handle .lz compressed tarballs added, and
  4069. affected packages updated to use it.
  4070. Updated/fixed packages: bctoolbox, bind, canelloni,
  4071. cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
  4072. ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
  4073. kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
  4074. libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
  4075. ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
  4076. riemann-c-client, samba4, sunxi-mali, tcping, trousers,
  4077. uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
  4078. xserver_xorg-server
  4079. Issues resolved (http://bugs.buildroot.org):
  4080. #8941: Valgrind fails to build with stack protection turned on
  4081. #9291: perl: SysV message queues not configured, even if available
  4082. #9651: libxcb-1.12 built Error
  4083. #9656: util-linux: schedutils doesn't build on target w/o enabl...
  4084. #9666: qt5quickcontrols install fails
  4085. 2017.02-rc1, Released February 11th, 2017
  4086. Fixes all over the tree and new features.
  4087. Infrastructure:
  4088. - numerous improvements to support reproducible builds
  4089. - new waf-package package infrastructure to support packages
  4090. that use the Waf build system. 6 packages converted to
  4091. this infrastructure.
  4092. - add option <pkg>_PREFER_INSTALLER to the perl package
  4093. infrastructure
  4094. Architecture:
  4095. - add support for the OpenRISC CPU architecture
  4096. - merge description of the ARM and ARM64 options, and add
  4097. support for selecting a specific ARM64 core
  4098. Toolchain:
  4099. - major rework of the external toolchain support. It is now
  4100. split into several packages, one per external toolchain,
  4101. and a common infrastructure.
  4102. - important fix for musl to prevent a conflict between musl
  4103. and kernel headers (fixes the build of numerous packages
  4104. with musl)
  4105. - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
  4106. for ARM64, mips32r6 and mips64r6
  4107. - add gdb 7.12.1, and switch to gdb 7.11 as the default
  4108. - Linaro toolchains updated to 2016.11, ARC toolchain
  4109. components updated to arc-2016.09, MIPS Codescape
  4110. toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
  4111. NIOS2 toolchains bumped
  4112. - remove Analog Devices toolchain for the Blackfin
  4113. architecture, remove pre-built musl toolchains from
  4114. musl.codu.org
  4115. New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
  4116. Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
  4117. SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
  4118. New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
  4119. ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
  4120. jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
  4121. nginx-dav-ext, nmon, opkg-utils, policycoreutils,
  4122. pru-software-support, python-arrow, python-attrs,
  4123. python-babel, python-bitstring, python-chardet,
  4124. python-constantly, python-flask-babel, python-gunicorn,
  4125. python-incremental, python-jsonschema, python-logbook,
  4126. python-markdown2, python-mbstrdecoder, python-mutagen,
  4127. python-pathpy, python-pudb, python-pyqrcode,
  4128. python-pytablereader, python-setuptools-scm, python-sh,
  4129. python-toml, python-vcversioner, python-whoosh,
  4130. raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
  4131. sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
  4132. upower, ustream-ssl, waf, xlib_libXfont2
  4133. Removed packages: perl-db-file, snowball-hdmiservice,
  4134. snowball-init
  4135. Tooling: addition of a test-pkg script to help contributors
  4136. build test their package.
  4137. Issues resolved (http://bugs.buildroot.org):
  4138. #8946: Valgrind fails to build with stack protection turned on
  4139. #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
  4140. #9466: VIM_REMOVE_DOCS removes rgb.txt
  4141. #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
  4142. #9501: eudev fails to build with older kernel headers
  4143. #9526: Embedded NPM fails to start with "no such file or directory" error
  4144. #9541: Platform drivers autoloading from info in device tree does not work
  4145. #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
  4146. #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
  4147. #9566: [kmod] Compilation fails with uclibc
  4148. #9571: buildroot fails while building opencv for arm64 platform
  4149. #9576: External tree with BR 2016.11 does not work anymore
  4150. #9606: xorg-server cannot build for ARM target
  4151. 2016.11.3, Released March 9th, 2017
  4152. Important / security related fixes.
  4153. Updated/fixed packages: bind, dbus, gnutls, imagemagick,
  4154. lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
  4155. squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
  4156. 2016.11.2, Released January 25th, 2017
  4157. Important / security related fixes.
  4158. A fix for BR2_EXTERNAL trees referenced using relative paths,
  4159. which broke in 2016.11.
  4160. Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
  4161. imagemagick, irssi, libpng, libvncserver, musl, opus, php,
  4162. php-imagick, rabbitmq-server, runc, wireshark,
  4163. Issues resolved (http://bugs.buildroot.org):
  4164. #9576: External tree with BR 2016.11 does not work anymore
  4165. 2016.11.1, Released December 29th, 2016
  4166. Important / security related fixes.
  4167. Updated/fixed packages: apache, cryptopp, docker-engine,
  4168. dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
  4169. nodejs, openssh, php, python, python-bottle, samba4, squid,
  4170. uboot, vim, wireshark, xorg-server uboot
  4171. Issues resolved (http://bugs.buildroot.org):
  4172. #9466: VIM_REMOVE_DOCS removes rgb.txt
  4173. 2016.11, Released November 30th, 2016
  4174. Minor fixes.
  4175. Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
  4176. uboot, uclibc
  4177. Issues resolved (http://bugs.buildroot.org):
  4178. #9451: packages/postgresql/postgresql.mk contains wrong POST...
  4179. 2016.11-rc3, Released November 28th, 2016
  4180. Fixes all over the tree, including a number of security fixes.
  4181. The move from fakeroot to pseudo unfortunately brought a
  4182. number of issues. The SELinux issue described in #9386 which
  4183. triggered the move to pseudo has been investigated further and
  4184. a workaround implemented and the pseudo changes reverted.
  4185. Linux kernel: update default to 4.8.11.
  4186. Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
  4187. olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
  4188. vdk, axs101, axs103 and hs38 smd vdk.
  4189. Updated/fixed packages: autossh, chrony, dosfstools,
  4190. dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
  4191. gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
  4192. kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
  4193. ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
  4194. ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
  4195. taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
  4196. xapp_xload, xenomai, xmlstarlet
  4197. Issues resolved (http://bugs.buildroot.org):
  4198. #9386: ubinize fails with or without custom config
  4199. #9431: A misspelling
  4200. #9446: make raspberrypi3_defconfig compilation failure
  4201. 2016.11-rc2, Released November 13th, 2016
  4202. Fixes all over the tree.
  4203. Architecture: add support for MIPS XBurst cores; remove MIPS
  4204. support for M5100 cores.
  4205. Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
  4206. czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
  4207. qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
  4208. libxslt, python, python3, php, valgrind, guile, domoticz, efl,
  4209. jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
  4210. strace, openjpeg, lcms2, quota.
  4211. Linux kernel: update default to 4.8.7.
  4212. CMake support: fix cmake wrapper to properly pass NDEBUG flag.
  4213. Filesystems: use a wrapper to pseudo, to better mimick the behaviour
  4214. of fakeroot; makedevs no longer breaks of the destination already
  4215. exists and is of the correct type/major/minor.
  4216. Defconfigs: a few legacy and broken defconfigs have been removed
  4217. because they now fail to build: kb9202_defconfig, mini2440_defconfig,
  4218. freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
  4219. have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
  4220. armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
  4221. olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
  4222. atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
  4223. atmel_sama5d3xek.
  4224. 2016.11-rc1, Released November 3rd, 2016
  4225. Fixes all over the tree and new features.
  4226. It is now possible to specify multiple BR2_EXTERNAL
  4227. directories. The required files in a BR2_EXTERNAL directory
  4228. have changed to accomodate this feature. Refer to the
  4229. documentation for details of how to update them. External
  4230. trees now have a name and a description. Also, it is possible
  4231. to override a defconfig in the external tree.
  4232. The default skeleton now uses UID 65534 for the "nobody"
  4233. user instead of UID 99, like most distros do. See
  4234. https://lwn.net/Articles/695478/ for a complete discussion.
  4235. Programs and configuration files that explicitly refer to UID
  4236. 99 will have to be updated.
  4237. When the build environment already has a suitable cmake version
  4238. (3.1 or later), that one will be used instead of building
  4239. host-cmake. This can speed up the build significantly.
  4240. The ExtUtils::MakeMaker perl module is now required in the
  4241. build environment.
  4242. An additional check is done during the build that files are
  4243. not installed in the output directory within the output
  4244. directory. This happens e.g. when the target directory is
  4245. contained both in --prefix and in DESTDIR. The build will
  4246. terminate with an error message that specifies which package
  4247. and which file caused the failure.
  4248. The concept of "deprecated packages" and the BR2_DEPRECATED
  4249. option have been removed. Instead, packages are removed
  4250. immediately. Packages are only removed when they don't work
  4251. for some reason. If you still need a removed package and
  4252. you have a solution for the problem(s) that caused the
  4253. removal, please contribute it.
  4254. Architecture: support for sh64 removed, improved support for
  4255. MIPS core selection.
  4256. Toolchain: support for musl powerpc64le, mips64 and mipsr6
  4257. toolchains, ARC toolchain components updates, gcc 6.x series
  4258. bumped to 6.2.0, default binutils version switched to 2.26,
  4259. default gcc version switched to gcc 5.x, Linaro toolchains
  4260. updated, uclibc-ng bumped to 1.0.19. GCC is now always built
  4261. with TLS support. Checking of unsafe compiler options (that
  4262. point to host directories) has been extended with -isystem,
  4263. -idirafter and -iquote.
  4264. Package infrastructure: new variable $(PKG)_DL_OPTS, addition
  4265. of <pkg>-show-rdepends to list reverse dependencies, and
  4266. <pkg>-graph-rdepends to graph reverse dependencies. Linux tools
  4267. are now in a separate linux-tools package instead of in the
  4268. kernel build. Fakeroot has been replaced by pseudo.
  4269. CMake support: the toolchainfile.cmake file now provides a
  4270. definition of the CMAKE_BUILD_TYPE variable. The
  4271. toolchainfile.cmake also no longer forces the compiler/linker
  4272. flags defined by Buildroot.
  4273. New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
  4274. TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
  4275. BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
  4276. New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
  4277. aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
  4278. mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
  4279. python-crcmod, python-cssutils, python-docutils,
  4280. python-futures, python-mwclient, python-mwscrape,
  4281. python-mwscrape2slob, python-pyelftools, python-pyicu,
  4282. python-pylru, python-pyqt5, python-requests-toolbelt,
  4283. python-simpleaudio, python-slob, rabbitmq-server, shapelib,
  4284. vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
  4285. gpio linux tools.
  4286. Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
  4287. kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
  4288. wvdial, wvstreams.
  4289. Documentation: the list of packages that was present in the
  4290. Buildroot manual has been removed.
  4291. Legal info: the "licenses.txt" file that concatenates all
  4292. license texts is no longer generated - it was not considered
  4293. useful. The manifest.csv contains an empty cell instead of
  4294. "not saved" when no license file is available.
  4295. Other: addition of a DEVELOPERS file listing developers taking
  4296. care of packages or architectures.
  4297. Issues resolved (http://bugs.buildroot.org):
  4298. #7802: host-python build hangs compiling getbuildinfo.o
  4299. #8206: mplayer uses host xorg development files
  4300. #8516: mkcubiecard.sh uses outdated sfdisk switch -D
  4301. #8536: Building sudo with PAM results in unusable sudo
  4302. #8646: check-host-rpath script returns false positives when rpath
  4303. contains symlink
  4304. #8696: xdriver_xf86-input-mouse install header files in target
  4305. directory
  4306. #8811: rp-pppoe - generated scripts commands use HOST pathnames,
  4307. not necessarily TARGET
  4308. #8846: Orphaned/missing toolchain borks eclipse plugin
  4309. #8856: python tornado runtime wasn't met on buildroot 2016.02
  4310. #8901: gcc failes to build if fortran is enabled
  4311. #8916: LDFLAGS pass to openssh
  4312. #8941: "ls" of an NFSv4 share only works when pumped through strace
  4313. #8946: Valgrind fails to build with stack protection turned on
  4314. #9021: Kodi - Broken: Illegal instruction (core dumped)
  4315. #9096: rootfs.ubi not created
  4316. #9111: glibc 2.23: libmvec.so not copied
  4317. #9176: minnowboard : USB not mounted
  4318. #9196: raspberry pi 3 default build seem broken
  4319. #9201: Permission denied make: *** [core-dependencies] Error 126 in
  4320. Buildroot-2015.08.1
  4321. #9216: log4cpp package build fails to build within install
  4322. #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
  4323. pressing buttons.
  4324. #9229: Firefly boot fails with: "failed to find part:boot"
  4325. #9256: [Config file] New device: Odroid-U2/U3
  4326. #9296: Buildroot Fails on applying patches
  4327. #9301: U-boot fails to build with default zynq_zed_defconfig configuration
  4328. #9316: U-boot fails to build if libssl-dev is not installed
  4329. #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
  4330. flash utility (tegrarcm)
  4331. #9326: Odroid-C2 build results in non-bootable image
  4332. #9336: Improve iconv support for external toolchain based builds
  4333. #9356: gdb package
  4334. #9366: no link rootfs.ext4 -> rootfs.ext2
  4335. #9371: openssl: download failes with "Only allow downloads from primary
  4336. download site" + local server
  4337. #9381: check-host-rpath issues
  4338. #9386: ubinize fails with or without custom config
  4339. 2016.08, Released September 1st, 2016
  4340. Minor fixes.
  4341. Toolchain: ARC tools updated to arc-2016.09-eng010.
  4342. Updated/fixed packages: libshout, luajit, mpd, mplayer
  4343. Issues resolved (http://bugs.buildroot.org):
  4344. #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
  4345. #8341: Getting EGL Error: Could not create the egl surface:..
  4346. #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
  4347. 2016.08-rc3, Released August 29th, 2016
  4348. Fixes all over the tree.
  4349. Toolchain: C++ support for the internal blackfin toolchain
  4350. re-enabled.
  4351. Architecture: Default to bf532 CPU variant for blackfin,
  4352. Fix flat one memory region support for m68k and disable flat
  4353. seperate data support because of compatibility issues.
  4354. Defconfigs: Minnowboard and Raspberrypi: Fix errors with
  4355. post-build scripts when systemd is used.
  4356. Zynq microzed/zc706/zed: Fix u-booot configuration.
  4357. netbsd-queue package extended and renamed to
  4358. musl-compat-headers. With this, a number of musl compatibility
  4359. patches are no longer needed.
  4360. Updated/fixed packages: aircrack-ng, android-tools, babeld,
  4361. bcusdk, binutils, boa, busybox, connman, cpupower,
  4362. docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
  4363. glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
  4364. imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
  4365. libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
  4366. libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
  4367. linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
  4368. neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
  4369. pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
  4370. quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
  4371. squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
  4372. trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
  4373. webkitgtk, wireshark, xdriver_xf86-video-intel
  4374. Issues resolved (http://bugs.buildroot.org):
  4375. #9101: Error on support/download/git with system git older than 1.8.4
  4376. #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
  4377. 2016.08-rc2, Released August 17th, 2016
  4378. Fixes all over the tree.
  4379. Toolchain: disable broken C++ support for internal blackfin
  4380. toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
  4381. to fix various issues.
  4382. System: Zoneinfo is available for the musl C library as well.
  4383. Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
  4384. blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
  4385. fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
  4386. inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
  4387. libical, libpjsip, libsidplay2, libunwindow, libxml2,
  4388. linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
  4389. openblas, openipmi, owfs, php, poco, procps, qt, quota,
  4390. sg3_utils, spidev_test, systemd-bootchart, thrift,
  4391. uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
  4392. xdriver_xf86-video-savage, xserver_xorg-server, xen
  4393. Issues resolved (http://bugs.buildroot.org):
  4394. #9136: make graph-size fails with "ValueError: too many values to..
  4395. #9151: qt: fix build with ALSA >= 1.1.x
  4396. #9156: qt: Fix missing runtime Qt3Support dependency
  4397. #9161: modsetting patch not applied to xserver 1.18.4
  4398. #9166: Missing overlays directory in VFAT image for raspberry pi 3
  4399. 2016.08-rc1, Released August 6th, 2016
  4400. Fixes all over the tree and new features.
  4401. Toolchain: Fortran support added. eglibc support removed, musl
  4402. support no longer experimental. Blackfin and Microblaze
  4403. support for internal uClibc-ng toolchain, m68k/coldfire
  4404. improvements. The check for unsafe (build host) directories
  4405. access (/usr/include and /usr/lib) is now enabled by default.
  4406. Unused locales are now purged by default to save space (and
  4407. the default list of locales shrunk). The option to control
  4408. this has now moved from the toolchain menu to system
  4409. configuration.
  4410. Legal info improvements: sources are now hardlinked instead of
  4411. copied if possible to save space. Patches and extra downloads
  4412. are also saved.
  4413. An experimental configuration knob (BR2_REPRODUCIBLE) has been
  4414. added to make the builds more reproducible (E.G. less
  4415. differences in the binary output between builds of the same
  4416. configuration). This is still work in progress.
  4417. An option to execute a custom script inside the fakeroot
  4418. environment used to the generate the filesystem (E.G. to tweak
  4419. permissions or similar) has been added.
  4420. Git support now supports git submodules if
  4421. <pkg>_GIT_SUBMODULES is enabled.
  4422. Hash files for integritry validation have been added for all
  4423. packages.
  4424. Scanpypi utility to help creating packages from the Python
  4425. package index (pypi) has been added.
  4426. The makedevs utility now has support for adding file
  4427. capabilities using extended attributes.
  4428. New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
  4429. development configs, Blackfin GDB simulator, Linksprite
  4430. pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
  4431. i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
  4432. MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
  4433. Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
  4434. demos. A number of defconfigs have been updated and extended
  4435. to generate SD card images. Synopsys HS38 VDK defconfig removed.
  4436. New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
  4437. alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
  4438. circus, dante, docker-containerd, docker-engine, domoticz,
  4439. efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
  4440. gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
  4441. jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
  4442. libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
  4443. libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
  4444. mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
  4445. odroid-scripts, omxplayer, openblas, openmpi, openzwave,
  4446. p7zip, pdbg, python-argh, python-dataproperty,
  4447. python-dateutil, python-dialog3, python-dicttoxml,
  4448. python-dominate, python-engineio, python-flask-jsonrpc,
  4449. python-flask-login, python-humanize, python-pathtools,
  4450. python-pathvalidate, python-pillow, python-prompt-toolkit,
  4451. python-pytablewriter, python-pytz, python-scapy3k,
  4452. python-sdnotify, python-socketio, python-tomako,
  4453. python-ubjson, python-u-msgpack, python-watchdog,
  4454. python-wcwidth, python-xlrd, python-xlsxwriter,
  4455. python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
  4456. sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
  4457. supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
  4458. tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
  4459. wiringpi, xen
  4460. Deprecated packages: ipkg, sstrip
  4461. Removed packages: sunxi-mali-prop
  4462. Issues resolved (http://bugs.buildroot.org):
  4463. #8931: segment fault when compile argp-help.c using aarch64-bu...
  4464. #8966: eglfs error. buildroot don't compile the library libeglfs.so
  4465. #8971: build for beaglebone fails
  4466. #8986: qt5imageformats fails to build on AArch64
  4467. #8991: grub2 fails to compile
  4468. #9001: Nodejs option not available
  4469. #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
  4470. #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
  4471. #9066: 8139TOO - faulty behaviour
  4472. #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
  4473. #9091: U-Boot fails to boot with large ramdisk
  4474. 2016.05, Released May 31st, 2016
  4475. Minor fixes.
  4476. External toolchain: Fix for symlink handling when copying
  4477. links to target.
  4478. Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
  4479. ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
  4480. lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
  4481. net-tools, openpowerlink, pulseview, rpm, tinyalsa,
  4482. xdriver_xf86-video-fbturbo, xserver_xorg-server
  4483. 2016.05-rc3, Released May 26th, 2016
  4484. Fixes all over the tree.
  4485. Tweaks for SSP handling for external toolchains.
  4486. Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
  4487. cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
  4488. gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
  4489. kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
  4490. libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
  4491. mpg123, mtr, openpgm, openpowerlink, oprofile, php,
  4492. postgresql, putty, python-service-identity, python-treq,
  4493. qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
  4494. ustr, valgrind, webkitgtk, libxml2, xorriso,
  4495. xserver_xorg-server
  4496. Issues resolved (http://bugs.uclibc.org):
  4497. #8936: Aircrack-ng - Alot of missing dependencies
  4498. 2016.05-rc2, Released May 17th, 2016
  4499. Fixes all over the tree.
  4500. Rootfs overlay handling now refuses to overwrite
  4501. /{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
  4502. even if these directories are present in the overlay.
  4503. External toolchain: Unbreak user provided libraries deployment
  4504. (BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
  4505. QEMU coldfire: Fix for signal handling kernel issue, enable
  4506. networking support.
  4507. Updated/fixed packages: android-tools, assimp, boost, gcc,
  4508. glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
  4509. jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
  4510. kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
  4511. mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
  4512. qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
  4513. 2016.05-rc1, Released May 10th, 2016
  4514. Fixes all over the tree and new features.
  4515. Architectures: new ARM variants: Cortex A17 and M4, improved
  4516. nonmmu (cortex-M) support, m68k has been re-enabled with
  4517. support for ColdFire. For x86, support for the i386 variant
  4518. has been dropped.
  4519. Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
  4520. deprecated. Go programming language support, Add Binutils 2.26
  4521. support. Old Sourcery PowerPC external toolchains removed,
  4522. Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
  4523. added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
  4524. New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
  4525. STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
  4526. Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
  4527. added for m68k, eXtensa-nommu and ColdFire.
  4528. Linux: use zImage by default on ARM, subversion repository
  4529. support (for u-boot as well).
  4530. New packages: aer-inject, android-tools, cannelloni,
  4531. cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
  4532. gmrender-resurrect, flannel, font-awesome, freeswitch, go,
  4533. go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
  4534. kodi-adsp-basic, kodi-adsp-freesurround,
  4535. kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
  4536. kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
  4537. kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
  4538. kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
  4539. kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
  4540. libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
  4541. lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
  4542. norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
  4543. python-autobahn, python-characteristic, python-crossbar,
  4544. python-cryptography, python-iniparse, python-iowait,
  4545. python-lmdb, python-pexpect, python-ptyprocess,
  4546. python-pyasn-modules, python-pygments, python-pymysql,
  4547. python-pynacl, python-pyopenssl, python-pysocks,
  4548. python-pytrie, python-rpi-gpio, python-service-identity,
  4549. python-setproctitle, python-shutilwhich, python-treq,
  4550. python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
  4551. qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
  4552. raptor, scrub, taskd, tegrarcm, turbolua, valijson,
  4553. wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
  4554. xdriver_xf86-video-amdgpu
  4555. Removed packages: foomatic-filters, python-m2crypto,
  4556. qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
  4557. Issues resolved (http://bugs.buildroot.org):
  4558. #6830: Qt5: no fonts are installed
  4559. #7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
  4560. #7580: Invalid filesystem in Pandaboard defconfig
  4561. #8346: wf111 package removes all kernel module dependencies
  4562. #8436: xserver_xorg-server Segmentation fault
  4563. #8736: IPV6 forced on in busybox
  4564. #8746: At startup system stops with 'cannot set terminal proces..
  4565. #8751: make fail [fio does not build on sh]
  4566. #8766: Compiling host-gcc-final-4.9.3 broken on i386
  4567. #8771: make savedefconfig modifies sources
  4568. #8781: Unable to build uboot for imx28evk
  4569. #8786: gdb fails to build with xz and expat support at the same
  4570. #8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
  4571. #8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
  4572. #8836: Can't select Vim in menuconfig
  4573. #8851: Make sure fio can compile with libaio support if it...
  4574. #8861: With buildroot 2016.02 trying to build for corei7-avx
  4575. fails while trying to build host-binutils
  4576. #8866: Making an USB flash bootable with extlinux build with
  4577. buildroot does not work
  4578. 2016.02, Released March 1st, 2016
  4579. Minor fixes, mostly security related.
  4580. Circular dependency issue with same-as-kernel linux-headers
  4581. option fixed.
  4582. Updated/fixed packages: bluez5_utils, heirloom-mailx,
  4583. imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
  4584. kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
  4585. python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
  4586. 2016.02-rc3, Released February 27th, 2016
  4587. Fixes all over the tree.
  4588. Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
  4589. where VFP is optional (but present on the specific hw). Fix
  4590. ARM variant selection for freescale_imx31_3stack_defconfig.
  4591. Ensure tarballs of downloaded git trees do not contain a
  4592. timestamp.
  4593. Clarify license of patches in COPYING.
  4594. Updated/fixed package: avahi, binutils, cairo, can-festival,
  4595. chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
  4596. erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
  4597. gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
  4598. jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
  4599. libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
  4600. mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
  4601. omniorb, openipmi, openobex, patch, pax-utils, perf,
  4602. pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
  4603. shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
  4604. trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
  4605. wpa_supplicant, xerces, zsh
  4606. Issues resolved (http://bugs.uclibc.org):
  4607. #8651: libMonoPosixHelper.so wrong link reference in buildroot..
  4608. 2016.02-rc2, Released February 18th, 2016
  4609. Fixes all over the tree.
  4610. Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
  4611. crash, backport of Xtensa .init/.fini literals handling.
  4612. glibc security patches for CVE-2014-8121, CVE-2015-1781
  4613. and CVE-2015-7547.
  4614. Defconfigs for Acmesystems Arietta g25 added.
  4615. Updated/fixed packages: binutils, boost, chrony, dovecot,
  4616. e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
  4617. libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
  4618. postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
  4619. sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
  4620. Issues resolved (http://bugs.uclibc.org):
  4621. #8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
  4622. #8606: Problem compiling on Arch Linux
  4623. #8681: kbd 2.0.3 does not build on rpi
  4624. 2016.02-rc1, Released February 10th, 2016
  4625. Fixes all over the tree and new features.
  4626. Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
  4627. arc-2015.12. Support for legacy uClibc dropped, default to
  4628. uClibc-ng instead. Added sys/queue.h implementation for MUSL
  4629. for compatibility. Updated versions of Code sourcery and
  4630. Linaro toolchains. MIPS Codescape toolchains added. Version
  4631. selection for preconfigured external toolchains removed.
  4632. New Defconfigs: ARM Juno r0/r1 development boards, Freescale
  4633. i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
  4634. A number of defconfigs have been extended to generate complete
  4635. system images using genimage.
  4636. Linux: Automatically patch timeconst.pl for <3.9 kernels,
  4637. which isn't compatible with modern perl versions, breaking the
  4638. build when building on recent (Fedora 23, Debian
  4639. Testing/Unstable, ..) distributions.
  4640. Makedevs utility now accepts textual (non-numerical) user and
  4641. group names.
  4642. Vagrant file to easily setup a working development environment
  4643. in a VM has been added.
  4644. Size-stats-compare script to compare rootfs sizes between
  4645. builds has been added.
  4646. Infozip package renamed to zip. EFL packages restructured.
  4647. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  4648. angularjs, apache, apr, argp-standalone, armadillo, arptables,
  4649. at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
  4650. bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
  4651. bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
  4652. clamav, cmake, collectd, connman, coreutils, cppcms, crda,
  4653. cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
  4654. dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
  4655. dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
  4656. dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
  4657. dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
  4658. elementary, elfutils, enlightenment, erlang, espeak, eudev,
  4659. eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
  4660. fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
  4661. firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
  4662. freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
  4663. gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
  4664. glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
  4665. gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
  4666. gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
  4667. gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
  4668. hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
  4669. imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
  4670. ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
  4671. iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
  4672. jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
  4673. jquery-sparkline, jquery-ui, jquery-ui-themes,
  4674. jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
  4675. keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
  4676. leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
  4677. libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
  4678. libedbus, libedit, libedje, libeet, libefreet, libeina,
  4679. libeio, libelementary, libembryo, libepoxy, libethumb, libev,
  4680. libevas, libevas-generic-loaders, libevdev, libevent, libffi,
  4681. libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4682. libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
  4683. libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
  4684. libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
  4685. libnss, liboauth, liboping, libpciaccess, libplist, libpng,
  4686. libraw, libraw1394, librsvg, libseccomp, libsecret,
  4687. libserialport, libsigc, libsigrok, libsigrokdecode,
  4688. libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
  4689. libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
  4690. libunwind, libupnpp, liburcu, libuv, libv4l, libva,
  4691. libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
  4692. lightning, lighttpd, linknx, linux-firmware, linux-fusion,
  4693. linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
  4694. lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
  4695. lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
  4696. luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
  4697. mesa3d, mesa3d-demos, mesa3d-headers, micropython,
  4698. micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
  4699. moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
  4700. monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
  4701. musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
  4702. netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
  4703. nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
  4704. odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
  4705. openldap, openntpd, openobex, openocd, openpgm,
  4706. open-plc-utils, openpowerlink, openssh, openssl, openswan,
  4707. openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
  4708. pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
  4709. perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
  4710. perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
  4711. polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
  4712. psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
  4713. python-alsaaudio, python-can, python-cffi, python-cherrypy,
  4714. python-httplib2, python-jinja2, python-lxml, python-m2crypto,
  4715. python-mako, python-msgpack, python-psutil, python-pyasn,
  4716. python-pycparser, python-pydal, python-pyftpdlib,
  4717. python-pyroute2, python-pyxml, python-pyzmq, python-requests,
  4718. python-serial, python-setuptools, python-six, python-spidev,
  4719. python-tornado, python-twisted, python-web2py, python-webpy,
  4720. python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
  4721. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  4722. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  4723. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  4724. qt5serialport, qt5svg, qt5webchannel, qt5webkit,
  4725. qt5webkit-examples, qt5websockets, qt5x11extras,
  4726. qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
  4727. readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
  4728. rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
  4729. sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
  4730. smack, snowball-init, socat, sp-oops-extract, sqlite,
  4731. squashfs, squeezelite, squid, sredird, sshfs,
  4732. start-stop-daemon, strace, strongswan, stunnel, subversion,
  4733. sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
  4734. sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
  4735. tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
  4736. trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
  4737. udpcast, unionfs, upmpdcli, usb_modeswitch,
  4738. usb_modeswitch_data, ustr, util-linux, vala, valgrind,
  4739. vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
  4740. wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
  4741. wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
  4742. xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
  4743. xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
  4744. xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
  4745. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4746. xfont_encodings, xfont_font-adobe-100dpi,
  4747. xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
  4748. xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
  4749. xfont_font-alias, xfont_font-arabic-misc,
  4750. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  4751. xfont_font-bh-lucidatypewriter-100dpi,
  4752. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  4753. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  4754. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  4755. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  4756. xfont_font-daewoo-misc, xfont_font-dec-misc,
  4757. xfont_font-ibm-type1, xfont_font-isas-misc,
  4758. xfont_font-jis-misc, xfont_font-micro-misc,
  4759. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  4760. xfont_font-misc-meltho, xfont_font-misc-misc,
  4761. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  4762. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  4763. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  4764. xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
  4765. xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
  4766. xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
  4767. ympd, zeromq, zic, znc, zsh,
  4768. New packages: acsccid, assimp, atkmm, autofs, bcm2835,
  4769. cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
  4770. edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
  4771. kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
  4772. libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
  4773. libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
  4774. mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
  4775. obsidian-cursors, openal, openbox, pangomm,
  4776. python-backports-abc, python-beautifulsoup4, python-cbor,
  4777. python-click, python-cssselect, python-ecdsa, python-html5lib,
  4778. python-idna, python-ipaddress, python-mistune, python-netaddr,
  4779. python-paho-mqtt, python-paramiko, python-pyparted,
  4780. python-pysmb, python-pyudev, python-singledispatch,
  4781. python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
  4782. sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
  4783. unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
  4784. Removed packages: libungif, python-pyxml,
  4785. Issues resolved (http://bugs.uclibc.org):
  4786. #7886: gettext: link failure with locally-installed libxml2
  4787. #7892: systemd-journald is broken
  4788. #8066: nodejs crashes when built with gcc 4.9
  4789. #8296: nodejs 0.12.7 - npm crashes (seg core dump)
  4790. #8501: gunzip fails to uncompress files
  4791. #8541: fail to build host-fakeroot-1.20.2
  4792. #8546: build instructions for raspberry pi don't work
  4793. #8571: strace for ARC compile error
  4794. #8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
  4795. #8616: Fail to build for raspberrypi_defconfig with big endian
  4796. #8621: sqlite package, properly enable readline
  4797. 2015.11, Released November 30th, 2015
  4798. Minor fixes.
  4799. Merged/seperate /usr handling is now also performed for
  4800. staging so cross-gdb / gdbserver can find the libraries.
  4801. Updated/fixed packages: autossh, conntrack-tools, dcron,
  4802. espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
  4803. libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
  4804. rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
  4805. zmqpp
  4806. Issues resolved (http://bugs.uclibc.org):
  4807. #8441: Invalid directory for X11 fonts in target (RPi2)
  4808. #8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
  4809. 2015.11-rc3, Released November 26th, 2015
  4810. Fixes all over the tree.
  4811. We have a new modern website!
  4812. Updated/fixed packages: apitrace, audiofile, autossh, bullet,
  4813. c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
  4814. fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
  4815. gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
  4816. guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
  4817. libfreeimage, libgsasl, libgtk3, libxml2, localedef,
  4818. lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
  4819. oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
  4820. sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
  4821. yajl, zmqpp
  4822. Issues resolved (http://bugs.uclibc.org):
  4823. #6872: gpsd: disabled on microblaze
  4824. #8321: invalid opcode error with minidlna and ffmpeg
  4825. #8336: Default systemd configuration fails to boot correctly in 2015-08
  4826. #8446: rpi-userland failed to build with glibc 2.22
  4827. 2015.11-rc2, Released November 19th, 2015
  4828. Fixes all over the tree.
  4829. LD_LIBRARY_PATH is no longer used to ensure host binaries find
  4830. their libraries, fixing issues on recent Fedora.
  4831. Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
  4832. with ${TARGET}-cc after the move to use a toolchain wrapper
  4833. for the internal toolchain.
  4834. Appy-patches.sh now correctly applies all files listed in
  4835. series files.
  4836. Fixes for merged /usr handling when a custom skeleton is used.
  4837. Updated/fixed packages: axfsutils, boost, busybox, dhcp,
  4838. directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
  4839. gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
  4840. libecore, libgudev, libnss, libpng, libserial, libssh2,
  4841. libuecc, libxml2, linux-headers, liquid-dsp, ltris,
  4842. lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
  4843. mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
  4844. polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
  4845. ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
  4846. ushare, wine, wpa_supplicant, x265,
  4847. xdriver_xf86-video-siliconmotion, zxing-cpp
  4848. Issues resolved (http://bugs.uclibc.org):
  4849. #4790: Running udhcpc on a system with NFS root kills NFS
  4850. #8456: Building host-pkgconf on Fedora 23 fails due to..
  4851. 2015.11-rc1, Released November, 7th 2015
  4852. Fixes all over the tree and new features.
  4853. Architectures:
  4854. - Support for sparc64 added (internal toolchain with glibc
  4855. only).
  4856. - Support for mips32r6 and mips64r6 added.
  4857. - Support for Intel Quark X1000 CPU.
  4858. - Switch to EABIhf by default on ARM when a VFP is available.
  4859. Toolchains:
  4860. - glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
  4861. uclibc-ng 1.0.8, host-gdb enabled on AArch64.
  4862. - The toolchain wrapper which was used only for external
  4863. toolchains is now also used for Buildroot internal
  4864. toolchains. This allowed to fix the ccache support, prepare
  4865. the way for top-level parallel build support and remove gcc
  4866. patches used to detect header/library path poisoning.
  4867. - Remove Analog Devices Blackfin toolchain 2012R2.
  4868. - Fix several Xtensa build failures by switching from
  4869. text-section-literals to auto-litpools.
  4870. - Enable MIPS64 support in uClibc-ng, use uClibc on ARC
  4871. rather than a specific fork.
  4872. - Linaro toolchains for ARM, ARMeb and AArch64 updated to
  4873. 2015.08. 2014.09 version is kept since 2015.08 only runs on
  4874. x86_64 hosts.
  4875. Bootloaders:
  4876. - Fix ARM64 support in U-Boot.
  4877. Defconfigs:
  4878. - Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
  4879. Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
  4880. OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
  4881. Synopsys AArch64 VDK virtual platform.
  4882. - Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
  4883. cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
  4884. mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
  4885. raspberrypi2, riotboard, snps_axs10*, wandboard.
  4886. - Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
  4887. calao_snowball_defconfig, gnublin, integrator926_defconfig.
  4888. Infrastructure:
  4889. - Support for fetching from Mercurial tags fixed.
  4890. - Introduce LINUX_NEEDS_MODULES, which allows to enforce
  4891. module support to be enabled in the kernel when a package
  4892. builds out-of-tree kernel modules (through the
  4893. pkg-kernel-module infrastructure or on its own).
  4894. - Improve the perl package infrastructure to automatically add
  4895. the dependency to the perl interpreter to target perl module
  4896. packages.
  4897. - Remove trailing slashes in <pkg>_SITE and addition of a
  4898. check to ensure such trailing slashes are no longer added.
  4899. - Extend the legal infrastructure to allow packages to declare
  4900. their actual source code. This is useful for packages for
  4901. which <pkg>_SOURCE points to pre-built binaries (as is the
  4902. case for external toolchains). The new <pkg>_ACTUAL_SOURCE
  4903. variable allows to point to the source code in such cases.
  4904. - Improved ccache support, thanks to the usage of a toolchain
  4905. wrapper for internal toolchain. Now a single cache directory
  4906. can be shared between different Buildroot builds.
  4907. - Addition of a 'graph-size' make targets, which generates a
  4908. PDF graph of per-package size of the root filesystem.
  4909. - Addition of <pkg>_EXCLUDES so that packages can request
  4910. certain parts of the source code tarball to not be
  4911. extracted. This feature is currently used by gcc and
  4912. toolchain-external.
  4913. - Packages can now use the <pkg>_PKGDIR variable, provided by
  4914. the package infrastructure, to reference their package
  4915. directory, instead of explicitly using package/<pkg>/.
  4916. Filesystems:
  4917. - Add high lz4 compression to squashfs.
  4918. - Simplification of shell profile files in the default
  4919. skeleton.
  4920. - Remove ftp user and /home/ftp from the skeleton, and let ftp
  4921. server packages create these when needed.
  4922. - Add support for /bin, /sbin and /lib to be symlinks to their
  4923. corresponding directories in /usr. This is enforced for
  4924. systemd configurations, and optional for other
  4925. configurations.
  4926. - Support for AXFS filesystem image generation added.
  4927. - New options to add extra space/inodes to ext2/3/4 images.
  4928. Updated/fixed packages:
  4929. adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
  4930. barebox, bash, batctl, bind, binutils, bluez_utils, boost,
  4931. bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
  4932. collectd, connman, conntrack-tools, coreutils, cpio,
  4933. cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
  4934. dhrystone, dillo, directfb, directfb-examples, dmraid,
  4935. dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
  4936. dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
  4937. elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
  4938. exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
  4939. flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
  4940. genimage, gettext, git, glib-networking, glmark2, gnupg2,
  4941. gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
  4942. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  4943. gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
  4944. gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
  4945. hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
  4946. inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
  4947. iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
  4948. kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
  4949. kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
  4950. kodi-pvr-stalker, kodi-pvr-vbox,
  4951. kodi-visualisation-waveforhue, less, lftp, libbluray,
  4952. libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
  4953. libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4954. libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
  4955. liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
  4956. libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
  4957. libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
  4958. libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
  4959. libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
  4960. linux, linux-firmware, linux-fusion, linux-headers,
  4961. lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
  4962. lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
  4963. lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
  4964. modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
  4965. mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
  4966. nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
  4967. openssl, openswan, openvpn, pango, parted, perl, perl-cross,
  4968. perl-crypt-openssl-random, perl-http-message,
  4969. perl-io-socket-ssl, perl-module-build, perl-mojolicious,
  4970. perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
  4971. perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
  4972. poco, polarssl, portaudio, portmap, postgresql, proftpd,
  4973. protobuf, protobuf-c, pulseaudio, python-configshell-fb,
  4974. python-networkmanager, python-numpy, python-pyparsing,
  4975. python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
  4976. python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
  4977. rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
  4978. samba4, sane-backends, sconeserver, sdl, sed, setools,
  4979. shairport-sync, shared-mime-info, sland, smartmontools,
  4980. softether, spice-protocol, sqlcipher, sqlite, squid,
  4981. strongswan, stunnel, subversion, sudo, sunxi-tools,
  4982. supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
  4983. tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
  4984. util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
  4985. vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
  4986. wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
  4987. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4988. xdriver_xf86-video-sis, xlib_libXi, xorg-server,
  4989. xtables-addons, xterm, xz, zic, znc, zsh
  4990. New packages:
  4991. axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
  4992. gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
  4993. ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
  4994. kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
  4995. libg7221, libhttpparser, libilbc, libldns, libmng,
  4996. libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
  4997. libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
  4998. micropython, micropython-libs, python-pyratemp,
  4999. python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
  5000. sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
  5001. x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
  5002. Removed packages:
  5003. blackbox (was deprecated), divine (merged in directfb),
  5004. kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
  5005. sawman (merged in directfb), schifra (marked broken since a
  5006. long time), texinfo (host variant only, no longer used), zxing
  5007. (replaced by zxing-cpp),
  5008. Issues resolved (http://bugs.uclibc.org):
  5009. #4099: cut utility from GNU coreutils works incorrect
  5010. #7772: libxml-parser-perl build failure: missing dependency
  5011. ExtUtils/MakeMaker
  5012. #7931: Default configuration for Cubieboard v1 is outdated
  5013. #8116: 2015.05-rc2 raspberrypi2_defconfig network interface
  5014. not coming up
  5015. #8246: X.org DRI2 build issue
  5016. #8256: pointing to /usr/bin/objcopy old version (x86) instead
  5017. of the generated one
  5018. #8266: mplayer build issue
  5019. #8281: pyrexc fails to run when path is too long
  5020. #8316: lttng-tools and lttng-babeltrace executables contain
  5021. bad RPATH pointing to host machine
  5022. #8331: kexec wants shutdown in /sbin, but systemd installs it
  5023. in /usr/sbin
  5024. #8361: Buildroot 2015.08.1 skeleton inittab overwritten by
  5025. busybox's version
  5026. #8366: libevent does not build
  5027. #8386: build failed with external toolchain
  5028. #8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
  5029. #8396: CCACHE initialization
  5030. #8401: gpsd 3.15 NMEA support
  5031. #8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
  5032. #8421: util-linux installs systemd files in output/target/home/
  5033. 2015.08, Released August 31st, 2015
  5034. Minor fixes.
  5035. OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
  5036. reintroduced as opencv.
  5037. Updated/fixed packages: bootutils, canfestival, cppcms,
  5038. curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
  5039. ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
  5040. ltrace, midori, network-manager, openssh, perl-file-listing,
  5041. perl-http-cookies, perl-http-daemon, perl-http-negotiate,
  5042. perl-www-robotrules, python-can, qt5base, qt5multimedia,
  5043. setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
  5044. x264, xserver_xorg-server, zyre
  5045. 2015.08-rc2, Released August, 24th 2015
  5046. Fixes all over the tree.
  5047. Toolchain: fix gcc build on NIOS-II.
  5048. Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
  5049. hybrid ISO image generation.
  5050. Architectures: add arm1136j-s variant.
  5051. Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
  5052. beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
  5053. c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
  5054. dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
  5055. guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
  5056. libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
  5057. librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
  5058. linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
  5059. netatalk, nodejs, ola, opencv, oprofile, php, poco,
  5060. postgresql, powertop, protobuf, protobuf-c, qt5base,
  5061. qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
  5062. sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
  5063. wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
  5064. Issues resolved (http://bugs.uclibc.org):
  5065. #8276: package/dropbear: symlink resolution incorrect
  5066. #8286: Error with buildroot
  5067. #8301: ldconfig parameter in Makefile
  5068. 2015.08-rc1, Released August, 5th 2015
  5069. Fixes all over the tree and new features.
  5070. Architectures:
  5071. - Refactor how the availability of an MMU is described.
  5072. - Minimal support for Cortex-M3
  5073. - Minimal support for AArch64 big-endian
  5074. Toolchains:
  5075. - Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
  5076. - Use uClibc-ng as the default uClibc version, instead of the
  5077. official uClibc, which hasn't done any release since 3+
  5078. years
  5079. - eglibc is now marked as deprecated
  5080. - GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
  5081. support for gcc 5.x added.
  5082. - Binutils: use Binutils 2.24 as the default, 2.25.x series
  5083. bumped to 2.25.1, remove old Binutils 2.22.
  5084. - Update ARC toolchain components to 2015.06
  5085. - Add support for Fortran when building gcc
  5086. Bootloaders:
  5087. - Support for using the kconfig configuration system in
  5088. U-Boot
  5089. New Defconfigs:
  5090. - VIA VAB-820/AMOS-820
  5091. - OLimex OLinuxino A20 Lime
  5092. - Many new defconfigs for Atmel evaluation boards:
  5093. at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
  5094. Xplained Ultra, sama5d3 Xplained.
  5095. - ACME Systems Aria G25
  5096. - WarPboard
  5097. - Altera Cyclone 5 Development Board
  5098. - Xilinx zc706
  5099. - ARC AXS101 and AXS103 Software Development Platforms
  5100. - Significant updates to Raspberry Pi / Raspberry Pi 2
  5101. Infrastructure:
  5102. - Buildroot takes better care now of generating predictable
  5103. permissions in the target filesystem. However, existing
  5104. permissions on a custom skeleton or rootfs overlay will no
  5105. longer be preserved. Therefore, it is necessary to add a
  5106. permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
  5107. required permissions.
  5108. - Add support for kconfig fragments.
  5109. - No longer pass --{enable,disable}-debug to autotools
  5110. packages depending on the value of
  5111. BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
  5112. whether we build with -g or not.
  5113. - Support for extracting archives in .lzma in the generic
  5114. package infrastructure.
  5115. - Remove random-seed file from the default skeleton, since
  5116. seeding the entropy pool with a known seed makes more harm
  5117. than good.
  5118. - In the CVS download helper, add support to use a date as
  5119. the version.
  5120. - Add support for a per-package <pkg>_STRIP_COMPONENTS
  5121. variable, which packages can use to specify how many path
  5122. components should be stripped when extracting the tarball.
  5123. - Addition of a 'kernel-module' package infrastructure, which
  5124. simplifies the packaging of external kernel modules. Many
  5125. existing packages are converted to use it.
  5126. - Allow bootloaders to be implemented in $(BR2_EXTERNAL)
  5127. - Remove /etc/securetty from the default skeleton.
  5128. - Migration of sysV initscripts from the default skeleton to
  5129. a package called 'initscripts', installed only when Busbox
  5130. init or sysvinit are used.
  5131. - Migration of the skeleton logic to a proper 'skeleton'
  5132. package.
  5133. - Addition of a 'linux-tools' infrastructure in the 'linux'
  5134. package, to support building user-space tools bundled
  5135. within the Linux kernel sources, such as perf and cpupower.
  5136. - Usage of backticks instead of make $(shell ...) to execute
  5137. shell commands. This allows to delay the evaluation of such
  5138. commands when actually needed, and not when expanding the
  5139. variables. It is useful to make 'make printvars' less
  5140. noisy, and as a preparation to support top-level parallel
  5141. build.
  5142. - Libtool .la files are not mungled for all package types,
  5143. instead of being handled only for packages using the
  5144. autotools-package infrastructure.
  5145. - Add mechanism to allow packages to express a dependency on
  5146. gcc versions. This is needed for packages that use C++11 or
  5147. C11 support for example.
  5148. Important package updates:
  5149. - Complete rework of the matchbox packaging
  5150. - Lots of fixes in packages for compatibility with musl and
  5151. gcc 5.
  5152. - Hash files added to a large number of packages.
  5153. - Update a significant number of packages to use a new
  5154. hosting, after the announcement of Google Code and
  5155. Gitorious closing.
  5156. - Major packages needed for SELinux support have been merged,
  5157. but the support is not complete yet.
  5158. - Significant update of OpenCV to version 3.0, and addition
  5159. of lots of eatures.
  5160. - Significant update of all packages supporting the GPU and
  5161. VPU of i.MX ARM processors.
  5162. - Addition of systemd support in a significant number of
  5163. packages.
  5164. - Qt5 updated to 5.5.0
  5165. - Use modular X.org server by default instead of KDrive
  5166. Filesystems:
  5167. - Complete overhaul of the iso9660 support. Now allows to use
  5168. directly IS9660 as the root filesystem format and not only
  5169. an initrd, and supports Grub 2 and isolinux in addition to
  5170. Grub.
  5171. Updated packages: a10disp, agentpp, apache, at91bootstrap3,
  5172. audit, barebox, bc, bind, bmon, boost, btrfs-progs,
  5173. ca-certificates, can-utils, ccache, cloog, collectd, connman,
  5174. coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
  5175. dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
  5176. e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
  5177. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  5178. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
  5179. eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
  5180. file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
  5181. gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
  5182. gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
  5183. i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
  5184. kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
  5185. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  5186. kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
  5187. libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
  5188. libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
  5189. libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
  5190. libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
  5191. libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
  5192. libunistring, libupnp, libuv, libv4l, libva,
  5193. libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
  5194. linux-firmware, linux-headers, live555, ltrace, lua,
  5195. lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
  5196. lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
  5197. modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
  5198. mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
  5199. nodejs, ntp, ola, opencv, openldap, openssh, openssl,
  5200. openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
  5201. perl-cross, perl-encode-locale, perl-io-socket-ssl,
  5202. perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
  5203. perl-xml-libxml, php, pinentry, polarssl, postgresql,
  5204. pulseview, pure-ftpd, python, python-dpkt, python-lxml,
  5205. python-networkmanager, python-pyinotify, python-pypcap,
  5206. python-tornado, qextserialport, qt, qt5, rapidjson, redis,
  5207. rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
  5208. snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
  5209. sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
  5210. tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
  5211. usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
  5212. weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
  5213. xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
  5214. xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
  5215. xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
  5216. xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
  5217. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  5218. xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
  5219. xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
  5220. xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
  5221. xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
  5222. zic.
  5223. New packages: angularjs, atf, audit, c-icap, c-icap-modules,
  5224. cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
  5225. jquery-datetimepicker, kodi-audioencoder-modplug,
  5226. kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
  5227. kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
  5228. kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
  5229. kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
  5230. kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
  5231. kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
  5232. kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
  5233. kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
  5234. kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
  5235. kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
  5236. kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
  5237. kodi-screensaver-pingpong, kodi-screensaver-pyro,
  5238. kodi-screensaver-stars, kodi-visualisation-shadertoy,
  5239. kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
  5240. kodi-visualisation-waveform, kvmtool, kyua, libfm,
  5241. libfm-extra, libplatform, librtas, libsodium, libsquish,
  5242. libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
  5243. moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
  5244. python-pycli, python-pydal, python-pyyaml, python-web2py,
  5245. qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
  5246. rtl8821au, sepolgen, setools, skeleton, stm32flash,
  5247. webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
  5248. Deprecated packages: webkitgtk, libgail, eglibc support in
  5249. glibc package.
  5250. Issues resolved (http://bugs.uclibc.org):
  5251. #4291: Segmentation fault with all binaries that use threads
  5252. when compiled with gcc 4.6
  5253. #6944: building toolchain for sh4 fails
  5254. #7592: Buildroot GCC: -lto requires plugin support in ranlib
  5255. #7628: Python SSL does not get built for Raspberry Pi
  5256. #7682: Missing dependencies for NFS
  5257. #7742: dhcp lacks important features when BR2_ENABLE_DEBUG
  5258. #7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
  5259. #7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
  5260. #7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
  5261. #7971: python-flask, python-werkzeug. No module named zlib
  5262. #7981: Target file system skeleton permissions hazard
  5263. #8006: rpcdebug in nfs-utils built for the host
  5264. #8036: alsa-lib headers problem that prevents to compile alsa
  5265. dependent projects
  5266. #8081: systemd init system: /tmp is not mode 1777
  5267. #8121: php opcache extension doesn't get installed
  5268. #8151: x86-64 make fails with ncurses 5.9
  5269. #8156: pkg-kconfig infra broken for *-update-{config, defconfig}
  5270. #8161: default /bin/sh symlink to busybox is full path and not relative
  5271. #8171: glamor missing
  5272. #8191: Request update support for the cubieboard series
  5273. #8201: Important security upgrades for node.js
  5274. 2015.05, Released May 31st, 2015
  5275. Minor fixes.
  5276. Updated/fixed packages: conntrack-tools, directfb, fio, flite,
  5277. gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
  5278. libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
  5279. lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
  5280. python3, sconeserver, udpcast, upmpdcli
  5281. 2015.05-rc3, Released May 22nd, 2015
  5282. Several fixes, mainly related to static linking.
  5283. Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
  5284. autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
  5285. enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
  5286. google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
  5287. iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
  5288. libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
  5289. libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
  5290. linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
  5291. mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
  5292. php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
  5293. qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
  5294. tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
  5295. ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
  5296. wvstreams, xmlstarlet, zeromq, zmqpp
  5297. New packages: c-periphery
  5298. Issues resolved (http://bugs.uclibc.org):
  5299. #8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
  5300. #8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
  5301. #8126: exim lacks plaintext and cram-md5 auth
  5302. 2015.05-rc2, Released May 11th, 2015
  5303. Minor fixes.
  5304. Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
  5305. issues. Context functions enabled for uClibc snapshot /
  5306. uClibc-NG.
  5307. Architectures: Endian handling symbol for Xtensa, binutils
  5308. fixes.
  5309. Infrastructure: Fix for kernel module stripping when
  5310. localversion contains spaces.
  5311. Updated/fixed packages: at, autoconf-archive, binutils,
  5312. cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
  5313. gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
  5314. ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
  5315. xlib_libXfont
  5316. Issues resolved (http://bugs.uclibc.org):
  5317. #8086: Cannot select systemd as init with Linaro 2014.09...
  5318. 2015.05-rc1, Released May 4th, 2015
  5319. Fixes all over the tree and new features.
  5320. Architectures: Removed AVR32 support, deprecate SH64, added
  5321. support for steamroller, corei7-avx and core-avx2 x86
  5322. variants.
  5323. Toolchains: IPv6 and Largefile support now enforced for
  5324. uClibc. Corresponding Kconfig symbols removed.
  5325. External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
  5326. CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
  5327. external toolchains are now detected and blacklisted.
  5328. Internal toolchain support for Nios2 added, Blackfin
  5329. removed. Aarch64 and sh musl support. uClibc-ng support added.
  5330. Libatomic is now handled for internal and external
  5331. toolchains. Link time optimization (LTO) support.
  5332. New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
  5333. Auto, Raspberry Pi 2, RIoTboard,
  5334. Infrastructure: Hashes for a large number of packages have
  5335. been added. Missing hashes now stop the build unless
  5336. explicitly disabled.
  5337. Spaces and colons (:) are now supported in package
  5338. versions. Dependencies can now be listed for the patch step
  5339. (<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
  5340. extensions infrastructure has been added.
  5341. Makedevs now has a recursive (r) option.
  5342. The variable containing the list of packages to build has been
  5343. renamed from TARGETS to PACKAGES.
  5344. Make external-deps / legal-info / source / source-check have
  5345. been reimplemented using the package infrastructure, so their
  5346. output/behaviour may differ from earlier (some packages were
  5347. not included in the past).
  5348. The old insecure DES password encoding is no longer supported.
  5349. U-Boot patch option now support direct references to patch
  5350. files and URLs in addition to directories of patches. The
  5351. i.MX28 SD format (u-boot.sd) is now supported.
  5352. Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
  5353. alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
  5354. bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
  5355. btrfs-progs, busybox, ca-certificates, cairo, can-utils,
  5356. canfestival, ccache, chrony, civetweb, clamav, cmake,
  5357. collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
  5358. cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
  5359. dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
  5360. dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
  5361. dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
  5362. libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
  5363. exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
  5364. fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
  5365. gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
  5366. glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
  5367. gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
  5368. gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
  5369. hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
  5370. ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
  5371. iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
  5372. kismet, kmod, kodi-audioencoder-flac,
  5373. kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
  5374. libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
  5375. libdrm, libdvbsi, libebml, libecore, libedit, liberation,
  5376. libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
  5377. libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
  5378. libinput, libiscsi, libksba, liblinear, libmatroska,
  5379. libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
  5380. libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
  5381. libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
  5382. libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
  5383. libusb, libuv, libva-intel-driver, libva, libvncserver,
  5384. libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
  5385. lighttpd, linknx, linphone, linux-firmware, linux-headers,
  5386. linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
  5387. lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
  5388. lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
  5389. luarocks, lvm2, lxc, make,
  5390. matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
  5391. matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
  5392. minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
  5393. monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
  5394. mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
  5395. neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
  5396. nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
  5397. opencv, openldap, openntpd, openocd, openssh, openssl,
  5398. openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
  5399. pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
  5400. perl-io-socket-ssl, perl-json-tiny, perl-module-build,
  5401. perl-mojolicious, perl-net-ssleay, perl-path-tiny,
  5402. perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
  5403. pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
  5404. pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
  5405. python-{cheetah,coherence,django,markdown,netifaces,pam,six},
  5406. python-tornado, python-twisted, python-zope-interface, python,
  5407. python3, qemu, qt, qt5, qt5base, qt5multimedia,
  5408. qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
  5409. rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
  5410. rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
  5411. sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
  5412. smcroute, snmppp, socat, socketcand, sofia-sip, sox,
  5413. spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
  5414. strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
  5415. systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
  5416. tiff, tinyalsa, tn5250, transmission, trinity, tslib,
  5417. tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
  5418. usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
  5419. webp, weston, wget, which, whois, wireless-regdb,
  5420. wireless_tools, wireshark, wpa_supplicant, wvstreams,
  5421. xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
  5422. xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
  5423. xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
  5424. xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
  5425. xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
  5426. xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
  5427. xapp_xmore, xcb-util-image, xcb-util-keysyms,
  5428. xdata_xcursor-themes,
  5429. xdriver_xf86-input-{evdev,keyboard,synaptics,void},
  5430. xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
  5431. xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
  5432. xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
  5433. xfont_font-util, xkeyboard-config,
  5434. xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
  5435. xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
  5436. xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
  5437. xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
  5438. New packages: apache, autoconf-archive, batctl,
  5439. bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
  5440. dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
  5441. imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
  5442. leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
  5443. libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
  5444. mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
  5445. openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
  5446. perl-db-file, perl-digest-{hmac,sha1},
  5447. perl-encode-{detect,locale}, perl-file-{listing,util},
  5448. perl-html-{parser,tagset}, perl-http-cookies,
  5449. perl-http-{daemon,date,message,negotiate}, perl-io-html,
  5450. perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
  5451. perl-mailtools, perl-mime-base64, perl-net-{dns,http},
  5452. perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
  5453. perl-www-robotrules, powertop, pulseview,
  5454. python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
  5455. qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
  5456. unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
  5457. xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
  5458. xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
  5459. xproto_xproxymanagementprotocol
  5460. Removed packages: gtk2-theme-hicolor
  5461. Deprecated packages: samba
  5462. Issues resolved (http://bugs.uclibc.org):
  5463. #7478: Multiple chosen python modules are not built due to...
  5464. #7508: Use of BR2_EXTERNAL and dependencies to existing packages
  5465. #7676: Package procps-ng installs binaries to nonsensical folder
  5466. #7724: Startx is not installed in the target
  5467. #7760: botan: wrong prefix in botan-1.10.pc
  5468. #7826: Building of cdparanoia
  5469. #7844: Lua with hard-float on MIPS by buildroot doesn't work
  5470. #7874: X.org configure error
  5471. #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
  5472. #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
  5473. #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
  5474. #7976: mkuser script fails with: user already exists with...
  5475. #8011: When building only busybox and strace, strace fails...
  5476. #8016: collectd fails to build, network.c:171:19: error:...
  5477. #8041: error on building libcurl7.42.0
  5478. 2015.02, Released March 1st, 2015
  5479. Minor fixes.
  5480. Updated/fixed packages: civetweb, ding-libs,
  5481. directfb-examples, glibc, gnupg, gnupg2, gpm,
  5482. gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
  5483. libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
  5484. libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
  5485. rpi-firmware, shared-mime-info, vlc, vorbis-tools,
  5486. xcb-util-keysyms
  5487. Removed packages: libgc
  5488. 2015.02-rc3, Released February 24th, 2015
  5489. Minor fixes.
  5490. Cmake and rebar (erlang) infrastructure fixes.
  5491. Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
  5492. evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
  5493. make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
  5494. qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
  5495. 2015.02-rc2, Released February 15th, 2015
  5496. Minor fixes.
  5497. raspberrypi: fix kernel sha1 for DT variant.
  5498. Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
  5499. libsepol, libssh2, mplayer, ntp, openvmtools, python3,
  5500. qt5base, qt5connectivity, xserver_xorg-server
  5501. 2015.02-rc1, Released February 8th, 2015
  5502. Fixes all over the tree and new features.
  5503. Static/shared library handling reworked. This is now a
  5504. tristate (shared only / shared and static / static
  5505. only). Default is now shared only to speed up the
  5506. build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
  5507. The toolchain (internal and external) will now warn when an
  5508. unsafe library or header path is used (such as /usr/include or
  5509. /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
  5510. under build options this instead becomes an error.
  5511. A installation path issue with the internal musl toolchain
  5512. support has been fixed so it is now possible to reuse it as an
  5513. external toolchain.
  5514. Architectures: Freescale E5500 and E6500 PowerPC support
  5515. added, deprecated MIPS 1/2/3/4 support removed.
  5516. New defconfigs: Freescale p2020ds, MIPS creator CI20,
  5517. Raspberrypi with DT, UDOO Quad.
  5518. 'make <foo>_defconfig' now saves the path to the defconfig in
  5519. the .config, so a 'make savedefconfig' automatically updates
  5520. it.
  5521. Infrastructure for packages using the Erland rebar tool has
  5522. been added.
  5523. Hashes for a large number of packages have been added. Hashes
  5524. are now checked for both target and host packages.
  5525. The system menu now has an option to automatically configure a
  5526. network interface through DHCP at bootup.
  5527. The default filesystem skeleton now uses a separate tmpfs for
  5528. /run instead of a symlink to /tmp/ for security reasons / to
  5529. protect against conflicts with user generated temporary files.
  5530. BR2_EXTERNAL is now exported to post-build and post-image
  5531. scripts.
  5532. New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
  5533. ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
  5534. erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
  5535. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  5536. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
  5537. erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
  5538. gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
  5539. janus-gateway, kodi, kodi-audioencoder-flac,
  5540. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  5541. kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
  5542. libselinux, libsemanage, libserialport, libsigro,
  5543. libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
  5544. libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
  5545. mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
  5546. openldap, python-alsaaudio, python-certifi, python-cheetah,
  5547. python-coherence, python-django, python-docopt, python-enum,
  5548. python-enum34, python-flask, python-gobject, python-httplib2,
  5549. python-ipaddr, python-itsdangerous, python-jinja,
  5550. python-markdown, python-markupsafe, python-networkmanager,
  5551. python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
  5552. python-pysendfile, python-pyxb, python-requests, python-six,
  5553. python-twisted, python-webpy, python-werkzeug,
  5554. python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
  5555. start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
  5556. xtables-addons
  5557. Removed packages (target): bison, distcc, gob2, m4
  5558. Issues resolved (http://bugs.uclibc.org):
  5559. #7556: make interactive CLI optional for nftables
  5560. #7730: Error while connecting Qt Cretaor to device
  5561. #7766: logrotate default gzip path is usually wrong
  5562. #7790: Invalid ext4 image generated by Buildroot
  5563. 2014.11, Released December 1st, 2014
  5564. Minor fixes.
  5565. Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
  5566. current working directory isn't searched.
  5567. Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
  5568. parted, shairport-sync, util-linux, xapp_bdftopcf,
  5569. xserver_xorg-server
  5570. 2014.11-rc3, Released November 28th, 2014
  5571. Fixes all over the tree.
  5572. System: File permissions of /etc/random-seed made more
  5573. restrictive.
  5574. Toolchain: Various fixes related to locale handling, a fix for
  5575. building the toolchain wrapper on MIPS.
  5576. Updated/fixed packages: bind, binutils. botan, btrfsprogs,
  5577. clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
  5578. gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
  5579. libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
  5580. linux-headers, mpdecimal, mpg123, network-manager, nfstables,
  5581. nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
  5582. sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
  5583. xl2tp, xserver_xorg-server
  5584. Issues resolved (http://bugs.uclibc.org):
  5585. #7670: Fails to build mpc-1.0.2 on latest Cygwin
  5586. 2014.11-rc2, Released November 21st, 2014
  5587. Fixes all over the tree.
  5588. Inittab tweaks for shutdown handling (busybox and sysvinit).
  5589. Updated/fixed packages: aircrack-ng, botan, canfestival,
  5590. clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
  5591. erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
  5592. libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
  5593. mysql, ndisc6, nodejs, omniorb, perl-cross, php,
  5594. python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
  5595. rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
  5596. tstools, tzdata, wireshark, x264
  5597. Issues resolved (http://bugs.uclibc.org):
  5598. #7646: strftime on datetime not works on python3
  5599. 2014.11-rc1, Released November 12th, 2014
  5600. Fixes all over the tree and new features.
  5601. Toolchains: Use -mcpu / -march instead of -mtune. Support
  5602. additional ARC and sparc variants. Updated Code sourcery
  5603. and Linaro external toolchains.
  5604. Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
  5605. powerpc64 pseries added and a number of updates to the
  5606. existing configurations.
  5607. Infrastructure: Buildroot is now less noisy when built with
  5608. the silent option (make -s).
  5609. A number of package infrastructure variables have been renamed
  5610. from *_OPT to *_OPTS for constency. Buildroot will complain if
  5611. the old names are used to assist in updating out of tree
  5612. packages.
  5613. Fixes for host systems where bash isn't located in /bin, and
  5614. older systems not supporting mktemp --tmpdir.
  5615. Various cleanups of users/groups in the default skeleton.
  5616. There is now an option to choose what shell /bin/sh points to.
  5617. Documentation: Various updates to the user manual. The
  5618. asciidoc documentation handling has now been extended so it
  5619. can be used by (BR2_EXTERNAL) packages.
  5620. Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
  5621. alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
  5622. argus, arptables, at, atftp, atk, attr, audiofile, aumix,
  5623. automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
  5624. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5625. bluez_utils, bmon, boost, bootutils, bridge-utils,
  5626. btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
  5627. ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
  5628. cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
  5629. collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
  5630. cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
  5631. czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
  5632. dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
  5633. dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
  5634. dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
  5635. e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
  5636. enlightenment, enscript, erlang, espeak, ethtool, eudev,
  5637. evemu, evtest, exfat, exfat-utils, exim, expat, expect,
  5638. explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
  5639. fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
  5640. flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
  5641. fontconfig, foomatic-filters, freerdp, freescale-imx,
  5642. freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
  5643. genimage, genpart, genromfs, geoip, gettext, giblib, git,
  5644. glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
  5645. gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
  5646. gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
  5647. gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
  5648. gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
  5649. gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
  5650. gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
  5651. heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
  5652. hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
  5653. imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
  5654. intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
  5655. iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
  5656. jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
  5657. jquery-ui-themes, jquery-validation, jsmin, json-c,
  5658. json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
  5659. kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
  5660. lesstif, lftp, libaio, libao, libarchive, libargtable2,
  5661. libass, libassuan, libatasmart, libbluray, libbsd, libcap,
  5662. libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
  5663. libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
  5664. libdvdnav, libecore, libedbus, libedit, libedje, libeet,
  5665. libelementary, libelf, libenca, libethumb, libevas,
  5666. libevas-generic-loaders, libevent, libexif, libeXosip2,
  5667. libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
  5668. libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
  5669. libinput, libiscsi, libjson, libksba, liblockfile,
  5670. liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
  5671. libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
  5672. libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
  5673. libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
  5674. libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
  5675. libraw, libreplaygain, libroxml, librsvg, librtlsdr,
  5676. libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
  5677. libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
  5678. libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
  5679. libungif, liburcu, libusb, libuv, libv4l, libva,
  5680. libva-intel-driver, libvncserver, libvorbis, libvpx,
  5681. libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
  5682. libxslt, lighttpd, linenoise, linknx, links, linphone,
  5683. linux-firmware, linux-fusion, linux-headers, linux-pam,
  5684. linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
  5685. localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
  5686. lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
  5687. lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
  5688. lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
  5689. lua-ev, luajit, luajson, lualogging, lua-messagepack,
  5690. lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
  5691. luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
  5692. lzma, m4, madplay, make, makedevs, Makefile.in,
  5693. matchbox-common, matchbox-desktop, matchbox-fakekey,
  5694. matchbox-keyboard, matchbox-lib, matchbox-panel,
  5695. matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
  5696. media-ctl, mediastreamer, memcached, memstat, memtester,
  5697. mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
  5698. modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
  5699. mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
  5700. musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
  5701. ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
  5702. netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
  5703. ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
  5704. nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
  5705. on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
  5706. openocd, openpowerlink, openssh, openssl, openswan,
  5707. opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
  5708. opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
  5709. pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
  5710. perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
  5711. perl-module-build, perl-mojolicious, perl-net-ssleay,
  5712. perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
  5713. php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
  5714. php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
  5715. pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
  5716. pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
  5717. pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
  5718. popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
  5719. pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
  5720. psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
  5721. python-dialog, python-ipy, python-keyring, python-mad,
  5722. python-netifaces, python-numpy, python-protobuf, python-pyasn,
  5723. python-pyparsing, python-pyro, python-pyusb, python-serial,
  5724. python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
  5725. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  5726. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  5727. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  5728. qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
  5729. qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
  5730. quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
  5731. rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
  5732. rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
  5733. ruby, samba, sam-ba, samba4, sane-backends, schifra,
  5734. sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
  5735. sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
  5736. setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
  5737. slang, slirp, smcroute, smstools3, snmppp,
  5738. snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
  5739. speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
  5740. squid, sredird, startup-notification, strace, stress,
  5741. strongswan, stunnel, subversion, sudo, sunxi-boards,
  5742. sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
  5743. systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
  5744. tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
  5745. tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
  5746. tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
  5747. upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
  5748. usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
  5749. vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
  5750. webrtc-audio-processing, weston, wget, whois, wireless-regdb,
  5751. wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
  5752. xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
  5753. xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
  5754. xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
  5755. xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
  5756. xdriver_xf86-video-vmware, xenomai, xerces,
  5757. xfont_font-adobe-{100,75}dpi,
  5758. xfont_font-adobe-utopia-{100dpi,75dpi,type1},
  5759. xfont_font-alias, xfont_font-arabic-misc,
  5760. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  5761. xfont_font-bh-lucidatypewriter-100dpi,
  5762. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  5763. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  5764. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  5765. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  5766. xfont_font-daewoo-misc, xfont_font-dec-misc,
  5767. xfont_font-ibm-type1, xfont_font-isas-misc,
  5768. xfont_font-jis-misc, xfont_font-micro-misc,
  5769. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  5770. xfont_font-misc-meltho, xfont_font-misc-misc,
  5771. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  5772. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  5773. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  5774. xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
  5775. xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
  5776. xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
  5777. xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
  5778. xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
  5779. xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
  5780. xproto_xcmiscproto, xproto_xextproto, xscreensaver,
  5781. xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
  5782. znc, zsh, zxing
  5783. New packages: adwaita-icon-theme, am335x-pru-package,
  5784. bcache-tools, biosdevname, botan, canfestival, clamav,
  5785. cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
  5786. gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
  5787. libdvbcsa, libgtk3, libphidget, libshout, libunistring,
  5788. libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
  5789. netcat-openbsd, nginx, odhcploc, openvmtools,
  5790. phidgetwebservice, pps-tools, pure-ftpd,
  5791. python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
  5792. qt5location, shairport-sync, spidev_test, targetcli-fb,
  5793. tinyalsa, trinity, x264, yaml-cpp, ympd
  5794. Removed packages: libelf
  5795. Issues resolved (http://bugs.uclibc.org):
  5796. #261: New package: wxWidgets
  5797. #325: New package: ratpoison
  5798. #405: New package: OpenVZ tools
  5799. #1309: New package: rdiff-backup
  5800. #3427: New package: nginx
  5801. #3655: New package: libav
  5802. #3991: New Package: open-vm-tools (Vmware Tools)
  5803. #6878: dmraid: disabled on ARC
  5804. #6950: Full unicode support in ncurses
  5805. #7010: jamvm builds and runs fine under mips (be)
  5806. #7088: elfutils on Blackfin doesn't build
  5807. #7142: ecryptfs needs getent to run
  5808. #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
  5809. #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
  5810. #7352: [2014.08-rc3] diffutils-3.3 failed on building
  5811. #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
  5812. #7364: monit builds a static application, even though BR2_PREFER_...
  5813. #7370: ngrep - requires --with-pcap-includes fully defined to find...
  5814. #7442: rootfs remount does not work as expected with sysvinit
  5815. #7448: Having export MACHINE="something" breaks glibc build on IMX6...
  5816. #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
  5817. #7574: quota-4.01 fails to build statically
  5818. 2014.08, Released September 1st, 2014
  5819. Minor manual fixes/additions.
  5820. Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
  5821. lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
  5822. libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
  5823. perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
  5824. php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
  5825. uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
  5826. xscreensaver, yajl
  5827. Issues resolved (http://bugs.uclibc.org):
  5828. #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
  5829. 2014.08-rc3, Released August 26th, 2014
  5830. Minor fixes.
  5831. User manual update / restructuring.
  5832. Updated/fixed packages: cairo, ecryptfs-utils, gettext,
  5833. gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
  5834. lbreakout2, libevas-generic-loaders, libftdi, libinput,
  5835. libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
  5836. thrift, tvheadend, usb_modeswitch, xmlstarlet,
  5837. Issues resolved (http://bugs.uclibc.org):
  5838. #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
  5839. #7322: libgomp dependency issue with imagemagick
  5840. #7328: Git dl of versions in x/y broken
  5841. 2014.08-rc2, Released August 18th, 2014
  5842. Fixes all over the tree.
  5843. User manual restructured / reworked.
  5844. Toolchain: Fix for C++ exceptions / pthread_exit() on
  5845. uClibc/glibc, C++-11 features with uClibc.
  5846. Updated/fixed packages: bandwidthd, bluez5_utils, empty,
  5847. espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
  5848. infozip, libcuefile, libeml, libnftl, localedef, ltrace,
  5849. matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
  5850. oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
  5851. qt, subversion, synergy, systemd, tar, tftpd, webkit,
  5852. xapp_rstart, xbmc, xbmc-pvr-addons
  5853. Issues resolved (http://bugs.uclibc.org):
  5854. #7124: Use BR toolchain externally results a non-bootable...
  5855. #7208: Glibc C++ aplications crash if they use exceptions
  5856. #7250: Cannot build with -std=c++11
  5857. #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
  5858. #7286: systemd 215 doesn't build
  5859. 2014.08-rc1, Released August 8th, 2014
  5860. Fixes all over the tree and new features.
  5861. Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
  5862. Improved altivec / SPE /atomic instructions
  5863. handling. Additional PowerPC CPU variants added.
  5864. Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
  5865. qemu-system-xtensa, qemu-aarch64-virt added. A number of
  5866. tweaks to existing ones. lpc32xx defconfigs removed.
  5867. Toolchain: Microblaze support for internal musl toolchain.
  5868. Default to GCC 4.8 for internal toolchain, remove deprecated
  5869. 4.3 and 4.6 versions.
  5870. External CodeSourcery / Linaro toolchain updates, option to
  5871. copy gconv libraries for external toolchains.
  5872. Infrastructure: graph-depends: misc fixes, transitive
  5873. dependencies are not drawn by default. Download handling is
  5874. now done using helper scripts. Integrity of downloads can now
  5875. be verified using sha* hashes. Subversion download now uses
  5876. peg revisions for robustness.
  5877. Legal-info: License info of local or overridden packages are
  5878. saved as well. Toolchain packages are also taken into account.
  5879. autotools: Static linking with libtool / v1.5 improvements.
  5880. Gettextize support, similar to autoreconf.
  5881. kconfig package infrastructure added.
  5882. Misc: Version selection for busybox dropped.
  5883. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  5884. alsamixergui, argus, armadillo, at, atftp, atk, avahi,
  5885. avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
  5886. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5887. bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
  5888. busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
  5889. ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
  5890. collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
  5891. cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
  5892. dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
  5893. dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
  5894. distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
  5895. dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
  5896. e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
  5897. enscript, espeak, ethtool, eudev, evemu, exim, expedite,
  5898. explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
  5899. fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
  5900. flex, flot, fltk, fontconfig, freerdp, freescale-imx,
  5901. freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
  5902. giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
  5903. gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
  5904. gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
  5905. gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
  5906. gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
  5907. imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
  5908. ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
  5909. jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
  5910. kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
  5911. lftp, libaio, libarchive, libargtable2, libart, libatasmart,
  5912. libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
  5913. libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
  5914. libeXosip2, libedit, liberation, libesmtp, libev, libevas,
  5915. libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
  5916. libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
  5917. libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
  5918. libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
  5919. libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
  5920. libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
  5921. librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
  5922. libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
  5923. libxml2, libyaml, links, linux-firmware, linux-fusion,
  5924. linux-headers, linux-pam, lite, live555, lm-sensors,
  5925. lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
  5926. ltris, lua-messagepack, luainterpreter, luajit, luaposix,
  5927. luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
  5928. mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
  5929. modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
  5930. mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
  5931. netatalk, netplug, network-manager, nftables, ngircd, nodejs,
  5932. nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
  5933. openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
  5934. opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
  5935. pax-utils, pcmanfm, perf, perl, perl-module-build, php,
  5936. pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
  5937. prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
  5938. python,
  5939. python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
  5940. python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
  5941. qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
  5942. qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
  5943. read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
  5944. rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
  5945. samba, samba4, sane-backends, sawman, sconeserver, setserial,
  5946. sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
  5947. socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
  5948. startup-notification, statserial, strongswan, stunnel,
  5949. sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
  5950. systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
  5951. ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
  5952. tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
  5953. udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
  5954. vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
  5955. wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
  5956. xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
  5957. xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
  5958. xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
  5959. x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
  5960. xz
  5961. New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
  5962. google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
  5963. libinput, libksba, libmemcached, libmpdclient, librtlsdr,
  5964. libuv, libva, libva-intel-driver, linux-zigbee, memcached,
  5965. mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
  5966. perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
  5967. perl-json-tiny, perl-mojolicious, perl-net-ssleay,
  5968. perl-path-tiny, perl-try-tiny, perl-xml-libxml,
  5969. perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
  5970. php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
  5971. procps-ng, pwgen, python-cffi, python-daemon, python-flup,
  5972. python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
  5973. qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
  5974. twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
  5975. Removed packages: procps
  5976. Issues resolved (http://bugs.uclibc.org):
  5977. #5750: Doing a Buildroot build from /usr doesn't work
  5978. #5900: config flags to the Xenomai build system
  5979. #6230: Cannot compile gcc without threads (uClibc-based)
  5980. #6626: procps Unknown HZ value! (XX) Assume 100
  5981. #7118: Package "thrift" requires atomic operations
  5982. #7154: Local uClibc config file gets overwritten using ...
  5983. #7160: host-xz not built
  5984. #7166: hostapd: segfault when using RT5370
  5985. #7172: Name collision of rpath token expansion and internal..
  5986. #7178: NTPd package cannot sync time without a proper ntp.conf
  5987. #7184: supervisord depends on libxml2 implicitly
  5988. #7196: Unable to build on UBUNTU13.10
  5989. #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
  5990. 2014.05, Released May 31st, 2014
  5991. Minor fixes.
  5992. Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
  5993. for the spl file.
  5994. Updated/fixed packages: exim, glibc, gnutls, libfribidi,
  5995. qt5base, qt5webkit, sysklogd, thrift, u-boot
  5996. 2014.05-rc3, Released May 28th, 2014
  5997. Minor fixes.
  5998. Updated/fixed packages: acl, attr, connman, dosfstools,
  5999. dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
  6000. lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
  6001. mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
  6002. samba4, slang, xbmc
  6003. Issues resolved (http://bugs.uclibc.org):
  6004. #7100: license info for package 'acl' missing
  6005. #7106: license info for package 'attr' missing
  6006. #7112: license info for package 'hwdata'
  6007. 2014.05-rc2, Released May 21st, 2014
  6008. Fixes all over the tree.
  6009. Stripping using sstrip has been deprecated.
  6010. BR2_EXTERNAL can now also be used to implement custom
  6011. filesystem types.
  6012. The newly added BR2_GRAPH_DEPTH variable to limit the depth of
  6013. the generated dependency graph has been renamed to
  6014. BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
  6015. the future.
  6016. The virtual package infrastructure will now error out early
  6017. if multiple packages providing the same virtual package has
  6018. been enabled (E.G. opengl). This change requires that the
  6019. packages explicitly declare what virtual package(s) they
  6020. provide.
  6021. Updated/fixed packages: acpid, armadillo, avahi, bellagio,
  6022. btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
  6023. elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
  6024. gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
  6025. imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
  6026. libdvdread, libnss, libunwind, linux-headers, lsof, lua,
  6027. luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
  6028. netsnmp, nodejs, openpowerlink, openvpn, pciutils,
  6029. php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
  6030. rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
  6031. ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
  6032. xlib_libXpm, xserver_xorg-server, zyre
  6033. Issues resolved (http://bugs.uclibc.org):
  6034. #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
  6035. #7016: Git issues in resulting buildroot tar
  6036. #7094: pciutils doesn't build on Blackfin
  6037. 2014.05-rc1, Released May 13th, 2014
  6038. Fixes all over the tree and new features.
  6039. Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
  6040. been removed. Building o32 ELF files for MIPS64 is an exotic
  6041. configuration that nobody should be using. If o32 is required,
  6042. then is better if it's built for MIPS 32-bit cores so only
  6043. 32-bit instructions will be used leading to a more efficient
  6044. o32 usage.
  6045. Support for the ARM A12 variant and Intel corei7.
  6046. Configs: Minnowboard and Altera SoCkit added, QEMU updates.
  6047. Bootloaders: Grub2 and gummiboot support, syslinux support
  6048. extended.
  6049. Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
  6050. library for internal and external toolchains. 4.8-R3 support
  6051. for ARC, Internal toolchain support for Aarch64 and
  6052. Microblaze. Environment variable to control debug output of
  6053. toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
  6054. other variables. Toolchain tuple vendor name can now be
  6055. customized. Updated external Linaro ARM/Aarch64
  6056. toolchains. Added external Linaro ARMEB toolchain.
  6057. A GDB gdbinit file is now generated for external toolchains to
  6058. automatically set the correct sysroot.
  6059. Kconfig handling for minimum kernel headers version required
  6060. for packages. Now packages needing specific kernel header
  6061. features can specify these requirements in Kconfig.
  6062. Infrastructure: Support for (but disabled as it leads to
  6063. unreproducible builds) toplevel parallel builds. See the
  6064. comment at the top of Makefile for details about how to enable
  6065. it and what the problems are if you want to test it.
  6066. Python package infrastructure extended to support Python 3.x
  6067. Perl and virtual package infrastructure support added.
  6068. PRE_*_HOOKS support for all build steps.
  6069. Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
  6070. barebox, bash, beecrypt, bellagio, binutils, boost,
  6071. boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
  6072. ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
  6073. collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
  6074. cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
  6075. dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
  6076. dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
  6077. evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
  6078. flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
  6079. gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
  6080. gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
  6081. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  6082. gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
  6083. gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
  6084. hostapd, htop, httping, ifplugd, iftop, igmpproxy,
  6085. imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
  6086. ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
  6087. jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
  6088. json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
  6089. lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
  6090. libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
  6091. libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
  6092. libevas, libevdev, libfribidi, libfslcodec, libfslparser,
  6093. libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
  6094. libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
  6095. libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
  6096. libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
  6097. libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
  6098. libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
  6099. lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
  6100. lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
  6101. lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
  6102. luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
  6103. luainterpreter, luajit, lua-msgpack-native, luaposix,
  6104. luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
  6105. memstat, mesa3d, metacity, minidlna, mmc-utils,
  6106. mobile-broadband-provider-info, modem-manager, mongrel2,
  6107. monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
  6108. ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
  6109. newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
  6110. olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
  6111. openswan, openvpn, orbit, orc, p11-kit, pango, parted,
  6112. pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
  6113. picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
  6114. pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
  6115. pulseaudio, python, python3, python-bottle, python-m2crypto,
  6116. python-netifaces, python-pyasn, python-pycrypto,
  6117. python-pygame, python-pysnmp, python-pysnmp-apps,
  6118. python-pysnmp-mibs, python-serial, python-setuptools,
  6119. qextserialport, qt, qt5, qt5base, qt5connectivity,
  6120. qt5declarative, qt5graphicaleffects, qt5imageformats,
  6121. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  6122. qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
  6123. qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
  6124. rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
  6125. rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
  6126. sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
  6127. socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
  6128. stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
  6129. syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
  6130. tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
  6131. uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
  6132. usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
  6133. webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
  6134. w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
  6135. xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
  6136. xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
  6137. xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
  6138. xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
  6139. xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
  6140. xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
  6141. xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
  6142. xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
  6143. xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
  6144. xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
  6145. xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
  6146. xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
  6147. xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
  6148. xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
  6149. xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
  6150. xdriver_xf86-video-ark, xdriver_xf86-video-ast,
  6151. xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
  6152. xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
  6153. xdriver_xf86-video-geode, xdriver_xf86-video-glide,
  6154. xdriver_xf86-video-glint, xdriver_xf86-video-i128,
  6155. xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
  6156. xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
  6157. xdriver_xf86-video-newport, xdriver_xf86-video-nv,
  6158. xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
  6159. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  6160. xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
  6161. xdriver_xf86-video-tga, xdriver_xf86-video-trident,
  6162. xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
  6163. xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
  6164. xlib_xtrans, xproto_xproto, xserver_xorg-server,
  6165. xutil_util-macros, zeromq, zic, zmqpp, zyre
  6166. New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
  6167. dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
  6168. fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
  6169. iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
  6170. libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
  6171. libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
  6172. lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
  6173. lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
  6174. musl, nftables, opentyrian, opentyrian-data,
  6175. perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
  6176. php-zmq, postgresql, python-libconfig, python-pypcap,
  6177. python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
  6178. upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
  6179. yaffs2utils, zlog, znc
  6180. Removed packages: crosstool-ng, python-distutilscross, vala
  6181. Issues resolved (http://bugs.uclibc.org):
  6182. #6842: Checking external toolchain for eabihf
  6183. #6956: Packaging libsoxr
  6184. #6986: Make legal-info fails on uboot versions before 2014.01
  6185. #6992: Incorrect installation rights on external kernel module..
  6186. 2014.02, Released February 27th, 2014
  6187. Minor fixes.
  6188. Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
  6189. gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
  6190. libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
  6191. pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
  6192. Issues resolved (http://bugs.uclibc.org):
  6193. #6938: mkuser script generates wrong password for new user in..
  6194. 2014.02-rc3, Released February 25th, 2014
  6195. Minor fixes.
  6196. Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
  6197. cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
  6198. gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
  6199. libsecret, libsepol, libsigsegv, libtool, libv4l,
  6200. linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
  6201. pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
  6202. tvheadend, util-linux, webkit, xscreensaver
  6203. Issues resolved (http://bugs.uclibc.org):
  6204. #4706: Removing .stamp_target_installed does not trigger...
  6205. #5030: busybox built fails if we use an override src dir...
  6206. #5420: Dbus and /var/run management
  6207. #5768: Not able to build ALSA-Lib for static build
  6208. #5774: Not able to build ALSA-Utils for static build
  6209. #6542: external python modules fail to compile to pyc if...
  6210. #6764: Support for kernel signed modules
  6211. #6794: Busybox compiled from buildroot hangs on pass from...
  6212. 2014.02-rc2, Released February 20th, 2014
  6213. Fixes all over the tree. Static linking / nommu fixes and
  6214. annotations for several packages.
  6215. Updated/fixed packages: boost, busybox, collectd, coreutils,
  6216. dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
  6217. jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
  6218. opencv, python, python3, qtuio, systemd, thrift, transmission,
  6219. uclibc, vlc, webkit
  6220. Issues resolved (http://bugs.uclibc.org):
  6221. #5450: AT91SAM9260 Bootstrap compilation problem
  6222. #5582: libiconv 1.14 failed to build
  6223. #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
  6224. #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
  6225. #6218: binutils-2.23.2/gas fails with undefined reference to..
  6226. #6236: binutils-2.23.2/bfd fails with undefined reference to..
  6227. #6470: If the build directory is a child of /usr, the build..
  6228. #6776: systemd error: static declaration of 'execvpe' follows..
  6229. #6818: toolchainfile.cmake has absolut path references
  6230. 2014.02-rc1, Released February 11th, 2014
  6231. Fixes all over the tree and new features.
  6232. Support for external packages/defconfigs (BR2_EXTERNAL). See
  6233. user manual for details.
  6234. Cleanup of environment variable names for consistency. The
  6235. download directory location override (BUILDROOT_DL_DIR) is now
  6236. called BR2_DL_DIR. Likewise the name of the current .config is
  6237. renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
  6238. your post build scripts if you use this! BUILD_DIR is now also
  6239. exported to the post build/image scripts.
  6240. Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
  6241. uClibc pread/pwrite backport as they cause issues on certain
  6242. architectures, new Linaro and Sourcery Codebench toolchains.
  6243. x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
  6244. variants removed, Microblaze: Internal toolchain support
  6245. Legal infrastructure: Info is now split between host and
  6246. target packages, large number of license annotations.
  6247. Lua: selection between lua 5.1 / 5.2, luarocks support
  6248. Python: package infrastructure, many new packages.
  6249. Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
  6250. beaglebone, microblaze, pandaboard, qemu, raspberry pi
  6251. updated.
  6252. Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
  6253. am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
  6254. berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
  6255. bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
  6256. cifs-utils, civetweb, cmake, collectd, connman, copas,
  6257. coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
  6258. cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
  6259. dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
  6260. dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
  6261. f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
  6262. fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
  6263. gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
  6264. gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
  6265. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  6266. gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
  6267. imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
  6268. jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
  6269. lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
  6270. libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
  6271. libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
  6272. libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
  6273. libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
  6274. libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
  6275. libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
  6276. libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
  6277. libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
  6278. lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
  6279. lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
  6280. luafilesystem, luajit, luaposix, luasec, luasocket,
  6281. luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
  6282. mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
  6283. neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
  6284. numactl, ofone, ola, olsr, omniorb, open2300, opencv,
  6285. openpowerlink, openssh, openssl, openvpn, oprofile, opus,
  6286. opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
  6287. php, poco, poppler, powervr, protobuf-c, psplash, python,
  6288. python-bottle,
  6289. python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
  6290. python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
  6291. python-{serial,setuptools}, qt, qt5base, qt5connectivity,
  6292. qt5declarative, qt5graphicaleffects, qt5jsbackend,
  6293. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  6294. qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
  6295. rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
  6296. sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
  6297. socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
  6298. sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
  6299. sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
  6300. ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
  6301. transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
  6302. uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
  6303. util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
  6304. weston, wget, wireless-regdb, wireshark, wpa_supplicant,
  6305. wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
  6306. xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
  6307. xlib_lib{FS,SM,X11},
  6308. xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
  6309. xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
  6310. xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
  6311. xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
  6312. xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
  6313. xproto_xextproto, xproto_xproto, xutil_util-macros,
  6314. xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
  6315. New packages: apitrace, avrdude, c-ares, ca-certificates,
  6316. cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
  6317. haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
  6318. lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
  6319. libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
  6320. libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
  6321. luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
  6322. python-configobj, python-dialog, python-json-schema-validator,
  6323. python-keyring, python-msgpack, python-posix-ipc,
  6324. python-pyasn, python-pycrypto, python-pysnmp,
  6325. python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
  6326. python-simplejson, python-tornado, python-versiontools,
  6327. rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
  6328. ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
  6329. Removed packages: autoconf, automake, ccache, cpanminus, lzma,
  6330. netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
  6331. Issues resolved (http://bugs.uclibc.org):
  6332. #65: new package: dbus c++ language bindings
  6333. #769: Update configuration menu for MIPS target
  6334. #2419: Add a bundle of Lua modules
  6335. #2629: Segmentation faults and division by zero in Grub on ext2
  6336. #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
  6337. #4339: Allow override of DL_DIR in extract step
  6338. #4363: Make sure that copied linux and busybox defconfig are...
  6339. #4454: There should be simple way to update image, when chang...
  6340. #5024: grub fails to build for x86_64 target architecture
  6341. #5066: New-Package: net-tools
  6342. #5072: ncurses: add ncurses-progs to target
  6343. #5294: uclibc build ignores target CFLAGS and LDFLAGS
  6344. #5366: Login doesn't work with util-linux versions of login/agetty
  6345. #5378: dropbear Makefile broken
  6346. #5390: System banner - change to empty doesn't remove /etc/issue
  6347. #5780: spurious build failure because it cannot remove ubinize.cfg
  6348. #5798: ncurses-5.9 fails to compile statically
  6349. #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
  6350. #6080: Git fetch caching
  6351. #6092: Bootable ISO image creation seems to have stopped working..
  6352. #6272: coreutils build fails
  6353. #6434: apply-patches.sh does not work recursively
  6354. #6446: eglibc doesn't install ldconfig to target
  6355. #6484: Add c-ares
  6356. #6596: Slow bootup if mdev is chosen
  6357. #6656: Build Qt5 with ccache
  6358. #6662: internal compiler error: Segmentation fault during making..
  6359. #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
  6360. #6752: genext2fs: e2fsck must run before tunefs -U random
  6361. #6770: openssl 1.0.1f fails with ccache
  6362. #6830: Qt5: no fonts are installed
  6363. #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
  6364. #6854: Update to Qt 5.2.1
  6365. 2013.11, Released November 30th, 2013:
  6366. Minor fixes.
  6367. Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
  6368. ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
  6369. iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
  6370. lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
  6371. tvheadend, util-linux, wpa_supplicant
  6372. Issues resolved (http://bugs.uclibc.org):
  6373. #1279: Buildroot compiled Busybox and Coreutils LFS issues
  6374. #2995: -fstack-protector-all causes ssh to SIGSEGV
  6375. #5570: Cannot compile software on the target machine
  6376. #6428: util-linux libmount segfaults with patch from buildroot
  6377. #6500: php fails to build for armel
  6378. #6554: gdb needs to dependents on host texinfo
  6379. #6692: GNU nano fails to compile for x86_64
  6380. #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
  6381. 2013.11-rc3, Released November 26th, 2013
  6382. Fixes all over the tree.
  6383. Architecture: Mark MIPS I, II, III and IV as deprecated.
  6384. Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
  6385. libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
  6386. mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
  6387. protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
  6388. swig, ti-gfx, tinymembench, uclibc, udisks, vim
  6389. 2013.11-rc2, Released November 18th, 2013
  6390. Fixes all over the tree.
  6391. Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
  6392. Adjust kernel versions.
  6393. Toolchain: avr32: fix for modern kernel headers
  6394. Bootloader: Barebox updated to 2013.10.1
  6395. Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
  6396. libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
  6397. wayland, wvstreams
  6398. Issues resolved (http://bugs.uclibc.org):
  6399. #3601: DHCPD S80dhcp-server startup script issues
  6400. #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
  6401. #6416: Xenomai package, patch alternative
  6402. #6590: directfb-examples build failed whit linaro toolchain
  6403. 2013.11-rc1, Released November 12th, 2013
  6404. Architectures: Nios-II support, MIPS arch handling fixes
  6405. Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
  6406. sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
  6407. Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
  6408. for avr32, crosstool-ng backend removed, external musl
  6409. toolchain support, gcc 4.8.2, updated Linaro external
  6410. toolchains. Fortran and objective-C support deprecated,
  6411. mudflap support
  6412. Bootloaders: U-Boot: u-boot.imx support, version bumps
  6413. Linux: use kmod instead of module-init-tools
  6414. System: default to devtmpfs for /dev
  6415. Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
  6416. download support, post-rsync hooks
  6417. Fs: u-boot image support for cpio
  6418. Updated/fixed packages: aircrack-ng, alsamixergui, apr,
  6419. apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
  6420. bison, boost, busybox, can-utils, ccache, ccid, cgilua,
  6421. chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
  6422. copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
  6423. directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
  6424. dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
  6425. ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
  6426. fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
  6427. glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
  6428. gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
  6429. gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
  6430. imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
  6431. jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
  6432. libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
  6433. libedit, libevas, libevent, libfreefare, libfuse,
  6434. libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
  6435. libmnl, libmodbus,
  6436. libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
  6437. libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
  6438. libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
  6439. libvpx, lighttpd, linphone, linux-pam, lmbench,
  6440. lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
  6441. ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
  6442. media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
  6443. mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
  6444. nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
  6445. netcat, netkitbase, netperf, netplug, nettle, nfacct,
  6446. nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
  6447. oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
  6448. perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
  6449. poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
  6450. pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
  6451. rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
  6452. samba, scons, screen, sdl_sound, ser2net, setserial,
  6453. smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
  6454. stress, strongswan, stunnel, sudo, syslinux, systemd,
  6455. sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
  6456. tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
  6457. uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
  6458. valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
  6459. webkit, webp, webrtc-audio-processing, weston, wget,
  6460. wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
  6461. xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
  6462. xserver_xorg-server, xz, zeromq, zic, zmqpp
  6463. New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
  6464. duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
  6465. lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
  6466. lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
  6467. python-crc16, python-ipy, python-pyzmq, qt5sensors,
  6468. qt5serialport, qt5x11extras, snmppp, subversion, tcping,
  6469. trace-cmd, xscreensaver, zsh
  6470. Removed packages: module-init-tools
  6471. Issues resolved (http://bugs.uclibc.org):
  6472. #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
  6473. #5408: qt build failure with Sourcery CodeBench ARM 2010.09
  6474. #5630: makefile error with toolchain helpers.mk
  6475. #5672: htop: remove X11 stuff
  6476. #5678: linux.mk: linux-menuconfig fails
  6477. #5696: python3 installation is too large, patches from python2 needed
  6478. #5978: Erlang does not build for arm in 2013.02-rc3
  6479. #6392: Extended ARM uImage kernel options
  6480. #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
  6481. #6428: util-linux libmount segfaults with patch from buildroot
  6482. #6452: eglibc from Linaro 2013.07 not copied to target correctly
  6483. #6566: PHP segfault when crosscompiled to mips64 - patch included
  6484. #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
  6485. #6578: udisks package broken
  6486. #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
  6487. #6608: ebtables missing ethertypes - fix included
  6488. #6620: Sysvinit package missing killall5 and symlinks - patch included
  6489. #6632: CMake use host pkg-config
  6490. #6638: pkgconf doesn't download
  6491. #6644: "all" target doesn't work in out-of-tree builds
  6492. #6650: Segmentation fault when trying to build latest buildroot
  6493. #6668: iptables limit module alignment problem on mips64
  6494. 2013.08, Released August 31th, 2013:
  6495. Minor fixes.
  6496. Documentation build fixed.
  6497. Updated/fixed packages: ltrace, strongswan
  6498. 2013.08-rc3, Released August 29th, 2013:
  6499. Fixes all over the tree.
  6500. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  6501. misc fixes for generatelocales, apply-patches and module
  6502. stripping.
  6503. Top level menu names reordered and renamed for clarity.
  6504. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  6505. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  6506. openssh, openssl, pulseaudio, python-setuptools, qt5,
  6507. qt5webkit, redis, strongswan, sunxi-mali
  6508. Issues resolved (http://bugs.uclibc.org):
  6509. #6464: dbus-daemon-launch-helper needs setuid
  6510. 2013.08-rc2, Released August 16th 2013:
  6511. Documentation improvements.
  6512. External toolchains fixes.
  6513. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  6514. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  6515. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  6516. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  6517. uclibc, udev, wayland, webkit, zeromq.
  6518. Issues resolved (http://bugs.uclibc.org):
  6519. #6440: typo in ffmpeg makefile
  6520. 2013.08-rc1, Released August 5th, 2013:
  6521. Architectures:
  6522. - improved support for floating point on ARM and Thumb/Thumb2
  6523. - support for ARM OABI removed
  6524. Toolchains:
  6525. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  6526. - Linaro ARM and Aarch64 toolchains updated
  6527. - support added for the Arago ARMv5 and ARMv7 toolchains
  6528. - gcc 4.8.x version bumped
  6529. - support for installing both FDPIC and FLAT libraries on
  6530. Blackfin
  6531. - support for uClibc 0.9.31 removed,
  6532. - convert the internal toolchain backend to use the package
  6533. infrastructure
  6534. - support added for eglibc in the internal toolchain backend
  6535. - toolchain components for the ARC architecture updated and
  6536. gdb for ARC added.
  6537. - support for Blackfin in the internal toolchain fixed
  6538. Defconfigs: beaglebone_defconfig updated, new defconfig for
  6539. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  6540. TNY-A9G20-LPW.
  6541. A number of packages have been fixed to use the
  6542. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  6543. script installed and modified properly. Licensing informations
  6544. has been added to a number of packages.
  6545. Use XZ tarballs for a number of packages.
  6546. Noticeable package changes/additions:
  6547. - The glib2/libgtk2/webkit stack has been updated to recent
  6548. versions.
  6549. - Support for Gstreamer 1.x has been added.
  6550. - OpenGL support for TI OMAP platforms has been added.
  6551. - OpenGL support for Allwinner platforms has been added.
  6552. - OpenMAX support for RasberryPi has been added.
  6553. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  6554. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  6555. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  6556. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  6557. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  6558. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  6559. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  6560. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  6561. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  6562. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  6563. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  6564. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  6565. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  6566. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  6567. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  6568. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  6569. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  6570. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  6571. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  6572. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  6573. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  6574. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  6575. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  6576. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  6577. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  6578. zlib.
  6579. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  6580. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  6581. gcc-final, gcc-initial, gcc-intermediate, git,
  6582. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  6583. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  6584. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  6585. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  6586. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  6587. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  6588. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  6589. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  6590. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  6591. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  6592. tree, tstools, uclibc, w_scan.
  6593. Issues resolved (http://bugs.uclibc.org):
  6594. #4718: python (built for powerpc) distutils has paths to host
  6595. compiler toolchain
  6596. #5516: appended device tree blobs on uImage fails
  6597. #6302: Versions of packages retrieved from github.com are wrong
  6598. #6308: dosfstools download link is wrong
  6599. #6326: Dropbear: Add options to allow better config for
  6600. different target devices (e.g. routers)
  6601. #6338: Wrong download link for minicom package
  6602. #6344: Wrong handling of license text files with same name and
  6603. different directory
  6604. #6374: gnutls package broken if linux cryptodev module
  6605. selected
  6606. #6410: omap3_beagle has uimage error load address error
  6607. 2013.05, Released May 31th, 2013:
  6608. Minor fixes.
  6609. External toolchain wrapper fix for if host/usr/bin is placed
  6610. in the patch.
  6611. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  6612. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  6613. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  6614. Issues resolved (http://bugs.uclibc.org):
  6615. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  6616. #4988: flex and m4 problems
  6617. #5912: obsolete CVS files
  6618. 2013.05-rc3, Released May 25th, 2013:
  6619. Minor fixes.
  6620. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  6621. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  6622. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  6623. wireshark
  6624. 2013.05-rc2, Released May 15th, 2013:
  6625. Fixes all over the tree.
  6626. Default number of parallel jobs is now number of CPUs + 1.
  6627. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  6628. Updated/fixed packages: aircrack-ng, busybox, cairo,
  6629. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  6630. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  6631. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  6632. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  6633. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  6634. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  6635. sconeserver, strace, sylpheed, wvstreams,
  6636. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  6637. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  6638. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  6639. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  6640. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  6641. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  6642. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  6643. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  6644. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  6645. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  6646. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  6647. xdata_xcursor-themes,
  6648. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  6649. xdriver_xf86-input-{tslib,vmmouse,void},
  6650. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  6651. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  6652. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  6653. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  6654. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  6655. xfont_font-utopia-{100dpi,75dpi,type1},
  6656. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  6657. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  6658. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  6659. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  6660. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  6661. xfont_font-{mutt,schumacher}-misc,
  6662. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  6663. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  6664. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  6665. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  6666. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  6667. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  6668. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  6669. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  6670. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  6671. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  6672. xserver_xorg-server, xutil_{makedepend,util-macros}
  6673. Readded Packages: xapp_xinit
  6674. Issues resolved (http://bugs.uclibc.org):
  6675. #5054: amd64: cannot find init - due to missing /lib64 folder
  6676. 2013.05-rc1, Released May 8th, 2013:
  6677. Architectures: ARC support, Blackfin support, FLAT binary
  6678. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  6679. Toolchains: Add new Microblaze external toolchains, Linaro
  6680. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  6681. internal toolchain, default to GCC 4.7.x. Internal
  6682. Crosstool-ng backend deprecated.
  6683. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  6684. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  6685. pi, gnublin board.
  6686. FS: LZO and XZ compression methods, extra ubifs options,
  6687. ext2 rev 0/1 and ext3/4 support.
  6688. Patch handling: apply-patches now has .patch.xz support,
  6689. Patch logic reworked as discussed during Febrary dev days:
  6690. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  6691. <pkg>-rsync now excludes version control files.
  6692. linux: uImage load address for ARM multiplatform kernels
  6693. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  6694. providers, similar to how libjpeg / libjpeg-turbo is handled.
  6695. Infrastructure for packages to add system users.
  6696. kconfig: updated to 3.9-rc2, support make olddefconfig
  6697. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  6698. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  6699. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  6700. busybox, ccache, cifs-utils, cmake, collectd, connman,
  6701. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  6702. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  6703. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  6704. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  6705. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  6706. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  6707. httping, icu, inotify-tools, intltool, iproute2, ipset,
  6708. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  6709. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  6710. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  6711. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  6712. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  6713. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  6714. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  6715. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  6716. mediastreamer, memtester, mesa3d,
  6717. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  6718. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  6719. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  6720. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  6721. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  6722. polarssl, proftpd, psmisc, pulseaudio, python,
  6723. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  6724. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  6725. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  6726. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  6727. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  6728. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  6729. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  6730. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  6731. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  6732. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  6733. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  6734. xdriver_xf86-input-{tslib,vmmouse,void},
  6735. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  6736. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  6737. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  6738. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  6739. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  6740. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  6741. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  6742. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  6743. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  6744. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  6745. xserver_xorg-server, xutil_makedepend, xz, zeromq
  6746. New packages: aircrack-ng, bcusdk, chrony, crda,
  6747. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  6748. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  6749. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  6750. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  6751. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  6752. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  6753. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  6754. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  6755. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  6756. qt5declarative, qt5graphicaleffects, qt5imageformats,
  6757. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  6758. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  6759. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  6760. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  6761. xcursor-transparent-theme, zic, zmqpp, zyre
  6762. Removed packages: microperl, ocf-linux, xapp_xinit,
  6763. xapp_xplsprinters, xapp_xprehashprinterlist,
  6764. xfont_font-bitstream-speedo,
  6765. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  6766. xproto_{print,xf86rush}proto
  6767. Deprecated packages: vala
  6768. Issues resolved (http://bugs.uclibc.org):
  6769. #1291: Add support for Faraday 526 arm processor (fa526)
  6770. #2683: cups does not install correctly to target
  6771. #3313: mesa3d fails to build
  6772. #5186: initramfs/cpio should support lzo compression
  6773. #5636: agetty - cannot get controlling tty error - need updated...
  6774. #5906: collectd client headers not exported
  6775. #5966: bison unnecessarily required as build dependency
  6776. #6140: --enable-fileinfo not applied for php package
  6777. #6164: openvpn usage of ip tool from Busybox
  6778. 2013.02, Released February 28th, 2013:
  6779. Misc manual updates.
  6780. Updated/fixed packages: busybox, collectd, flashbench,
  6781. libgtk2, libupnp, mii-diag, quota
  6782. 2013.02-rc3, Released February 26th, 2013
  6783. Minor fixes.
  6784. Updated/fixed packages: conntrack-tools, dialog,
  6785. enlightenment, haserl, keyutils, libfif, libmad,
  6786. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  6787. ruby, spawn-fcgi, vtun
  6788. Issues resolved (http://bugs.uclibc.org):
  6789. #5960: fusion.ko driver does not install to target rootfs
  6790. 2013.02-rc2, Released February 19th, 2013
  6791. Fixes all over the tree.
  6792. Various manual updates and fixes.
  6793. Updated/fixed packages: busybox, collectd, gesftpserver,
  6794. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  6795. libglib2, libtorrent, libvorbis, neard, network-manager,
  6796. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  6797. Issues resolved (http://bugs.uclibc.org):
  6798. #5906: collectd client headers not exported
  6799. 2013.02-rc1, Released February 10th, 2013
  6800. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  6801. libraries install fixed. Add Linaro ARM
  6802. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  6803. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  6804. missing 32bit support for binary toolchains. Toolchain wrapper
  6805. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  6806. 7.1. Deprecate uClibc 0.9.31.
  6807. Architecture: Xtensa fixes, add missing powerpc variants, arm
  6808. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  6809. deprecated. Sparc: drop old unused variants
  6810. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  6811. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  6812. environment image support, U-Boot: add 2013.01.01
  6813. Linux: fix appended dtb handling for v3.8+ kernels, support
  6814. multiple device trees
  6815. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  6816. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  6817. updated, at91rm9200df: misc fixes. Lock kernel headers to
  6818. match kernel.
  6819. Infrastructure: Git download fixes. Toolchain make target
  6820. renamed from 'cross' to 'toolchain'. Eclipse integration
  6821. support. Option to set root password, post image scripts,
  6822. config scripts handling.
  6823. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  6824. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  6825. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  6826. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  6827. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  6828. diffutils, directfb, distcc, divine, dnsmasq, docker,
  6829. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  6830. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  6831. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  6832. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  6833. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  6834. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  6835. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  6836. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  6837. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  6838. libedbus, libedje, libeet, libefreet, libeina, libeio,
  6839. liberation, libelementary, libembryo, libethumb, libev,
  6840. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  6841. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  6842. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  6843. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  6844. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  6845. libxml2, libxslt, lighttpd, links, linux-firmware,
  6846. linux-fusion, ltp-testsuite, ltrace,
  6847. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  6848. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  6849. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  6850. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  6851. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  6852. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  6853. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  6854. python, python3, qemu, qextserialport, qt, quagga, radvd,
  6855. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  6856. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  6857. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  6858. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  6859. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  6860. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  6861. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  6862. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  6863. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  6864. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  6865. xserver_xorg-server, xstroke, xvkbd, xz
  6866. New packages: b43-firmware, b43-fwcutter, bustle,
  6867. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  6868. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  6869. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  6870. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  6871. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  6872. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  6873. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  6874. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  6875. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  6876. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  6877. spice-protocol, tcllib, tvheadend, udisks, usbredir
  6878. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  6879. zd1211-firmware
  6880. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  6881. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  6882. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  6883. xdriver_xf86-video-{tsend,xgi,xgixp}
  6884. Deprecated packages: xstroke
  6885. Issues resolved (http://bugs.uclibc.org):
  6886. #4237: building shared openssl w/-Os fails due to gcc bug
  6887. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  6888. #5602: python3 should install a "python" symbolic link
  6889. #5846: Extra slash added to last slash in URL
  6890. 2012.11.1, Released January 3rd, 2013:
  6891. Toolchain: Fixed non-largefile builds on recent Ubuntu
  6892. versions.
  6893. Arch: fix missing x86/generic handling, Build for Xtensa with
  6894. longcalls option.
  6895. Updated/fixed packages: dosfstools, qt
  6896. 2012.11, Released December 2nd, 2012:
  6897. Git shallow clone fix for older git version.
  6898. Updated/fixed packages: ctuio, libtool
  6899. Issues resolved (http://bugs.uclibc.org):
  6900. #5726: List all the available hook points
  6901. 2012.11-rc2, Released November 30th, 2012:
  6902. Minor fixes around the tree.
  6903. Various manual updates and fixes.
  6904. Add checks for legacy features.
  6905. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  6906. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  6907. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  6908. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  6909. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  6910. scons, strace, sylpheed
  6911. Issues resolved (http://bugs.uclibc.org):
  6912. #5732: Error : package/alsa-lib/alsa-lib.mk
  6913. 2012.11-rc1, Released November 17th, 2012
  6914. Fixes all over the tree and new features.
  6915. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  6916. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  6917. + nitrogen6x defconfigs.
  6918. Bootloaders: add u-boot 2012.07/10, ais target format, add
  6919. barebox 2012.08/09/10/11, linker overlap issue fix for
  6920. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  6921. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  6922. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  6923. Libtirpc support for modern glibc variants. Toolchain on
  6924. target has been deprecated.
  6925. Initial Aarch64 support, Xtensa support re-added.
  6926. Infrastructure: Use shallow git clone when possible, use
  6927. tarballs rather than git URLs for github. Moved to pkgconf
  6928. rather than pkg-config. System directory added, default
  6929. skeleton/device tables moved. More than 1 post-build script
  6930. can now be used. output/target now contains a
  6931. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  6932. understand how to (not) use it.
  6933. Manual has been reworked and extended.
  6934. Legal-info: Lots of package annotations, CSV file fixes,
  6935. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  6936. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  6937. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  6938. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  6939. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  6940. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  6941. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  6942. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  6943. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  6944. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  6945. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  6946. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  6947. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  6948. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  6949. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  6950. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  6951. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  6952. lmbench, lockfile-progs, logrotate, lshw, lsof,
  6953. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  6954. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  6955. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  6956. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  6957. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  6958. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  6959. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  6960. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  6961. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  6962. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  6963. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  6964. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  6965. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  6966. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  6967. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  6968. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  6969. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  6970. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  6971. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  6972. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  6973. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  6974. yasm
  6975. Deprecated packages: netkitbase, netkittelnet
  6976. Issues resolved (http://bugs.uclibc.org):
  6977. #807: [PATCH] samba - make iconv and smbd optional
  6978. #3049: binutils have a sysroot bug in ld
  6979. #5330: update vsftpd to 3.0.0
  6980. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  6981. #5666: Fails to build python 2.7.2 for 2440 arm
  6982. 2012.08, Release August 31th, 2012
  6983. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  6984. prboom, oprofile.
  6985. Added license information for: sqlite.
  6986. Changed the source URLs of all packages located on Sourceforge
  6987. in order to use the automatic mirror selection URL
  6988. downloads.sourceforge.net, and get rid of the
  6989. BR2_SOURCEFORGE_MIRROR option.
  6990. 2012.08-rc3, Released August 25th, 2012
  6991. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  6992. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  6993. Added license informations for: barebox, grub, syslinux,
  6994. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  6995. faad2, nano, fbdump, rsync, librsync, fontconfig,
  6996. inotify-tools,
  6997. 2012.08-rc2, Released August 15th, 2012
  6998. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  6999. Added license informations for: mxml, nanocom, empty, expat,
  7000. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  7001. input-event-daemon, luajit, cgilua, copas, coxpcall,
  7002. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  7003. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  7004. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  7005. mtd, openssl, psmisc, socat, spawn-fcgi.
  7006. Fixes to Microblaze external toolchains
  7007. configuration. Improvements of the pkg-stats
  7008. script. Out-of-tree fix for the graph-depends script.
  7009. Kernel headers version bump.
  7010. 2012.08-rc1, Released August 1st, 2012
  7011. Fixes all over the tree and new features.
  7012. Integration of a legal information reporting infrastructure,
  7013. which allows to generate detailed informations about the
  7014. licenses and source code of all components of a system
  7015. generated by Buildroot. License information will progressively
  7016. be added on packages.
  7017. Default configuration files added for Calao-systems USB-A9263
  7018. and Calao-systems USB-A9G20-LPW.
  7019. External toolchains update: allow download of a custom
  7020. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  7021. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  7022. 2011.09.
  7023. Allow the restriction of downloads to the primary site only.
  7024. This is useful for project developers who want to ensure that
  7025. the project can be built even if the upstream tarball
  7026. locations disappear.
  7027. Add a 'System configuration' choice to select between 3
  7028. different init systems: Busybox init, SysV init and Systemd
  7029. init.
  7030. Cleanups to the package infrastructure. The visible change to
  7031. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  7032. $(autotools-package)), and similarly for other package
  7033. infrastructures and host packages. Refer to the documentation
  7034. for details.
  7035. By default, automatic detection of the number of compilation
  7036. jobs to use, depending on the number of CPUs available.
  7037. Improvements to generate systems with static libraries only
  7038. (infrastructure and package fixes).
  7039. Add proper support in the Linux kernel package to generate
  7040. Device Tree Blobs or combined Device Tree / Kernel
  7041. images. This will be useful on Microblaze, PowerPC and ARM,
  7042. which are architectures making extensive use of the Device
  7043. Tree.
  7044. Updated/fixed packages: audiofile, autoconf, automake, axel,
  7045. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  7046. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  7047. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  7048. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  7049. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  7050. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  7051. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  7052. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  7053. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  7054. libfuse, libidn, libmad, libmbus, libmnl,
  7055. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  7056. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  7057. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  7058. lttng-tools, lua, m4, memtester, midori, mii-diag,
  7059. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  7060. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  7061. openssl, pciutils, php, polarssl, portaudio, pppd,
  7062. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  7063. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  7064. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  7065. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  7066. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  7067. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  7068. fbterm, flashrom, freerdp, inadyn, libfreefare,
  7069. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  7070. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  7071. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  7072. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  7073. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  7074. ramspeed, rtorrent, sound-theme-borealis,
  7075. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  7076. xinetd, zxing
  7077. Issues resolved (http://bugs.uclibc.org):
  7078. #1315: Allow use of older external toolchains without sysroot
  7079. support [won't fix]
  7080. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  7081. #5360: buildroot fails when building "host-libglib2 2.30.2
  7082. Building" [won't fix, upstream problem]
  7083. #5384: Can't build packages relying on gets on newer glibc
  7084. [fixed]
  7085. 2012.05, Released May 30th, 2012:
  7086. Updated/fixed packages: busybox, netsnmp, pptp-linux
  7087. 2012.05-rc3, Released May 25th, 2012:
  7088. Minor fixes around the tree.
  7089. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  7090. scp targets.
  7091. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  7092. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  7093. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  7094. xserver-xorg
  7095. 2012.05-rc2, Released May 18th, 2012:
  7096. Fixes all over the tree.
  7097. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  7098. dependency, disable decimal floats support, Linux 3.2.17 /
  7099. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  7100. without C++ support.
  7101. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  7102. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  7103. 2012.05-rc1, Released May 10th, 2012:
  7104. Fixes all over the tree and new features.
  7105. Use /etc/os-release for version info rather than
  7106. /etc/br-version.
  7107. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  7108. Apply-patches.sh: cleanups, archived patches handling fixes,
  7109. support series files.
  7110. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  7111. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  7112. atngw100, use 3.3.x for qemu configs.
  7113. Menu structure: Libraries moved out of multimedia section
  7114. Atom processor support. Prescott fix, blackfin ABI fix,
  7115. Microblaze architecture support (using ext toolchain). Cleanup
  7116. architecture names, deprecate Xtensa support.
  7117. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  7118. default to uClibc 0.9.33.x, enable
  7119. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  7120. fixes for external toolchains, linaro ext toolchains, new
  7121. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  7122. 1.15.2.
  7123. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  7124. support. Barebox: add 2012.04, remove 2011.12.
  7125. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  7126. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  7127. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  7128. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  7129. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  7130. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  7131. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  7132. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  7133. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  7134. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  7135. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  7136. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  7137. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  7138. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  7139. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  7140. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  7141. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  7142. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  7143. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  7144. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  7145. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  7146. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  7147. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  7148. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  7149. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  7150. xfsprogs, zlib
  7151. New packages: apr, apr-util, audiofile, bellagio,
  7152. conntrack-tools, empty, fmtools, glib-networking,
  7153. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  7154. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  7155. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  7156. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  7157. socketcand, stress, systemd, ushare, zeromq
  7158. Deprecated packages: ttcp
  7159. Removed packages: ntfsprogs
  7160. Issues resolved (http://bugs.uclibc.org):
  7161. #2353: [lua] fix build with 2010.08-rc1
  7162. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  7163. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  7164. #2881: Can't build project statically with external toolchain
  7165. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  7166. #4808: ccache may build against wrong zlib
  7167. #4880: New package lcdproc
  7168. #4886: New package protobuf
  7169. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  7170. #4898: * make: [target-finalize] Error 1 (ignored)*
  7171. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  7172. #4970: udev 181 fails to build if kernel version 3.3 is selected
  7173. #5018: dialog broken: exits with assert in uClibc
  7174. #5102: qt package moc, uic, rcc read from wrong place
  7175. #5144: Patch to fix ixon bug in uemacs
  7176. #5198: Line graphics output is broken in GNU Screen
  7177. #5204: Missing terminfo file(s) for GNU screen terminal type
  7178. 2012.02, Released February 29th, 2012:
  7179. Updated/fixed packages: libecore
  7180. 2012.02-rc3, Released February 27th, 2012:
  7181. Fixes all over the tree.
  7182. Automatic host dependencies handling for cmake packages
  7183. fixed. Customize package deprecated as using a post-build
  7184. script is nowadays the preferred way of adding extra stuff to
  7185. the rootfs.
  7186. Linux-headers 3.0.x / 3.2.x stable version bumped.
  7187. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  7188. Updated/fixed packages: dropbear, ffmpeg, libpng
  7189. 2012.02-rc2, Released February 19th, 2012:
  7190. Fixes all over the tree.
  7191. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  7192. linux-headers 3.0.x / 3.2.x stable versions.
  7193. Documentation: Added makedev / <pkg>_DEVICES /
  7194. <pkg>_PERMISSIONS documentation.
  7195. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  7196. libvncserver, mxml, python.
  7197. 2012.02-rc1, Released February 12th, 2012:
  7198. Fixes all over the tree and new features.
  7199. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  7200. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  7201. GDB 7.4, crosstool-NG 1.13.4.
  7202. Gentargets: scp and mercurial support.
  7203. Autotools: derive host dependencies from target by default.
  7204. Packages can now declare device table snippets.
  7205. Host utilities menu with commonly used host tools.
  7206. defconfigs: qemu configs for x86-64, mips and sparc, at91
  7207. defconfigs now use modern U-Boot / mainline Linux, added
  7208. lpc3250 defconfigs.
  7209. uClibc: remove 0.9.30, backport unshare() support, add
  7210. 0.9.32.1 / 0.9.33, use same config for ctng.
  7211. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  7212. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  7213. bootloaders added.
  7214. Various manual updates. Release tarballs now contain generated
  7215. manual in text/html/pdf formats.
  7216. Buildroot now calls the stop function of scripts in
  7217. /etc/init.d at shutdown.
  7218. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  7219. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  7220. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  7221. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  7222. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  7223. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  7224. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  7225. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  7226. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  7227. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  7228. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  7229. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  7230. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  7231. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  7232. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  7233. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  7234. python, python-serial, qt, ruby, samba, sdl, sdparm,
  7235. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  7236. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  7237. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  7238. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  7239. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  7240. xf86-video-sis, xfont_{encodings,font-util},
  7241. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  7242. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  7243. New packages: boost, connman, dstat, expedite, explorercanvas,
  7244. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  7245. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  7246. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  7247. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  7248. libvncserver, linux-firmware,
  7249. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  7250. open2300, python-distutilscross, python-dpkt,
  7251. python-netifaces, python-pygame, python-setuptools, rt-tests,
  7252. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  7253. xf86-input-tslib, xinput-calibrator
  7254. Issues resolved (http://bugs.uclibc.org):
  7255. #743: Add Transmission bit torrent option to buildroot
  7256. #755: Add Boost libraries as a package
  7257. #2299: Add crypto support to libsoup
  7258. #2617: Pixman 0.19.2 & Cairo 1.10.0
  7259. #3403: libgpg-error: bump to version 1.10
  7260. #3409: libgpg-error: download from gnupg.org
  7261. #3421: nano: make tiny flag optional
  7262. #3691: New EFL packages
  7263. #4664: Cannot patch AT91Bootstrap
  7264. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  7265. #4760: Qt: add host-pkg-config to dependency-list
  7266. 2011.11, Released November 30th, 2011:
  7267. Fixes all over the tree.
  7268. Bump kernel headers / default Linux version to 3.1.4.
  7269. Updated/fixed packages: ruby
  7270. 2011.11-rc3, Released November 26th, 2011:
  7271. Fixes all over the tree.
  7272. Toolchain: Fix gdb dependencies for external toolchains,
  7273. adjust uClibc patches so they don't confuse modern versions of
  7274. patch, bump crosstool-ng, kernel headers and linux versions.
  7275. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  7276. php, rsyslog, ruby, thttpd, xapp_xf86dga
  7277. Issues resolved (http://bugs.uclibc.org):
  7278. #4357: Prevent patch commands from accessing source control
  7279. #4369: Fix permissions on untared lsof archive
  7280. 2011.11-rc2, Released November 18th, 2011:
  7281. Fixes all over the tree and new features.
  7282. Updated asciidoc documentation
  7283. Toolchain: Bumped 3.x stable kernel headers, use wget in
  7284. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  7285. uClibc sparc fix.
  7286. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  7287. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  7288. Issues resolved (http://bugs.uclibc.org):
  7289. #3355: mplayer fails to build
  7290. #4021: uClibc: undefined reference to `__GI___errno_location'
  7291. #4297: Qt's qmake uses wrong pkg-config
  7292. 2011.11-rc1, Released November 11th, 2011:
  7293. Fixes all over the tree and new features.
  7294. Moved misc scripts and support stuff to support/. Renamed
  7295. patch-kernel.sh to support/scripts/apply-patches.sh.
  7296. Documentation: Moved to asciidoc format, make targets to
  7297. generate text/html/pdf/epub output added.
  7298. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  7299. added.
  7300. Bootloaders: Add support for custom git tree / tarballs for
  7301. barebox, similar to how it's handled for u-boot. Clean up
  7302. menuconfig options.
  7303. Toolchain: Update external codesourcery toolchain download
  7304. URLs after Codesourcery got bought by Mentor, add x86
  7305. toolchain, update toolchain versions and optimize toolchain
  7306. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  7307. updated GDB versions / download URLs. Binutils
  7308. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  7309. use ctng-1.13.0.
  7310. Package infrastructure: Support for local packages /
  7311. overrides, package dir / name arguments dropped from
  7312. {GEN,AUTO,CMAKE}TARGETS.
  7313. Linux: Kernel extensions infrastructure support, Xenomai +
  7314. RTAI support.
  7315. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  7316. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  7317. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  7318. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  7319. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  7320. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  7321. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  7322. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  7323. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  7324. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  7325. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  7326. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  7327. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  7328. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  7329. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  7330. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  7331. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  7332. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  7333. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  7334. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  7335. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  7336. pulseaudio, pv, rtai, vala, xenomai.
  7337. Removed packages: liboil, sfdisk, swfdec, webif
  7338. Issues resolved (http://bugs.uclibc.org):
  7339. #505: live555: new package
  7340. #507: Enable live and tv options in MPlayer-1.0rc2
  7341. #531: let e2fsprogs package to export headers to staging dir if needed
  7342. #1171: Linuxthreads new cannot find sysdep.h
  7343. #1357: Add bluez to buildroot system
  7344. #2107: New package: input-event-daemon
  7345. #2599: New package: orc (Oil Runtime Compiler)
  7346. #2605: gstreamer: Update to 0.10.30
  7347. #2677: introducing util-linux-ng as replacement for util-linux
  7348. #2917: Qt: Add declarative module
  7349. #3145: jffs2 image generation fails
  7350. #3271: netperf-2.4.5 fails to compile
  7351. #3331: xdata_xcursor-themes depends on xcursorgen
  7352. #3343: Add file:// download SITE_METHOD
  7353. #3391: Add support for specifying an external kernel tree
  7354. #3631: Error while compiling with Xorg
  7355. #3709: oprofile doesn't build for mipsel
  7356. #3925: midori not getting compile
  7357. #4045: Add support for downloading i386 toolchains from codesourcery
  7358. #4165: lrzsz-fix-symlink-at-rebuild.patch
  7359. #4171: makedevs-unused-but-set-variable.patch
  7360. #4183: Codesourcery toolchain download site has changed
  7361. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  7362. #4381: Add option to lighttpd to enable Lua support
  7363. #4387: Make sure that dest dir exists before installing mtd files
  7364. 2011.08, Released August 31th, 2011:
  7365. Fixes all over the tree.
  7366. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  7367. kernel headers.
  7368. Updated/fixed packages: ipset, python
  7369. 2011.08-rc2, Released August 29th, 2011:
  7370. Fixes all over the tree.
  7371. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  7372. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  7373. (broken).
  7374. Defconfigs: kernel updates, fix mini2440 serial port config,
  7375. remove old arm toolchain configs.
  7376. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  7377. targets similar to linux/busybox.
  7378. Updated/fixed packages: barebox, directfb, libsoup,
  7379. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  7380. usbmount, util-linux, xfont_font-misc-misc
  7381. Issues resolved (http://bugs.uclibc.org):
  7382. #3685: ncurses installation hangs due to old version of tic
  7383. #4093: Grub fails to install bz2 patch after conversion to...
  7384. 2011.08-rc1, Released August 4th, 2011:
  7385. Fixes all over the tree and new features.
  7386. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  7387. ext-toolchain-wrapper improvements, improved non-MMU
  7388. support. GCC 4.3.6 / 4.6.1.
  7389. GENTARGETS infrastructure extended to cover bootloaders and
  7390. Linux kernel as well. Options to retrive Linux/U-Boot from a
  7391. custom git repo instead of upstream tarballs.
  7392. Support for Linux 3.x and release candidate tarballs.
  7393. X-Loader bootloader for omap added.
  7394. Make source/external-deps now also works for external
  7395. toolchains / crosstool-ng backend.
  7396. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  7397. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  7398. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  7399. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  7400. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  7401. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  7402. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  7403. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  7404. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  7405. webkit, xorg-xserver, xz, zlib
  7406. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  7407. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  7408. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  7409. statserial, stunnel, ti-utils, uboot-tools, yajl
  7410. Deprecated packages: liboil, swfdec
  7411. Removed packages: hal
  7412. Issues resolved (http://bugs.uclibc.org):
  7413. #3559: libnspr: Add new package
  7414. #3595: patch to add libroxml
  7415. #3565: libnss: Add new package
  7416. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  7417. #3649: [PATCH] Add mapdir to existing pkg-config patch
  7418. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  7419. #3961: Nfs-utils: Remove SUSv3-function index
  7420. #3985: "help" target's defconfig list needs sort
  7421. #3997: bump libroxml to v2.1.0
  7422. 2011.05, Released May 27th, 2011:
  7423. Updated/fixed packages: makedevs
  7424. 2011.05-rc2, Released May 24th, 2011:
  7425. Fixes all over the tree.
  7426. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  7427. 2009q3 external toolchains added. Crosstool-NG bumped to
  7428. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  7429. bumped to 2.6.38.7.
  7430. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  7431. 2011.05-rc1, Released May 18th, 2011:
  7432. Fixes all over the tree and new features.
  7433. External toolchain improvements: We now build a binary
  7434. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  7435. enforces the correct compiler arguments, making an external
  7436. toolchain as easy to use outside of Buildroot as the internal
  7437. ones are. This also brought a cleanup of CFLAGS, making the
  7438. Buildroot build output easier to read.
  7439. Rootfs device handling improvements: Choice between static
  7440. /dev, devtmpfs and devtmpfs with either mdev or udev.
  7441. Toolchain: More preconfigured codesourcery external
  7442. toolchains, improved Crosstool-NG support, fix for GCC
  7443. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  7444. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  7445. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  7446. Linux: support for custom kernel image targets, E.G. for
  7447. powerpc builds with embedded device trees.
  7448. Misc fixes for qemu defconfigs, ensuring correct serial
  7449. terminal setup out of the box.
  7450. Misc gentarget / autotools handling fixes.
  7451. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  7452. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  7453. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  7454. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  7455. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  7456. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  7457. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  7458. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  7459. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  7460. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  7461. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  7462. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  7463. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  7464. New packages: bonnie++, can-utils, gdisk, htop,
  7465. input-event-daemon, libexif, libraw, libv4l, ngircd
  7466. Removed packages: festival
  7467. Issues resolved (http://bugs.uclibc.org):
  7468. #2131: Add OpenMP support to the toolchain
  7469. #3379: New Package: bonnie++
  7470. #3445: Not working openssl-10.0.0d on 386sx
  7471. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  7472. #3457: alsamixergui: broken URL
  7473. #3475: Calling sync on large filesystems when not always necessary
  7474. #3511: make busybox-menuconfig does not download busybox package
  7475. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  7476. #3571: u-boot: fw_printenv does not build
  7477. #3643: popt source url is not responding
  7478. #3733: dropbear: make zlib optional
  7479. #3757: Buildroot can't build mplayer with libmad
  7480. 2011.02, Released February 28th, 2011:
  7481. Fixes all over the tree.
  7482. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  7483. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  7484. Deprecated packages: devmem2, webif
  7485. Issues resolved (http://bugs.uclibc.org):
  7486. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  7487. #3259: Unable to build webkit (on arm)
  7488. #3295: slang fails to build on mipsel
  7489. #3325: ffmpeg fails to build
  7490. 2011.02-rc2, Released February 24th, 2011:
  7491. Fixes all over the tree.
  7492. Festival packages marked as broken. Unless someone steps up
  7493. to support them, they will be removed during the 2011.05
  7494. development cycle.
  7495. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  7496. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  7497. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  7498. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  7499. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  7500. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  7501. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  7502. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  7503. tcpreplay, tiff, wpa_supplicant, xcb-util,
  7504. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  7505. xdriver_xf86-input-{mouse,synaptics,void},
  7506. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  7507. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  7508. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  7509. xserver_xorg-server, xz
  7510. Removed packages: ace_of_penguins, vlc
  7511. Issues resolved (http://bugs.uclibc.org):
  7512. #3205: Failing chmod when running "make" in buildroot (openssl)...
  7513. #3277: quagga fails to build with SNMP support
  7514. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  7515. #3307: synergy fails to build due to missing XTest library
  7516. 2011.02-rc1, Released February 14th, 2011:
  7517. Fixes all over the tree and new features.
  7518. External toolchain improvements: clarification of the options,
  7519. and introduction of the toolchain profile concept, for
  7520. well-known toolchains. Buildroot is now capable of
  7521. automatically downloading and extracting well-known toolchains
  7522. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  7523. toolchains are supported). Crosstool-NG backend updated and
  7524. improved.
  7525. Complete rework of how hardware boards are supported.
  7526. Each board now only has a single defconfig file, and all
  7527. board-specific options have been removed. See
  7528. docs/buildroot.html#board_support for details.
  7529. Added support for the following boards: Mini2440, Qemu ARM
  7530. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  7531. r2d and Qemu x86. The Qemu boards support allows to easily
  7532. build systems that are known to work under Qemu.
  7533. Initial support for Blackfin processors.
  7534. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  7535. preparation for support of SDK. For the same reason, the
  7536. toolchain binaries (cross-compiler and other related tools)
  7537. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  7538. now also automatically returns correct values for cross
  7539. compilation, without needing any environment variables to be
  7540. set.
  7541. Ccache support reworked. Now used for both host and target
  7542. compilation, and cache is stored in ~/.buildroot-ccache.
  7543. Toolchain: uClibc 0.9.32-rc2, several components moved to
  7544. normal AUTOTARGET packages.
  7545. Generic cmake infrastructure, similar to the existing
  7546. GENTARGETS/AUTOTARGETS.
  7547. Support for bzr downloads, next to the existing git/svn support.
  7548. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  7549. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  7550. EXT2 file system size handling improved, UBI image support, fs
  7551. configuration options cleanup, U-Boot/Barebox version bumps.
  7552. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  7553. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  7554. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  7555. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  7556. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  7557. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  7558. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  7559. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  7560. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  7561. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  7562. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  7563. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  7564. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  7565. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  7566. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  7567. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  7568. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  7569. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  7570. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  7571. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  7572. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  7573. xkeyboard-config, xlib_libX11, xz, zlib
  7574. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  7575. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  7576. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  7577. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  7578. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  7579. xl2tp, xmlstarlet
  7580. Removed packages: hotplug, l2tp, libfloat, microcom,
  7581. ng-spice-rework
  7582. Issues resolved (http://bugs.uclibc.org):
  7583. #267: The make target: cross fails because toolchain_build_...
  7584. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  7585. #561: ltp-testsuite failed to install
  7586. #1447: Installing gfortran on PowerPC
  7587. #1651: Build fail caused by ccache in module-init-tools
  7588. #1681: Cross-compiled binaries shouldn't be installed into staging
  7589. #1723: [PATCH] axel: convert to generic package infrastructure and...
  7590. #1735: [PATCH] mplayer: convert to autotools infrastructure
  7591. #2551: [PATCH] native toolchain in the target filesystem fails
  7592. #2623: buildroot-snapshot-20100922 fails when compiling development...
  7593. #2647: makedevs package lacks support for 16-bit major/minor numbers
  7594. #2371: QT MYSQL Module does not build when MySQL installed on the host
  7595. #2839: compile fails in various packages with a odd message "error:...
  7596. #2887: tar "buffer overflow detected" error
  7597. #2893: Broken "make source" with external toolchain
  7598. #2905: Qt: Speed up compilation, if gui-module isn't selected
  7599. #2929: genext2fs: couldn't allocate a block (no free space)
  7600. #2935: Ntpdate isn't installed
  7601. #2965: Broken linkage to xkbcomp (blocking X server startup)
  7602. #2983: xlib_libX11 build failed
  7603. #3007: kexec doesn't build: Missing regdef.h file
  7604. #3085: Init scripts are not compatible with sysVinit (when busybox...
  7605. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  7606. #3109: abnormal `make busybox-menuconfig`
  7607. #3115: How about board specific makefiles?
  7608. #3169: python patch has typo, aborts build in scenario
  7609. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  7610. 2010.11, Released November 30th, 2010:
  7611. Fixes all over the tree.
  7612. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  7613. xserver-xorg
  7614. Issues resolved (http://bugs.uclibc.org):
  7615. #2773: squid with openssl support needs openssl on the host
  7616. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  7617. 2010.11-rc2, Released November 25th, 2010:
  7618. Fixes all over the tree.
  7619. Add support for LEON Sparc architecture variants. Fix make
  7620. source/external-deps for host packages.
  7621. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  7622. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  7623. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  7624. sysstat, webkit, zlib
  7625. Issues resolved (http://bugs.uclibc.org):
  7626. #759: Sysstat build broken without libintl
  7627. #2479: host-module-init-tools 3.11 fails to build
  7628. #2725: Buildroot overrides kernel config
  7629. #2785: mtd-utils build fails due to missing libmtd
  7630. #2791: Added PHP-Process Control to the PHP-Package
  7631. #2797: pciutils dependencies on zlib not taken into account
  7632. #2809: failed to compile libglib2
  7633. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  7634. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  7635. #2833: Failed to compile webkit without X11
  7636. 2010.11-rc1, Released November 8th, 2010:
  7637. Fixes all over the tree and new features.
  7638. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  7639. misc fixes + nconfig and savedefconfig targets.
  7640. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  7641. backend, GCC 4.5.x.
  7642. Fs: Squashfs 4.1 with lzo support
  7643. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  7644. generic new-style ones instead.
  7645. Download handling reworked and support for git/svn downloads
  7646. added.
  7647. Removed experimental shared config.cache support, as it is
  7648. too unreliable.
  7649. A convenience Makefile wrapper is created when using
  7650. out-of-tree building, similar to how it is done for the kernel.
  7651. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  7652. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  7653. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  7654. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  7655. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  7656. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  7657. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  7658. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  7659. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  7660. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  7661. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  7662. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  7663. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  7664. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  7665. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  7666. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  7667. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  7668. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  7669. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  7670. openssl, openvpn, oprofile, pango, patch, pcre, php,
  7671. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  7672. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  7673. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  7674. speex, sqlite, squashfs, startup-notification, strace,
  7675. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  7676. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  7677. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  7678. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  7679. xapp_xmore,
  7680. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  7681. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  7682. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  7683. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  7684. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  7685. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  7686. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  7687. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  7688. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  7689. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  7690. xterm, xvkbd, zlib
  7691. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  7692. Removed packages: dillo, libglib12, libgtk12, microwin,
  7693. pcmcia
  7694. Issues resolved (http://bugs.uclibc.org):
  7695. #901: new package: gpsd
  7696. #2389: Generate a Makefile wrapper in $(O)
  7697. #2461: wireless_tools: install shared library if needed
  7698. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  7699. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  7700. #2563: [PATCH] cairo: Expose the configure option to disable some...
  7701. #2581: libmms: Update to 0.6, and patch to work on architectures...
  7702. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  7703. #2731: Build order
  7704. #2737: buildroot configuration tool crashing when the path exceeds...
  7705. #2767: Build for lsof broken in buildroot-2010.08
  7706. 2010.08: Released August 31th, 2010:
  7707. Fixes all over the tree.
  7708. Updated/fixed packages: atk, xstroke
  7709. Removed packages: lxdoom
  7710. 2010.08-rc2, Released August 30th, 2010:
  7711. Fixes all over the tree.
  7712. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  7713. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  7714. versions.
  7715. Mark CRIS architecture as deprecated, as it is discontinued
  7716. upstream.
  7717. Marked shared config.cache as experimental and disabled by
  7718. default as it is known to break with certain package
  7719. combinations.
  7720. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  7721. added.
  7722. fs: old-style squashfs for big endian archs fixed.
  7723. Updated/fixed packages: busybox, gst-plugins-base,
  7724. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  7725. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  7726. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  7727. util-linux
  7728. Removed packages: stunnel
  7729. Issues resolved (http://bugs.uclibc.org):
  7730. #635: util-linux fails to build in 2009.08
  7731. #2239: netcat package installs its binary to target as avr32-linux...
  7732. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  7733. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  7734. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  7735. 2010.08-rc1, Released July 30th, 2010:
  7736. Fixes all over the tree and new features.
  7737. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  7738. and non-sysroot support removed. Added support for (snapshot)
  7739. NPTL in uClibc, 0.9.28.3 removed,
  7740. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  7741. removed yaboot. Support building u-boot from custom tarball,
  7742. u-boot 2010.06.
  7743. New GTK-based configurator, usable using 'make gconfig'.
  7744. Java packages marked as broken. Unless someone steps up to
  7745. support this, they will be removed during the 2010.11
  7746. development cycle.
  7747. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  7748. GTK+ on DirectFB has also been marked as deprecated, as it is
  7749. not supported in recent GTK+ versions, and more and more
  7750. packages depends on the new versions.
  7751. Unless someone steps up to support them, they will be removed
  7752. during the 2010.11 development cycle.
  7753. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  7754. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  7755. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  7756. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  7757. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  7758. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  7759. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  7760. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  7761. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  7762. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  7763. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  7764. ltrace, make, midori, module-init-tools, mplayer,
  7765. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  7766. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  7767. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  7768. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  7769. usbutils, webif, webkit, wireless_tools, xerces,
  7770. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  7771. Removed packages: modutils, portage, rxvt
  7772. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  7773. Issues resolved (http://bugs.uclibc.org):
  7774. #321: alsa-lib uses host include files for python which breaks ...
  7775. #361: linux kernel configuration choice works incorrectly
  7776. #387: Tremor not installed to toolchain
  7777. #401: new package: ffmpeg
  7778. #475: uImage target for U-boot failed generating
  7779. #543: ATK requires X11 on DirectFB target
  7780. #575: webkit: Buildroot Libtool Patch Fails
  7781. #583: build fails with external x86_64 toolchain
  7782. #729: sstrip creates corrupted headers
  7783. #829: Webkit r44552 needs libXt
  7784. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  7785. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  7786. #859: Add (head of) nptl branch to list of uClibc versions
  7787. #949: compile with debug info
  7788. #955: Grub fails to build with External Toolchain
  7789. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  7790. #1213: Move .config into output directory
  7791. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  7792. #1231: (sparc) Linux kernel fails to build
  7793. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  7794. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  7795. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  7796. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  7797. #1675: GMP Error during buildroot make process
  7798. #1741: external toolchain linking error
  7799. #1753: lmbench: convert to generic package infrastructure
  7800. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  7801. #1807: LZMA 4.32.7, Required header file(s) are missing
  7802. #1813: xkeyboard-config fails to build because of intltool problem
  7803. #1879: Bump iptables to 1.4.8
  7804. #1885: Add a bunch of lua modules
  7805. #1897: Bump libusb to 1.0.7
  7806. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  7807. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  7808. #1927: Bump file to 5.03 and migrate to autotargets
  7809. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  7810. #1945: PHP: add sqlite3 dependency when using external lib
  7811. #1951: Bump openssl to 0.9.8o
  7812. #1957: Bump sqlite to 3.6.23.1
  7813. #1975: Package removal/deprecation
  7814. #1981: zlib: bump to 1.2.5
  7815. #1987: intltool: Fix spelling mistake
  7816. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  7817. #1999: Typo in path checking
  7818. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  7819. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  7820. #2038: Bump ncurses to 5.7
  7821. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  7822. #2101: blackbox depends on locale support
  7823. #2119: Tries to build kernel, although disabled in config
  7824. #2125: libXfont build fail
  7825. #2143: buildroot compiler generates segfaulting statically linked exe..
  7826. #2149: xterm build failure
  7827. #2155: Compression lzo don't set for ubifs
  7828. #2161: [SECURITY] Update libpng to 1.2.44
  7829. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  7830. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  7831. #2191: linux-fusion build fail
  7832. #2221: Qt does not compile (dependencies not taken into account?)
  7833. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  7834. #2245: Netcat does not work due to incorrect assumptions about signed..
  7835. #2251: directory output/build after make *_defconfig not found
  7836. #2257: Convert netsnmp package to autotargets
  7837. #2263: Bump samba to 3.3.13
  7838. #2269: setserial causes make error
  7839. 2010.05, Released May 30th, 2010:
  7840. Fixes all over the tree.
  7841. Updated/fixed packages: coreutils, hal, libcap,
  7842. lockfile-progs, ncftp, xserver_xorg-server
  7843. Issues resolved (http://bugs.uclibc.org):
  7844. #1789: binutils fails to build for i386
  7845. #1843: Fix libcap build failure
  7846. #1855: XORG Keyboard driver fails to compile
  7847. 2010.05-rc3, Released May 27th, 2010:
  7848. Fixes all over the tree.
  7849. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  7850. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  7851. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  7852. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  7853. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  7854. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  7855. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  7856. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  7857. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  7858. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  7859. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  7860. Issues resolved (http://bugs.uclibc.org):
  7861. #75: arm buildroot "unrecognized option" error
  7862. #699: Buildroot fails to copy libstdc++ to target when using external...
  7863. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  7864. #1729: alsamixergui fails to build
  7865. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  7866. #1819: pciutils small bugs
  7867. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  7868. 2010.05-rc2, Released May 11th, 2010:
  7869. Fixes all over the tree.
  7870. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  7871. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  7872. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  7873. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  7874. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  7875. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  7876. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  7877. Removed packages: vice
  7878. Issues resolved (http://bugs.uclibc.org):
  7879. #849: "customize" package copies files to wrong place in target tree
  7880. #985: Bump usb_modeswitch package to 1.1.0
  7881. #1135: Package customize. Wrong copying
  7882. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  7883. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  7884. #1669: Busybox failed to compile when using an external toolchain
  7885. #1699: Fix usbutils dependencies and bump
  7886. #1705: Fix pciutils broken cross compiling
  7887. #1717: External toolchain fixes for hostapd & wpa_supplicant
  7888. 2010.05-rc1, Released May 3rd, 2010:
  7889. Cleaned up / restructured package menu.
  7890. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  7891. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  7892. removed broken nios2 support, ppc e300cX/e500mc support,
  7893. improved external toolchain support, GDB 7.x support.
  7894. X.org updated to 7.5.
  7895. New packages: cdrkit, cramfs, genext2fs, genromfs,
  7896. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  7897. squashfs, squashfs3, squid
  7898. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  7899. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  7900. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  7901. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  7902. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  7903. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  7904. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  7905. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  7906. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  7907. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  7908. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  7909. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  7910. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  7911. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  7912. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  7913. xproto_xf86miscproto, xserver_xorg-server
  7914. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  7915. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  7916. xproto_xf86miscproto
  7917. Issues resolved (http://bugs.uclibc.org):
  7918. #513: Add new squid package
  7919. #661: lmbench: new package
  7920. #719: Add lua option to haserl
  7921. #800: [PATCH] iperf update to 2.0.4
  7922. #803: [PATCH] lua - add shared library patch and config option for...
  7923. #805: [PATCH] mdadm - version update
  7924. #817: integrator926_defconfig uses unsupported uboot board name
  7925. #851: Add option to specify --sysroot value for external toolchain
  7926. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  7927. package for compatibility with old packages that expect
  7928. the pre-1.0 API.
  7929. #1105: Add new netperf package
  7930. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  7931. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  7932. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  7933. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  7934. #1189: Wrong u-boot configuration name for integrator926 target
  7935. #1219: kernel headers not correctly installed into toolchain/staging
  7936. #1267: Wrong BR2_EXTRA_VERSION
  7937. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  7938. #1303: Add librsync package
  7939. #1321: Busybox link fails due to lack of --sysroot option
  7940. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  7941. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  7942. #1369: cannot build radvd (flex problem)
  7943. #1387: xlib_libX11-1.3.2 can't find libjpeg
  7944. #1411: [SECURITY] Update openssl package to 0.9.8n
  7945. #1417: Bump iptables to 1.4.7
  7946. #1423: Bump e2fsprogs to 1.41.11
  7947. #1429: [SECURITY] Update php to 5.2.13
  7948. #1441: Add binutils 2.20.1
  7949. #1447: Package installation on target with debug symbols is broken
  7950. #1459: Misc QA fixes
  7951. #1489: radvd update to 1.6
  7952. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  7953. #1537: dev entries not created anymore
  7954. #1555: Fix default uclibc-0.9.31 configuration
  7955. #1561: [SECURITY] Update samba to 3.3.12
  7956. #1567: openssl0.9.8n fails to compile
  7957. #1573: Alsa-utils alsactl/init/* not installed to target
  7958. #1591: portmap fails to compile
  7959. #1615: Convert eeprog package to gentargets
  7960. #1645: Bump hostapd package to 0.7.2
  7961. 2010.02, Release February 26th, 2010:
  7962. Fixes all over the tree.
  7963. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  7964. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  7965. xfont_font-util
  7966. Removed packages: hostap, openmotif, xpdf
  7967. Issues resolved (http://bugs.uclibc.org):
  7968. #165: openmotif does not build
  7969. #1147: Remove obsolete hostap package
  7970. #1183: make source fails to download gmp, mpfr and patches
  7971. 2010.02-rc2, Released February 23th, 2010:
  7972. Fixes all over the tree and new features.
  7973. New packages: intltool
  7974. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  7975. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  7976. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  7977. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  7978. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  7979. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  7980. xlib_libfontenc, xproto_trapproto, zlib
  7981. Removed package: xboard
  7982. Issues resolved (http://bugs.uclibc.org):
  7983. #335: atk looks for the path to the gnome library on the host
  7984. #355: Please update WebKit - it doesn't compile!
  7985. #453: libglib2 autoreconf
  7986. #457: e2fsprogs link problem
  7987. #459: libgtk2 autoreconf
  7988. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  7989. #671: Bash fails to build when building buildront on Ubuntu 9.04
  7990. #711: WebKit host dependencies problems
  7991. #821: cp: illegal operation
  7992. #1039: Not compiled on ubuntu karmic
  7993. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  7994. 2010.02-rc1, Released February 9th, 2010:
  7995. Fixes all over the tree and new features.
  7996. Generalized autotools infrastructure to be usable for
  7997. non-autotools packages, see package/Makefile.package.in for
  7998. details.
  7999. Cleaned up avr32 toolchain config, external source-based
  8000. toolchain support is gone.
  8001. Dependency checks: Also check for makeinfo, only print output
  8002. on errors.
  8003. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  8004. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  8005. tcpreplay
  8006. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  8007. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  8008. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  8009. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  8010. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  8011. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  8012. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  8013. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  8014. Removed package: asterisk, openswan
  8015. Issues resolved (http://bugs.uclibc.org):
  8016. #515: tcpreplay: new package
  8017. #553: Wrong DirectFB ps2mouse limitation
  8018. #559: mesa3d build fails
  8019. #679: Autoconf cannot find M4
  8020. #739: New/updated hostapd package
  8021. #749: Bump usbutils package to version 0.86
  8022. #751: Kernel 2.6 snapshot fetch fail
  8023. #753: Bump lighttpd package to 1.4.25
  8024. #757: U-Boot: mkimage cannot be installed using external toolchain
  8025. #761: Add binutils 2.20 to toolchain options
  8026. #763: [SECURITY] Update pcre to 7.9
  8027. #765: Add buildroot branding to gcc
  8028. #767: Bump iw package to 0.9.18
  8029. #773: [SECURITY] Update bind to 9.5.2-P1
  8030. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  8031. #813: Drop not very useful generic package selection options ...
  8032. #823: Editor backup files (~) is copied from the target_skeleton
  8033. #827: Bump mtd-utils package to version 1.2.0
  8034. #841: Build error
  8035. #913: Bump iptables to 1.4.6
  8036. #919: Bump usb_modeswitch package to 1.0.7
  8037. #925: Bump wpa_supplicant package to 0.6.10
  8038. #931: Bump kismet package to 2010-01-R1
  8039. #937: Bump openvpn package to 2.1.1
  8040. #943: Bump sqlite package to 3.6.22
  8041. #961: Bump dnsmasq to 2.52
  8042. #967: Bump netstat-nat to 1.4.10
  8043. #973: Bump iw to 0.9.19
  8044. #1003: DHCP options disabled with busybox-1.16.0
  8045. #1009: [SECURITY] Bump php to 5.2.12
  8046. #1015: [SECURITY] Bump bind to 9.5.1-P2
  8047. #1027: Busybox flash commands conflict with those from mtd-utils
  8048. #1063: [SECURITY] Update lighttpd to 1.4.26
  8049. 2009.11, Released December 1st, 2009:
  8050. Additional fixes and cleanups.
  8051. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  8052. microperl, ncurses, vim
  8053. Issues resolved (http://bugs.uclibc.org):
  8054. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  8055. 2009.11-rc2, Released November 29th, 2009:
  8056. Additional fixes and cleanups.
  8057. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  8058. 2009.11-rc1, Released November 23rd, 2009:
  8059. Fixes all over the tree and new features.
  8060. Cleaned up / Simplified build directory layout. Refer to
  8061. docs/buildroot.html#using for details.
  8062. Target defconfig files moved to configs/ and listed in 'make help'
  8063. output.
  8064. Fixed *clean targets. Now clean removes everything generated,
  8065. so you can do a fresh rebuild. Distclean furthermore removes
  8066. kbuild tools and .config, bringing the source tree back in a
  8067. pristine state.
  8068. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  8069. soft / hardfloat setting for architecture, ensure target-ldd
  8070. gets installed.
  8071. New packages: divine, gvfs, libarchive, libmicrohttpd,
  8072. sdl_sound, swfdec, sysstat
  8073. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  8074. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  8075. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  8076. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  8077. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  8078. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  8079. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  8080. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  8081. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  8082. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  8083. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  8084. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  8085. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  8086. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  8087. Issues resolved (http://bugs.uclibc.org):
  8088. #301: allow to install libsmbclient
  8089. #303: add gvfs package
  8090. #477: Add sdl_sound package
  8091. #487: Make kismet package sexier
  8092. #511: New package usb_modeswitch
  8093. #527: misc fixes for dnsmasq package
  8094. #565: libevent: Bump version and clean up makefile
  8095. #587: Use iptables multipurpose binaries and bump to 1.4.4
  8096. #593: Missing early check for patch(1)
  8097. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  8098. #609: libmicrohttpd: New package
  8099. #615: python: Don't delete .py files unless asked
  8100. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  8101. #619: netkittelnet requires netkitbase to install, but there's no ...
  8102. #645: allow to build nbd-server with NBD package
  8103. #653: [SECURITY] Update php package to version 5.2.11
  8104. #655: Update sqlite package to version 3.6.18
  8105. #657: Bug in imagemagick-clean target
  8106. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  8107. #665: [PATCH] Samba package
  8108. #667: [PATCH] e2fsprogs
  8109. #683: SDL-dfb does not select directfb
  8110. #701: make install problem with unstripped binaries
  8111. #703: [SECURITY] Update openssl package to 0.9.8l
  8112. #705: Bump spawn-fcgi package to 1.6.3
  8113. #709: Bump lighttpd package to 1.4.24
  8114. #713: Migrate openntpd package to Makefile.autotools.in
  8115. #715: Bump libidn package to 1.15 and other fixes
  8116. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  8117. #731: Bump iw package to 0.9.17
  8118. 2009.08, Released August 31th, 2009:
  8119. Additional fixes and cleanups.
  8120. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  8121. sdl_net, util-linux.
  8122. Issues resolved (http://bugs.uclibc.org):
  8123. #529: util-linux doesn't find headers and include libs correctly
  8124. #557: Build ctorrent with SSL support if available
  8125. 2009.08-rc3, Released August 26th, 2009:
  8126. Additional fixes and cleanups.
  8127. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  8128. directfb, enchant, kernel headers.
  8129. Issues resolved (http://bugs.uclibc.org):
  8130. #471: Allow directfb compilation with debug
  8131. #541: Removal of CVS directories in target filesystem broken
  8132. #547: berkeleydb: Update config.{sub, guess}
  8133. #549: enchant: Fix dependencies.
  8134. #569: Fix alsa-utils build for x86 on x86-64
  8135. 2009.08-rc2, Released August 6th, 2009:
  8136. Additional fixes and new features.
  8137. New packages: libuuid, gcc 4.3.4.
  8138. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  8139. jamvm, libusb, microperl, neon, popt, sed, webkit.
  8140. Fixed issue with 'make oldconfig'
  8141. Issues resolved (http://bugs.uclibc.org):
  8142. #525: sed broken with external toolchain
  8143. #537: Fix gzip build with recent glibc
  8144. 2009.08-rc1, Released August 2nd, 2009:
  8145. Fixes all over the tree and new features.
  8146. Improvement of external toolchain support:
  8147. - Support for glibc toolchains.
  8148. - The toolchain configuration announced to Buildroot is
  8149. verified against the real toolchain configuration.
  8150. - Fixes, documentation.
  8151. Cleanup X.org support: clarified configuration options, and
  8152. removed mandatory dependency on useless libraries such as
  8153. libXt or libXaw.
  8154. New QT-based configurator, usable using 'make xconfig'.
  8155. Support for the Xtensa architecture.
  8156. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  8157. headers.
  8158. New packages: bmon, ctorrent, dosfstools, enchant,
  8159. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  8160. sdl_gfx, spawn-fcgi.
  8161. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  8162. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  8163. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  8164. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  8165. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  8166. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  8167. wpa-supplicant, xdriver_xf86-input-synaptics,
  8168. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  8169. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  8170. xutil_util-macros.
  8171. Issues resolved (http://bugs.uclibc.org):
  8172. #83: liblockfile fails to compile due to eaccess redefinition
  8173. #163: Xtensa architecture port
  8174. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  8175. #241: device mapper + lvm2: build together
  8176. #243: ctorrent: new package
  8177. #247: ntfsprogs: new package
  8178. #271: Library 'libgcc_s.so.1' not installed in search path
  8179. #287: New package libnl
  8180. #289: New package iw
  8181. #331: Update MPlayer to version 1.0rc2
  8182. #333: Bump sqlite package to 3.6.15
  8183. #349: update libsoup to version 2.26.2
  8184. #357: New package netstat-nat
  8185. #359,#413: Upgrade openvpn to Makefile.autotools.in
  8186. #367: linux kernel compile error for arm926t
  8187. #369: Add SDL_gfx package
  8188. #373: Support for building gstreamer without libxml
  8189. #379: update DirectFB to version 1.4.0
  8190. #383: gst-plugins-good: Allow soup plugin to be configured
  8191. #385: neon: Fix pkgconfig dependency
  8192. #387: Tremor not installed to toolchain
  8193. #389: New package bmon
  8194. #391: gstreamer: Bump version to 0.10.23
  8195. #393: gst-plugins-base: Bump version to 0.10.23
  8196. #395: gst-plugins-bad: New package
  8197. #403: Error while building iso9660 image
  8198. #409: Bump php package to 5.2.10
  8199. #411: ipsec-tools: Bump version to 0.7.2
  8200. #417: New package spawn-fcgi
  8201. #419: Bump lighttpd package to 1.4.23
  8202. #421: toolchain: Clean up toolchain locale support menu
  8203. #427: webkit: Update to WebKit svn r44552
  8204. #437: ltp-testsuite: Bump version to 20090630
  8205. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  8206. #467: DirectFB 1.4.1
  8207. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  8208. #491: libxml2: Bump version to 0.7.3
  8209. #495: Bump bind package to 9.5.1-P3 (security)
  8210. #497: OpenSSL RSA key generation hangs on x86_64
  8211. #509: Bump sqlite package to 3.6.16
  8212. #523: pciutils broken with external toolchain
  8213. #533: Update gamin to 0.1.10 to fix compilation
  8214. 2009.05, Released June 1st, 2009:
  8215. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  8216. version and marked ubifsroot as broken.
  8217. 2009.05-rc3, Released May 27th, 2009:
  8218. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  8219. busybox, curl, libusb, readline, python and strace.
  8220. Issues resolved (http://bugs.uclibc.org):
  8221. #345: libcurl package needs a urandom fix
  8222. 2009.05-rc2, Released May 19th, 2009:
  8223. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  8224. for newer hosts), stable kernel versions, busybox, cups,
  8225. dmraid, docker, mesa3d, rsync and updated defconfigs.
  8226. xserver marked as broken on AVR32 and atngw100-expanded
  8227. config removed.
  8228. Issues resolved (http://bugs.uclibc.org):
  8229. #167: metacity does not build
  8230. #295: gamin installs python support even if python is disabled
  8231. #323: gen_matypes fails to execute during build of Mesa when us...
  8232. 2009.05-rc1, Released May 5th, 2009:
  8233. Fixes all over the tree, further conversion of packages to
  8234. Makefile.autotools.in and we now build host versions of
  8235. packages where needed for build time dependencies instead of
  8236. relying on the correct versions being available on the build
  8237. host. Ancient toolchain / busybox versions have furthermore
  8238. been removed as announced in the 2009.02 release notes.
  8239. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  8240. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  8241. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  8242. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  8243. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  8244. util-linux, xorg7, xerces
  8245. Issues resolved (http://bugs.uclibc.org):
  8246. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  8247. and a ton of other improvements
  8248. #19: page.h missing by util-linux
  8249. #37: update libglib2 to version 2.18.4
  8250. #61: tslib puts staging_dir into pkgconfig file
  8251. #69: tar refuses to build
  8252. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  8253. #73: Bump openssl package to the latest version
  8254. #81: New package wpa_supplicant
  8255. #99: new package: flac
  8256. #101: update gstreamer packages
  8257. #105,#313: menuconfig segfaults on tinyx if wchar is not
  8258. selected
  8259. #107: convert libvorbis to Makefile.autotools.in
  8260. #109: Make pppd package avoid bsd err
  8261. #111: binutils 2.17 fails to build when texinfo >= 4.10
  8262. #133: Modify ncurses5-config to get correct include path
  8263. #137: Bump php to version 5.2.9
  8264. #139: Bump sqlite to 3.6.11 and convert to
  8265. Makefile.autotools.in
  8266. #145: Bump bind package to 9.5.1-P1 (security)
  8267. #147: buildroot toolchain fails to build w/binutils-2.19.1
  8268. #151: openssl package trivial fixes
  8269. #161: vim fails on patching with errors in configure.patch
  8270. #169: blackbox-0.70.1 does not build
  8271. #177: xdriver_xf86-input-keyboard does not build
  8272. #179: Upgrade dropbear to Makefile.autotools.in
  8273. #181: Update to Xorg 7.4
  8274. #187: ntfs-3g: could not build cross
  8275. #191: alsa-lib ARM binaries always built with EABI
  8276. #213: Bump wpa_supplicant package to version 0.6.9
  8277. #217: Bump openssl package to 0.9.8k (security)
  8278. #219: Toolchain build fails on m4
  8279. #225: m4 macros are out of place
  8280. #233: make ipv6 optional in iptables
  8281. #237: ncftp: convert to Makefile.autotools.in
  8282. #239: ntfs-3g: convert to Makefile.autotools.in
  8283. #245: lzop: new package
  8284. #271: Bump bind package to 9.5.1-P2 (security)
  8285. #277: Bump sqlite package to 3.6.16
  8286. #279: update libglib2 to version 2.20.1
  8287. #281: update DirectFB to version 1.2.8
  8288. #283: add taglib
  8289. #285: compilation of samba fails if IPV6 support is missing
  8290. #293: update samba to version 3.3.3
  8291. #299: add shared-mime-info package
  8292. #307: make openssl package respect build flags