CHANGES 380 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643
  1. 2020.08-rc3, released August 28th, 2020
  2. Fixes all over the tree.
  3. Infrastructure: Ensure RPATH entries that may be needed for
  4. dlopen() are not dropped by patchelf.
  5. Toolchain: Drop old GCC 6 based external Sourcery AMD64
  6. toolchain.
  7. Updated/fixed packages: assimp, davfs2, dillo, glibc,
  8. gnuradio, hostapd, ibm-sw-tpm2, ipmitool, json-c, libroxml,
  9. linux, mender, netopeer2, openal, openjpeg, python-matplotlib,
  10. ripgrep, shadowsocks-libev, trousers, xlib_libX11,
  11. xserver_xorg-server
  12. Issues resolved (http://bugs.uclibc.org):
  13. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  14. 2020.08-rc2, released August 24th, 2020
  15. Fixes all over the tree, including a number of fixes for
  16. compilation with GCC-10.
  17. Toolchain: Disallow building uClibc-ng for RISC-V 64-bit,
  18. because of issues with a missing __riscv_flush_icache()
  19. implementation.
  20. Defconfigs: CI20: Use mainline Linux and U-boot. Update
  21. Microchip sama5d27_wlsom1_ek_mmc_dev to use bluez5-utils
  22. instead of (the removed) legacy bluez-utils
  23. Updated/fixed packages: 18xx-ti-utils, aircrack-ng, apache,
  24. atest, bandwidthd, bellagio, bind, bird, bluez-alsa, boost,
  25. c-periphery, capnproto, chrony, collectd, cpio, cvs,
  26. dieharder, domoticz, dovecot, dovecot-pigeonhole, drbd-utils,
  27. dump1090, efl, elixir, f2fs-tools, feh, fluidsynth, fping,
  28. gdbm, gdk-pixbuf, ghostscript, gst1-plugins-bad,
  29. gstreamer1-editing-services, htop, ibm-sw-tpm2, ifplugd,
  30. iftop, igd2-for-linux, ima-evm-utils, iprutils, iputils,
  31. keepalived, kmsxx, libabseil-cpp, libcamera, libcurl,
  32. libfuse3, libnss, librtlsdr, libubox, libunwind, live555,
  33. lttng-tools, luabitop, mender-artifact, minizip,
  34. mjpg-streamer, mpd, mpv, mtd, ncftp, open-lldp, openal,
  35. opencv, opencv3, openfpgaloader, optee-os, owfs, php,
  36. pistache, prosody, pulseview, python-decorator,
  37. python-gunicorn, python-rpi-gpio, python-spidev,
  38. python3-decorator, python3-mako, python3-pyselftools, qt5,
  39. qt5webengine, rauc, redis, ripgrep, rtl8188eu, rtl8821au,
  40. setools, smstools3, supertux, tftpd, tpm2-abrmd,
  41. wpa_supplicant, xen, xlib_libX11, xserver_xorg-server
  42. New packages: python3-cython, python3-pycryptodomex
  43. Issues resolved (http://bugs.uclibc.org):
  44. #12876: nodejs fails to build when host-icu has been built before
  45. #13111: python-gunicorn: missing dependency on python-setuptools
  46. #13121: wpa_supplicant fails to build without libopenssl enabled
  47. #13146: raspberrypi3_defconfig: "Inappropriate ioctl for device"..
  48. #13156: package live555 new license
  49. #13166: python-rpi-gpio: does not work against aarch64, unint..
  50. 2020.08-rc1, released August 6th, 2020
  51. Toolchain:
  52. - GCC 10.x added, GCC 9.x is the default
  53. - binutils 2.34 added, binutils 2.33 is the default, binutils
  54. 2.31 removed
  55. - glibc updated to 2.31
  56. - ARC toolchain components updated to 2020.03-release.
  57. - Enable uClibc-ng usage for RISC-V 64-bit
  58. Infrastructure:
  59. - qmake-package was fixed to be compatible with
  60. BR2_PER_PACKAGE_DIRECTORIES
  61. - complete rewrite of the Gitlab CI Yaml configuration file,
  62. now generated directly by the Gitlab CI pipeline itselfs
  63. Misc:
  64. - cargo and cargo-bin packages removed, as cargo is now part
  65. of Rust itself
  66. Filesystem: ubinize configuration files can now use
  67. BINARIES_DIR to refer to the $(O)/images directory.
  68. New packages: bitwise, earlyoom, fuse-overlayfs, gloox,
  69. kodi-pvr-octonet, kodi-pvr-zattoo, libabseil-cpp, libcutl,
  70. libnids, libnpupnp, libodb, libodb-boost, libodb-mysql,
  71. libodb-pgsql, mbpfan, netopeer2, odb, parprouted,
  72. python-colorzero, python-gpiozero, python-pybind, python-yatl,
  73. python3-decorator, qt5quicktimeline, resiprocate, ttyd,
  74. unclutter-xfixes, urandom-scripts,
  75. New defconfigs: bananapi_m2_zero, freescale_imx8mnevk,
  76. globalscale_espressobin, imx6ullevk,
  77. microchip_sama5d27_wlsom1_ek, rock_pi_4, rock_pi_n10
  78. Removed packages: cargo, cargo-bin,
  79. kodi-peripheral-steamcontroller
  80. Issues resolved (http://bugs.uclibc.org):
  81. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_DIRECTORIES
  82. #12946: Grub: Decompressor is too big.
  83. #12986: Mtools: Error converting to codepage 850
  84. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  85. #13011: Incorrect selection of gcc version
  86. #13021: Minor code error when building granite-0.4.1
  87. #13026: rpi-firmware: must not rename start files
  88. #13046: Optimize for fast -Ofast is not compliant
  89. #13081: host-e2fsprogs attempts to create udev rules.d on build host if not exists
  90. #13101: BR audit2allow support
  91. 2020.05.2, released August 29th, 2020
  92. Important / security related fixes.
  93. Infrastructure: Ensure RPATH entries that may be needed for
  94. dlopen() are not dropped by patchelf.
  95. BR_VERSION_FULL/setlocalversion (used by make print-version
  96. and /etc/os-release): Properly handle local git tags
  97. Updated/fixed packages: apache, assimp, at91bootstrap3, bind,
  98. boost, busybox, capnproto, cegui, chrony, collectd, cpio,
  99. cryptsetup, cups, cvs, dbus, docker-engine, domoticz, dovecot,
  100. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  101. gd, gdk-pixbuf, ghostscript, glibc, gnuradio, grub2,
  102. gst1-plugins-bad, gstreamer1-editing-services, hostapd,
  103. ibm-sw-tpm2, iputils, jasper, json-c, libcurl, libressl,
  104. libwebsockets, linux, live555, mesa3d, mongodb, mosquitto,
  105. mpv, nodejs, opencv, opencv3, openfpgaloader, openjpeg,
  106. patchelf, perl, php, postgresql, prosody, python-django,
  107. python-gunicorn, python-matplotlib, ripgrep, rtl8188eu,
  108. rtl8821au, ruby, shadowsocks-libev, squid, systemd,
  109. tpm2-abrmd, tpm2-tools, trousers, uboot, webkitgtk, wireshark,
  110. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  111. xserver_xorg-server
  112. Issues resolved (http://bugs.uclibc.org):
  113. #12876: nodejs fails to build when host-icu has been built before
  114. #13111: python-gunicorn: missing dependency on python-setuptools
  115. #13121: wpa_supplicant fails to build without libopenssl enabled
  116. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  117. #13156: package live555 new license
  118. 2020.05.1, released July 25th, 2020
  119. Important / security related fixes.
  120. Toolchain:
  121. - Make external toolchain version check also work for
  122. toolchains configured with --with-gcc-major-version-only
  123. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  124. compiler supports it, fixing an issue with precompiled
  125. headers
  126. - Ensure debug libs from external toolchains are not installed
  127. into target if debugging is disabled
  128. Download:
  129. - Correct reproducibility issue in handling of git submodules
  130. for older git versions.
  131. - Fix file locking over NFS
  132. fs: Ensure cpio archive element order is reproducible
  133. Br2-external: Fix error reporting for invalid br2-external trees
  134. Per-package:
  135. - Fix an issue with python3 sysconfig data not getting
  136. correctly expanded
  137. - Fix per-package building for packages using the qmake
  138. infrastructure
  139. Updated/fixed packages: a10disp, asterisk, bind, brltty,
  140. cdrkit, clamav, cryptodev-linux, dbus, docker-cli,
  141. docker-engine, dvb-apps, e2fsprogs, exim, exiv2, freerdp, gdb,
  142. gdk-pixbuf, gerbera, gnutls, go, granite, grub2, gssdp,
  143. gst1-plugins-good, gst1-plugins-ugly, gupnp, intel-microcode,
  144. iproute2, irrlicht, iwd, jq, kodi, libcamera, libcec,
  145. libconfuse, libcurl, libevdev, libhttpserver, libmicrohttpd,
  146. libnss, libressl, libvncserver, libxml2, libxmlrpc, lxc,
  147. mbedtls, mediastreamer, mesa3d, meson, minizip, mongodb,
  148. mtools, mutt, nano, network-manager, nghttp2, ngircd, nodejs,
  149. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  150. oracle-mysql, paho-mqtt-c, pango, php, poco, prosody, putty,
  151. python-greenlet, python-urllib3, python-validators, python3,
  152. readline, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  153. sqlite, squid, strace, sunxi-mali-mainline-driver, syslog-ng,
  154. systemd, tcpreplay, tinydtls, upmpdcli, upx, vlc, webkitgtk,
  155. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  156. x11vnc, znc, zstd
  157. Issues resolved (http://bugs.uclibc.org):
  158. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  159. #12946: Grub: Decompressor is too big.
  160. #12986: Mtools: Error converting to codepage 850
  161. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  162. #13011: Incorrect selection of gcc version
  163. #13021: Minor code error when building granite-0.4.1
  164. #13026: rpi-firmware: must not rename start files
  165. #13031: nodejs: RangeError at new ArrayBuffer()
  166. #13046: Optimize for fast -Ofast is not compliant
  167. 2020.05, released June 1st, 2020
  168. Various fixes.
  169. Updated/fixed packages: arm-trusted-firmware, gcc, mp4v2, fmc,
  170. fmlib, glib-networking, libusb-compat, linux, qt5webengine,
  171. sysrepo, wampcc, xen
  172. 2020.05-rc3, released May 29th, 2020
  173. Fixes all over the tree.
  174. Infrastructure: Support checking download hashes for packages
  175. coming from Subversion.
  176. Defconfigs: Increase boot partition size to 64MB for Freescale
  177. boards to allow space for bigger kernels.
  178. Updated/fixed packages: audit, bind, dovecot, efl, erlang,
  179. ffmpeg, fio, gerbera, gnupg, leveldb, lrzip, ltrace, matio,
  180. mesa3d, mp4v2, prosody, qemu, qt5declarative, speexdsp,
  181. systemd, tremor, uboot-tools, unbound, wireshark
  182. Removed packages: wiringpi
  183. Issues resolved (http://bugs.uclibc.org):
  184. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  185. #12686: recipe for target 'install_dev' failed (libcrypto.so..)
  186. 2020.05-rc2, released May 22nd 2020
  187. Fixes all over the tree.
  188. U-Boot: Support building with Python 3.x instead of Python
  189. 2.x. Since U-Boot 2020.01, various U-Boot build scripts use
  190. Python 3.x instead of Python 2.x, so add an option to pull in
  191. host-python3 rather than host-python. Also fix a number of
  192. defconfigs to use this new option.
  193. Updated/fixed packages: apparmor, binutils, bison, brltty,
  194. c-icap, cegui, checkpolicy, clamav, crda, cvs, docker-cli,
  195. docker-engine, domoticz, elf2flt, exfatprogs, fakeroot,
  196. ffmpeg, freerdp, gcc, glibc, gnuconfig, irrlicht, kmod,
  197. libexif, libpam-tacplus, libssh2, libv4l, libvncserver,
  198. localedef, lrzip, mariadb, matchbox, mbuffer, mesa3d,
  199. mesa3d-headers, meson, netsniff-ng, openldap, openocd,
  200. optee-os, p7zip, paho-mqtt-c, php, piglit, pigz,
  201. python-argon2-cffi, python-attrs, python-future,
  202. python-markdown, python-pycryptodomex, python-pyqt5, qt5base,
  203. rpi-firmware, rustc, squashfs, squid, stella, suricata,
  204. systemd, uacme, uclibc, util-linux, vboot-utils
  205. New packages: python3-pyelftools
  206. Removed packages: ezxml, mtdev2tuio, python-pycrypto
  207. Issues resolved (http://bugs.uclibc.org):
  208. #10551: PowerPC SPE and Musl
  209. #12256: package tar is outdated (1.29 is 3 years old)
  210. #12271: python-iptables runtime dependencies
  211. #12321: host-generic-package: PKG_DL_OPTS not used for host package
  212. #12391: CMake-based host package fails to include output/host/include
  213. #12431: ethernet no detected on nanopi neo 2
  214. #12521: RISCV RV32IA selected, RV64GC output
  215. #12586: avahi failure
  216. #12596: host-e2fsprogs: tune2fs incompatibility on older glibc..
  217. #12611: ntp hash is not matching with upstream 4.2.8p13
  218. #12626: PHP missing header files within 2020.02
  219. #12631: glibc support Power-PC SPE
  220. #12656: bison fails to relocate with relocate-sdk.sh
  221. #12661: cups problems in buildroot
  222. #12686: recipe for target 'install_dev' failed (libcrypto.so:..
  223. #12691: host-rust build fails
  224. #12761: Buildroot fails when building GCNano binaries for the STM..
  225. #12786: Systemd spawns two getty processes when the getty port..
  226. #12806: There are multiple issues in buildroot that faults cups..
  227. #12826: nodejs-12.16.1: error: 'uv_sleep' was not declared in..
  228. #12831: RPI-firmware package: DTB-overlay dependency
  229. #12836: libunwind: package does not show up in menuconfig for..
  230. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  231. #12866: should we be disabling bash executable path caching?
  232. #12886: GMP built in wrong order (?)
  233. #12891: QEMU, libvirt-bin, qemu-kvm Package Support required
  234. #12901: GStreamer doesn't build on 2020-05 rc1 with GObject..
  235. #12906: qt PrefixPath is wrong on 2020.05-rc1
  236. #12921: nodejs-12.16.1: error: overriding 'virtual icu_65::..
  237. 2020.05-rc1, released May 7th 2020
  238. Addition of support for gobject-introspection: both the
  239. gobject-introspection package itself, but also introspection
  240. support was enabled in a number of other packages.
  241. Support for Qt 5.6 was dropped as its support was dropped
  242. upstream, only one version of Qt is supported at the moment:
  243. Qt 5.14.2.
  244. Addition of support for the apparmor Linux security module, by
  245. adding the necessary user-space packages.
  246. Addition of a qmake package infrastructure, now used by most
  247. Qt-related packages.
  248. The Luarocks package infrastructure has been extended to
  249. support build host packages.
  250. The package infrastructure was improved to allow each package
  251. to indicate the Linux kernel configuration options it needs.
  252. Addition of support for generating filesystem images using the
  253. EROFS filesystem.
  254. The logic that calculates the list of files installed by each
  255. package was reworked to be compatible with the top-level
  256. parallel build functionality.
  257. Addition of a package for a pre-compiled ARM32 bare-metal
  258. toolchain, which can be used to build ARM32 code in ARM64
  259. configurations, such as firmware/bootloader code.
  260. The Qemu defconfigs are now boot-tested in Qemu as part of the
  261. Gitlab continuous integration.
  262. Toolchain: gcc 9.x bumped to 9.3.0, gcc 8.x bumped to 8.4.0,
  263. gdb bumped to 8.3.1.
  264. New packages: apcupsd, apparmor, arm-gnu-a-toolchain, bearssl,
  265. belle-sip, belr, cage, chartjs, erofs-utils, exfatprogs,
  266. gobject-introspection, ibm-sw-tpm2, imx-seco, jbig2dec,
  267. libapparmor, libiberty, libfuse3, libtextstyle, libudfread,
  268. libuhttpd, libuwsc, lua-lyaml, matio, mbuffer, netdata,
  269. openfpgaloader, perl-i18n, perl-locale-maketext-lexicon,
  270. perl-lwp-protocol-https,
  271. perl-mojolicious-plugin-authorization,
  272. perl-mojolicious-plugin-cspheader,
  273. perl-mojolicious-plugin-i18n,
  274. perl-mojolicious-plugin-securityheader, perl-mozilla-ca,
  275. perl-path-class, pistache, pkcs11-helper, prelink-cross,
  276. python-argon2-cffi, python-canopen, python-cbor2,
  277. python-filelock, python-flatbuffers, python-greenlet,
  278. python-modbus-tk, python-pyalsa, python-pysftp, python-regex,
  279. python-snappy, rtty, tinyproxy, udev-gentoo-scripts, unbound,
  280. vuejs, wlroots.
  281. New defconfigs: freescale_imx6ullevk, freescale_imx8qmmek,
  282. nanopi_neo4, nanopi_r1, nitrogen8mm, nitrogen8mn, olpc_xo1,
  283. olpc_xo175, roc_rk3399_pc, stm32mp157a_dk1, zynq_qmtech
  284. Issues resolved (http://bugs.uclibc.org):
  285. #10386: Add an option to put all compiled executables that
  286. show up on target/ in staging/ as well
  287. #11866: iniramfs file system fails to boot using Grub on EFI x86_64
  288. #12666: Doesn't pick up a custom bash profile
  289. #12696: Uboot 2020.01 Problem loading Linux kernel on Nano PI NEO
  290. #12701: [patch] wpa_supplicant must depend on openssl
  291. #12711: host-localedef 2.30-20 fails to compile on fedora 32 (gcc 10.0.1)
  292. #12716: bio.h not found
  293. #12726: systemctl preset-all failed for ctrl-alt-del.target
  294. #12731: rtl8188eu not buildung for banana pi M1 (glib, systemd, 4.18.12)
  295. #12746: "sysdig" package description points to
  296. http://sysdig.org, which bounces to malware site
  297. #12751: OpenJdk package installation issues on target
  298. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  299. #12811: bootstrap stuck and no login prompt
  300. 2020.02.5, released August 29th, 2020
  301. Important / security related fixes.
  302. Infrastructure: Ensure RPATH entries that may be needed for
  303. dlopen() are not dropped by patchelf.
  304. BR_VERSION_FULL/setlocalversion (used by make print-version
  305. and /etc/os-release): Properly handle local git tags
  306. Updated/fixed packages: apache, at91bootstrap3, bind, boost,
  307. busybox, capnproto, chrony, collectd, cpio, cryptsetup, cups,
  308. cvs, dbus, docker-engine, domoticz, dovecot,
  309. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  310. gd, gdk-pixbuf, ghostscript, glibc, grub2, gst1-plugins-bad,
  311. hostapd, iputils, jasper, json-c, libcurl, libwebsockets,
  312. linux, live555, mesa3d, mosquitto, mpv, nodejs, opencv,
  313. opencv3, openjpeg, patchelf, perl, php, postgresql,
  314. python-django, python-gunicorn, python-matplotlib, ripgrep,
  315. rtl8188eu, rtl8821au, ruby, shadowsocks-libev, squid,
  316. tpm2-abrmd, tpm2-tools, trousers, uacme, webkitgtk, wireshark,
  317. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  318. xserver_xorg-server
  319. Issues resolved (http://bugs.uclibc.org):
  320. #12876: nodejs fails to build when host-icu has been built before
  321. #13111: python-gunicorn: missing dependency on python-setuptools
  322. #13121: wpa_supplicant fails to build without libopenssl enabled
  323. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  324. #13156: package live555 new license
  325. 2020.02.4, released July 26th, 2020
  326. Important / security related fixes.
  327. Toolchain:
  328. - Make external toolchain version check also work for
  329. toolchains configured with --with-gcc-major-version-only
  330. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  331. compiler supports it, fixing an issue with precompiled
  332. headers
  333. - Ensure debug libs from external toolchains are not installed
  334. into target if debugging is disabled
  335. Download:
  336. - Correct reproducibility issue in handling of git submodules
  337. for older git versions.
  338. - Fix file locking over NFS
  339. fs: Ensure cpio archive element order is reproducible
  340. Br2-external: Fix error reporting for invalid br2-external trees
  341. Per-package:
  342. - Fix an issue with python3 sysconfig data not getting
  343. correctly expanded
  344. - Fix per-package building for packages using the qmake
  345. infrastructure
  346. Updated/fixed packages: a10disp, asterisk, bind, cdrkit,
  347. checkpolicy, clamav, dbus, docker-cli, docker-engine,
  348. dvb-apps, e2fsprogs, exim, exiv2, freerdp, gnutls, go, grub2,
  349. gssdp, gst1-plugins-good, gst1-plugins-ugly, gupnp,
  350. intel-microcode, iproute2, irrlicht, iwd, jq, kodi, libcamera,
  351. libconfuse, libcurl, libglib2, libhttpserver, libmicrohttpd,
  352. libopenssl, libvncserver, libxml2, libxmlrpc, lxc, mbedtls,
  353. mesa3d, meson, mongodb, mtools, mutt, nghttp2, ngircd, nodejs,
  354. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  355. oracle-mysql, paho-mqtt-c, pcre, php, poco, prosody, putty,
  356. python-twisted, python-urllib3, python-validators, python3,
  357. qt5xmlpatterns, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  358. sqlite, squid, syslog-ng, systemd, tcpreplay, tinydtls,
  359. upmpdcli, upx, vlc, webkitgtk, wireguard-linux-compat,
  360. wireshark, wpebackend-fdo, wpewebkit, zstd
  361. Issues resolved (http://bugs.uclibc.org):
  362. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  363. #12946: Grub: Decompressor is too big.
  364. #12986: Mtools: Error converting to codepage 850
  365. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  366. #13011: Incorrect selection of gcc version
  367. #13026: rpi-firmware: must not rename start files
  368. #13031: nodejs: RangeError at new ArrayBuffer()
  369. #13046: Optimize for fast -Ofast is not compliant
  370. 2020.02.3, released June 3rd, 2020
  371. Important / security related fixes.
  372. Fix various build issues of host packages on hosts using GCC
  373. 10.
  374. Updated/fixed packages: arm-trusted-firmware, audit, bind,
  375. binutils, bison, clamav, crda, dovecot, dtc, efl, elf2flt,
  376. erlang, fakeroot, ffmpeg, fmc, fmlib, freerdp, gcc, git,
  377. glib-networking, gnupg, leveldb, libexif, libssh2,
  378. libusb-compat, linux-headers, lrzip, ltrace, mariadb, mesa3d,
  379. mp4v2, openldap, openocd, perl, php, prosody,
  380. python-pycryptodomex, python-pyqt5, qemu, rpi-firmware, rustc,
  381. speexdsp, sysrepo, systemd, tremor, vboot-utils, wireshark,
  382. xen
  383. Removed packages: python-pycrypto
  384. Issues resolved (http://bugs.uclibc.org):
  385. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  386. #12656: bison fails to relocate with relocate-sdk.sh
  387. #12671: leveldb won't detect that snappy is present (static..
  388. #12691: host-rust build fails
  389. #12831: RPI-firmware package: DTB-overlay dependency
  390. 2020.02.2, released May 12th, 2020
  391. Important / security related fixes.
  392. Musl: Disallow on PPC64 cores without AltiVec support
  393. (E.G. e5500).
  394. fs/cpio: Correctly handle booting with 'console='
  395. release: Ensure temporary .br2-external.* files are not
  396. included in the release tarball
  397. Defconfigs: Fix various mistyped config options, or config
  398. options where the dependencies were no longer met.
  399. Updated/fixed packages: apache, azure-iot-sdk-c, binutils,
  400. boinc, c-ares, cvs, docker-cli, docker-containerd,
  401. docker-engine, domoticz, e2fsprogs, efl, evtest, exim, ffmpeg,
  402. freerdp, gcc, gflags, glibc, gnuconfig, haproxy, imx-gpu-2d,
  403. irrlicht, jpeg kodi-pvr-vuplus, libarchive, libcoap,
  404. libfpm-extra, libglib2, libhtp, libid3tag, libinput, libmad,
  405. libopenssl, libsepol, libssh, libv4l, libvncserver, libwpe,
  406. localedef, mariadb, matchbox, mbedtls, mc, mesa3d-headers,
  407. meson, midori, msgpack, netsnmp, nginx, ogre, openjdk,
  408. openldap, openvpn, p7zip, paho-mqtt-c, php, polkit, python,
  409. python-attrs, python-crossbar, python-dpkt, python-flask,
  410. python-future, python-iptables, python-jedi, python-markdown2,
  411. python3, qemu, qpdf, qt5, samba4, squashfs, squid, strongswan,
  412. suricata, tzdata, util-linux, vlc, wget, webkitgtk,
  413. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  414. zic
  415. Issues resolved (http://bugs.uclibc.org):
  416. #11866: initramfs file system fails to boot using Grub on EFI x86_64
  417. #12271: python-iptables runtime dependencies
  418. #12726: systemctl preset-all failed for ctrl-alt-del.target
  419. #12751: OpenJdk package installation issues on target
  420. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  421. #12811: bootstrap stuck and no login prompt
  422. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  423. 2020.02.1, released April 10th, 2020
  424. Important / security related fixes.
  425. core: Also fixup /lib references in libtool .la files, similar
  426. to how it is done for /usr/*.
  427. Various fixes for builds with per-package target/host
  428. directories.
  429. toolchain: Fix kernel headers validation check for external
  430. toolchains. Fix make 4.3+ compatibility in external toolchain
  431. logic.
  432. fs/initramfs: fix show-info so it also shows the usual
  433. rootfs-related variables.
  434. Updated/fixed packages: arm-trusted-firmware, barebox-aux,
  435. bluez5_utils, bubblewrap, busybox, civetweb, cog, collectd,
  436. ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy, hiredis, hostapd,
  437. kmscube, kodi-screensaver-rsxs, libical, libinput, libexif,
  438. libopenssl, libsndfile, linux, linux-tools, llvm, localedef,
  439. mcrypt, mesa3d, meson, monit, nftables, ntp, opencv3,
  440. oprofile, php, pinentry, polkit, pure-ftpd, python-pyyaml,
  441. qt5, quagga, radvd, rcw, redis, rocksdb, samba4, screen,
  442. sdbusplus, swupdate, sysdig, sysklogd, syslinux, syslog-ng,
  443. tor, tslib, uacme, util-linux, vala, vlc,
  444. wireguard-linux-compat, wireguard-tools, wireshark,
  445. wpa_supplicant, xserver_xorg-server
  446. Issues resolved (http://bugs.uclibc.org):
  447. #12711: host-localedef 2.30-20 fails to compile on fedora 32
  448. #12746: "sysdig" package description points to http://sysdig.org, ..
  449. 2020.02, released March 8th, 2020
  450. Various fixes.
  451. br2-external: Fix compatibility with make 4.3+
  452. Updated/fixed packages: bash, bcm2835, binutils, cups,
  453. erlang-p1-acme, fbgrab, gr-osmosdr, gst1-plugins-base,
  454. gst1-validate, gstreamer1, guile, jhead, libdrm, libevdev,
  455. libinput, libnss, libsndfile, libvncserver, linux-firmware,
  456. mesa3d, nodejs, openjdk-bin, openvmtools, optee-test, patch,
  457. php, piglit, pppd, python-django, qemu, qt5base, ruby,
  458. ser2net, swupdate, thrift, zziplib
  459. Removed packages: classpath, jamvm
  460. Issues resolved (http://bugs.uclibc.org):
  461. #12606: fbgrab location has changed
  462. 2020.02-rc3, released March 2nd, 2020
  463. Fixes all over the tree.
  464. Infrastructure: Rework file list handling to fix race
  465. conditions when building with per-package target and host
  466. directories and top-level parallel builds.
  467. Updated/fixed packages: aufs, binutils, blktrace, brltty,
  468. cairo, dnsmasq, docker-compose, elf2flt, exim, exiv2, git,
  469. kodi-inputstream-adaptive, libarchive, libcgroup, libgdiplus,
  470. libssh2, libvncserver, libvorbis, linknx, linux-firmware, lxc,
  471. lz4, mosquitto, openjpeg, openrc, poco, proftpd, pure-ftpd,
  472. python3, python-multidict, python-setuptools-scm-git-archive,
  473. qpdf, qt5tools, rdesktop, rocksdb, shellinabox, squid,
  474. suricata, swig, systemd, taglib, util-linux, wireshark, zsh
  475. Issues resolved (http://bugs.uclibc.org):
  476. #12571: ltp-testsuite : Build failure
  477. #12576: 2020.02-RC1: error while loading shared libraries: ...
  478. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  479. 2020.02-rc2, released February 26th, 2020
  480. Fixes all over the tree.
  481. Toolchain: Ensure strong SSP can only be enabled if the
  482. (external) toolchain supports it.
  483. Fix a race condition related to creating the output/staging
  484. symlink on systems with coreutils < 8.27.
  485. Drop support for the (end of life) Qt 5.6 variant.
  486. Updated/fixed packages: at, armadillo, audiofile, bash,
  487. busybox, erlang, fail2ban, fluidsynth, ipsec-tools, jpeg-turbo,
  488. kvm-unit-tests, libftdi1, libinput, libsvgtiny, libtomcrypt,
  489. libupnpp, libxml2, linux-tools, luv, mbedtls, mesa3d, minicom,
  490. openvmtools, php, qt5, qt5webengine, qwt, radvd, rcw,
  491. sdbusplus, systemd, tpm2-tss, vorbis-tools
  492. Issues resolved (http://bugs.uclibc.org):
  493. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  494. 2020.02-rc1, released February 18th, 2020
  495. Fixes all over the tree and new features.
  496. Add experimental support for building with a per-package
  497. target and host directory. This still has some rough edges,
  498. but brings a number of advantages:
  499. - Packages will only be able to access the explicitly listed
  500. dependencies and not any other packages that happen to be
  501. built before, ensuring correct dependency information in
  502. Buildroot.
  503. - Possibility for top-level parallel builds, speeding up
  504. builds on multicore machines.
  505. Core: Ensure package-file-lists data is correct after
  506. incremental builds as well.
  507. Architecture: Add support for ARC-HS38 with 64bit multiplier
  508. variant, allow building glibc for big endian ARC, handle 16KB
  509. MMU page size for ARC in toolchain wrapper.
  510. Toolchain: Add binutils 2.33.1, GCC 7.5.0, Arm 9.2-2019.12
  511. toolchains, ARC 2019.09 toolchain. Allow using custom kernel
  512. headers newer than what is known by Buildroot.
  513. pkg-stats: Support for CVE vulnerability reporting by
  514. comparing to NVD database.
  515. Reproducible builds: The go -trimpath option is now used to
  516. get rid of absolute build paths, __FILE__ and __BASE_FILE__
  517. defines are now handled in the toolchain wrapper.
  518. Systemd: Build host variant and use systemctl to automatically
  519. enable unit files rather than manually managing symlinks.
  520. Util-linux: Ensure that hwclock is built without GPLv3
  521. code. Notice that builds with hwclock has contained
  522. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  523. New defconfigs: Beelink GS1, Raspberrypi4 64bit
  524. New packages: alura, avro-c, bubblewrap, cctz, cereal,
  525. cpuburn-arm, elixir, erlang-base64url, erlang-idna,
  526. erlang-jose, erlang-p1-acme, erlang-p1-mqtree,
  527. erlang-p1-yconf, fluid-soundfont, fluidsynth, gcnano-binaries,
  528. gensio, glslsandbox-player, libargon2, libmodsecurity,
  529. libpam-nfc, libtelnet, lua-codegen, lua-livr, lua-livr-extra,
  530. lua-rotas, lua-silva, mfoc, network-manager-openvpn,
  531. nginx-modsecurity, perl-crypt-openssl-aes,
  532. perl-math-prime-util, pipewire, ptm2human, python-aenum,
  533. python-aiohttp-debugtoolbar, python-aiohttp-mako,
  534. python-aiologstash, python-aiosignal, python-aiozipkin,
  535. python-async-lru, python-avro, python-bunch, python-crontab,
  536. python-dnspython, python-entrypoints, python-esptool,
  537. python-frozenlist, python-future, python-gitdb, python-janus,
  538. python-lockfile, python-logstash, python-nested-dict,
  539. python-pbr, python-pyaes, python-pydantic, python-smmap2,
  540. python-sockjs, python-zc-lockfile, raspi-gpio, rocksdb,
  541. sdbusplus, spidermonkey, thermald, ti-sgx-libgbm, tinyssh,
  542. tio, umtprd, weston-imx, wireguard-linux-compat,
  543. wireguard-tools, xdg-dbus-proxy
  544. Removed packages: bluez_utils, celt051, erlang-p1-iconv, fis,
  545. gadgetfs-test, libplayer, gstreamer, gst-ffmpeg,
  546. gst-fsl-plugins, gst-omapfb, gst-plugins-bad,
  547. gst-plugins-base, gst-plugins-good, gst-plugins-ugly,
  548. perl-digest-md5, perl-mime-base64, perl-net-ping,
  549. python-scapy3k, wireguard
  550. Issues resolved (http://bugs.uclibc.org):
  551. #11906: the new version of mesa3d cannot support etnaviv when..
  552. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  553. #12121: PyQt5.QtSerialPort and other modules not being built
  554. #12256: package tar is outdated (1.29 is 3 years old
  555. #12286: Can't import gobject in python 3.8
  556. #12376: python-scapy3k is deprecated
  557. #12386: carriage return issue when "make menuconfig"
  558. #12441: qt5webengine build error: asm/errno.h: No such file or..
  559. #12446: Buildroot fails to finish installing packages
  560. #12456: qtvirtualkeyboard: No such file or directory
  561. #12461: libglib2 build files with deep directory structure
  562. #12481: minicom fails when output directory path contains "m4"
  563. #12501: libnss-3.49.1: ld error: multiple definition of `gcm_..
  564. #12526: host-nodejs 12.14.1: configure fail: AttributeError: ..
  565. #12536: Linux-Headers extracting failure
  566. #12546: Ninja 1.10 build Error
  567. 2019.11.3, released April 10th, 2020
  568. Important / security related fixes.
  569. core: Fix compatibility with make 4.3+. Also fixup /lib
  570. references in libtool .la files, similar to how it is done for
  571. /usr/*.
  572. toolchain: Fix kernel headers validation check for external
  573. toolchains.
  574. fs/initramfs: fix show-info so it also shows the usual
  575. rootfs-related variables.
  576. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  577. civetweb, cog, collectd, ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy,
  578. hiredis, hostapd, kmscube, libical, libopenssl, libsndfile,
  579. linux-tools, llvm, monit, ntp, php, pure-ftpd, radvd, redis,
  580. samba4, screen, sysdig, syslinux, syslog-ng, tor, uacme,
  581. util-linux, vala, vlc, wpa_supplicant, xserver_xorg-server
  582. Issues resolved (http://bugs.uclibc.org):
  583. #12746: "sysdig" package description points to http://sysdig.org, ..
  584. 2019.11.2, released March 16th, 2020
  585. Important / security related fixes.
  586. Core: Ensure package-file-lists data is correct after
  587. incremental builds as well.
  588. Fix a race condition related to creating the output/staging
  589. symlink on systems with coreutils < 8.27.
  590. Toolchain: ARC tools bumped to arc-2019.09.
  591. Br2-external: Fix patch handling when external linux-extension
  592. packages are used. Fix compatibility with make 4.3+
  593. Util-linux: Ensure that hwclock is built without GPLv3
  594. code. Notice that builds with hwclock has contained
  595. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  596. Updated/fixed packages: armadillo, at, bcm2835, binutils,
  597. blktrace, bluez-alsa, bootstrap, brltty, busybox, cairo,
  598. clamav, cog, cups, czmq, dnsmasq, docker-containerd, dovecot,
  599. dovecot-pigeonhole, e2fsprogs, elf2flt, eudev, exim, exiv2,
  600. fbgrab, gettext-tiny, glibc, go, grep, gst1-validate, guile,
  601. imagemagick, jhead, jpeg-turbo, kvm-unit-tests, lapack,
  602. libarchive, libcgroup, libdrm, libevent, libexif, libftdi1,
  603. libgdiplus, libjpeg, libsigrok, libsndfile, libssh2,
  604. libsvgtiny, libvncserver, libvorbis, libxml2, libxslt, linknx,
  605. lxc, lz4, mariadb, mbedtls, meson, mongoose, mosquitto, musl,
  606. ncurses, nodejs, ntfs-3g, ogre, opencv3, openjdk, openjpeg,
  607. openrc, openswan, openvmtools, optee-test, patch, php, piglet,
  608. postgresql, pppd, proftpd, pure-ftpd, python-django,
  609. python-pyqt5, python-setuptools-scm-git-archive, python3,
  610. qemu, qt5base, qt5tools, qt5virtualkeyboard, qt5webengine,
  611. qwt, rdesktop, ruby, runc, samba4, shellinabox,
  612. skeleton-init-openrc, smartmontools, spdlog, sqlcipher, squid,
  613. suricata, swig, swupdate, sysklogd, taglib, thrift,
  614. ti-cgt-pru, uclibc, util-linux, vorbis-tools, webkitgtk,
  615. wireshark, wpebackend-fdo, wpewebkit, xen,
  616. xserver_xorg-server, zeromq, zsh, zziplib
  617. Issues resolved (http://bugs.uclibc.org):
  618. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  619. #12331: meson issue
  620. #12456: qtvirtualkeyboard: No such file or directory
  621. #12461: libglib2 build files with deep directory structure
  622. #12481: minicom fails when output directory path contains "m4"
  623. #12606: fbgrab location has changed
  624. 2019.11.1, released January 12th, 2020
  625. Important / security related fixes.
  626. Infrastructure: kconfig: Fix reconfigure logic, python: Ensure
  627. correct compiler and linker flags are used for compiled code
  628. utils/scanpypi: Remind users to update DEVELOPERS
  629. Defconfigs: imx6-sabresd: Fix the Qt5 display names,
  630. imx8: Drop extra copy of U-Boot DTB
  631. Updated/fixed packages: acsccid, bitcoin, boost, busybox,
  632. cc-tool, cmocka, cpio, cups, dante, dialog, dillo, docker-cli,
  633. docker-containerd, docker-engine, easy-rsa, ebtables,
  634. ecryptfs-utils, efl, ffmpeg, gdb, git, glibc, gnupg2, go,
  635. gpsd, grpc, gst1-plugins-bad, iputils, jasper,
  636. kf5-kcoreaddons, leveldb, libarchive, libfribi, libgit2,
  637. libkrb5, libp11, librsvg, libssh, libtomcrypt, libuio, libv4l,
  638. lirc-tools, log4cplus, lrzip, lvm2, mali-t76x,
  639. matchbox-desktop, mender-grubenv, mmc-utils, mosquitto,
  640. nodejs, ntp, openipmi, opencv3, openpowerlink, openrc, pango,
  641. perl-sys-cpu, pimd, postgresql, pulseaudio, python-brotli,
  642. python-coherence, python-crc16, python-django, python-dpkt,
  643. python-gobject, python-pyasn-modules, python-pypcap,
  644. python-pyqt5, python-subprocess32, python3, qpdf,
  645. qt-webkit-kiosk, qt5virtualkeyboard, qt5webengine, quota,
  646. rabbitmq-c, rauc, rpcbind, rtl8821au, runc, rygel, samba4,
  647. sdl2, setserial, snort, spidev_test,
  648. sunxi-mali-mainline-driver, syslog-ng, sysrepo, tcllib, tftpd,
  649. usbmount, w_scan, wavpack, wsapi, wsapi-fcgi, wsapi-xavante,
  650. x265, xserver_xorg-server, ytree, zip
  651. Issues resolved (http://bugs.uclibc.org):
  652. #12121: PyQt5.QtSerialPort and other modules not being built
  653. #12286: Can't import gobject in python 3.8
  654. 2019.11, released December 1st, 2019
  655. Various fixes.
  656. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  657. <pkg>_DL_OPTS by default, just like it is done for a number of
  658. other package variables.
  659. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  660. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  661. the (rare) case where the .py files are needed at runtime
  662. rather than .pyc.
  663. Updated/fixed packages: am33x-cm3, bind, collectd, go, gob2,
  664. gst1-plugins-bad, haproxy, jasper, jpeg-turbo, libdrm,
  665. libftdi, libftdi1, libnss, libselinux, libstrophe, lzma,
  666. minicom, network-manager, nodejs, oniguruma, opencv3,
  667. openvmtools, perl-gdgraph, perl-gdtextutil, prosody,
  668. python-cchardet, systemd, tiff, wolfssl,
  669. Issues resolved (http://bugs.uclibc.org):
  670. #11416: check-uniq-files staging issue
  671. #12146: Oprofile runtime issue
  672. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  673. #12171: Python-opencv needs config.py and config-3.7.py to run..
  674. #12196: duma package
  675. #12211: host-nodejs 10.15.3 package fail to build
  676. #12316: tzdata fails to install with empty "default local time"
  677. #12326: network-manager build fails with missing glib error
  678. #12366: Gstreamer1 gst1-plugins-bad do not compile with RPI-Userland
  679. 2019.11-rc3, released November 24th, 2019
  680. Fixes all over the tree.
  681. Updated/fixed packages: asterisk, clamav, domoticz, faifa,
  682. gerbera, kmod, kvm-unit-tests, libupnp18, linux-serial-test,
  683. lsof, ltp-testsuite, lxc, mesa3d, mesa3d-headers, perl, php,
  684. postgresql, qemu, rauc, redis, rpcbind, spice, spice-protocol,
  685. systemd, tftpd, waylandpp, webkitgtk, zip
  686. 2019.11-rc2, released November 16th, 2019
  687. Fixes all over the tree.
  688. Toolchain: ARC tools bumped to arc-2019.09-rc1, ensure
  689. external toolchain kernel headers version check correctly stop
  690. the build on mismatch
  691. Meson: Fix generation of global cross-compilation.conf
  692. Download: Also use the package download method for extra
  693. downloads from the same site, so it does not get confused by
  694. URLs containing '+'
  695. Defconfigs: Fix boot issue for beaglebone
  696. Updated/fixed packages: bird, chrony, connman, dhcp, domoticz,
  697. dropwatch, dtc, elf2flt, gettext-tiny, glog, intel-microcode,
  698. ipsec-tools, jailhouse, kodi, libfribi, libmbim, libressl,
  699. libsigrokdecode, libsvgtiny, linux-serial-test, ltp-testsuite,
  700. lvm2, lxc, mariadb, mesa3d, minizip, ndisc6, neardal, ninja,
  701. ofono, openvmtools, oracle-mysql, qt5wayland, safeclib, socat,
  702. sudo, systemd, wpewebkit, xserver_xorg-server
  703. 2019.11-rc1, released November 5th, 2019
  704. Fixes all over the tree and new features.
  705. Dependencies: Gcc/g++ 4.8 or newer is now required on the
  706. build host.
  707. Ensure host has JSON::PP perl module installed if
  708. webkitgtk/wpewebkit packages are enabled as it is needed
  709. during their build process.
  710. Toolchain: Add support for the D programming language (GCC
  711. 9.x, Glibc).
  712. GCC 9.x updated to 9.2.0, Glibc updated to 2.30, Musl updated
  713. to 1.1.24, uClibc-ng updated to 1.0.32, ARC toolchain updated
  714. to arc-2019.09-eng002.
  715. Musl: Add a patch to add support for
  716. sched_{get,set}scheduler() and sched_{get,set}param() for
  717. compatibility.
  718. Generate check-headers program under BUILD_DIR rather than
  719. /tmp to fix issues with distributions mounting /tmp noexec.
  720. Also copy libssp.so for external toolchains if SSP
  721. to handle toolchains providing SSP support in libssp rather
  722. than in the C library
  723. New defconfigs: Beaglebone AI, FriendlyARM Nanopi NEO Plus2,
  724. Libre Computer "La Frite", QEMU Armv7-A with trustzone/OP-TEE,
  725. STM32MP157 Discovery Kit
  726. Arch: RISC-V: Default to a sensible floating point ABI based
  727. on the selected ISA extensions rather than always defaulting
  728. to ILP32/64
  729. Graph-size: Package sizes are now shown in human readable form
  730. (Kib/Mib/Gib) rather than always in Kib. Binary (KB/MB/GB)
  731. format can be selected using the --binary option. The cut-off
  732. limit for classifying packages as "other" is now configurable
  733. using the --size-limit option.
  734. Br2-external: Linux kernel extensions can now also be provided
  735. in an external tree by adding packages under
  736. linux/linux-ext-*.mk. See the manual for details.
  737. Fakeroot now works correctly under Microsoft Windows 10
  738. Services for Linux, which does not provide SYSV IPC support
  739. The check-uniq-files logic which would complain if multiple
  740. packages would touch the same files has been removed as it
  741. causes issues in certain situations (when packages are
  742. rebuilt) and the issue is no longer considered a problem for
  743. toplevel parallel builds as those will use a per-package
  744. staging/target directory.
  745. With this removed, Python is no longer required for a basic
  746. build (only for optional scripts).
  747. support/scripts/genimage.sh will no longer make a copy of
  748. TARGET_DIR, speeding up post-build/image scripts.
  749. The runtime test logic now uses Python 3.x.
  750. A 'v' prefix has been dropped from the <pkg>_SOURCE variable
  751. for a number of packages to match the version numbers used by
  752. https://release-monitoring.org
  753. New packages: caps, collectl, dav1d, fstrcmp, ima-evm-utils,
  754. jitterentropy-library, kodi-vfs-rar, kodi-vfs-sftp, libavl,
  755. libhttpserver, libmspack, libnetconf2, libolm, libyang,
  756. linux-serial-test, lrzip, mdevd, minimodem, musl-fts, netifrc,
  757. ogre, openlayers, python-aioredis, python-asgiref,
  758. python-backports-functools-lru-cache, python-bluezero,
  759. python-brotli, python-channels, python-channels-redis,
  760. python-colorlog, python-daphne, python-django-enumfields,
  761. python-jaraco-functools, python-kiwisolver, python-msgfy,
  762. python-rpi-ws281x, python-setuptools-scm-git-archive,
  763. python-simplelogging, python-soupsieve, python-sqliteschema,
  764. python-sqlparse, python-tqdm, python-webencodings, qt5webview,
  765. restclient-cpp, ripgrep, snmpclitools, sunwait, sysrepo,
  766. uacme, utf8proc, uvw, ytree
  767. Removed packages: alljoyn, alljoyn-base, alljoyn-tcl-base,
  768. devmem2, eventlog, kodi-audiodecoder-opus,
  769. kodi-screensaver-planestate, kodi-visualisation-waveforhue,
  770. python-pysnmp-apps, riscv-pk, ustr
  771. Issues resolved (http://bugs.uclibc.org):
  772. #9881: systemd-resolved not setting resolv.conf link
  773. #10171: devmem2 w (word) is 8 bytes in x86 64 systems
  774. #10586: musl gcc has ifunc enabled when musl doesn't support it
  775. #10806: Allow nfs-utils to use ipv6
  776. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  777. #11411: check-uniq-files target issue
  778. #11766: Console (getty) issues with systemd
  779. #11781: mariadb build error
  780. #12031: Build of cups-filters fails while linking, apparently due..
  781. #12116: console prompt does not appear after login
  782. #12141: eudev package is missing "render" and "kvm" groups
  783. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  784. #12186: Raspberry Pi Zero-W build fails on newer kernel versions
  785. #12191: cmake BUILDDIR
  786. #12241: Permission denied while running "make"
  787. #12261: sudo versions prior to 1.8.28 are affected.
  788. #12276: make clean/distclean does not remove BR2_DL_DIR and BR2_HOST_DIR
  789. #12281: Custom configuration fails to build (based on raspberrypi3_..
  790. 2019.08.3, released December 7th, 2019
  791. Important / security related fixes.
  792. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  793. <pkg>_DL_OPTS by default, just like it is done for a number of
  794. other package variables
  795. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  796. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  797. the (rare) case where the .py files are needed at runtime
  798. rather than .pyc.
  799. Fix <pkg>-reconfigure handling for packages using the kconfig
  800. infrastructure.
  801. Toolchain: ensure external toolchain kernel headers version
  802. check correctly stop the build on mismatch
  803. Deconfigs: beaglebone: fix boot issue
  804. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  805. clamav, cmocka, collectd, connman, dhcp, dropwatch, faifa,
  806. gettext-tiny, gob2, haproxy, intel-microcode, ipsec-tools,
  807. jailhouse, jasper, jpeg-turbo, kodi, kvm-unit-tests, libftdi,
  808. libftdi1, libnss, libressl, libstrophe, libsvgtiny, lvm2,
  809. lzma, mariadb, minicom, mosquitto, neardal, ninja, nodejs,
  810. oniguruma, openvmtools, oracle-mysql, perl-gdgraph,
  811. perl-gdtextutil, php, postgresql, prosody, python-cchardet,
  812. python-django, qt5wayland, rabbitmq, rauc, redis, rpcbind,
  813. socat, spice, spice-protocol, tftpd, tiff, webkitgtk
  814. New packages: libmspack
  815. Issues resolved (http://bugs.uclibc.org):
  816. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  817. #12171: Python-opencv needs config.py and config-3.7.py to run..
  818. #12211: host-nodejs 10.15.3 package fail to build
  819. #12316: tzdata fails to install with empty "default local time"
  820. 2019.08.2, released November 9th, 2019
  821. Important / security related fixes.
  822. Toolchain: Also copy libssp.so for external toolchains if SSP
  823. to handle toolchains providing SSP support in libssp rather
  824. than in the C library
  825. Download: Also use the package download method for extra
  826. downloads from the same site, so it does not get confused by
  827. URLs containing '+'
  828. Fakeroot now works correctly under Microsoft Windows 10
  829. Services for Linux, which does not provide SYSV IPC support
  830. utils/test-pkg: ensure to exit with an error upon failure
  831. Updated/fixed packages: asterisk, azmq, binutils,
  832. cups-filters, domoticz, dtc, duma, elf2flt, eudev, exfat,
  833. exfat-utils, fakeroot, fdk-aac, file, freerdp, gcc, gd,
  834. ghostscript, go, gpsd, grpc, gst1-plugins-base, gvfs, icu,
  835. intel-microcode, kvm-unit-tests, libfribidi, libnspr, libnss,
  836. libopenssl, libpcap, libpciaccess, librsvg, libseccomp,
  837. libsigrok, libtorrent, libunwind, libva, linux-tools,
  838. lua-sdl2, lxc, minizip, mjpegtools, mongoose, mono, nbd,
  839. nfs-utils, php, piglit, python, python-autobahn,
  840. python-pysnmp-apps, python-tornado, python3, qemu, qt5base,
  841. ruby, safeclib, samba4, sdl_mixer, sox, sudo, suricata,
  842. systemd, tcpdump, unscd, util-linux, vdr-plugin-vnsiserver,
  843. vtun, wireshark, xvisor, yaffs2utils
  844. Issues resolved (http://bugs.uclibc.org):
  845. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  846. #12261: sudo versions prior to 1.8.28 are affected
  847. 2019.08.1, released October 3rd, 2019
  848. Important / security related fixes.
  849. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  850. Use default console settings
  851. Dependencies: Ensure host has JSON::PP perl module installed
  852. if webkitgtk/wpewebkit packages are enabled as it is needed
  853. during their build process.
  854. Toolchain: Generate check-headers program under BUILD_DIR
  855. rather than /tmp to fix issues with distributions mounting
  856. /tmp noexec.
  857. Updated/fixed packages: asterisk, augeas, axel, bind, bwm-ng,
  858. cups, cups-filters, docker-cli, docker-engine, docker-proxy,
  859. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd, joe,
  860. kf5-extra-cmake-modules, kf5-modemmanager-qt,
  861. kf5-networkmanager-qt, libcamera, libcurl, libgcrypt,
  862. libglib2, libgpg-error, libnspr, libnss, libopenssl,
  863. logrotate, luksmeta, mariadb, mbedtls, mongodb, mosquitto,
  864. ncurses, nfs-utils, nghttp2, nodejs, openvmtools, php,
  865. protobuf, putty, qemu, samba4, snort, swupdate,
  866. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  867. wireshark
  868. Issues resolved (http://bugs.uclibc.org):
  869. #10806: Allow nfs-utils to use ipv6
  870. #11781: mariadb build error
  871. #12031: Build of cups-filters fails while linking, apparently due..
  872. #12141: eudev package is missing "render" and "kvm" groups
  873. #12241: Permission denied while running "make"
  874. 2019.08, released September 1st, 2019
  875. Various fixes.
  876. Defconfigs: Removed nanopc t4, nanopi m4 and neo4, pine64
  877. rockpro64 and raxda rock pi4 as they rely on a ARM32 toolchain
  878. on the build host to build ATF. These defconfigs will be added
  879. back once a package providing such toolchain is
  880. available. Also dropped ts4800 defconfig as it does not build
  881. with GCC >= 8.x.
  882. Updated/fixed packages: libxcb, php, python-numpy, webkitgtk,
  883. wpewebkit, xfont_font-util
  884. Issues resolved (http://bugs.uclibc.org):
  885. #12156: buildroot-2019.08-rc3 does not build for Pi Zero W
  886. 2019.08-rc3, released August 28th, 2019
  887. Fixes all over the tree.
  888. Updated/fixed packages: clamav, dovecot, dovecot-pigeonhole,
  889. gcc, intel-microcode, libmicrohttpd, libmodplug, mpg123,
  890. nginx, openldap, python, qemu, samba4, squid, strace, vlc
  891. Issues resolved (http://bugs.uclibc.org):
  892. #11686: fbdev_drv.so: undefined symbol: shadowUpdatePackedWeak,..
  893. 2019.08-rc2, released August 20th, 2019
  894. Fixes all over the tree.
  895. Compile fixes for a number of defconfigs.
  896. Updated/fixed packages: apache, autofs, batctl, batman-adv,
  897. bind, collectd, cwiid, dahdi-linux, dahdi-tools, daq,
  898. dehydrated, dhcp, dtc, efl, enlightenment, evtest, giflib,
  899. gnutls, go, gst-plugins-bad, gst-plugins-base,
  900. gst1-plugins-bad, gst1-plugins-base, gst1-rtsp-server, gtkmm3,
  901. gupnp, harfbuzz, imagemagick, lftp, libbsd, libcpprestsdk,
  902. libdnet, libfm, libgit2, libgtk2, libgtk3, libpri, librsvg,
  903. libss7, libssh2, libwpe, lua-cqueues, metacity, micropython,
  904. mpd, mpg123, musl, mpv, openblas, openbox, opencv, pango,
  905. pcmanfm, piglit, pigpio, pinentry, postgresql, qemu, qt5base,
  906. qt5enginio, qt5multimedia, qt5serialbus, quagga, quazip,
  907. rrdtool, rygel, samba4, stellarium, tcpreplay, ti-gfx, vte,
  908. wampcc, wilink-bt-firmware, wireless-regdb, wpebackend-fdo,
  909. xscreensaver
  910. Removed packages: libamcodec, odroid-mali, odroid-scripts
  911. Issues resolved (http://bugs.uclibc.org):
  912. #9481: NetworkManager/Ping unable to resolve domains
  913. #10566: php.mk is missing option --with-pgsql
  914. #10861: Package batman_adv Makefile is missing include header direct..
  915. #11641: linux kernel .config timestamp always out of date fixed with..
  916. #11671: russian locale ru_RU:145: LC_TIME: syntax error
  917. #11701: recuuring of usr and in bin shortcuts are created
  918. #11741: pigpio does not build host-pigpio
  919. #11876: automount using host mount/umount
  920. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  921. #11921: dahdi fails to build
  922. #11936: libcpprestsdk should install to staging
  923. #11946: wilink-bt-firmware: moved from github to http://git.ti.com/ti-bt
  924. #11961: libpri build failure
  925. #12086: dhcp shared libraries not installed to target
  926. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  927. #12106: daq: build fails if libdumbnet-dev is installed in the host
  928. #12126: vc4 has neon as hard dependency
  929. 2019.08-rc1, released August 9th, 2019
  930. Fixes all over the tree and new features.
  931. toolchain: ARC toolchain updated to 2019.03 (binutils 2.32.51
  932. / GCC 8.3.1 / glibc 2.29), ARM AAarch64/ARM toolchains updated
  933. to 2019.03. Add GCC 9.1.0, remove GCC 4.9 and 6.5, add GDB
  934. 8.3, remove GDB 7.12 and 8.0.1, default to GDB 8.2, GCC
  935. 8.3.0. Musl updated to 1.1.23, bringing support for RISC-V 64.
  936. Architectures: Internal toolchain support for C-SKY, support
  937. for ARC HS48 v3.1 and HS38 with Quad MAC & FPU, support for
  938. ARM A76, A76/A55 big.LITTLE, emag, neoverse-N1, phecda and
  939. tsv110.
  940. Filesystems: Pass extra pax options to tar for binary
  941. reproducibility. Build host-cpio for the --reproducible option
  942. support when BR2_REPRODUCIBLE is enabled. Genimage updated to
  943. version 11, bringing GPT support.
  944. Br2-external: Add support for injecting additional options to
  945. the list of preconfigured external toolchains and libjpeg and
  946. openssl providers using files under provides/. See the manual
  947. for details.
  948. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  949. passed before the standard exclusions so they are not ignored
  950. by rsync when using override-srcdir.
  951. Gnuconfig updated to 2019-05-28, adding C-SKY support.
  952. test-pkg: Correct long option handling and clean output dir
  953. after a successful build to save disk space.
  954. support/testing: Emulate a machine with 256MB RAM to fix
  955. issues with certain tests running out of memory, use
  956. virtio-rng to provide needed entrophy.
  957. pkg-stats: support outputting in JSON format with --json for
  958. easier post processing. The classic HTML output is still
  959. available with --html. Parallelize access to
  960. release-monitoring.org to speed up runtime.
  961. Drop non-conventional version prefix/suffix/separators for
  962. packages for better compatibility with release-monitoring.org
  963. Packages:
  964. Init systems: Add basic openrc support and
  965. <pkg>_INSTALL_INIT_OPENRC variable in the infrastructure to
  966. install openrc service scripts if enabled.
  967. busybox: Build each applet as a separate binary when SELinux
  968. is enabled for more finegrained policy control. Use daemon
  969. mode for mdev rather than legacy hotplug.
  970. linux: Workaround -Werror related build failure on powerpc,
  971. by forcing CONFIG_PPC_DISABLE_WERROR on.
  972. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  973. partition is available before mounting.
  974. New defconfigs: HiFive Unleashed, I.MX8MM EVK and Pico, Nanopi
  975. m4 and neo4, Nanopc t4, Olimex A33 olinuxino, Pine64
  976. Rockpro64, PowerPC mac99, QEMU C-SKY 610/807/810/860 virt,
  977. Raspberry Pi 4, Raxda rock pi4, Solidrun Clearfog GT-8K
  978. Removed defconfigs: Odroid C2
  979. New packages: bitcoin, c-capnproto, fatcat, ifmetric, jack1,
  980. jailhouse, libubootenv, luasyslog, mender-grubenv,
  981. murata-cyw-fw, openrc, piglit, python-colorama, python-cycler,
  982. python-hiredis, python-ifaddr, python-inflection,
  983. python-iptables, python-matplotlib, python-periphery,
  984. python-pycairo, python-redis, python-termcolor,
  985. python-tinyrpc, python-txdbus, skeleton-init-openrc, spdlog,
  986. sshguard, stellarium, zziplib
  987. Removed packages: xapp_mkfontdir
  988. Issues resolved (http://bugs.uclibc.org):
  989. #11096: Upgrade from glibc 2.26 to 2.27 broke some locales...
  990. #11271: utils/check-package fails with exception depending on..
  991. #11991: [numpy] segfault when compiling for RPi3 64bits
  992. #12016: Grub fails to boot bzImage after upgrade to 2019.05
  993. #12046: Can’t login as root user after upgrading to buildroot..
  994. #12051: package/dhcp installs libtool wrapper scripts on tar...
  995. #12076: Patchelf can link against an incompatible libc++ ver...
  996. 2019.05.3, Released October 3rd, 2019
  997. Important / security related fixes.
  998. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  999. Use default console settings
  1000. Dependencies: Ensure host has JSON::PP perl module installed
  1001. if webkitgtk/wpewebkit packages are enabled as it is needed
  1002. during their build process.
  1003. Toolchain: Generate check-headers program under BUILD_DIR
  1004. rather than /tmp to fix issues with distributions mounting
  1005. /tmp noexec.
  1006. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1007. cups-filters, docker-cli, docker-engine, docker-proxy,
  1008. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd,
  1009. iptables, joe, kf5-extra-cmake-modules, kf5-modemmanager-qt,
  1010. kf5-networkmanager-qtlibcamera, libcurl, libgcrypt,
  1011. libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1012. libtorrent-rasterbar, luksmeta, mariadb, mbedtls, mongodb,
  1013. mosquitto, ncurses, nfs-utils, nghttp2, nodejs, openvmtools,
  1014. php, protobuf, putty, qemu, samba4, swupdate,
  1015. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1016. wireshark
  1017. Issues resolved (http://bugs.uclibc.org):
  1018. #10806: Allow nfs-utils to use ipv6
  1019. #11781: mariadb build error
  1020. #12031: Build of cups-filters fails while linking, apparently due..
  1021. #12141: eudev package is missing "render" and "kvm" groups
  1022. #12241: Permission denied while running "make"
  1023. 2019.05.2, Released September 3rd, 2019
  1024. Important / security related fixes.
  1025. Filesystems: Pass extra pax options to tar for binary
  1026. reproducibility.
  1027. Updated/fixed packages: apache, arm-trusted-firmware,
  1028. asterisk, atk, autofs, batctl, batman-adv, berkeleydb,
  1029. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1030. dahdi-linux, dahdi-tools, daq, dehydrated, dhcp, dovecot,
  1031. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1032. git, glib-networking, glibc, gnupg2, gnutls, go,
  1033. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1034. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1035. libgit2, libgtk2, libgtk3, libmodplug, libnss, libpri,
  1036. libshout, libss7, libssh2, libvips, libxcb, linux-headers,
  1037. mdadm, mesa3d, metacity, mpg123, mosquitto, musl, nginx,
  1038. oniguruma, openblas, opencv3, openjdk, openjdk-bin, openldap,
  1039. openvmtools, pcmanfm, php, pigpio, postgresql, prboom,
  1040. proftpd, proj, python, python-django, python-idna,
  1041. python-numpy, python-urllib3, python3, qemu, qt5, qt5base,
  1042. qt5enginio, quagga, rygel, squid, subversion, tcpreplay,
  1043. unzip, vlc, vte, webkitgtk, wireless-regdb, xen,
  1044. xfont_font-util, xlib_libICE, xlib_libXfont, xlib_libXfont2,
  1045. yad, zeromq
  1046. Issues resolved (http://bugs.uclibc.org):
  1047. #11741: pigpio does not build host-pigpio
  1048. #11876: automount using host mount/umount
  1049. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1050. #11921: dahdi fails to build
  1051. #11961: libpri build failure
  1052. #12086: (dhcpd-missing-libs) - dhcp shared libraries not installed to..
  1053. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1054. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1055. #12126: vc4 has neon as hard dependency
  1056. 2019.05.1, Released July 7th, 2019
  1057. Important / security related fixes.
  1058. arch: x86: Fix typo breaking 'core-avx2' variant
  1059. linux: Workaround -Werror related build failure on powerpc,
  1060. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1061. support/testing: Emulate a machine with 256MB RAM to fix
  1062. issues with certain tests running out of memory.
  1063. test-pkg: Correct long option handling and clean output dir
  1064. after a successful build to save disk space.
  1065. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1066. partition is available before mounting.
  1067. Updated/fixed packages: barebox, busybox, bzip2, davfs2,
  1068. dialog, docker-cli, docker-engine, exim, expat, faad2,
  1069. haveged, irssi, libcamera, libcdaudio, libcurl, libglib2,
  1070. libressl, libsecret, lmbench, meson, monit, php, postgresql,
  1071. psplash, python-django, qt5base, tvheadend, webkitgtk,
  1072. xserver_xorg-server, znc
  1073. 2019.05, released June 2nd, 2019
  1074. Various fixes.
  1075. Toolchain: Ensure pre-built Andes toolchains can only be
  1076. selected when x86 32bit support is available on the host.
  1077. Disallow PowerPC SPE ABI for GCC >= 8.x, as it is no longer
  1078. supported.
  1079. Infra: pkg-config: Use a dedicated timestamp file rather than
  1080. .config as that gets touched by linux-4.19+, causing repeated
  1081. builds.
  1082. Add C-SKY support to our config.sub (gnuconfig)
  1083. Updated/fixed packages: dosfstools, botan, brotli, dropbear,
  1084. flare-engine, gst1-plugins-bad, libhtp, libnss, libopenssl,
  1085. linuxptp, matchbox-panel, mender, mutt, netsurf,
  1086. network-manager, opencv3, openjdk, openmpi, php,
  1087. python-cython, qt5multimedia, qtwayland, qt5webkit-examples,
  1088. supertux, suricata, tpm2-totp, v4l2loopback, wireshark,
  1089. wpewebkit
  1090. 2019.05-rc3, released May 25th, 2019
  1091. Fixes all over the tree.
  1092. check-bin-arch: Ignore /usr/lib/grub, similar to how /lib/grub
  1093. is ignored.
  1094. check-package: Warn about utf-8 characters in .mk files
  1095. Linux: Default to 5.1.x series
  1096. Updated/fixed packages: assimp, atop, chocolate-doom, cjson,
  1097. ddrescue, dhcp, ffmpeg, gerbera, glibmm, gpsd, gst-ffmpeg,
  1098. intel-microcode, jasper, keepalived, kismet, libcpprestsdk,
  1099. libcurl, libssh2, libupnp18, luarocks, mono-gtksharp3, opus,
  1100. postgresql, pcsc-lite, python, tslib, webkitgtk,
  1101. wpebackend-fdo, wpewebkit
  1102. 2019.05-rc2, released May 15th, 2019
  1103. Fixes all over the tree.
  1104. Updated/fixed packages: bind, bullet, ca-certificates,
  1105. collectd, cracklib, dhcp, gdb, libinput, libtorrent-rasterbar,
  1106. linknx, lynx, mono, netsurf, optee-os, postgresql, qt5enginio,
  1107. qt5multimedia, rpm, samba4, sqlite, strace, uclibc, woff2
  1108. Issues resolved (http://bugs.uclibc.org):
  1109. #11841: grub-efi.cfg not used when building EFI disk image
  1110. 2019.05-rc1, Released May 8th, 2019
  1111. Fixes all over the tree and new features.
  1112. Architecture: Andes 32-bit (nds32) support added.
  1113. Only build host-lzip / host-xz when really needed by packages,
  1114. not just when not available on the build host.
  1115. Toolchain: Glibc bumped to 2.29, musl bumped to 1.1.22,
  1116. binutils 2.32 added, 2.28/2.29 removed, default changed to
  1117. 2.31.1.
  1118. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1119. forward {f,l,}chown calls to libc when running under fakeroot
  1120. to fix issues when building in restricted environments
  1121. (E.G. user namespace with bubblewrap).
  1122. Linux: Also build default make target to ensure extra files
  1123. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1124. built. Notice: This may mean that extra host utilities like
  1125. uboot-mkimage are needed.
  1126. Infrastructure: show-info and <pkg>-show-info make targets
  1127. added to output package metadata in JSON format for external
  1128. use.
  1129. pkg-generic: Only tweak .la files needing it to ensure they
  1130. are not included in subsequent package file lists.
  1131. test-pkg: Generate a basic package config if none is
  1132. specified.
  1133. Gettext-tiny package added as an lightweight replacement for
  1134. GNU gettext for situations where NLS support is not needed.
  1135. New defconfigs: Andes AE3XX, Freescale imx8mpico / imx8qxpmek
  1136. / T2080 QDS RDB, Licheepi zero, Orangepi R1
  1137. Removed defconfigs: Olimx A20 Olinuxino Lime legacy
  1138. New packages: bats-core, bayer2rgb-neon, brickd, cog, dacapo,
  1139. enet, gettext-tiny, gli, gst1-plugins-bayer2rgb-neon,
  1140. imx-sc-firmware, intel-mediadriver, intel-mediasdk, libcamera,
  1141. libhtp, libp11, libwpe, lua-binaryheap, lua-gd, lua-lunitx,
  1142. mender-artifact, most, oniguruma, openjdk, openjdk-bin,
  1143. opensbi, optee-benchmark, optee-client, optee-examples,
  1144. optee-os, optee-test, paho-mqtt-cpp, python-aioblescan,
  1145. python-aioconsole, python-aiohttp-cors, python-aiomonitor,
  1146. python-backcall, python-jedi, python-parso, python-pyjwt,
  1147. python-terminaltables, suricata, tpm2-totp, uftp,
  1148. wpebackend-fdo, wpewebkit
  1149. Removed packages: libump, lunit, sunxi-mali
  1150. Issues resolved (http://bugs.uclibc.org):
  1151. #11716: Typo on website, saying latest release is 2018.2.11
  1152. #11756: package/syslinux: MBR's don't fit because of binutils..
  1153. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1154. #11816: Only selected coreutils binaries are installed
  1155. 2019.02.11, released April 9th, 2020
  1156. Important / security related fixes.
  1157. core: Fix compatibility with make 4.3+. Also fixup /lib
  1158. references in libtool .la files, similar to how it is done for
  1159. /usr/*.
  1160. toolchain: Fix kernel headers validation check for external
  1161. toolchains.
  1162. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  1163. civetweb, collectd, ffmpeg, gcc, gnutls, gvfs, haproxy,
  1164. hiredis, kmscube, libical, libopenssl, libsndfile,
  1165. linux-tools, ntp, php, pure-ftpd, screen, sysdig, tor,
  1166. util-linux, vala, vlc, xserver_xorg-server
  1167. Issues resolved (http://bugs.uclibc.org):
  1168. #12746: "sysdig" package description points to http://sysdig.org, ..
  1169. 2019.02.10, released March 16th, 2020
  1170. Important / security related fixes.
  1171. Core: Ensure package-file-lists data is correct after
  1172. incremental builds as well.
  1173. Fix a race condition related to creating the output/staging
  1174. symlink on systems with coreutils < 8.27.
  1175. Br2-external: Fix compatibility with make 4.3+
  1176. Util-linux: Ensure that hwclock is built without GPLv3
  1177. code. Notice that builds with hwclock has contained
  1178. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  1179. Updated/fixed packages: armadillo, at, binutils, blktrace,
  1180. bootstrap, busybox, cairo, cups, czmq, dnsmasq,
  1181. docker-containerd, dovecot, dovecot-pigeonhole, e2fsprogs,
  1182. eudev, exim, exiv2, fbgrab, grep, gst1-validate, guile,
  1183. imagemagick, jhead, kvm-unit-tests, lapack, libcgroup,
  1184. libftdi1, libjpeg, libsigrok, libsndfile, libssh2, libsvgtiny,
  1185. libvncserver, libvorbis, libxml2, libxslt, linux, lz4,
  1186. mariadb, mbedtls, meson, mfgtools, mongoose, ncurses, ntfs-3g,
  1187. opencv3, openjpeg, openswan, openvmtools, patch, php,
  1188. postgresql, pppd, proftpd, pure-ftpd, python-django,
  1189. python-pyqt5, python3, qemu, qt5base, qt5webengine, qwt,
  1190. rdesktop, ruby, runc, samba4, shellinabox, smartmontools,
  1191. sqlcipher, squid, swupdate, sysklogd, taglib, thrift,
  1192. ti-cgt-pru, uboot, util-linux, vorbis-tools, webkitgtk,
  1193. wireshark, xen, xserver_xorg-server, zeromq, zsh
  1194. Issues resolved (http://bugs.uclibc.org):
  1195. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  1196. #12331: meson issue
  1197. #12461: libglib2 build files with deep directory structure
  1198. #12606: fbgrab location has changed
  1199. 2019.02.9, released January 12th, 2020
  1200. Important / security related fixes.
  1201. pkg-python infrastructure: Ensure correct compiler and linker
  1202. flags are used for compiled code
  1203. utils/scanpypi: Remind users to update DEVELOPERS
  1204. Updated/fixed packages: busybox, cc-tool, cpio, cups, dante,
  1205. dillo, docker-cli, docker-containerd, docker-engine, easy-rsa,
  1206. ecryptfs-utils, efl, git, glibc, gnupg2, gst1-plugins-bad,
  1207. kf5-kcoreaddons, libarchive, libgit2, libkrb5, librsvg,
  1208. libssh, libtomcrypt, libuio, lirc-tools, lvm2,
  1209. matchbox-desktop, nodejs, ntp, opencv3, openpowerlink,
  1210. python-django, python-ecdsa, python-pyasn-modules,
  1211. python-pyqt5, python-subprocess32, python3, qpdf, runc, rygel,
  1212. samba4, sdl2, wavpack, xserver_xorg-server, zip
  1213. Issues resolved (http://bugs.uclibc.org):
  1214. #12121: PyQt5.QtSerialPort and other modules not being built
  1215. 2019.02.8, released December 7th, 2019
  1216. Important / security related fixes.
  1217. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1218. <pkg>_DL_OPTS by default, just like it is done for a number of
  1219. other package variables
  1220. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1221. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1222. the (rare) case where the .py files are needed at runtime
  1223. rather than .pyc.
  1224. Fix <pkg>-reconfigure handling for packages using the kconfig
  1225. infrastructure.
  1226. Toolchain: ensure external toolchain kernel headers version
  1227. check correctly stop the build on mismatch
  1228. Deconfigs: beaglebone: fix boot issue
  1229. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1230. clamav, collectd, connman, faifa, gob2, haproxy,
  1231. intel-microcode, ipsec-tools, jasper, jpeg-turbo, kodi,
  1232. kvm-unit-tests, libftdi, libftdi1, libnss, libstrophe,
  1233. libsvgtiny, lvm2, lzma, mariadb, minicom, neardal, nodejs,
  1234. opencv3, openvmtools, oracle-mysql, perl-gdgraph,
  1235. perl-gdtextutil, php, postgresql, prosody, python-django,
  1236. rabbitmq-c, rauc, redis, rpcbind, socat, spice,
  1237. spice-protocol, tftpd, tiff, webkitgtk
  1238. New packages: libmspack
  1239. Issues resolved (http://bugs.uclibc.org):
  1240. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1241. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1242. #12211: host-nodejs 10.15.3 package fail to build
  1243. #12316: tzdata fails to install with empty "default local time"
  1244. 2019.02.7, Released November 10th, 2019
  1245. Important / security related fixes.
  1246. support/testing: use a kernel with HW_RANDOM_VIRTIO to work
  1247. around issues with lack of entrophy
  1248. Toolchain: Also copy libssp.so for external toolchains if SSP
  1249. is enabled to handle toolchains providing SSP support in
  1250. libssp rather than in the C library
  1251. Download: Also use the package download method for extra
  1252. downloads from the same site, so it does not get confused by
  1253. URLs containing '+'
  1254. Fakeroot now works correctly under Microsoft Windows 10
  1255. Services for Linux, which does not provide SYSV IPC support
  1256. utils/test-pkg: ensure to exit with an error upon failure
  1257. Updated/fixed packages: asterisk, azmq, cups-filters,
  1258. domoticz, duma, elf2flt, eudev, exfat, exfat-utils, fakeroot,
  1259. file, freerdp, gd, ghostscript, go, gvfs, intel-microcode,
  1260. kvm-unit-tests, libarchive, libnspr, libnss, libopenssl,
  1261. libpcap, libpciaccess, librsvg, libseccomp, libsigrok,
  1262. libtorrent, libunwind, linux-tools, lua-sdl2, lxc, minizip,
  1263. mjpegtools, mongoose, php, python, python-pysnmp-apps,
  1264. python3, qemu, qt5base, ruby, safeclib, samba4, sdl_mixer,
  1265. sox, sudo, systemd, tcpdump, unscd, util-lkinux, vtun, xvisor,
  1266. yaffs2utils
  1267. Issues resolved (http://bugs.uclibc.org):
  1268. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1269. #12261: sudo versions prior to 1.8.28 are affected
  1270. 2019.02.6, Released October 3rd, 2019
  1271. Important / security related fixes.
  1272. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1273. Use default console settings
  1274. Dependencies: Ensure host has JSON::PP perl module installed
  1275. if webkitgtk/wpewebkit packages are enabled as it is needed
  1276. during their build process.
  1277. Toolchain: Generate check-headers program under BUILD_DIR
  1278. rather than /tmp to fix issues with distributions mounting
  1279. /tmp noexec.
  1280. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1281. cups-filters, docker-cli, docker-engine, docker-proxy,
  1282. dropbear, e2fsprogs, eudev, exim, expat, gcc, go, ifplugd,
  1283. haveged, iptables, joe, kf5-extra-cmake-modules,
  1284. kf5-modemmanager-qt, kf5-networkmanager-qt, libcurl,
  1285. libgcrypt, libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1286. luksmeta, mariadb, mbedtls, mongodb, mosquitto, ncurses,
  1287. nfs-utils, nghttp2, nodejs, openvmtools, php, protobuf, putty,
  1288. qemu, qt5base, samba4, swupdate, systemd-bootchart, thttpd,
  1289. uclibc, unzip, util-linux, wireshark
  1290. Issues resolved (http://bugs.uclibc.org):
  1291. #10806: Allow nfs-utils to use ipv6
  1292. #11781: mariadb build error
  1293. #12031: Build of cups-filters fails while linking, apparently due..
  1294. #12141: eudev package is missing "render" and "kvm" groups
  1295. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  1296. #12241: Permission denied while running "make"
  1297. 2019.02.5, Released September 2nd, 2019
  1298. Important / security related fixes.
  1299. Filesystems: Pass extra pax options to tar for binary
  1300. reproducibility.
  1301. Updated/fixed packages: apache, arm-trusted-firmware,
  1302. asterisk, atk, autofs, batctl, batman-adv, berkeleydb, brotli,
  1303. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1304. cryptopp, dahdi-linux, dahdi-tools, daq, dehydrated, dovecot,
  1305. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1306. git, glib-networking, glibc, gnupg2, gnutls, go,
  1307. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1308. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1309. libgit2, libgtk3, libmodplug, libnss, libpri, libshout,
  1310. libss7, libssh2, libvips, libxcb, linux-headers, mdadm,
  1311. mesa3d, metacity, mpg123, mosquitto, musl, nginx, openblas,
  1312. opencv3, openldap, openvmtools, pcmanfm, php, pigpio,
  1313. postgresql, prboom, proftpd, proj, python, python-django,
  1314. python-idna, python-numpy, python-urllib3, python3, qemu, qt5,
  1315. qt5base, qt5enginio, quagga, rygel, squid, subversion,
  1316. tcpreplay, unzip, vlc, vte, webkitgtk, weston, wireless-regdb,
  1317. xen, xfont_font-util, xlib_libICE, xlib_libXfont,
  1318. xlib_libXfont2, yad, zeromq
  1319. Issues resolved (http://bugs.uclibc.org):
  1320. #11741: pigpio does not build host-pigpio
  1321. #11876: automount using host mount/umount
  1322. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1323. #11921: dahdi fails to build
  1324. #11961: libpri build failure
  1325. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1326. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1327. #12126: vc4 has neon as hard dependency
  1328. 2019.02.4, Released July 10th, 2019
  1329. Important / security related fixes.
  1330. arch: x86: Fix typo breaking 'core-avx2' variant, add Westmere
  1331. variant.
  1332. linux: Workaround -Werror related build failure on powerpc,
  1333. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1334. support/testing: Emulate a machine with 256MB RAM to fix
  1335. issues with certain tests running out of memory.
  1336. test-pkg: Correct long option handling and clean output dir
  1337. after a successful build to save disk space.
  1338. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1339. passed before the standard exclusions so they are not ignored
  1340. by rsync when using override-srcdir.
  1341. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1342. partition is available before mounting.
  1343. Updated/fixed packages: barebox, bzip2, davfs2, dbus, dialog,
  1344. docker-cli, docker-engine, expat, faad2, ffmpeg, freeswitch,
  1345. gerbera, haveged, irssi, libcdadio, libgit2, libglib2,
  1346. libsecret, libvncserver, lmbench, logrotate, mariadb, meson,
  1347. mongoose, monit, mpd, openblas, php, postgresql, psplash,
  1348. python, python-django, python3, qt5base, samba4, taglib,
  1349. tvheadend, vlc, webkitgtk, xserver_xorg-server, znc
  1350. 2019.02.3, Released June 7th, 2019
  1351. Important / security related fixes.
  1352. Infra: pkg-config: Use a dedicated timestamp file rather than
  1353. .config as that gets touched by linux-4.19+, causing repeated
  1354. builds.
  1355. check-bin-arch: Also ignore /usr/lib/grub to support merged
  1356. /usr setups, similar to how /lib/grub is ignored.
  1357. gnuconfig/config.sub: Add C-SKY architecture support.
  1358. Updated/fixed packages: assimp, atftp, atop, botan, busybox,
  1359. ca-certificates, chocolate-doom, cjson, coreutils, cracklib,
  1360. ddrescue, dhcp, docker-cli, docker-containerd, docker-engine,
  1361. dosfstools, dovecot, dovecot-pigeonhole, dropbear, exim,
  1362. ffmpeg, flare-engine, gcc, gdb, gerbera, glibmm, go, gpsd,
  1363. gst-ffmpeg, gst1-plugins-bad, gst1-plugins-base, imagemagick,
  1364. intel-microcode, jasper, kf5-kcoreaddons, kismet, libcurl,
  1365. libglib2, libnss, libopenssl, libsigrok, libssh2, libupnp18,
  1366. linuxptp, luajit, lynx, matchbox-panel, mender,
  1367. netcat-openbsd, netsurf, nfs-utils, opus, orc, owfs,
  1368. pcsc-lite, php, popt, postgresql, python, python-cython,
  1369. python-django, python-ply, qt5enginio, rpm, runc, samba4,
  1370. sqlite, subversion, supertux, systemd, tslib, uclibc,
  1371. v4l2loopback, webkitgtk, woff2
  1372. Issues resolved (http://bugs.uclibc.org):
  1373. #11816: Only selected coreutils binaries are installed
  1374. #11841: grub-efi.cfg not used when building EFI disk image
  1375. #11911: systemd v240 memory leak in systemd-journald
  1376. 2019.02.2, Released April 29th, 2019
  1377. Important / security related fixes.
  1378. Only build host-lzip / host-xz when really needed by packages,
  1379. not just when not available on the build host.
  1380. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1381. forward {f,l,}chown calls to libc when running under fakeroot
  1382. to fix issues when building in restricted environments
  1383. (E.G. user namespace with bubblewrap).
  1384. Linux: Also build default make target to ensure extra files
  1385. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1386. built. Notice: This may mean that extra host utilities like
  1387. uboot-mkimage are needed.
  1388. Defconfigs: ASUS tinker and Amarula vyasa rk3822: Support
  1389. larger kernel images, Atmel SAM5D27, SAM5D2,3,4 xplained:
  1390. Increase rootfs size to fit utilities, Raspberry Pi 64bit:
  1391. Include overlays in sdcard image
  1392. Updated/fixed packages: android-tools, apache, bind, binutils,
  1393. busybox, civetweb, cjson, copas, davfs2, docker-cli,
  1394. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1395. freerdp, gerbera, ghostscript, git, gnutls, go, gst-omx,
  1396. gst1-plugins-base, gst1-plugins-ugly, haproxy, hostapd,
  1397. ipsec-tools, libfreefare, libfuse, libkrb5, libpng, libxml2,
  1398. libxslt, linknx, linux, linux-firmware, linux-tools, live555,
  1399. lldp, lrzsz, lynx, madplay, make, minicom, mongodb, msmtp,
  1400. musl, mutt, neon, netsnmp, numactl, opus, perl, php,
  1401. postgresql, pure-ftpd, python-urllib3, python3, qt5base,
  1402. rapidxml, rpm, rsyslog, ruby, runc, samba4, sane-backends,
  1403. softether, stunnel, sysklogd, syslinux, syslog-ng,
  1404. systemd-bootchart, thttpd, thrift, tiff, tor, tpm2-tools,
  1405. tpm2-tss, webkitgtk, yaffs2utils, wget, wpa_supplicant, wsapi,
  1406. xapp_xfd, xapp_xload, xlib_libXpm, xserver_xorg-server, xz,
  1407. znc
  1408. Issues resolved (http://bugs.uclibc.org):
  1409. #11756: package/syslinux: MBR's don't fit because of binutils..
  1410. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1411. 2019.02.1, Released March 29th, 2019
  1412. Important / security related fixes.
  1413. pkg-generic: Only tweak .la files needing it to ensure they
  1414. are not included in subsequent package file lists.
  1415. test-pkg: Generate a basic package config if none is
  1416. specified.
  1417. Updated/fixed packages: asterisk, avahi, bash, beecrypt,
  1418. binutils, busybox, clamav, cups, efl, eigen, fetchmail, file,
  1419. flashrom, fltk, gerbera, git, glibc, gnuradio, go,
  1420. gst-plugins-bad, intel-gmmlib, jq, kexec, kf5-modemmanager-qt,
  1421. leveldb, libcurl, libdrm, libftdi1, libglib2, libiio, libpcap,
  1422. libseccomp, libssh2, log4cplus, lvm2, mariadb, mender,
  1423. mongodb, mosquitto, musl, nodejs, ntp, openjpeg, owfs, php,
  1424. pure-ftpd, putty, python-aiojobs, qt5webkit, rdesktop, samba4,
  1425. sunxi-tools, supertux, swupdate, tpm2-abrmd, tpm2-tss,
  1426. wavemon, wireshark, vsftpd, xapp_xdm, xen,
  1427. xdriver_xf86-video-fbdev, xlib_libXdmcp
  1428. Issues resolved (http://bugs.uclibc.org):
  1429. #11716: Typo on website, saying latest release is 2018.2.11
  1430. 2019.02, released March 4th, 2019
  1431. Minor fixes.
  1432. Libressl support added for Qt 5.6 as a replacement for
  1433. openssl, as 5.6 is not compatible with openssl 1.1.x.
  1434. Updated/fixed packages: cutelyst, devmem2, gqrx,
  1435. gst-plugins-bad, libraw, libsoxr, qt5base, runc, systemd, tor
  1436. 2019.02-rc3, released March 1st, 2019
  1437. Fixes all over the tree.
  1438. Openssl support dropped from Qt 5.6, as it isn't compatible
  1439. with openssl 1.1.x.
  1440. Toolchain: GCC 8.x updated to 8.3.0, fixing a number of
  1441. issues.
  1442. Dependencies: Require CMake 3.8 or newer to fix compilation
  1443. issue with certain packages. If not available, host-cmake will
  1444. instead be built.
  1445. Printvars: Fix performance regression since 2018.02
  1446. Scanypi: Correctly handle underscores in python package names.
  1447. Updated/fixed packages: botan, clamav, cryptopp, i2pd,
  1448. ibrcommon, iproute2, libcpprestsdk, libssh, lua-curl,
  1449. luaexpat, qt5base, runc, stress-ng, syslinux, systemd,
  1450. upmpdcli, zbar
  1451. Issues resolved (http://bugs.uclibc.org):
  1452. #9966: util-linux-2.30/.stamp_built' failed
  1453. #11696: possible typo in board/pc/post-build.sh
  1454. 2019.02-rc2, released February 23th, 2019
  1455. Fixes all over the tree.
  1456. Removed zynq_zybo defconfig, as it hasn't seen any update
  1457. since it was added in 2016, and uses a U-Boot version not
  1458. compatible with openssl-1.1.x.
  1459. Linux: Ignore user supplied downloadable hashes, as no hash
  1460. checksums are available for those.
  1461. Updated/fixed packages: bind, cryptopp, docker-containerd,
  1462. dtc, efivar, gdb, imagemagick, ipmiutil, libcpprestsdk,
  1463. libcurl, libgpiod, libid3tag, libv4l, log4cplus, luvi,
  1464. madplay, mender, mosquitto, poco, postgresql, proftpd,
  1465. pulseaudio, python-django, qemu, qt5base, qwt, rabbitmq-c,
  1466. reaver, safeclip, stress-ng, swupdate, syslog-ng, systemd,
  1467. tor, unzip, xenomai
  1468. Issues resolved (http://bugs.uclibc.org):
  1469. #11501: compile sdl2 with enable wayland
  1470. #11681: .. unable to initialize decompress status for section..
  1471. 2019.02-rc1, released February 13th, 2019
  1472. Fixes all over the tree and new features.
  1473. Dependencies:
  1474. Require Python >= 2.7 as it is needed for E.G. building
  1475. libglib2.
  1476. Ensure GNU gzip is used for reproducible tarballs (instead of
  1477. pigz)
  1478. Infrastucture:
  1479. Ensure the PLATFORM and OS environment variables are not set,
  1480. as they cause build issues for some packages.
  1481. The package list infrastructure now correctly handles packages
  1482. installing files with old mtime.
  1483. Add a config option to force all optional host utilities to be
  1484. built, even if suitable versions are available on the build
  1485. machine.
  1486. graph-build-time: Also show time spent downloading
  1487. Download: fixes for SSH/SCP support
  1488. Ensure user provided permissions override permissions from
  1489. packages.
  1490. SDK: Fix handling of relative symlinks (targets starting with
  1491. '.' or '..')
  1492. BR2_SYSTEM_DEFAULT_PATH setting to customize the default path
  1493. for processes.
  1494. The custom skeleton logic will now populate the needed /bin,
  1495. /lib, /sbin directories/symlinks if not present. Merged /usr
  1496. can now be used with a custom skeleton.
  1497. Rootfs overlays can now override symbolic links from
  1498. packages. This was disabled to ensure the correct symbolic
  1499. links are present when merged /usr is used. Instead validate
  1500. that the rootfs overlays do not include invalid /bin, /sbin
  1501. and /lib entries.
  1502. The waf infrastructure now support the <pkg>_SUBDIR variable,
  1503. similar to the other package types.
  1504. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1505. Various improvements to the meson infrastructure.
  1506. Luarocks: A Buildroot addon has been added to automate
  1507. creating a Buildroot package from luarocks, similar to
  1508. scancpan and scanpypi.
  1509. scanpypi: protect against zip-slip vulnerability in zip/tar
  1510. handling
  1511. check-package: fix Python 3 support
  1512. get-developers: Fix behaviour when called from elsewhere than
  1513. the toplevel directory.
  1514. pkg-stats: Show latest upstream version of each package, based
  1515. on data from release-monitoring.org
  1516. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1517. a clean tree when ccache is enabled.
  1518. Default to sha256 password encoding, drop md5 support.
  1519. Architecture:
  1520. Support for RISC-V 32bit architecture, ARM A55, 75 and Saphira
  1521. variants, MIPS support for mips32r3, mips64r3 and Marvell
  1522. Octeon II/III variants.
  1523. Toolchain:
  1524. ARC toolchain 2018.09, ARM 8.2-2018.11, Codescape IMG/MTI MIPS
  1525. 2018.09-02, MUSL 1.1.21, GCC 6.5.0 / 7.4.0, GDB 8.2.1
  1526. Packages:
  1527. openssl: Bump to 1.1.1x series, bringing TLSv1.3 support and
  1528. long term support.
  1529. fftw: Split into fftw-{single,double,long-double,quad}
  1530. packages for the different data precision options.
  1531. libcurl: Now has explicit TLS backend selection options.
  1532. linux: Support building device tree blobs with the -@ option
  1533. for device tree overlays.
  1534. weston: The weston-imx i.MX variant is now used when
  1535. imx-gpu-viv is enabled
  1536. pkgconf: Update to 1.5.3, which brings support for
  1537. --define-prefix (used by GStreamer)
  1538. Add host-python3-setuptools package to handle host python
  1539. packages needing python3 with setuptools support.
  1540. New defconfigs: Aarch64 EFI, Orangepi one plus, Orangepi lite
  1541. 2, QEMU RISC-V 32bit virt, Rock64
  1542. New packages: brcm-patchram-plus, clinfo, cunit, docker-cli,
  1543. erlang-p1-eimp, exempi, fail2ban, fftw-double,
  1544. fftw-double-long, fftw-quad, fftw-single, gerbera, grpc,
  1545. gst1-shark, intel-gmmlib, iwd, kf5-kcoreaddons, libeastl,
  1546. libpackagekite, libtorrent-rasterbar, lua-std-debug,
  1547. lua-std-normalize, mini-snmpd, netsurf, pamtester, pcm-tools,
  1548. python-aiodns, python-aiohttp, python-aiohttp-jinja2,
  1549. python-aiohttp-remotes, python-aiohttp-security,
  1550. python-aiohttp-session, python-aiohttpd-sse, python-aiojobs,
  1551. python-cchardet, python-pycares, python-sentry-sdk,
  1552. python-wtforms, python3-setuptools, rcw, rtc-tools, shim,
  1553. utp_com, vmtouch, websocketpp
  1554. Removed packages: fftw, lua 5.2.x, luacrypto, perl-time-hires,
  1555. python-pyqt, qt, qtuio, tn5250
  1556. Issues resolved (http://bugs.uclibc.org):
  1557. #10851: Patch to handle numpad Enter key properly
  1558. #11066: x11r7 X11 S40xorg leads to a black screen on QEMU x86..
  1559. #11126: Bash Shell Programming using Buildroot
  1560. #11426: pps-tools bash dependency
  1561. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  1562. #11536: dt-utils building fails with glibc 2.28
  1563. #11546: open-vm-tools with glibc 2.28
  1564. #11566: Fix init script
  1565. #11576: Unable to start apache with event MPM on raspberry pi 3
  1566. #11591: [pkgconf 1.5.3] xserver OpenGL support is missing
  1567. #11606: libjpeg has no Config.in
  1568. #11616: 2018.02.09 fails to build libzlib with full RELRO..
  1569. #11656: Custom device tree and u-boot boot.scr not integrated..
  1570. #11666: Touchscreen with (Py)Qt5 should use tslib instead of evdev
  1571. 2018.11.4, Released March 28th, 2019
  1572. Important / security related fixes.
  1573. Updated/fixed packages: avahi, beecrypt, binutils, botan,
  1574. busybox, clamav, cups, devmem2, efl, fetchmail, file, fltk,
  1575. gcc, gdb, git, go, gst-plugins-bad, iproute2, jq,
  1576. kf5-modemmanager-qt, leveldb, libopenssl, libraw, libseccomp,
  1577. libsoxr, libssh2, mariadb, mosquitto, nodejs, ntp, openjpeg,
  1578. perl, php, putty, qt5webkit, rdesktop, runc, samba4, swupdate,
  1579. systemd, tor, vsftpd, wireshark, xapp_xdm, xen, xlib_libXdmcp
  1580. 2018.11.3, Released February 23th, 2019
  1581. Important / security related fixes.
  1582. Ensure the PLATFORM and OS environment variables are not set,
  1583. as they cause build issues for some packages.
  1584. The package list infrastructure now correctly handles packages
  1585. installing files with old mtime.
  1586. Linux: Skip hash checks for user supplied downloadable
  1587. patches, as no hash checksums are available for those.
  1588. scanpypi: protect against zip-slip vulnerability in zip/tar
  1589. handling
  1590. Download: fixes for SSH/SCP support
  1591. SDK: Fix handling of relative symlinks (targets starting with
  1592. '.' or '..')
  1593. Updated/fixed packages: bind, dhcpcd, docker-compose,
  1594. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1595. dtc, efivar, ghostscript, gnuradio, imagemagick, jpeg-turbo,
  1596. libarchive, libb64, libcurl, libgeotiff, libgpiod, libid3tag,
  1597. libupnp18, log4cplus, madplay, meson, mosquitto, openssh, php,
  1598. poco, postgresql, proftpd, pulseaudio, python, python-django,
  1599. python3, qt5base, reaver, runc, sg3_utils, sqlcipher,
  1600. swupdate, systemd, unzip, webkitgtk, xenomai
  1601. 2018.11.2, Released January 30th, 2019
  1602. Important / security related fixes.
  1603. Defconfigs: Fixes for imx6slevk, imx7dsabresd, imx8mqevk, Lego
  1604. EV3, QEMU AArch64-virt
  1605. Download: Fix scp download handling
  1606. check-package: fix Python 3 support
  1607. get-developers: Fix behaviour when called from elsewhere than
  1608. the toplevel directory.
  1609. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1610. a clean tree when ccache is enabled.
  1611. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1612. Updated/fixed packages: acpica, apache, apr, avrdude, cargo,
  1613. cc-tool, dash, dhcpdump, dmalloc, docker-containerd, efivar,
  1614. fwts, glibc, gnuchess, gnupg2, go, leveldb, libarchive,
  1615. libassuan, libftdi1, libgpg-error, libhttpparser, libkcapi,
  1616. libmad, libsndfile, libsquish, liburiparser, libwebsock,
  1617. libxml2, lighttpd, llvm, lm-sensors, lua-msgpack-native, lxc,
  1618. mariadb, mbedtls, meson, mosquitto, netatalk, nodejs, odhcp6c,
  1619. openresolv, openssh, pango, patchelf, php, python-django,
  1620. python-numpy, python-pyyaml, rauc, rp-pppoe, s6-networking,
  1621. samba4, sdl_sound, shairport-sync, sqlite, subversion,
  1622. sunxi-cedarx, swupdate, systemd, tcpreplay, tekui, tmp2-abrmd,
  1623. tpm2-tools, tpm2-tss, udisks, unixodbc, usb_modeswitch,
  1624. webkitgtk, wireshark, wolfssl, xapp_rgb, xenomai, xerces
  1625. Issues resolved (http://bugs.uclibc.org):
  1626. #11576: Unable to start apache with event MPM on raspberry pi 3
  1627. 2018.11.1, Released December 20th, 2018
  1628. Important / security related fixes.
  1629. defconfigs: Fixes for bananapi m2 ultra, ci20
  1630. Download wrapper: Fix for urlencode handling
  1631. Updated/fixed packages: asterisk, docker-compose,
  1632. docker-engine, dt-utils, gnutls, go, grub, libbsd, libcurl,
  1633. libpgpme, libiscsi, liblo, libmpd, libopenssl, liboping,
  1634. libpam-tacplus, libpjsip, linux-firmware, liquid-dsp,
  1635. lua-cqueue, luvi, lxc, lynx, nginx, nodejs, openzwave, php,
  1636. pps-tools, proftpd, prosody, sdl2_net, squashfs, swupdate,
  1637. uclibc, vtu, webkitgtk, wine, xen
  1638. New packages: docker-cli
  1639. Issues resolved (http://bugs.uclibc.org):
  1640. #11426: pps-tools bash dependency
  1641. #11536: dt-utils building fails with glibc 2.28
  1642. 2018.11, Released December 1st, 2018
  1643. Minor fixes.
  1644. Updated/fixed packages: c-ares, quagga, squid
  1645. 2018.11-rc3, released November 30th, 2018
  1646. Fixes all over the tree.
  1647. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1648. olinuxino lime legacy, Orangepi zero plus 2, PC, Riotboard.
  1649. graph-depends: Fix for package names starting with a non-alpha
  1650. character.
  1651. Updated/fixed packages: alsa-utils, botan, dante, domoticz,
  1652. dtc, freetype, gauche, gcc, gdb, ghostscript, glibc,
  1653. imx-usb-loader, libbsd, libid3tag, libkrb5, libmicrohttpd,
  1654. libopenssl, libsoxr, linux, motion, msgpack, mtd,
  1655. perl-net-ssleay, php, popt, python-numpy, qt5declarative,
  1656. samba4, shadowsocks-libev, stress-ng, systemd, usb_modeswitch,
  1657. webkitgtk, valgrind, weston, xfsprogs
  1658. 2018.11-rc2, released November 21th, 2018
  1659. Fixes all over the tree.
  1660. fs: Drop intermediate tarball from the filesystem handling to
  1661. fix an issue with xattrs handling related to fakeroot. Ensure
  1662. tarball target includes xattrs.
  1663. download: Fix confusion in git submodule handling if dl/ is a
  1664. symlink.
  1665. genrandconfig: Fix missing newline in BR2_WGET handling,
  1666. causing the following line to be ignored. This would affect
  1667. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1668. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1669. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1670. show-build-order: Also include the dependencies of
  1671. rootfs-common.
  1672. Fix a number of build issues in packages for the recently
  1673. merged RISC-V architecture support.
  1674. Updated/fixed packages: dt-utils, easydbus, elfutils,
  1675. flare-engine, flatcc, glibc, gstreamer, gstreamer1, imx-uuc,
  1676. libassuan, libcorrect, libiscsi, libkrb5, libmicrohttpd,
  1677. libnftnl, libnspr, libnss, libsemanage, libsigsegv, libv4l,
  1678. ltp-testsuite, luv, luvi, make, ncmpc, netplug, openocd,
  1679. prosody, qemu, rpm, sconeserver, shadowsocks-libev,
  1680. supertuxcart, syslinux, systemd, trace-cmd, uclibc,
  1681. uclibc-ng-test, vtun, webkitgtk, weston, wireshark, xen,
  1682. xlib_libfontenc
  1683. Issues resolved (http://bugs.uclibc.org):
  1684. #11086: download/git submodule breaks on symlinked dl folder
  1685. #11216: Capabilities not applied to filesystem
  1686. 2018.11-rc1, released November 9th, 2018
  1687. Fixes all over the tree and new features.
  1688. Architecture: RISC-V support (64bit) added.
  1689. Toolchain: Glibc bumped to 2.28. Fortran support for external
  1690. toolchains. ARM (Linaro) toolchains updated to 8.2-2018.08.
  1691. Hardening flags (RELRO) are now handled by the toolchain
  1692. wrapper instead of explicitly through CFLAGS/LDFLAGS, fixing a
  1693. number of issues.
  1694. Filesystems: Support for creating btrfs and f2fs filesystems
  1695. added.
  1696. Add a number of patches to fix build errors for host utilities
  1697. on modern distributions using glibc-2.28.
  1698. mkusers: Ensure existing group members are preserved when a
  1699. group is reprocessed.
  1700. printvars: Fix issue with exceeding shell command line length
  1701. limits for certain setups.
  1702. Workaround added for incompatibility issues between host-dtc
  1703. and older U-Boot and Linux kernel versions.
  1704. Detect and reject build paths containing '@', as this confuses
  1705. a number of packages, including GCC.
  1706. utils/diffconfig: Make it work for (non-Buildroot) config
  1707. files not using the BR2_ prefix.
  1708. New defconfigs: Amarula a64-relic, Bananapi m2 ultra, Embest
  1709. riotboard, Hardkernel Odroid XU-4, QEMU riscv64-virt.
  1710. olimex_a20_olinuxion_lime_mali is renamed to _legacy.
  1711. OpenCL infrastructure support added, similar to how OpenGL is
  1712. handled.
  1713. Linux-headers: Support for kernel headers from a custom
  1714. tarball / git repo added.
  1715. New packages: bird, bluez5_utils-headers, btrfs-progs,
  1716. checksec, davici, duktape, ell, haproxy, libclc, libcorrect,
  1717. libopencl, libopenresolv, nss-myhostname,
  1718. perl-apache-logformat-compiler, perl-appconfig,
  1719. perl-astro-suntime, perl-class-inspector, perl-class-load,
  1720. perl-class-method-modifiers, perl-class-std,
  1721. perl-class-std-fast, perl-cookie-baker, perl-data-dump,
  1722. perl-data-optlist, perl-data-uuid, perl-data-manip,
  1723. perl-dbd-mysql, perl-dbi, perl-devel-globaldestruction,
  1724. perl-devel-stacktrace, perl-devel-stacktrace-ashtml,
  1725. perl-device-serialport, perl-dist-checkconflicts,
  1726. perl-exporter-tiny, perl-file-sharedir, perl-file-slurp,
  1727. perl-filesys-notify-simple, perl-hash-multivalue,
  1728. perl-http-entity-parser, perl-http-headers-fast,
  1729. perl-http-multipartparser, perl-io-interface,
  1730. perl-io-socket-multicast, perl-json-maybexs, perl-mime-tools,
  1731. perl-module-implementation, perl-module-runtime, perl-moo,
  1732. perl-number-bytes-human, perl-package-stash, perl-params-util,
  1733. perl-plack, perl-posix-strftime-compiler, perl-role-tiny,
  1734. perl-streams-buffered, perl-sub-exporter-progressive,
  1735. perl-sub-install, perl-sub-quote, perl-sys-cpu,
  1736. perl-sys-meminfo, perl-sys-mmap, perl-time-parsedate,
  1737. perl-type-tiny, perl-www-form-urlencoded, perl-x10, pigpio,
  1738. python-async-timeout, python-falcon, python-fire,
  1739. python-mimeparse, python-multidict, python-passlib,
  1740. python-pigpio, python-pip, python-ply, python-py,
  1741. python-pyasn1, python-pyasn1-modules, python-pycryptodomex,
  1742. python-pyhamcrest, python-pysmi, python-scapy, python-semver,
  1743. python-serial-asyncio, python-typing, python-uvloop,
  1744. pythonwrapt, python-yarl, python-zeroconf, riscv-pk, sedutil,
  1745. spandsp, tini, waffle, xapian
  1746. Removed packages: bootutils, dsp-tools, expedite, gst-dsp,
  1747. xloader
  1748. Issues resolved (http://bugs.uclibc.org):
  1749. #11116: Buildroot should set PYTHON_EGG_CACHE instead of writing ..
  1750. #11156: In python3 module 'socket' has no attribute 'AF_BLUETOOTH'
  1751. #11166: Erlang bad argument on valid uint64 when crosscompiled on..
  1752. #11206: zlib: fails to build with Linaro toolchain, BR2_RELRO_FULL..
  1753. #11241: ACPID shouldn't depend on BR2_x86_64 || BR2_i386
  1754. #11251: Util scanpypi failes when package change - to _ in tar file
  1755. #11266: qt5base-5.11.1 does not compile with musl, complains about..
  1756. #11286: python-rpi-gpio only should depend on BR2_arm || BR2_aarch64
  1757. #11321: Latest master fails to build readline with RELRO FULL
  1758. #11326: sysvinit fails to build in latest GIT master
  1759. #11331: Internal application no longer builds with latest GIT master
  1760. #11336: nfs-utils fails to build in latest GIT master
  1761. #11351: build root-2018-08, linaro aarch64 compile error
  1762. #11376: mdmon binary missing
  1763. #11391: Valgind availability on ARM
  1764. #11396: uboot environment image checksum invalid if target is big endian
  1765. #11421: GCC error message for ARM Cortex-A9/ARM.V7
  1766. #11451: Can't find libmpfr.so.4 when using external toolchain on ubuntu..
  1767. #11481: Docs: Is external.desc required?
  1768. 2018.08.4, Released December 20th, 2018
  1769. Important / security related fixes.
  1770. Defconfigs: Fixes for ci20, orangepi zero plus 2
  1771. Download wrapper: Fix for urlencode handling
  1772. Updated/fixed packages: c-ares, dante, docker-compose,
  1773. domoticz, freetype, ghostscript, gnutls, libcurl, libgpgme,
  1774. libid3tag, libiscsi, libmpd, libopenssl, liboping, libpjsip,
  1775. linux-firmware, liquid-dsp, luvi, lynx, msgpack, nginx,
  1776. nodejs, php, popt, pps-tools, prosody, python-numpy,
  1777. python-requests, samba4, sdl2_net, squashfs, swupdate,
  1778. systemd, uclibc, vte, webkitgtk, wine, xfsprogs
  1779. Issues resolved (http://bugs.uclibc.org):
  1780. #11426: pps-tools bash dependency
  1781. 2018.08.3, Released November 26th, 2018
  1782. Important / security related fixes.
  1783. fs: Drop intermediate tarball from the filesystem handling to
  1784. fix an issue with xattrs handling related to fakeroot. Ensure
  1785. tarball target includes xattrs.
  1786. download: Fix confusion in git submodule handling if dl/ is a
  1787. symlink.
  1788. toolchain: Only allow enabling stack protection on
  1789. architectures with control flow integrity (CFI) support. Only
  1790. allow FORTIFY_SOURCE support on gcc >= 6.
  1791. genrandconfig: Fix missing newline in BR2_WGET handling,
  1792. causing the following line to be ignored. This would affect
  1793. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1794. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1795. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1796. show-build-order: Also include the dependencies of
  1797. rootfs-common.
  1798. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1799. olinuxino lime legacy, Orangepi zero plus 2.
  1800. graph-depends: Fix for package names starting with a non-alpha
  1801. character.
  1802. Updated/fixed packages: attr, audit, bind, brotli, busybox,
  1803. dtc, easydbus, elfutils, flare-engine, flatcc, gauche, gcc,
  1804. giflib, gpsd, lcdproc, libcurl, libiscsi, libkcapi, libnfs,
  1805. libnspr, libnss, libsemanage, liburiparser, lighttpd,
  1806. lua-curl, mariadb, mmc, mosquitto, mysql, ncmpc, neardal,
  1807. netplug, network-manager, nfs-utils, nginx, openocd, openswan,
  1808. p11-kit, postgresql, prosody, qemu, qt, rpm, ruby, samba4,
  1809. squid, supertuxkart, systemd, tar, trace-cmd, traceroute,
  1810. twolame, uclibc, usb_modeswitch, vtun, webkitgtk, weston,
  1811. xdriver_xf86-video-geode, xlib_libfontenc, xserver_xorg-server
  1812. Issues resolved (http://bugs.uclibc.org):
  1813. #11086: download/git submodule breaks on symlinked dl folder
  1814. #11481: Docs: Is external.desc required?
  1815. 2018.08.2, Released October 25th, 2018
  1816. Important / security related fixes.
  1817. Workaround added for incompatibility issues between host-dtc
  1818. and older U-Boot and Linux kernel versions.
  1819. Detect and reject build paths containing '@', as this confuses
  1820. a number of packages, including GCC.
  1821. utils/get-developers: Add -e option for use with git
  1822. send-email.
  1823. utils/diffconfig: Make it work for (non-Buildroot) config
  1824. files not using the BR2_ prefix.
  1825. u-boot: Fix for environment image handling on big endian
  1826. systems.
  1827. Updated/fixed packages: binutils, ca-certificates,
  1828. cups-filters, dtc, erlang, file, freetype, gcc, git, gvfs,
  1829. jasper, leveldb, libarchive, libssh, live555, ljlinenoise,
  1830. mariadb, mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils,
  1831. poco, psmisc, ptpd2, python-enum34, qemu, qt, qt5base,
  1832. setools, spice, spice-protocol, tinc, ustr, wireshark,
  1833. Issues resolved (http://bugs.uclibc.org):
  1834. #11396: uboot environment image checksum invalid if target is big endian
  1835. 2018.08.1, Released October 7th, 2018
  1836. Important / security related fixes.
  1837. Add a number of patches to fix build errors for host utilities
  1838. on modern distributions using glibc-2.28.
  1839. mkusers: Ensure existing group members are preserved when a
  1840. group is reprocessed.
  1841. printvars: Fix issue with exceeding shell command line length
  1842. limits for certain setups.
  1843. Updated/fixed packages: acpid, android-tools, apache,
  1844. arp-scan, bandwidthd, bind, brltty, clamav, connman, cppcms,
  1845. domoticz, dtc, fio, gcc, gdb, ghostscript, gnupg, httpping,
  1846. igmpproxy, imlib2, ipsec-tools, libesmtp, libnfs, libxslt,
  1847. links, lua, mosquitto, nilfs-utils, ocrad, parted, php,
  1848. python-django, screen, shairport-sync, strongswan,
  1849. vboot-utils, webkitgtk, wireguard, x265 xen, xlib_libXdmcp,
  1850. xlib_libXfont, xlib_libXft, xlib_libxshmfence,
  1851. xutil_makedepend, zeromq
  1852. 2018.08, Released September 6th, 2018
  1853. Minor fixes.
  1854. Known issues:
  1855. - Glibc 2.28 on the build host breaks compilation of a number
  1856. of host packages. 2018.08 contains fixes for some of these
  1857. packages, but not all. Consider building on hosts (or in
  1858. containers) using older Glibc versions.
  1859. - host-dtc 1.4.7 breaks compilation of older U-Boot and Linux
  1860. kernel configurations using FDT/DTC. Consider updating the
  1861. Linux kernel to >= 4.17 and U-Boot to >= 2018.07 or
  1862. backporting commit 9130ba8846 (scripts/dtc: Update to
  1863. upstream version v1.4.6-9-gaadd0b65c987) for the Linux
  1864. kernel / commit db405d1980 for U-Boot.
  1865. Alternatively revert commit 7b929ddcf0 (dtc: bump version to
  1866. 1.4.7) and ensure your build host does not have the libfdt
  1867. development headers installed.
  1868. Updated/fixed packages: busybox, chipmunk, cutelyst,
  1869. domoticz, gcc, imagemagick, lcms2, libcurl, mediastreamer,
  1870. moarvm, php, qt, qt5virtualkeyboard, qt5webengine, screen,
  1871. sdl2, squashfs, uboot, xen
  1872. Issues resolved (http://bugs.uclibc.org):
  1873. #11261: ccache using wrong cached objects
  1874. #11276: Understanding the patch for kernel-4.9 and other..
  1875. 2018.08-rc3, Released August 31th, 2018
  1876. Fixes all over the tree.
  1877. linux: additional improvements to the flex / bison dependency
  1878. handling, use system provided variant if available. Ensure
  1879. toolchain is available when configuring for 4.18+ support.
  1880. Download: Fix handling of primary sites using file://
  1881. Toolchain: Correct external toolchain musl detection for
  1882. static toolchains.
  1883. Updated/fixed packages: aircrack-ng, bison, brltty, busybox,
  1884. cutelyst, dropbear, gr-osmosdr, i2c-tools, json-c, libconfuse,
  1885. libkcapi, libsoup, libssh, liburiparser, mbedtls, mender,
  1886. mesa3d, minicom, mjpegtools, mutt, openpowerlink, openssh,
  1887. oracle-mysql, php, postgresql, pv, qt5base, qt5quickcontrols,
  1888. rauc, shairport-sync, systemd, xlib_libX11, zeromq,
  1889. Issues resolved (http://bugs.uclibc.org):
  1890. #11091: BR2_PRIMARY_SITE doesn't work (wget is selected...
  1891. #11141: WF111 package no longer available
  1892. #11211: Internal compiler error: Killed (program cc1plus)..
  1893. #11236: util-linux fails to build on Travis CI when python..
  1894. #11246: Glibc 2.28 - fails to build host-bison and host-m4
  1895. #11256: Add python-falcon and python-mimeparse packages
  1896. 2018.08-rc2, Released August 20th, 2018
  1897. Fixes all over the tree.
  1898. pkg-kconfig: Support dependencies needed to run the
  1899. configurator, E.G. recent Linux kernel versions needing flex
  1900. and bison.
  1901. Defconfigs: ARM Juno: Bump ATF to fix a build
  1902. issue. Raspberrypi2: Bump rootfs size. Snps_archs38_vdk:
  1903. Correct /etc/inittab. Technologic ts7680: Correct genimage
  1904. configuration. Orange PI PC / Zero, Sheevaplug: Bump U-boot to
  1905. 2018.07 to fix build issue. Ensure host-openssl is pulled in
  1906. for kernel builds where needed.
  1907. Updated/fixed packages: aircrack-ng, bind, boost,
  1908. boot-wrapper-aarch64, bzip2, busybox, chrony, cryptsetup,
  1909. dahdi-tools, dbus, domoticz, eigen, ipsec-tools, libarchive,
  1910. libfuse, libgit2, libopenssl, libselinux, lighttpd, lvm2, m4,
  1911. makedevs, mariadb, mesa3d-headers, mono, ncmpc, ncurses,
  1912. nodejs, php, python-django, python-pyqt5, qt5base,
  1913. qt5serialbus, ruby, samba4, uboot-tools, uclibc, vlc,
  1914. waylandpp, wireless_tools, wireshark, wpa_supplicant, mtd,
  1915. xdriver_xf86-video-ati, xserver_xorg-server
  1916. Issues resolved (http://bugs.uclibc.org):
  1917. #10781: cryptsetup luksOpen container_file container causes..
  1918. #10996: bogus musl ARM toolchain
  1919. #11191: xattr and check-package issue
  1920. 2018.08-rc1, Released August 5th, 2018
  1921. Toolchain:
  1922. - add support for gcc 8.x, switch to gcc 7.x as the default
  1923. version
  1924. - add support for gdb 8.1, switch to gdb 8.0 as the default
  1925. and remove gdb 7.10/7.11
  1926. - add support for binutils 2.31
  1927. - NIOSII CodeSourcery toolchain updated
  1928. - Linaro AArch64 BE toolchain added, and other Linaro
  1929. toolchains updated
  1930. - Synopsys ARC pre-built toolchain updated
  1931. Architecture: add support for ARM Cortex-M7
  1932. Major updates:
  1933. - systemd bumped to 239
  1934. - Qt5 bumped to 5.11.1
  1935. - Rust bumped to 1.27
  1936. - GStreamer stack bumped to 1.14.2
  1937. - X.org server bumped to 1.20, and all X.org proto packages
  1938. replaced by the single xorgproto package
  1939. - i.MX6 support packages bumped to 6.2.4
  1940. - i.MX Vivante graphics version bumped to 6.2.4.p1.2,
  1941. adding support for Wayland and i.MX8MQ platforms
  1942. Linux: bumped to 4.17 by default.
  1943. Infrastructure: new package infrastructure added for packages
  1944. using the Meson build system
  1945. New packages: at-spi2-atk, at-spi2-core, capnproto, cmocka,
  1946. corkscrew, cutelyst, davfs2, flatcc, libidn2, libgit2,
  1947. libopusenc, mender, nghttp2, perl-convert-asn1, perl-crypt-blowfish,
  1948. perl-crypt-cbc, perl-digest-md5, perl-mime-base64-urlsafe,
  1949. perl-mojolicious-plugin-authentication, perl-net-ping,
  1950. perl-net-snmp, perl-net-ssh2, perl-net-telnet, pigz,
  1951. python-reentry, python-request-id, python-validators,
  1952. python-webob, shadowsocks-libev, speexdsp, xorgproto, wampcc
  1953. New defconfigs: NXP i.MX7D SDB, Boundary Devices Nitrogen 8M,
  1954. Olimex A10 OLinuxino, ZynqMP ZCU106
  1955. Removed packages: all xproto_* have been removed and replaced
  1956. by xorgproto
  1957. Issues resolved (http://bugs.uclibc.org):
  1958. #9411: MUSL build with RT Error relocating /lib/libgcc_s.so.1:
  1959. __cpu_indicator_init: symbol not found
  1960. #9921: lockfile module within python-daemon not available
  1961. #10341: gdb install of py files when using buildroot toolchain
  1962. includes build path
  1963. #10661: /etc/init.d/S29netplug starts multiple instances of netplugd
  1964. #10751: Missing dependency in pulseaudio package
  1965. #10811: kodi-17.6-Krypton does not compile for freescale_* devices
  1966. #10856: openblas on qemu_x86_64_defconfig fails with
  1967. "sgemm_kernel.o: No such file or directory"
  1968. #11056: Compiling a file that uses libdrm headers fails with:
  1969. fatal error: drm.h: No such file or directory
  1970. #11061: support/download: git version=master broken
  1971. #11071: Building postgresql package on Debian 9.4 x64 for armel target fails
  1972. #11076: Docker containerd installed to incorrect path
  1973. #11101: host-patchelf Endian Issue with relative RPATH
  1974. #11111: raspberry pi 3 b+: missing BSP for 64-bit kernel
  1975. #11121: statfs call corrupts memory struct statfs too small
  1976. #11181: Switching toolchain does not work
  1977. 2018.05.3, Released October 6th, 2018
  1978. Important / security related fixes.
  1979. Add a number of patches to fix build errors for host utilities
  1980. on modern distributions using glibc-2.28.
  1981. mkusers: Ensure existing group members are preserved when a
  1982. group is reprocessed.
  1983. printvars: Fix issue with exceeding shell command line length
  1984. limits for certain setups.
  1985. Updated/fixed packages: acpid, android-tools, apache,
  1986. arp-scan, bandwidthd, bind, bison, brltty, chipmunk, connman,
  1987. cppcms, fio, gcc, ghostscript, gnupg, httping, igmpproxy,
  1988. imagemagick, imlib2, ipsec-tools, lcm2, libcurl, libesmtp,
  1989. libnfs, libssh, libxslt, links, mediastreamer, minicom,
  1990. moarvm, nilfs-utils, ocrad, parted, php, postgresql, pv,
  1991. python-django, qt, qt5quickcontrols, qt5webengine, screen,
  1992. sdl2, shairport-sync, squashfs, strongswan, vboot-utils,
  1993. webkitgtk, wireguard, x265, xen, xlib_libXfont, xlib_libXft,
  1994. xlib_libxshmfence, zeromq
  1995. 2018.05.2, Released August 28th, 2018
  1996. Important / security related fixes.
  1997. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  1998. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  1999. issue.
  2000. Updated/fixed packages: acl, attr, apache, bind,
  2001. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2002. dahdi-tools, dmidecode, dropbear, eigen, ffmpeg, gawk, gcc,
  2003. ghostscript, gnutls, imx-gpu-viv, ipsec-tools, libarchive,
  2004. libfuse, libglib2, libopenssl, libselinux, libsoup, lighttpd,
  2005. linuxptp, lttng-modules, lttng-tools, lua-flu, lvm2, m4,
  2006. makedevs, mariadb, mbedtls, mesa3d-heders, mtd, ncurses,
  2007. nodejs, openssh, php, python-django, rauc, ruby, samba4,
  2008. stress-ng, ti-utils, uboot-tools, uclibc, vim, waylandpp,
  2009. wireless_tools, wireless-regdb, wireshark, wpa_supplicant,
  2010. xorriso, znc
  2011. Issues resolved (http://bugs.uclibc.org):
  2012. #10781: cryptsetup luksOpen container_file container causes..
  2013. #10986: Installing package attr when already supplied by..
  2014. #11191: xattr and check-package issue
  2015. 2018.05.1, Released July 20th, 2018
  2016. Important / security related fixes.
  2017. U-Boot: Ensure host version of ncurses is picked up and not
  2018. host-ncurses built by buildroot, as that otherwise causes
  2019. widechar/non-widechar conflicts and corrupted menuconfig
  2020. menus.
  2021. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2022. Toolchain: ARC tools updated to arc-2018.03.
  2023. pkg-stats: Fix python 3.x compatibility.
  2024. dl-wrapper: Fix support for URIs containing '+', fix
  2025. no-check-hash for inferred site method.
  2026. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2027. Support ethernet on Turbot variant.
  2028. Updated/fixed packages: audit, bind, btrfs-progs, cifs-utils,
  2029. clamav, collectd, coreutils, docker-containerd, dos2unix,
  2030. edid-decode, file, gcc, gdb, gnupg, gnupg2, heimdal, hidapi,
  2031. imagemagick, libcurl, libgcrypt, libglib2, liblogging,
  2032. libostree, libressl, libsoup, libv4l, libvncserver, libvorbis,
  2033. libwebsockets, libxslt, lm-sensors, mariadb, mpg123, ncurses,
  2034. network-manager, nodejs, patchelf, perl, php-amqp, pinentry,
  2035. pixiewps, qpdf, qt53d, qt5base, qt5charts, qt5script, redis,
  2036. systemd, triggerhappy, uboot, wireguard, wireless-regdb,
  2037. wireshark
  2038. 2018.05, Released June 1st, 2018
  2039. Minor fixes.
  2040. Download: Work around for hanging connections for packages
  2041. from CVS, by adding a 10 minute max timeout.
  2042. Updated/fixed packages: binutils, clang, dash, expect, git,
  2043. glibc, jpeg-turbo, libjpeg, log4cplus, openvmtools, xen,
  2044. Issues resolved (http://bugs.uclibc.org):
  2045. #11051: runtime issue on STM32 with usage of binutils 2.29.x
  2046. 2018.05-rc3, Released May 28th, 2018
  2047. Fixes all over the tree.
  2048. Toolchain: ARC tools updated to arc-2018.03-rc2.
  2049. Fs: Ensure hard links in TARGET_DIR are correctly copied for
  2050. filesystem input. With the recent changes to the file system
  2051. generation logic, hard links were "expanded" in file system
  2052. images leading to bloated rootfs images for setups with hard
  2053. links.
  2054. Infrastructure: Error out for packages using the 'local'
  2055. method but forgetting to specify <pkg>_SITE.
  2056. Build rpcgen for the host when needed to support distributions
  2057. no longer shipping rpcgen with glibc (E.G. recent Fedora).
  2058. Updated/fixed packages: autofs, bash-completion, binutils,
  2059. busybox, cjson, elf2flt, libcoap, libcurl, libtirpc, lrzsz,
  2060. poppler, procps-ng, qt-webkit-kiosk, quota, samba4, xfsprogs
  2061. Issues resolved (http://bugs.uclibc.org):
  2062. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file..
  2063. #11036: C compiler cannot create executables
  2064. #11046: Git package binaries are ~180MB (compared to ~20MB in..
  2065. 2018.05-rc2, Released May 22nd, 2018
  2066. Fixes all over the tree.
  2067. Dependencies: Check that the current working directory (.)
  2068. isn't listed in PATH as that causes various build issues.
  2069. Manual: Clarify that git branch names may not be used as
  2070. version identifiers. This has never been supported, but was
  2071. kind of working (with some limitations) before the git
  2072. download rework - Now it does not work at all.
  2073. Linux: Ensure host version of ncurses is picked up and not
  2074. host-ncurses built by buildroot, as that otherwise causes
  2075. widechar/non-widechar conflicts and corrupted menuconfig
  2076. menus.
  2077. Packages: Renamed a number of package options not prefixed
  2078. with BR2_PACKAGE_<pkg> for consstency.
  2079. Download infrastructure: Fix file:// protocol handling after
  2080. download rework.
  2081. Updated/fixed packages: acl, apr-util, asterisk, attr,
  2082. bluez5_utils, cifs-utils, clamav, clang, cups-filters,
  2083. dahdi-linux, exim, faketime, gdb, go, gst1-plugins-bad,
  2084. imx-mkimage, ipsec-tools, jamvm, janus-gateway,
  2085. jquery-ui-themes, libcap, libcurl, libftdi, libkcapi, libkrb5,
  2086. libmediaart, libmodbus, libmodplug, libmpd,
  2087. libnetfilter_cthelper, libnetfilter_cttimeout, libnfc,
  2088. libnfnetlink, libnss, liboauth, libogg, libosip2,
  2089. libpam-radius-auth, libpcap, libpciaccess, llvm, log4cplus,
  2090. ltrace, lynx, mbedtls, modem-manager, nfs-utils,
  2091. python-cython, python-websockets, qt5cinex, qt5wayland, rauc,
  2092. snort, strace, ti-sgx-km, transmission, wavpack, wget, woff2,
  2093. xen, zmqpp, znc, zstd
  2094. Issues resolved (http://bugs.uclibc.org):
  2095. #10986: Installing package attr when already supplied by...
  2096. #11011: BUildroot for Raspberry Pi 2
  2097. #11016: Wrong compiler used for external user host packages
  2098. 2018.05-rc1, Released May 9th, 2018
  2099. Toolchain: glibc bumped to 2.27, musl bumped to 1.1.19,
  2100. uClibc-ng 1.0.30, Linux kernel headers bumped to 4.16.x.
  2101. Architecture: support for the Blackfin architecture has been
  2102. removed, as it was removed from Linux upstream, poorly
  2103. maintained in binutils/gdb, and abandoned by Analog Devices.
  2104. Numerous packages updated to have hashes for their license
  2105. files.
  2106. Systemd can now be built with uClibc toolchains.
  2107. Linux: addition of BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF and
  2108. BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL to support building Linux
  2109. kernel configurations that need libelf on the host or openssl
  2110. on the host.
  2111. Coding style:
  2112. - all Python scripts are now verified with flake8
  2113. - check-package extended to check all Config.in and .mk files
  2114. in tree, not only the ones in package/
  2115. Infrastructure:
  2116. - The download infrastructure has seen a major overhaul, with
  2117. the main visible new feature being Git caching: a package
  2118. fetched from Git no longer needs to be re-cloned entirely
  2119. everytime its version is changed. Anoter visible change is
  2120. that the download folder now has subfolders per package. See
  2121. http://lists.busybox.net/pipermail/buildroot/2018-April/217923.html
  2122. for more details about those changes.
  2123. - The logic that generates the root filesystem images has been
  2124. reworked, with the main goal of allowing several filesystem
  2125. images to be produced in parallel, also a requirement for
  2126. top-level parallel build. Now, a .tar filesystem image is
  2127. always created, and re-extracted in a private directory to
  2128. create each format-specific filesystem image.
  2129. - A new package infrastructure was introduced for Go-based
  2130. packages: golang-package.
  2131. - Dependencies on extraction tools are now handled as proper
  2132. per-package dependencies, using
  2133. <pkg>_EXTRACT_DEPENDENCIES. Beyond a cleanup, this is also a
  2134. preparation step for top-level parallel build support.
  2135. - When a file being downloaded is part of a package with a
  2136. .hash file, but there is no hash listed for this file, the
  2137. file is now preserved in the download directory rather than
  2138. removed. This helps when updating a package, as it gives the
  2139. ability to easily calculate the hash of the file.
  2140. - Addition of '<pkg>-show-recursive-depends' and
  2141. '<pkg>-show-recursive-rdepends' make targets, to
  2142. respectively display the recursive list of dependencies and
  2143. the recursive list of reverse dependencies of a given
  2144. package.
  2145. - The /etc/shells file is now automatically generated with the
  2146. list of shell programs installed on the system.
  2147. - Addition of -Ofast optimization level as an available
  2148. option.
  2149. Major updates: Go updated to 1.10, Erlang bumped to 20.3, Qt5
  2150. bumped to 5.10.1.
  2151. New packages: 18xx-ti-utils, abootimg, bluez-alsa, brotli,
  2152. chipmunk, clang, docker-compose, docker-proxy, flare-engine,
  2153. flare-game, gst1-interpipe, gstreamer1-editing-services,
  2154. hackrf, i2pd, imx-alsa-plugins, imx-mkimage, libcdio-paranoia,
  2155. libkrb5, llvm, pixiewps, python-backports-ssl-match-hostname,
  2156. python-cached-property, python-cython, python-docker,
  2157. python-dockerpty, python-docker-pycreds,
  2158. python-flask-sqlalchemy, python-functools32, python-influxdb,
  2159. python-json-models, python-libusb1, python-networkx,
  2160. python-psycopg2, python-pymodbus, python-sqlalchemy,
  2161. python-subprocess32, python-texttable,
  2162. python-websocket-client, python-yieldfrom, quotatool, reaver,
  2163. snort, sunxi-mali-mainline, sunxi-mali-mainline-driver, tk,
  2164. tpm2-abrmd, tpm2-tools, tpm2-tss, udftools, vte, woff2.
  2165. New defconfigs: ARC HS Development Kit, Arcturus ucls1012a,
  2166. Freescale i.MX6UL EVK (with vendor kernel), Freescale i.MX6
  2167. SoloLite EVK (with vendor kernel), Freescale i.MX31 3Stack,
  2168. Freescale i.MX8Q EVK Freescale p1025twr, Freescale t1040d4rdb,
  2169. Qemu PPC64 E5500, SolidRun ClearFog Base, Tinker RK3288, Vyasa
  2170. RK3288,
  2171. Removed packages: iqvlinux, kodi-adsp-*, mplayer
  2172. Removed defconfigs: ci40, firefly_rk3288,
  2173. freescale_p1010rdb_pa, freescale_mpc8315erdb, riotboard,
  2174. teliv_evk_pro3
  2175. Issues resolved (http://bugs.uclibc.org):
  2176. #10151: toolchain eclipse register : fails with a custom
  2177. BR2_HOST_DIR
  2178. #10511: Packages get downloaded uncompressed with wget
  2179. #10531: QtWebengine doesn't build if the host hasn't a 32 bits
  2180. C++ compiler working
  2181. #10846: error in compiling gnutls
  2182. #10886: openssl-1.0.2n fails to build
  2183. #10896: /bin/sh not in /etc/shells
  2184. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is
  2185. enabled
  2186. 2018.02.12, Released March 29th, 2019
  2187. Important / security related fixes.
  2188. Updated/fixed packages: avahi, beecrypt, busybox, clamav,
  2189. cups, devmem2, fetchmail, file, fltk, gcc, gdb, git, jq,
  2190. leveldb, libopenssl, libraw, libseccomp, libssh2,
  2191. libunistring, mariadb, mosquitto, nodejs, ntp, openjpeg, perl,
  2192. php, putty, qt5webkit, rdesktop, systemd, wireshark, vsftpd,
  2193. xapp_xdm, xlib_libXdmcp
  2194. 2018.02.11, Released February 23th, 2019
  2195. Important / security related fixes.
  2196. Ensure the PLATFORM and OS environment variables are not set,
  2197. as they cause build issues for some packages.
  2198. The package list infrastructure now correctly handles packages
  2199. installing files with old mtime.
  2200. Linux: Skip hash checks for user supplied downloadable
  2201. patches, as no hash checksums are available for those.
  2202. scanpypi: protect against zip-slip vulnerability in zip/tar
  2203. handling
  2204. Updated/fixed packages: bind, dhcpcd, dovecot, ghostscript,
  2205. gnuradio, imagemagick, jpeg-turbo, libarchive, libb64,
  2206. libcurl, libid3tag, madplay, mosquitto, openssh, php,
  2207. postgresql, proftpd, python, python-django, python3, qt5base,
  2208. sqlcipher, swupdate, systemd, unzip, webkitgtk
  2209. 2018.02.10, Released January 31th, 2019
  2210. Important / security related fixes.
  2211. Defconfigs: Fixes for Lego EV3, QEMU AArch64-virt
  2212. check-package: fix Python 3 support
  2213. get-developers: Fix behaviour when called from elsewhere than
  2214. the toplevel directory.
  2215. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  2216. Updated/fixed packages: acpica, apache, apr, asterisk,
  2217. avrdude, cargo, cc-tool, dash, dhcpdump, dmalloc, gnuchess,
  2218. gnupg2, leveldb, libarchive, libassuan, libftdi1,
  2219. libgpg-error, libhttpparser, libmad, libsndfile, libsquish,
  2220. liburiparser, libwebsock, libxml2, lighttpd, lm-sensors,
  2221. lua-msgpack-native, mbedtls, mosquitto, netatalk, nodejs,
  2222. openssh, pango, patchelf, php, python-django, python-pyyaml,
  2223. rauc, rp-pppoe, s6-networking, samba4, sdl_sound,
  2224. shairport-sync, sqlite, subversion, sunxi-cedarx, tcpreplay,
  2225. tekui, usb_modeswitch, webkitgtk, wireshark, wolfssl,
  2226. xapp_rgb, xenomai, xerces
  2227. Issues resolved (http://bugs.uclibc.org):
  2228. #11576: Unable to start apache with event MPM on raspberry pi 3
  2229. 2018.02.9, Released December 20th, 2018
  2230. Important / security related fixes.
  2231. defconfigs: Fixes for ci20
  2232. Updated/fixed packages: c-ares, dante, freetype, ghostscript,
  2233. glibc, gnutls, go, libcurl, libgpgme, libid3tag, libiscsi,
  2234. libmpd, libopenssl, libpjsip, linux, liquid-dsp, luvi, lynx,
  2235. msgpack, nginx, nodejs, php, popt, pps-tools, python-numpy,
  2236. python-requests, samba4, sdl2_net, squashfs, swupdate, uclibc,
  2237. wine, webkitgtk, xfsprogs
  2238. Issues resolved (http://bugs.uclibc.org):
  2239. #11426: pps-tools bash dependency
  2240. 2018.02.8, Released November 26th, 2018
  2241. Important / security related fixes.
  2242. fs: Drop intermediate tarball from the filesystem handling to
  2243. fix an issue with xattrs handling related to fakeroot. Ensure
  2244. tarball target includes xattrs.
  2245. download: Fix confusion in git submodule handling if dl/ is a
  2246. symlink.
  2247. toolchain: Only allow enabling stack protection on
  2248. architectures with control flow integrity (CFI) support. Only
  2249. allow FORTIFY_SOURCE support on gcc >= 6.
  2250. genrandconfig: Fix missing newline in BR2_WGET handling,
  2251. causing the following line to be ignored. This would affect
  2252. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  2253. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  2254. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  2255. show-build-order: Also include the dependencies of
  2256. rootfs-common.
  2257. Defconfigs: Fixes for Armadeus APF27, imx6sabre.
  2258. graph-depends: Fix for package names starting with a non-alpha
  2259. character.
  2260. Updated/fixed packages: attr, audit, bind, brotli, easydbus,
  2261. elfutils, gauche, gcc, giflib, gpsd, lcdproc, libcurl,
  2262. libiscsi, libnfs, libnspr, libnss, libkcapi, libsemanage,
  2263. liburiparser, lighttpd, linux, lua-curl, mariadb, mmc-utils,
  2264. mosquitto, mysql, neardal, netplug, network-manager,
  2265. nfs-utils, nginx, openocd, openswan, p11-kit, postgresql,
  2266. prosody, qemu, qt, rpm, ruby, samba4, squid, supertuxkart,
  2267. systemd, tar, trace-cmd, traceroute, twolame, uclibc,
  2268. usb_modeswitch, vtun, webkitgtk, xdriver_xf86-video-geode,
  2269. xlib_libfontenc, xproto_inputproto, xserver_xorg-server
  2270. Issues resolved (http://bugs.uclibc.org):
  2271. #11086: download/git submodule breaks on symlinked dl folder
  2272. #11251: Util scanpypi failes when package change - to _ in..
  2273. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  2274. #11481: Docs: Is external.desc required?
  2275. 2018.02.7, Released October 25th, 2018
  2276. Important / security related fixes.
  2277. Detect and reject build paths containing '@', as this confuses
  2278. a number of packages, including GCC.
  2279. utils/get-developers: Add -e option for use with git
  2280. send-email.
  2281. utils/diffconfig: Make it work for (non-Buildroot) config
  2282. files not using the BR2_ prefix.
  2283. u-boot: Fix for environment image handling on big endian
  2284. systems.
  2285. Updated/fixed packages: binutils, ca-certificates,
  2286. cups-filters, erlang, file, freetype, gcc, git, gvfs, leveldb,
  2287. libarchive, libcurl, libssh, live555, ljlinenoise, mariadb,
  2288. mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils, poco,
  2289. psmisc, ptpd2, python-enum34, qemu, qt, qt5base, setools,
  2290. spice, spice-protocol, tinc, ustr, wireshark
  2291. Issues resolved (http://bugs.uclibc.org):
  2292. #11396: uboot environment image checksum invalid if target is big endian
  2293. 2018.02.6, Released October 7th, 2018
  2294. Important / security related fixes.
  2295. Add a number of patches to fix build errors for host utilities
  2296. on modern distributions using glibc-2.28.
  2297. mkusers: Ensure existing group members are preserved when a
  2298. group is reprocessed.
  2299. printvars: Fix issue with exceeding shell command line length
  2300. limits for certain setups.
  2301. Updated/fixes packages: acpid, android-tools, apache,
  2302. arp-scan, bandwidthd, bind, bison, clamav, connman, cppcms,
  2303. cramfs, fio, gcc, ghostscript, glibc, gnupg, httping,
  2304. igmpproxy, imagemagick, imlib2, ipsec-tools, lcms2, libcurl,
  2305. libesmtp, libnfs, libssh, libxslt, links, linuxptp,
  2306. mediastreamer, minicom, moarvm, nilfs-utils, ocrad, parted,
  2307. php, pv, python-django, qt, qt5quickcontrols, qt5webengine,
  2308. screen, sdl2, shairport-sync, squashfs, strongswan,
  2309. vboot-utils, webkitgtk, wireguard, x265, xen, xlib_libXfont,
  2310. xlib_libXft
  2311. New packages: brotli, woff2
  2312. 2018.02.5, Released August 29th, 2018
  2313. Important / security related fixes.
  2314. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2315. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2316. issue.
  2317. Updated/fixed packages: acl, apache, attr, bind,
  2318. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2319. dahdi-tools, dmidecode, dropbear, eigen, erlang, ffmpeg, gawk,
  2320. gcc, ghostscript, gnutls, ipsec-tools, libarchive, libfuse,
  2321. libopenssl, libselinux, libsoup, lighttpd, linuxptp,
  2322. lttng-modules, lttng-tools, lua-flu, lvm2, m4, makedevs,
  2323. mariadb, mbedtls, mesa3d-headers, mtd, ncurses, nodejs,
  2324. openssh, php, postgresql, python-django, qt5xmlpatterns, ruby,
  2325. samba4, shairport-sync, stress-ng, ti-utils, uboot-tools, vim,
  2326. waylandpp, wireless_tools, wireshark, wpa_supplicant, xorriso,
  2327. znc
  2328. Issues resolved (http://bugs.uclibc.org):
  2329. #10781: cryptsetup luksOpen container_file container causes..
  2330. #10986: Installing package attr when already supplied by..
  2331. #11191: xattr and check-package issue
  2332. 2018.02.4, Released July 21th, 2018
  2333. Important / security related fixes.
  2334. U-Boot: Ensure host version of ncurses is picked up and not
  2335. host-ncurses built by buildroot, as that otherwise causes
  2336. widechar/non-widechar conflicts and corrupted menuconfig
  2337. menus.
  2338. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2339. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2340. Support ethernet on Turbot variant.
  2341. Updated/fixed packages: bind, clamav, collectd, dos2unix,
  2342. edid-decode, gcc, gdb, heimdal, hidapi, imx-gpu-viv, libcurl,
  2343. libglib2, liblogging, libostree, libsoup, libv4l, lm-sensors,
  2344. ncurses, network-manager, patchelf, pinentry, procps-ng, qpdf,
  2345. qt5, qt53d, qt5base, qt5charts, qt5script, qt5serialport,
  2346. systemd, wireguard, wireless-regdb
  2347. Issues resolved (http://bugs.uclibc.org):
  2348. #11101: host-patchelf Endian Issue with relative RPATH
  2349. 2018.02.3, Released June 18th, 2018
  2350. Important / security related fixes.
  2351. Various fixes for building on modern distributions (GCC 8.x,
  2352. no rpcgen utility).
  2353. ARM: Default to binutils 2.28 and warn about newer binutils
  2354. versions, which are known to cause boot failures for Linux
  2355. kernels built in thumb mode.
  2356. Busybox/mdev: Fix module autoloading.
  2357. Busybox/sysvinit: inittab: Add /dev/{stdin,stdout,stderr}
  2358. symlinks, call swapon -a to activate any configured swap
  2359. devices.
  2360. Dependencies: Check that PATH does not contain current working
  2361. directory, which triggers a number of build failures.
  2362. Infrastructure: Error out for packages erroneously using the
  2363. 'local' site method but not defining a _SITE.
  2364. Linux: Fix cuImage.<dtb> / simpleImage.<dtb> handling. Ensure
  2365. kconfig uses ncurses from the host to fix a ncurses/ncursesw
  2366. mixup, causing menuconfig display corruption.
  2367. Toolchain: Workarounds for fix-rpath issues with binutils and
  2368. elf2flt.
  2369. Util-linux: Fix blocking on getrandom() issue with recent
  2370. kernels.
  2371. Remove broken freescale_imx31_3stack,
  2372. freescale_imx6sololiteevk and freescale_imx6ulevk defconfigs.
  2373. Updated/fixed packages: apr-util, asterisk, attr, audit,
  2374. autofs, binutils, busybox, cifs-utils, cups-filters, dash,
  2375. ebtables, exim, expect, f2fs-tools, faketime, file, gdb, git,
  2376. glibc, gnupg, gnupg2, gst1-plugins-bad, imagemagick, jamvm,
  2377. jpeg-turbo, libcap, libcoap, libcurl, libgcrypt, libjpeg,
  2378. libnss, libressl, libtirpc, libvncserver, libvorbis, libxslt,
  2379. log4cplus, lrzsz, ltrace, lynx, mariadb, mbedtls, mpg123,
  2380. nasm, netplug, network-manager, nfs-utils, nodejs,
  2381. openvmtools, patch, perl, php-amqp, poppler, procps-ng,
  2382. python, python-websockets, quota, redis, samba4, sysvinit,
  2383. transmission, triggerhappy, util-linux, wavpack, wget,
  2384. wireshark, xen, zmqpp
  2385. Issues resolved (http://bugs.uclibc.org):
  2386. #10986: Installing package attr when already supplied by busybox..
  2387. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file or..
  2388. 2018.02.2, Released May 4th, 2018
  2389. Important / security related fixes.
  2390. Tweak package size/file instrumentation to better handle
  2391. package rebuilds.
  2392. Revert /etc/shells creation when bash is enabled.
  2393. Exclude /lib/firmware from the rpath fixup logic, as it may
  2394. contain non-native ELF files.
  2395. Scanpypi: Support the new PyPi infrastructure.
  2396. Handle GCC 8.x on the host.
  2397. Ensure timestamp of /usr is updated to support the systemd
  2398. ConditionNeedsUpdate option.
  2399. Updated/fixed packages: bluez5_utils, flann, gdb, gnupg2,
  2400. grub2, libcec, libcgi, libglib2, libgpg-error, libgpgme,
  2401. libtomcrypt, mbedtls, mkpasswd, php, python, python-requests,
  2402. python-watchdog, qt53d, qt5websockets, sdl2, sdl2_image,
  2403. syslog-ng, systemd, tcl, tcllib, uclibc, usb_modeswitch,
  2404. wireguard, wmctrl
  2405. Issues resolved (http://bugs.uclibc.org):
  2406. #10896: /bin/sh not in /etc/shells
  2407. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is enabled
  2408. 2018.02.1, Released April 9th, 2018
  2409. Important / security related fixes.
  2410. Removed unmaintained defconfigs: Creator Ci40, Firefly rk3288,
  2411. Freescale mpc8315erdb / p1010rdb_pa, Riotboard, Teliv EVK
  2412. Pro3.
  2413. Infrastructure: Speed up instrumentation for package size by
  2414. comparing timestamps instead of md5 checksums, as doing
  2415. checksums could lead to up to 25% longer build time for big
  2416. configurations.
  2417. Rename the internal <pkg>_BASE_NAME variable to <pkg>_NASENAME
  2418. to avoid name clashes with packages ending on '-base'.
  2419. Add a better fix for build issues for autotools based packages
  2420. checking for C++ support on toolchains without C++ support.
  2421. Build host-tar if tar is older than 1.27 on the build machine
  2422. to work around reproducibility issues with git archives
  2423. containing long paths.
  2424. check-unique-files: Fix for filenames not representable in the
  2425. users' locale.
  2426. Check-bin-arch: Add support for per-package ignore paths
  2427. (<pkg>_BIN_ARCH_EXCLUDE).
  2428. Toolchain: Fix SSP support detection for external toolchains.
  2429. linux: Add _NEEDS_HOST_OPENSSL / LIBELF options to ensure
  2430. these dependencies are available for Linux configurations
  2431. needed these dependencies, similar to how it is done for
  2432. U-Boot.
  2433. Support custom (not in tree) device tree files in addition to
  2434. in-tree ones.
  2435. U-Boot / uboot-tools: Fix header conflict with libfdt-devel
  2436. installed on host.
  2437. Updated/fixed packages: apache, busybox, c-ares, cmake,
  2438. docker-engine, enlightenment, eudev, fbgrab, freescale-imx,
  2439. gtest, imagemagick, intel-microcode, irssi, jimtcl, kmod,
  2440. kodi, ktap, libcoap, libcurl, libfcgi, libhttpparser,
  2441. libminiupnpc, libopenssl, libpjsip, libss7, libssh2, libupnp
  2442. libupnpp, libuv, libvorbis, memcached, motion, musl, nodejs,
  2443. ntp, openblas, opencv3, openocd, opus-tools, patch, php,
  2444. pkgconf, postgresql, powerpc-utils, python-jsonschema,
  2445. python-webpy, qemu, qt5bsae, qt5script, qt5webkit, rapidjson,
  2446. rauc, sam-ba, samba4, sngrep, systemd, tremor, uboot-tools,
  2447. uclibc-ng-test, upmpdcli, wireshark, xerces, xterm, zstd
  2448. New packages: docker-proxy, python-functools32
  2449. Issues resolved (http://bugs.uclibc.org):
  2450. #10766: upmpdcli: Segmentation fault
  2451. #10776: ktap fails to build
  2452. #10846: error in compiling gnutls
  2453. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  2454. 2018.02, Released March 4th, 2018
  2455. Fixes all over the tree.
  2456. Issues with systemd with a readonly rootfs and DBus fixed.
  2457. Instructure:
  2458. - check-uniq-files: fix Python 2.6 compatibility.
  2459. - dependencies.sh: check for external argparse module for
  2460. Python 2.6.
  2461. - Add infrastructure to detect and use a UTF-8 locale on the
  2462. host, needed by systemd.
  2463. Update/fixed packages: clamav, dash, dhcp, dovecot, efl,
  2464. ffmpeg, libv4l, mono, mosquitto, php, postgresql, qt,
  2465. scanpypi, sdl2, systemd, tor, tvheadend, uboot, wavpack
  2466. Issues resolved (http://bugs.uclibc.org):
  2467. #10831: qemu_x86_64_defconfig build fails on linux-headers..
  2468. 2018.02-rc3, Released February 27th, 2018
  2469. Fixes all over the tree.
  2470. check-bin-arch: skip /lib/modules to allow 32-bit userland
  2471. with 64bit kernel.
  2472. dependencies: Blacklist tar 1.30+ and build our own host-tar
  2473. if needed as tar 1.30+ changed the --numeric-owner output for
  2474. long path names. Build host-tar before other host-dependencies
  2475. as they need it to extract their source tarballs.
  2476. Update/fixed packages: asterisk, azmq, bluez5_utils, domoticz,
  2477. e2fsprogs, erlang, exim, glibc, gpsd, jq, libglib2, libvorbis,
  2478. mariadb, mbedtls, mesa3d, mesa3d-headers, mpv, patch, pcre2,
  2479. php, qt5, qt5multimedia, qt5wayland, qt5webengine, qt5webkit,
  2480. systemd, quagga, rustc, uboot, wireguard, zic, zlib-ng
  2481. Issues resolved (http://bugs.uclibc.org):
  2482. #10726: Current libglib2.mk creates broken libglib2 binary...
  2483. #10786: Linux fails to build unless make linux-menuconfig...
  2484. #10796: Cannot generate cpio image without selecting CON...
  2485. 2018.02-rc2, Released February 15th, 2018
  2486. Fixes all over the tree.
  2487. Dependencies: Ensure C++ support is available like for C
  2488. support for packages needing 32bit host support.
  2489. utils/genrandconfig: Check host dependencies for config.
  2490. Updated/fixed packages: busybox, dnsmasq, dropbear, ffmpeg,
  2491. glibc, keepalived, libcpprestsdk, libgpiod, libmaxminddb,
  2492. librsvg, libtasn1, libv4l, libxml2, lightning, ltp-testsuite,
  2493. mesa3d, mesa3d-demos, mesa3d-headers, nftables, open-lldp,
  2494. php, postgresql, python-crossbar, qt5, qt53d, qt5enginio,
  2495. qt5tools, qt5webengine, qt5webkit, rsync, rust-bin, rustc,
  2496. systemd
  2497. Issues resolved (http://bugs.uclibc.org):
  2498. #9781: ti-sgx-km build on kernel >4.1
  2499. #10141: Squashfs extended attribute failures
  2500. 2018.02-rc1, Released February 5th, 2018
  2501. The global source-check and per-package <pkg>-source-check
  2502. targets have been removed.
  2503. Architecture: Add x86 Silvermont variant. Add several new ARM
  2504. variants, rework MIPS NaN logic. Support mainline binutils/gcc
  2505. for ARC.
  2506. Toolchains: Linaro toolchains upgraded to 2017.11 release, ARC
  2507. external toolchains upgraded to arc-2017.09. Libatomic is now
  2508. also copied for external musl based toolchains.
  2509. Add binutils 2.30.x and switch to binutils 2.29.x by default.
  2510. Added hardening options to build with RELRO and FORTITY.
  2511. New defconfigs: Bananapi M64, FriendlyARM Nanopi A64 & NEO2,
  2512. imx6slevk, imx6sx-sdb, imx6ulevk, Olimex A64-OLinuXino,
  2513. Orangepi lite / pc plus / pc / prime / win / win plus / zero
  2514. plus2, Pine64, Solidrun MacchiatoBin. Sopine.
  2515. Add utils/diffconfig, a simple utility for comparing
  2516. configuration files - Adapted from the version in the
  2517. Linux kernel.
  2518. Infrastructure: Check that the same file is not touched by
  2519. multiple packages, as a preparation for toplevel parallel
  2520. builds.
  2521. Hashes for the license files for a large number of packages
  2522. have been added, ensuring that license changes will not be
  2523. missed when packages are bumped.
  2524. Fix build issue for autotools based packages checking for C++
  2525. support on toolchains without C++ support and on a distro
  2526. lacking /lib/cpp (E.G. Arch Linux).
  2527. Support for the meson build system.
  2528. Pie charts generated by 'graph-build' or 'graph-size' are now
  2529. sorted according to the size of each piece.
  2530. System: Only show getty options when busybox init or sysvinit
  2531. are used.
  2532. ARM-trusted-firmware: Support ATF bundled in U-Boot as
  2533. well as U-Boot bundled in ATF.
  2534. Zlib is now a virtual package, provided by either libzlib or
  2535. zlib-ng, similar to openssl.
  2536. Support for the Rust programming language.
  2537. New packages: aoetools, armbian-firmware, binaries-marvell,
  2538. brltty, cargo, cargo-bin, cups-filters, curlpp, daq,
  2539. flatbuffers, gconf, glorytun, gstreamer1-mm, imx-m4fwloader,
  2540. imx-gpu-g2d, json-for-modern-cpp, libcpprestsdk, libgta,
  2541. libostree, libupnp18, luadbi, luadbi-sqlite3, lua-utf8, lynx,
  2542. meson, mv-ddr-marvell, nilfs-utils, opentracing-cpp,
  2543. open-lldp, pimd, proj, python-flask-cors,
  2544. python-jaraco-classes, python-more-itertools, python-oauthlib,
  2545. python-raven, python-remi, python-requests-oauthlib,
  2546. python-schedule, python-secretstorage, python-see,
  2547. python-tabledata, python-txtorcon, python-xlib, qt5charts,
  2548. rtl8189fs, rtl8723bu, rust, rustc, rust-bin, rygel, safeclib,
  2549. solatus, tcf-agent, traceroute, waylandpp, wolfssl,
  2550. zisofs-tools, zlib-ng
  2551. Removed packages: eeprog
  2552. 2017.11.2, Released January 21st, 2018
  2553. Important / security related fixes.
  2554. External toolchain: libatomic is now also copied for musl
  2555. based toolchains.
  2556. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  2557. System: Only show getty options when busybox init or sysvinit
  2558. are used.
  2559. Infrastructure: Fix build issue for autotools based packages
  2560. checking for C++ support on toolchains without C++ support and
  2561. on a distro lacking /lib/cpp (E.G. Arch Linux).
  2562. Pie charts generated by 'graph-build' or 'graph-size' are now
  2563. sorted according to the size of each piece.
  2564. Updated/fixed packages: asterisk, avahi, bind, busybox,
  2565. coreutils, eeprog, intel-microcode, iputils, irssi, kmsxx,
  2566. libiio, linux-firmware, lz4, mariadb, matchbox-lib, mcookie,
  2567. ntp, php, pound, rpcbind, tar, ti-cgt-pru, webkitgtk, xen,
  2568. xlib_libXpm
  2569. Issues resolved (http://bugs.buildroot.org):
  2570. #9996: lz4 package does not install lz4 binaries in target
  2571. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  2572. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  2573. #10301: systemd/getty unused options
  2574. #10331: kmsxx, host installation fails with BR2_SHARED_...
  2575. #10556: Building ntp package with SSL library libressl...
  2576. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  2577. 2017.11.1, Released December 31th, 2017
  2578. Important / security related fixes.
  2579. Updated/fixed packages: asterisk, checkpolicy, dhcp, flann,
  2580. gdb, glibc, heimdal, kodi-pvr-mediaportal-tvserver,
  2581. kodi-pvr-stalker, libcue, libopenssl, libpqxx, libsoxr,
  2582. linknx, linux-tools, lldpd, ltp-testsuite, mariadb, mfgtools,
  2583. nodejs, nut, pulseaudio, python-cffi, qemu, rsync, tor, uboot,
  2584. uboot-tools, vlc, webkitgtk, weston, wireguard, wireshark,
  2585. xenomai, xfsprogs
  2586. 2017.11, Released November 30, 2017
  2587. Fixes all over the tree.
  2588. Toolchain: Use github mirror for Glibc.
  2589. Defconfigs: Correct boot.cmd for bananapi-m1.
  2590. Makefiles: Workaround include order issues for certain make
  2591. versions by explicitly sorting the result of wildcard where it
  2592. matters.
  2593. Download: Ensure subversion runs in non-interactive mode.
  2594. Updated/fixed packages: asterisk, boost, chrony, dovecot,
  2595. dvb-apps, exim, feh, freerdp, fwup, google-breakpad, jose,
  2596. kvm-unit-test, lftp, libcurl, libevent, libfastjson, libpjsip,
  2597. libupnp, linphone, localedef, lttng-tools, mp4v2, mtools,
  2598. ndisc6, oracle-mysql, parted, pdbg, qt, qt5connectivity,
  2599. qt5declarative, qt5webkit, rauc, runc, samba4, shairport-sync,
  2600. systemd-bootchart, webkitgtk, wireguard, xlib_libXcursor,
  2601. xlib_libXfont, xlib_libXfont2,
  2602. Issues resolved (http://bugs.buildroot.org):
  2603. 10501: host-localedef fails to compile on Ubuntu 17.10
  2604. 10506: Changed kernel image type (e.g. zImage to uImage)...
  2605. 2017.11-rc2, Released November 13th, 2017
  2606. Fixes all over the tree.
  2607. Updated/fixed packages: collectd, ffmpeg, freerdp,
  2608. go-bootstrap, imagemagick, jimtcl, libpjsip, libplist, libuv,
  2609. mesa3d, nodejs, ntp, openjpeg, postgresql, python-numpy, ruby,
  2610. snmp++, usb_modeswitch, util-linux, vboot-utils, webkitgtk,
  2611. wireshark, wpa_supplicant, xapp_xdriinfo
  2612. Issues resolved (http://bugs.buildroot.org):
  2613. #10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2614. #10491: Cannot output security warning when compiled with buildroot..
  2615. 2017.11-rc1, Released November 6th, 2017
  2616. Fixes all over the tree and new features.
  2617. Openssl is now a virtual package, which may be provided by
  2618. OpenSSL (now renamed to libopenssl) or LibreSSL.
  2619. libssh2: there is now an explicit choice of the backend to use
  2620. (mbedtls, gnutls or openssl). Previously, the choice was implicit
  2621. based on the TLS library that was selected. Now, it is possible to
  2622. choose the backend, which is important if several TLS libraries are
  2623. selected.
  2624. netsnmp: all MIB files are now installed, making the target filesystem a
  2625. bit bigger than before. To remove unneeded MIBS, you should use a
  2626. post-build script.
  2627. Toolchain: Linaro toolchains updated to 2017.08, ARC toolchain
  2628. updated to 2017.09, Glibc updated to 2.26, Glibc support for
  2629. ARCv2. The toolchain wrapper now handles SOURCE_DATE_EPOCH for
  2630. older (pre-gcc7.x) toolchains for BR2_REPRODUCIBLE.
  2631. New defconfigs: Atmel SAM45D27, Bananapi M1 and M2 Plus,
  2632. Engicam i.CoreM6 Qt5 configuration, i.MX6 sabreauto (mainline
  2633. kernel/u-boot), i.MX6Q sabresd Qt5 configuration, i.MX7d-pico,
  2634. QEMU ppc64le, Raspberry pi3 Qt5 webengine configuration,
  2635. Technologic TS-7680.
  2636. New packages: asterisk, azmq, bcg729, boinc, dahdi-linux,
  2637. dahdi-tools, freeswitch-mod-bcg729, fscryptctl, libb64,
  2638. libpri, libss7, lua-basexx, lua-compat53, lua-cqueues,
  2639. lua-curl, lua-datafile, lua-fifo, lua-httpd,
  2640. lua-lpeg-patterns, lua-markdown, lua-sailor, lua-value,
  2641. luksmeta, minetest, minetest-game, pdmenu, prosody,
  2642. python-aiocoap, python-automat, python-ibmiotf,
  2643. python-iso8601, python-m2r, python-simplesqlite,
  2644. python-websockets, python-xmltodict, qt5wayland, qt5webengine,
  2645. restorecond, selinux-python, semodule-utils, uhubctl,
  2646. wireguard, wsapi-fcgi, wsapi-xavante
  2647. Removed packages: aiccu, rfkill, sepolgen
  2648. Issues resolved (http://bugs.buildroot.org):
  2649. #10281: lsblk does not compile for util-linux
  2650. #10336: lttng compilation fails : linking error
  2651. #10351: glibc missing in rootfs
  2652. #10356: nfs-utils missing header
  2653. #10361: python3 python-config script generates invalid includes
  2654. #10366: dropbear download url has changed
  2655. #10391: WiringPi retrieves wrong (old) version
  2656. #10406: Beaglebone black: Buggy SGX driver version, swapped...
  2657. #10426: uboot-tools' fw_setenv does not update the redundant...
  2658. #10451: libpcap 1.8.x and 1.7x does not compile on PPC
  2659. 2017.08.2, Released November 28th, 2017
  2660. Important / security related fixes.
  2661. Qt: 5.6 version updated to 5.6.3.
  2662. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  2663. in the environment.
  2664. Makefiles: Workaround include order issues for certain make
  2665. versions by explicitly sorting the result of wildcard where it
  2666. matters.
  2667. Updated/fixed packages: apr, apr-util, arqp-standalone,
  2668. azure-iot-sdk-c, collectd, dvb-apps, ffmpeg, go-bootstrap,
  2669. google-breakpad, gstreamer, imagemagick, irssi, jimtcl,
  2670. kvm-unit-test, libcurl, libfastjson, libglib2, libidn,
  2671. libpjsip, libplist, localedef, lttng-tools, luajit, mesa3d,
  2672. moarvm, mp4v2, openssh, openssl, oracle-mysql, postgresql,
  2673. python3, python-pyqt5, qt, qt5base, qt5canvas3d,
  2674. qt5connectivity, qt5declarative, qt5engineio,
  2675. qt5graphicaleffects, qt5imageformats, qt5location,
  2676. qt5multimedia, qt5quickcontrols, qt5quickcontrols2, qt5script,
  2677. qt5sensors, qt5serialbus, qt5serialport, qt5svg, qt5tools,
  2678. qt5webchannel, qt5webkit, qt5websockets, qt5x11extras,
  2679. qt5xmlpatterns, quagga, redis, ruby, samba4, sdl2, snmppp,
  2680. swupdate, ti-gfx, uboot-tools, usb_modeswitch, vboot-utils,
  2681. webkitgtk, wget, wireshark, xapp_xdriinfo.
  2682. Issues resolved (http://bugs.buildroot.org):
  2683. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2684. 10361: python3 python-config script generates invalid includes
  2685. 10501: host-localedef fails to compile on Ubuntu 17.10
  2686. 2017.08.1, Released October 23rd, 2017
  2687. Important / security related fixes.
  2688. Webkitgtk bumped to the 2.18.x series, fixing a large number
  2689. of security issues.
  2690. Defconfigs: galileo: fix ext4 related kernel config, bump
  2691. kernel for gcc 6.x compatibility, enable wchar support for
  2692. grub2. wandboard: correct rootfs offset
  2693. support: Ensure gzip compression level 6 is used for git
  2694. tarballs. check-bin-arch: Correctly handle (ignore) symbolic
  2695. links. check-rpath: Also handle PIE binaries
  2696. External toolchain: Correctly handle glibc Buildroot
  2697. toolchains built with merged /usr
  2698. musl: fix ARMv4 build with binutils 2.27.51+, fix for
  2699. CVE-2017-15650
  2700. Updated/fixed packages: apache, augeas, bind, bluez5_utils,
  2701. busybox, bzip2, cmake, dnsmasq, ejabberd, gcc, git, go, ffmpeg, file,
  2702. flashrom, gd, gdk-pixbug, gnupg2, hostapd, ifupdown-scripts,
  2703. imagemagick, iucode-tool, kernel-module-imx-gpu-viv, lame,
  2704. libarchive, libcurl, libffi, libidn, libmbim, libnspr, libnss,
  2705. libressl, librsync, libsoup, libxml2, libzip, mbedtls, musl,
  2706. netplug, nginx, openvpn, pkgconf, poppler, proxychains-ng,
  2707. qemu, qt, rpi-userland, syslog, ruby, samba4, softether,
  2708. sqlite, strongswan, subversion, supertuxkart, supervisor, tcpdump,
  2709. tor, unrar, urq, vboot-utils, webkitgtk, wpa_supplicant, xen,
  2710. xmlstarlet, xlib_libXfont, xlib_libXfont2,
  2711. xserver_xorg-server, zsh
  2712. 2017.08, Released September 1st, 2017
  2713. Minor fixes.
  2714. Toolchain: Don't allow internal toolchain builds for MIPS
  2715. M6201/P6600, as support for these are not yet in mainline GCC.
  2716. Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
  2717. gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
  2718. libphidget, libv4l, linux-tools, mediastreamer, minidlna,
  2719. nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
  2720. transmission, vde2, vim
  2721. Updated/fixed defconfigs:
  2722. Removed packages: simicfs.
  2723. Issues resolved (http://bugs.buildroot.org):
  2724. #10261: Grub2 fails to build for x86_64
  2725. 2017.08-rc3, Released August 23rd, 2017
  2726. Fixes all over the tree.
  2727. Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
  2728. dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
  2729. gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
  2730. libspatialindex, libunwind, linux, linux-headers, lua,
  2731. mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
  2732. whois, xen, zmqpp.
  2733. Updated/fixed defconfigs: ci20, socrates_cyclone5,
  2734. toradex_apalis_imx6.
  2735. Removed defconfig: Armadeus APF9328.
  2736. skeleton-* packages introduced in -rc1 have been renamed to
  2737. skeleton-init-* instead.
  2738. Issues resolved (http://bugs.buildroot.org):
  2739. #10141: Squashfs extended attribute failures
  2740. 2017.08-rc2, Released August 11th, 2017
  2741. Fixes all over the tree.
  2742. Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
  2743. ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
  2744. lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
  2745. swupdate, uclibc, valgrind, webkitgtk.
  2746. Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
  2747. nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
  2748. qemu_sparc64.
  2749. The cmake-package infrastructure for host packages has been
  2750. fixed to not incorrectly detect target packages through
  2751. pkg-config.
  2752. Issues resolved (http://bugs.buildroot.org):
  2753. #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
  2754. #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
  2755. #10026: lua-5.3.4: fix lua linker error in swupdate
  2756. #10146: package/skeleton-common fix recursive variable
  2757. #10156: glibc compilation fails for X86 32bits (i386)
  2758. #10201: toolchain-wrapper.c:192: (error) Memory leak:
  2759. #10221: Buildroot Support
  2760. 2017.08-rc1, Released August 2nd, 2017
  2761. Infrastructure:
  2762. - The skeleton package has been split into multiple packages:
  2763. skeleton-sysv (when Busybox or SysV init are used),
  2764. skeleton-systemd (when systemd is used), skeleton-none (when
  2765. no init system is used) and skeleton-custom (when a custom
  2766. skeleton is used). Those packages, except skeleton-custom,
  2767. share common logic and data in a new package called
  2768. skeleton-common. The skeleton package becomes a virtual
  2769. package. This change allows to generate a filesystem that is
  2770. compliant with systemd expectations.
  2771. - Support for using a read-only filesystem with systemd has
  2772. been fixed.
  2773. - Major revamp of the gettext handling, with user-visible
  2774. effect:
  2775. - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
  2776. package could decide to enable or not NLS support. When
  2777. BR2_ENABLE_LOCALE was disabled, NLS support was forced off
  2778. by passing --disable-nls to packages.
  2779. - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
  2780. controls whether NLS support should be enabled or not in
  2781. packages. This option defaults to disabled, which means
  2782. that now, NLS support is by default disabled in all
  2783. packages.
  2784. Therefore, if you need NLS support in packages, you must now
  2785. explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
  2786. - The host directory no longer has a usr/ component. This
  2787. makes it much more natural to use that directory as an
  2788. externally used toolchain. For compatibility with existing
  2789. scripts, a usr -> . link is still added.
  2790. - Hashes are now checked on tarballs by Buildroot when a
  2791. package is sourced from a Git repository.
  2792. - Patches are no longer being downloaded from Github, since
  2793. auto-generated patches could change over time, and break
  2794. hashes. All patches that were downloaded from Github are now
  2795. stored in their respective package directories.
  2796. - Hash files in packages can now contain hashes for the
  2797. license files contained in the package source code. This
  2798. allows to detect changes in such license files.
  2799. - Binaries in $(TARGET_DIR) are now cleaned up from invalid
  2800. RPATHs at the end of the build.
  2801. - A new "make sdk" target prepares $(HOST_DIR) to be
  2802. relocatable: turns RPATHs in host binaries into relocatable
  2803. ones, removes bogus RPATHs from staging binaries/libraries,
  2804. and provides a relocate-sdk script that can be executed to
  2805. relocate the SDK after installation.
  2806. - Addition of utils/genrandconfig which generates a random
  2807. configuration based on a set of pre-defined toolchain
  2808. configurations (support/config-fragments/autobuild/) and a
  2809. random selection of packages. It is now used by the
  2810. autobuilders to generate the random configurations.
  2811. Filesystems:
  2812. - ext2/3/4 filesystems are now generated using mkfs.ext from
  2813. e2fsprogs instead of using genext2fs.
  2814. Architecture:
  2815. - Addition of support for ARM big.LITTLE variants
  2816. - Improved MIPS support, with options to select NaN encoding
  2817. and FP32 mode.
  2818. Toolchain:
  2819. - Switch to gcc 6.x as the default gcc version, add support
  2820. for gcc 7.x, remove support for gcc 4.8
  2821. - Switch to binutils 2.28 as the default binutils version, add
  2822. support for binutils 2.29, remove support for binutils 2.26
  2823. - Support added for gdb 8.0
  2824. - uClibc-ng bumped to 1.0.26
  2825. - CodeSourcery toolchains for x86 and SuperH have been
  2826. removed, they were using a too old glibc version
  2827. (2.17). External toolchains with glibc 2.17 or earlier are
  2828. no longer supported.
  2829. - The version selection in the glibc package has been
  2830. removed. Like musl and uClibc-ng, we now use the latest
  2831. glibc version.
  2832. - Improved support for Xtensa toolchain overlays, which can
  2833. now be downloaded.
  2834. Tools:
  2835. - Numerous improvements to the runtime test infrastructure
  2836. - Tests are now executed by Gitlab CI on a regular basis
  2837. - Tools that are directly useful to the user have been moved
  2838. from support/scripts/ to utils/: brmake, check-package,
  2839. get-developers, scancpan, scanpipy, size-stats-compare,
  2840. test-pkg.
  2841. New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
  2842. Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
  2843. SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
  2844. New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
  2845. erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
  2846. ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
  2847. kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
  2848. libpwquality, libressl, libspatialindex, libva-utils,
  2849. linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
  2850. lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
  2851. python-backports-shutil-get-terminal-size, python-bcrypt,
  2852. python-cheroot, python-h2, python-hpack, python-hyperframe,
  2853. python-hyperlink, python-ipython-genutils, python-pathlib2,
  2854. python-pickleshare, python-priority, python-portend,
  2855. python-scandir, python-systemd, python-tempora,
  2856. python-traitlets, python-typepy, qt5virtualkeyboard,
  2857. ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
  2858. xr819-xradio, zstd
  2859. Removed packages: cloog, input-tools, mke2img
  2860. Issues resolved (http://bugs.buildroot.org):
  2861. #7892: systemd-journald is broken
  2862. #9341: avahi-utils does not compile with uClibc + libglib2
  2863. #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
  2864. BR2_ENABLE_DEBUG
  2865. #9746: ext4 image generated by Buildroot is not working
  2866. properly with U-Boot
  2867. #9886: Build fails with "unexpected EOF while looking for
  2868. matching `"'" if PATH contains a newline
  2869. #9891: parted 3.1 => 3.2?
  2870. #9911: qt5 does not build on sparc
  2871. #9916: qt5 does not build on
  2872. arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
  2873. #9936: Host QEMU does not build with SDL support because of
  2874. pkg-config
  2875. #9941: nodejs option disappears for arm
  2876. #9951: SCANCPAN failure
  2877. #9966: util-linux-2.30/.stamp_built' failed
  2878. #9976: License file for package 'rtl8821au' incorrect
  2879. #9991: SGX Error implicit declaration of function
  2880. ‘dmac_map_area’
  2881. #10011: wget does not work from Buildroot
  2882. #10036: Buildroot builds Raspbian Jessie headless image
  2883. presenting incorrect prompt
  2884. #10051: make: *** No rule to make target
  2885. 'raspberrpi3_defconfig'. Stop reported with Buildroot
  2886. v2017.05.1
  2887. #10056: No .config file was produced in /buildroot folder
  2888. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
  2889. failure
  2890. #10071: fakeroot: replace hard-coded paths in post install
  2891. #10076: Makefile:4113: recipe for target 'all-gcc' failed
  2892. #10091: gcc7.1 does not build with graphite support due to old
  2893. isl
  2894. #10121: webkit without the multimedia option causes build
  2895. error
  2896. 2017.05.2, Released July 27th, 2017
  2897. Important / security related fixes.
  2898. Webkitgtk bumped to the 2.16.x series, fixing a large number
  2899. of security issues.
  2900. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  2901. which default to PIE mode.
  2902. Updated/fixed packages: aespipe, apache, bind, binutils,
  2903. busybox, ccache, collectd, dieharder, efibootmgr, efivar,
  2904. expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
  2905. libmemcached, libosip2, libtirpc, libxml-parser-perl,
  2906. linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
  2907. pulseaudio, python-setproctitle, qt5base, rpi-firmware,
  2908. samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
  2909. webkitgtk, x265, xserver_xorg-server, xvisor
  2910. Issues resolved (http://bugs.buildroot.org):
  2911. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  2912. 2017.05.1, Released July 4th, 2017
  2913. Important / security related fixes.
  2914. Update support/scripts/scancpan to use METACPAN v1 API as v0
  2915. has been shutdown.
  2916. Update support/scripts/mkusers to handle setups where
  2917. /etc/shadow is a symlink.
  2918. External toolchain: Don't create musl dynamic loader symlink
  2919. for static builds.
  2920. Setlocalversion: Correct detection of mercurial revisions for
  2921. non-tagged versions.
  2922. Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
  2923. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  2924. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
  2925. gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
  2926. iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
  2927. libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
  2928. openssh, openvpn, pngquant, python-simplegeneric, qt5base,
  2929. qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
  2930. tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
  2931. Issues resolved (http://bugs.buildroot.org):
  2932. #9976: License file for package 'rtl8821au' incorrect
  2933. 2017.05, Released May 31st, 2017
  2934. Minor fixes.
  2935. External toolchain: musl dynamic linker symlink for mips-sf
  2936. corrected.
  2937. Updated/fixed packages: agentpp, bash, exim, hans, madplay,
  2938. qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
  2939. xen
  2940. Issues resolved (http://bugs.buildroot.org):
  2941. #9906: genimage: Disk full
  2942. 2017.05-rc3, Released May 30th, 2017
  2943. Fixes all over the tree.
  2944. ARC toolchain bumped to 2017.03
  2945. Runtime testing improvements and cleanups.
  2946. Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
  2947. cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
  2948. fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
  2949. keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
  2950. libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
  2951. mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
  2952. pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
  2953. xen
  2954. Removed packages: firejail, ola
  2955. Issues resolved (http://bugs.buildroot.org):
  2956. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  2957. #9876: aarch64 support with gcc 4.8 toolchain
  2958. #9896: host-gcc-initial error downloading because incorrect URL
  2959. 2017.05-rc2, Released May 17th, 2017
  2960. Fixes all over the tree.
  2961. ARC toolchain bumped to 2017.03-rc2
  2962. Updated/fixed packages: bluez_utils, boost, clamav, daemon,
  2963. efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
  2964. git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
  2965. mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
  2966. postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
  2967. rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
  2968. vlc, x11vnc, xfsprogs
  2969. Issues resolved (http://bugs.buildroot.org):
  2970. #9796: source-check broken for Git downloads
  2971. #9866: BASE_DIR usage
  2972. 2017.05-rc1, Released May 8th, 2017
  2973. Fixes all over the tree and new features.
  2974. Infrastructure:
  2975. - Installed binaries are now checked for correct architecture
  2976. to catch natively built binaries or binaries built for other
  2977. architecture variants.
  2978. - Luarocks infrastructure improvements to extraction handling,
  2979. support for upstream name != Buildroot package name.
  2980. - 'make printvars' output format has changed to make it easier
  2981. to use in scripts. It now has options to quote the variables
  2982. and to show the expanded/unexpanded values.
  2983. - Automatic ext2 rootfs size calculation has been removed. The
  2984. logic was not working working reliable in all setups as it
  2985. depends on the host filesystem behaviour, so instead now the
  2986. size has to be specified explicitly (defaults to 60MB).
  2987. - The git download infrastructure now ensures that GNU format
  2988. tar files are created.
  2989. - Fixed a variable clashing issue in the mkusers script with
  2990. internal bash variables.
  2991. - Fakeroot now links against libacl to fix issues on
  2992. distributions using acls.
  2993. - Correct permissions for /dev/pts/ptmx when systemd is used
  2994. with recent glibc versions.
  2995. - br2-external: Improve error reporting.
  2996. - A wrapper script for genimage has been added in
  2997. support/scripts/genimage.sh for easy use of genimage from
  2998. post-image scripts.
  2999. - A script to check for common style issues in new packages
  3000. before submitting has been added in support/scripts/check-package
  3001. - Defconfigs are now tested by gitlab-CI instead of Travis:
  3002. https://gitlab.com/buildroot.org/buildroot
  3003. - Infrastructure for runtime testing has been added to
  3004. support/testing
  3005. Toolchain:
  3006. - External linaro toolchains updated to 2017.02, ARC toolchain
  3007. updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
  3008. - A number of fixes and improvements to the external toolchain
  3009. handling, including C library detection, multilib and ld.so
  3010. handling
  3011. - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
  3012. for uClibc-ng
  3013. - Binutils 2.28 added and default changed to 2.27
  3014. Architectures:
  3015. - Support for the C-SKY architecture has been added.
  3016. License handling:
  3017. - The package license markings for legal info now uses the
  3018. SPDX short identifiers for the license string where possible.
  3019. - License info has been improved / added for a number of packages.
  3020. Misc:
  3021. - Cmake 3.7.x installed on the host is no longer ignored as a
  3022. workaround for the RPATH issues has been implemented.
  3023. - Docker-engine can now be built statically on an otherwise
  3024. dynamic linked build for docker-in-docker setups.
  3025. - U-Boot now supports out-of-tree device trees, similar to
  3026. Linux
  3027. - Nodejs 0.10.x support (and with it, support for <ARMv6) has
  3028. been removed as this is now EOL upstream.
  3029. New defconfigs: AT91sam9x5ek dev/mmc/mmc-dev, banana pro,
  3030. Nationalchip gx6605s, MIPS creator ci40, nexbox a95x, 64bit
  3031. defconfig for raspberry pi 3, stm32f429-disc1.
  3032. The raspberry pi zero-w and rpi3 compute module are now also
  3033. supported by the rpi0 / rpi3 defconfigs, beaglebone green is
  3034. supported by the beaglebone defconfig.
  3035. Removed defconfig: minnowboard, via imx6 vab820, altera
  3036. socdk/sockit
  3037. New packages: arp-scan, atest, augeas, bluez-tools, daemon,
  3038. dc3dd, dieharder, execline, fmt, ghostscript, gqrx,
  3039. gst1-vaapi, jo, keepalived, kmscube, kodi-jsonschemabuilder,
  3040. kodi-skin-confluence, kodi-texturepacker, lensfun, leptonica,
  3041. libbson, libcsv, libgphoto2, libkcapi, libmaxminddb,
  3042. libmediaart, libnpth, libscrypt, lua-bit32, lua-resty-http,
  3043. lugaru, memtool, mpir, nanomsg, physfs, phytool, pngquant,
  3044. python-decorator, python-simplegeneric,
  3045. python-sortedcontainers, rpi-bt-firmware, rpi-wifi-firmware,
  3046. s6, s6-dns, s6-linux-init, s6-linux-utils, s6-networking,
  3047. s6-portable-utils, s6-rc, supertux, tesseract-ocr,
  3048. uccp420wlan, wilink-bt-firmware
  3049. Broken packages: ola
  3050. Removed packages: cosmo, kodi-visualisation-fountain,
  3051. polarssl, portmap, xdriver_xf86-video-glide,
  3052. xdriver_xf86-video-v4l, xdriver_xf86-video-wsfb
  3053. Issues resolved (http://bugs.buildroot.org):
  3054. #8831: image generation fails on host ZFS due to "no free space"
  3055. #9436: e2fsprogs remove busybox applets even of unselected e2fs..
  3056. #9456: mkusers script bash errors
  3057. #9496: mke2img fails during build on ntfs-3g host partition
  3058. #9531: NPM fails to build embedded modules
  3059. #9596: KODI: --enable-lirc needs "HAVE_LIRC" compiler definition..
  3060. #9691: Wrong cryptsetup package include files location
  3061. #9696: Wrong cryptsetup package include files location
  3062. #9706: Can't download newer revisions of package from PyPI
  3063. #9711: Recent libCEC version bump seems to break kodi package
  3064. #9716: exit, shutdown, reboot from kodi
  3065. #9721: version 2017.02: no acceptable m4 could be found in $PATH
  3066. #9726: Raspberry Pi version B - Problems with UART speed in..
  3067. #9751: expat legal info - manifest.csv: GPLv2 Source site: MIT..
  3068. #9756: glibc fails to build on buildroot-sh4*-buildroot-linux-gnu
  3069. #9766: support/scripts/pkgutil.py conflicts with the pkgutil.py..
  3070. #9776: libubox build failed
  3071. #9791: Python searches for packages in the user site directory
  3072. #9806: libseccomp is not available when BR2_arm=y
  3073. #9826: post-build scritp - symlinks created in post-build script..
  3074. #9836: triggerhappy: systemd unit broken
  3075. #9846: musl libc not installed correctly in target folder
  3076. #9856: build libubox failed on ubuntu 17.04 64bit
  3077. 2017.02.11, Released April 11th, 2018
  3078. Important / security related fixes.
  3079. dependencies: Blacklist tar 1.30+ and build our own host-tar
  3080. if needed as tar 1.30+ changed the --numeric-owner output for
  3081. long path names. Build host-tar before other host-dependencies
  3082. as they need it to extract their source tarballs.
  3083. Updated/fixed packages: apache, busybox, clamav, dhcp,
  3084. dnsmasq, dovecot, exim, imagemagick, irssi, jq, libcurl,
  3085. libpjsip, librsvg, libtasn1, libvorbis, libxml2, lz4, mariadb,
  3086. mbedtls, mosquitto, ntp, openblas, opencv3, openssl, patch,
  3087. postgresql, python-webpy, qt53d, qt5tools, quagga, rsync,
  3088. samba4, sngrep, tremor, wavpack, wireshark, xerces, xterm
  3089. Issues resolved (http://bugs.uclibc.org):
  3090. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  3091. 2017.02.10, Released January 31st, 2018
  3092. Important / security related fixes.
  3093. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  3094. System: Only show getty options when busybox init or sysvinit
  3095. are used.
  3096. Infrastructure: Fix build issue for autotools based packages
  3097. checking for C++ support on toolchains without C++ support and
  3098. on a distro lacking /lib/cpp (E.G. Arch Linux).
  3099. Updated/fixed packages: avahi, berkeleydb, bind, busybox,
  3100. ccache, clamav, coreutils, dovecot, eeprog, eudev, fis,
  3101. intel-microcode, iputils, irssi, kmsxx, libcurl, liberation,
  3102. libiio, lz4, mariadb, matchbox-lib, mcookie, openocd, php,
  3103. pound, rpcbind, squid, tar, ti-cgt-pru, transmission,
  3104. util-linux, webkitgtk, wireshark, xen
  3105. Issues resolved (http://bugs.buildroot.org):
  3106. #9996: lz4 package does not install lz4 binaries in target
  3107. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  3108. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  3109. #10301: systemd/getty unused options
  3110. #10331: kmsxx, host installation fails with BR2_SHARED_...
  3111. #10536: Finding non-relative paths in the ccache
  3112. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  3113. 2017.02.9, Released January 1st, 2018
  3114. Important / security related fixes.
  3115. Fix divide by zero issue in size-stats script.
  3116. Fix makefile include ordering issue with certain make versions
  3117. in the external toolchain handling.
  3118. Updated/fixed packages: dhcp, exim, flann, gdb, heimdal,
  3119. libcue, libcurl, libevent, libpqxx, libsoxr, linphone, lldpd,
  3120. mariadb, mfgtools, mtools, nodejs, nut, openssl, rsync,
  3121. samba4, tor, vlc, webkitgtk, wireshark, xfsprogs,
  3122. xlib_libXcursor, xlib_libXfont, xlib_libXfont2
  3123. 2017.02.8, Released November 27th, 2017
  3124. Important / security related fixes.
  3125. Qt: 5.6 version updated to 5.6.3.
  3126. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  3127. in the environment.
  3128. Updated/fixed packages: apr, apr-util, arqp-standalone,
  3129. collectd, dvb-apps, ffmpeg, google-breakpad, gstreamer,
  3130. imagemagick, libfastjson, libglib2, libpjsip, libplist,
  3131. localedef, luajit, mesa3d, openssh, openssl, postgresql,
  3132. python3, python-pyqt5, qt5base, qt5canvas3d, qt5connectivity,
  3133. qt5declarative, qt5engineio, qt5graphicaleffects,
  3134. qt5imageformats, qt5location, qt5multimedia, qt5quickcontrols,
  3135. qt5quickcontrols2, qt5script, qt5sensors, qt5serialbus,
  3136. qt5serialport, qt5svg, qt5tools, qt5webchannel, qt5webkit,
  3137. qt5websockets, qt5x11extras, qt5xmlpatterns, quagga, ruby,
  3138. samba4, snmppp, ti-gfx, vboot-utils, webkitgtk, wireshark,
  3139. xapp_xdriinfo.
  3140. Issues resolved (http://bugs.buildroot.org):
  3141. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  3142. 10361: python3 python-config script generates invalid includes
  3143. 10501: host-localedef fails to compile on Ubuntu 17.10
  3144. 2017.02.7, Released October 28th, 2017
  3145. Important / security related fixes.
  3146. Webkitgtk bumped to the 2.18.x series, fixing a large number
  3147. of security issues.
  3148. Defconfigs: wandboard: Correct rootfs offset
  3149. Toolchain: Linaro toolchains updated to 2017.08 release,
  3150. fixing a number of issues. Musl: fix for CVE-2017-15650.
  3151. Updated/fixed packages: busybox, bzip2, dnsmasq, git, go,
  3152. hostapd, irssi, iucode-tool, lame, libcurl, libffi, libnspr,
  3153. libnss, nodejs, openssh, openvpn, qemu, qt, redis, sdl2,
  3154. webkitgtk, wget, wpa_supplicant, xen, xlib_libXfont,
  3155. xlib_libXfont2, xserver_xorg-server
  3156. 2017.02.6, Released September 24th, 2017
  3157. Important / security related fixes.
  3158. Cmake: Ensure correct pkg-config is used when building host
  3159. packages
  3160. fs/iso9660: Ensure files from earlier builds are not included.
  3161. Updated/fixed packages: apache, bcusdk, bind, binutils,
  3162. bluez5_utils, botan, cmake, connman, dbus, dialog, e2fsprogs,
  3163. faad2, fakeroot, ffmpeg, file, flashrom, gcc, gd, gdb,
  3164. gdk-pixbuf, git, gnupg, gpsd, grub2, gst1-plugins-bad,
  3165. imagemagick, iostat, iucode-tool, jack2, libarchive, libcurl,
  3166. libgcrypt, libidn, libphidget, librsync, librsvg, libsoup,
  3167. libxml2, linux-tools, lua, mariadb, mbedtls, mediastreamer,
  3168. minidlna, netplug, nss-pam-ldapd, nvidia-driver, openjpeg,
  3169. postgresql, proxychains-ng, python-libconfig,
  3170. python-service-identity, qt, rpcbind, ruby, samba4, squashfs,
  3171. squid, strongswan, subversion, supervisor, sysvinit, tcpdump,
  3172. tor, transmission, unrar, valgrind, vim, webkitgtk, whois,
  3173. xen, zmqpp
  3174. Issues resolved (http://bugs.buildroot.org):
  3175. #10141: Squashfs extended attribute failures
  3176. #10261: Grub2 fails to build for x86_64
  3177. #10276: BR2_PACKAGE_LINUX_TOOLS_GPIO fails for MIPS with...
  3178. 2017.02.5, Released July 27th, 2017
  3179. Important / security related fixes.
  3180. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3181. of security issues.
  3182. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3183. which default to PIE mode.
  3184. Updated/fixed packages: aespipe, apache, bind, binutils,
  3185. busybox, ccache, collectd, efibootmgr, efivar, expat, ffmpeg,
  3186. gcc, heimdal, iproute2, irssi, libglib2, libmemcached,
  3187. libosip2, libtirpc, libxml-parser-perl, linux-fusion,
  3188. linux-zigbee, mpg123, nodejs, orc, pcre, php, pulseaudio,
  3189. python-setproctitle, qt5base, rpi-firmware, samba4, syslinux,
  3190. systemd, spice, tcpdump, tiff, webkitgtk, x265, xen,
  3191. xserver_xorg-server, xvisor
  3192. Issues resolved (http://bugs.buildroot.org):
  3193. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3194. 2017.02.4, Released July 4th, 2017
  3195. Important / security related fixes.
  3196. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3197. has been shutdown.
  3198. Update support/scripts/mkusers to handle setups where
  3199. /etc/shadow is a symlink.
  3200. External toolchain: Don't create musl dynamic loader symlink
  3201. for static builds.
  3202. Setlocalversion: Correct detection of mercurial revisions for
  3203. non-tagged versions.
  3204. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3205. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, gnutls,
  3206. gst1-plugins-bad, imagemagick, imx-uuc, intltool, iperf,
  3207. ipsec-tools, irssi, libgcrypt, libmad, libnl, mosquitto,
  3208. mpg123, ncurses, nodejs, ntp, openssh, openvpn, qt5base,
  3209. qt5multimedia, rtl8821au, socat, spice, systemd, tor, tslib,
  3210. vlc, x264, xserver_xorg-server
  3211. Issues resolved (http://bugs.buildroot.org):
  3212. #9976: License file for package 'rtl8821au' incorrect
  3213. 2017.02.3, Released June 2nd, 2017
  3214. Important / security related fixes.
  3215. Download: <pkg>-source-check fixed for packages from git.
  3216. External toolchain: musl dynamic linker symlink for mips-sf
  3217. corrected.
  3218. Updated/fixed packages: armadillo, audiofile, bash,
  3219. bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
  3220. elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
  3221. google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
  3222. libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
  3223. lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
  3224. nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
  3225. postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
  3226. rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
  3227. Issues resolved (http://bugs.buildroot.org):
  3228. #9796: source-check broken for Git downloads
  3229. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3230. 2017.02.2, Released May 1st, 2017
  3231. Important / security related fixes.
  3232. Use HTTPS for the Codesourcery external toolchains as the HTTP
  3233. URLs no longer work.
  3234. Updated/fixed packages: bind, busybox, dovecot, freetype,
  3235. ghostscript, glibc, granite, hiredis, icu, imagemagick,
  3236. gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
  3237. libnspr, libnss, libsamplerate, libsndfile, libunwind,
  3238. minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
  3239. python-web2py, samba4, syslinux, systemd, tiff, trinity,
  3240. uboot, wireshark, xen
  3241. Issues resolved (http://bugs.buildroot.org):
  3242. #9791: Python searches for packages in the user site directory
  3243. 2017.02.1, Released April 4th, 2017
  3244. Important / security related fixes.
  3245. Fix a variable clashing issue in the mkusers script with
  3246. internal bash variables.
  3247. Improve external toolchain version detection.
  3248. Correct permissions for /dev/pts/ptmx when systemd is used
  3249. with recent glibc versions.
  3250. Fix python module name clash for graph-depends.
  3251. Fakeroot now links against libacl to fix issues on
  3252. distributions using acls.
  3253. Ensure that the git download infrastructure creates GNU format
  3254. tar files.
  3255. br2-external: Improve error reporting.
  3256. Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
  3257. dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
  3258. fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
  3259. gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
  3260. libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
  3261. libwebsockets, libxkbcommon, linux-firmware, logrotate,
  3262. lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
  3263. mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
  3264. pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
  3265. skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
  3266. tcpreplay, tor, upmpdcli, wget, wireshark,
  3267. xdriver_xf86-video-vmware, xlib_libXv, zmqpp
  3268. Issues resolved (http://bugs.buildroot.org):
  3269. #9456: mkusers script bash errors
  3270. 2017.02, Released February 28th, 2017
  3271. Minor fixes, mainly fixing autobuilder issues.
  3272. Don't use cmake 3.7.x from the build host as it is also
  3273. affected by the RPATH handling issues, and instead build our
  3274. own if needed.
  3275. Updated/fixed packages: assimp, classpath, genimage, mplayer,
  3276. mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
  3277. vlc, xterm
  3278. 2017.02-rc3, Released February 26th, 2017
  3279. Fixes all over the tree.
  3280. Cmake reverted to version 3.6.3 to workaround regressions
  3281. related to RPATH handling.
  3282. Updated/fixed packages: bctoolbox, berkeleydb, binutils,
  3283. btrfs-progs, classpath, directfb, glibc, gstreamer1,
  3284. gst1-plugins-{base,good,bad,ugly}, gst1-libav,
  3285. gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
  3286. libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
  3287. oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
  3288. trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
  3289. Issues resolved (http://bugs.buildroot.org):
  3290. #9251: Shared C++ libraries for Microblaze results in Segmentation...
  3291. #9456: mkusers script bash errors
  3292. #9506: Collectd 5.7.0 fails to build with libcrypt
  3293. #9581: VagrantFile provisioning step fails due to issue with grub-pc
  3294. #9586: usbmount: usbmount slows down the system... to a state of...
  3295. #9616: CMake host packages cannot provide CONF_ENV
  3296. #9641: Need raptor package installed in staging
  3297. #9671: stunnel build error
  3298. 2017.02-rc2, Released February 20th, 2017
  3299. Fixes all over the tree.
  3300. Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
  3301. older gcc versions for reproducible builds has been
  3302. (temporarily) reverted because of licensing compatiblity
  3303. concerns.
  3304. Defconfigs: SD card generation fix for the Udoo Neo board
  3305. Infrastructure to handle .lz compressed tarballs added, and
  3306. affected packages updated to use it.
  3307. Updated/fixed packages: bctoolbox, bind, canelloni,
  3308. cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
  3309. ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
  3310. kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
  3311. libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
  3312. ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
  3313. riemann-c-client, samba4, sunxi-mali, tcping, trousers,
  3314. uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
  3315. xserver_xorg-server
  3316. Issues resolved (http://bugs.buildroot.org):
  3317. #8941: Valgrind fails to build with stack protection turned on
  3318. #9291: perl: SysV message queues not configured, even if available
  3319. #9651: libxcb-1.12 built Error
  3320. #9656: util-linux: schedutils doesn't build on target w/o enabl...
  3321. #9666: qt5quickcontrols install fails
  3322. 2017.02-rc1, Released February 11th, 2017
  3323. Fixes all over the tree and new features.
  3324. Infrastructure:
  3325. - numerous improvements to support reproducible builds
  3326. - new waf-package package infrastructure to support packages
  3327. that use the Waf build system. 6 packages converted to
  3328. this infrastructure.
  3329. - add option <pkg>_PREFER_INSTALLER to the perl package
  3330. infrastructure
  3331. Architecture:
  3332. - add support for the OpenRISC CPU architecture
  3333. - merge description of the ARM and ARM64 options, and add
  3334. support for selecting a specific ARM64 core
  3335. Toolchain:
  3336. - major rework of the external toolchain support. It is now
  3337. split into several packages, one per external toolchain,
  3338. and a common infrastructure.
  3339. - important fix for musl to prevent a conflict between musl
  3340. and kernel headers (fixes the build of numerous packages
  3341. with musl)
  3342. - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
  3343. for ARM64, mips32r6 and mips64r6
  3344. - add gdb 7.12.1, and switch to gdb 7.11 as the default
  3345. - Linaro toolchains updated to 2016.11, ARC toolchain
  3346. components updated to arc-2016.09, MIPS Codescape
  3347. toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
  3348. NIOS2 toolchains bumped
  3349. - remove Analog Devices toolchain for the Blackfin
  3350. architecture, remove pre-built musl toolchains from
  3351. musl.codu.org
  3352. New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
  3353. Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
  3354. SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
  3355. New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
  3356. ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
  3357. jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
  3358. nginx-dav-ext, nmon, opkg-utils, policycoreutils,
  3359. pru-software-support, python-arrow, python-attrs,
  3360. python-babel, python-bitstring, python-chardet,
  3361. python-constantly, python-flask-babel, python-gunicorn,
  3362. python-incremental, python-jsonschema, python-logbook,
  3363. python-markdown2, python-mbstrdecoder, python-mutagen,
  3364. python-pathpy, python-pudb, python-pyqrcode,
  3365. python-pytablereader, python-setuptools-scm, python-sh,
  3366. python-toml, python-vcversioner, python-whoosh,
  3367. raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
  3368. sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
  3369. upower, ustream-ssl, waf, xlib_libXfont2
  3370. Removed packages: perl-db-file, snowball-hdmiservice,
  3371. snowball-init
  3372. Tooling: addition of a test-pkg script to help contributors
  3373. build test their package.
  3374. Issues resolved (http://bugs.buildroot.org):
  3375. #8946: Valgrind fails to build with stack protection turned on
  3376. #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
  3377. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3378. #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
  3379. #9501: eudev fails to build with older kernel headers
  3380. #9526: Embedded NPM fails to start with "no such file or directory" error
  3381. #9541: Platform drivers autoloading from info in device tree does not work
  3382. #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
  3383. #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
  3384. #9566: [kmod] Compilation fails with uclibc
  3385. #9571: buildroot fails while building opencv for arm64 platform
  3386. #9576: External tree with BR 2016.11 does not work anymore
  3387. #9606: xorg-server cannot build for ARM target
  3388. 2016.11.3, Released March 9th, 2017
  3389. Important / security related fixes.
  3390. Updated/fixed packages: bind, dbus, gnutls, imagemagick,
  3391. lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
  3392. squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
  3393. 2016.11.2, Released January 25th, 2017
  3394. Important / security related fixes.
  3395. A fix for BR2_EXTERNAL trees referenced using relative paths,
  3396. which broke in 2016.11.
  3397. Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
  3398. imagemagick, irssi, libpng, libvncserver, musl, opus, php,
  3399. php-imagick, rabbitmq-server, runc, wireshark,
  3400. Issues resolved (http://bugs.buildroot.org):
  3401. #9576: External tree with BR 2016.11 does not work anymore
  3402. 2016.11.1, Released December 29th, 2016
  3403. Important / security related fixes.
  3404. Updated/fixed packages: apache, cryptopp, docker-engine,
  3405. dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
  3406. nodejs, openssh, php, python, python-bottle, samba4, squid,
  3407. uboot, vim, wireshark, xorg-server uboot
  3408. Issues resolved (http://bugs.buildroot.org):
  3409. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3410. 2016.11, Released November 30th, 2016
  3411. Minor fixes.
  3412. Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
  3413. uboot, uclibc
  3414. Issues resolved (http://bugs.buildroot.org):
  3415. #9451: packages/postgresql/postgresql.mk contains wrong POST...
  3416. 2016.11-rc3, Released November 28th, 2016
  3417. Fixes all over the tree, including a number of security fixes.
  3418. The move from fakeroot to pseudo unfortunately brought a
  3419. number of issues. The SELinux issue described in #9386 which
  3420. triggered the move to pseudo has been investigated further and
  3421. a workaround implemented and the pseudo changes reverted.
  3422. Linux kernel: update default to 4.8.11.
  3423. Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
  3424. olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
  3425. vdk, axs101, axs103 and hs38 smd vdk.
  3426. Updated/fixed packages: autossh, chrony, dosfstools,
  3427. dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
  3428. gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
  3429. kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
  3430. ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
  3431. ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
  3432. taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
  3433. xapp_xload, xenomai, xmlstarlet
  3434. Issues resolved (http://bugs.buildroot.org):
  3435. #9386: ubinize fails with or without custom config
  3436. #9431: A misspelling
  3437. #9446: make raspberrypi3_defconfig compilation failure
  3438. 2016.11-rc2, Released November 13th, 2016
  3439. Fixes all over the tree.
  3440. Architecture: add support for MIPS XBurst cores; remove MIPS
  3441. support for M5100 cores.
  3442. Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
  3443. czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
  3444. qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
  3445. libxslt, python, python3, php, valgrind, guile, domoticz, efl,
  3446. jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
  3447. strace, openjpeg, lcms2, quota.
  3448. Linux kernel: update default to 4.8.7.
  3449. CMake support: fix cmake wrapper to properly pass NDEBUG flag.
  3450. Filesystems: use a wrapper to pseudo, to better mimick the behaviour
  3451. of fakeroot; makedevs no longer breaks of the destination already
  3452. exists and is of the correct type/major/minor.
  3453. Defconfigs: a few legacy and broken defconfigs have been removed
  3454. because they now fail to build: kb9202_defconfig, mini2440_defconfig,
  3455. freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
  3456. have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
  3457. armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
  3458. olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
  3459. atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
  3460. atmel_sama5d3xek.
  3461. 2016.11-rc1, Released November 3rd, 2016
  3462. Fixes all over the tree and new features.
  3463. It is now possible to specify multiple BR2_EXTERNAL
  3464. directories. The required files in a BR2_EXTERNAL directory
  3465. have changed to accomodate this feature. Refer to the
  3466. documentation for details of how to update them. External
  3467. trees now have a name and a description. Also, it is possible
  3468. to override a defconfig in the external tree.
  3469. The default skeleton now uses UID 65534 for the "nobody"
  3470. user instead of UID 99, like most distros do. See
  3471. https://lwn.net/Articles/695478/ for a complete discussion.
  3472. Programs and configuration files that explicitly refer to UID
  3473. 99 will have to be updated.
  3474. When the build environment already has a suitable cmake version
  3475. (3.1 or later), that one will be used instead of building
  3476. host-cmake. This can speed up the build significantly.
  3477. The ExtUtils::MakeMaker perl module is now required in the
  3478. build environment.
  3479. An additional check is done during the build that files are
  3480. not installed in the output directory within the output
  3481. directory. This happens e.g. when the target directory is
  3482. contained both in --prefix and in DESTDIR. The build will
  3483. terminate with an error message that specifies which package
  3484. and which file caused the failure.
  3485. The concept of "deprecated packages" and the BR2_DEPRECATED
  3486. option have been removed. Instead, packages are removed
  3487. immediately. Packages are only removed when they don't work
  3488. for some reason. If you still need a removed package and
  3489. you have a solution for the problem(s) that caused the
  3490. removal, please contribute it.
  3491. Architecture: support for sh64 removed, improved support for
  3492. MIPS core selection.
  3493. Toolchain: support for musl powerpc64le, mips64 and mipsr6
  3494. toolchains, ARC toolchain components updates, gcc 6.x series
  3495. bumped to 6.2.0, default binutils version switched to 2.26,
  3496. default gcc version switched to gcc 5.x, Linaro toolchains
  3497. updated, uclibc-ng bumped to 1.0.19. GCC is now always built
  3498. with TLS support. Checking of unsafe compiler options (that
  3499. point to host directories) has been extended with -isystem,
  3500. -idirafter and -iquote.
  3501. Package infrastructure: new variable $(PKG)_DL_OPTS, addition
  3502. of <pkg>-show-rdepends to list reverse dependencies, and
  3503. <pkg>-graph-rdepends to graph reverse dependencies. Linux tools
  3504. are now in a separate linux-tools package instead of in the
  3505. kernel build. Fakeroot has been replaced by pseudo.
  3506. CMake support: the toolchainfile.cmake file now provides a
  3507. definition of the CMAKE_BUILD_TYPE variable. The
  3508. toolchainfile.cmake also no longer forces the compiler/linker
  3509. flags defined by Buildroot.
  3510. New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
  3511. TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
  3512. BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
  3513. New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
  3514. aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
  3515. mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
  3516. python-crcmod, python-cssutils, python-docutils,
  3517. python-futures, python-mwclient, python-mwscrape,
  3518. python-mwscrape2slob, python-pyelftools, python-pyicu,
  3519. python-pylru, python-pyqt5, python-requests-toolbelt,
  3520. python-simpleaudio, python-slob, rabbitmq-server, shapelib,
  3521. vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
  3522. gpio linux tools.
  3523. Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
  3524. kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
  3525. wvdial, wvstreams.
  3526. Documentation: the list of packages that was present in the
  3527. Buildroot manual has been removed.
  3528. Legal info: the "licenses.txt" file that concatenates all
  3529. license texts is no longer generated - it was not considered
  3530. useful. The manifest.csv contains an empty cell instead of
  3531. "not saved" when no license file is available.
  3532. Other: addition of a DEVELOPERS file listing developers taking
  3533. care of packages or architectures.
  3534. Issues resolved (http://bugs.buildroot.org):
  3535. #7802: host-python build hangs compiling getbuildinfo.o
  3536. #8206: mplayer uses host xorg development files
  3537. #8516: mkcubiecard.sh uses outdated sfdisk switch -D
  3538. #8536: Building sudo with PAM results in unusable sudo
  3539. #8646: check-host-rpath script returns false positives when rpath
  3540. contains symlink
  3541. #8696: xdriver_xf86-input-mouse install header files in target
  3542. directory
  3543. #8811: rp-pppoe - generated scripts commands use HOST pathnames,
  3544. not necessarily TARGET
  3545. #8846: Orphaned/missing toolchain borks eclipse plugin
  3546. #8856: python tornado runtime wasn't met on buildroot 2016.02
  3547. #8901: gcc failes to build if fortran is enabled
  3548. #8916: LDFLAGS pass to openssh
  3549. #8941: "ls" of an NFSv4 share only works when pumped through strace
  3550. #8946: Valgrind fails to build with stack protection turned on
  3551. #9021: Kodi - Broken: Illegal instruction (core dumped)
  3552. #9096: rootfs.ubi not created
  3553. #9111: glibc 2.23: libmvec.so not copied
  3554. #9176: minnowboard : USB not mounted
  3555. #9196: raspberry pi 3 default build seem broken
  3556. #9201: Permission denied make: *** [core-dependencies] Error 126 in
  3557. Buildroot-2015.08.1
  3558. #9216: log4cpp package build fails to build within install
  3559. #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
  3560. pressing buttons.
  3561. #9229: Firefly boot fails with: "failed to find part:boot"
  3562. #9256: [Config file] New device: Odroid-U2/U3
  3563. #9296: Buildroot Fails on applying patches
  3564. #9301: U-boot fails to build with default zynq_zed_defconfig configuration
  3565. #9316: U-boot fails to build if libssl-dev is not installed
  3566. #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
  3567. flash utility (tegrarcm)
  3568. #9326: Odroid-C2 build results in non-bootable image
  3569. #9336: Improve iconv support for external toolchain based builds
  3570. #9356: gdb package
  3571. #9366: no link rootfs.ext4 -> rootfs.ext2
  3572. #9371: openssl: download failes with "Only allow downloads from primary
  3573. download site" + local server
  3574. #9381: check-host-rpath issues
  3575. #9386: ubinize fails with or without custom config
  3576. 2016.08, Released September 1st, 2016
  3577. Minor fixes.
  3578. Toolchain: ARC tools updated to arc-2016.09-eng010.
  3579. Updated/fixed packages: libshout, luajit, mpd, mplayer
  3580. Issues resolved (http://bugs.buildroot.org):
  3581. #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
  3582. #8341: Getting EGL Error: Could not create the egl surface:..
  3583. #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
  3584. 2016.08-rc3, Released August 29th, 2016
  3585. Fixes all over the tree.
  3586. Toolchain: C++ support for the internal blackfin toolchain
  3587. re-enabled.
  3588. Architecture: Default to bf532 CPU variant for blackfin,
  3589. Fix flat one memory region support for m68k and disable flat
  3590. seperate data support because of compatibility issues.
  3591. Defconfigs: Minnowboard and Raspberrypi: Fix errors with
  3592. post-build scripts when systemd is used.
  3593. Zynq microzed/zc706/zed: Fix u-booot configuration.
  3594. netbsd-queue package extended and renamed to
  3595. musl-compat-headers. With this, a number of musl compatibility
  3596. patches are no longer needed.
  3597. Updated/fixed packages: aircrack-ng, android-tools, babeld,
  3598. bcusdk, binutils, boa, busybox, connman, cpupower,
  3599. docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
  3600. glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
  3601. imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
  3602. libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
  3603. libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
  3604. linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
  3605. neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
  3606. pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
  3607. quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
  3608. squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
  3609. trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
  3610. webkitgtk, wireshark, xdriver_xf86-video-intel
  3611. Issues resolved (http://bugs.buildroot.org):
  3612. #9101: Error on support/download/git with system git older than 1.8.4
  3613. #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
  3614. 2016.08-rc2, Released August 17th, 2016
  3615. Fixes all over the tree.
  3616. Toolchain: disable broken C++ support for internal blackfin
  3617. toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
  3618. to fix various issues.
  3619. System: Zoneinfo is available for the musl C library as well.
  3620. Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
  3621. blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
  3622. fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
  3623. inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
  3624. libical, libpjsip, libsidplay2, libunwindow, libxml2,
  3625. linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
  3626. openblas, openipmi, owfs, php, poco, procps, qt, quota,
  3627. sg3_utils, spidev_test, systemd-bootchart, thrift,
  3628. uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
  3629. xdriver_xf86-video-savage, xserver_xorg-server, xen
  3630. Issues resolved (http://bugs.buildroot.org):
  3631. #9136: make graph-size fails with "ValueError: too many values to..
  3632. #9151: qt: fix build with ALSA >= 1.1.x
  3633. #9156: qt: Fix missing runtime Qt3Support dependency
  3634. #9161: modsetting patch not applied to xserver 1.18.4
  3635. #9166: Missing overlays directory in VFAT image for raspberry pi 3
  3636. 2016.08-rc1, Released August 6th, 2016
  3637. Fixes all over the tree and new features.
  3638. Toolchain: Fortran support added. eglibc support removed, musl
  3639. support no longer experimental. Blackfin and Microblaze
  3640. support for internal uClibc-ng toolchain, m68k/coldfire
  3641. improvements. The check for unsafe (build host) directories
  3642. access (/usr/include and /usr/lib) is now enabled by default.
  3643. Unused locales are now purged by default to save space (and
  3644. the default list of locales shrunk). The option to control
  3645. this has now moved from the toolchain menu to system
  3646. configuration.
  3647. Legal info improvements: sources are now hardlinked instead of
  3648. copied if possible to save space. Patches and extra downloads
  3649. are also saved.
  3650. An experimental configuration knob (BR2_REPRODUCIBLE) has been
  3651. added to make the builds more reproducible (E.G. less
  3652. differences in the binary output between builds of the same
  3653. configuration). This is still work in progress.
  3654. An option to execute a custom script inside the fakeroot
  3655. environment used to the generate the filesystem (E.G. to tweak
  3656. permissions or similar) has been added.
  3657. Git support now supports git submodules if
  3658. <pkg>_GIT_SUBMODULES is enabled.
  3659. Hash files for integritry validation have been added for all
  3660. packages.
  3661. Scanpypi utility to help creating packages from the Python
  3662. package index (pypi) has been added.
  3663. The makedevs utility now has support for adding file
  3664. capabilities using extended attributes.
  3665. New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
  3666. development configs, Blackfin GDB simulator, Linksprite
  3667. pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
  3668. i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
  3669. MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
  3670. Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
  3671. demos. A number of defconfigs have been updated and extended
  3672. to generate SD card images. Synopsys HS38 VDK defconfig removed.
  3673. New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
  3674. alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
  3675. circus, dante, docker-containerd, docker-engine, domoticz,
  3676. efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
  3677. gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
  3678. jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
  3679. libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
  3680. libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
  3681. mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
  3682. odroid-scripts, omxplayer, openblas, openmpi, openzwave,
  3683. p7zip, pdbg, python-argh, python-dataproperty,
  3684. python-dateutil, python-dialog3, python-dicttoxml,
  3685. python-dominate, python-engineio, python-flask-jsonrpc,
  3686. python-flask-login, python-humanize, python-pathtools,
  3687. python-pathvalidate, python-pillow, python-prompt-toolkit,
  3688. python-pytablewriter, python-pytz, python-scapy3k,
  3689. python-sdnotify, python-socketio, python-tomako,
  3690. python-ubjson, python-u-msgpack, python-watchdog,
  3691. python-wcwidth, python-xlrd, python-xlsxwriter,
  3692. python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
  3693. sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
  3694. supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
  3695. tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
  3696. wiringpi, xen
  3697. Deprecated packages: ipkg, sstrip
  3698. Removed packages: sunxi-mali-prop
  3699. Issues resolved (http://bugs.buildroot.org):
  3700. #8931: segment fault when compile argp-help.c using aarch64-bu...
  3701. #8966: eglfs error. buildroot don't compile the library libeglfs.so
  3702. #8971: build for beaglebone fails
  3703. #8986: qt5imageformats fails to build on AArch64
  3704. #8991: grub2 fails to compile
  3705. #9001: Nodejs option not available
  3706. #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
  3707. #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
  3708. #9066: 8139TOO - faulty behaviour
  3709. #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
  3710. #9091: U-Boot fails to boot with large ramdisk
  3711. 2016.05, Released May 31st, 2016
  3712. Minor fixes.
  3713. External toolchain: Fix for symlink handling when copying
  3714. links to target.
  3715. Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
  3716. ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
  3717. lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
  3718. net-tools, openpowerlink, pulseview, rpm, tinyalsa,
  3719. xdriver_xf86-video-fbturbo, xserver_xorg-server
  3720. 2016.05-rc3, Released May 26th, 2016
  3721. Fixes all over the tree.
  3722. Tweaks for SSP handling for external toolchains.
  3723. Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
  3724. cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
  3725. gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
  3726. kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
  3727. libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
  3728. mpg123, mtr, openpgm, openpowerlink, oprofile, php,
  3729. postgresql, putty, python-service-identity, python-treq,
  3730. qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
  3731. ustr, valgrind, webkitgtk, libxml2, xorriso,
  3732. xserver_xorg-server
  3733. Issues resolved (http://bugs.uclibc.org):
  3734. #8936: Aircrack-ng - Alot of missing dependencies
  3735. 2016.05-rc2, Released May 17th, 2016
  3736. Fixes all over the tree.
  3737. Rootfs overlay handling now refuses to overwrite
  3738. /{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
  3739. even if these directories are present in the overlay.
  3740. External toolchain: Unbreak user provided libraries deployment
  3741. (BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
  3742. QEMU coldfire: Fix for signal handling kernel issue, enable
  3743. networking support.
  3744. Updated/fixed packages: android-tools, assimp, boost, gcc,
  3745. glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
  3746. jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
  3747. kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
  3748. mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
  3749. qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
  3750. 2016.05-rc1, Released May 10th, 2016
  3751. Fixes all over the tree and new features.
  3752. Architectures: new ARM variants: Cortex A17 and M4, improved
  3753. nonmmu (cortex-M) support, m68k has been re-enabled with
  3754. support for ColdFire. For x86, support for the i386 variant
  3755. has been dropped.
  3756. Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
  3757. deprecated. Go programming language support, Add Binutils 2.26
  3758. support. Old Sourcery PowerPC external toolchains removed,
  3759. Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
  3760. added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
  3761. New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
  3762. STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
  3763. Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
  3764. added for m68k, eXtensa-nommu and ColdFire.
  3765. Linux: use zImage by default on ARM, subversion repository
  3766. support (for u-boot as well).
  3767. New packages: aer-inject, android-tools, cannelloni,
  3768. cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
  3769. gmrender-resurrect, flannel, font-awesome, freeswitch, go,
  3770. go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
  3771. kodi-adsp-basic, kodi-adsp-freesurround,
  3772. kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
  3773. kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
  3774. kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
  3775. kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
  3776. kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
  3777. libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
  3778. lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
  3779. norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
  3780. python-autobahn, python-characteristic, python-crossbar,
  3781. python-cryptography, python-iniparse, python-iowait,
  3782. python-lmdb, python-pexpect, python-ptyprocess,
  3783. python-pyasn-modules, python-pygments, python-pymysql,
  3784. python-pynacl, python-pyopenssl, python-pysocks,
  3785. python-pytrie, python-rpi-gpio, python-service-identity,
  3786. python-setproctitle, python-shutilwhich, python-treq,
  3787. python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
  3788. qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
  3789. raptor, scrub, taskd, tegrarcm, turbolua, valijson,
  3790. wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
  3791. xdriver_xf86-video-amdgpu
  3792. Removed packages: foomatic-filters, python-m2crypto,
  3793. qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
  3794. Issues resolved (http://bugs.buildroot.org):
  3795. #6830: Qt5: no fonts are installed
  3796. #7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
  3797. #7580: Invalid filesystem in Pandaboard defconfig
  3798. #8346: wf111 package removes all kernel module dependencies
  3799. #8436: xserver_xorg-server Segmentation fault
  3800. #8736: IPV6 forced on in busybox
  3801. #8746: At startup system stops with 'cannot set terminal proces..
  3802. #8751: make fail [fio does not build on sh]
  3803. #8766: Compiling host-gcc-final-4.9.3 broken on i386
  3804. #8771: make savedefconfig modifies sources
  3805. #8781: Unable to build uboot for imx28evk
  3806. #8786: gdb fails to build with xz and expat support at the same
  3807. #8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
  3808. #8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
  3809. #8836: Can't select Vim in menuconfig
  3810. #8851: Make sure fio can compile with libaio support if it...
  3811. #8861: With buildroot 2016.02 trying to build for corei7-avx
  3812. fails while trying to build host-binutils
  3813. #8866: Making an USB flash bootable with extlinux build with
  3814. buildroot does not work
  3815. 2016.02, Released March 1st, 2016
  3816. Minor fixes, mostly security related.
  3817. Circular dependency issue with same-as-kernel linux-headers
  3818. option fixed.
  3819. Updated/fixed packages: bluez5_utils, heirloom-mailx,
  3820. imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
  3821. kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
  3822. python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
  3823. 2016.02-rc3, Released February 27th, 2016
  3824. Fixes all over the tree.
  3825. Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
  3826. where VFP is optional (but present on the specific hw). Fix
  3827. ARM variant selection for freescale_imx31_3stack_defconfig.
  3828. Ensure tarballs of downloaded git trees do not contain a
  3829. timestamp.
  3830. Clarify license of patches in COPYING.
  3831. Updated/fixed package: avahi, binutils, cairo, can-festival,
  3832. chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
  3833. erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
  3834. gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
  3835. jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
  3836. libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
  3837. mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
  3838. omniorb, openipmi, openobex, patch, pax-utils, perf,
  3839. pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
  3840. shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
  3841. trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
  3842. wpa_supplicant, xerces, zsh
  3843. Issues resolved (http://bugs.uclibc.org):
  3844. #8651: libMonoPosixHelper.so wrong link reference in buildroot..
  3845. 2016.02-rc2, Released February 18th, 2016
  3846. Fixes all over the tree.
  3847. Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
  3848. crash, backport of Xtensa .init/.fini literals handling.
  3849. glibc security patches for CVE-2014-8121, CVE-2015-1781
  3850. and CVE-2015-7547.
  3851. Defconfigs for Acmesystems Arietta g25 added.
  3852. Updated/fixed packages: binutils, boost, chrony, dovecot,
  3853. e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
  3854. libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
  3855. postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
  3856. sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
  3857. Issues resolved (http://bugs.uclibc.org):
  3858. #8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
  3859. #8606: Problem compiling on Arch Linux
  3860. #8681: kbd 2.0.3 does not build on rpi
  3861. 2016.02-rc1, Released February 10th, 2016
  3862. Fixes all over the tree and new features.
  3863. Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
  3864. arc-2015.12. Support for legacy uClibc dropped, default to
  3865. uClibc-ng instead. Added sys/queue.h implementation for MUSL
  3866. for compatibility. Updated versions of Code sourcery and
  3867. Linaro toolchains. MIPS Codescape toolchains added. Version
  3868. selection for preconfigured external toolchains removed.
  3869. New Defconfigs: ARM Juno r0/r1 development boards, Freescale
  3870. i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
  3871. A number of defconfigs have been extended to generate complete
  3872. system images using genimage.
  3873. Linux: Automatically patch timeconst.pl for <3.9 kernels,
  3874. which isn't compatible with modern perl versions, breaking the
  3875. build when building on recent (Fedora 23, Debian
  3876. Testing/Unstable, ..) distributions.
  3877. Makedevs utility now accepts textual (non-numerical) user and
  3878. group names.
  3879. Vagrant file to easily setup a working development environment
  3880. in a VM has been added.
  3881. Size-stats-compare script to compare rootfs sizes between
  3882. builds has been added.
  3883. Infozip package renamed to zip. EFL packages restructured.
  3884. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  3885. angularjs, apache, apr, argp-standalone, armadillo, arptables,
  3886. at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
  3887. bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
  3888. bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
  3889. clamav, cmake, collectd, connman, coreutils, cppcms, crda,
  3890. cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
  3891. dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
  3892. dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
  3893. dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
  3894. dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
  3895. elementary, elfutils, enlightenment, erlang, espeak, eudev,
  3896. eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
  3897. fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
  3898. firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
  3899. freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
  3900. gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
  3901. glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
  3902. gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
  3903. gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
  3904. gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
  3905. hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
  3906. imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
  3907. ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
  3908. iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
  3909. jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
  3910. jquery-sparkline, jquery-ui, jquery-ui-themes,
  3911. jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
  3912. keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
  3913. leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
  3914. libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
  3915. libedbus, libedit, libedje, libeet, libefreet, libeina,
  3916. libeio, libelementary, libembryo, libepoxy, libethumb, libev,
  3917. libevas, libevas-generic-loaders, libevdev, libevent, libffi,
  3918. libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  3919. libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
  3920. libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
  3921. libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
  3922. libnss, liboauth, liboping, libpciaccess, libplist, libpng,
  3923. libraw, libraw1394, librsvg, libseccomp, libsecret,
  3924. libserialport, libsigc, libsigrok, libsigrokdecode,
  3925. libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
  3926. libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
  3927. libunwind, libupnpp, liburcu, libuv, libv4l, libva,
  3928. libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
  3929. lightning, lighttpd, linknx, linux-firmware, linux-fusion,
  3930. linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
  3931. lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
  3932. lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
  3933. luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
  3934. mesa3d, mesa3d-demos, mesa3d-headers, micropython,
  3935. micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
  3936. moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
  3937. monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
  3938. musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
  3939. netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
  3940. nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
  3941. odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
  3942. openldap, openntpd, openobex, openocd, openpgm,
  3943. open-plc-utils, openpowerlink, openssh, openssl, openswan,
  3944. openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
  3945. pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
  3946. perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
  3947. perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
  3948. polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
  3949. psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
  3950. python-alsaaudio, python-can, python-cffi, python-cherrypy,
  3951. python-httplib2, python-jinja2, python-lxml, python-m2crypto,
  3952. python-mako, python-msgpack, python-psutil, python-pyasn,
  3953. python-pycparser, python-pydal, python-pyftpdlib,
  3954. python-pyroute2, python-pyxml, python-pyzmq, python-requests,
  3955. python-serial, python-setuptools, python-six, python-spidev,
  3956. python-tornado, python-twisted, python-web2py, python-webpy,
  3957. python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
  3958. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  3959. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  3960. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  3961. qt5serialport, qt5svg, qt5webchannel, qt5webkit,
  3962. qt5webkit-examples, qt5websockets, qt5x11extras,
  3963. qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
  3964. readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
  3965. rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
  3966. sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
  3967. smack, snowball-init, socat, sp-oops-extract, sqlite,
  3968. squashfs, squeezelite, squid, sredird, sshfs,
  3969. start-stop-daemon, strace, strongswan, stunnel, subversion,
  3970. sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
  3971. sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
  3972. tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
  3973. trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
  3974. udpcast, unionfs, upmpdcli, usb_modeswitch,
  3975. usb_modeswitch_data, ustr, util-linux, vala, valgrind,
  3976. vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
  3977. wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
  3978. wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
  3979. xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
  3980. xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
  3981. xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
  3982. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  3983. xfont_encodings, xfont_font-adobe-100dpi,
  3984. xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
  3985. xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
  3986. xfont_font-alias, xfont_font-arabic-misc,
  3987. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  3988. xfont_font-bh-lucidatypewriter-100dpi,
  3989. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  3990. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  3991. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  3992. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  3993. xfont_font-daewoo-misc, xfont_font-dec-misc,
  3994. xfont_font-ibm-type1, xfont_font-isas-misc,
  3995. xfont_font-jis-misc, xfont_font-micro-misc,
  3996. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  3997. xfont_font-misc-meltho, xfont_font-misc-misc,
  3998. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  3999. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  4000. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  4001. xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
  4002. xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
  4003. xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
  4004. ympd, zeromq, zic, znc, zsh,
  4005. New packages: acsccid, assimp, atkmm, autofs, bcm2835,
  4006. cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
  4007. edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
  4008. kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
  4009. libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
  4010. libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
  4011. mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
  4012. obsidian-cursors, openal, openbox, pangomm,
  4013. python-backports-abc, python-beautifulsoup4, python-cbor,
  4014. python-click, python-cssselect, python-ecdsa, python-html5lib,
  4015. python-idna, python-ipaddress, python-mistune, python-netaddr,
  4016. python-paho-mqtt, python-paramiko, python-pyparted,
  4017. python-pysmb, python-pyudev, python-singledispatch,
  4018. python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
  4019. sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
  4020. unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
  4021. Removed packages: libungif, python-pyxml,
  4022. Issues resolved (http://bugs.uclibc.org):
  4023. #7886: gettext: link failure with locally-installed libxml2
  4024. #7892: systemd-journald is broken
  4025. #8066: nodejs crashes when built with gcc 4.9
  4026. #8296: nodejs 0.12.7 - npm crashes (seg core dump)
  4027. #8501: gunzip fails to uncompress files
  4028. #8541: fail to build host-fakeroot-1.20.2
  4029. #8546: build instructions for raspberry pi don't work
  4030. #8571: strace for ARC compile error
  4031. #8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
  4032. #8616: Fail to build for raspberrypi_defconfig with big endian
  4033. #8621: sqlite package, properly enable readline
  4034. 2015.11, Released November 30th, 2015
  4035. Minor fixes.
  4036. Merged/seperate /usr handling is now also performed for
  4037. staging so cross-gdb / gdbserver can find the libraries.
  4038. Updated/fixed packages: autossh, conntrack-tools, dcron,
  4039. espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
  4040. libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
  4041. rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
  4042. zmqpp
  4043. Issues resolved (http://bugs.uclibc.org):
  4044. #8441: Invalid directory for X11 fonts in target (RPi2)
  4045. #8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
  4046. 2015.11-rc3, Released November 26th, 2015
  4047. Fixes all over the tree.
  4048. We have a new modern website!
  4049. Updated/fixed packages: apitrace, audiofile, autossh, bullet,
  4050. c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
  4051. fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
  4052. gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
  4053. guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
  4054. libfreeimage, libgsasl, libgtk3, libxml2, localedef,
  4055. lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
  4056. oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
  4057. sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
  4058. yajl, zmqpp
  4059. Issues resolved (http://bugs.uclibc.org):
  4060. #6872: gpsd: disabled on microblaze
  4061. #8321: invalid opcode error with minidlna and ffmpeg
  4062. #8336: Default systemd configuration fails to boot correctly in 2015-08
  4063. #8446: rpi-userland failed to build with glibc 2.22
  4064. 2015.11-rc2, Released November 19th, 2015
  4065. Fixes all over the tree.
  4066. LD_LIBRARY_PATH is no longer used to ensure host binaries find
  4067. their libraries, fixing issues on recent Fedora.
  4068. Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
  4069. with ${TARGET}-cc after the move to use a toolchain wrapper
  4070. for the internal toolchain.
  4071. Appy-patches.sh now correctly applies all files listed in
  4072. series files.
  4073. Fixes for merged /usr handling when a custom skeleton is used.
  4074. Updated/fixed packages: axfsutils, boost, busybox, dhcp,
  4075. directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
  4076. gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
  4077. libecore, libgudev, libnss, libpng, libserial, libssh2,
  4078. libuecc, libxml2, linux-headers, liquid-dsp, ltris,
  4079. lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
  4080. mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
  4081. polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
  4082. ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
  4083. ushare, wine, wpa_supplicant, x265,
  4084. xdriver_xf86-video-siliconmotion, zxing-cpp
  4085. Issues resolved (http://bugs.uclibc.org):
  4086. #4790: Running udhcpc on a system with NFS root kills NFS
  4087. #8456: Building host-pkgconf on Fedora 23 fails due to..
  4088. 2015.11-rc1, Released November, 7th 2015
  4089. Fixes all over the tree and new features.
  4090. Architectures:
  4091. - Support for sparc64 added (internal toolchain with glibc
  4092. only).
  4093. - Support for mips32r6 and mips64r6 added.
  4094. - Support for Intel Quark X1000 CPU.
  4095. - Switch to EABIhf by default on ARM when a VFP is available.
  4096. Toolchains:
  4097. - glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
  4098. uclibc-ng 1.0.8, host-gdb enabled on AArch64.
  4099. - The toolchain wrapper which was used only for external
  4100. toolchains is now also used for Buildroot internal
  4101. toolchains. This allowed to fix the ccache support, prepare
  4102. the way for top-level parallel build support and remove gcc
  4103. patches used to detect header/library path poisoning.
  4104. - Remove Analog Devices Blackfin toolchain 2012R2.
  4105. - Fix several Xtensa build failures by switching from
  4106. text-section-literals to auto-litpools.
  4107. - Enable MIPS64 support in uClibc-ng, use uClibc on ARC
  4108. rather than a specific fork.
  4109. - Linaro toolchains for ARM, ARMeb and AArch64 updated to
  4110. 2015.08. 2014.09 version is kept since 2015.08 only runs on
  4111. x86_64 hosts.
  4112. Bootloaders:
  4113. - Fix ARM64 support in U-Boot.
  4114. Defconfigs:
  4115. - Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
  4116. Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
  4117. OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
  4118. Synopsys AArch64 VDK virtual platform.
  4119. - Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
  4120. cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
  4121. mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
  4122. raspberrypi2, riotboard, snps_axs10*, wandboard.
  4123. - Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
  4124. calao_snowball_defconfig, gnublin, integrator926_defconfig.
  4125. Infrastructure:
  4126. - Support for fetching from Mercurial tags fixed.
  4127. - Introduce LINUX_NEEDS_MODULES, which allows to enforce
  4128. module support to be enabled in the kernel when a package
  4129. builds out-of-tree kernel modules (through the
  4130. pkg-kernel-module infrastructure or on its own).
  4131. - Improve the perl package infrastructure to automatically add
  4132. the dependency to the perl interpreter to target perl module
  4133. packages.
  4134. - Remove trailing slashes in <pkg>_SITE and addition of a
  4135. check to ensure such trailing slashes are no longer added.
  4136. - Extend the legal infrastructure to allow packages to declare
  4137. their actual source code. This is useful for packages for
  4138. which <pkg>_SOURCE points to pre-built binaries (as is the
  4139. case for external toolchains). The new <pkg>_ACTUAL_SOURCE
  4140. variable allows to point to the source code in such cases.
  4141. - Improved ccache support, thanks to the usage of a toolchain
  4142. wrapper for internal toolchain. Now a single cache directory
  4143. can be shared between different Buildroot builds.
  4144. - Addition of a 'graph-size' make targets, which generates a
  4145. PDF graph of per-package size of the root filesystem.
  4146. - Addition of <pkg>_EXCLUDES so that packages can request
  4147. certain parts of the source code tarball to not be
  4148. extracted. This feature is currently used by gcc and
  4149. toolchain-external.
  4150. - Packages can now use the <pkg>_PKGDIR variable, provided by
  4151. the package infrastructure, to reference their package
  4152. directory, instead of explicitly using package/<pkg>/.
  4153. Filesystems:
  4154. - Add high lz4 compression to squashfs.
  4155. - Simplification of shell profile files in the default
  4156. skeleton.
  4157. - Remove ftp user and /home/ftp from the skeleton, and let ftp
  4158. server packages create these when needed.
  4159. - Add support for /bin, /sbin and /lib to be symlinks to their
  4160. corresponding directories in /usr. This is enforced for
  4161. systemd configurations, and optional for other
  4162. configurations.
  4163. - Support for AXFS filesystem image generation added.
  4164. - New options to add extra space/inodes to ext2/3/4 images.
  4165. Updated/fixed packages:
  4166. adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
  4167. barebox, bash, batctl, bind, binutils, bluez_utils, boost,
  4168. bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
  4169. collectd, connman, conntrack-tools, coreutils, cpio,
  4170. cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
  4171. dhrystone, dillo, directfb, directfb-examples, dmraid,
  4172. dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
  4173. dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
  4174. elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
  4175. exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
  4176. flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
  4177. genimage, gettext, git, glib-networking, glmark2, gnupg2,
  4178. gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
  4179. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  4180. gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
  4181. gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
  4182. hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
  4183. inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
  4184. iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
  4185. kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
  4186. kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
  4187. kodi-pvr-stalker, kodi-pvr-vbox,
  4188. kodi-visualisation-waveforhue, less, lftp, libbluray,
  4189. libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
  4190. libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4191. libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
  4192. liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
  4193. libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
  4194. libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
  4195. libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
  4196. libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
  4197. linux, linux-firmware, linux-fusion, linux-headers,
  4198. lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
  4199. lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
  4200. lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
  4201. modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
  4202. mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
  4203. nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
  4204. openssl, openswan, openvpn, pango, parted, perl, perl-cross,
  4205. perl-crypt-openssl-random, perl-http-message,
  4206. perl-io-socket-ssl, perl-module-build, perl-mojolicious,
  4207. perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
  4208. perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
  4209. poco, polarssl, portaudio, portmap, postgresql, proftpd,
  4210. protobuf, protobuf-c, pulseaudio, python-configshell-fb,
  4211. python-networkmanager, python-numpy, python-pyparsing,
  4212. python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
  4213. python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
  4214. rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
  4215. samba4, sane-backends, sconeserver, sdl, sed, setools,
  4216. shairport-sync, shared-mime-info, sland, smartmontools,
  4217. softether, spice-protocol, sqlcipher, sqlite, squid,
  4218. strongswan, stunnel, subversion, sudo, sunxi-tools,
  4219. supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
  4220. tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
  4221. util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
  4222. vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
  4223. wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
  4224. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4225. xdriver_xf86-video-sis, xlib_libXi, xorg-server,
  4226. xtables-addons, xterm, xz, zic, znc, zsh
  4227. New packages:
  4228. axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
  4229. gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
  4230. ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
  4231. kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
  4232. libg7221, libhttpparser, libilbc, libldns, libmng,
  4233. libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
  4234. libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
  4235. micropython, micropython-libs, python-pyratemp,
  4236. python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
  4237. sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
  4238. x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
  4239. Removed packages:
  4240. blackbox (was deprecated), divine (merged in directfb),
  4241. kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
  4242. sawman (merged in directfb), schifra (marked broken since a
  4243. long time), texinfo (host variant only, no longer used), zxing
  4244. (replaced by zxing-cpp),
  4245. Issues resolved (http://bugs.uclibc.org):
  4246. #4099: cut utility from GNU coreutils works incorrect
  4247. #7772: libxml-parser-perl build failure: missing dependency
  4248. ExtUtils/MakeMaker
  4249. #7931: Default configuration for Cubieboard v1 is outdated
  4250. #8116: 2015.05-rc2 raspberrypi2_defconfig network interface
  4251. not coming up
  4252. #8246: X.org DRI2 build issue
  4253. #8256: pointing to /usr/bin/objcopy old version (x86) instead
  4254. of the generated one
  4255. #8266: mplayer build issue
  4256. #8281: pyrexc fails to run when path is too long
  4257. #8316: lttng-tools and lttng-babeltrace executables contain
  4258. bad RPATH pointing to host machine
  4259. #8331: kexec wants shutdown in /sbin, but systemd installs it
  4260. in /usr/sbin
  4261. #8361: Buildroot 2015.08.1 skeleton inittab overwritten by
  4262. busybox's version
  4263. #8366: libevent does not build
  4264. #8386: build failed with external toolchain
  4265. #8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
  4266. #8396: CCACHE initialization
  4267. #8401: gpsd 3.15 NMEA support
  4268. #8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
  4269. #8421: util-linux installs systemd files in output/target/home/
  4270. 2015.08, Released August 31st, 2015
  4271. Minor fixes.
  4272. OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
  4273. reintroduced as opencv.
  4274. Updated/fixed packages: bootutils, canfestival, cppcms,
  4275. curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
  4276. ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
  4277. ltrace, midori, network-manager, openssh, perl-file-listing,
  4278. perl-http-cookies, perl-http-daemon, perl-http-negotiate,
  4279. perl-www-robotrules, python-can, qt5base, qt5multimedia,
  4280. setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
  4281. x264, xserver_xorg-server, zyre
  4282. 2015.08-rc2, Released August, 24th 2015
  4283. Fixes all over the tree.
  4284. Toolchain: fix gcc build on NIOS-II.
  4285. Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
  4286. hybrid ISO image generation.
  4287. Architectures: add arm1136j-s variant.
  4288. Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
  4289. beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
  4290. c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
  4291. dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
  4292. guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
  4293. libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
  4294. librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
  4295. linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
  4296. netatalk, nodejs, ola, opencv, oprofile, php, poco,
  4297. postgresql, powertop, protobuf, protobuf-c, qt5base,
  4298. qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
  4299. sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
  4300. wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
  4301. Issues resolved (http://bugs.uclibc.org):
  4302. #8276: package/dropbear: symlink resolution incorrect
  4303. #8286: Error with buildroot
  4304. #8301: ldconfig parameter in Makefile
  4305. 2015.08-rc1, Released August, 5th 2015
  4306. Fixes all over the tree and new features.
  4307. Architectures:
  4308. - Refactor how the availability of an MMU is described.
  4309. - Minimal support for Cortex-M3
  4310. - Minimal support for AArch64 big-endian
  4311. Toolchains:
  4312. - Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
  4313. - Use uClibc-ng as the default uClibc version, instead of the
  4314. official uClibc, which hasn't done any release since 3+
  4315. years
  4316. - eglibc is now marked as deprecated
  4317. - GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
  4318. support for gcc 5.x added.
  4319. - Binutils: use Binutils 2.24 as the default, 2.25.x series
  4320. bumped to 2.25.1, remove old Binutils 2.22.
  4321. - Update ARC toolchain components to 2015.06
  4322. - Add support for Fortran when building gcc
  4323. Bootloaders:
  4324. - Support for using the kconfig configuration system in
  4325. U-Boot
  4326. New Defconfigs:
  4327. - VIA VAB-820/AMOS-820
  4328. - OLimex OLinuxino A20 Lime
  4329. - Many new defconfigs for Atmel evaluation boards:
  4330. at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
  4331. Xplained Ultra, sama5d3 Xplained.
  4332. - ACME Systems Aria G25
  4333. - WarPboard
  4334. - Altera Cyclone 5 Development Board
  4335. - Xilinx zc706
  4336. - ARC AXS101 and AXS103 Software Development Platforms
  4337. - Significant updates to Raspberry Pi / Raspberry Pi 2
  4338. Infrastructure:
  4339. - Buildroot takes better care now of generating predictable
  4340. permissions in the target filesystem. However, existing
  4341. permissions on a custom skeleton or rootfs overlay will no
  4342. longer be preserved. Therefore, it is necessary to add a
  4343. permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
  4344. required permissions.
  4345. - Add support for kconfig fragments.
  4346. - No longer pass --{enable,disable}-debug to autotools
  4347. packages depending on the value of
  4348. BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
  4349. whether we build with -g or not.
  4350. - Support for extracting archives in .lzma in the generic
  4351. package infrastructure.
  4352. - Remove random-seed file from the default skeleton, since
  4353. seeding the entropy pool with a known seed makes more harm
  4354. than good.
  4355. - In the CVS download helper, add support to use a date as
  4356. the version.
  4357. - Add support for a per-package <pkg>_STRIP_COMPONENTS
  4358. variable, which packages can use to specify how many path
  4359. components should be stripped when extracting the tarball.
  4360. - Addition of a 'kernel-module' package infrastructure, which
  4361. simplifies the packaging of external kernel modules. Many
  4362. existing packages are converted to use it.
  4363. - Allow bootloaders to be implemented in $(BR2_EXTERNAL)
  4364. - Remove /etc/securetty from the default skeleton.
  4365. - Migration of sysV initscripts from the default skeleton to
  4366. a package called 'initscripts', installed only when Busbox
  4367. init or sysvinit are used.
  4368. - Migration of the skeleton logic to a proper 'skeleton'
  4369. package.
  4370. - Addition of a 'linux-tools' infrastructure in the 'linux'
  4371. package, to support building user-space tools bundled
  4372. within the Linux kernel sources, such as perf and cpupower.
  4373. - Usage of backticks instead of make $(shell ...) to execute
  4374. shell commands. This allows to delay the evaluation of such
  4375. commands when actually needed, and not when expanding the
  4376. variables. It is useful to make 'make printvars' less
  4377. noisy, and as a preparation to support top-level parallel
  4378. build.
  4379. - Libtool .la files are not mungled for all package types,
  4380. instead of being handled only for packages using the
  4381. autotools-package infrastructure.
  4382. - Add mechanism to allow packages to express a dependency on
  4383. gcc versions. This is needed for packages that use C++11 or
  4384. C11 support for example.
  4385. Important package updates:
  4386. - Complete rework of the matchbox packaging
  4387. - Lots of fixes in packages for compatibility with musl and
  4388. gcc 5.
  4389. - Hash files added to a large number of packages.
  4390. - Update a significant number of packages to use a new
  4391. hosting, after the announcement of Google Code and
  4392. Gitorious closing.
  4393. - Major packages needed for SELinux support have been merged,
  4394. but the support is not complete yet.
  4395. - Significant update of OpenCV to version 3.0, and addition
  4396. of lots of eatures.
  4397. - Significant update of all packages supporting the GPU and
  4398. VPU of i.MX ARM processors.
  4399. - Addition of systemd support in a significant number of
  4400. packages.
  4401. - Qt5 updated to 5.5.0
  4402. - Use modular X.org server by default instead of KDrive
  4403. Filesystems:
  4404. - Complete overhaul of the iso9660 support. Now allows to use
  4405. directly IS9660 as the root filesystem format and not only
  4406. an initrd, and supports Grub 2 and isolinux in addition to
  4407. Grub.
  4408. Updated packages: a10disp, agentpp, apache, at91bootstrap3,
  4409. audit, barebox, bc, bind, bmon, boost, btrfs-progs,
  4410. ca-certificates, can-utils, ccache, cloog, collectd, connman,
  4411. coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
  4412. dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
  4413. e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
  4414. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4415. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
  4416. eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
  4417. file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
  4418. gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
  4419. gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
  4420. i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
  4421. kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
  4422. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4423. kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
  4424. libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
  4425. libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
  4426. libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
  4427. libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
  4428. libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
  4429. libunistring, libupnp, libuv, libv4l, libva,
  4430. libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
  4431. linux-firmware, linux-headers, live555, ltrace, lua,
  4432. lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
  4433. lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
  4434. modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
  4435. mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
  4436. nodejs, ntp, ola, opencv, openldap, openssh, openssl,
  4437. openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
  4438. perl-cross, perl-encode-locale, perl-io-socket-ssl,
  4439. perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
  4440. perl-xml-libxml, php, pinentry, polarssl, postgresql,
  4441. pulseview, pure-ftpd, python, python-dpkt, python-lxml,
  4442. python-networkmanager, python-pyinotify, python-pypcap,
  4443. python-tornado, qextserialport, qt, qt5, rapidjson, redis,
  4444. rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
  4445. snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
  4446. sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
  4447. tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
  4448. usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
  4449. weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
  4450. xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
  4451. xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
  4452. xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
  4453. xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
  4454. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  4455. xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
  4456. xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
  4457. xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
  4458. xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
  4459. zic.
  4460. New packages: angularjs, atf, audit, c-icap, c-icap-modules,
  4461. cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
  4462. jquery-datetimepicker, kodi-audioencoder-modplug,
  4463. kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
  4464. kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
  4465. kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
  4466. kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
  4467. kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
  4468. kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
  4469. kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
  4470. kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
  4471. kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
  4472. kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
  4473. kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
  4474. kodi-screensaver-pingpong, kodi-screensaver-pyro,
  4475. kodi-screensaver-stars, kodi-visualisation-shadertoy,
  4476. kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
  4477. kodi-visualisation-waveform, kvmtool, kyua, libfm,
  4478. libfm-extra, libplatform, librtas, libsodium, libsquish,
  4479. libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
  4480. moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
  4481. python-pycli, python-pydal, python-pyyaml, python-web2py,
  4482. qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
  4483. rtl8821au, sepolgen, setools, skeleton, stm32flash,
  4484. webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
  4485. Deprecated packages: webkitgtk, libgail, eglibc support in
  4486. glibc package.
  4487. Issues resolved (http://bugs.uclibc.org):
  4488. #4291: Segmentation fault with all binaries that use threads
  4489. when compiled with gcc 4.6
  4490. #6944: building toolchain for sh4 fails
  4491. #7592: Buildroot GCC: -lto requires plugin support in ranlib
  4492. #7628: Python SSL does not get built for Raspberry Pi
  4493. #7682: Missing dependencies for NFS
  4494. #7742: dhcp lacks important features when BR2_ENABLE_DEBUG
  4495. #7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
  4496. #7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
  4497. #7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
  4498. #7971: python-flask, python-werkzeug. No module named zlib
  4499. #7981: Target file system skeleton permissions hazard
  4500. #8006: rpcdebug in nfs-utils built for the host
  4501. #8036: alsa-lib headers problem that prevents to compile alsa
  4502. dependent projects
  4503. #8081: systemd init system: /tmp is not mode 1777
  4504. #8121: php opcache extension doesn't get installed
  4505. #8151: x86-64 make fails with ncurses 5.9
  4506. #8156: pkg-kconfig infra broken for *-update-{config, defconfig}
  4507. #8161: default /bin/sh symlink to busybox is full path and not relative
  4508. #8171: glamor missing
  4509. #8191: Request update support for the cubieboard series
  4510. #8201: Important security upgrades for node.js
  4511. 2015.05, Released May 31st, 2015
  4512. Minor fixes.
  4513. Updated/fixed packages: conntrack-tools, directfb, fio, flite,
  4514. gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
  4515. libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
  4516. lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
  4517. python3, sconeserver, udpcast, upmpdcli
  4518. 2015.05-rc3, Released May 22nd, 2015
  4519. Several fixes, mainly related to static linking.
  4520. Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
  4521. autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
  4522. enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
  4523. google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
  4524. iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
  4525. libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
  4526. libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
  4527. linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
  4528. mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
  4529. php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
  4530. qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
  4531. tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
  4532. ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
  4533. wvstreams, xmlstarlet, zeromq, zmqpp
  4534. New packages: c-periphery
  4535. Issues resolved (http://bugs.uclibc.org):
  4536. #8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
  4537. #8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
  4538. #8126: exim lacks plaintext and cram-md5 auth
  4539. 2015.05-rc2, Released May 11th, 2015
  4540. Minor fixes.
  4541. Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
  4542. issues. Context functions enabled for uClibc snapshot /
  4543. uClibc-NG.
  4544. Architectures: Endian handling symbol for Xtensa, binutils
  4545. fixes.
  4546. Infrastructure: Fix for kernel module stripping when
  4547. localversion contains spaces.
  4548. Updated/fixed packages: at, autoconf-archive, binutils,
  4549. cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
  4550. gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
  4551. ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
  4552. xlib_libXfont
  4553. Issues resolved (http://bugs.uclibc.org):
  4554. #8086: Cannot select systemd as init with Linaro 2014.09...
  4555. 2015.05-rc1, Released May 4th, 2015
  4556. Fixes all over the tree and new features.
  4557. Architectures: Removed AVR32 support, deprecate SH64, added
  4558. support for steamroller, corei7-avx and core-avx2 x86
  4559. variants.
  4560. Toolchains: IPv6 and Largefile support now enforced for
  4561. uClibc. Corresponding Kconfig symbols removed.
  4562. External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
  4563. CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
  4564. external toolchains are now detected and blacklisted.
  4565. Internal toolchain support for Nios2 added, Blackfin
  4566. removed. Aarch64 and sh musl support. uClibc-ng support added.
  4567. Libatomic is now handled for internal and external
  4568. toolchains. Link time optimization (LTO) support.
  4569. New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
  4570. Auto, Raspberry Pi 2, RIoTboard,
  4571. Infrastructure: Hashes for a large number of packages have
  4572. been added. Missing hashes now stop the build unless
  4573. explicitly disabled.
  4574. Spaces and colons (:) are now supported in package
  4575. versions. Dependencies can now be listed for the patch step
  4576. (<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
  4577. extensions infrastructure has been added.
  4578. Makedevs now has a recursive (r) option.
  4579. The variable containing the list of packages to build has been
  4580. renamed from TARGETS to PACKAGES.
  4581. Make external-deps / legal-info / source / source-check have
  4582. been reimplemented using the package infrastructure, so their
  4583. output/behaviour may differ from earlier (some packages were
  4584. not included in the past).
  4585. The old insecure DES password encoding is no longer supported.
  4586. U-Boot patch option now support direct references to patch
  4587. files and URLs in addition to directories of patches. The
  4588. i.MX28 SD format (u-boot.sd) is now supported.
  4589. Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
  4590. alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
  4591. bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
  4592. btrfs-progs, busybox, ca-certificates, cairo, can-utils,
  4593. canfestival, ccache, chrony, civetweb, clamav, cmake,
  4594. collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
  4595. cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
  4596. dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
  4597. dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
  4598. dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
  4599. libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
  4600. exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
  4601. fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
  4602. gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
  4603. glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
  4604. gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
  4605. gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
  4606. hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
  4607. ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
  4608. iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
  4609. kismet, kmod, kodi-audioencoder-flac,
  4610. kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
  4611. libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
  4612. libdrm, libdvbsi, libebml, libecore, libedit, liberation,
  4613. libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
  4614. libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
  4615. libinput, libiscsi, libksba, liblinear, libmatroska,
  4616. libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
  4617. libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
  4618. libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
  4619. libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
  4620. libusb, libuv, libva-intel-driver, libva, libvncserver,
  4621. libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
  4622. lighttpd, linknx, linphone, linux-firmware, linux-headers,
  4623. linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
  4624. lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
  4625. lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
  4626. luarocks, lvm2, lxc, make,
  4627. matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
  4628. matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
  4629. minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
  4630. monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
  4631. mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
  4632. neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
  4633. nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
  4634. opencv, openldap, openntpd, openocd, openssh, openssl,
  4635. openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
  4636. pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
  4637. perl-io-socket-ssl, perl-json-tiny, perl-module-build,
  4638. perl-mojolicious, perl-net-ssleay, perl-path-tiny,
  4639. perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
  4640. pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
  4641. pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
  4642. python-{cheetah,coherence,django,markdown,netifaces,pam,six},
  4643. python-tornado, python-twisted, python-zope-interface, python,
  4644. python3, qemu, qt, qt5, qt5base, qt5multimedia,
  4645. qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
  4646. rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
  4647. rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
  4648. sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
  4649. smcroute, snmppp, socat, socketcand, sofia-sip, sox,
  4650. spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
  4651. strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
  4652. systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
  4653. tiff, tinyalsa, tn5250, transmission, trinity, tslib,
  4654. tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
  4655. usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
  4656. webp, weston, wget, which, whois, wireless-regdb,
  4657. wireless_tools, wireshark, wpa_supplicant, wvstreams,
  4658. xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
  4659. xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
  4660. xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
  4661. xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
  4662. xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
  4663. xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
  4664. xapp_xmore, xcb-util-image, xcb-util-keysyms,
  4665. xdata_xcursor-themes,
  4666. xdriver_xf86-input-{evdev,keyboard,synaptics,void},
  4667. xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
  4668. xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
  4669. xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
  4670. xfont_font-util, xkeyboard-config,
  4671. xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
  4672. xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
  4673. xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
  4674. xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
  4675. New packages: apache, autoconf-archive, batctl,
  4676. bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
  4677. dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
  4678. imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
  4679. leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
  4680. libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
  4681. mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
  4682. openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
  4683. perl-db-file, perl-digest-{hmac,sha1},
  4684. perl-encode-{detect,locale}, perl-file-{listing,util},
  4685. perl-html-{parser,tagset}, perl-http-cookies,
  4686. perl-http-{daemon,date,message,negotiate}, perl-io-html,
  4687. perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
  4688. perl-mailtools, perl-mime-base64, perl-net-{dns,http},
  4689. perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
  4690. perl-www-robotrules, powertop, pulseview,
  4691. python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
  4692. qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
  4693. unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
  4694. xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
  4695. xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
  4696. xproto_xproxymanagementprotocol
  4697. Removed packages: gtk2-theme-hicolor
  4698. Deprecated packages: samba
  4699. Issues resolved (http://bugs.uclibc.org):
  4700. #7478: Multiple chosen python modules are not built due to...
  4701. #7508: Use of BR2_EXTERNAL and dependencies to existing packages
  4702. #7676: Package procps-ng installs binaries to nonsensical folder
  4703. #7724: Startx is not installed in the target
  4704. #7760: botan: wrong prefix in botan-1.10.pc
  4705. #7826: Building of cdparanoia
  4706. #7844: Lua with hard-float on MIPS by buildroot doesn't work
  4707. #7874: X.org configure error
  4708. #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
  4709. #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
  4710. #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
  4711. #7976: mkuser script fails with: user already exists with...
  4712. #8011: When building only busybox and strace, strace fails...
  4713. #8016: collectd fails to build, network.c:171:19: error:...
  4714. #8041: error on building libcurl7.42.0
  4715. 2015.02, Released March 1st, 2015
  4716. Minor fixes.
  4717. Updated/fixed packages: civetweb, ding-libs,
  4718. directfb-examples, glibc, gnupg, gnupg2, gpm,
  4719. gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
  4720. libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
  4721. libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
  4722. rpi-firmware, shared-mime-info, vlc, vorbis-tools,
  4723. xcb-util-keysyms
  4724. Removed packages: libgc
  4725. 2015.02-rc3, Released February 24th, 2015
  4726. Minor fixes.
  4727. Cmake and rebar (erlang) infrastructure fixes.
  4728. Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
  4729. evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
  4730. make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
  4731. qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
  4732. 2015.02-rc2, Released February 15th, 2015
  4733. Minor fixes.
  4734. raspberrypi: fix kernel sha1 for DT variant.
  4735. Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
  4736. libsepol, libssh2, mplayer, ntp, openvmtools, python3,
  4737. qt5base, qt5connectivity, xserver_xorg-server
  4738. 2015.02-rc1, Released February 8th, 2015
  4739. Fixes all over the tree and new features.
  4740. Static/shared library handling reworked. This is now a
  4741. tristate (shared only / shared and static / static
  4742. only). Default is now shared only to speed up the
  4743. build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
  4744. The toolchain (internal and external) will now warn when an
  4745. unsafe library or header path is used (such as /usr/include or
  4746. /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
  4747. under build options this instead becomes an error.
  4748. A installation path issue with the internal musl toolchain
  4749. support has been fixed so it is now possible to reuse it as an
  4750. external toolchain.
  4751. Architectures: Freescale E5500 and E6500 PowerPC support
  4752. added, deprecated MIPS 1/2/3/4 support removed.
  4753. New defconfigs: Freescale p2020ds, MIPS creator CI20,
  4754. Raspberrypi with DT, UDOO Quad.
  4755. 'make <foo>_defconfig' now saves the path to the defconfig in
  4756. the .config, so a 'make savedefconfig' automatically updates
  4757. it.
  4758. Infrastructure for packages using the Erland rebar tool has
  4759. been added.
  4760. Hashes for a large number of packages have been added. Hashes
  4761. are now checked for both target and host packages.
  4762. The system menu now has an option to automatically configure a
  4763. network interface through DHCP at bootup.
  4764. The default filesystem skeleton now uses a separate tmpfs for
  4765. /run instead of a symlink to /tmp/ for security reasons / to
  4766. protect against conflicts with user generated temporary files.
  4767. BR2_EXTERNAL is now exported to post-build and post-image
  4768. scripts.
  4769. New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
  4770. ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
  4771. erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
  4772. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4773. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
  4774. erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
  4775. gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
  4776. janus-gateway, kodi, kodi-audioencoder-flac,
  4777. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4778. kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
  4779. libselinux, libsemanage, libserialport, libsigro,
  4780. libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
  4781. libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
  4782. mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
  4783. openldap, python-alsaaudio, python-certifi, python-cheetah,
  4784. python-coherence, python-django, python-docopt, python-enum,
  4785. python-enum34, python-flask, python-gobject, python-httplib2,
  4786. python-ipaddr, python-itsdangerous, python-jinja,
  4787. python-markdown, python-markupsafe, python-networkmanager,
  4788. python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
  4789. python-pysendfile, python-pyxb, python-requests, python-six,
  4790. python-twisted, python-webpy, python-werkzeug,
  4791. python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
  4792. start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
  4793. xtables-addons
  4794. Removed packages (target): bison, distcc, gob2, m4
  4795. Issues resolved (http://bugs.uclibc.org):
  4796. #7556: make interactive CLI optional for nftables
  4797. #7730: Error while connecting Qt Cretaor to device
  4798. #7766: logrotate default gzip path is usually wrong
  4799. #7790: Invalid ext4 image generated by Buildroot
  4800. 2014.11, Released December 1st, 2014
  4801. Minor fixes.
  4802. Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
  4803. current working directory isn't searched.
  4804. Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
  4805. parted, shairport-sync, util-linux, xapp_bdftopcf,
  4806. xserver_xorg-server
  4807. 2014.11-rc3, Released November 28th, 2014
  4808. Fixes all over the tree.
  4809. System: File permissions of /etc/random-seed made more
  4810. restrictive.
  4811. Toolchain: Various fixes related to locale handling, a fix for
  4812. building the toolchain wrapper on MIPS.
  4813. Updated/fixed packages: bind, binutils. botan, btrfsprogs,
  4814. clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
  4815. gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
  4816. libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
  4817. linux-headers, mpdecimal, mpg123, network-manager, nfstables,
  4818. nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
  4819. sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
  4820. xl2tp, xserver_xorg-server
  4821. Issues resolved (http://bugs.uclibc.org):
  4822. #7670: Fails to build mpc-1.0.2 on latest Cygwin
  4823. 2014.11-rc2, Released November 21st, 2014
  4824. Fixes all over the tree.
  4825. Inittab tweaks for shutdown handling (busybox and sysvinit).
  4826. Updated/fixed packages: aircrack-ng, botan, canfestival,
  4827. clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
  4828. erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
  4829. libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
  4830. mysql, ndisc6, nodejs, omniorb, perl-cross, php,
  4831. python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
  4832. rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
  4833. tstools, tzdata, wireshark, x264
  4834. Issues resolved (http://bugs.uclibc.org):
  4835. #7646: strftime on datetime not works on python3
  4836. 2014.11-rc1, Released November 12th, 2014
  4837. Fixes all over the tree and new features.
  4838. Toolchains: Use -mcpu / -march instead of -mtune. Support
  4839. additional ARC and sparc variants. Updated Code sourcery
  4840. and Linaro external toolchains.
  4841. Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
  4842. powerpc64 pseries added and a number of updates to the
  4843. existing configurations.
  4844. Infrastructure: Buildroot is now less noisy when built with
  4845. the silent option (make -s).
  4846. A number of package infrastructure variables have been renamed
  4847. from *_OPT to *_OPTS for constency. Buildroot will complain if
  4848. the old names are used to assist in updating out of tree
  4849. packages.
  4850. Fixes for host systems where bash isn't located in /bin, and
  4851. older systems not supporting mktemp --tmpdir.
  4852. Various cleanups of users/groups in the default skeleton.
  4853. There is now an option to choose what shell /bin/sh points to.
  4854. Documentation: Various updates to the user manual. The
  4855. asciidoc documentation handling has now been extended so it
  4856. can be used by (BR2_EXTERNAL) packages.
  4857. Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
  4858. alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
  4859. argus, arptables, at, atftp, atk, attr, audiofile, aumix,
  4860. automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
  4861. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  4862. bluez_utils, bmon, boost, bootutils, bridge-utils,
  4863. btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
  4864. ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
  4865. cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
  4866. collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
  4867. cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
  4868. czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
  4869. dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
  4870. dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
  4871. dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
  4872. e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
  4873. enlightenment, enscript, erlang, espeak, ethtool, eudev,
  4874. evemu, evtest, exfat, exfat-utils, exim, expat, expect,
  4875. explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
  4876. fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
  4877. flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
  4878. fontconfig, foomatic-filters, freerdp, freescale-imx,
  4879. freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
  4880. genimage, genpart, genromfs, geoip, gettext, giblib, git,
  4881. glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
  4882. gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
  4883. gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
  4884. gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
  4885. gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
  4886. gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
  4887. gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
  4888. heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
  4889. hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
  4890. imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
  4891. intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
  4892. iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
  4893. jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
  4894. jquery-ui-themes, jquery-validation, jsmin, json-c,
  4895. json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
  4896. kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
  4897. lesstif, lftp, libaio, libao, libarchive, libargtable2,
  4898. libass, libassuan, libatasmart, libbluray, libbsd, libcap,
  4899. libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
  4900. libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
  4901. libdvdnav, libecore, libedbus, libedit, libedje, libeet,
  4902. libelementary, libelf, libenca, libethumb, libevas,
  4903. libevas-generic-loaders, libevent, libexif, libeXosip2,
  4904. libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
  4905. libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
  4906. libinput, libiscsi, libjson, libksba, liblockfile,
  4907. liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
  4908. libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
  4909. libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
  4910. libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
  4911. libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
  4912. libraw, libreplaygain, libroxml, librsvg, librtlsdr,
  4913. libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
  4914. libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
  4915. libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
  4916. libungif, liburcu, libusb, libuv, libv4l, libva,
  4917. libva-intel-driver, libvncserver, libvorbis, libvpx,
  4918. libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
  4919. libxslt, lighttpd, linenoise, linknx, links, linphone,
  4920. linux-firmware, linux-fusion, linux-headers, linux-pam,
  4921. linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
  4922. localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
  4923. lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
  4924. lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
  4925. lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
  4926. lua-ev, luajit, luajson, lualogging, lua-messagepack,
  4927. lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
  4928. luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
  4929. lzma, m4, madplay, make, makedevs, Makefile.in,
  4930. matchbox-common, matchbox-desktop, matchbox-fakekey,
  4931. matchbox-keyboard, matchbox-lib, matchbox-panel,
  4932. matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
  4933. media-ctl, mediastreamer, memcached, memstat, memtester,
  4934. mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
  4935. modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
  4936. mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
  4937. musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
  4938. ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
  4939. netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
  4940. ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
  4941. nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
  4942. on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
  4943. openocd, openpowerlink, openssh, openssl, openswan,
  4944. opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
  4945. opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
  4946. pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
  4947. perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
  4948. perl-module-build, perl-mojolicious, perl-net-ssleay,
  4949. perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
  4950. php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
  4951. php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
  4952. pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
  4953. pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
  4954. pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
  4955. popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
  4956. pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
  4957. psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
  4958. python-dialog, python-ipy, python-keyring, python-mad,
  4959. python-netifaces, python-numpy, python-protobuf, python-pyasn,
  4960. python-pyparsing, python-pyro, python-pyusb, python-serial,
  4961. python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
  4962. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  4963. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  4964. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  4965. qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
  4966. qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
  4967. quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
  4968. rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
  4969. rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
  4970. ruby, samba, sam-ba, samba4, sane-backends, schifra,
  4971. sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
  4972. sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
  4973. setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
  4974. slang, slirp, smcroute, smstools3, snmppp,
  4975. snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
  4976. speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
  4977. squid, sredird, startup-notification, strace, stress,
  4978. strongswan, stunnel, subversion, sudo, sunxi-boards,
  4979. sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
  4980. systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
  4981. tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
  4982. tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
  4983. tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
  4984. upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
  4985. usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
  4986. vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
  4987. webrtc-audio-processing, weston, wget, whois, wireless-regdb,
  4988. wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
  4989. xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
  4990. xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
  4991. xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
  4992. xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
  4993. xdriver_xf86-video-vmware, xenomai, xerces,
  4994. xfont_font-adobe-{100,75}dpi,
  4995. xfont_font-adobe-utopia-{100dpi,75dpi,type1},
  4996. xfont_font-alias, xfont_font-arabic-misc,
  4997. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  4998. xfont_font-bh-lucidatypewriter-100dpi,
  4999. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  5000. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  5001. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  5002. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  5003. xfont_font-daewoo-misc, xfont_font-dec-misc,
  5004. xfont_font-ibm-type1, xfont_font-isas-misc,
  5005. xfont_font-jis-misc, xfont_font-micro-misc,
  5006. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  5007. xfont_font-misc-meltho, xfont_font-misc-misc,
  5008. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  5009. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  5010. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  5011. xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
  5012. xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
  5013. xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
  5014. xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
  5015. xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
  5016. xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
  5017. xproto_xcmiscproto, xproto_xextproto, xscreensaver,
  5018. xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
  5019. znc, zsh, zxing
  5020. New packages: adwaita-icon-theme, am335x-pru-package,
  5021. bcache-tools, biosdevname, botan, canfestival, clamav,
  5022. cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
  5023. gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
  5024. libdvbcsa, libgtk3, libphidget, libshout, libunistring,
  5025. libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
  5026. netcat-openbsd, nginx, odhcploc, openvmtools,
  5027. phidgetwebservice, pps-tools, pure-ftpd,
  5028. python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
  5029. qt5location, shairport-sync, spidev_test, targetcli-fb,
  5030. tinyalsa, trinity, x264, yaml-cpp, ympd
  5031. Removed packages: libelf
  5032. Issues resolved (http://bugs.uclibc.org):
  5033. #261: New package: wxWidgets
  5034. #325: New package: ratpoison
  5035. #405: New package: OpenVZ tools
  5036. #1309: New package: rdiff-backup
  5037. #3427: New package: nginx
  5038. #3655: New package: libav
  5039. #3991: New Package: open-vm-tools (Vmware Tools)
  5040. #6878: dmraid: disabled on ARC
  5041. #6950: Full unicode support in ncurses
  5042. #7010: jamvm builds and runs fine under mips (be)
  5043. #7088: elfutils on Blackfin doesn't build
  5044. #7142: ecryptfs needs getent to run
  5045. #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
  5046. #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
  5047. #7352: [2014.08-rc3] diffutils-3.3 failed on building
  5048. #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
  5049. #7364: monit builds a static application, even though BR2_PREFER_...
  5050. #7370: ngrep - requires --with-pcap-includes fully defined to find...
  5051. #7442: rootfs remount does not work as expected with sysvinit
  5052. #7448: Having export MACHINE="something" breaks glibc build on IMX6...
  5053. #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
  5054. #7574: quota-4.01 fails to build statically
  5055. 2014.08, Released September 1st, 2014
  5056. Minor manual fixes/additions.
  5057. Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
  5058. lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
  5059. libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
  5060. perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
  5061. php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
  5062. uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
  5063. xscreensaver, yajl
  5064. Issues resolved (http://bugs.uclibc.org):
  5065. #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
  5066. 2014.08-rc3, Released August 26th, 2014
  5067. Minor fixes.
  5068. User manual update / restructuring.
  5069. Updated/fixed packages: cairo, ecryptfs-utils, gettext,
  5070. gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
  5071. lbreakout2, libevas-generic-loaders, libftdi, libinput,
  5072. libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
  5073. thrift, tvheadend, usb_modeswitch, xmlstarlet,
  5074. Issues resolved (http://bugs.uclibc.org):
  5075. #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
  5076. #7322: libgomp dependency issue with imagemagick
  5077. #7328: Git dl of versions in x/y broken
  5078. 2014.08-rc2, Released August 18th, 2014
  5079. Fixes all over the tree.
  5080. User manual restructured / reworked.
  5081. Toolchain: Fix for C++ exceptions / pthread_exit() on
  5082. uClibc/glibc, C++-11 features with uClibc.
  5083. Updated/fixed packages: bandwidthd, bluez5_utils, empty,
  5084. espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
  5085. infozip, libcuefile, libeml, libnftl, localedef, ltrace,
  5086. matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
  5087. oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
  5088. qt, subversion, synergy, systemd, tar, tftpd, webkit,
  5089. xapp_rstart, xbmc, xbmc-pvr-addons
  5090. Issues resolved (http://bugs.uclibc.org):
  5091. #7124: Use BR toolchain externally results a non-bootable...
  5092. #7208: Glibc C++ aplications crash if they use exceptions
  5093. #7250: Cannot build with -std=c++11
  5094. #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
  5095. #7286: systemd 215 doesn't build
  5096. 2014.08-rc1, Released August 8th, 2014
  5097. Fixes all over the tree and new features.
  5098. Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
  5099. Improved altivec / SPE /atomic instructions
  5100. handling. Additional PowerPC CPU variants added.
  5101. Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
  5102. qemu-system-xtensa, qemu-aarch64-virt added. A number of
  5103. tweaks to existing ones. lpc32xx defconfigs removed.
  5104. Toolchain: Microblaze support for internal musl toolchain.
  5105. Default to GCC 4.8 for internal toolchain, remove deprecated
  5106. 4.3 and 4.6 versions.
  5107. External CodeSourcery / Linaro toolchain updates, option to
  5108. copy gconv libraries for external toolchains.
  5109. Infrastructure: graph-depends: misc fixes, transitive
  5110. dependencies are not drawn by default. Download handling is
  5111. now done using helper scripts. Integrity of downloads can now
  5112. be verified using sha* hashes. Subversion download now uses
  5113. peg revisions for robustness.
  5114. Legal-info: License info of local or overridden packages are
  5115. saved as well. Toolchain packages are also taken into account.
  5116. autotools: Static linking with libtool / v1.5 improvements.
  5117. Gettextize support, similar to autoreconf.
  5118. kconfig package infrastructure added.
  5119. Misc: Version selection for busybox dropped.
  5120. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  5121. alsamixergui, argus, armadillo, at, atftp, atk, avahi,
  5122. avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
  5123. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5124. bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
  5125. busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
  5126. ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
  5127. collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
  5128. cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
  5129. dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
  5130. dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
  5131. distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
  5132. dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
  5133. e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
  5134. enscript, espeak, ethtool, eudev, evemu, exim, expedite,
  5135. explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
  5136. fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
  5137. flex, flot, fltk, fontconfig, freerdp, freescale-imx,
  5138. freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
  5139. giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
  5140. gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
  5141. gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
  5142. gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
  5143. gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
  5144. imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
  5145. ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
  5146. jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
  5147. kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
  5148. lftp, libaio, libarchive, libargtable2, libart, libatasmart,
  5149. libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
  5150. libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
  5151. libeXosip2, libedit, liberation, libesmtp, libev, libevas,
  5152. libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
  5153. libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
  5154. libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
  5155. libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
  5156. libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
  5157. libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
  5158. librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
  5159. libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
  5160. libxml2, libyaml, links, linux-firmware, linux-fusion,
  5161. linux-headers, linux-pam, lite, live555, lm-sensors,
  5162. lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
  5163. ltris, lua-messagepack, luainterpreter, luajit, luaposix,
  5164. luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
  5165. mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
  5166. modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
  5167. mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
  5168. netatalk, netplug, network-manager, nftables, ngircd, nodejs,
  5169. nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
  5170. openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
  5171. opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
  5172. pax-utils, pcmanfm, perf, perl, perl-module-build, php,
  5173. pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
  5174. prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
  5175. python,
  5176. python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
  5177. python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
  5178. qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
  5179. qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
  5180. read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
  5181. rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
  5182. samba, samba4, sane-backends, sawman, sconeserver, setserial,
  5183. sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
  5184. socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
  5185. startup-notification, statserial, strongswan, stunnel,
  5186. sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
  5187. systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
  5188. ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
  5189. tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
  5190. udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
  5191. vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
  5192. wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
  5193. xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
  5194. xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
  5195. xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
  5196. x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
  5197. xz
  5198. New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
  5199. google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
  5200. libinput, libksba, libmemcached, libmpdclient, librtlsdr,
  5201. libuv, libva, libva-intel-driver, linux-zigbee, memcached,
  5202. mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
  5203. perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
  5204. perl-json-tiny, perl-mojolicious, perl-net-ssleay,
  5205. perl-path-tiny, perl-try-tiny, perl-xml-libxml,
  5206. perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
  5207. php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
  5208. procps-ng, pwgen, python-cffi, python-daemon, python-flup,
  5209. python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
  5210. qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
  5211. twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
  5212. Removed packages: procps
  5213. Issues resolved (http://bugs.uclibc.org):
  5214. #5750: Doing a Buildroot build from /usr doesn't work
  5215. #5900: config flags to the Xenomai build system
  5216. #6230: Cannot compile gcc without threads (uClibc-based)
  5217. #6626: procps Unknown HZ value! (XX) Assume 100
  5218. #7118: Package "thrift" requires atomic operations
  5219. #7154: Local uClibc config file gets overwritten using ...
  5220. #7160: host-xz not built
  5221. #7166: hostapd: segfault when using RT5370
  5222. #7172: Name collision of rpath token expansion and internal..
  5223. #7178: NTPd package cannot sync time without a proper ntp.conf
  5224. #7184: supervisord depends on libxml2 implicitly
  5225. #7196: Unable to build on UBUNTU13.10
  5226. #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
  5227. 2014.05, Released May 31st, 2014
  5228. Minor fixes.
  5229. Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
  5230. for the spl file.
  5231. Updated/fixed packages: exim, glibc, gnutls, libfribidi,
  5232. qt5base, qt5webkit, sysklogd, thrift, u-boot
  5233. 2014.05-rc3, Released May 28th, 2014
  5234. Minor fixes.
  5235. Updated/fixed packages: acl, attr, connman, dosfstools,
  5236. dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
  5237. lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
  5238. mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
  5239. samba4, slang, xbmc
  5240. Issues resolved (http://bugs.uclibc.org):
  5241. #7100: license info for package 'acl' missing
  5242. #7106: license info for package 'attr' missing
  5243. #7112: license info for package 'hwdata'
  5244. 2014.05-rc2, Released May 21st, 2014
  5245. Fixes all over the tree.
  5246. Stripping using sstrip has been deprecated.
  5247. BR2_EXTERNAL can now also be used to implement custom
  5248. filesystem types.
  5249. The newly added BR2_GRAPH_DEPTH variable to limit the depth of
  5250. the generated dependency graph has been renamed to
  5251. BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
  5252. the future.
  5253. The virtual package infrastructure will now error out early
  5254. if multiple packages providing the same virtual package has
  5255. been enabled (E.G. opengl). This change requires that the
  5256. packages explicitly declare what virtual package(s) they
  5257. provide.
  5258. Updated/fixed packages: acpid, armadillo, avahi, bellagio,
  5259. btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
  5260. elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
  5261. gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
  5262. imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
  5263. libdvdread, libnss, libunwind, linux-headers, lsof, lua,
  5264. luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
  5265. netsnmp, nodejs, openpowerlink, openvpn, pciutils,
  5266. php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
  5267. rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
  5268. ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
  5269. xlib_libXpm, xserver_xorg-server, zyre
  5270. Issues resolved (http://bugs.uclibc.org):
  5271. #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
  5272. #7016: Git issues in resulting buildroot tar
  5273. #7094: pciutils doesn't build on Blackfin
  5274. 2014.05-rc1, Released May 13th, 2014
  5275. Fixes all over the tree and new features.
  5276. Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
  5277. been removed. Building o32 ELF files for MIPS64 is an exotic
  5278. configuration that nobody should be using. If o32 is required,
  5279. then is better if it's built for MIPS 32-bit cores so only
  5280. 32-bit instructions will be used leading to a more efficient
  5281. o32 usage.
  5282. Support for the ARM A12 variant and Intel corei7.
  5283. Configs: Minnowboard and Altera SoCkit added, QEMU updates.
  5284. Bootloaders: Grub2 and gummiboot support, syslinux support
  5285. extended.
  5286. Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
  5287. library for internal and external toolchains. 4.8-R3 support
  5288. for ARC, Internal toolchain support for Aarch64 and
  5289. Microblaze. Environment variable to control debug output of
  5290. toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
  5291. other variables. Toolchain tuple vendor name can now be
  5292. customized. Updated external Linaro ARM/Aarch64
  5293. toolchains. Added external Linaro ARMEB toolchain.
  5294. A GDB gdbinit file is now generated for external toolchains to
  5295. automatically set the correct sysroot.
  5296. Kconfig handling for minimum kernel headers version required
  5297. for packages. Now packages needing specific kernel header
  5298. features can specify these requirements in Kconfig.
  5299. Infrastructure: Support for (but disabled as it leads to
  5300. unreproducible builds) toplevel parallel builds. See the
  5301. comment at the top of Makefile for details about how to enable
  5302. it and what the problems are if you want to test it.
  5303. Python package infrastructure extended to support Python 3.x
  5304. Perl and virtual package infrastructure support added.
  5305. PRE_*_HOOKS support for all build steps.
  5306. Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
  5307. barebox, bash, beecrypt, bellagio, binutils, boost,
  5308. boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
  5309. ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
  5310. collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
  5311. cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
  5312. dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
  5313. dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
  5314. evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
  5315. flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
  5316. gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
  5317. gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
  5318. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5319. gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
  5320. gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
  5321. hostapd, htop, httping, ifplugd, iftop, igmpproxy,
  5322. imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
  5323. ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
  5324. jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
  5325. json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
  5326. lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
  5327. libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
  5328. libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
  5329. libevas, libevdev, libfribidi, libfslcodec, libfslparser,
  5330. libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
  5331. libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
  5332. libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
  5333. libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
  5334. libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
  5335. libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
  5336. lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
  5337. lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
  5338. lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
  5339. luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
  5340. luainterpreter, luajit, lua-msgpack-native, luaposix,
  5341. luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
  5342. memstat, mesa3d, metacity, minidlna, mmc-utils,
  5343. mobile-broadband-provider-info, modem-manager, mongrel2,
  5344. monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
  5345. ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
  5346. newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
  5347. olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
  5348. openswan, openvpn, orbit, orc, p11-kit, pango, parted,
  5349. pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
  5350. picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
  5351. pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
  5352. pulseaudio, python, python3, python-bottle, python-m2crypto,
  5353. python-netifaces, python-pyasn, python-pycrypto,
  5354. python-pygame, python-pysnmp, python-pysnmp-apps,
  5355. python-pysnmp-mibs, python-serial, python-setuptools,
  5356. qextserialport, qt, qt5, qt5base, qt5connectivity,
  5357. qt5declarative, qt5graphicaleffects, qt5imageformats,
  5358. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5359. qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
  5360. qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
  5361. rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
  5362. rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
  5363. sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
  5364. socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
  5365. stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
  5366. syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
  5367. tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
  5368. uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
  5369. usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
  5370. webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
  5371. w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
  5372. xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
  5373. xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
  5374. xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
  5375. xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
  5376. xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
  5377. xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
  5378. xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
  5379. xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
  5380. xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
  5381. xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
  5382. xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
  5383. xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
  5384. xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
  5385. xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
  5386. xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
  5387. xdriver_xf86-video-ark, xdriver_xf86-video-ast,
  5388. xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
  5389. xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
  5390. xdriver_xf86-video-geode, xdriver_xf86-video-glide,
  5391. xdriver_xf86-video-glint, xdriver_xf86-video-i128,
  5392. xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
  5393. xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
  5394. xdriver_xf86-video-newport, xdriver_xf86-video-nv,
  5395. xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
  5396. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  5397. xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
  5398. xdriver_xf86-video-tga, xdriver_xf86-video-trident,
  5399. xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
  5400. xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
  5401. xlib_xtrans, xproto_xproto, xserver_xorg-server,
  5402. xutil_util-macros, zeromq, zic, zmqpp, zyre
  5403. New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
  5404. dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
  5405. fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
  5406. iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
  5407. libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
  5408. libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
  5409. lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
  5410. lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
  5411. musl, nftables, opentyrian, opentyrian-data,
  5412. perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
  5413. php-zmq, postgresql, python-libconfig, python-pypcap,
  5414. python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
  5415. upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
  5416. yaffs2utils, zlog, znc
  5417. Removed packages: crosstool-ng, python-distutilscross, vala
  5418. Issues resolved (http://bugs.uclibc.org):
  5419. #6842: Checking external toolchain for eabihf
  5420. #6956: Packaging libsoxr
  5421. #6986: Make legal-info fails on uboot versions before 2014.01
  5422. #6992: Incorrect installation rights on external kernel module..
  5423. 2014.02, Released February 27th, 2014
  5424. Minor fixes.
  5425. Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
  5426. gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
  5427. libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
  5428. pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
  5429. Issues resolved (http://bugs.uclibc.org):
  5430. #6938: mkuser script generates wrong password for new user in..
  5431. 2014.02-rc3, Released February 25th, 2014
  5432. Minor fixes.
  5433. Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
  5434. cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
  5435. gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
  5436. libsecret, libsepol, libsigsegv, libtool, libv4l,
  5437. linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
  5438. pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
  5439. tvheadend, util-linux, webkit, xscreensaver
  5440. Issues resolved (http://bugs.uclibc.org):
  5441. #4706: Removing .stamp_target_installed does not trigger...
  5442. #5030: busybox built fails if we use an override src dir...
  5443. #5420: Dbus and /var/run management
  5444. #5768: Not able to build ALSA-Lib for static build
  5445. #5774: Not able to build ALSA-Utils for static build
  5446. #6542: external python modules fail to compile to pyc if...
  5447. #6764: Support for kernel signed modules
  5448. #6794: Busybox compiled from buildroot hangs on pass from...
  5449. 2014.02-rc2, Released February 20th, 2014
  5450. Fixes all over the tree. Static linking / nommu fixes and
  5451. annotations for several packages.
  5452. Updated/fixed packages: boost, busybox, collectd, coreutils,
  5453. dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
  5454. jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
  5455. opencv, python, python3, qtuio, systemd, thrift, transmission,
  5456. uclibc, vlc, webkit
  5457. Issues resolved (http://bugs.uclibc.org):
  5458. #5450: AT91SAM9260 Bootstrap compilation problem
  5459. #5582: libiconv 1.14 failed to build
  5460. #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
  5461. #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
  5462. #6218: binutils-2.23.2/gas fails with undefined reference to..
  5463. #6236: binutils-2.23.2/bfd fails with undefined reference to..
  5464. #6470: If the build directory is a child of /usr, the build..
  5465. #6776: systemd error: static declaration of 'execvpe' follows..
  5466. #6818: toolchainfile.cmake has absolut path references
  5467. 2014.02-rc1, Released February 11th, 2014
  5468. Fixes all over the tree and new features.
  5469. Support for external packages/defconfigs (BR2_EXTERNAL). See
  5470. user manual for details.
  5471. Cleanup of environment variable names for consistency. The
  5472. download directory location override (BUILDROOT_DL_DIR) is now
  5473. called BR2_DL_DIR. Likewise the name of the current .config is
  5474. renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
  5475. your post build scripts if you use this! BUILD_DIR is now also
  5476. exported to the post build/image scripts.
  5477. Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
  5478. uClibc pread/pwrite backport as they cause issues on certain
  5479. architectures, new Linaro and Sourcery Codebench toolchains.
  5480. x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
  5481. variants removed, Microblaze: Internal toolchain support
  5482. Legal infrastructure: Info is now split between host and
  5483. target packages, large number of license annotations.
  5484. Lua: selection between lua 5.1 / 5.2, luarocks support
  5485. Python: package infrastructure, many new packages.
  5486. Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
  5487. beaglebone, microblaze, pandaboard, qemu, raspberry pi
  5488. updated.
  5489. Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
  5490. am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
  5491. berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
  5492. bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
  5493. cifs-utils, civetweb, cmake, collectd, connman, copas,
  5494. coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
  5495. cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
  5496. dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
  5497. dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
  5498. f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
  5499. fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
  5500. gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
  5501. gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
  5502. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5503. gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
  5504. imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
  5505. jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
  5506. lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
  5507. libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
  5508. libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
  5509. libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
  5510. libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
  5511. libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
  5512. libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
  5513. libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
  5514. libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
  5515. lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
  5516. lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
  5517. luafilesystem, luajit, luaposix, luasec, luasocket,
  5518. luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
  5519. mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
  5520. neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
  5521. numactl, ofone, ola, olsr, omniorb, open2300, opencv,
  5522. openpowerlink, openssh, openssl, openvpn, oprofile, opus,
  5523. opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
  5524. php, poco, poppler, powervr, protobuf-c, psplash, python,
  5525. python-bottle,
  5526. python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
  5527. python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
  5528. python-{serial,setuptools}, qt, qt5base, qt5connectivity,
  5529. qt5declarative, qt5graphicaleffects, qt5jsbackend,
  5530. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5531. qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
  5532. rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
  5533. sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
  5534. socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
  5535. sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
  5536. sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
  5537. ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
  5538. transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
  5539. uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
  5540. util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
  5541. weston, wget, wireless-regdb, wireshark, wpa_supplicant,
  5542. wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
  5543. xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
  5544. xlib_lib{FS,SM,X11},
  5545. xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
  5546. xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
  5547. xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
  5548. xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
  5549. xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
  5550. xproto_xextproto, xproto_xproto, xutil_util-macros,
  5551. xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
  5552. New packages: apitrace, avrdude, c-ares, ca-certificates,
  5553. cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
  5554. haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
  5555. lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
  5556. libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
  5557. libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
  5558. luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
  5559. python-configobj, python-dialog, python-json-schema-validator,
  5560. python-keyring, python-msgpack, python-posix-ipc,
  5561. python-pyasn, python-pycrypto, python-pysnmp,
  5562. python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
  5563. python-simplejson, python-tornado, python-versiontools,
  5564. rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
  5565. ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
  5566. Removed packages: autoconf, automake, ccache, cpanminus, lzma,
  5567. netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
  5568. Issues resolved (http://bugs.uclibc.org):
  5569. #65: new package: dbus c++ language bindings
  5570. #769: Update configuration menu for MIPS target
  5571. #2419: Add a bundle of Lua modules
  5572. #2629: Segmentation faults and division by zero in Grub on ext2
  5573. #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
  5574. #4339: Allow override of DL_DIR in extract step
  5575. #4363: Make sure that copied linux and busybox defconfig are...
  5576. #4454: There should be simple way to update image, when chang...
  5577. #5024: grub fails to build for x86_64 target architecture
  5578. #5066: New-Package: net-tools
  5579. #5072: ncurses: add ncurses-progs to target
  5580. #5294: uclibc build ignores target CFLAGS and LDFLAGS
  5581. #5366: Login doesn't work with util-linux versions of login/agetty
  5582. #5378: dropbear Makefile broken
  5583. #5390: System banner - change to empty doesn't remove /etc/issue
  5584. #5780: spurious build failure because it cannot remove ubinize.cfg
  5585. #5798: ncurses-5.9 fails to compile statically
  5586. #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
  5587. #6080: Git fetch caching
  5588. #6092: Bootable ISO image creation seems to have stopped working..
  5589. #6272: coreutils build fails
  5590. #6434: apply-patches.sh does not work recursively
  5591. #6446: eglibc doesn't install ldconfig to target
  5592. #6484: Add c-ares
  5593. #6596: Slow bootup if mdev is chosen
  5594. #6656: Build Qt5 with ccache
  5595. #6662: internal compiler error: Segmentation fault during making..
  5596. #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
  5597. #6752: genext2fs: e2fsck must run before tunefs -U random
  5598. #6770: openssl 1.0.1f fails with ccache
  5599. #6830: Qt5: no fonts are installed
  5600. #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
  5601. #6854: Update to Qt 5.2.1
  5602. 2013.11, Released November 30th, 2013:
  5603. Minor fixes.
  5604. Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
  5605. ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
  5606. iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
  5607. lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
  5608. tvheadend, util-linux, wpa_supplicant
  5609. Issues resolved (http://bugs.uclibc.org):
  5610. #1279: Buildroot compiled Busybox and Coreutils LFS issues
  5611. #2995: -fstack-protector-all causes ssh to SIGSEGV
  5612. #5570: Cannot compile software on the target machine
  5613. #6428: util-linux libmount segfaults with patch from buildroot
  5614. #6500: php fails to build for armel
  5615. #6554: gdb needs to dependents on host texinfo
  5616. #6692: GNU nano fails to compile for x86_64
  5617. #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
  5618. 2013.11-rc3, Released November 26th, 2013
  5619. Fixes all over the tree.
  5620. Architecture: Mark MIPS I, II, III and IV as deprecated.
  5621. Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
  5622. libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
  5623. mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
  5624. protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
  5625. swig, ti-gfx, tinymembench, uclibc, udisks, vim
  5626. 2013.11-rc2, Released November 18th, 2013
  5627. Fixes all over the tree.
  5628. Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
  5629. Adjust kernel versions.
  5630. Toolchain: avr32: fix for modern kernel headers
  5631. Bootloader: Barebox updated to 2013.10.1
  5632. Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
  5633. libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
  5634. wayland, wvstreams
  5635. Issues resolved (http://bugs.uclibc.org):
  5636. #3601: DHCPD S80dhcp-server startup script issues
  5637. #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
  5638. #6416: Xenomai package, patch alternative
  5639. #6590: directfb-examples build failed whit linaro toolchain
  5640. 2013.11-rc1, Released November 12th, 2013
  5641. Architectures: Nios-II support, MIPS arch handling fixes
  5642. Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
  5643. sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
  5644. Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
  5645. for avr32, crosstool-ng backend removed, external musl
  5646. toolchain support, gcc 4.8.2, updated Linaro external
  5647. toolchains. Fortran and objective-C support deprecated,
  5648. mudflap support
  5649. Bootloaders: U-Boot: u-boot.imx support, version bumps
  5650. Linux: use kmod instead of module-init-tools
  5651. System: default to devtmpfs for /dev
  5652. Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
  5653. download support, post-rsync hooks
  5654. Fs: u-boot image support for cpio
  5655. Updated/fixed packages: aircrack-ng, alsamixergui, apr,
  5656. apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
  5657. bison, boost, busybox, can-utils, ccache, ccid, cgilua,
  5658. chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
  5659. copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
  5660. directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
  5661. dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
  5662. ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
  5663. fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
  5664. glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
  5665. gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
  5666. gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
  5667. imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
  5668. jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
  5669. libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
  5670. libedit, libevas, libevent, libfreefare, libfuse,
  5671. libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
  5672. libmnl, libmodbus,
  5673. libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
  5674. libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
  5675. libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
  5676. libvpx, lighttpd, linphone, linux-pam, lmbench,
  5677. lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
  5678. ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
  5679. media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
  5680. mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
  5681. nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
  5682. netcat, netkitbase, netperf, netplug, nettle, nfacct,
  5683. nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
  5684. oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
  5685. perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
  5686. poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
  5687. pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
  5688. rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
  5689. samba, scons, screen, sdl_sound, ser2net, setserial,
  5690. smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
  5691. stress, strongswan, stunnel, sudo, syslinux, systemd,
  5692. sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
  5693. tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
  5694. uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
  5695. valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
  5696. webkit, webp, webrtc-audio-processing, weston, wget,
  5697. wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
  5698. xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
  5699. xserver_xorg-server, xz, zeromq, zic, zmqpp
  5700. New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
  5701. duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
  5702. lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
  5703. lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
  5704. python-crc16, python-ipy, python-pyzmq, qt5sensors,
  5705. qt5serialport, qt5x11extras, snmppp, subversion, tcping,
  5706. trace-cmd, xscreensaver, zsh
  5707. Removed packages: module-init-tools
  5708. Issues resolved (http://bugs.uclibc.org):
  5709. #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
  5710. #5408: qt build failure with Sourcery CodeBench ARM 2010.09
  5711. #5630: makefile error with toolchain helpers.mk
  5712. #5672: htop: remove X11 stuff
  5713. #5678: linux.mk: linux-menuconfig fails
  5714. #5696: python3 installation is too large, patches from python2 needed
  5715. #5978: Erlang does not build for arm in 2013.02-rc3
  5716. #6392: Extended ARM uImage kernel options
  5717. #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
  5718. #6428: util-linux libmount segfaults with patch from buildroot
  5719. #6452: eglibc from Linaro 2013.07 not copied to target correctly
  5720. #6566: PHP segfault when crosscompiled to mips64 - patch included
  5721. #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
  5722. #6578: udisks package broken
  5723. #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
  5724. #6608: ebtables missing ethertypes - fix included
  5725. #6620: Sysvinit package missing killall5 and symlinks - patch included
  5726. #6632: CMake use host pkg-config
  5727. #6638: pkgconf doesn't download
  5728. #6644: "all" target doesn't work in out-of-tree builds
  5729. #6650: Segmentation fault when trying to build latest buildroot
  5730. #6668: iptables limit module alignment problem on mips64
  5731. 2013.08, Released August 31th, 2013:
  5732. Minor fixes.
  5733. Documentation build fixed.
  5734. Updated/fixed packages: ltrace, strongswan
  5735. 2013.08-rc3, Released August 29th, 2013:
  5736. Fixes all over the tree.
  5737. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  5738. misc fixes for generatelocales, apply-patches and module
  5739. stripping.
  5740. Top level menu names reordered and renamed for clarity.
  5741. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  5742. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  5743. openssh, openssl, pulseaudio, python-setuptools, qt5,
  5744. qt5webkit, redis, strongswan, sunxi-mali
  5745. Issues resolved (http://bugs.uclibc.org):
  5746. #6464: dbus-daemon-launch-helper needs setuid
  5747. 2013.08-rc2, Released August 16th 2013:
  5748. Documentation improvements.
  5749. External toolchains fixes.
  5750. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  5751. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  5752. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  5753. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  5754. uclibc, udev, wayland, webkit, zeromq.
  5755. Issues resolved (http://bugs.uclibc.org):
  5756. #6440: typo in ffmpeg makefile
  5757. 2013.08-rc1, Released August 5th, 2013:
  5758. Architectures:
  5759. - improved support for floating point on ARM and Thumb/Thumb2
  5760. - support for ARM OABI removed
  5761. Toolchains:
  5762. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  5763. - Linaro ARM and Aarch64 toolchains updated
  5764. - support added for the Arago ARMv5 and ARMv7 toolchains
  5765. - gcc 4.8.x version bumped
  5766. - support for installing both FDPIC and FLAT libraries on
  5767. Blackfin
  5768. - support for uClibc 0.9.31 removed,
  5769. - convert the internal toolchain backend to use the package
  5770. infrastructure
  5771. - support added for eglibc in the internal toolchain backend
  5772. - toolchain components for the ARC architecture updated and
  5773. gdb for ARC added.
  5774. - support for Blackfin in the internal toolchain fixed
  5775. Defconfigs: beaglebone_defconfig updated, new defconfig for
  5776. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  5777. TNY-A9G20-LPW.
  5778. A number of packages have been fixed to use the
  5779. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  5780. script installed and modified properly. Licensing informations
  5781. has been added to a number of packages.
  5782. Use XZ tarballs for a number of packages.
  5783. Noticeable package changes/additions:
  5784. - The glib2/libgtk2/webkit stack has been updated to recent
  5785. versions.
  5786. - Support for Gstreamer 1.x has been added.
  5787. - OpenGL support for TI OMAP platforms has been added.
  5788. - OpenGL support for Allwinner platforms has been added.
  5789. - OpenMAX support for RasberryPi has been added.
  5790. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  5791. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  5792. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  5793. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  5794. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  5795. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  5796. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  5797. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  5798. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  5799. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  5800. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  5801. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  5802. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  5803. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  5804. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  5805. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  5806. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  5807. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  5808. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  5809. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  5810. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  5811. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  5812. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  5813. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  5814. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  5815. zlib.
  5816. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  5817. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  5818. gcc-final, gcc-initial, gcc-intermediate, git,
  5819. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  5820. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  5821. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  5822. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  5823. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  5824. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  5825. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  5826. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  5827. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  5828. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  5829. tree, tstools, uclibc, w_scan.
  5830. Issues resolved (http://bugs.uclibc.org):
  5831. #4718: python (built for powerpc) distutils has paths to host
  5832. compiler toolchain
  5833. #5516: appended device tree blobs on uImage fails
  5834. #6302: Versions of packages retrieved from github.com are wrong
  5835. #6308: dosfstools download link is wrong
  5836. #6326: Dropbear: Add options to allow better config for
  5837. different target devices (e.g. routers)
  5838. #6338: Wrong download link for minicom package
  5839. #6344: Wrong handling of license text files with same name and
  5840. different directory
  5841. #6374: gnutls package broken if linux cryptodev module
  5842. selected
  5843. #6410: omap3_beagle has uimage error load address error
  5844. 2013.05, Released May 31th, 2013:
  5845. Minor fixes.
  5846. External toolchain wrapper fix for if host/usr/bin is placed
  5847. in the patch.
  5848. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  5849. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  5850. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  5851. Issues resolved (http://bugs.uclibc.org):
  5852. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  5853. #4988: flex and m4 problems
  5854. #5912: obsolete CVS files
  5855. 2013.05-rc3, Released May 25th, 2013:
  5856. Minor fixes.
  5857. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  5858. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  5859. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  5860. wireshark
  5861. 2013.05-rc2, Released May 15th, 2013:
  5862. Fixes all over the tree.
  5863. Default number of parallel jobs is now number of CPUs + 1.
  5864. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  5865. Updated/fixed packages: aircrack-ng, busybox, cairo,
  5866. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  5867. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  5868. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  5869. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  5870. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  5871. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  5872. sconeserver, strace, sylpheed, wvstreams,
  5873. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  5874. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  5875. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  5876. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  5877. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  5878. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  5879. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  5880. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  5881. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  5882. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  5883. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  5884. xdata_xcursor-themes,
  5885. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  5886. xdriver_xf86-input-{tslib,vmmouse,void},
  5887. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  5888. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  5889. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  5890. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  5891. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  5892. xfont_font-utopia-{100dpi,75dpi,type1},
  5893. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  5894. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  5895. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  5896. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  5897. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  5898. xfont_font-{mutt,schumacher}-misc,
  5899. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  5900. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  5901. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  5902. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  5903. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  5904. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  5905. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  5906. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  5907. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  5908. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  5909. xserver_xorg-server, xutil_{makedepend,util-macros}
  5910. Readded Packages: xapp_xinit
  5911. Issues resolved (http://bugs.uclibc.org):
  5912. #5054: amd64: cannot find init - due to missing /lib64 folder
  5913. 2013.05-rc1, Released May 8th, 2013:
  5914. Architectures: ARC support, Blackfin support, FLAT binary
  5915. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  5916. Toolchains: Add new Microblaze external toolchains, Linaro
  5917. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  5918. internal toolchain, default to GCC 4.7.x. Internal
  5919. Crosstool-ng backend deprecated.
  5920. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  5921. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  5922. pi, gnublin board.
  5923. FS: LZO and XZ compression methods, extra ubifs options,
  5924. ext2 rev 0/1 and ext3/4 support.
  5925. Patch handling: apply-patches now has .patch.xz support,
  5926. Patch logic reworked as discussed during Febrary dev days:
  5927. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  5928. <pkg>-rsync now excludes version control files.
  5929. linux: uImage load address for ARM multiplatform kernels
  5930. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  5931. providers, similar to how libjpeg / libjpeg-turbo is handled.
  5932. Infrastructure for packages to add system users.
  5933. kconfig: updated to 3.9-rc2, support make olddefconfig
  5934. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  5935. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  5936. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  5937. busybox, ccache, cifs-utils, cmake, collectd, connman,
  5938. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  5939. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  5940. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  5941. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  5942. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  5943. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  5944. httping, icu, inotify-tools, intltool, iproute2, ipset,
  5945. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  5946. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  5947. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  5948. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  5949. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  5950. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  5951. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  5952. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  5953. mediastreamer, memtester, mesa3d,
  5954. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  5955. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  5956. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  5957. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  5958. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  5959. polarssl, proftpd, psmisc, pulseaudio, python,
  5960. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  5961. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  5962. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  5963. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  5964. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  5965. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  5966. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  5967. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  5968. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  5969. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  5970. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  5971. xdriver_xf86-input-{tslib,vmmouse,void},
  5972. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  5973. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  5974. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  5975. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  5976. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  5977. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  5978. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  5979. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  5980. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  5981. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  5982. xserver_xorg-server, xutil_makedepend, xz, zeromq
  5983. New packages: aircrack-ng, bcusdk, chrony, crda,
  5984. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  5985. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  5986. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  5987. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  5988. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  5989. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  5990. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  5991. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  5992. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  5993. qt5declarative, qt5graphicaleffects, qt5imageformats,
  5994. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  5995. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  5996. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  5997. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  5998. xcursor-transparent-theme, zic, zmqpp, zyre
  5999. Removed packages: microperl, ocf-linux, xapp_xinit,
  6000. xapp_xplsprinters, xapp_xprehashprinterlist,
  6001. xfont_font-bitstream-speedo,
  6002. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  6003. xproto_{print,xf86rush}proto
  6004. Deprecated packages: vala
  6005. Issues resolved (http://bugs.uclibc.org):
  6006. #1291: Add support for Faraday 526 arm processor (fa526)
  6007. #2683: cups does not install correctly to target
  6008. #3313: mesa3d fails to build
  6009. #5186: initramfs/cpio should support lzo compression
  6010. #5636: agetty - cannot get controlling tty error - need updated...
  6011. #5906: collectd client headers not exported
  6012. #5966: bison unnecessarily required as build dependency
  6013. #6140: --enable-fileinfo not applied for php package
  6014. #6164: openvpn usage of ip tool from Busybox
  6015. 2013.02, Released February 28th, 2013:
  6016. Misc manual updates.
  6017. Updated/fixed packages: busybox, collectd, flashbench,
  6018. libgtk2, libupnp, mii-diag, quota
  6019. 2013.02-rc3, Released February 26th, 2013
  6020. Minor fixes.
  6021. Updated/fixed packages: conntrack-tools, dialog,
  6022. enlightenment, haserl, keyutils, libfif, libmad,
  6023. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  6024. ruby, spawn-fcgi, vtun
  6025. Issues resolved (http://bugs.uclibc.org):
  6026. #5960: fusion.ko driver does not install to target rootfs
  6027. 2013.02-rc2, Released February 19th, 2013
  6028. Fixes all over the tree.
  6029. Various manual updates and fixes.
  6030. Updated/fixed packages: busybox, collectd, gesftpserver,
  6031. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  6032. libglib2, libtorrent, libvorbis, neard, network-manager,
  6033. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  6034. Issues resolved (http://bugs.uclibc.org):
  6035. #5906: collectd client headers not exported
  6036. 2013.02-rc1, Released February 10th, 2013
  6037. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  6038. libraries install fixed. Add Linaro ARM
  6039. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  6040. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  6041. missing 32bit support for binary toolchains. Toolchain wrapper
  6042. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  6043. 7.1. Deprecate uClibc 0.9.31.
  6044. Architecture: Xtensa fixes, add missing powerpc variants, arm
  6045. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  6046. deprecated. Sparc: drop old unused variants
  6047. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  6048. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  6049. environment image support, U-Boot: add 2013.01.01
  6050. Linux: fix appended dtb handling for v3.8+ kernels, support
  6051. multiple device trees
  6052. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  6053. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  6054. updated, at91rm9200df: misc fixes. Lock kernel headers to
  6055. match kernel.
  6056. Infrastructure: Git download fixes. Toolchain make target
  6057. renamed from 'cross' to 'toolchain'. Eclipse integration
  6058. support. Option to set root password, post image scripts,
  6059. config scripts handling.
  6060. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  6061. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  6062. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  6063. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  6064. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  6065. diffutils, directfb, distcc, divine, dnsmasq, docker,
  6066. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  6067. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  6068. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  6069. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  6070. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  6071. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  6072. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  6073. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  6074. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  6075. libedbus, libedje, libeet, libefreet, libeina, libeio,
  6076. liberation, libelementary, libembryo, libethumb, libev,
  6077. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  6078. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  6079. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  6080. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  6081. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  6082. libxml2, libxslt, lighttpd, links, linux-firmware,
  6083. linux-fusion, ltp-testsuite, ltrace,
  6084. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  6085. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  6086. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  6087. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  6088. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  6089. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  6090. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  6091. python, python3, qemu, qextserialport, qt, quagga, radvd,
  6092. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  6093. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  6094. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  6095. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  6096. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  6097. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  6098. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  6099. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  6100. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  6101. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  6102. xserver_xorg-server, xstroke, xvkbd, xz
  6103. New packages: b43-firmware, b43-fwcutter, bustle,
  6104. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  6105. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  6106. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  6107. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  6108. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  6109. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  6110. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  6111. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  6112. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  6113. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  6114. spice-protocol, tcllib, tvheadend, udisks, usbredir
  6115. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  6116. zd1211-firmware
  6117. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  6118. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  6119. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  6120. xdriver_xf86-video-{tsend,xgi,xgixp}
  6121. Deprecated packages: xstroke
  6122. Issues resolved (http://bugs.uclibc.org):
  6123. #4237: building shared openssl w/-Os fails due to gcc bug
  6124. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  6125. #5602: python3 should install a "python" symbolic link
  6126. #5846: Extra slash added to last slash in URL
  6127. 2012.11.1, Released January 3rd, 2013:
  6128. Toolchain: Fixed non-largefile builds on recent Ubuntu
  6129. versions.
  6130. Arch: fix missing x86/generic handling, Build for Xtensa with
  6131. longcalls option.
  6132. Updated/fixed packages: dosfstools, qt
  6133. 2012.11, Released December 2nd, 2012:
  6134. Git shallow clone fix for older git version.
  6135. Updated/fixed packages: ctuio, libtool
  6136. Issues resolved (http://bugs.uclibc.org):
  6137. #5726: List all the available hook points
  6138. 2012.11-rc2, Released November 30th, 2012:
  6139. Minor fixes around the tree.
  6140. Various manual updates and fixes.
  6141. Add checks for legacy features.
  6142. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  6143. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  6144. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  6145. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  6146. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  6147. scons, strace, sylpheed
  6148. Issues resolved (http://bugs.uclibc.org):
  6149. #5732: Error : package/alsa-lib/alsa-lib.mk
  6150. 2012.11-rc1, Released November 17th, 2012
  6151. Fixes all over the tree and new features.
  6152. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  6153. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  6154. + nitrogen6x defconfigs.
  6155. Bootloaders: add u-boot 2012.07/10, ais target format, add
  6156. barebox 2012.08/09/10/11, linker overlap issue fix for
  6157. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  6158. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  6159. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  6160. Libtirpc support for modern glibc variants. Toolchain on
  6161. target has been deprecated.
  6162. Initial Aarch64 support, Xtensa support re-added.
  6163. Infrastructure: Use shallow git clone when possible, use
  6164. tarballs rather than git URLs for github. Moved to pkgconf
  6165. rather than pkg-config. System directory added, default
  6166. skeleton/device tables moved. More than 1 post-build script
  6167. can now be used. output/target now contains a
  6168. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  6169. understand how to (not) use it.
  6170. Manual has been reworked and extended.
  6171. Legal-info: Lots of package annotations, CSV file fixes,
  6172. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  6173. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  6174. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  6175. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  6176. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  6177. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  6178. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  6179. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  6180. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  6181. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  6182. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  6183. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  6184. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  6185. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  6186. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  6187. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  6188. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  6189. lmbench, lockfile-progs, logrotate, lshw, lsof,
  6190. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  6191. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  6192. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  6193. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  6194. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  6195. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  6196. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  6197. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  6198. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  6199. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  6200. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  6201. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  6202. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  6203. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  6204. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  6205. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  6206. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  6207. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  6208. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  6209. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  6210. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  6211. yasm
  6212. Deprecated packages: netkitbase, netkittelnet
  6213. Issues resolved (http://bugs.uclibc.org):
  6214. #807: [PATCH] samba - make iconv and smbd optional
  6215. #3049: binutils have a sysroot bug in ld
  6216. #5330: update vsftpd to 3.0.0
  6217. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  6218. #5666: Fails to build python 2.7.2 for 2440 arm
  6219. 2012.08, Release August 31th, 2012
  6220. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  6221. prboom, oprofile.
  6222. Added license information for: sqlite.
  6223. Changed the source URLs of all packages located on Sourceforge
  6224. in order to use the automatic mirror selection URL
  6225. downloads.sourceforge.net, and get rid of the
  6226. BR2_SOURCEFORGE_MIRROR option.
  6227. 2012.08-rc3, Released August 25th, 2012
  6228. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  6229. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  6230. Added license informations for: barebox, grub, syslinux,
  6231. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  6232. faad2, nano, fbdump, rsync, librsync, fontconfig,
  6233. inotify-tools,
  6234. 2012.08-rc2, Released August 15th, 2012
  6235. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  6236. Added license informations for: mxml, nanocom, empty, expat,
  6237. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  6238. input-event-daemon, luajit, cgilua, copas, coxpcall,
  6239. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  6240. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  6241. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  6242. mtd, openssl, psmisc, socat, spawn-fcgi.
  6243. Fixes to Microblaze external toolchains
  6244. configuration. Improvements of the pkg-stats
  6245. script. Out-of-tree fix for the graph-depends script.
  6246. Kernel headers version bump.
  6247. 2012.08-rc1, Released August 1st, 2012
  6248. Fixes all over the tree and new features.
  6249. Integration of a legal information reporting infrastructure,
  6250. which allows to generate detailed informations about the
  6251. licenses and source code of all components of a system
  6252. generated by Buildroot. License information will progressively
  6253. be added on packages.
  6254. Default configuration files added for Calao-systems USB-A9263
  6255. and Calao-systems USB-A9G20-LPW.
  6256. External toolchains update: allow download of a custom
  6257. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  6258. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  6259. 2011.09.
  6260. Allow the restriction of downloads to the primary site only.
  6261. This is useful for project developers who want to ensure that
  6262. the project can be built even if the upstream tarball
  6263. locations disappear.
  6264. Add a 'System configuration' choice to select between 3
  6265. different init systems: Busybox init, SysV init and Systemd
  6266. init.
  6267. Cleanups to the package infrastructure. The visible change to
  6268. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  6269. $(autotools-package)), and similarly for other package
  6270. infrastructures and host packages. Refer to the documentation
  6271. for details.
  6272. By default, automatic detection of the number of compilation
  6273. jobs to use, depending on the number of CPUs available.
  6274. Improvements to generate systems with static libraries only
  6275. (infrastructure and package fixes).
  6276. Add proper support in the Linux kernel package to generate
  6277. Device Tree Blobs or combined Device Tree / Kernel
  6278. images. This will be useful on Microblaze, PowerPC and ARM,
  6279. which are architectures making extensive use of the Device
  6280. Tree.
  6281. Updated/fixed packages: audiofile, autoconf, automake, axel,
  6282. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  6283. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  6284. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  6285. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  6286. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  6287. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  6288. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  6289. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  6290. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  6291. libfuse, libidn, libmad, libmbus, libmnl,
  6292. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  6293. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  6294. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  6295. lttng-tools, lua, m4, memtester, midori, mii-diag,
  6296. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  6297. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  6298. openssl, pciutils, php, polarssl, portaudio, pppd,
  6299. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  6300. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  6301. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  6302. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  6303. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  6304. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  6305. fbterm, flashrom, freerdp, inadyn, libfreefare,
  6306. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  6307. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  6308. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  6309. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  6310. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  6311. ramspeed, rtorrent, sound-theme-borealis,
  6312. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  6313. xinetd, zxing
  6314. Issues resolved (http://bugs.uclibc.org):
  6315. #1315: Allow use of older external toolchains without sysroot
  6316. support [won't fix]
  6317. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  6318. #5360: buildroot fails when building "host-libglib2 2.30.2
  6319. Building" [won't fix, upstream problem]
  6320. #5384: Can't build packages relying on gets on newer glibc
  6321. [fixed]
  6322. 2012.05, Released May 30th, 2012:
  6323. Updated/fixed packages: busybox, netsnmp, pptp-linux
  6324. 2012.05-rc3, Released May 25th, 2012:
  6325. Minor fixes around the tree.
  6326. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  6327. scp targets.
  6328. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  6329. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  6330. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  6331. xserver-xorg
  6332. 2012.05-rc2, Released May 18th, 2012:
  6333. Fixes all over the tree.
  6334. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  6335. dependency, disable decimal floats support, Linux 3.2.17 /
  6336. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  6337. without C++ support.
  6338. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  6339. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  6340. 2012.05-rc1, Released May 10th, 2012:
  6341. Fixes all over the tree and new features.
  6342. Use /etc/os-release for version info rather than
  6343. /etc/br-version.
  6344. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  6345. Apply-patches.sh: cleanups, archived patches handling fixes,
  6346. support series files.
  6347. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  6348. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  6349. atngw100, use 3.3.x for qemu configs.
  6350. Menu structure: Libraries moved out of multimedia section
  6351. Atom processor support. Prescott fix, blackfin ABI fix,
  6352. Microblaze architecture support (using ext toolchain). Cleanup
  6353. architecture names, deprecate Xtensa support.
  6354. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  6355. default to uClibc 0.9.33.x, enable
  6356. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  6357. fixes for external toolchains, linaro ext toolchains, new
  6358. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  6359. 1.15.2.
  6360. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  6361. support. Barebox: add 2012.04, remove 2011.12.
  6362. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  6363. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  6364. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  6365. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  6366. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  6367. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  6368. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  6369. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  6370. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  6371. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  6372. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  6373. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  6374. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  6375. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  6376. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  6377. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  6378. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  6379. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  6380. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  6381. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  6382. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  6383. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  6384. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  6385. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  6386. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  6387. xfsprogs, zlib
  6388. New packages: apr, apr-util, audiofile, bellagio,
  6389. conntrack-tools, empty, fmtools, glib-networking,
  6390. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  6391. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  6392. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  6393. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  6394. socketcand, stress, systemd, ushare, zeromq
  6395. Deprecated packages: ttcp
  6396. Removed packages: ntfsprogs
  6397. Issues resolved (http://bugs.uclibc.org):
  6398. #2353: [lua] fix build with 2010.08-rc1
  6399. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  6400. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  6401. #2881: Can't build project statically with external toolchain
  6402. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  6403. #4808: ccache may build against wrong zlib
  6404. #4880: New package lcdproc
  6405. #4886: New package protobuf
  6406. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  6407. #4898: * make: [target-finalize] Error 1 (ignored)*
  6408. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  6409. #4970: udev 181 fails to build if kernel version 3.3 is selected
  6410. #5018: dialog broken: exits with assert in uClibc
  6411. #5102: qt package moc, uic, rcc read from wrong place
  6412. #5144: Patch to fix ixon bug in uemacs
  6413. #5198: Line graphics output is broken in GNU Screen
  6414. #5204: Missing terminfo file(s) for GNU screen terminal type
  6415. 2012.02, Released February 29th, 2012:
  6416. Updated/fixed packages: libecore
  6417. 2012.02-rc3, Released February 27th, 2012:
  6418. Fixes all over the tree.
  6419. Automatic host dependencies handling for cmake packages
  6420. fixed. Customize package deprecated as using a post-build
  6421. script is nowadays the preferred way of adding extra stuff to
  6422. the rootfs.
  6423. Linux-headers 3.0.x / 3.2.x stable version bumped.
  6424. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  6425. Updated/fixed packages: dropbear, ffmpeg, libpng
  6426. 2012.02-rc2, Released February 19th, 2012:
  6427. Fixes all over the tree.
  6428. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  6429. linux-headers 3.0.x / 3.2.x stable versions.
  6430. Documentation: Added makedev / <pkg>_DEVICES /
  6431. <pkg>_PERMISSIONS documentation.
  6432. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  6433. libvncserver, mxml, python.
  6434. 2012.02-rc1, Released February 12th, 2012:
  6435. Fixes all over the tree and new features.
  6436. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  6437. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  6438. GDB 7.4, crosstool-NG 1.13.4.
  6439. Gentargets: scp and mercurial support.
  6440. Autotools: derive host dependencies from target by default.
  6441. Packages can now declare device table snippets.
  6442. Host utilities menu with commonly used host tools.
  6443. defconfigs: qemu configs for x86-64, mips and sparc, at91
  6444. defconfigs now use modern U-Boot / mainline Linux, added
  6445. lpc3250 defconfigs.
  6446. uClibc: remove 0.9.30, backport unshare() support, add
  6447. 0.9.32.1 / 0.9.33, use same config for ctng.
  6448. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  6449. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  6450. bootloaders added.
  6451. Various manual updates. Release tarballs now contain generated
  6452. manual in text/html/pdf formats.
  6453. Buildroot now calls the stop function of scripts in
  6454. /etc/init.d at shutdown.
  6455. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  6456. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  6457. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  6458. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  6459. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  6460. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  6461. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  6462. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  6463. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  6464. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  6465. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  6466. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  6467. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  6468. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  6469. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  6470. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  6471. python, python-serial, qt, ruby, samba, sdl, sdparm,
  6472. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  6473. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  6474. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  6475. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  6476. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  6477. xf86-video-sis, xfont_{encodings,font-util},
  6478. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  6479. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  6480. New packages: boost, connman, dstat, expedite, explorercanvas,
  6481. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  6482. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  6483. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  6484. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  6485. libvncserver, linux-firmware,
  6486. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  6487. open2300, python-distutilscross, python-dpkt,
  6488. python-netifaces, python-pygame, python-setuptools, rt-tests,
  6489. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  6490. xf86-input-tslib, xinput-calibrator
  6491. Issues resolved (http://bugs.uclibc.org):
  6492. #743: Add Transmission bit torrent option to buildroot
  6493. #755: Add Boost libraries as a package
  6494. #2299: Add crypto support to libsoup
  6495. #2617: Pixman 0.19.2 & Cairo 1.10.0
  6496. #3403: libgpg-error: bump to version 1.10
  6497. #3409: libgpg-error: download from gnupg.org
  6498. #3421: nano: make tiny flag optional
  6499. #3691: New EFL packages
  6500. #4664: Cannot patch AT91Bootstrap
  6501. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  6502. #4760: Qt: add host-pkg-config to dependency-list
  6503. 2011.11, Released November 30th, 2011:
  6504. Fixes all over the tree.
  6505. Bump kernel headers / default Linux version to 3.1.4.
  6506. Updated/fixed packages: ruby
  6507. 2011.11-rc3, Released November 26th, 2011:
  6508. Fixes all over the tree.
  6509. Toolchain: Fix gdb dependencies for external toolchains,
  6510. adjust uClibc patches so they don't confuse modern versions of
  6511. patch, bump crosstool-ng, kernel headers and linux versions.
  6512. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  6513. php, rsyslog, ruby, thttpd, xapp_xf86dga
  6514. Issues resolved (http://bugs.uclibc.org):
  6515. #4357: Prevent patch commands from accessing source control
  6516. #4369: Fix permissions on untared lsof archive
  6517. 2011.11-rc2, Released November 18th, 2011:
  6518. Fixes all over the tree and new features.
  6519. Updated asciidoc documentation
  6520. Toolchain: Bumped 3.x stable kernel headers, use wget in
  6521. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  6522. uClibc sparc fix.
  6523. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  6524. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  6525. Issues resolved (http://bugs.uclibc.org):
  6526. #3355: mplayer fails to build
  6527. #4021: uClibc: undefined reference to `__GI___errno_location'
  6528. #4297: Qt's qmake uses wrong pkg-config
  6529. 2011.11-rc1, Released November 11th, 2011:
  6530. Fixes all over the tree and new features.
  6531. Moved misc scripts and support stuff to support/. Renamed
  6532. patch-kernel.sh to support/scripts/apply-patches.sh.
  6533. Documentation: Moved to asciidoc format, make targets to
  6534. generate text/html/pdf/epub output added.
  6535. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  6536. added.
  6537. Bootloaders: Add support for custom git tree / tarballs for
  6538. barebox, similar to how it's handled for u-boot. Clean up
  6539. menuconfig options.
  6540. Toolchain: Update external codesourcery toolchain download
  6541. URLs after Codesourcery got bought by Mentor, add x86
  6542. toolchain, update toolchain versions and optimize toolchain
  6543. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  6544. updated GDB versions / download URLs. Binutils
  6545. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  6546. use ctng-1.13.0.
  6547. Package infrastructure: Support for local packages /
  6548. overrides, package dir / name arguments dropped from
  6549. {GEN,AUTO,CMAKE}TARGETS.
  6550. Linux: Kernel extensions infrastructure support, Xenomai +
  6551. RTAI support.
  6552. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  6553. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  6554. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  6555. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  6556. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  6557. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  6558. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  6559. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  6560. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  6561. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  6562. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  6563. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  6564. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  6565. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  6566. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  6567. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  6568. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  6569. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  6570. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  6571. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  6572. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  6573. pulseaudio, pv, rtai, vala, xenomai.
  6574. Removed packages: liboil, sfdisk, swfdec, webif
  6575. Issues resolved (http://bugs.uclibc.org):
  6576. #505: live555: new package
  6577. #507: Enable live and tv options in MPlayer-1.0rc2
  6578. #531: let e2fsprogs package to export headers to staging dir if needed
  6579. #1171: Linuxthreads new cannot find sysdep.h
  6580. #1357: Add bluez to buildroot system
  6581. #2107: New package: input-event-daemon
  6582. #2599: New package: orc (Oil Runtime Compiler)
  6583. #2605: gstreamer: Update to 0.10.30
  6584. #2677: introducing util-linux-ng as replacement for util-linux
  6585. #2917: Qt: Add declarative module
  6586. #3145: jffs2 image generation fails
  6587. #3271: netperf-2.4.5 fails to compile
  6588. #3331: xdata_xcursor-themes depends on xcursorgen
  6589. #3343: Add file:// download SITE_METHOD
  6590. #3391: Add support for specifying an external kernel tree
  6591. #3631: Error while compiling with Xorg
  6592. #3709: oprofile doesn't build for mipsel
  6593. #3925: midori not getting compile
  6594. #4045: Add support for downloading i386 toolchains from codesourcery
  6595. #4165: lrzsz-fix-symlink-at-rebuild.patch
  6596. #4171: makedevs-unused-but-set-variable.patch
  6597. #4183: Codesourcery toolchain download site has changed
  6598. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  6599. #4381: Add option to lighttpd to enable Lua support
  6600. #4387: Make sure that dest dir exists before installing mtd files
  6601. 2011.08, Released August 31th, 2011:
  6602. Fixes all over the tree.
  6603. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  6604. kernel headers.
  6605. Updated/fixed packages: ipset, python
  6606. 2011.08-rc2, Released August 29th, 2011:
  6607. Fixes all over the tree.
  6608. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  6609. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  6610. (broken).
  6611. Defconfigs: kernel updates, fix mini2440 serial port config,
  6612. remove old arm toolchain configs.
  6613. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  6614. targets similar to linux/busybox.
  6615. Updated/fixed packages: barebox, directfb, libsoup,
  6616. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  6617. usbmount, util-linux, xfont_font-misc-misc
  6618. Issues resolved (http://bugs.uclibc.org):
  6619. #3685: ncurses installation hangs due to old version of tic
  6620. #4093: Grub fails to install bz2 patch after conversion to...
  6621. 2011.08-rc1, Released August 4th, 2011:
  6622. Fixes all over the tree and new features.
  6623. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  6624. ext-toolchain-wrapper improvements, improved non-MMU
  6625. support. GCC 4.3.6 / 4.6.1.
  6626. GENTARGETS infrastructure extended to cover bootloaders and
  6627. Linux kernel as well. Options to retrive Linux/U-Boot from a
  6628. custom git repo instead of upstream tarballs.
  6629. Support for Linux 3.x and release candidate tarballs.
  6630. X-Loader bootloader for omap added.
  6631. Make source/external-deps now also works for external
  6632. toolchains / crosstool-ng backend.
  6633. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  6634. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  6635. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  6636. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  6637. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  6638. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  6639. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  6640. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  6641. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  6642. webkit, xorg-xserver, xz, zlib
  6643. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  6644. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  6645. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  6646. statserial, stunnel, ti-utils, uboot-tools, yajl
  6647. Deprecated packages: liboil, swfdec
  6648. Removed packages: hal
  6649. Issues resolved (http://bugs.uclibc.org):
  6650. #3559: libnspr: Add new package
  6651. #3595: patch to add libroxml
  6652. #3565: libnss: Add new package
  6653. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  6654. #3649: [PATCH] Add mapdir to existing pkg-config patch
  6655. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  6656. #3961: Nfs-utils: Remove SUSv3-function index
  6657. #3985: "help" target's defconfig list needs sort
  6658. #3997: bump libroxml to v2.1.0
  6659. 2011.05, Released May 27th, 2011:
  6660. Updated/fixed packages: makedevs
  6661. 2011.05-rc2, Released May 24th, 2011:
  6662. Fixes all over the tree.
  6663. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  6664. 2009q3 external toolchains added. Crosstool-NG bumped to
  6665. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  6666. bumped to 2.6.38.7.
  6667. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  6668. 2011.05-rc1, Released May 18th, 2011:
  6669. Fixes all over the tree and new features.
  6670. External toolchain improvements: We now build a binary
  6671. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  6672. enforces the correct compiler arguments, making an external
  6673. toolchain as easy to use outside of Buildroot as the internal
  6674. ones are. This also brought a cleanup of CFLAGS, making the
  6675. Buildroot build output easier to read.
  6676. Rootfs device handling improvements: Choice between static
  6677. /dev, devtmpfs and devtmpfs with either mdev or udev.
  6678. Toolchain: More preconfigured codesourcery external
  6679. toolchains, improved Crosstool-NG support, fix for GCC
  6680. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  6681. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  6682. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  6683. Linux: support for custom kernel image targets, E.G. for
  6684. powerpc builds with embedded device trees.
  6685. Misc fixes for qemu defconfigs, ensuring correct serial
  6686. terminal setup out of the box.
  6687. Misc gentarget / autotools handling fixes.
  6688. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  6689. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  6690. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  6691. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  6692. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  6693. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  6694. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  6695. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  6696. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  6697. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  6698. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  6699. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  6700. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  6701. New packages: bonnie++, can-utils, gdisk, htop,
  6702. input-event-daemon, libexif, libraw, libv4l, ngircd
  6703. Removed packages: festival
  6704. Issues resolved (http://bugs.uclibc.org):
  6705. #2131: Add OpenMP support to the toolchain
  6706. #3379: New Package: bonnie++
  6707. #3445: Not working openssl-10.0.0d on 386sx
  6708. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  6709. #3457: alsamixergui: broken URL
  6710. #3475: Calling sync on large filesystems when not always necessary
  6711. #3511: make busybox-menuconfig does not download busybox package
  6712. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  6713. #3571: u-boot: fw_printenv does not build
  6714. #3643: popt source url is not responding
  6715. #3733: dropbear: make zlib optional
  6716. #3757: Buildroot can't build mplayer with libmad
  6717. 2011.02, Released February 28th, 2011:
  6718. Fixes all over the tree.
  6719. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  6720. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  6721. Deprecated packages: devmem2, webif
  6722. Issues resolved (http://bugs.uclibc.org):
  6723. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  6724. #3259: Unable to build webkit (on arm)
  6725. #3295: slang fails to build on mipsel
  6726. #3325: ffmpeg fails to build
  6727. 2011.02-rc2, Released February 24th, 2011:
  6728. Fixes all over the tree.
  6729. Festival packages marked as broken. Unless someone steps up
  6730. to support them, they will be removed during the 2011.05
  6731. development cycle.
  6732. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  6733. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  6734. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  6735. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  6736. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  6737. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  6738. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  6739. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  6740. tcpreplay, tiff, wpa_supplicant, xcb-util,
  6741. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  6742. xdriver_xf86-input-{mouse,synaptics,void},
  6743. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  6744. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  6745. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  6746. xserver_xorg-server, xz
  6747. Removed packages: ace_of_penguins, vlc
  6748. Issues resolved (http://bugs.uclibc.org):
  6749. #3205: Failing chmod when running "make" in buildroot (openssl)...
  6750. #3277: quagga fails to build with SNMP support
  6751. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  6752. #3307: synergy fails to build due to missing XTest library
  6753. 2011.02-rc1, Released February 14th, 2011:
  6754. Fixes all over the tree and new features.
  6755. External toolchain improvements: clarification of the options,
  6756. and introduction of the toolchain profile concept, for
  6757. well-known toolchains. Buildroot is now capable of
  6758. automatically downloading and extracting well-known toolchains
  6759. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  6760. toolchains are supported). Crosstool-NG backend updated and
  6761. improved.
  6762. Complete rework of how hardware boards are supported.
  6763. Each board now only has a single defconfig file, and all
  6764. board-specific options have been removed. See
  6765. docs/buildroot.html#board_support for details.
  6766. Added support for the following boards: Mini2440, Qemu ARM
  6767. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  6768. r2d and Qemu x86. The Qemu boards support allows to easily
  6769. build systems that are known to work under Qemu.
  6770. Initial support for Blackfin processors.
  6771. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  6772. preparation for support of SDK. For the same reason, the
  6773. toolchain binaries (cross-compiler and other related tools)
  6774. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  6775. now also automatically returns correct values for cross
  6776. compilation, without needing any environment variables to be
  6777. set.
  6778. Ccache support reworked. Now used for both host and target
  6779. compilation, and cache is stored in ~/.buildroot-ccache.
  6780. Toolchain: uClibc 0.9.32-rc2, several components moved to
  6781. normal AUTOTARGET packages.
  6782. Generic cmake infrastructure, similar to the existing
  6783. GENTARGETS/AUTOTARGETS.
  6784. Support for bzr downloads, next to the existing git/svn support.
  6785. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  6786. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  6787. EXT2 file system size handling improved, UBI image support, fs
  6788. configuration options cleanup, U-Boot/Barebox version bumps.
  6789. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  6790. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  6791. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  6792. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  6793. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  6794. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  6795. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  6796. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  6797. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  6798. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  6799. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  6800. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  6801. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  6802. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  6803. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  6804. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  6805. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  6806. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  6807. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  6808. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  6809. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  6810. xkeyboard-config, xlib_libX11, xz, zlib
  6811. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  6812. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  6813. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  6814. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  6815. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  6816. xl2tp, xmlstarlet
  6817. Removed packages: hotplug, l2tp, libfloat, microcom,
  6818. ng-spice-rework
  6819. Issues resolved (http://bugs.uclibc.org):
  6820. #267: The make target: cross fails because toolchain_build_...
  6821. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  6822. #561: ltp-testsuite failed to install
  6823. #1447: Installing gfortran on PowerPC
  6824. #1651: Build fail caused by ccache in module-init-tools
  6825. #1681: Cross-compiled binaries shouldn't be installed into staging
  6826. #1723: [PATCH] axel: convert to generic package infrastructure and...
  6827. #1735: [PATCH] mplayer: convert to autotools infrastructure
  6828. #2551: [PATCH] native toolchain in the target filesystem fails
  6829. #2623: buildroot-snapshot-20100922 fails when compiling development...
  6830. #2647: makedevs package lacks support for 16-bit major/minor numbers
  6831. #2371: QT MYSQL Module does not build when MySQL installed on the host
  6832. #2839: compile fails in various packages with a odd message "error:...
  6833. #2887: tar "buffer overflow detected" error
  6834. #2893: Broken "make source" with external toolchain
  6835. #2905: Qt: Speed up compilation, if gui-module isn't selected
  6836. #2929: genext2fs: couldn't allocate a block (no free space)
  6837. #2935: Ntpdate isn't installed
  6838. #2965: Broken linkage to xkbcomp (blocking X server startup)
  6839. #2983: xlib_libX11 build failed
  6840. #3007: kexec doesn't build: Missing regdef.h file
  6841. #3085: Init scripts are not compatible with sysVinit (when busybox...
  6842. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  6843. #3109: abnormal `make busybox-menuconfig`
  6844. #3115: How about board specific makefiles?
  6845. #3169: python patch has typo, aborts build in scenario
  6846. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  6847. 2010.11, Released November 30th, 2010:
  6848. Fixes all over the tree.
  6849. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  6850. xserver-xorg
  6851. Issues resolved (http://bugs.uclibc.org):
  6852. #2773: squid with openssl support needs openssl on the host
  6853. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  6854. 2010.11-rc2, Released November 25th, 2010:
  6855. Fixes all over the tree.
  6856. Add support for LEON Sparc architecture variants. Fix make
  6857. source/external-deps for host packages.
  6858. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  6859. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  6860. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  6861. sysstat, webkit, zlib
  6862. Issues resolved (http://bugs.uclibc.org):
  6863. #759: Sysstat build broken without libintl
  6864. #2479: host-module-init-tools 3.11 fails to build
  6865. #2725: Buildroot overrides kernel config
  6866. #2785: mtd-utils build fails due to missing libmtd
  6867. #2791: Added PHP-Process Control to the PHP-Package
  6868. #2797: pciutils dependencies on zlib not taken into account
  6869. #2809: failed to compile libglib2
  6870. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  6871. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  6872. #2833: Failed to compile webkit without X11
  6873. 2010.11-rc1, Released November 8th, 2010:
  6874. Fixes all over the tree and new features.
  6875. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  6876. misc fixes + nconfig and savedefconfig targets.
  6877. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  6878. backend, GCC 4.5.x.
  6879. Fs: Squashfs 4.1 with lzo support
  6880. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  6881. generic new-style ones instead.
  6882. Download handling reworked and support for git/svn downloads
  6883. added.
  6884. Removed experimental shared config.cache support, as it is
  6885. too unreliable.
  6886. A convenience Makefile wrapper is created when using
  6887. out-of-tree building, similar to how it is done for the kernel.
  6888. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  6889. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  6890. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  6891. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  6892. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  6893. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  6894. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  6895. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  6896. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  6897. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  6898. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  6899. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  6900. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  6901. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  6902. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  6903. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  6904. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  6905. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  6906. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  6907. openssl, openvpn, oprofile, pango, patch, pcre, php,
  6908. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  6909. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  6910. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  6911. speex, sqlite, squashfs, startup-notification, strace,
  6912. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  6913. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  6914. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  6915. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  6916. xapp_xmore,
  6917. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  6918. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  6919. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  6920. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  6921. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  6922. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  6923. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  6924. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  6925. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  6926. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  6927. xterm, xvkbd, zlib
  6928. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  6929. Removed packages: dillo, libglib12, libgtk12, microwin,
  6930. pcmcia
  6931. Issues resolved (http://bugs.uclibc.org):
  6932. #901: new package: gpsd
  6933. #2389: Generate a Makefile wrapper in $(O)
  6934. #2461: wireless_tools: install shared library if needed
  6935. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  6936. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  6937. #2563: [PATCH] cairo: Expose the configure option to disable some...
  6938. #2581: libmms: Update to 0.6, and patch to work on architectures...
  6939. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  6940. #2731: Build order
  6941. #2737: buildroot configuration tool crashing when the path exceeds...
  6942. #2767: Build for lsof broken in buildroot-2010.08
  6943. 2010.08: Released August 31th, 2010:
  6944. Fixes all over the tree.
  6945. Updated/fixed packages: atk, xstroke
  6946. Removed packages: lxdoom
  6947. 2010.08-rc2, Released August 30th, 2010:
  6948. Fixes all over the tree.
  6949. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  6950. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  6951. versions.
  6952. Mark CRIS architecture as deprecated, as it is discontinued
  6953. upstream.
  6954. Marked shared config.cache as experimental and disabled by
  6955. default as it is known to break with certain package
  6956. combinations.
  6957. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  6958. added.
  6959. fs: old-style squashfs for big endian archs fixed.
  6960. Updated/fixed packages: busybox, gst-plugins-base,
  6961. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  6962. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  6963. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  6964. util-linux
  6965. Removed packages: stunnel
  6966. Issues resolved (http://bugs.uclibc.org):
  6967. #635: util-linux fails to build in 2009.08
  6968. #2239: netcat package installs its binary to target as avr32-linux...
  6969. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  6970. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  6971. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  6972. 2010.08-rc1, Released July 30th, 2010:
  6973. Fixes all over the tree and new features.
  6974. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  6975. and non-sysroot support removed. Added support for (snapshot)
  6976. NPTL in uClibc, 0.9.28.3 removed,
  6977. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  6978. removed yaboot. Support building u-boot from custom tarball,
  6979. u-boot 2010.06.
  6980. New GTK-based configurator, usable using 'make gconfig'.
  6981. Java packages marked as broken. Unless someone steps up to
  6982. support this, they will be removed during the 2010.11
  6983. development cycle.
  6984. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  6985. GTK+ on DirectFB has also been marked as deprecated, as it is
  6986. not supported in recent GTK+ versions, and more and more
  6987. packages depends on the new versions.
  6988. Unless someone steps up to support them, they will be removed
  6989. during the 2010.11 development cycle.
  6990. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  6991. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  6992. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  6993. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  6994. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  6995. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  6996. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  6997. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  6998. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  6999. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  7000. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  7001. ltrace, make, midori, module-init-tools, mplayer,
  7002. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  7003. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  7004. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  7005. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  7006. usbutils, webif, webkit, wireless_tools, xerces,
  7007. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  7008. Removed packages: modutils, portage, rxvt
  7009. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  7010. Issues resolved (http://bugs.uclibc.org):
  7011. #321: alsa-lib uses host include files for python which breaks ...
  7012. #361: linux kernel configuration choice works incorrectly
  7013. #387: Tremor not installed to toolchain
  7014. #401: new package: ffmpeg
  7015. #475: uImage target for U-boot failed generating
  7016. #543: ATK requires X11 on DirectFB target
  7017. #575: webkit: Buildroot Libtool Patch Fails
  7018. #583: build fails with external x86_64 toolchain
  7019. #729: sstrip creates corrupted headers
  7020. #829: Webkit r44552 needs libXt
  7021. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  7022. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  7023. #859: Add (head of) nptl branch to list of uClibc versions
  7024. #949: compile with debug info
  7025. #955: Grub fails to build with External Toolchain
  7026. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  7027. #1213: Move .config into output directory
  7028. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  7029. #1231: (sparc) Linux kernel fails to build
  7030. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  7031. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  7032. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  7033. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  7034. #1675: GMP Error during buildroot make process
  7035. #1741: external toolchain linking error
  7036. #1753: lmbench: convert to generic package infrastructure
  7037. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  7038. #1807: LZMA 4.32.7, Required header file(s) are missing
  7039. #1813: xkeyboard-config fails to build because of intltool problem
  7040. #1879: Bump iptables to 1.4.8
  7041. #1885: Add a bunch of lua modules
  7042. #1897: Bump libusb to 1.0.7
  7043. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  7044. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  7045. #1927: Bump file to 5.03 and migrate to autotargets
  7046. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  7047. #1945: PHP: add sqlite3 dependency when using external lib
  7048. #1951: Bump openssl to 0.9.8o
  7049. #1957: Bump sqlite to 3.6.23.1
  7050. #1975: Package removal/deprecation
  7051. #1981: zlib: bump to 1.2.5
  7052. #1987: intltool: Fix spelling mistake
  7053. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  7054. #1999: Typo in path checking
  7055. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  7056. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  7057. #2038: Bump ncurses to 5.7
  7058. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  7059. #2101: blackbox depends on locale support
  7060. #2119: Tries to build kernel, although disabled in config
  7061. #2125: libXfont build fail
  7062. #2143: buildroot compiler generates segfaulting statically linked exe..
  7063. #2149: xterm build failure
  7064. #2155: Compression lzo don't set for ubifs
  7065. #2161: [SECURITY] Update libpng to 1.2.44
  7066. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  7067. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  7068. #2191: linux-fusion build fail
  7069. #2221: Qt does not compile (dependencies not taken into account?)
  7070. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  7071. #2245: Netcat does not work due to incorrect assumptions about signed..
  7072. #2251: directory output/build after make *_defconfig not found
  7073. #2257: Convert netsnmp package to autotargets
  7074. #2263: Bump samba to 3.3.13
  7075. #2269: setserial causes make error
  7076. 2010.05, Released May 30th, 2010:
  7077. Fixes all over the tree.
  7078. Updated/fixed packages: coreutils, hal, libcap,
  7079. lockfile-progs, ncftp, xserver_xorg-server
  7080. Issues resolved (http://bugs.uclibc.org):
  7081. #1789: binutils fails to build for i386
  7082. #1843: Fix libcap build failure
  7083. #1855: XORG Keyboard driver fails to compile
  7084. 2010.05-rc3, Released May 27th, 2010:
  7085. Fixes all over the tree.
  7086. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  7087. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  7088. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  7089. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  7090. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  7091. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  7092. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  7093. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  7094. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  7095. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  7096. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  7097. Issues resolved (http://bugs.uclibc.org):
  7098. #75: arm buildroot "unrecognized option" error
  7099. #699: Buildroot fails to copy libstdc++ to target when using external...
  7100. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  7101. #1729: alsamixergui fails to build
  7102. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  7103. #1819: pciutils small bugs
  7104. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  7105. 2010.05-rc2, Released May 11th, 2010:
  7106. Fixes all over the tree.
  7107. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  7108. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  7109. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  7110. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  7111. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  7112. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  7113. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  7114. Removed packages: vice
  7115. Issues resolved (http://bugs.uclibc.org):
  7116. #849: "customize" package copies files to wrong place in target tree
  7117. #985: Bump usb_modeswitch package to 1.1.0
  7118. #1135: Package customize. Wrong copying
  7119. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  7120. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  7121. #1669: Busybox failed to compile when using an external toolchain
  7122. #1699: Fix usbutils dependencies and bump
  7123. #1705: Fix pciutils broken cross compiling
  7124. #1717: External toolchain fixes for hostapd & wpa_supplicant
  7125. 2010.05-rc1, Released May 3rd, 2010:
  7126. Cleaned up / restructured package menu.
  7127. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  7128. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  7129. removed broken nios2 support, ppc e300cX/e500mc support,
  7130. improved external toolchain support, GDB 7.x support.
  7131. X.org updated to 7.5.
  7132. New packages: cdrkit, cramfs, genext2fs, genromfs,
  7133. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  7134. squashfs, squashfs3, squid
  7135. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  7136. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  7137. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  7138. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  7139. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  7140. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  7141. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  7142. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  7143. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  7144. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  7145. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  7146. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  7147. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  7148. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  7149. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  7150. xproto_xf86miscproto, xserver_xorg-server
  7151. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  7152. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  7153. xproto_xf86miscproto
  7154. Issues resolved (http://bugs.uclibc.org):
  7155. #513: Add new squid package
  7156. #661: lmbench: new package
  7157. #719: Add lua option to haserl
  7158. #800: [PATCH] iperf update to 2.0.4
  7159. #803: [PATCH] lua - add shared library patch and config option for...
  7160. #805: [PATCH] mdadm - version update
  7161. #817: integrator926_defconfig uses unsupported uboot board name
  7162. #851: Add option to specify --sysroot value for external toolchain
  7163. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  7164. package for compatibility with old packages that expect
  7165. the pre-1.0 API.
  7166. #1105: Add new netperf package
  7167. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  7168. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  7169. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  7170. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  7171. #1189: Wrong u-boot configuration name for integrator926 target
  7172. #1219: kernel headers not correctly installed into toolchain/staging
  7173. #1267: Wrong BR2_EXTRA_VERSION
  7174. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  7175. #1303: Add librsync package
  7176. #1321: Busybox link fails due to lack of --sysroot option
  7177. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  7178. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  7179. #1369: cannot build radvd (flex problem)
  7180. #1387: xlib_libX11-1.3.2 can't find libjpeg
  7181. #1411: [SECURITY] Update openssl package to 0.9.8n
  7182. #1417: Bump iptables to 1.4.7
  7183. #1423: Bump e2fsprogs to 1.41.11
  7184. #1429: [SECURITY] Update php to 5.2.13
  7185. #1441: Add binutils 2.20.1
  7186. #1447: Package installation on target with debug symbols is broken
  7187. #1459: Misc QA fixes
  7188. #1489: radvd update to 1.6
  7189. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  7190. #1537: dev entries not created anymore
  7191. #1555: Fix default uclibc-0.9.31 configuration
  7192. #1561: [SECURITY] Update samba to 3.3.12
  7193. #1567: openssl0.9.8n fails to compile
  7194. #1573: Alsa-utils alsactl/init/* not installed to target
  7195. #1591: portmap fails to compile
  7196. #1615: Convert eeprog package to gentargets
  7197. #1645: Bump hostapd package to 0.7.2
  7198. 2010.02, Release February 26th, 2010:
  7199. Fixes all over the tree.
  7200. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  7201. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  7202. xfont_font-util
  7203. Removed packages: hostap, openmotif, xpdf
  7204. Issues resolved (http://bugs.uclibc.org):
  7205. #165: openmotif does not build
  7206. #1147: Remove obsolete hostap package
  7207. #1183: make source fails to download gmp, mpfr and patches
  7208. 2010.02-rc2, Released February 23th, 2010:
  7209. Fixes all over the tree and new features.
  7210. New packages: intltool
  7211. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  7212. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  7213. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  7214. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  7215. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  7216. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  7217. xlib_libfontenc, xproto_trapproto, zlib
  7218. Removed package: xboard
  7219. Issues resolved (http://bugs.uclibc.org):
  7220. #335: atk looks for the path to the gnome library on the host
  7221. #355: Please update WebKit - it doesn't compile!
  7222. #453: libglib2 autoreconf
  7223. #457: e2fsprogs link problem
  7224. #459: libgtk2 autoreconf
  7225. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  7226. #671: Bash fails to build when building buildront on Ubuntu 9.04
  7227. #711: WebKit host dependencies problems
  7228. #821: cp: illegal operation
  7229. #1039: Not compiled on ubuntu karmic
  7230. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  7231. 2010.02-rc1, Released February 9th, 2010:
  7232. Fixes all over the tree and new features.
  7233. Generalized autotools infrastructure to be usable for
  7234. non-autotools packages, see package/Makefile.package.in for
  7235. details.
  7236. Cleaned up avr32 toolchain config, external source-based
  7237. toolchain support is gone.
  7238. Dependency checks: Also check for makeinfo, only print output
  7239. on errors.
  7240. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  7241. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  7242. tcpreplay
  7243. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  7244. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  7245. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  7246. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  7247. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  7248. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  7249. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  7250. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  7251. Removed package: asterisk, openswan
  7252. Issues resolved (http://bugs.uclibc.org):
  7253. #515: tcpreplay: new package
  7254. #553: Wrong DirectFB ps2mouse limitation
  7255. #559: mesa3d build fails
  7256. #679: Autoconf cannot find M4
  7257. #739: New/updated hostapd package
  7258. #749: Bump usbutils package to version 0.86
  7259. #751: Kernel 2.6 snapshot fetch fail
  7260. #753: Bump lighttpd package to 1.4.25
  7261. #757: U-Boot: mkimage cannot be installed using external toolchain
  7262. #761: Add binutils 2.20 to toolchain options
  7263. #763: [SECURITY] Update pcre to 7.9
  7264. #765: Add buildroot branding to gcc
  7265. #767: Bump iw package to 0.9.18
  7266. #773: [SECURITY] Update bind to 9.5.2-P1
  7267. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  7268. #813: Drop not very useful generic package selection options ...
  7269. #823: Editor backup files (~) is copied from the target_skeleton
  7270. #827: Bump mtd-utils package to version 1.2.0
  7271. #841: Build error
  7272. #913: Bump iptables to 1.4.6
  7273. #919: Bump usb_modeswitch package to 1.0.7
  7274. #925: Bump wpa_supplicant package to 0.6.10
  7275. #931: Bump kismet package to 2010-01-R1
  7276. #937: Bump openvpn package to 2.1.1
  7277. #943: Bump sqlite package to 3.6.22
  7278. #961: Bump dnsmasq to 2.52
  7279. #967: Bump netstat-nat to 1.4.10
  7280. #973: Bump iw to 0.9.19
  7281. #1003: DHCP options disabled with busybox-1.16.0
  7282. #1009: [SECURITY] Bump php to 5.2.12
  7283. #1015: [SECURITY] Bump bind to 9.5.1-P2
  7284. #1027: Busybox flash commands conflict with those from mtd-utils
  7285. #1063: [SECURITY] Update lighttpd to 1.4.26
  7286. 2009.11, Released December 1st, 2009:
  7287. Additional fixes and cleanups.
  7288. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  7289. microperl, ncurses, vim
  7290. Issues resolved (http://bugs.uclibc.org):
  7291. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  7292. 2009.11-rc2, Released November 29th, 2009:
  7293. Additional fixes and cleanups.
  7294. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  7295. 2009.11-rc1, Released November 23rd, 2009:
  7296. Fixes all over the tree and new features.
  7297. Cleaned up / Simplified build directory layout. Refer to
  7298. docs/buildroot.html#using for details.
  7299. Target defconfig files moved to configs/ and listed in 'make help'
  7300. output.
  7301. Fixed *clean targets. Now clean removes everything generated,
  7302. so you can do a fresh rebuild. Distclean furthermore removes
  7303. kbuild tools and .config, bringing the source tree back in a
  7304. pristine state.
  7305. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  7306. soft / hardfloat setting for architecture, ensure target-ldd
  7307. gets installed.
  7308. New packages: divine, gvfs, libarchive, libmicrohttpd,
  7309. sdl_sound, swfdec, sysstat
  7310. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  7311. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  7312. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  7313. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  7314. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  7315. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  7316. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  7317. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  7318. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  7319. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  7320. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  7321. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  7322. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  7323. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  7324. Issues resolved (http://bugs.uclibc.org):
  7325. #301: allow to install libsmbclient
  7326. #303: add gvfs package
  7327. #477: Add sdl_sound package
  7328. #487: Make kismet package sexier
  7329. #511: New package usb_modeswitch
  7330. #527: misc fixes for dnsmasq package
  7331. #565: libevent: Bump version and clean up makefile
  7332. #587: Use iptables multipurpose binaries and bump to 1.4.4
  7333. #593: Missing early check for patch(1)
  7334. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  7335. #609: libmicrohttpd: New package
  7336. #615: python: Don't delete .py files unless asked
  7337. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  7338. #619: netkittelnet requires netkitbase to install, but there's no ...
  7339. #645: allow to build nbd-server with NBD package
  7340. #653: [SECURITY] Update php package to version 5.2.11
  7341. #655: Update sqlite package to version 3.6.18
  7342. #657: Bug in imagemagick-clean target
  7343. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  7344. #665: [PATCH] Samba package
  7345. #667: [PATCH] e2fsprogs
  7346. #683: SDL-dfb does not select directfb
  7347. #701: make install problem with unstripped binaries
  7348. #703: [SECURITY] Update openssl package to 0.9.8l
  7349. #705: Bump spawn-fcgi package to 1.6.3
  7350. #709: Bump lighttpd package to 1.4.24
  7351. #713: Migrate openntpd package to Makefile.autotools.in
  7352. #715: Bump libidn package to 1.15 and other fixes
  7353. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  7354. #731: Bump iw package to 0.9.17
  7355. 2009.08, Released August 31th, 2009:
  7356. Additional fixes and cleanups.
  7357. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  7358. sdl_net, util-linux.
  7359. Issues resolved (http://bugs.uclibc.org):
  7360. #529: util-linux doesn't find headers and include libs correctly
  7361. #557: Build ctorrent with SSL support if available
  7362. 2009.08-rc3, Released August 26th, 2009:
  7363. Additional fixes and cleanups.
  7364. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  7365. directfb, enchant, kernel headers.
  7366. Issues resolved (http://bugs.uclibc.org):
  7367. #471: Allow directfb compilation with debug
  7368. #541: Removal of CVS directories in target filesystem broken
  7369. #547: berkeleydb: Update config.{sub, guess}
  7370. #549: enchant: Fix dependencies.
  7371. #569: Fix alsa-utils build for x86 on x86-64
  7372. 2009.08-rc2, Released August 6th, 2009:
  7373. Additional fixes and new features.
  7374. New packages: libuuid, gcc 4.3.4.
  7375. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  7376. jamvm, libusb, microperl, neon, popt, sed, webkit.
  7377. Fixed issue with 'make oldconfig'
  7378. Issues resolved (http://bugs.uclibc.org):
  7379. #525: sed broken with external toolchain
  7380. #537: Fix gzip build with recent glibc
  7381. 2009.08-rc1, Released August 2nd, 2009:
  7382. Fixes all over the tree and new features.
  7383. Improvement of external toolchain support:
  7384. - Support for glibc toolchains.
  7385. - The toolchain configuration announced to Buildroot is
  7386. verified against the real toolchain configuration.
  7387. - Fixes, documentation.
  7388. Cleanup X.org support: clarified configuration options, and
  7389. removed mandatory dependency on useless libraries such as
  7390. libXt or libXaw.
  7391. New QT-based configurator, usable using 'make xconfig'.
  7392. Support for the Xtensa architecture.
  7393. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  7394. headers.
  7395. New packages: bmon, ctorrent, dosfstools, enchant,
  7396. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  7397. sdl_gfx, spawn-fcgi.
  7398. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  7399. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  7400. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  7401. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  7402. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  7403. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  7404. wpa-supplicant, xdriver_xf86-input-synaptics,
  7405. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  7406. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  7407. xutil_util-macros.
  7408. Issues resolved (http://bugs.uclibc.org):
  7409. #83: liblockfile fails to compile due to eaccess redefinition
  7410. #163: Xtensa architecture port
  7411. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  7412. #241: device mapper + lvm2: build together
  7413. #243: ctorrent: new package
  7414. #247: ntfsprogs: new package
  7415. #271: Library 'libgcc_s.so.1' not installed in search path
  7416. #287: New package libnl
  7417. #289: New package iw
  7418. #331: Update MPlayer to version 1.0rc2
  7419. #333: Bump sqlite package to 3.6.15
  7420. #349: update libsoup to version 2.26.2
  7421. #357: New package netstat-nat
  7422. #359,#413: Upgrade openvpn to Makefile.autotools.in
  7423. #367: linux kernel compile error for arm926t
  7424. #369: Add SDL_gfx package
  7425. #373: Support for building gstreamer without libxml
  7426. #379: update DirectFB to version 1.4.0
  7427. #383: gst-plugins-good: Allow soup plugin to be configured
  7428. #385: neon: Fix pkgconfig dependency
  7429. #387: Tremor not installed to toolchain
  7430. #389: New package bmon
  7431. #391: gstreamer: Bump version to 0.10.23
  7432. #393: gst-plugins-base: Bump version to 0.10.23
  7433. #395: gst-plugins-bad: New package
  7434. #403: Error while building iso9660 image
  7435. #409: Bump php package to 5.2.10
  7436. #411: ipsec-tools: Bump version to 0.7.2
  7437. #417: New package spawn-fcgi
  7438. #419: Bump lighttpd package to 1.4.23
  7439. #421: toolchain: Clean up toolchain locale support menu
  7440. #427: webkit: Update to WebKit svn r44552
  7441. #437: ltp-testsuite: Bump version to 20090630
  7442. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  7443. #467: DirectFB 1.4.1
  7444. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  7445. #491: libxml2: Bump version to 0.7.3
  7446. #495: Bump bind package to 9.5.1-P3 (security)
  7447. #497: OpenSSL RSA key generation hangs on x86_64
  7448. #509: Bump sqlite package to 3.6.16
  7449. #523: pciutils broken with external toolchain
  7450. #533: Update gamin to 0.1.10 to fix compilation
  7451. 2009.05, Released June 1st, 2009:
  7452. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  7453. version and marked ubifsroot as broken.
  7454. 2009.05-rc3, Released May 27th, 2009:
  7455. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  7456. busybox, curl, libusb, readline, python and strace.
  7457. Issues resolved (http://bugs.uclibc.org):
  7458. #345: libcurl package needs a urandom fix
  7459. 2009.05-rc2, Released May 19th, 2009:
  7460. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  7461. for newer hosts), stable kernel versions, busybox, cups,
  7462. dmraid, docker, mesa3d, rsync and updated defconfigs.
  7463. xserver marked as broken on AVR32 and atngw100-expanded
  7464. config removed.
  7465. Issues resolved (http://bugs.uclibc.org):
  7466. #167: metacity does not build
  7467. #295: gamin installs python support even if python is disabled
  7468. #323: gen_matypes fails to execute during build of Mesa when us...
  7469. 2009.05-rc1, Released May 5th, 2009:
  7470. Fixes all over the tree, further conversion of packages to
  7471. Makefile.autotools.in and we now build host versions of
  7472. packages where needed for build time dependencies instead of
  7473. relying on the correct versions being available on the build
  7474. host. Ancient toolchain / busybox versions have furthermore
  7475. been removed as announced in the 2009.02 release notes.
  7476. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  7477. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  7478. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  7479. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  7480. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  7481. util-linux, xorg7, xerces
  7482. Issues resolved (http://bugs.uclibc.org):
  7483. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  7484. and a ton of other improvements
  7485. #19: page.h missing by util-linux
  7486. #37: update libglib2 to version 2.18.4
  7487. #61: tslib puts staging_dir into pkgconfig file
  7488. #69: tar refuses to build
  7489. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  7490. #73: Bump openssl package to the latest version
  7491. #81: New package wpa_supplicant
  7492. #99: new package: flac
  7493. #101: update gstreamer packages
  7494. #105,#313: menuconfig segfaults on tinyx if wchar is not
  7495. selected
  7496. #107: convert libvorbis to Makefile.autotools.in
  7497. #109: Make pppd package avoid bsd err
  7498. #111: binutils 2.17 fails to build when texinfo >= 4.10
  7499. #133: Modify ncurses5-config to get correct include path
  7500. #137: Bump php to version 5.2.9
  7501. #139: Bump sqlite to 3.6.11 and convert to
  7502. Makefile.autotools.in
  7503. #145: Bump bind package to 9.5.1-P1 (security)
  7504. #147: buildroot toolchain fails to build w/binutils-2.19.1
  7505. #151: openssl package trivial fixes
  7506. #161: vim fails on patching with errors in configure.patch
  7507. #169: blackbox-0.70.1 does not build
  7508. #177: xdriver_xf86-input-keyboard does not build
  7509. #179: Upgrade dropbear to Makefile.autotools.in
  7510. #181: Update to Xorg 7.4
  7511. #187: ntfs-3g: could not build cross
  7512. #191: alsa-lib ARM binaries always built with EABI
  7513. #213: Bump wpa_supplicant package to version 0.6.9
  7514. #217: Bump openssl package to 0.9.8k (security)
  7515. #219: Toolchain build fails on m4
  7516. #225: m4 macros are out of place
  7517. #233: make ipv6 optional in iptables
  7518. #237: ncftp: convert to Makefile.autotools.in
  7519. #239: ntfs-3g: convert to Makefile.autotools.in
  7520. #245: lzop: new package
  7521. #271: Bump bind package to 9.5.1-P2 (security)
  7522. #277: Bump sqlite package to 3.6.16
  7523. #279: update libglib2 to version 2.20.1
  7524. #281: update DirectFB to version 1.2.8
  7525. #283: add taglib
  7526. #285: compilation of samba fails if IPV6 support is missing
  7527. #293: update samba to version 3.3.3
  7528. #299: add shared-mime-info package
  7529. #307: make openssl package respect build flags