CHANGES 344 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713
  1. 2019.11, released December 1st, 2019
  2. Various fixes.
  3. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  4. <pkg>_DL_OPTS by default, just like it is done for a number of
  5. other package variables.
  6. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  7. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  8. the (rare) case where the .py files are needed at runtime
  9. rather than .pyc.
  10. Updated/fixed packages: am33x-cm3, bind, collectd, go, gob2,
  11. gst1-plugins-bad, haproxy, jasper, jpeg-turbo, libdrm,
  12. libftdi, libftdi1, libnss, libselinux, libstrophe, lzma,
  13. minicom, network-manager, nodejs, oniguruma, opencv3,
  14. openvmtools, perl-gdgraph, perl-gdtextutil, prosody,
  15. python-cchardet, systemd, tiff, wolfssl,
  16. Issues resolved (http://bugs.uclibc.org):
  17. #11416: check-uniq-files staging issue
  18. #12146: Oprofile runtime issue
  19. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  20. #12171: Python-opencv needs config.py and config-3.7.py to run..
  21. #12196: duma package
  22. #12211: host-nodejs 10.15.3 package fail to build
  23. #12316: tzdata fails to install with empty "default local time"
  24. #12326: network-manager build fails with missing glib error
  25. #12366: Gstreamer1 gst1-plugins-bad do not compile with RPI-Userland
  26. 2019.11-rc3, released November 24th, 2019
  27. Fixes all over the tree.
  28. Updated/fixed packages: asterisk, clamav, domoticz, faifa,
  29. gerbera, kmod, kvm-unit-tests, libupnp18, linux-serial-test,
  30. lsof, ltp-testsuite, lxc, mesa3d, mesa3d-headers, perl, php,
  31. postgresql, qemu, rauc, redis, rpcbind, spice, spice-protocol,
  32. systemd, tftpd, waylandpp, webkitgtk, zip
  33. 2019.11-rc2, released November 16th, 2019
  34. Fixes all over the tree.
  35. Toolchain: ARC tools bumped to arc-2019.09-rc1, ensure
  36. external toolchain kernel headers version check correctly stop
  37. the build on mismatch
  38. Meson: Fix generation of global cross-compilation.conf
  39. Download: Also use the package download method for extra
  40. downloads from the same site, so it does not get confused by
  41. URLs containing '+'
  42. Defconfigs: Fix boot issue for beaglebone
  43. Updated/fixed packages: bird, chrony, connman, dhcp, domoticz,
  44. dropwatch, dtc, elf2flt, gettext-tiny, glog, intel-microcode,
  45. ipsec-tools, jailhouse, kodi, libfribi, libmbim, libressl,
  46. libsigrokdecode, libsvgtiny, linux-serial-test, ltp-testsuite,
  47. lvm2, lxc, mariadb, mesa3d, minizip, ndisc6, neardal, ninja,
  48. ofono, openvmtools, oracle-mysql, qt5wayland, safeclib, socat,
  49. sudo, systemd, wpewebkit, xserver_xorg-server
  50. 2019.11-rc1, released November 5th, 2019
  51. Fixes all over the tree and new features.
  52. Dependencies: Gcc/g++ 4.8 or newer is now required on the
  53. build host.
  54. Ensure host has JSON::PP perl module installed if
  55. webkitgtk/wpewebkit packages are enabled as it is needed
  56. during their build process.
  57. Toolchain: Add support for the D programming language (GCC
  58. 9.x, Glibc).
  59. GCC 9.x updated to 9.2.0, Glibc updated to 2.30, Musl updated
  60. to 1.1.24, uClibc-ng updated to 1.0.32, ARC toolchain updated
  61. to arc-2019.09-eng002.
  62. Musl: Add a patch to add support for
  63. sched_{get,set}scheduler() and sched_{get,set}param() for
  64. compatibility.
  65. Generate check-headers program under BUILD_DIR rather than
  66. /tmp to fix issues with distributions mounting /tmp noexec.
  67. Also copy libssp.so for external toolchains if SSP
  68. to handle toolchains providing SSP support in libssp rather
  69. than in the C library
  70. New defconfigs: Beaglebone AI, FriendlyARM Nanopi NEO Plus2,
  71. Libre Computer "La Frite", QEMU Armv7-A with trustzone/OP-TEE,
  72. STM32MP157 Discovery Kit
  73. Arch: RISC-V: Default to a sensible floating point ABI based
  74. on the selected ISA extensions rather than always defaulting
  75. to ILP32/64
  76. Graph-size: Package sizes are now shown in human readable form
  77. (Kib/Mib/Gib) rather than always in Kib. Binary (KB/MB/GB)
  78. format can be selected using the --binary option. The cut-off
  79. limit for classifying packages as "other" is now configurable
  80. using the --size-limit option.
  81. Br2-external: Linux kernel extensions can now also be provided
  82. in an external tree by adding packages under
  83. linux/linux-ext-*.mk. See the manual for details.
  84. Fakeroot now works correctly under Microsoft Windows 10
  85. Services for Linux, which does not provide SYSV IPC support
  86. The check-uniq-files logic which would complain if multiple
  87. packages would touch the same files has been removed as it
  88. causes issues in certain situations (when packages are
  89. rebuilt) and the issue is no longer considered a problem for
  90. toplevel parallel builds as those will use a per-package
  91. staging/target directory.
  92. With this removed, Python is no longer required for a basic
  93. build (only for optional scripts).
  94. support/scripts/genimage.sh will no longer make a copy of
  95. TARGET_DIR, speeding up post-build/image scripts.
  96. The runtime test logic now uses Python 3.x.
  97. A 'v' prefix has been dropped from the <pkg>_SOURCE variable
  98. for a number of packages to match the version numbers used by
  99. https://release-monitoring.org
  100. New packages: caps, collectl, dav1d, fstrcmp, ima-evm-utils,
  101. jitterentropy-library, kodi-vfs-rar, kodi-vfs-sftp, libavl,
  102. libhttpserver, libmspack, libnetconf2, libolm, libyang,
  103. linux-serial-test, lrzip, mdevd, minimodem, musl-fts, netifrc,
  104. ogre, openlayers, python-aioredis, python-asgiref,
  105. python-backports-functools-lru-cache, python-bluezero,
  106. python-brotli, python-channels, python-channels-redis,
  107. python-colorlog, python-daphne, python-django-enumfields,
  108. python-jaraco-functools, python-kiwisolver, python-msgfy,
  109. python-rpi-ws281x, python-setuptools-scm-git-archive,
  110. python-simplelogging, python-soupsieve, python-sqliteschema,
  111. python-sqlparse, python-tqdm, python-webencodings, qt5webview,
  112. restclient-cpp, ripgrep, snmpclitools, sunwait, sysrepo,
  113. uacme, utf8proc, uvw, ytree
  114. Removed packages: alljoyn, alljoyn-base, alljoyn-tcl-base,
  115. devmem2, eventlog, kodi-audiodecoder-opus,
  116. kodi-screensaver-planestate, kodi-visualisation-waveforhue,
  117. python-pysnmp-apps, riscv-pk, ustr
  118. Issues resolved (http://bugs.uclibc.org):
  119. #9881: systemd-resolved not setting resolv.conf link
  120. #10171: devmem2 w (word) is 8 bytes in x86 64 systems
  121. #10586: musl gcc has ifunc enabled when musl doesn't support it
  122. #10806: Allow nfs-utils to use ipv6
  123. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  124. #11411: check-uniq-files target issue
  125. #11766: Console (getty) issues with systemd
  126. #11781: mariadb build error
  127. #12031: Build of cups-filters fails while linking, apparently due..
  128. #12116: console prompt does not appear after login
  129. #12141: eudev package is missing "render" and "kvm" groups
  130. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  131. #12186: Raspberry Pi Zero-W build fails on newer kernel versions
  132. #12191: cmake BUILDDIR
  133. #12241: Permission denied while running "make"
  134. #12261: sudo versions prior to 1.8.28 are affected.
  135. #12276: make clean/distclean does not remove BR2_DL_DIR and BR2_HOST_DIR
  136. #12281: Custom configuration fails to build (based on raspberrypi3_..
  137. 2019.08.3, released December 7th, 2019
  138. Important / security related fixes.
  139. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  140. <pkg>_DL_OPTS by default, just like it is done for a number of
  141. other package variables
  142. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  143. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  144. the (rare) case where the .py files are needed at runtime
  145. rather than .pyc.
  146. Fix <pkg>-reconfigure handling for packages using the kconfig
  147. infrastructure.
  148. Toolchain: ensure external toolchain kernel headers version
  149. check correctly stop the build on mismatch
  150. Deconfigs: beaglebone: fix boot issue
  151. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  152. clamav, cmocka, collectd, connman, dhcp, dropwatch, faifa,
  153. gettext-tiny, gob2, haproxy, intel-microcode, ipsec-tools,
  154. jailhouse, jasper, jpeg-turbo, kodi, kvm-unit-tests, libftdi,
  155. libftdi1, libnss, libressl, libstrophe, libsvgtiny, lvm2,
  156. lzma, mariadb, minicom, mosquitto, neardal, ninja, nodejs,
  157. oniguruma, openvmtools, oracle-mysql, perl-gdgraph,
  158. perl-gdtextutil, php, postgresql, prosody, python-cchardet,
  159. python-django, qt5wayland, rabbitmq, rauc, redis, rpcbind,
  160. socat, spice, spice-protocol, tftpd, tiff, webkitgtk
  161. New packages: libmspack
  162. Issues resolved (http://bugs.uclibc.org):
  163. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  164. #12171: Python-opencv needs config.py and config-3.7.py to run..
  165. #12211: host-nodejs 10.15.3 package fail to build
  166. #12316: tzdata fails to install with empty "default local time"
  167. 2019.08.2, released November 9th, 2019
  168. Important / security related fixes.
  169. Toolchain: Also copy libssp.so for external toolchains if SSP
  170. to handle toolchains providing SSP support in libssp rather
  171. than in the C library
  172. Download: Also use the package download method for extra
  173. downloads from the same site, so it does not get confused by
  174. URLs containing '+'
  175. Fakeroot now works correctly under Microsoft Windows 10
  176. Services for Linux, which does not provide SYSV IPC support
  177. utils/test-pkg: ensure to exit with an error upon failure
  178. Updated/fixed packages: asterisk, azmq, binutils,
  179. cups-filters, domoticz, dtc, duma, elf2flt, eudev, exfat,
  180. exfat-utils, fakeroot, fdk-aac, file, freerdp, gcc, gd,
  181. ghostscript, go, gpsd, grpc, gst1-plugins-base, gvfs, icu,
  182. intel-microcode, kvm-unit-tests, libfribidi, libnspr, libnss,
  183. libopenssl, libpcap, libpciaccess, librsvg, libseccomp,
  184. libsigrok, libtorrent, libunwind, libva, linux-tools,
  185. lua-sdl2, lxc, minizip, mjpegtools, mongoose, mono, nbd,
  186. nfs-utils, php, piglit, python, python-autobahn,
  187. python-pysnmp-apps, python-tornado, python3, qemu, qt5base,
  188. ruby, safeclib, samba4, sdl_mixer, sox, sudo, suricata,
  189. systemd, tcpdump, unscd, util-linux, vdr-plugin-vnsiserver,
  190. vtun, wireshark, xvisor, yaffs2utils
  191. Issues resolved (http://bugs.uclibc.org):
  192. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  193. #12261: sudo versions prior to 1.8.28 are affected
  194. 2019.08.1, released October 3rd, 2019
  195. Important / security related fixes.
  196. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  197. Use default console settings
  198. Dependencies: Ensure host has JSON::PP perl module installed
  199. if webkitgtk/wpewebkit packages are enabled as it is needed
  200. during their build process.
  201. Toolchain: Generate check-headers program under BUILD_DIR
  202. rather than /tmp to fix issues with distributions mounting
  203. /tmp noexec.
  204. Updated/fixed packages: asterisk, augeas, axel, bind, bwm-ng,
  205. cups, cups-filters, docker-cli, docker-engine, docker-proxy,
  206. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd, joe,
  207. kf5-extra-cmake-modules, kf5-modemmanager-qt,
  208. kf5-networkmanager-qt, libcamera, libcurl, libgcrypt,
  209. libglib2, libgpg-error, libnspr, libnss, libopenssl,
  210. logrotate, luksmeta, mariadb, mbedtls, mongodb, mosquitto,
  211. ncurses, nfs-utils, nghttp2, nodejs, openvmtools, php,
  212. protobuf, putty, qemu, samba4, snort, swupdate,
  213. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  214. wireshark
  215. Issues resolved (http://bugs.uclibc.org):
  216. #10806: Allow nfs-utils to use ipv6
  217. #11781: mariadb build error
  218. #12031: Build of cups-filters fails while linking, apparently due..
  219. #12141: eudev package is missing "render" and "kvm" groups
  220. #12241: Permission denied while running "make"
  221. 2019.08, released September 1st, 2019
  222. Various fixes.
  223. Defconfigs: Removed nanopc t4, nanopi m4 and neo4, pine64
  224. rockpro64 and raxda rock pi4 as they rely on a ARM32 toolchain
  225. on the build host to build ATF. These defconfigs will be added
  226. back once a package providing such toolchain is
  227. available. Also dropped ts4800 defconfig as it does not build
  228. with GCC >= 8.x.
  229. Updated/fixed packages: libxcb, php, python-numpy, webkitgtk,
  230. wpewebkit, xfont_font-util
  231. Issues resolved (http://bugs.uclibc.org):
  232. #12156: buildroot-2019.08-rc3 does not build for Pi Zero W
  233. 2019.08-rc3, released August 28th, 2019
  234. Fixes all over the tree.
  235. Updated/fixed packages: clamav, dovecot, dovecot-pigeonhole,
  236. gcc, intel-microcode, libmicrohttpd, libmodplug, mpg123,
  237. nginx, openldap, python, qemu, samba4, squid, strace, vlc
  238. Issues resolved (http://bugs.uclibc.org):
  239. #11686: fbdev_drv.so: undefined symbol: shadowUpdatePackedWeak,..
  240. 2019.08-rc2, released August 20th, 2019
  241. Fixes all over the tree.
  242. Compile fixes for a number of defconfigs.
  243. Updated/fixed packages: apache, autofs, batctl, batman-adv,
  244. bind, collectd, cwiid, dahdi-linux, dahdi-tools, daq,
  245. dehydrated, dhcp, dtc, efl, enlightenment, evtest, giflib,
  246. gnutls, go, gst-plugins-bad, gst-plugins-base,
  247. gst1-plugins-bad, gst1-plugins-base, gst1-rtsp-server, gtkmm3,
  248. gupnp, harfbuzz, imagemagick, lftp, libbsd, libcpprestsdk,
  249. libdnet, libfm, libgit2, libgtk2, libgtk3, libpri, librsvg,
  250. libss7, libssh2, libwpe, lua-cqueues, metacity, micropython,
  251. mpd, mpg123, musl, mpv, openblas, openbox, opencv, pango,
  252. pcmanfm, piglit, pigpio, pinentry, postgresql, qemu, qt5base,
  253. qt5enginio, qt5multimedia, qt5serialbus, quagga, quazip,
  254. rrdtool, rygel, samba4, stellarium, tcpreplay, ti-gfx, vte,
  255. wampcc, wilink-bt-firmware, wireless-regdb, wpebackend-fdo,
  256. xscreensaver
  257. Removed packages: libamcodec, odroid-mali, odroid-scripts
  258. Issues resolved (http://bugs.uclibc.org):
  259. #9481: NetworkManager/Ping unable to resolve domains
  260. #10566: php.mk is missing option --with-pgsql
  261. #10861: Package batman_adv Makefile is missing include header direct..
  262. #11641: linux kernel .config timestamp always out of date fixed with..
  263. #11671: russian locale ru_RU:145: LC_TIME: syntax error
  264. #11701: recuuring of usr and in bin shortcuts are created
  265. #11741: pigpio does not build host-pigpio
  266. #11876: automount using host mount/umount
  267. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  268. #11921: dahdi fails to build
  269. #11936: libcpprestsdk should install to staging
  270. #11946: wilink-bt-firmware: moved from github to http://git.ti.com/ti-bt
  271. #11961: libpri build failure
  272. #12086: dhcp shared libraries not installed to target
  273. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  274. #12106: daq: build fails if libdumbnet-dev is installed in the host
  275. #12126: vc4 has neon as hard dependency
  276. 2019.08-rc1, released August 9th, 2019
  277. Fixes all over the tree and new features.
  278. toolchain: ARC toolchain updated to 2019.03 (binutils 2.32.51
  279. / GCC 8.3.1 / glibc 2.29), ARM AAarch64/ARM toolchains updated
  280. to 2019.03. Add GCC 9.1.0, remove GCC 4.9 and 6.5, add GDB
  281. 8.3, remove GDB 7.12 and 8.0.1, default to GDB 8.2, GCC
  282. 8.3.0. Musl updated to 1.1.23, bringing support for RISC-V 64.
  283. Architectures: Internal toolchain support for C-SKY, support
  284. for ARC HS48 v3.1 and HS38 with Quad MAC & FPU, support for
  285. ARM A76, A76/A55 big.LITTLE, emag, neoverse-N1, phecda and
  286. tsv110.
  287. Filesystems: Pass extra pax options to tar for binary
  288. reproducibility. Build host-cpio for the --reproducible option
  289. support when BR2_REPRODUCIBLE is enabled. Genimage updated to
  290. version 11, bringing GPT support.
  291. Br2-external: Add support for injecting additional options to
  292. the list of preconfigured external toolchains and libjpeg and
  293. openssl providers using files under provides/. See the manual
  294. for details.
  295. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  296. passed before the standard exclusions so they are not ignored
  297. by rsync when using override-srcdir.
  298. Gnuconfig updated to 2019-05-28, adding C-SKY support.
  299. test-pkg: Correct long option handling and clean output dir
  300. after a successful build to save disk space.
  301. support/testing: Emulate a machine with 256MB RAM to fix
  302. issues with certain tests running out of memory, use
  303. virtio-rng to provide needed entrophy.
  304. pkg-stats: support outputting in JSON format with --json for
  305. easier post processing. The classic HTML output is still
  306. available with --html. Parallelize access to
  307. release-monitoring.org to speed up runtime.
  308. Drop non-conventional version prefix/suffix/separators for
  309. packages for better compatibility with release-monitoring.org
  310. Packages:
  311. Init systems: Add basic openrc support and
  312. <pkg>_INSTALL_INIT_OPENRC variable in the infrastructure to
  313. install openrc service scripts if enabled.
  314. busybox: Build each applet as a separate binary when SELinux
  315. is enabled for more finegrained policy control. Use daemon
  316. mode for mdev rather than legacy hotplug.
  317. linux: Workaround -Werror related build failure on powerpc,
  318. by forcing CONFIG_PPC_DISABLE_WERROR on.
  319. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  320. partition is available before mounting.
  321. New defconfigs: HiFive Unleashed, I.MX8MM EVK and Pico, Nanopi
  322. m4 and neo4, Nanopc t4, Olimex A33 olinuxino, Pine64
  323. Rockpro64, PowerPC mac99, QEMU C-SKY 610/807/810/860 virt,
  324. Raspberry Pi 4, Raxda rock pi4, Solidrun Clearfog GT-8K
  325. Removed defconfigs: Odroid C2
  326. New packages: bitcoin, c-capnproto, fatcat, ifmetric, jack1,
  327. jailhouse, libubootenv, luasyslog, mender-grubenv,
  328. murata-cyw-fw, openrc, piglit, python-colorama, python-cycler,
  329. python-hiredis, python-ifaddr, python-inflection,
  330. python-iptables, python-matplotlib, python-periphery,
  331. python-pycairo, python-redis, python-termcolor,
  332. python-tinyrpc, python-txdbus, skeleton-init-openrc, spdlog,
  333. sshguard, stellarium, zziplib
  334. Removed packages: xapp_mkfontdir
  335. Issues resolved (http://bugs.uclibc.org):
  336. #11096: Upgrade from glibc 2.26 to 2.27 broke some locales...
  337. #11271: utils/check-package fails with exception depending on..
  338. #11991: [numpy] segfault when compiling for RPi3 64bits
  339. #12016: Grub fails to boot bzImage after upgrade to 2019.05
  340. #12046: Can’t login as root user after upgrading to buildroot..
  341. #12051: package/dhcp installs libtool wrapper scripts on tar...
  342. #12076: Patchelf can link against an incompatible libc++ ver...
  343. 2019.05.3, Released October 3rd, 2019
  344. Important / security related fixes.
  345. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  346. Use default console settings
  347. Dependencies: Ensure host has JSON::PP perl module installed
  348. if webkitgtk/wpewebkit packages are enabled as it is needed
  349. during their build process.
  350. Toolchain: Generate check-headers program under BUILD_DIR
  351. rather than /tmp to fix issues with distributions mounting
  352. /tmp noexec.
  353. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  354. cups-filters, docker-cli, docker-engine, docker-proxy,
  355. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd,
  356. iptables, joe, kf5-extra-cmake-modules, kf5-modemmanager-qt,
  357. kf5-networkmanager-qtlibcamera, libcurl, libgcrypt,
  358. libgpg-error, libnftl, libnspr, libnss, libopenssl,
  359. libtorrent-rasterbar, luksmeta, mariadb, mbedtls, mongodb,
  360. mosquitto, ncurses, nfs-utils, nghttp2, nodejs, openvmtools,
  361. php, protobuf, putty, qemu, samba4, swupdate,
  362. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  363. wireshark
  364. Issues resolved (http://bugs.uclibc.org):
  365. #10806: Allow nfs-utils to use ipv6
  366. #11781: mariadb build error
  367. #12031: Build of cups-filters fails while linking, apparently due..
  368. #12141: eudev package is missing "render" and "kvm" groups
  369. #12241: Permission denied while running "make"
  370. 2019.05.2, Released September 3rd, 2019
  371. Important / security related fixes.
  372. Filesystems: Pass extra pax options to tar for binary
  373. reproducibility.
  374. Updated/fixed packages: apache, arm-trusted-firmware,
  375. asterisk, atk, autofs, batctl, batman-adv, berkeleydb,
  376. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  377. dahdi-linux, dahdi-tools, daq, dehydrated, dhcp, dovecot,
  378. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  379. git, glib-networking, glibc, gnupg2, gnutls, go,
  380. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  381. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  382. libgit2, libgtk2, libgtk3, libmodplug, libnss, libpri,
  383. libshout, libss7, libssh2, libvips, libxcb, linux-headers,
  384. mdadm, mesa3d, metacity, mpg123, mosquitto, musl, nginx,
  385. oniguruma, openblas, opencv3, openjdk, openjdk-bin, openldap,
  386. openvmtools, pcmanfm, php, pigpio, postgresql, prboom,
  387. proftpd, proj, python, python-django, python-idna,
  388. python-numpy, python-urllib3, python3, qemu, qt5, qt5base,
  389. qt5enginio, quagga, rygel, squid, subversion, tcpreplay,
  390. unzip, vlc, vte, webkitgtk, wireless-regdb, xen,
  391. xfont_font-util, xlib_libICE, xlib_libXfont, xlib_libXfont2,
  392. yad, zeromq
  393. Issues resolved (http://bugs.uclibc.org):
  394. #11741: pigpio does not build host-pigpio
  395. #11876: automount using host mount/umount
  396. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  397. #11921: dahdi fails to build
  398. #11961: libpri build failure
  399. #12086: (dhcpd-missing-libs) - dhcp shared libraries not installed to..
  400. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  401. #12106: daq: build fails if libdumbnet-dev is installed in the host
  402. #12126: vc4 has neon as hard dependency
  403. 2019.05.1, Released July 7th, 2019
  404. Important / security related fixes.
  405. arch: x86: Fix typo breaking 'core-avx2' variant
  406. linux: Workaround -Werror related build failure on powerpc,
  407. by forcing CONFIG_PPC_DISABLE_WERROR on.
  408. support/testing: Emulate a machine with 256MB RAM to fix
  409. issues with certain tests running out of memory.
  410. test-pkg: Correct long option handling and clean output dir
  411. after a successful build to save disk space.
  412. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  413. partition is available before mounting.
  414. Updated/fixed packages: barebox, busybox, bzip2, davfs2,
  415. dialog, docker-cli, docker-engine, exim, expat, faad2,
  416. haveged, irssi, libcamera, libcdaudio, libcurl, libglib2,
  417. libressl, libsecret, lmbench, meson, monit, php, postgresql,
  418. psplash, python-django, qt5base, tvheadend, webkitgtk,
  419. xserver_xorg-server, znc
  420. 2019.05, released June 2nd, 2019
  421. Various fixes.
  422. Toolchain: Ensure pre-built Andes toolchains can only be
  423. selected when x86 32bit support is available on the host.
  424. Disallow PowerPC SPE ABI for GCC >= 8.x, as it is no longer
  425. supported.
  426. Infra: pkg-config: Use a dedicated timestamp file rather than
  427. .config as that gets touched by linux-4.19+, causing repeated
  428. builds.
  429. Add C-SKY support to our config.sub (gnuconfig)
  430. Updated/fixed packages: dosfstools, botan, brotli, dropbear,
  431. flare-engine, gst1-plugins-bad, libhtp, libnss, libopenssl,
  432. linuxptp, matchbox-panel, mender, mutt, netsurf,
  433. network-manager, opencv3, openjdk, openmpi, php,
  434. python-cython, qt5multimedia, qtwayland, qt5webkit-examples,
  435. supertux, suricata, tpm2-totp, v4l2loopback, wireshark,
  436. wpewebkit
  437. 2019.05-rc3, released May 25th, 2019
  438. Fixes all over the tree.
  439. check-bin-arch: Ignore /usr/lib/grub, similar to how /lib/grub
  440. is ignored.
  441. check-package: Warn about utf-8 characters in .mk files
  442. Linux: Default to 5.1.x series
  443. Updated/fixed packages: assimp, atop, chocolate-doom, cjson,
  444. ddrescue, dhcp, ffmpeg, gerbera, glibmm, gpsd, gst-ffmpeg,
  445. intel-microcode, jasper, keepalived, kismet, libcpprestsdk,
  446. libcurl, libssh2, libupnp18, luarocks, mono-gtksharp3, opus,
  447. postgresql, pcsc-lite, python, tslib, webkitgtk,
  448. wpebackend-fdo, wpewebkit
  449. 2019.05-rc2, released May 15th, 2019
  450. Fixes all over the tree.
  451. Updated/fixed packages: bind, bullet, ca-certificates,
  452. collectd, cracklib, dhcp, gdb, libinput, libtorrent-rasterbar,
  453. linknx, lynx, mono, netsurf, optee-os, postgresql, qt5enginio,
  454. qt5multimedia, rpm, samba4, sqlite, strace, uclibc, woff2
  455. Issues resolved (http://bugs.uclibc.org):
  456. #11841: grub-efi.cfg not used when building EFI disk image
  457. 2019.05-rc1, Released May 8th, 2019
  458. Fixes all over the tree and new features.
  459. Architecture: Andes 32-bit (nds32) support added.
  460. Only build host-lzip / host-xz when really needed by packages,
  461. not just when not available on the build host.
  462. Toolchain: Glibc bumped to 2.29, musl bumped to 1.1.22,
  463. binutils 2.32 added, 2.28/2.29 removed, default changed to
  464. 2.31.1.
  465. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  466. forward {f,l,}chown calls to libc when running under fakeroot
  467. to fix issues when building in restricted environments
  468. (E.G. user namespace with bubblewrap).
  469. Linux: Also build default make target to ensure extra files
  470. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  471. built. Notice: This may mean that extra host utilities like
  472. uboot-mkimage are needed.
  473. Infrastructure: show-info and <pkg>-show-info make targets
  474. added to output package metadata in JSON format for external
  475. use.
  476. pkg-generic: Only tweak .la files needing it to ensure they
  477. are not included in subsequent package file lists.
  478. test-pkg: Generate a basic package config if none is
  479. specified.
  480. Gettext-tiny package added as an lightweight replacement for
  481. GNU gettext for situations where NLS support is not needed.
  482. New defconfigs: Andes AE3XX, Freescale imx8mpico / imx8qxpmek
  483. / T2080 QDS RDB, Licheepi zero, Orangepi R1
  484. Removed defconfigs: Olimx A20 Olinuxino Lime legacy
  485. New packages: bats-core, bayer2rgb-neon, brickd, cog, dacapo,
  486. enet, gettext-tiny, gli, gst1-plugins-bayer2rgb-neon,
  487. imx-sc-firmware, intel-mediadriver, intel-mediasdk, libcamera,
  488. libhtp, libp11, libwpe, lua-binaryheap, lua-gd, lua-lunitx,
  489. mender-artifact, most, oniguruma, openjdk, openjdk-bin,
  490. opensbi, optee-benchmark, optee-client, optee-examples,
  491. optee-os, optee-test, paho-mqtt-cpp, python-aioblescan,
  492. python-aioconsole, python-aiohttp-cors, python-aiomonitor,
  493. python-backcall, python-jedi, python-parso, python-pyjwt,
  494. python-terminaltables, suricata, tpm2-totp, uftp,
  495. wpebackend-fdo, wpewebkit
  496. Removed packages: libump, lunit, sunxi-mali
  497. Issues resolved (http://bugs.uclibc.org):
  498. #11716: Typo on website, saying latest release is 2018.2.11
  499. #11756: package/syslinux: MBR's don't fit because of binutils..
  500. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  501. #11816: Only selected coreutils binaries are installed
  502. 2019.02.8, released December 7th, 2019
  503. Important / security related fixes.
  504. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  505. <pkg>_DL_OPTS by default, just like it is done for a number of
  506. other package variables
  507. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  508. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  509. the (rare) case where the .py files are needed at runtime
  510. rather than .pyc.
  511. Fix <pkg>-reconfigure handling for packages using the kconfig
  512. infrastructure.
  513. Toolchain: ensure external toolchain kernel headers version
  514. check correctly stop the build on mismatch
  515. Deconfigs: beaglebone: fix boot issue
  516. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  517. clamav, collectd, connman, faifa, gob2, haproxy,
  518. intel-microcode, ipsec-tools, jasper, jpeg-turbo, kodi,
  519. kvm-unit-tests, libftdi, libftdi1, libnss, libstrophe,
  520. libsvgtiny, lvm2, lzma, mariadb, minicom, neardal, nodejs,
  521. opencv3, openvmtools, oracle-mysql, perl-gdgraph,
  522. perl-gdtextutil, php, postgresql, prosody, python-django,
  523. rabbitmq-c, rauc, redis, rpcbind, socat, spice,
  524. spice-protocol, tftpd, tiff, webkitgtk
  525. New packages: libmspack
  526. Issues resolved (http://bugs.uclibc.org):
  527. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  528. #12171: Python-opencv needs config.py and config-3.7.py to run..
  529. #12211: host-nodejs 10.15.3 package fail to build
  530. #12316: tzdata fails to install with empty "default local time"
  531. 2019.02.7, Released November 10th, 2019
  532. Important / security related fixes.
  533. support/testing: use a kernel with HW_RANDOM_VIRTIO to work
  534. around issues with lack of entrophy
  535. Toolchain: Also copy libssp.so for external toolchains if SSP
  536. is enabled to handle toolchains providing SSP support in
  537. libssp rather than in the C library
  538. Download: Also use the package download method for extra
  539. downloads from the same site, so it does not get confused by
  540. URLs containing '+'
  541. Fakeroot now works correctly under Microsoft Windows 10
  542. Services for Linux, which does not provide SYSV IPC support
  543. utils/test-pkg: ensure to exit with an error upon failure
  544. Updated/fixed packages: asterisk, azmq, cups-filters,
  545. domoticz, duma, elf2flt, eudev, exfat, exfat-utils, fakeroot,
  546. file, freerdp, gd, ghostscript, go, gvfs, intel-microcode,
  547. kvm-unit-tests, libarchive, libnspr, libnss, libopenssl,
  548. libpcap, libpciaccess, librsvg, libseccomp, libsigrok,
  549. libtorrent, libunwind, linux-tools, lua-sdl2, lxc, minizip,
  550. mjpegtools, mongoose, php, python, python-pysnmp-apps,
  551. python3, qemu, qt5base, ruby, safeclib, samba4, sdl_mixer,
  552. sox, sudo, systemd, tcpdump, unscd, util-lkinux, vtun, xvisor,
  553. yaffs2utils
  554. Issues resolved (http://bugs.uclibc.org):
  555. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  556. #12261: sudo versions prior to 1.8.28 are affected
  557. 2019.02.6, Released October 3rd, 2019
  558. Important / security related fixes.
  559. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  560. Use default console settings
  561. Dependencies: Ensure host has JSON::PP perl module installed
  562. if webkitgtk/wpewebkit packages are enabled as it is needed
  563. during their build process.
  564. Toolchain: Generate check-headers program under BUILD_DIR
  565. rather than /tmp to fix issues with distributions mounting
  566. /tmp noexec.
  567. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  568. cups-filters, docker-cli, docker-engine, docker-proxy,
  569. dropbear, e2fsprogs, eudev, exim, expat, gcc, go, ifplugd,
  570. haveged, iptables, joe, kf5-extra-cmake-modules,
  571. kf5-modemmanager-qt, kf5-networkmanager-qt, libcurl,
  572. libgcrypt, libgpg-error, libnftl, libnspr, libnss, libopenssl,
  573. luksmeta, mariadb, mbedtls, mongodb, mosquitto, ncurses,
  574. nfs-utils, nghttp2, nodejs, openvmtools, php, protobuf, putty,
  575. qemu, qt5base, samba4, swupdate, systemd-bootchart, thttpd,
  576. uclibc, unzip, util-linux, wireshark
  577. Issues resolved (http://bugs.uclibc.org):
  578. #10806: Allow nfs-utils to use ipv6
  579. #11781: mariadb build error
  580. #12031: Build of cups-filters fails while linking, apparently due..
  581. #12141: eudev package is missing "render" and "kvm" groups
  582. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  583. #12241: Permission denied while running "make"
  584. 2019.02.5, Released September 2nd, 2019
  585. Important / security related fixes.
  586. Filesystems: Pass extra pax options to tar for binary
  587. reproducibility.
  588. Updated/fixed packages: apache, arm-trusted-firmware,
  589. asterisk, atk, autofs, batctl, batman-adv, berkeleydb, brotli,
  590. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  591. cryptopp, dahdi-linux, dahdi-tools, daq, dehydrated, dovecot,
  592. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  593. git, glib-networking, glibc, gnupg2, gnutls, go,
  594. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  595. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  596. libgit2, libgtk3, libmodplug, libnss, libpri, libshout,
  597. libss7, libssh2, libvips, libxcb, linux-headers, mdadm,
  598. mesa3d, metacity, mpg123, mosquitto, musl, nginx, openblas,
  599. opencv3, openldap, openvmtools, pcmanfm, php, pigpio,
  600. postgresql, prboom, proftpd, proj, python, python-django,
  601. python-idna, python-numpy, python-urllib3, python3, qemu, qt5,
  602. qt5base, qt5enginio, quagga, rygel, squid, subversion,
  603. tcpreplay, unzip, vlc, vte, webkitgtk, weston, wireless-regdb,
  604. xen, xfont_font-util, xlib_libICE, xlib_libXfont,
  605. xlib_libXfont2, yad, zeromq
  606. Issues resolved (http://bugs.uclibc.org):
  607. #11741: pigpio does not build host-pigpio
  608. #11876: automount using host mount/umount
  609. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  610. #11921: dahdi fails to build
  611. #11961: libpri build failure
  612. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  613. #12106: daq: build fails if libdumbnet-dev is installed in the host
  614. #12126: vc4 has neon as hard dependency
  615. 2019.02.4, Released July 10th, 2019
  616. Important / security related fixes.
  617. arch: x86: Fix typo breaking 'core-avx2' variant, add Westmere
  618. variant.
  619. linux: Workaround -Werror related build failure on powerpc,
  620. by forcing CONFIG_PPC_DISABLE_WERROR on.
  621. support/testing: Emulate a machine with 256MB RAM to fix
  622. issues with certain tests running out of memory.
  623. test-pkg: Correct long option handling and clean output dir
  624. after a successful build to save disk space.
  625. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  626. passed before the standard exclusions so they are not ignored
  627. by rsync when using override-srcdir.
  628. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  629. partition is available before mounting.
  630. Updated/fixed packages: barebox, bzip2, davfs2, dbus, dialog,
  631. docker-cli, docker-engine, expat, faad2, ffmpeg, freeswitch,
  632. gerbera, haveged, irssi, libcdadio, libgit2, libglib2,
  633. libsecret, libvncserver, lmbench, logrotate, mariadb, meson,
  634. mongoose, monit, mpd, openblas, php, postgresql, psplash,
  635. python, python-django, python3, qt5base, samba4, taglib,
  636. tvheadend, vlc, webkitgtk, xserver_xorg-server, znc
  637. 2019.02.3, Released June 7th, 2019
  638. Important / security related fixes.
  639. Infra: pkg-config: Use a dedicated timestamp file rather than
  640. .config as that gets touched by linux-4.19+, causing repeated
  641. builds.
  642. check-bin-arch: Also ignore /usr/lib/grub to support merged
  643. /usr setups, similar to how /lib/grub is ignored.
  644. gnuconfig/config.sub: Add C-SKY architecture support.
  645. Updated/fixed packages: assimp, atftp, atop, botan, busybox,
  646. ca-certificates, chocolate-doom, cjson, coreutils, cracklib,
  647. ddrescue, dhcp, docker-cli, docker-containerd, docker-engine,
  648. dosfstools, dovecot, dovecot-pigeonhole, dropbear, exim,
  649. ffmpeg, flare-engine, gcc, gdb, gerbera, glibmm, go, gpsd,
  650. gst-ffmpeg, gst1-plugins-bad, gst1-plugins-base, imagemagick,
  651. intel-microcode, jasper, kf5-kcoreaddons, kismet, libcurl,
  652. libglib2, libnss, libopenssl, libsigrok, libssh2, libupnp18,
  653. linuxptp, luajit, lynx, matchbox-panel, mender,
  654. netcat-openbsd, netsurf, nfs-utils, opus, orc, owfs,
  655. pcsc-lite, php, popt, postgresql, python, python-cython,
  656. python-django, python-ply, qt5enginio, rpm, runc, samba4,
  657. sqlite, subversion, supertux, systemd, tslib, uclibc,
  658. v4l2loopback, webkitgtk, woff2
  659. Issues resolved (http://bugs.uclibc.org):
  660. #11816: Only selected coreutils binaries are installed
  661. #11841: grub-efi.cfg not used when building EFI disk image
  662. #11911: systemd v240 memory leak in systemd-journald
  663. 2019.02.2, Released April 29th, 2019
  664. Important / security related fixes.
  665. Only build host-lzip / host-xz when really needed by packages,
  666. not just when not available on the build host.
  667. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  668. forward {f,l,}chown calls to libc when running under fakeroot
  669. to fix issues when building in restricted environments
  670. (E.G. user namespace with bubblewrap).
  671. Linux: Also build default make target to ensure extra files
  672. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  673. built. Notice: This may mean that extra host utilities like
  674. uboot-mkimage are needed.
  675. Defconfigs: ASUS tinker and Amarula vyasa rk3822: Support
  676. larger kernel images, Atmel SAM5D27, SAM5D2,3,4 xplained:
  677. Increase rootfs size to fit utilities, Raspberry Pi 64bit:
  678. Include overlays in sdcard image
  679. Updated/fixed packages: android-tools, apache, bind, binutils,
  680. busybox, civetweb, cjson, copas, davfs2, docker-cli,
  681. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  682. freerdp, gerbera, ghostscript, git, gnutls, go, gst-omx,
  683. gst1-plugins-base, gst1-plugins-ugly, haproxy, hostapd,
  684. ipsec-tools, libfreefare, libfuse, libkrb5, libpng, libxml2,
  685. libxslt, linknx, linux, linux-firmware, linux-tools, live555,
  686. lldp, lrzsz, lynx, madplay, make, minicom, mongodb, msmtp,
  687. musl, mutt, neon, netsnmp, numactl, opus, perl, php,
  688. postgresql, pure-ftpd, python-urllib3, python3, qt5base,
  689. rapidxml, rpm, rsyslog, ruby, runc, samba4, sane-backends,
  690. softether, stunnel, sysklogd, syslinux, syslog-ng,
  691. systemd-bootchart, thttpd, thrift, tiff, tor, tpm2-tools,
  692. tpm2-tss, webkitgtk, yaffs2utils, wget, wpa_supplicant, wsapi,
  693. xapp_xfd, xapp_xload, xlib_libXpm, xserver_xorg-server, xz,
  694. znc
  695. Issues resolved (http://bugs.uclibc.org):
  696. #11756: package/syslinux: MBR's don't fit because of binutils..
  697. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  698. 2019.02.1, Released March 29th, 2019
  699. Important / security related fixes.
  700. pkg-generic: Only tweak .la files needing it to ensure they
  701. are not included in subsequent package file lists.
  702. test-pkg: Generate a basic package config if none is
  703. specified.
  704. Updated/fixed packages: asterisk, avahi, bash, beecrypt,
  705. binutils, busybox, clamav, cups, efl, eigen, fetchmail, file,
  706. flashrom, fltk, gerbera, git, glibc, gnuradio, go,
  707. gst-plugins-bad, intel-gmmlib, jq, kexec, kf5-modemmanager-qt,
  708. leveldb, libcurl, libdrm, libftdi1, libglib2, libiio, libpcap,
  709. libseccomp, libssh2, log4cplus, lvm2, mariadb, mender,
  710. mongodb, mosquitto, musl, nodejs, ntp, openjpeg, owfs, php,
  711. pure-ftpd, putty, python-aiojobs, qt5webkit, rdesktop, samba4,
  712. sunxi-tools, supertux, swupdate, tpm2-abrmd, tpm2-tss,
  713. wavemon, wireshark, vsftpd, xapp_xdm, xen,
  714. xdriver_xf86-video-fbdev, xlib_libXdmcp
  715. Issues resolved (http://bugs.uclibc.org):
  716. #11716: Typo on website, saying latest release is 2018.2.11
  717. 2019.02, released March 4th, 2019
  718. Minor fixes.
  719. Libressl support added for Qt 5.6 as a replacement for
  720. openssl, as 5.6 is not compatible with openssl 1.1.x.
  721. Updated/fixed packages: cutelyst, devmem2, gqrx,
  722. gst-plugins-bad, libraw, libsoxr, qt5base, runc, systemd, tor
  723. 2019.02-rc3, released March 1st, 2019
  724. Fixes all over the tree.
  725. Openssl support dropped from Qt 5.6, as it isn't compatible
  726. with openssl 1.1.x.
  727. Toolchain: GCC 8.x updated to 8.3.0, fixing a number of
  728. issues.
  729. Dependencies: Require CMake 3.8 or newer to fix compilation
  730. issue with certain packages. If not available, host-cmake will
  731. instead be built.
  732. Printvars: Fix performance regression since 2018.02
  733. Scanypi: Correctly handle underscores in python package names.
  734. Updated/fixed packages: botan, clamav, cryptopp, i2pd,
  735. ibrcommon, iproute2, libcpprestsdk, libssh, lua-curl,
  736. luaexpat, qt5base, runc, stress-ng, syslinux, systemd,
  737. upmpdcli, zbar
  738. Issues resolved (http://bugs.uclibc.org):
  739. #9966: util-linux-2.30/.stamp_built' failed
  740. #11696: possible typo in board/pc/post-build.sh
  741. 2019.02-rc2, released February 23th, 2019
  742. Fixes all over the tree.
  743. Removed zynq_zybo defconfig, as it hasn't seen any update
  744. since it was added in 2016, and uses a U-Boot version not
  745. compatible with openssl-1.1.x.
  746. Linux: Ignore user supplied downloadable hashes, as no hash
  747. checksums are available for those.
  748. Updated/fixed packages: bind, cryptopp, docker-containerd,
  749. dtc, efivar, gdb, imagemagick, ipmiutil, libcpprestsdk,
  750. libcurl, libgpiod, libid3tag, libv4l, log4cplus, luvi,
  751. madplay, mender, mosquitto, poco, postgresql, proftpd,
  752. pulseaudio, python-django, qemu, qt5base, qwt, rabbitmq-c,
  753. reaver, safeclip, stress-ng, swupdate, syslog-ng, systemd,
  754. tor, unzip, xenomai
  755. Issues resolved (http://bugs.uclibc.org):
  756. #11501: compile sdl2 with enable wayland
  757. #11681: .. unable to initialize decompress status for section..
  758. 2019.02-rc1, released February 13th, 2019
  759. Fixes all over the tree and new features.
  760. Dependencies:
  761. Require Python >= 2.7 as it is needed for E.G. building
  762. libglib2.
  763. Ensure GNU gzip is used for reproducible tarballs (instead of
  764. pigz)
  765. Infrastucture:
  766. Ensure the PLATFORM and OS environment variables are not set,
  767. as they cause build issues for some packages.
  768. The package list infrastructure now correctly handles packages
  769. installing files with old mtime.
  770. Add a config option to force all optional host utilities to be
  771. built, even if suitable versions are available on the build
  772. machine.
  773. graph-build-time: Also show time spent downloading
  774. Download: fixes for SSH/SCP support
  775. Ensure user provided permissions override permissions from
  776. packages.
  777. SDK: Fix handling of relative symlinks (targets starting with
  778. '.' or '..')
  779. BR2_SYSTEM_DEFAULT_PATH setting to customize the default path
  780. for processes.
  781. The custom skeleton logic will now populate the needed /bin,
  782. /lib, /sbin directories/symlinks if not present. Merged /usr
  783. can now be used with a custom skeleton.
  784. Rootfs overlays can now override symbolic links from
  785. packages. This was disabled to ensure the correct symbolic
  786. links are present when merged /usr is used. Instead validate
  787. that the rootfs overlays do not include invalid /bin, /sbin
  788. and /lib entries.
  789. The waf infrastructure now support the <pkg>_SUBDIR variable,
  790. similar to the other package types.
  791. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  792. Various improvements to the meson infrastructure.
  793. Luarocks: A Buildroot addon has been added to automate
  794. creating a Buildroot package from luarocks, similar to
  795. scancpan and scanpypi.
  796. scanpypi: protect against zip-slip vulnerability in zip/tar
  797. handling
  798. check-package: fix Python 3 support
  799. get-developers: Fix behaviour when called from elsewhere than
  800. the toplevel directory.
  801. pkg-stats: Show latest upstream version of each package, based
  802. on data from release-monitoring.org
  803. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  804. a clean tree when ccache is enabled.
  805. Default to sha256 password encoding, drop md5 support.
  806. Architecture:
  807. Support for RISC-V 32bit architecture, ARM A55, 75 and Saphira
  808. variants, MIPS support for mips32r3, mips64r3 and Marvell
  809. Octeon II/III variants.
  810. Toolchain:
  811. ARC toolchain 2018.09, ARM 8.2-2018.11, Codescape IMG/MTI MIPS
  812. 2018.09-02, MUSL 1.1.21, GCC 6.5.0 / 7.4.0, GDB 8.2.1
  813. Packages:
  814. openssl: Bump to 1.1.1x series, bringing TLSv1.3 support and
  815. long term support.
  816. fftw: Split into fftw-{single,double,long-double,quad}
  817. packages for the different data precision options.
  818. libcurl: Now has explicit TLS backend selection options.
  819. linux: Support building device tree blobs with the -@ option
  820. for device tree overlays.
  821. weston: The weston-imx i.MX variant is now used when
  822. imx-gpu-viv is enabled
  823. pkgconf: Update to 1.5.3, which brings support for
  824. --define-prefix (used by GStreamer)
  825. Add host-python3-setuptools package to handle host python
  826. packages needing python3 with setuptools support.
  827. New defconfigs: Aarch64 EFI, Orangepi one plus, Orangepi lite
  828. 2, QEMU RISC-V 32bit virt, Rock64
  829. New packages: brcm-patchram-plus, clinfo, cunit, docker-cli,
  830. erlang-p1-eimp, exempi, fail2ban, fftw-double,
  831. fftw-double-long, fftw-quad, fftw-single, gerbera, grpc,
  832. gst1-shark, intel-gmmlib, iwd, kf5-kcoreaddons, libeastl,
  833. libpackagekite, libtorrent-rasterbar, lua-std-debug,
  834. lua-std-normalize, mini-snmpd, netsurf, pamtester, pcm-tools,
  835. python-aiodns, python-aiohttp, python-aiohttp-jinja2,
  836. python-aiohttp-remotes, python-aiohttp-security,
  837. python-aiohttp-session, python-aiohttpd-sse, python-aiojobs,
  838. python-cchardet, python-pycares, python-sentry-sdk,
  839. python-wtforms, python3-setuptools, rcw, rtc-tools, shim,
  840. utp_com, vmtouch, websocketpp
  841. Removed packages: fftw, lua 5.2.x, luacrypto, perl-time-hires,
  842. python-pyqt, qt, qtuio, tn5250
  843. Issues resolved (http://bugs.uclibc.org):
  844. #10851: Patch to handle numpad Enter key properly
  845. #11066: x11r7 X11 S40xorg leads to a black screen on QEMU x86..
  846. #11126: Bash Shell Programming using Buildroot
  847. #11426: pps-tools bash dependency
  848. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  849. #11536: dt-utils building fails with glibc 2.28
  850. #11546: open-vm-tools with glibc 2.28
  851. #11566: Fix init script
  852. #11576: Unable to start apache with event MPM on raspberry pi 3
  853. #11591: [pkgconf 1.5.3] xserver OpenGL support is missing
  854. #11606: libjpeg has no Config.in
  855. #11616: 2018.02.09 fails to build libzlib with full RELRO..
  856. #11656: Custom device tree and u-boot boot.scr not integrated..
  857. #11666: Touchscreen with (Py)Qt5 should use tslib instead of evdev
  858. 2018.11.4, Released March 28th, 2019
  859. Important / security related fixes.
  860. Updated/fixed packages: avahi, beecrypt, binutils, botan,
  861. busybox, clamav, cups, devmem2, efl, fetchmail, file, fltk,
  862. gcc, gdb, git, go, gst-plugins-bad, iproute2, jq,
  863. kf5-modemmanager-qt, leveldb, libopenssl, libraw, libseccomp,
  864. libsoxr, libssh2, mariadb, mosquitto, nodejs, ntp, openjpeg,
  865. perl, php, putty, qt5webkit, rdesktop, runc, samba4, swupdate,
  866. systemd, tor, vsftpd, wireshark, xapp_xdm, xen, xlib_libXdmcp
  867. 2018.11.3, Released February 23th, 2019
  868. Important / security related fixes.
  869. Ensure the PLATFORM and OS environment variables are not set,
  870. as they cause build issues for some packages.
  871. The package list infrastructure now correctly handles packages
  872. installing files with old mtime.
  873. Linux: Skip hash checks for user supplied downloadable
  874. patches, as no hash checksums are available for those.
  875. scanpypi: protect against zip-slip vulnerability in zip/tar
  876. handling
  877. Download: fixes for SSH/SCP support
  878. SDK: Fix handling of relative symlinks (targets starting with
  879. '.' or '..')
  880. Updated/fixed packages: bind, dhcpcd, docker-compose,
  881. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  882. dtc, efivar, ghostscript, gnuradio, imagemagick, jpeg-turbo,
  883. libarchive, libb64, libcurl, libgeotiff, libgpiod, libid3tag,
  884. libupnp18, log4cplus, madplay, meson, mosquitto, openssh, php,
  885. poco, postgresql, proftpd, pulseaudio, python, python-django,
  886. python3, qt5base, reaver, runc, sg3_utils, sqlcipher,
  887. swupdate, systemd, unzip, webkitgtk, xenomai
  888. 2018.11.2, Released January 30th, 2019
  889. Important / security related fixes.
  890. Defconfigs: Fixes for imx6slevk, imx7dsabresd, imx8mqevk, Lego
  891. EV3, QEMU AArch64-virt
  892. Download: Fix scp download handling
  893. check-package: fix Python 3 support
  894. get-developers: Fix behaviour when called from elsewhere than
  895. the toplevel directory.
  896. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  897. a clean tree when ccache is enabled.
  898. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  899. Updated/fixed packages: acpica, apache, apr, avrdude, cargo,
  900. cc-tool, dash, dhcpdump, dmalloc, docker-containerd, efivar,
  901. fwts, glibc, gnuchess, gnupg2, go, leveldb, libarchive,
  902. libassuan, libftdi1, libgpg-error, libhttpparser, libkcapi,
  903. libmad, libsndfile, libsquish, liburiparser, libwebsock,
  904. libxml2, lighttpd, llvm, lm-sensors, lua-msgpack-native, lxc,
  905. mariadb, mbedtls, meson, mosquitto, netatalk, nodejs, odhcp6c,
  906. openresolv, openssh, pango, patchelf, php, python-django,
  907. python-numpy, python-pyyaml, rauc, rp-pppoe, s6-networking,
  908. samba4, sdl_sound, shairport-sync, sqlite, subversion,
  909. sunxi-cedarx, swupdate, systemd, tcpreplay, tekui, tmp2-abrmd,
  910. tpm2-tools, tpm2-tss, udisks, unixodbc, usb_modeswitch,
  911. webkitgtk, wireshark, wolfssl, xapp_rgb, xenomai, xerces
  912. Issues resolved (http://bugs.uclibc.org):
  913. #11576: Unable to start apache with event MPM on raspberry pi 3
  914. 2018.11.1, Released December 20th, 2018
  915. Important / security related fixes.
  916. defconfigs: Fixes for bananapi m2 ultra, ci20
  917. Download wrapper: Fix for urlencode handling
  918. Updated/fixed packages: asterisk, docker-compose,
  919. docker-engine, dt-utils, gnutls, go, grub, libbsd, libcurl,
  920. libpgpme, libiscsi, liblo, libmpd, libopenssl, liboping,
  921. libpam-tacplus, libpjsip, linux-firmware, liquid-dsp,
  922. lua-cqueue, luvi, lxc, lynx, nginx, nodejs, openzwave, php,
  923. pps-tools, proftpd, prosody, sdl2_net, squashfs, swupdate,
  924. uclibc, vtu, webkitgtk, wine, xen
  925. New packages: docker-cli
  926. Issues resolved (http://bugs.uclibc.org):
  927. #11426: pps-tools bash dependency
  928. #11536: dt-utils building fails with glibc 2.28
  929. 2018.11, Released December 1st, 2018
  930. Minor fixes.
  931. Updated/fixed packages: c-ares, quagga, squid
  932. 2018.11-rc3, released November 30th, 2018
  933. Fixes all over the tree.
  934. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  935. olinuxino lime legacy, Orangepi zero plus 2, PC, Riotboard.
  936. graph-depends: Fix for package names starting with a non-alpha
  937. character.
  938. Updated/fixed packages: alsa-utils, botan, dante, domoticz,
  939. dtc, freetype, gauche, gcc, gdb, ghostscript, glibc,
  940. imx-usb-loader, libbsd, libid3tag, libkrb5, libmicrohttpd,
  941. libopenssl, libsoxr, linux, motion, msgpack, mtd,
  942. perl-net-ssleay, php, popt, python-numpy, qt5declarative,
  943. samba4, shadowsocks-libev, stress-ng, systemd, usb_modeswitch,
  944. webkitgtk, valgrind, weston, xfsprogs
  945. 2018.11-rc2, released November 21th, 2018
  946. Fixes all over the tree.
  947. fs: Drop intermediate tarball from the filesystem handling to
  948. fix an issue with xattrs handling related to fakeroot. Ensure
  949. tarball target includes xattrs.
  950. download: Fix confusion in git submodule handling if dl/ is a
  951. symlink.
  952. genrandconfig: Fix missing newline in BR2_WGET handling,
  953. causing the following line to be ignored. This would affect
  954. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  955. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  956. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  957. show-build-order: Also include the dependencies of
  958. rootfs-common.
  959. Fix a number of build issues in packages for the recently
  960. merged RISC-V architecture support.
  961. Updated/fixed packages: dt-utils, easydbus, elfutils,
  962. flare-engine, flatcc, glibc, gstreamer, gstreamer1, imx-uuc,
  963. libassuan, libcorrect, libiscsi, libkrb5, libmicrohttpd,
  964. libnftnl, libnspr, libnss, libsemanage, libsigsegv, libv4l,
  965. ltp-testsuite, luv, luvi, make, ncmpc, netplug, openocd,
  966. prosody, qemu, rpm, sconeserver, shadowsocks-libev,
  967. supertuxcart, syslinux, systemd, trace-cmd, uclibc,
  968. uclibc-ng-test, vtun, webkitgtk, weston, wireshark, xen,
  969. xlib_libfontenc
  970. Issues resolved (http://bugs.uclibc.org):
  971. #11086: download/git submodule breaks on symlinked dl folder
  972. #11216: Capabilities not applied to filesystem
  973. 2018.11-rc1, released November 9th, 2018
  974. Fixes all over the tree and new features.
  975. Architecture: RISC-V support (64bit) added.
  976. Toolchain: Glibc bumped to 2.28. Fortran support for external
  977. toolchains. ARM (Linaro) toolchains updated to 8.2-2018.08.
  978. Hardening flags (RELRO) are now handled by the toolchain
  979. wrapper instead of explicitly through CFLAGS/LDFLAGS, fixing a
  980. number of issues.
  981. Filesystems: Support for creating btrfs and f2fs filesystems
  982. added.
  983. Add a number of patches to fix build errors for host utilities
  984. on modern distributions using glibc-2.28.
  985. mkusers: Ensure existing group members are preserved when a
  986. group is reprocessed.
  987. printvars: Fix issue with exceeding shell command line length
  988. limits for certain setups.
  989. Workaround added for incompatibility issues between host-dtc
  990. and older U-Boot and Linux kernel versions.
  991. Detect and reject build paths containing '@', as this confuses
  992. a number of packages, including GCC.
  993. utils/diffconfig: Make it work for (non-Buildroot) config
  994. files not using the BR2_ prefix.
  995. New defconfigs: Amarula a64-relic, Bananapi m2 ultra, Embest
  996. riotboard, Hardkernel Odroid XU-4, QEMU riscv64-virt.
  997. olimex_a20_olinuxion_lime_mali is renamed to _legacy.
  998. OpenCL infrastructure support added, similar to how OpenGL is
  999. handled.
  1000. Linux-headers: Support for kernel headers from a custom
  1001. tarball / git repo added.
  1002. New packages: bird, bluez5_utils-headers, btrfs-progs,
  1003. checksec, davici, duktape, ell, haproxy, libclc, libcorrect,
  1004. libopencl, libopenresolv, nss-myhostname,
  1005. perl-apache-logformat-compiler, perl-appconfig,
  1006. perl-astro-suntime, perl-class-inspector, perl-class-load,
  1007. perl-class-method-modifiers, perl-class-std,
  1008. perl-class-std-fast, perl-cookie-baker, perl-data-dump,
  1009. perl-data-optlist, perl-data-uuid, perl-data-manip,
  1010. perl-dbd-mysql, perl-dbi, perl-devel-globaldestruction,
  1011. perl-devel-stacktrace, perl-devel-stacktrace-ashtml,
  1012. perl-device-serialport, perl-dist-checkconflicts,
  1013. perl-exporter-tiny, perl-file-sharedir, perl-file-slurp,
  1014. perl-filesys-notify-simple, perl-hash-multivalue,
  1015. perl-http-entity-parser, perl-http-headers-fast,
  1016. perl-http-multipartparser, perl-io-interface,
  1017. perl-io-socket-multicast, perl-json-maybexs, perl-mime-tools,
  1018. perl-module-implementation, perl-module-runtime, perl-moo,
  1019. perl-number-bytes-human, perl-package-stash, perl-params-util,
  1020. perl-plack, perl-posix-strftime-compiler, perl-role-tiny,
  1021. perl-streams-buffered, perl-sub-exporter-progressive,
  1022. perl-sub-install, perl-sub-quote, perl-sys-cpu,
  1023. perl-sys-meminfo, perl-sys-mmap, perl-time-parsedate,
  1024. perl-type-tiny, perl-www-form-urlencoded, perl-x10, pigpio,
  1025. python-async-timeout, python-falcon, python-fire,
  1026. python-mimeparse, python-multidict, python-passlib,
  1027. python-pigpio, python-pip, python-ply, python-py,
  1028. python-pyasn1, python-pyasn1-modules, python-pycryptodomex,
  1029. python-pyhamcrest, python-pysmi, python-scapy, python-semver,
  1030. python-serial-asyncio, python-typing, python-uvloop,
  1031. pythonwrapt, python-yarl, python-zeroconf, riscv-pk, sedutil,
  1032. spandsp, tini, waffle, xapian
  1033. Removed packages: bootutils, dsp-tools, expedite, gst-dsp,
  1034. xloader
  1035. Issues resolved (http://bugs.uclibc.org):
  1036. #11116: Buildroot should set PYTHON_EGG_CACHE instead of writing ..
  1037. #11156: In python3 module 'socket' has no attribute 'AF_BLUETOOTH'
  1038. #11166: Erlang bad argument on valid uint64 when crosscompiled on..
  1039. #11206: zlib: fails to build with Linaro toolchain, BR2_RELRO_FULL..
  1040. #11241: ACPID shouldn't depend on BR2_x86_64 || BR2_i386
  1041. #11251: Util scanpypi failes when package change - to _ in tar file
  1042. #11266: qt5base-5.11.1 does not compile with musl, complains about..
  1043. #11286: python-rpi-gpio only should depend on BR2_arm || BR2_aarch64
  1044. #11321: Latest master fails to build readline with RELRO FULL
  1045. #11326: sysvinit fails to build in latest GIT master
  1046. #11331: Internal application no longer builds with latest GIT master
  1047. #11336: nfs-utils fails to build in latest GIT master
  1048. #11351: build root-2018-08, linaro aarch64 compile error
  1049. #11376: mdmon binary missing
  1050. #11391: Valgind availability on ARM
  1051. #11396: uboot environment image checksum invalid if target is big endian
  1052. #11421: GCC error message for ARM Cortex-A9/ARM.V7
  1053. #11451: Can't find libmpfr.so.4 when using external toolchain on ubuntu..
  1054. #11481: Docs: Is external.desc required?
  1055. 2018.08.4, Released December 20th, 2018
  1056. Important / security related fixes.
  1057. Defconfigs: Fixes for ci20, orangepi zero plus 2
  1058. Download wrapper: Fix for urlencode handling
  1059. Updated/fixed packages: c-ares, dante, docker-compose,
  1060. domoticz, freetype, ghostscript, gnutls, libcurl, libgpgme,
  1061. libid3tag, libiscsi, libmpd, libopenssl, liboping, libpjsip,
  1062. linux-firmware, liquid-dsp, luvi, lynx, msgpack, nginx,
  1063. nodejs, php, popt, pps-tools, prosody, python-numpy,
  1064. python-requests, samba4, sdl2_net, squashfs, swupdate,
  1065. systemd, uclibc, vte, webkitgtk, wine, xfsprogs
  1066. Issues resolved (http://bugs.uclibc.org):
  1067. #11426: pps-tools bash dependency
  1068. 2018.08.3, Released November 26th, 2018
  1069. Important / security related fixes.
  1070. fs: Drop intermediate tarball from the filesystem handling to
  1071. fix an issue with xattrs handling related to fakeroot. Ensure
  1072. tarball target includes xattrs.
  1073. download: Fix confusion in git submodule handling if dl/ is a
  1074. symlink.
  1075. toolchain: Only allow enabling stack protection on
  1076. architectures with control flow integrity (CFI) support. Only
  1077. allow FORTIFY_SOURCE support on gcc >= 6.
  1078. genrandconfig: Fix missing newline in BR2_WGET handling,
  1079. causing the following line to be ignored. This would affect
  1080. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1081. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1082. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1083. show-build-order: Also include the dependencies of
  1084. rootfs-common.
  1085. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1086. olinuxino lime legacy, Orangepi zero plus 2.
  1087. graph-depends: Fix for package names starting with a non-alpha
  1088. character.
  1089. Updated/fixed packages: attr, audit, bind, brotli, busybox,
  1090. dtc, easydbus, elfutils, flare-engine, flatcc, gauche, gcc,
  1091. giflib, gpsd, lcdproc, libcurl, libiscsi, libkcapi, libnfs,
  1092. libnspr, libnss, libsemanage, liburiparser, lighttpd,
  1093. lua-curl, mariadb, mmc, mosquitto, mysql, ncmpc, neardal,
  1094. netplug, network-manager, nfs-utils, nginx, openocd, openswan,
  1095. p11-kit, postgresql, prosody, qemu, qt, rpm, ruby, samba4,
  1096. squid, supertuxkart, systemd, tar, trace-cmd, traceroute,
  1097. twolame, uclibc, usb_modeswitch, vtun, webkitgtk, weston,
  1098. xdriver_xf86-video-geode, xlib_libfontenc, xserver_xorg-server
  1099. Issues resolved (http://bugs.uclibc.org):
  1100. #11086: download/git submodule breaks on symlinked dl folder
  1101. #11481: Docs: Is external.desc required?
  1102. 2018.08.2, Released October 25th, 2018
  1103. Important / security related fixes.
  1104. Workaround added for incompatibility issues between host-dtc
  1105. and older U-Boot and Linux kernel versions.
  1106. Detect and reject build paths containing '@', as this confuses
  1107. a number of packages, including GCC.
  1108. utils/get-developers: Add -e option for use with git
  1109. send-email.
  1110. utils/diffconfig: Make it work for (non-Buildroot) config
  1111. files not using the BR2_ prefix.
  1112. u-boot: Fix for environment image handling on big endian
  1113. systems.
  1114. Updated/fixed packages: binutils, ca-certificates,
  1115. cups-filters, dtc, erlang, file, freetype, gcc, git, gvfs,
  1116. jasper, leveldb, libarchive, libssh, live555, ljlinenoise,
  1117. mariadb, mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils,
  1118. poco, psmisc, ptpd2, python-enum34, qemu, qt, qt5base,
  1119. setools, spice, spice-protocol, tinc, ustr, wireshark,
  1120. Issues resolved (http://bugs.uclibc.org):
  1121. #11396: uboot environment image checksum invalid if target is big endian
  1122. 2018.08.1, Released October 7th, 2018
  1123. Important / security related fixes.
  1124. Add a number of patches to fix build errors for host utilities
  1125. on modern distributions using glibc-2.28.
  1126. mkusers: Ensure existing group members are preserved when a
  1127. group is reprocessed.
  1128. printvars: Fix issue with exceeding shell command line length
  1129. limits for certain setups.
  1130. Updated/fixed packages: acpid, android-tools, apache,
  1131. arp-scan, bandwidthd, bind, brltty, clamav, connman, cppcms,
  1132. domoticz, dtc, fio, gcc, gdb, ghostscript, gnupg, httpping,
  1133. igmpproxy, imlib2, ipsec-tools, libesmtp, libnfs, libxslt,
  1134. links, lua, mosquitto, nilfs-utils, ocrad, parted, php,
  1135. python-django, screen, shairport-sync, strongswan,
  1136. vboot-utils, webkitgtk, wireguard, x265 xen, xlib_libXdmcp,
  1137. xlib_libXfont, xlib_libXft, xlib_libxshmfence,
  1138. xutil_makedepend, zeromq
  1139. 2018.08, Released September 6th, 2018
  1140. Minor fixes.
  1141. Known issues:
  1142. - Glibc 2.28 on the build host breaks compilation of a number
  1143. of host packages. 2018.08 contains fixes for some of these
  1144. packages, but not all. Consider building on hosts (or in
  1145. containers) using older Glibc versions.
  1146. - host-dtc 1.4.7 breaks compilation of older U-Boot and Linux
  1147. kernel configurations using FDT/DTC. Consider updating the
  1148. Linux kernel to >= 4.17 and U-Boot to >= 2018.07 or
  1149. backporting commit 9130ba8846 (scripts/dtc: Update to
  1150. upstream version v1.4.6-9-gaadd0b65c987) for the Linux
  1151. kernel / commit db405d1980 for U-Boot.
  1152. Alternatively revert commit 7b929ddcf0 (dtc: bump version to
  1153. 1.4.7) and ensure your build host does not have the libfdt
  1154. development headers installed.
  1155. Updated/fixed packages: busybox, chipmunk, cutelyst,
  1156. domoticz, gcc, imagemagick, lcms2, libcurl, mediastreamer,
  1157. moarvm, php, qt, qt5virtualkeyboard, qt5webengine, screen,
  1158. sdl2, squashfs, uboot, xen
  1159. Issues resolved (http://bugs.uclibc.org):
  1160. #11261: ccache using wrong cached objects
  1161. #11276: Understanding the patch for kernel-4.9 and other..
  1162. 2018.08-rc3, Released August 31th, 2018
  1163. Fixes all over the tree.
  1164. linux: additional improvements to the flex / bison dependency
  1165. handling, use system provided variant if available. Ensure
  1166. toolchain is available when configuring for 4.18+ support.
  1167. Download: Fix handling of primary sites using file://
  1168. Toolchain: Correct external toolchain musl detection for
  1169. static toolchains.
  1170. Updated/fixed packages: aircrack-ng, bison, brltty, busybox,
  1171. cutelyst, dropbear, gr-osmosdr, i2c-tools, json-c, libconfuse,
  1172. libkcapi, libsoup, libssh, liburiparser, mbedtls, mender,
  1173. mesa3d, minicom, mjpegtools, mutt, openpowerlink, openssh,
  1174. oracle-mysql, php, postgresql, pv, qt5base, qt5quickcontrols,
  1175. rauc, shairport-sync, systemd, xlib_libX11, zeromq,
  1176. Issues resolved (http://bugs.uclibc.org):
  1177. #11091: BR2_PRIMARY_SITE doesn't work (wget is selected...
  1178. #11141: WF111 package no longer available
  1179. #11211: Internal compiler error: Killed (program cc1plus)..
  1180. #11236: util-linux fails to build on Travis CI when python..
  1181. #11246: Glibc 2.28 - fails to build host-bison and host-m4
  1182. #11256: Add python-falcon and python-mimeparse packages
  1183. 2018.08-rc2, Released August 20th, 2018
  1184. Fixes all over the tree.
  1185. pkg-kconfig: Support dependencies needed to run the
  1186. configurator, E.G. recent Linux kernel versions needing flex
  1187. and bison.
  1188. Defconfigs: ARM Juno: Bump ATF to fix a build
  1189. issue. Raspberrypi2: Bump rootfs size. Snps_archs38_vdk:
  1190. Correct /etc/inittab. Technologic ts7680: Correct genimage
  1191. configuration. Orange PI PC / Zero, Sheevaplug: Bump U-boot to
  1192. 2018.07 to fix build issue. Ensure host-openssl is pulled in
  1193. for kernel builds where needed.
  1194. Updated/fixed packages: aircrack-ng, bind, boost,
  1195. boot-wrapper-aarch64, bzip2, busybox, chrony, cryptsetup,
  1196. dahdi-tools, dbus, domoticz, eigen, ipsec-tools, libarchive,
  1197. libfuse, libgit2, libopenssl, libselinux, lighttpd, lvm2, m4,
  1198. makedevs, mariadb, mesa3d-headers, mono, ncmpc, ncurses,
  1199. nodejs, php, python-django, python-pyqt5, qt5base,
  1200. qt5serialbus, ruby, samba4, uboot-tools, uclibc, vlc,
  1201. waylandpp, wireless_tools, wireshark, wpa_supplicant, mtd,
  1202. xdriver_xf86-video-ati, xserver_xorg-server
  1203. Issues resolved (http://bugs.uclibc.org):
  1204. #10781: cryptsetup luksOpen container_file container causes..
  1205. #10996: bogus musl ARM toolchain
  1206. #11191: xattr and check-package issue
  1207. 2018.08-rc1, Released August 5th, 2018
  1208. Toolchain:
  1209. - add support for gcc 8.x, switch to gcc 7.x as the default
  1210. version
  1211. - add support for gdb 8.1, switch to gdb 8.0 as the default
  1212. and remove gdb 7.10/7.11
  1213. - add support for binutils 2.31
  1214. - NIOSII CodeSourcery toolchain updated
  1215. - Linaro AArch64 BE toolchain added, and other Linaro
  1216. toolchains updated
  1217. - Synopsys ARC pre-built toolchain updated
  1218. Architecture: add support for ARM Cortex-M7
  1219. Major updates:
  1220. - systemd bumped to 239
  1221. - Qt5 bumped to 5.11.1
  1222. - Rust bumped to 1.27
  1223. - GStreamer stack bumped to 1.14.2
  1224. - X.org server bumped to 1.20, and all X.org proto packages
  1225. replaced by the single xorgproto package
  1226. - i.MX6 support packages bumped to 6.2.4
  1227. - i.MX Vivante graphics version bumped to 6.2.4.p1.2,
  1228. adding support for Wayland and i.MX8MQ platforms
  1229. Linux: bumped to 4.17 by default.
  1230. Infrastructure: new package infrastructure added for packages
  1231. using the Meson build system
  1232. New packages: at-spi2-atk, at-spi2-core, capnproto, cmocka,
  1233. corkscrew, cutelyst, davfs2, flatcc, libidn2, libgit2,
  1234. libopusenc, mender, nghttp2, perl-convert-asn1, perl-crypt-blowfish,
  1235. perl-crypt-cbc, perl-digest-md5, perl-mime-base64-urlsafe,
  1236. perl-mojolicious-plugin-authentication, perl-net-ping,
  1237. perl-net-snmp, perl-net-ssh2, perl-net-telnet, pigz,
  1238. python-reentry, python-request-id, python-validators,
  1239. python-webob, shadowsocks-libev, speexdsp, xorgproto, wampcc
  1240. New defconfigs: NXP i.MX7D SDB, Boundary Devices Nitrogen 8M,
  1241. Olimex A10 OLinuxino, ZynqMP ZCU106
  1242. Removed packages: all xproto_* have been removed and replaced
  1243. by xorgproto
  1244. Issues resolved (http://bugs.uclibc.org):
  1245. #9411: MUSL build with RT Error relocating /lib/libgcc_s.so.1:
  1246. __cpu_indicator_init: symbol not found
  1247. #9921: lockfile module within python-daemon not available
  1248. #10341: gdb install of py files when using buildroot toolchain
  1249. includes build path
  1250. #10661: /etc/init.d/S29netplug starts multiple instances of netplugd
  1251. #10751: Missing dependency in pulseaudio package
  1252. #10811: kodi-17.6-Krypton does not compile for freescale_* devices
  1253. #10856: openblas on qemu_x86_64_defconfig fails with
  1254. "sgemm_kernel.o: No such file or directory"
  1255. #11056: Compiling a file that uses libdrm headers fails with:
  1256. fatal error: drm.h: No such file or directory
  1257. #11061: support/download: git version=master broken
  1258. #11071: Building postgresql package on Debian 9.4 x64 for armel target fails
  1259. #11076: Docker containerd installed to incorrect path
  1260. #11101: host-patchelf Endian Issue with relative RPATH
  1261. #11111: raspberry pi 3 b+: missing BSP for 64-bit kernel
  1262. #11121: statfs call corrupts memory struct statfs too small
  1263. #11181: Switching toolchain does not work
  1264. 2018.05.3, Released October 6th, 2018
  1265. Important / security related fixes.
  1266. Add a number of patches to fix build errors for host utilities
  1267. on modern distributions using glibc-2.28.
  1268. mkusers: Ensure existing group members are preserved when a
  1269. group is reprocessed.
  1270. printvars: Fix issue with exceeding shell command line length
  1271. limits for certain setups.
  1272. Updated/fixed packages: acpid, android-tools, apache,
  1273. arp-scan, bandwidthd, bind, bison, brltty, chipmunk, connman,
  1274. cppcms, fio, gcc, ghostscript, gnupg, httping, igmpproxy,
  1275. imagemagick, imlib2, ipsec-tools, lcm2, libcurl, libesmtp,
  1276. libnfs, libssh, libxslt, links, mediastreamer, minicom,
  1277. moarvm, nilfs-utils, ocrad, parted, php, postgresql, pv,
  1278. python-django, qt, qt5quickcontrols, qt5webengine, screen,
  1279. sdl2, shairport-sync, squashfs, strongswan, vboot-utils,
  1280. webkitgtk, wireguard, x265, xen, xlib_libXfont, xlib_libXft,
  1281. xlib_libxshmfence, zeromq
  1282. 2018.05.2, Released August 28th, 2018
  1283. Important / security related fixes.
  1284. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  1285. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  1286. issue.
  1287. Updated/fixed packages: acl, attr, apache, bind,
  1288. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  1289. dahdi-tools, dmidecode, dropbear, eigen, ffmpeg, gawk, gcc,
  1290. ghostscript, gnutls, imx-gpu-viv, ipsec-tools, libarchive,
  1291. libfuse, libglib2, libopenssl, libselinux, libsoup, lighttpd,
  1292. linuxptp, lttng-modules, lttng-tools, lua-flu, lvm2, m4,
  1293. makedevs, mariadb, mbedtls, mesa3d-heders, mtd, ncurses,
  1294. nodejs, openssh, php, python-django, rauc, ruby, samba4,
  1295. stress-ng, ti-utils, uboot-tools, uclibc, vim, waylandpp,
  1296. wireless_tools, wireless-regdb, wireshark, wpa_supplicant,
  1297. xorriso, znc
  1298. Issues resolved (http://bugs.uclibc.org):
  1299. #10781: cryptsetup luksOpen container_file container causes..
  1300. #10986: Installing package attr when already supplied by..
  1301. #11191: xattr and check-package issue
  1302. 2018.05.1, Released July 20th, 2018
  1303. Important / security related fixes.
  1304. U-Boot: Ensure host version of ncurses is picked up and not
  1305. host-ncurses built by buildroot, as that otherwise causes
  1306. widechar/non-widechar conflicts and corrupted menuconfig
  1307. menus.
  1308. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  1309. Toolchain: ARC tools updated to arc-2018.03.
  1310. pkg-stats: Fix python 3.x compatibility.
  1311. dl-wrapper: Fix support for URIs containing '+', fix
  1312. no-check-hash for inferred site method.
  1313. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  1314. Support ethernet on Turbot variant.
  1315. Updated/fixed packages: audit, bind, btrfs-progs, cifs-utils,
  1316. clamav, collectd, coreutils, docker-containerd, dos2unix,
  1317. edid-decode, file, gcc, gdb, gnupg, gnupg2, heimdal, hidapi,
  1318. imagemagick, libcurl, libgcrypt, libglib2, liblogging,
  1319. libostree, libressl, libsoup, libv4l, libvncserver, libvorbis,
  1320. libwebsockets, libxslt, lm-sensors, mariadb, mpg123, ncurses,
  1321. network-manager, nodejs, patchelf, perl, php-amqp, pinentry,
  1322. pixiewps, qpdf, qt53d, qt5base, qt5charts, qt5script, redis,
  1323. systemd, triggerhappy, uboot, wireguard, wireless-regdb,
  1324. wireshark
  1325. 2018.05, Released June 1st, 2018
  1326. Minor fixes.
  1327. Download: Work around for hanging connections for packages
  1328. from CVS, by adding a 10 minute max timeout.
  1329. Updated/fixed packages: binutils, clang, dash, expect, git,
  1330. glibc, jpeg-turbo, libjpeg, log4cplus, openvmtools, xen,
  1331. Issues resolved (http://bugs.uclibc.org):
  1332. #11051: runtime issue on STM32 with usage of binutils 2.29.x
  1333. 2018.05-rc3, Released May 28th, 2018
  1334. Fixes all over the tree.
  1335. Toolchain: ARC tools updated to arc-2018.03-rc2.
  1336. Fs: Ensure hard links in TARGET_DIR are correctly copied for
  1337. filesystem input. With the recent changes to the file system
  1338. generation logic, hard links were "expanded" in file system
  1339. images leading to bloated rootfs images for setups with hard
  1340. links.
  1341. Infrastructure: Error out for packages using the 'local'
  1342. method but forgetting to specify <pkg>_SITE.
  1343. Build rpcgen for the host when needed to support distributions
  1344. no longer shipping rpcgen with glibc (E.G. recent Fedora).
  1345. Updated/fixed packages: autofs, bash-completion, binutils,
  1346. busybox, cjson, elf2flt, libcoap, libcurl, libtirpc, lrzsz,
  1347. poppler, procps-ng, qt-webkit-kiosk, quota, samba4, xfsprogs
  1348. Issues resolved (http://bugs.uclibc.org):
  1349. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file..
  1350. #11036: C compiler cannot create executables
  1351. #11046: Git package binaries are ~180MB (compared to ~20MB in..
  1352. 2018.05-rc2, Released May 22nd, 2018
  1353. Fixes all over the tree.
  1354. Dependencies: Check that the current working directory (.)
  1355. isn't listed in PATH as that causes various build issues.
  1356. Manual: Clarify that git branch names may not be used as
  1357. version identifiers. This has never been supported, but was
  1358. kind of working (with some limitations) before the git
  1359. download rework - Now it does not work at all.
  1360. Linux: Ensure host version of ncurses is picked up and not
  1361. host-ncurses built by buildroot, as that otherwise causes
  1362. widechar/non-widechar conflicts and corrupted menuconfig
  1363. menus.
  1364. Packages: Renamed a number of package options not prefixed
  1365. with BR2_PACKAGE_<pkg> for consstency.
  1366. Download infrastructure: Fix file:// protocol handling after
  1367. download rework.
  1368. Updated/fixed packages: acl, apr-util, asterisk, attr,
  1369. bluez5_utils, cifs-utils, clamav, clang, cups-filters,
  1370. dahdi-linux, exim, faketime, gdb, go, gst1-plugins-bad,
  1371. imx-mkimage, ipsec-tools, jamvm, janus-gateway,
  1372. jquery-ui-themes, libcap, libcurl, libftdi, libkcapi, libkrb5,
  1373. libmediaart, libmodbus, libmodplug, libmpd,
  1374. libnetfilter_cthelper, libnetfilter_cttimeout, libnfc,
  1375. libnfnetlink, libnss, liboauth, libogg, libosip2,
  1376. libpam-radius-auth, libpcap, libpciaccess, llvm, log4cplus,
  1377. ltrace, lynx, mbedtls, modem-manager, nfs-utils,
  1378. python-cython, python-websockets, qt5cinex, qt5wayland, rauc,
  1379. snort, strace, ti-sgx-km, transmission, wavpack, wget, woff2,
  1380. xen, zmqpp, znc, zstd
  1381. Issues resolved (http://bugs.uclibc.org):
  1382. #10986: Installing package attr when already supplied by...
  1383. #11011: BUildroot for Raspberry Pi 2
  1384. #11016: Wrong compiler used for external user host packages
  1385. 2018.05-rc1, Released May 9th, 2018
  1386. Toolchain: glibc bumped to 2.27, musl bumped to 1.1.19,
  1387. uClibc-ng 1.0.30, Linux kernel headers bumped to 4.16.x.
  1388. Architecture: support for the Blackfin architecture has been
  1389. removed, as it was removed from Linux upstream, poorly
  1390. maintained in binutils/gdb, and abandoned by Analog Devices.
  1391. Numerous packages updated to have hashes for their license
  1392. files.
  1393. Systemd can now be built with uClibc toolchains.
  1394. Linux: addition of BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF and
  1395. BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL to support building Linux
  1396. kernel configurations that need libelf on the host or openssl
  1397. on the host.
  1398. Coding style:
  1399. - all Python scripts are now verified with flake8
  1400. - check-package extended to check all Config.in and .mk files
  1401. in tree, not only the ones in package/
  1402. Infrastructure:
  1403. - The download infrastructure has seen a major overhaul, with
  1404. the main visible new feature being Git caching: a package
  1405. fetched from Git no longer needs to be re-cloned entirely
  1406. everytime its version is changed. Anoter visible change is
  1407. that the download folder now has subfolders per package. See
  1408. http://lists.busybox.net/pipermail/buildroot/2018-April/217923.html
  1409. for more details about those changes.
  1410. - The logic that generates the root filesystem images has been
  1411. reworked, with the main goal of allowing several filesystem
  1412. images to be produced in parallel, also a requirement for
  1413. top-level parallel build. Now, a .tar filesystem image is
  1414. always created, and re-extracted in a private directory to
  1415. create each format-specific filesystem image.
  1416. - A new package infrastructure was introduced for Go-based
  1417. packages: golang-package.
  1418. - Dependencies on extraction tools are now handled as proper
  1419. per-package dependencies, using
  1420. <pkg>_EXTRACT_DEPENDENCIES. Beyond a cleanup, this is also a
  1421. preparation step for top-level parallel build support.
  1422. - When a file being downloaded is part of a package with a
  1423. .hash file, but there is no hash listed for this file, the
  1424. file is now preserved in the download directory rather than
  1425. removed. This helps when updating a package, as it gives the
  1426. ability to easily calculate the hash of the file.
  1427. - Addition of '<pkg>-show-recursive-depends' and
  1428. '<pkg>-show-recursive-rdepends' make targets, to
  1429. respectively display the recursive list of dependencies and
  1430. the recursive list of reverse dependencies of a given
  1431. package.
  1432. - The /etc/shells file is now automatically generated with the
  1433. list of shell programs installed on the system.
  1434. - Addition of -Ofast optimization level as an available
  1435. option.
  1436. Major updates: Go updated to 1.10, Erlang bumped to 20.3, Qt5
  1437. bumped to 5.10.1.
  1438. New packages: 18xx-ti-utils, abootimg, bluez-alsa, brotli,
  1439. chipmunk, clang, docker-compose, docker-proxy, flare-engine,
  1440. flare-game, gst1-interpipe, gstreamer1-editing-services,
  1441. hackrf, i2pd, imx-alsa-plugins, imx-mkimage, libcdio-paranoia,
  1442. libkrb5, llvm, pixiewps, python-backports-ssl-match-hostname,
  1443. python-cached-property, python-cython, python-docker,
  1444. python-dockerpty, python-docker-pycreds,
  1445. python-flask-sqlalchemy, python-functools32, python-influxdb,
  1446. python-json-models, python-libusb1, python-networkx,
  1447. python-psycopg2, python-pymodbus, python-sqlalchemy,
  1448. python-subprocess32, python-texttable,
  1449. python-websocket-client, python-yieldfrom, quotatool, reaver,
  1450. snort, sunxi-mali-mainline, sunxi-mali-mainline-driver, tk,
  1451. tpm2-abrmd, tpm2-tools, tpm2-tss, udftools, vte, woff2.
  1452. New defconfigs: ARC HS Development Kit, Arcturus ucls1012a,
  1453. Freescale i.MX6UL EVK (with vendor kernel), Freescale i.MX6
  1454. SoloLite EVK (with vendor kernel), Freescale i.MX31 3Stack,
  1455. Freescale i.MX8Q EVK Freescale p1025twr, Freescale t1040d4rdb,
  1456. Qemu PPC64 E5500, SolidRun ClearFog Base, Tinker RK3288, Vyasa
  1457. RK3288,
  1458. Removed packages: iqvlinux, kodi-adsp-*, mplayer
  1459. Removed defconfigs: ci40, firefly_rk3288,
  1460. freescale_p1010rdb_pa, freescale_mpc8315erdb, riotboard,
  1461. teliv_evk_pro3
  1462. Issues resolved (http://bugs.uclibc.org):
  1463. #10151: toolchain eclipse register : fails with a custom
  1464. BR2_HOST_DIR
  1465. #10511: Packages get downloaded uncompressed with wget
  1466. #10531: QtWebengine doesn't build if the host hasn't a 32 bits
  1467. C++ compiler working
  1468. #10846: error in compiling gnutls
  1469. #10886: openssl-1.0.2n fails to build
  1470. #10896: /bin/sh not in /etc/shells
  1471. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is
  1472. enabled
  1473. 2018.02.12, Released March 29th, 2019
  1474. Important / security related fixes.
  1475. Updated/fixed packages: avahi, beecrypt, busybox, clamav,
  1476. cups, devmem2, fetchmail, file, fltk, gcc, gdb, git, jq,
  1477. leveldb, libopenssl, libraw, libseccomp, libssh2,
  1478. libunistring, mariadb, mosquitto, nodejs, ntp, openjpeg, perl,
  1479. php, putty, qt5webkit, rdesktop, systemd, wireshark, vsftpd,
  1480. xapp_xdm, xlib_libXdmcp
  1481. 2018.02.11, Released February 23th, 2019
  1482. Important / security related fixes.
  1483. Ensure the PLATFORM and OS environment variables are not set,
  1484. as they cause build issues for some packages.
  1485. The package list infrastructure now correctly handles packages
  1486. installing files with old mtime.
  1487. Linux: Skip hash checks for user supplied downloadable
  1488. patches, as no hash checksums are available for those.
  1489. scanpypi: protect against zip-slip vulnerability in zip/tar
  1490. handling
  1491. Updated/fixed packages: bind, dhcpcd, dovecot, ghostscript,
  1492. gnuradio, imagemagick, jpeg-turbo, libarchive, libb64,
  1493. libcurl, libid3tag, madplay, mosquitto, openssh, php,
  1494. postgresql, proftpd, python, python-django, python3, qt5base,
  1495. sqlcipher, swupdate, systemd, unzip, webkitgtk
  1496. 2018.02.10, Released January 31th, 2019
  1497. Important / security related fixes.
  1498. Defconfigs: Fixes for Lego EV3, QEMU AArch64-virt
  1499. check-package: fix Python 3 support
  1500. get-developers: Fix behaviour when called from elsewhere than
  1501. the toplevel directory.
  1502. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1503. Updated/fixed packages: acpica, apache, apr, asterisk,
  1504. avrdude, cargo, cc-tool, dash, dhcpdump, dmalloc, gnuchess,
  1505. gnupg2, leveldb, libarchive, libassuan, libftdi1,
  1506. libgpg-error, libhttpparser, libmad, libsndfile, libsquish,
  1507. liburiparser, libwebsock, libxml2, lighttpd, lm-sensors,
  1508. lua-msgpack-native, mbedtls, mosquitto, netatalk, nodejs,
  1509. openssh, pango, patchelf, php, python-django, python-pyyaml,
  1510. rauc, rp-pppoe, s6-networking, samba4, sdl_sound,
  1511. shairport-sync, sqlite, subversion, sunxi-cedarx, tcpreplay,
  1512. tekui, usb_modeswitch, webkitgtk, wireshark, wolfssl,
  1513. xapp_rgb, xenomai, xerces
  1514. Issues resolved (http://bugs.uclibc.org):
  1515. #11576: Unable to start apache with event MPM on raspberry pi 3
  1516. 2018.02.9, Released December 20th, 2018
  1517. Important / security related fixes.
  1518. defconfigs: Fixes for ci20
  1519. Updated/fixed packages: c-ares, dante, freetype, ghostscript,
  1520. glibc, gnutls, go, libcurl, libgpgme, libid3tag, libiscsi,
  1521. libmpd, libopenssl, libpjsip, linux, liquid-dsp, luvi, lynx,
  1522. msgpack, nginx, nodejs, php, popt, pps-tools, python-numpy,
  1523. python-requests, samba4, sdl2_net, squashfs, swupdate, uclibc,
  1524. wine, webkitgtk, xfsprogs
  1525. Issues resolved (http://bugs.uclibc.org):
  1526. #11426: pps-tools bash dependency
  1527. 2018.02.8, Released November 26th, 2018
  1528. Important / security related fixes.
  1529. fs: Drop intermediate tarball from the filesystem handling to
  1530. fix an issue with xattrs handling related to fakeroot. Ensure
  1531. tarball target includes xattrs.
  1532. download: Fix confusion in git submodule handling if dl/ is a
  1533. symlink.
  1534. toolchain: Only allow enabling stack protection on
  1535. architectures with control flow integrity (CFI) support. Only
  1536. allow FORTIFY_SOURCE support on gcc >= 6.
  1537. genrandconfig: Fix missing newline in BR2_WGET handling,
  1538. causing the following line to be ignored. This would affect
  1539. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1540. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1541. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1542. show-build-order: Also include the dependencies of
  1543. rootfs-common.
  1544. Defconfigs: Fixes for Armadeus APF27, imx6sabre.
  1545. graph-depends: Fix for package names starting with a non-alpha
  1546. character.
  1547. Updated/fixed packages: attr, audit, bind, brotli, easydbus,
  1548. elfutils, gauche, gcc, giflib, gpsd, lcdproc, libcurl,
  1549. libiscsi, libnfs, libnspr, libnss, libkcapi, libsemanage,
  1550. liburiparser, lighttpd, linux, lua-curl, mariadb, mmc-utils,
  1551. mosquitto, mysql, neardal, netplug, network-manager,
  1552. nfs-utils, nginx, openocd, openswan, p11-kit, postgresql,
  1553. prosody, qemu, qt, rpm, ruby, samba4, squid, supertuxkart,
  1554. systemd, tar, trace-cmd, traceroute, twolame, uclibc,
  1555. usb_modeswitch, vtun, webkitgtk, xdriver_xf86-video-geode,
  1556. xlib_libfontenc, xproto_inputproto, xserver_xorg-server
  1557. Issues resolved (http://bugs.uclibc.org):
  1558. #11086: download/git submodule breaks on symlinked dl folder
  1559. #11251: Util scanpypi failes when package change - to _ in..
  1560. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  1561. #11481: Docs: Is external.desc required?
  1562. 2018.02.7, Released October 25th, 2018
  1563. Important / security related fixes.
  1564. Detect and reject build paths containing '@', as this confuses
  1565. a number of packages, including GCC.
  1566. utils/get-developers: Add -e option for use with git
  1567. send-email.
  1568. utils/diffconfig: Make it work for (non-Buildroot) config
  1569. files not using the BR2_ prefix.
  1570. u-boot: Fix for environment image handling on big endian
  1571. systems.
  1572. Updated/fixed packages: binutils, ca-certificates,
  1573. cups-filters, erlang, file, freetype, gcc, git, gvfs, leveldb,
  1574. libarchive, libcurl, libssh, live555, ljlinenoise, mariadb,
  1575. mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils, poco,
  1576. psmisc, ptpd2, python-enum34, qemu, qt, qt5base, setools,
  1577. spice, spice-protocol, tinc, ustr, wireshark
  1578. Issues resolved (http://bugs.uclibc.org):
  1579. #11396: uboot environment image checksum invalid if target is big endian
  1580. 2018.02.6, Released October 7th, 2018
  1581. Important / security related fixes.
  1582. Add a number of patches to fix build errors for host utilities
  1583. on modern distributions using glibc-2.28.
  1584. mkusers: Ensure existing group members are preserved when a
  1585. group is reprocessed.
  1586. printvars: Fix issue with exceeding shell command line length
  1587. limits for certain setups.
  1588. Updated/fixes packages: acpid, android-tools, apache,
  1589. arp-scan, bandwidthd, bind, bison, clamav, connman, cppcms,
  1590. cramfs, fio, gcc, ghostscript, glibc, gnupg, httping,
  1591. igmpproxy, imagemagick, imlib2, ipsec-tools, lcms2, libcurl,
  1592. libesmtp, libnfs, libssh, libxslt, links, linuxptp,
  1593. mediastreamer, minicom, moarvm, nilfs-utils, ocrad, parted,
  1594. php, pv, python-django, qt, qt5quickcontrols, qt5webengine,
  1595. screen, sdl2, shairport-sync, squashfs, strongswan,
  1596. vboot-utils, webkitgtk, wireguard, x265, xen, xlib_libXfont,
  1597. xlib_libXft
  1598. New packages: brotli, woff2
  1599. 2018.02.5, Released August 29th, 2018
  1600. Important / security related fixes.
  1601. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  1602. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  1603. issue.
  1604. Updated/fixed packages: acl, apache, attr, bind,
  1605. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  1606. dahdi-tools, dmidecode, dropbear, eigen, erlang, ffmpeg, gawk,
  1607. gcc, ghostscript, gnutls, ipsec-tools, libarchive, libfuse,
  1608. libopenssl, libselinux, libsoup, lighttpd, linuxptp,
  1609. lttng-modules, lttng-tools, lua-flu, lvm2, m4, makedevs,
  1610. mariadb, mbedtls, mesa3d-headers, mtd, ncurses, nodejs,
  1611. openssh, php, postgresql, python-django, qt5xmlpatterns, ruby,
  1612. samba4, shairport-sync, stress-ng, ti-utils, uboot-tools, vim,
  1613. waylandpp, wireless_tools, wireshark, wpa_supplicant, xorriso,
  1614. znc
  1615. Issues resolved (http://bugs.uclibc.org):
  1616. #10781: cryptsetup luksOpen container_file container causes..
  1617. #10986: Installing package attr when already supplied by..
  1618. #11191: xattr and check-package issue
  1619. 2018.02.4, Released July 21th, 2018
  1620. Important / security related fixes.
  1621. U-Boot: Ensure host version of ncurses is picked up and not
  1622. host-ncurses built by buildroot, as that otherwise causes
  1623. widechar/non-widechar conflicts and corrupted menuconfig
  1624. menus.
  1625. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  1626. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  1627. Support ethernet on Turbot variant.
  1628. Updated/fixed packages: bind, clamav, collectd, dos2unix,
  1629. edid-decode, gcc, gdb, heimdal, hidapi, imx-gpu-viv, libcurl,
  1630. libglib2, liblogging, libostree, libsoup, libv4l, lm-sensors,
  1631. ncurses, network-manager, patchelf, pinentry, procps-ng, qpdf,
  1632. qt5, qt53d, qt5base, qt5charts, qt5script, qt5serialport,
  1633. systemd, wireguard, wireless-regdb
  1634. Issues resolved (http://bugs.uclibc.org):
  1635. #11101: host-patchelf Endian Issue with relative RPATH
  1636. 2018.02.3, Released June 18th, 2018
  1637. Important / security related fixes.
  1638. Various fixes for building on modern distributions (GCC 8.x,
  1639. no rpcgen utility).
  1640. ARM: Default to binutils 2.28 and warn about newer binutils
  1641. versions, which are known to cause boot failures for Linux
  1642. kernels built in thumb mode.
  1643. Busybox/mdev: Fix module autoloading.
  1644. Busybox/sysvinit: inittab: Add /dev/{stdin,stdout,stderr}
  1645. symlinks, call swapon -a to activate any configured swap
  1646. devices.
  1647. Dependencies: Check that PATH does not contain current working
  1648. directory, which triggers a number of build failures.
  1649. Infrastructure: Error out for packages erroneously using the
  1650. 'local' site method but not defining a _SITE.
  1651. Linux: Fix cuImage.<dtb> / simpleImage.<dtb> handling. Ensure
  1652. kconfig uses ncurses from the host to fix a ncurses/ncursesw
  1653. mixup, causing menuconfig display corruption.
  1654. Toolchain: Workarounds for fix-rpath issues with binutils and
  1655. elf2flt.
  1656. Util-linux: Fix blocking on getrandom() issue with recent
  1657. kernels.
  1658. Remove broken freescale_imx31_3stack,
  1659. freescale_imx6sololiteevk and freescale_imx6ulevk defconfigs.
  1660. Updated/fixed packages: apr-util, asterisk, attr, audit,
  1661. autofs, binutils, busybox, cifs-utils, cups-filters, dash,
  1662. ebtables, exim, expect, f2fs-tools, faketime, file, gdb, git,
  1663. glibc, gnupg, gnupg2, gst1-plugins-bad, imagemagick, jamvm,
  1664. jpeg-turbo, libcap, libcoap, libcurl, libgcrypt, libjpeg,
  1665. libnss, libressl, libtirpc, libvncserver, libvorbis, libxslt,
  1666. log4cplus, lrzsz, ltrace, lynx, mariadb, mbedtls, mpg123,
  1667. nasm, netplug, network-manager, nfs-utils, nodejs,
  1668. openvmtools, patch, perl, php-amqp, poppler, procps-ng,
  1669. python, python-websockets, quota, redis, samba4, sysvinit,
  1670. transmission, triggerhappy, util-linux, wavpack, wget,
  1671. wireshark, xen, zmqpp
  1672. Issues resolved (http://bugs.uclibc.org):
  1673. #10986: Installing package attr when already supplied by busybox..
  1674. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file or..
  1675. 2018.02.2, Released May 4th, 2018
  1676. Important / security related fixes.
  1677. Tweak package size/file instrumentation to better handle
  1678. package rebuilds.
  1679. Revert /etc/shells creation when bash is enabled.
  1680. Exclude /lib/firmware from the rpath fixup logic, as it may
  1681. contain non-native ELF files.
  1682. Scanpypi: Support the new PyPi infrastructure.
  1683. Handle GCC 8.x on the host.
  1684. Ensure timestamp of /usr is updated to support the systemd
  1685. ConditionNeedsUpdate option.
  1686. Updated/fixed packages: bluez5_utils, flann, gdb, gnupg2,
  1687. grub2, libcec, libcgi, libglib2, libgpg-error, libgpgme,
  1688. libtomcrypt, mbedtls, mkpasswd, php, python, python-requests,
  1689. python-watchdog, qt53d, qt5websockets, sdl2, sdl2_image,
  1690. syslog-ng, systemd, tcl, tcllib, uclibc, usb_modeswitch,
  1691. wireguard, wmctrl
  1692. Issues resolved (http://bugs.uclibc.org):
  1693. #10896: /bin/sh not in /etc/shells
  1694. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is enabled
  1695. 2018.02.1, Released April 9th, 2018
  1696. Important / security related fixes.
  1697. Removed unmaintained defconfigs: Creator Ci40, Firefly rk3288,
  1698. Freescale mpc8315erdb / p1010rdb_pa, Riotboard, Teliv EVK
  1699. Pro3.
  1700. Infrastructure: Speed up instrumentation for package size by
  1701. comparing timestamps instead of md5 checksums, as doing
  1702. checksums could lead to up to 25% longer build time for big
  1703. configurations.
  1704. Rename the internal <pkg>_BASE_NAME variable to <pkg>_NASENAME
  1705. to avoid name clashes with packages ending on '-base'.
  1706. Add a better fix for build issues for autotools based packages
  1707. checking for C++ support on toolchains without C++ support.
  1708. Build host-tar if tar is older than 1.27 on the build machine
  1709. to work around reproducibility issues with git archives
  1710. containing long paths.
  1711. check-unique-files: Fix for filenames not representable in the
  1712. users' locale.
  1713. Check-bin-arch: Add support for per-package ignore paths
  1714. (<pkg>_BIN_ARCH_EXCLUDE).
  1715. Toolchain: Fix SSP support detection for external toolchains.
  1716. linux: Add _NEEDS_HOST_OPENSSL / LIBELF options to ensure
  1717. these dependencies are available for Linux configurations
  1718. needed these dependencies, similar to how it is done for
  1719. U-Boot.
  1720. Support custom (not in tree) device tree files in addition to
  1721. in-tree ones.
  1722. U-Boot / uboot-tools: Fix header conflict with libfdt-devel
  1723. installed on host.
  1724. Updated/fixed packages: apache, busybox, c-ares, cmake,
  1725. docker-engine, enlightenment, eudev, fbgrab, freescale-imx,
  1726. gtest, imagemagick, intel-microcode, irssi, jimtcl, kmod,
  1727. kodi, ktap, libcoap, libcurl, libfcgi, libhttpparser,
  1728. libminiupnpc, libopenssl, libpjsip, libss7, libssh2, libupnp
  1729. libupnpp, libuv, libvorbis, memcached, motion, musl, nodejs,
  1730. ntp, openblas, opencv3, openocd, opus-tools, patch, php,
  1731. pkgconf, postgresql, powerpc-utils, python-jsonschema,
  1732. python-webpy, qemu, qt5bsae, qt5script, qt5webkit, rapidjson,
  1733. rauc, sam-ba, samba4, sngrep, systemd, tremor, uboot-tools,
  1734. uclibc-ng-test, upmpdcli, wireshark, xerces, xterm, zstd
  1735. New packages: docker-proxy, python-functools32
  1736. Issues resolved (http://bugs.uclibc.org):
  1737. #10766: upmpdcli: Segmentation fault
  1738. #10776: ktap fails to build
  1739. #10846: error in compiling gnutls
  1740. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  1741. 2018.02, Released March 4th, 2018
  1742. Fixes all over the tree.
  1743. Issues with systemd with a readonly rootfs and DBus fixed.
  1744. Instructure:
  1745. - check-uniq-files: fix Python 2.6 compatibility.
  1746. - dependencies.sh: check for external argparse module for
  1747. Python 2.6.
  1748. - Add infrastructure to detect and use a UTF-8 locale on the
  1749. host, needed by systemd.
  1750. Update/fixed packages: clamav, dash, dhcp, dovecot, efl,
  1751. ffmpeg, libv4l, mono, mosquitto, php, postgresql, qt,
  1752. scanpypi, sdl2, systemd, tor, tvheadend, uboot, wavpack
  1753. Issues resolved (http://bugs.uclibc.org):
  1754. #10831: qemu_x86_64_defconfig build fails on linux-headers..
  1755. 2018.02-rc3, Released February 27th, 2018
  1756. Fixes all over the tree.
  1757. check-bin-arch: skip /lib/modules to allow 32-bit userland
  1758. with 64bit kernel.
  1759. dependencies: Blacklist tar 1.30+ and build our own host-tar
  1760. if needed as tar 1.30+ changed the --numeric-owner output for
  1761. long path names. Build host-tar before other host-dependencies
  1762. as they need it to extract their source tarballs.
  1763. Update/fixed packages: asterisk, azmq, bluez5_utils, domoticz,
  1764. e2fsprogs, erlang, exim, glibc, gpsd, jq, libglib2, libvorbis,
  1765. mariadb, mbedtls, mesa3d, mesa3d-headers, mpv, patch, pcre2,
  1766. php, qt5, qt5multimedia, qt5wayland, qt5webengine, qt5webkit,
  1767. systemd, quagga, rustc, uboot, wireguard, zic, zlib-ng
  1768. Issues resolved (http://bugs.uclibc.org):
  1769. #10726: Current libglib2.mk creates broken libglib2 binary...
  1770. #10786: Linux fails to build unless make linux-menuconfig...
  1771. #10796: Cannot generate cpio image without selecting CON...
  1772. 2018.02-rc2, Released February 15th, 2018
  1773. Fixes all over the tree.
  1774. Dependencies: Ensure C++ support is available like for C
  1775. support for packages needing 32bit host support.
  1776. utils/genrandconfig: Check host dependencies for config.
  1777. Updated/fixed packages: busybox, dnsmasq, dropbear, ffmpeg,
  1778. glibc, keepalived, libcpprestsdk, libgpiod, libmaxminddb,
  1779. librsvg, libtasn1, libv4l, libxml2, lightning, ltp-testsuite,
  1780. mesa3d, mesa3d-demos, mesa3d-headers, nftables, open-lldp,
  1781. php, postgresql, python-crossbar, qt5, qt53d, qt5enginio,
  1782. qt5tools, qt5webengine, qt5webkit, rsync, rust-bin, rustc,
  1783. systemd
  1784. Issues resolved (http://bugs.uclibc.org):
  1785. #9781: ti-sgx-km build on kernel >4.1
  1786. #10141: Squashfs extended attribute failures
  1787. 2018.02-rc1, Released February 5th, 2018
  1788. The global source-check and per-package <pkg>-source-check
  1789. targets have been removed.
  1790. Architecture: Add x86 Silvermont variant. Add several new ARM
  1791. variants, rework MIPS NaN logic. Support mainline binutils/gcc
  1792. for ARC.
  1793. Toolchains: Linaro toolchains upgraded to 2017.11 release, ARC
  1794. external toolchains upgraded to arc-2017.09. Libatomic is now
  1795. also copied for external musl based toolchains.
  1796. Add binutils 2.30.x and switch to binutils 2.29.x by default.
  1797. Added hardening options to build with RELRO and FORTITY.
  1798. New defconfigs: Bananapi M64, FriendlyARM Nanopi A64 & NEO2,
  1799. imx6slevk, imx6sx-sdb, imx6ulevk, Olimex A64-OLinuXino,
  1800. Orangepi lite / pc plus / pc / prime / win / win plus / zero
  1801. plus2, Pine64, Solidrun MacchiatoBin. Sopine.
  1802. Add utils/diffconfig, a simple utility for comparing
  1803. configuration files - Adapted from the version in the
  1804. Linux kernel.
  1805. Infrastructure: Check that the same file is not touched by
  1806. multiple packages, as a preparation for toplevel parallel
  1807. builds.
  1808. Hashes for the license files for a large number of packages
  1809. have been added, ensuring that license changes will not be
  1810. missed when packages are bumped.
  1811. Fix build issue for autotools based packages checking for C++
  1812. support on toolchains without C++ support and on a distro
  1813. lacking /lib/cpp (E.G. Arch Linux).
  1814. Support for the meson build system.
  1815. Pie charts generated by 'graph-build' or 'graph-size' are now
  1816. sorted according to the size of each piece.
  1817. System: Only show getty options when busybox init or sysvinit
  1818. are used.
  1819. ARM-trusted-firmware: Support ATF bundled in U-Boot as
  1820. well as U-Boot bundled in ATF.
  1821. Zlib is now a virtual package, provided by either libzlib or
  1822. zlib-ng, similar to openssl.
  1823. Support for the Rust programming language.
  1824. New packages: aoetools, armbian-firmware, binaries-marvell,
  1825. brltty, cargo, cargo-bin, cups-filters, curlpp, daq,
  1826. flatbuffers, gconf, glorytun, gstreamer1-mm, imx-m4fwloader,
  1827. imx-gpu-g2d, json-for-modern-cpp, libcpprestsdk, libgta,
  1828. libostree, libupnp18, luadbi, luadbi-sqlite3, lua-utf8, lynx,
  1829. meson, mv-ddr-marvell, nilfs-utils, opentracing-cpp,
  1830. open-lldp, pimd, proj, python-flask-cors,
  1831. python-jaraco-classes, python-more-itertools, python-oauthlib,
  1832. python-raven, python-remi, python-requests-oauthlib,
  1833. python-schedule, python-secretstorage, python-see,
  1834. python-tabledata, python-txtorcon, python-xlib, qt5charts,
  1835. rtl8189fs, rtl8723bu, rust, rustc, rust-bin, rygel, safeclib,
  1836. solatus, tcf-agent, traceroute, waylandpp, wolfssl,
  1837. zisofs-tools, zlib-ng
  1838. Removed packages: eeprog
  1839. 2017.11.2, Released January 21st, 2018
  1840. Important / security related fixes.
  1841. External toolchain: libatomic is now also copied for musl
  1842. based toolchains.
  1843. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  1844. System: Only show getty options when busybox init or sysvinit
  1845. are used.
  1846. Infrastructure: Fix build issue for autotools based packages
  1847. checking for C++ support on toolchains without C++ support and
  1848. on a distro lacking /lib/cpp (E.G. Arch Linux).
  1849. Pie charts generated by 'graph-build' or 'graph-size' are now
  1850. sorted according to the size of each piece.
  1851. Updated/fixed packages: asterisk, avahi, bind, busybox,
  1852. coreutils, eeprog, intel-microcode, iputils, irssi, kmsxx,
  1853. libiio, linux-firmware, lz4, mariadb, matchbox-lib, mcookie,
  1854. ntp, php, pound, rpcbind, tar, ti-cgt-pru, webkitgtk, xen,
  1855. xlib_libXpm
  1856. Issues resolved (http://bugs.buildroot.org):
  1857. #9996: lz4 package does not install lz4 binaries in target
  1858. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  1859. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  1860. #10301: systemd/getty unused options
  1861. #10331: kmsxx, host installation fails with BR2_SHARED_...
  1862. #10556: Building ntp package with SSL library libressl...
  1863. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  1864. 2017.11.1, Released December 31th, 2017
  1865. Important / security related fixes.
  1866. Updated/fixed packages: asterisk, checkpolicy, dhcp, flann,
  1867. gdb, glibc, heimdal, kodi-pvr-mediaportal-tvserver,
  1868. kodi-pvr-stalker, libcue, libopenssl, libpqxx, libsoxr,
  1869. linknx, linux-tools, lldpd, ltp-testsuite, mariadb, mfgtools,
  1870. nodejs, nut, pulseaudio, python-cffi, qemu, rsync, tor, uboot,
  1871. uboot-tools, vlc, webkitgtk, weston, wireguard, wireshark,
  1872. xenomai, xfsprogs
  1873. 2017.11, Released November 30, 2017
  1874. Fixes all over the tree.
  1875. Toolchain: Use github mirror for Glibc.
  1876. Defconfigs: Correct boot.cmd for bananapi-m1.
  1877. Makefiles: Workaround include order issues for certain make
  1878. versions by explicitly sorting the result of wildcard where it
  1879. matters.
  1880. Download: Ensure subversion runs in non-interactive mode.
  1881. Updated/fixed packages: asterisk, boost, chrony, dovecot,
  1882. dvb-apps, exim, feh, freerdp, fwup, google-breakpad, jose,
  1883. kvm-unit-test, lftp, libcurl, libevent, libfastjson, libpjsip,
  1884. libupnp, linphone, localedef, lttng-tools, mp4v2, mtools,
  1885. ndisc6, oracle-mysql, parted, pdbg, qt, qt5connectivity,
  1886. qt5declarative, qt5webkit, rauc, runc, samba4, shairport-sync,
  1887. systemd-bootchart, webkitgtk, wireguard, xlib_libXcursor,
  1888. xlib_libXfont, xlib_libXfont2,
  1889. Issues resolved (http://bugs.buildroot.org):
  1890. 10501: host-localedef fails to compile on Ubuntu 17.10
  1891. 10506: Changed kernel image type (e.g. zImage to uImage)...
  1892. 2017.11-rc2, Released November 13th, 2017
  1893. Fixes all over the tree.
  1894. Updated/fixed packages: collectd, ffmpeg, freerdp,
  1895. go-bootstrap, imagemagick, jimtcl, libpjsip, libplist, libuv,
  1896. mesa3d, nodejs, ntp, openjpeg, postgresql, python-numpy, ruby,
  1897. snmp++, usb_modeswitch, util-linux, vboot-utils, webkitgtk,
  1898. wireshark, wpa_supplicant, xapp_xdriinfo
  1899. Issues resolved (http://bugs.buildroot.org):
  1900. #10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  1901. #10491: Cannot output security warning when compiled with buildroot..
  1902. 2017.11-rc1, Released November 6th, 2017
  1903. Fixes all over the tree and new features.
  1904. Openssl is now a virtual package, which may be provided by
  1905. OpenSSL (now renamed to libopenssl) or LibreSSL.
  1906. libssh2: there is now an explicit choice of the backend to use
  1907. (mbedtls, gnutls or openssl). Previously, the choice was implicit
  1908. based on the TLS library that was selected. Now, it is possible to
  1909. choose the backend, which is important if several TLS libraries are
  1910. selected.
  1911. netsnmp: all MIB files are now installed, making the target filesystem a
  1912. bit bigger than before. To remove unneeded MIBS, you should use a
  1913. post-build script.
  1914. Toolchain: Linaro toolchains updated to 2017.08, ARC toolchain
  1915. updated to 2017.09, Glibc updated to 2.26, Glibc support for
  1916. ARCv2. The toolchain wrapper now handles SOURCE_DATE_EPOCH for
  1917. older (pre-gcc7.x) toolchains for BR2_REPRODUCIBLE.
  1918. New defconfigs: Atmel SAM45D27, Bananapi M1 and M2 Plus,
  1919. Engicam i.CoreM6 Qt5 configuration, i.MX6 sabreauto (mainline
  1920. kernel/u-boot), i.MX6Q sabresd Qt5 configuration, i.MX7d-pico,
  1921. QEMU ppc64le, Raspberry pi3 Qt5 webengine configuration,
  1922. Technologic TS-7680.
  1923. New packages: asterisk, azmq, bcg729, boinc, dahdi-linux,
  1924. dahdi-tools, freeswitch-mod-bcg729, fscryptctl, libb64,
  1925. libpri, libss7, lua-basexx, lua-compat53, lua-cqueues,
  1926. lua-curl, lua-datafile, lua-fifo, lua-httpd,
  1927. lua-lpeg-patterns, lua-markdown, lua-sailor, lua-value,
  1928. luksmeta, minetest, minetest-game, pdmenu, prosody,
  1929. python-aiocoap, python-automat, python-ibmiotf,
  1930. python-iso8601, python-m2r, python-simplesqlite,
  1931. python-websockets, python-xmltodict, qt5wayland, qt5webengine,
  1932. restorecond, selinux-python, semodule-utils, uhubctl,
  1933. wireguard, wsapi-fcgi, wsapi-xavante
  1934. Removed packages: aiccu, rfkill, sepolgen
  1935. Issues resolved (http://bugs.buildroot.org):
  1936. #10281: lsblk does not compile for util-linux
  1937. #10336: lttng compilation fails : linking error
  1938. #10351: glibc missing in rootfs
  1939. #10356: nfs-utils missing header
  1940. #10361: python3 python-config script generates invalid includes
  1941. #10366: dropbear download url has changed
  1942. #10391: WiringPi retrieves wrong (old) version
  1943. #10406: Beaglebone black: Buggy SGX driver version, swapped...
  1944. #10426: uboot-tools' fw_setenv does not update the redundant...
  1945. #10451: libpcap 1.8.x and 1.7x does not compile on PPC
  1946. 2017.08.2, Released November 28th, 2017
  1947. Important / security related fixes.
  1948. Qt: 5.6 version updated to 5.6.3.
  1949. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  1950. in the environment.
  1951. Makefiles: Workaround include order issues for certain make
  1952. versions by explicitly sorting the result of wildcard where it
  1953. matters.
  1954. Updated/fixed packages: apr, apr-util, arqp-standalone,
  1955. azure-iot-sdk-c, collectd, dvb-apps, ffmpeg, go-bootstrap,
  1956. google-breakpad, gstreamer, imagemagick, irssi, jimtcl,
  1957. kvm-unit-test, libcurl, libfastjson, libglib2, libidn,
  1958. libpjsip, libplist, localedef, lttng-tools, luajit, mesa3d,
  1959. moarvm, mp4v2, openssh, openssl, oracle-mysql, postgresql,
  1960. python3, python-pyqt5, qt, qt5base, qt5canvas3d,
  1961. qt5connectivity, qt5declarative, qt5engineio,
  1962. qt5graphicaleffects, qt5imageformats, qt5location,
  1963. qt5multimedia, qt5quickcontrols, qt5quickcontrols2, qt5script,
  1964. qt5sensors, qt5serialbus, qt5serialport, qt5svg, qt5tools,
  1965. qt5webchannel, qt5webkit, qt5websockets, qt5x11extras,
  1966. qt5xmlpatterns, quagga, redis, ruby, samba4, sdl2, snmppp,
  1967. swupdate, ti-gfx, uboot-tools, usb_modeswitch, vboot-utils,
  1968. webkitgtk, wget, wireshark, xapp_xdriinfo.
  1969. Issues resolved (http://bugs.buildroot.org):
  1970. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  1971. 10361: python3 python-config script generates invalid includes
  1972. 10501: host-localedef fails to compile on Ubuntu 17.10
  1973. 2017.08.1, Released October 23rd, 2017
  1974. Important / security related fixes.
  1975. Webkitgtk bumped to the 2.18.x series, fixing a large number
  1976. of security issues.
  1977. Defconfigs: galileo: fix ext4 related kernel config, bump
  1978. kernel for gcc 6.x compatibility, enable wchar support for
  1979. grub2. wandboard: correct rootfs offset
  1980. support: Ensure gzip compression level 6 is used for git
  1981. tarballs. check-bin-arch: Correctly handle (ignore) symbolic
  1982. links. check-rpath: Also handle PIE binaries
  1983. External toolchain: Correctly handle glibc Buildroot
  1984. toolchains built with merged /usr
  1985. musl: fix ARMv4 build with binutils 2.27.51+, fix for
  1986. CVE-2017-15650
  1987. Updated/fixed packages: apache, augeas, bind, bluez5_utils,
  1988. busybox, bzip2, cmake, dnsmasq, ejabberd, gcc, git, go, ffmpeg, file,
  1989. flashrom, gd, gdk-pixbug, gnupg2, hostapd, ifupdown-scripts,
  1990. imagemagick, iucode-tool, kernel-module-imx-gpu-viv, lame,
  1991. libarchive, libcurl, libffi, libidn, libmbim, libnspr, libnss,
  1992. libressl, librsync, libsoup, libxml2, libzip, mbedtls, musl,
  1993. netplug, nginx, openvpn, pkgconf, poppler, proxychains-ng,
  1994. qemu, qt, rpi-userland, syslog, ruby, samba4, softether,
  1995. sqlite, strongswan, subversion, supertuxkart, supervisor, tcpdump,
  1996. tor, unrar, urq, vboot-utils, webkitgtk, wpa_supplicant, xen,
  1997. xmlstarlet, xlib_libXfont, xlib_libXfont2,
  1998. xserver_xorg-server, zsh
  1999. 2017.08, Released September 1st, 2017
  2000. Minor fixes.
  2001. Toolchain: Don't allow internal toolchain builds for MIPS
  2002. M6201/P6600, as support for these are not yet in mainline GCC.
  2003. Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
  2004. gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
  2005. libphidget, libv4l, linux-tools, mediastreamer, minidlna,
  2006. nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
  2007. transmission, vde2, vim
  2008. Updated/fixed defconfigs:
  2009. Removed packages: simicfs.
  2010. Issues resolved (http://bugs.buildroot.org):
  2011. #10261: Grub2 fails to build for x86_64
  2012. 2017.08-rc3, Released August 23rd, 2017
  2013. Fixes all over the tree.
  2014. Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
  2015. dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
  2016. gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
  2017. libspatialindex, libunwind, linux, linux-headers, lua,
  2018. mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
  2019. whois, xen, zmqpp.
  2020. Updated/fixed defconfigs: ci20, socrates_cyclone5,
  2021. toradex_apalis_imx6.
  2022. Removed defconfig: Armadeus APF9328.
  2023. skeleton-* packages introduced in -rc1 have been renamed to
  2024. skeleton-init-* instead.
  2025. Issues resolved (http://bugs.buildroot.org):
  2026. #10141: Squashfs extended attribute failures
  2027. 2017.08-rc2, Released August 11th, 2017
  2028. Fixes all over the tree.
  2029. Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
  2030. ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
  2031. lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
  2032. swupdate, uclibc, valgrind, webkitgtk.
  2033. Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
  2034. nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
  2035. qemu_sparc64.
  2036. The cmake-package infrastructure for host packages has been
  2037. fixed to not incorrectly detect target packages through
  2038. pkg-config.
  2039. Issues resolved (http://bugs.buildroot.org):
  2040. #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
  2041. #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
  2042. #10026: lua-5.3.4: fix lua linker error in swupdate
  2043. #10146: package/skeleton-common fix recursive variable
  2044. #10156: glibc compilation fails for X86 32bits (i386)
  2045. #10201: toolchain-wrapper.c:192: (error) Memory leak:
  2046. #10221: Buildroot Support
  2047. 2017.08-rc1, Released August 2nd, 2017
  2048. Infrastructure:
  2049. - The skeleton package has been split into multiple packages:
  2050. skeleton-sysv (when Busybox or SysV init are used),
  2051. skeleton-systemd (when systemd is used), skeleton-none (when
  2052. no init system is used) and skeleton-custom (when a custom
  2053. skeleton is used). Those packages, except skeleton-custom,
  2054. share common logic and data in a new package called
  2055. skeleton-common. The skeleton package becomes a virtual
  2056. package. This change allows to generate a filesystem that is
  2057. compliant with systemd expectations.
  2058. - Support for using a read-only filesystem with systemd has
  2059. been fixed.
  2060. - Major revamp of the gettext handling, with user-visible
  2061. effect:
  2062. - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
  2063. package could decide to enable or not NLS support. When
  2064. BR2_ENABLE_LOCALE was disabled, NLS support was forced off
  2065. by passing --disable-nls to packages.
  2066. - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
  2067. controls whether NLS support should be enabled or not in
  2068. packages. This option defaults to disabled, which means
  2069. that now, NLS support is by default disabled in all
  2070. packages.
  2071. Therefore, if you need NLS support in packages, you must now
  2072. explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
  2073. - The host directory no longer has a usr/ component. This
  2074. makes it much more natural to use that directory as an
  2075. externally used toolchain. For compatibility with existing
  2076. scripts, a usr -> . link is still added.
  2077. - Hashes are now checked on tarballs by Buildroot when a
  2078. package is sourced from a Git repository.
  2079. - Patches are no longer being downloaded from Github, since
  2080. auto-generated patches could change over time, and break
  2081. hashes. All patches that were downloaded from Github are now
  2082. stored in their respective package directories.
  2083. - Hash files in packages can now contain hashes for the
  2084. license files contained in the package source code. This
  2085. allows to detect changes in such license files.
  2086. - Binaries in $(TARGET_DIR) are now cleaned up from invalid
  2087. RPATHs at the end of the build.
  2088. - A new "make sdk" target prepares $(HOST_DIR) to be
  2089. relocatable: turns RPATHs in host binaries into relocatable
  2090. ones, removes bogus RPATHs from staging binaries/libraries,
  2091. and provides a relocate-sdk script that can be executed to
  2092. relocate the SDK after installation.
  2093. - Addition of utils/genrandconfig which generates a random
  2094. configuration based on a set of pre-defined toolchain
  2095. configurations (support/config-fragments/autobuild/) and a
  2096. random selection of packages. It is now used by the
  2097. autobuilders to generate the random configurations.
  2098. Filesystems:
  2099. - ext2/3/4 filesystems are now generated using mkfs.ext from
  2100. e2fsprogs instead of using genext2fs.
  2101. Architecture:
  2102. - Addition of support for ARM big.LITTLE variants
  2103. - Improved MIPS support, with options to select NaN encoding
  2104. and FP32 mode.
  2105. Toolchain:
  2106. - Switch to gcc 6.x as the default gcc version, add support
  2107. for gcc 7.x, remove support for gcc 4.8
  2108. - Switch to binutils 2.28 as the default binutils version, add
  2109. support for binutils 2.29, remove support for binutils 2.26
  2110. - Support added for gdb 8.0
  2111. - uClibc-ng bumped to 1.0.26
  2112. - CodeSourcery toolchains for x86 and SuperH have been
  2113. removed, they were using a too old glibc version
  2114. (2.17). External toolchains with glibc 2.17 or earlier are
  2115. no longer supported.
  2116. - The version selection in the glibc package has been
  2117. removed. Like musl and uClibc-ng, we now use the latest
  2118. glibc version.
  2119. - Improved support for Xtensa toolchain overlays, which can
  2120. now be downloaded.
  2121. Tools:
  2122. - Numerous improvements to the runtime test infrastructure
  2123. - Tests are now executed by Gitlab CI on a regular basis
  2124. - Tools that are directly useful to the user have been moved
  2125. from support/scripts/ to utils/: brmake, check-package,
  2126. get-developers, scancpan, scanpipy, size-stats-compare,
  2127. test-pkg.
  2128. New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
  2129. Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
  2130. SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
  2131. New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
  2132. erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
  2133. ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
  2134. kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
  2135. libpwquality, libressl, libspatialindex, libva-utils,
  2136. linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
  2137. lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
  2138. python-backports-shutil-get-terminal-size, python-bcrypt,
  2139. python-cheroot, python-h2, python-hpack, python-hyperframe,
  2140. python-hyperlink, python-ipython-genutils, python-pathlib2,
  2141. python-pickleshare, python-priority, python-portend,
  2142. python-scandir, python-systemd, python-tempora,
  2143. python-traitlets, python-typepy, qt5virtualkeyboard,
  2144. ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
  2145. xr819-xradio, zstd
  2146. Removed packages: cloog, input-tools, mke2img
  2147. Issues resolved (http://bugs.buildroot.org):
  2148. #7892: systemd-journald is broken
  2149. #9341: avahi-utils does not compile with uClibc + libglib2
  2150. #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
  2151. BR2_ENABLE_DEBUG
  2152. #9746: ext4 image generated by Buildroot is not working
  2153. properly with U-Boot
  2154. #9886: Build fails with "unexpected EOF while looking for
  2155. matching `"'" if PATH contains a newline
  2156. #9891: parted 3.1 => 3.2?
  2157. #9911: qt5 does not build on sparc
  2158. #9916: qt5 does not build on
  2159. arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
  2160. #9936: Host QEMU does not build with SDL support because of
  2161. pkg-config
  2162. #9941: nodejs option disappears for arm
  2163. #9951: SCANCPAN failure
  2164. #9966: util-linux-2.30/.stamp_built' failed
  2165. #9976: License file for package 'rtl8821au' incorrect
  2166. #9991: SGX Error implicit declaration of function
  2167. ‘dmac_map_area’
  2168. #10011: wget does not work from Buildroot
  2169. #10036: Buildroot builds Raspbian Jessie headless image
  2170. presenting incorrect prompt
  2171. #10051: make: *** No rule to make target
  2172. 'raspberrpi3_defconfig'. Stop reported with Buildroot
  2173. v2017.05.1
  2174. #10056: No .config file was produced in /buildroot folder
  2175. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
  2176. failure
  2177. #10071: fakeroot: replace hard-coded paths in post install
  2178. #10076: Makefile:4113: recipe for target 'all-gcc' failed
  2179. #10091: gcc7.1 does not build with graphite support due to old
  2180. isl
  2181. #10121: webkit without the multimedia option causes build
  2182. error
  2183. 2017.05.2, Released July 27th, 2017
  2184. Important / security related fixes.
  2185. Webkitgtk bumped to the 2.16.x series, fixing a large number
  2186. of security issues.
  2187. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  2188. which default to PIE mode.
  2189. Updated/fixed packages: aespipe, apache, bind, binutils,
  2190. busybox, ccache, collectd, dieharder, efibootmgr, efivar,
  2191. expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
  2192. libmemcached, libosip2, libtirpc, libxml-parser-perl,
  2193. linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
  2194. pulseaudio, python-setproctitle, qt5base, rpi-firmware,
  2195. samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
  2196. webkitgtk, x265, xserver_xorg-server, xvisor
  2197. Issues resolved (http://bugs.buildroot.org):
  2198. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  2199. 2017.05.1, Released July 4th, 2017
  2200. Important / security related fixes.
  2201. Update support/scripts/scancpan to use METACPAN v1 API as v0
  2202. has been shutdown.
  2203. Update support/scripts/mkusers to handle setups where
  2204. /etc/shadow is a symlink.
  2205. External toolchain: Don't create musl dynamic loader symlink
  2206. for static builds.
  2207. Setlocalversion: Correct detection of mercurial revisions for
  2208. non-tagged versions.
  2209. Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
  2210. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  2211. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
  2212. gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
  2213. iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
  2214. libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
  2215. openssh, openvpn, pngquant, python-simplegeneric, qt5base,
  2216. qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
  2217. tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
  2218. Issues resolved (http://bugs.buildroot.org):
  2219. #9976: License file for package 'rtl8821au' incorrect
  2220. 2017.05, Released May 31st, 2017
  2221. Minor fixes.
  2222. External toolchain: musl dynamic linker symlink for mips-sf
  2223. corrected.
  2224. Updated/fixed packages: agentpp, bash, exim, hans, madplay,
  2225. qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
  2226. xen
  2227. Issues resolved (http://bugs.buildroot.org):
  2228. #9906: genimage: Disk full
  2229. 2017.05-rc3, Released May 30th, 2017
  2230. Fixes all over the tree.
  2231. ARC toolchain bumped to 2017.03
  2232. Runtime testing improvements and cleanups.
  2233. Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
  2234. cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
  2235. fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
  2236. keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
  2237. libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
  2238. mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
  2239. pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
  2240. xen
  2241. Removed packages: firejail, ola
  2242. Issues resolved (http://bugs.buildroot.org):
  2243. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  2244. #9876: aarch64 support with gcc 4.8 toolchain
  2245. #9896: host-gcc-initial error downloading because incorrect URL
  2246. 2017.05-rc2, Released May 17th, 2017
  2247. Fixes all over the tree.
  2248. ARC toolchain bumped to 2017.03-rc2
  2249. Updated/fixed packages: bluez_utils, boost, clamav, daemon,
  2250. efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
  2251. git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
  2252. mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
  2253. postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
  2254. rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
  2255. vlc, x11vnc, xfsprogs
  2256. Issues resolved (http://bugs.buildroot.org):
  2257. #9796: source-check broken for Git downloads
  2258. #9866: BASE_DIR usage
  2259. 2017.05-rc1, Released May 8th, 2017
  2260. Fixes all over the tree and new features.
  2261. Infrastructure:
  2262. - Installed binaries are now checked for correct architecture
  2263. to catch natively built binaries or binaries built for other
  2264. architecture variants.
  2265. - Luarocks infrastructure improvements to extraction handling,
  2266. support for upstream name != Buildroot package name.
  2267. - 'make printvars' output format has changed to make it easier
  2268. to use in scripts. It now has options to quote the variables
  2269. and to show the expanded/unexpanded values.
  2270. - Automatic ext2 rootfs size calculation has been removed. The
  2271. logic was not working working reliable in all setups as it
  2272. depends on the host filesystem behaviour, so instead now the
  2273. size has to be specified explicitly (defaults to 60MB).
  2274. - The git download infrastructure now ensures that GNU format
  2275. tar files are created.
  2276. - Fixed a variable clashing issue in the mkusers script with
  2277. internal bash variables.
  2278. - Fakeroot now links against libacl to fix issues on
  2279. distributions using acls.
  2280. - Correct permissions for /dev/pts/ptmx when systemd is used
  2281. with recent glibc versions.
  2282. - br2-external: Improve error reporting.
  2283. - A wrapper script for genimage has been added in
  2284. support/scripts/genimage.sh for easy use of genimage from
  2285. post-image scripts.
  2286. - A script to check for common style issues in new packages
  2287. before submitting has been added in support/scripts/check-package
  2288. - Defconfigs are now tested by gitlab-CI instead of Travis:
  2289. https://gitlab.com/buildroot.org/buildroot
  2290. - Infrastructure for runtime testing has been added to
  2291. support/testing
  2292. Toolchain:
  2293. - External linaro toolchains updated to 2017.02, ARC toolchain
  2294. updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
  2295. - A number of fixes and improvements to the external toolchain
  2296. handling, including C library detection, multilib and ld.so
  2297. handling
  2298. - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
  2299. for uClibc-ng
  2300. - Binutils 2.28 added and default changed to 2.27
  2301. Architectures:
  2302. - Support for the C-SKY architecture has been added.
  2303. License handling:
  2304. - The package license markings for legal info now uses the
  2305. SPDX short identifiers for the license string where possible.
  2306. - License info has been improved / added for a number of packages.
  2307. Misc:
  2308. - Cmake 3.7.x installed on the host is no longer ignored as a
  2309. workaround for the RPATH issues has been implemented.
  2310. - Docker-engine can now be built statically on an otherwise
  2311. dynamic linked build for docker-in-docker setups.
  2312. - U-Boot now supports out-of-tree device trees, similar to
  2313. Linux
  2314. - Nodejs 0.10.x support (and with it, support for <ARMv6) has
  2315. been removed as this is now EOL upstream.
  2316. New defconfigs: AT91sam9x5ek dev/mmc/mmc-dev, banana pro,
  2317. Nationalchip gx6605s, MIPS creator ci40, nexbox a95x, 64bit
  2318. defconfig for raspberry pi 3, stm32f429-disc1.
  2319. The raspberry pi zero-w and rpi3 compute module are now also
  2320. supported by the rpi0 / rpi3 defconfigs, beaglebone green is
  2321. supported by the beaglebone defconfig.
  2322. Removed defconfig: minnowboard, via imx6 vab820, altera
  2323. socdk/sockit
  2324. New packages: arp-scan, atest, augeas, bluez-tools, daemon,
  2325. dc3dd, dieharder, execline, fmt, ghostscript, gqrx,
  2326. gst1-vaapi, jo, keepalived, kmscube, kodi-jsonschemabuilder,
  2327. kodi-skin-confluence, kodi-texturepacker, lensfun, leptonica,
  2328. libbson, libcsv, libgphoto2, libkcapi, libmaxminddb,
  2329. libmediaart, libnpth, libscrypt, lua-bit32, lua-resty-http,
  2330. lugaru, memtool, mpir, nanomsg, physfs, phytool, pngquant,
  2331. python-decorator, python-simplegeneric,
  2332. python-sortedcontainers, rpi-bt-firmware, rpi-wifi-firmware,
  2333. s6, s6-dns, s6-linux-init, s6-linux-utils, s6-networking,
  2334. s6-portable-utils, s6-rc, supertux, tesseract-ocr,
  2335. uccp420wlan, wilink-bt-firmware
  2336. Broken packages: ola
  2337. Removed packages: cosmo, kodi-visualisation-fountain,
  2338. polarssl, portmap, xdriver_xf86-video-glide,
  2339. xdriver_xf86-video-v4l, xdriver_xf86-video-wsfb
  2340. Issues resolved (http://bugs.buildroot.org):
  2341. #8831: image generation fails on host ZFS due to "no free space"
  2342. #9436: e2fsprogs remove busybox applets even of unselected e2fs..
  2343. #9456: mkusers script bash errors
  2344. #9496: mke2img fails during build on ntfs-3g host partition
  2345. #9531: NPM fails to build embedded modules
  2346. #9596: KODI: --enable-lirc needs "HAVE_LIRC" compiler definition..
  2347. #9691: Wrong cryptsetup package include files location
  2348. #9696: Wrong cryptsetup package include files location
  2349. #9706: Can't download newer revisions of package from PyPI
  2350. #9711: Recent libCEC version bump seems to break kodi package
  2351. #9716: exit, shutdown, reboot from kodi
  2352. #9721: version 2017.02: no acceptable m4 could be found in $PATH
  2353. #9726: Raspberry Pi version B - Problems with UART speed in..
  2354. #9751: expat legal info - manifest.csv: GPLv2 Source site: MIT..
  2355. #9756: glibc fails to build on buildroot-sh4*-buildroot-linux-gnu
  2356. #9766: support/scripts/pkgutil.py conflicts with the pkgutil.py..
  2357. #9776: libubox build failed
  2358. #9791: Python searches for packages in the user site directory
  2359. #9806: libseccomp is not available when BR2_arm=y
  2360. #9826: post-build scritp - symlinks created in post-build script..
  2361. #9836: triggerhappy: systemd unit broken
  2362. #9846: musl libc not installed correctly in target folder
  2363. #9856: build libubox failed on ubuntu 17.04 64bit
  2364. 2017.02.11, Released April 11th, 2018
  2365. Important / security related fixes.
  2366. dependencies: Blacklist tar 1.30+ and build our own host-tar
  2367. if needed as tar 1.30+ changed the --numeric-owner output for
  2368. long path names. Build host-tar before other host-dependencies
  2369. as they need it to extract their source tarballs.
  2370. Updated/fixed packages: apache, busybox, clamav, dhcp,
  2371. dnsmasq, dovecot, exim, imagemagick, irssi, jq, libcurl,
  2372. libpjsip, librsvg, libtasn1, libvorbis, libxml2, lz4, mariadb,
  2373. mbedtls, mosquitto, ntp, openblas, opencv3, openssl, patch,
  2374. postgresql, python-webpy, qt53d, qt5tools, quagga, rsync,
  2375. samba4, sngrep, tremor, wavpack, wireshark, xerces, xterm
  2376. Issues resolved (http://bugs.uclibc.org):
  2377. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  2378. 2017.02.10, Released January 31st, 2018
  2379. Important / security related fixes.
  2380. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  2381. System: Only show getty options when busybox init or sysvinit
  2382. are used.
  2383. Infrastructure: Fix build issue for autotools based packages
  2384. checking for C++ support on toolchains without C++ support and
  2385. on a distro lacking /lib/cpp (E.G. Arch Linux).
  2386. Updated/fixed packages: avahi, berkeleydb, bind, busybox,
  2387. ccache, clamav, coreutils, dovecot, eeprog, eudev, fis,
  2388. intel-microcode, iputils, irssi, kmsxx, libcurl, liberation,
  2389. libiio, lz4, mariadb, matchbox-lib, mcookie, openocd, php,
  2390. pound, rpcbind, squid, tar, ti-cgt-pru, transmission,
  2391. util-linux, webkitgtk, wireshark, xen
  2392. Issues resolved (http://bugs.buildroot.org):
  2393. #9996: lz4 package does not install lz4 binaries in target
  2394. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  2395. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  2396. #10301: systemd/getty unused options
  2397. #10331: kmsxx, host installation fails with BR2_SHARED_...
  2398. #10536: Finding non-relative paths in the ccache
  2399. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  2400. 2017.02.9, Released January 1st, 2018
  2401. Important / security related fixes.
  2402. Fix divide by zero issue in size-stats script.
  2403. Fix makefile include ordering issue with certain make versions
  2404. in the external toolchain handling.
  2405. Updated/fixed packages: dhcp, exim, flann, gdb, heimdal,
  2406. libcue, libcurl, libevent, libpqxx, libsoxr, linphone, lldpd,
  2407. mariadb, mfgtools, mtools, nodejs, nut, openssl, rsync,
  2408. samba4, tor, vlc, webkitgtk, wireshark, xfsprogs,
  2409. xlib_libXcursor, xlib_libXfont, xlib_libXfont2
  2410. 2017.02.8, Released November 27th, 2017
  2411. Important / security related fixes.
  2412. Qt: 5.6 version updated to 5.6.3.
  2413. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  2414. in the environment.
  2415. Updated/fixed packages: apr, apr-util, arqp-standalone,
  2416. collectd, dvb-apps, ffmpeg, google-breakpad, gstreamer,
  2417. imagemagick, libfastjson, libglib2, libpjsip, libplist,
  2418. localedef, luajit, mesa3d, openssh, openssl, postgresql,
  2419. python3, python-pyqt5, qt5base, qt5canvas3d, qt5connectivity,
  2420. qt5declarative, qt5engineio, qt5graphicaleffects,
  2421. qt5imageformats, qt5location, qt5multimedia, qt5quickcontrols,
  2422. qt5quickcontrols2, qt5script, qt5sensors, qt5serialbus,
  2423. qt5serialport, qt5svg, qt5tools, qt5webchannel, qt5webkit,
  2424. qt5websockets, qt5x11extras, qt5xmlpatterns, quagga, ruby,
  2425. samba4, snmppp, ti-gfx, vboot-utils, webkitgtk, wireshark,
  2426. xapp_xdriinfo.
  2427. Issues resolved (http://bugs.buildroot.org):
  2428. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2429. 10361: python3 python-config script generates invalid includes
  2430. 10501: host-localedef fails to compile on Ubuntu 17.10
  2431. 2017.02.7, Released October 28th, 2017
  2432. Important / security related fixes.
  2433. Webkitgtk bumped to the 2.18.x series, fixing a large number
  2434. of security issues.
  2435. Defconfigs: wandboard: Correct rootfs offset
  2436. Toolchain: Linaro toolchains updated to 2017.08 release,
  2437. fixing a number of issues. Musl: fix for CVE-2017-15650.
  2438. Updated/fixed packages: busybox, bzip2, dnsmasq, git, go,
  2439. hostapd, irssi, iucode-tool, lame, libcurl, libffi, libnspr,
  2440. libnss, nodejs, openssh, openvpn, qemu, qt, redis, sdl2,
  2441. webkitgtk, wget, wpa_supplicant, xen, xlib_libXfont,
  2442. xlib_libXfont2, xserver_xorg-server
  2443. 2017.02.6, Released September 24th, 2017
  2444. Important / security related fixes.
  2445. Cmake: Ensure correct pkg-config is used when building host
  2446. packages
  2447. fs/iso9660: Ensure files from earlier builds are not included.
  2448. Updated/fixed packages: apache, bcusdk, bind, binutils,
  2449. bluez5_utils, botan, cmake, connman, dbus, dialog, e2fsprogs,
  2450. faad2, fakeroot, ffmpeg, file, flashrom, gcc, gd, gdb,
  2451. gdk-pixbuf, git, gnupg, gpsd, grub2, gst1-plugins-bad,
  2452. imagemagick, iostat, iucode-tool, jack2, libarchive, libcurl,
  2453. libgcrypt, libidn, libphidget, librsync, librsvg, libsoup,
  2454. libxml2, linux-tools, lua, mariadb, mbedtls, mediastreamer,
  2455. minidlna, netplug, nss-pam-ldapd, nvidia-driver, openjpeg,
  2456. postgresql, proxychains-ng, python-libconfig,
  2457. python-service-identity, qt, rpcbind, ruby, samba4, squashfs,
  2458. squid, strongswan, subversion, supervisor, sysvinit, tcpdump,
  2459. tor, transmission, unrar, valgrind, vim, webkitgtk, whois,
  2460. xen, zmqpp
  2461. Issues resolved (http://bugs.buildroot.org):
  2462. #10141: Squashfs extended attribute failures
  2463. #10261: Grub2 fails to build for x86_64
  2464. #10276: BR2_PACKAGE_LINUX_TOOLS_GPIO fails for MIPS with...
  2465. 2017.02.5, Released July 27th, 2017
  2466. Important / security related fixes.
  2467. Webkitgtk bumped to the 2.16.x series, fixing a large number
  2468. of security issues.
  2469. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  2470. which default to PIE mode.
  2471. Updated/fixed packages: aespipe, apache, bind, binutils,
  2472. busybox, ccache, collectd, efibootmgr, efivar, expat, ffmpeg,
  2473. gcc, heimdal, iproute2, irssi, libglib2, libmemcached,
  2474. libosip2, libtirpc, libxml-parser-perl, linux-fusion,
  2475. linux-zigbee, mpg123, nodejs, orc, pcre, php, pulseaudio,
  2476. python-setproctitle, qt5base, rpi-firmware, samba4, syslinux,
  2477. systemd, spice, tcpdump, tiff, webkitgtk, x265, xen,
  2478. xserver_xorg-server, xvisor
  2479. Issues resolved (http://bugs.buildroot.org):
  2480. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  2481. 2017.02.4, Released July 4th, 2017
  2482. Important / security related fixes.
  2483. Update support/scripts/scancpan to use METACPAN v1 API as v0
  2484. has been shutdown.
  2485. Update support/scripts/mkusers to handle setups where
  2486. /etc/shadow is a symlink.
  2487. External toolchain: Don't create musl dynamic loader symlink
  2488. for static builds.
  2489. Setlocalversion: Correct detection of mercurial revisions for
  2490. non-tagged versions.
  2491. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  2492. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, gnutls,
  2493. gst1-plugins-bad, imagemagick, imx-uuc, intltool, iperf,
  2494. ipsec-tools, irssi, libgcrypt, libmad, libnl, mosquitto,
  2495. mpg123, ncurses, nodejs, ntp, openssh, openvpn, qt5base,
  2496. qt5multimedia, rtl8821au, socat, spice, systemd, tor, tslib,
  2497. vlc, x264, xserver_xorg-server
  2498. Issues resolved (http://bugs.buildroot.org):
  2499. #9976: License file for package 'rtl8821au' incorrect
  2500. 2017.02.3, Released June 2nd, 2017
  2501. Important / security related fixes.
  2502. Download: <pkg>-source-check fixed for packages from git.
  2503. External toolchain: musl dynamic linker symlink for mips-sf
  2504. corrected.
  2505. Updated/fixed packages: armadillo, audiofile, bash,
  2506. bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
  2507. elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
  2508. google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
  2509. libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
  2510. lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
  2511. nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
  2512. postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
  2513. rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
  2514. Issues resolved (http://bugs.buildroot.org):
  2515. #9796: source-check broken for Git downloads
  2516. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  2517. 2017.02.2, Released May 1st, 2017
  2518. Important / security related fixes.
  2519. Use HTTPS for the Codesourcery external toolchains as the HTTP
  2520. URLs no longer work.
  2521. Updated/fixed packages: bind, busybox, dovecot, freetype,
  2522. ghostscript, glibc, granite, hiredis, icu, imagemagick,
  2523. gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
  2524. libnspr, libnss, libsamplerate, libsndfile, libunwind,
  2525. minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
  2526. python-web2py, samba4, syslinux, systemd, tiff, trinity,
  2527. uboot, wireshark, xen
  2528. Issues resolved (http://bugs.buildroot.org):
  2529. #9791: Python searches for packages in the user site directory
  2530. 2017.02.1, Released April 4th, 2017
  2531. Important / security related fixes.
  2532. Fix a variable clashing issue in the mkusers script with
  2533. internal bash variables.
  2534. Improve external toolchain version detection.
  2535. Correct permissions for /dev/pts/ptmx when systemd is used
  2536. with recent glibc versions.
  2537. Fix python module name clash for graph-depends.
  2538. Fakeroot now links against libacl to fix issues on
  2539. distributions using acls.
  2540. Ensure that the git download infrastructure creates GNU format
  2541. tar files.
  2542. br2-external: Improve error reporting.
  2543. Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
  2544. dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
  2545. fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
  2546. gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
  2547. libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
  2548. libwebsockets, libxkbcommon, linux-firmware, logrotate,
  2549. lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
  2550. mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
  2551. pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
  2552. skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
  2553. tcpreplay, tor, upmpdcli, wget, wireshark,
  2554. xdriver_xf86-video-vmware, xlib_libXv, zmqpp
  2555. Issues resolved (http://bugs.buildroot.org):
  2556. #9456: mkusers script bash errors
  2557. 2017.02, Released February 28th, 2017
  2558. Minor fixes, mainly fixing autobuilder issues.
  2559. Don't use cmake 3.7.x from the build host as it is also
  2560. affected by the RPATH handling issues, and instead build our
  2561. own if needed.
  2562. Updated/fixed packages: assimp, classpath, genimage, mplayer,
  2563. mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
  2564. vlc, xterm
  2565. 2017.02-rc3, Released February 26th, 2017
  2566. Fixes all over the tree.
  2567. Cmake reverted to version 3.6.3 to workaround regressions
  2568. related to RPATH handling.
  2569. Updated/fixed packages: bctoolbox, berkeleydb, binutils,
  2570. btrfs-progs, classpath, directfb, glibc, gstreamer1,
  2571. gst1-plugins-{base,good,bad,ugly}, gst1-libav,
  2572. gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
  2573. libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
  2574. oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
  2575. trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
  2576. Issues resolved (http://bugs.buildroot.org):
  2577. #9251: Shared C++ libraries for Microblaze results in Segmentation...
  2578. #9456: mkusers script bash errors
  2579. #9506: Collectd 5.7.0 fails to build with libcrypt
  2580. #9581: VagrantFile provisioning step fails due to issue with grub-pc
  2581. #9586: usbmount: usbmount slows down the system... to a state of...
  2582. #9616: CMake host packages cannot provide CONF_ENV
  2583. #9641: Need raptor package installed in staging
  2584. #9671: stunnel build error
  2585. 2017.02-rc2, Released February 20th, 2017
  2586. Fixes all over the tree.
  2587. Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
  2588. older gcc versions for reproducible builds has been
  2589. (temporarily) reverted because of licensing compatiblity
  2590. concerns.
  2591. Defconfigs: SD card generation fix for the Udoo Neo board
  2592. Infrastructure to handle .lz compressed tarballs added, and
  2593. affected packages updated to use it.
  2594. Updated/fixed packages: bctoolbox, bind, canelloni,
  2595. cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
  2596. ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
  2597. kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
  2598. libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
  2599. ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
  2600. riemann-c-client, samba4, sunxi-mali, tcping, trousers,
  2601. uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
  2602. xserver_xorg-server
  2603. Issues resolved (http://bugs.buildroot.org):
  2604. #8941: Valgrind fails to build with stack protection turned on
  2605. #9291: perl: SysV message queues not configured, even if available
  2606. #9651: libxcb-1.12 built Error
  2607. #9656: util-linux: schedutils doesn't build on target w/o enabl...
  2608. #9666: qt5quickcontrols install fails
  2609. 2017.02-rc1, Released February 11th, 2017
  2610. Fixes all over the tree and new features.
  2611. Infrastructure:
  2612. - numerous improvements to support reproducible builds
  2613. - new waf-package package infrastructure to support packages
  2614. that use the Waf build system. 6 packages converted to
  2615. this infrastructure.
  2616. - add option <pkg>_PREFER_INSTALLER to the perl package
  2617. infrastructure
  2618. Architecture:
  2619. - add support for the OpenRISC CPU architecture
  2620. - merge description of the ARM and ARM64 options, and add
  2621. support for selecting a specific ARM64 core
  2622. Toolchain:
  2623. - major rework of the external toolchain support. It is now
  2624. split into several packages, one per external toolchain,
  2625. and a common infrastructure.
  2626. - important fix for musl to prevent a conflict between musl
  2627. and kernel headers (fixes the build of numerous packages
  2628. with musl)
  2629. - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
  2630. for ARM64, mips32r6 and mips64r6
  2631. - add gdb 7.12.1, and switch to gdb 7.11 as the default
  2632. - Linaro toolchains updated to 2016.11, ARC toolchain
  2633. components updated to arc-2016.09, MIPS Codescape
  2634. toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
  2635. NIOS2 toolchains bumped
  2636. - remove Analog Devices toolchain for the Blackfin
  2637. architecture, remove pre-built musl toolchains from
  2638. musl.codu.org
  2639. New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
  2640. Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
  2641. SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
  2642. New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
  2643. ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
  2644. jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
  2645. nginx-dav-ext, nmon, opkg-utils, policycoreutils,
  2646. pru-software-support, python-arrow, python-attrs,
  2647. python-babel, python-bitstring, python-chardet,
  2648. python-constantly, python-flask-babel, python-gunicorn,
  2649. python-incremental, python-jsonschema, python-logbook,
  2650. python-markdown2, python-mbstrdecoder, python-mutagen,
  2651. python-pathpy, python-pudb, python-pyqrcode,
  2652. python-pytablereader, python-setuptools-scm, python-sh,
  2653. python-toml, python-vcversioner, python-whoosh,
  2654. raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
  2655. sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
  2656. upower, ustream-ssl, waf, xlib_libXfont2
  2657. Removed packages: perl-db-file, snowball-hdmiservice,
  2658. snowball-init
  2659. Tooling: addition of a test-pkg script to help contributors
  2660. build test their package.
  2661. Issues resolved (http://bugs.buildroot.org):
  2662. #8946: Valgrind fails to build with stack protection turned on
  2663. #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
  2664. #9466: VIM_REMOVE_DOCS removes rgb.txt
  2665. #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
  2666. #9501: eudev fails to build with older kernel headers
  2667. #9526: Embedded NPM fails to start with "no such file or directory" error
  2668. #9541: Platform drivers autoloading from info in device tree does not work
  2669. #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
  2670. #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
  2671. #9566: [kmod] Compilation fails with uclibc
  2672. #9571: buildroot fails while building opencv for arm64 platform
  2673. #9576: External tree with BR 2016.11 does not work anymore
  2674. #9606: xorg-server cannot build for ARM target
  2675. 2016.11.3, Released March 9th, 2017
  2676. Important / security related fixes.
  2677. Updated/fixed packages: bind, dbus, gnutls, imagemagick,
  2678. lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
  2679. squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
  2680. 2016.11.2, Released January 25th, 2017
  2681. Important / security related fixes.
  2682. A fix for BR2_EXTERNAL trees referenced using relative paths,
  2683. which broke in 2016.11.
  2684. Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
  2685. imagemagick, irssi, libpng, libvncserver, musl, opus, php,
  2686. php-imagick, rabbitmq-server, runc, wireshark,
  2687. Issues resolved (http://bugs.buildroot.org):
  2688. #9576: External tree with BR 2016.11 does not work anymore
  2689. 2016.11.1, Released December 29th, 2016
  2690. Important / security related fixes.
  2691. Updated/fixed packages: apache, cryptopp, docker-engine,
  2692. dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
  2693. nodejs, openssh, php, python, python-bottle, samba4, squid,
  2694. uboot, vim, wireshark, xorg-server uboot
  2695. Issues resolved (http://bugs.buildroot.org):
  2696. #9466: VIM_REMOVE_DOCS removes rgb.txt
  2697. 2016.11, Released November 30th, 2016
  2698. Minor fixes.
  2699. Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
  2700. uboot, uclibc
  2701. Issues resolved (http://bugs.buildroot.org):
  2702. #9451: packages/postgresql/postgresql.mk contains wrong POST...
  2703. 2016.11-rc3, Released November 28th, 2016
  2704. Fixes all over the tree, including a number of security fixes.
  2705. The move from fakeroot to pseudo unfortunately brought a
  2706. number of issues. The SELinux issue described in #9386 which
  2707. triggered the move to pseudo has been investigated further and
  2708. a workaround implemented and the pseudo changes reverted.
  2709. Linux kernel: update default to 4.8.11.
  2710. Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
  2711. olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
  2712. vdk, axs101, axs103 and hs38 smd vdk.
  2713. Updated/fixed packages: autossh, chrony, dosfstools,
  2714. dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
  2715. gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
  2716. kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
  2717. ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
  2718. ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
  2719. taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
  2720. xapp_xload, xenomai, xmlstarlet
  2721. Issues resolved (http://bugs.buildroot.org):
  2722. #9386: ubinize fails with or without custom config
  2723. #9431: A misspelling
  2724. #9446: make raspberrypi3_defconfig compilation failure
  2725. 2016.11-rc2, Released November 13th, 2016
  2726. Fixes all over the tree.
  2727. Architecture: add support for MIPS XBurst cores; remove MIPS
  2728. support for M5100 cores.
  2729. Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
  2730. czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
  2731. qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
  2732. libxslt, python, python3, php, valgrind, guile, domoticz, efl,
  2733. jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
  2734. strace, openjpeg, lcms2, quota.
  2735. Linux kernel: update default to 4.8.7.
  2736. CMake support: fix cmake wrapper to properly pass NDEBUG flag.
  2737. Filesystems: use a wrapper to pseudo, to better mimick the behaviour
  2738. of fakeroot; makedevs no longer breaks of the destination already
  2739. exists and is of the correct type/major/minor.
  2740. Defconfigs: a few legacy and broken defconfigs have been removed
  2741. because they now fail to build: kb9202_defconfig, mini2440_defconfig,
  2742. freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
  2743. have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
  2744. armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
  2745. olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
  2746. atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
  2747. atmel_sama5d3xek.
  2748. 2016.11-rc1, Released November 3rd, 2016
  2749. Fixes all over the tree and new features.
  2750. It is now possible to specify multiple BR2_EXTERNAL
  2751. directories. The required files in a BR2_EXTERNAL directory
  2752. have changed to accomodate this feature. Refer to the
  2753. documentation for details of how to update them. External
  2754. trees now have a name and a description. Also, it is possible
  2755. to override a defconfig in the external tree.
  2756. The default skeleton now uses UID 65534 for the "nobody"
  2757. user instead of UID 99, like most distros do. See
  2758. https://lwn.net/Articles/695478/ for a complete discussion.
  2759. Programs and configuration files that explicitly refer to UID
  2760. 99 will have to be updated.
  2761. When the build environment already has a suitable cmake version
  2762. (3.1 or later), that one will be used instead of building
  2763. host-cmake. This can speed up the build significantly.
  2764. The ExtUtils::MakeMaker perl module is now required in the
  2765. build environment.
  2766. An additional check is done during the build that files are
  2767. not installed in the output directory within the output
  2768. directory. This happens e.g. when the target directory is
  2769. contained both in --prefix and in DESTDIR. The build will
  2770. terminate with an error message that specifies which package
  2771. and which file caused the failure.
  2772. The concept of "deprecated packages" and the BR2_DEPRECATED
  2773. option have been removed. Instead, packages are removed
  2774. immediately. Packages are only removed when they don't work
  2775. for some reason. If you still need a removed package and
  2776. you have a solution for the problem(s) that caused the
  2777. removal, please contribute it.
  2778. Architecture: support for sh64 removed, improved support for
  2779. MIPS core selection.
  2780. Toolchain: support for musl powerpc64le, mips64 and mipsr6
  2781. toolchains, ARC toolchain components updates, gcc 6.x series
  2782. bumped to 6.2.0, default binutils version switched to 2.26,
  2783. default gcc version switched to gcc 5.x, Linaro toolchains
  2784. updated, uclibc-ng bumped to 1.0.19. GCC is now always built
  2785. with TLS support. Checking of unsafe compiler options (that
  2786. point to host directories) has been extended with -isystem,
  2787. -idirafter and -iquote.
  2788. Package infrastructure: new variable $(PKG)_DL_OPTS, addition
  2789. of <pkg>-show-rdepends to list reverse dependencies, and
  2790. <pkg>-graph-rdepends to graph reverse dependencies. Linux tools
  2791. are now in a separate linux-tools package instead of in the
  2792. kernel build. Fakeroot has been replaced by pseudo.
  2793. CMake support: the toolchainfile.cmake file now provides a
  2794. definition of the CMAKE_BUILD_TYPE variable. The
  2795. toolchainfile.cmake also no longer forces the compiler/linker
  2796. flags defined by Buildroot.
  2797. New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
  2798. TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
  2799. BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
  2800. New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
  2801. aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
  2802. mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
  2803. python-crcmod, python-cssutils, python-docutils,
  2804. python-futures, python-mwclient, python-mwscrape,
  2805. python-mwscrape2slob, python-pyelftools, python-pyicu,
  2806. python-pylru, python-pyqt5, python-requests-toolbelt,
  2807. python-simpleaudio, python-slob, rabbitmq-server, shapelib,
  2808. vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
  2809. gpio linux tools.
  2810. Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
  2811. kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
  2812. wvdial, wvstreams.
  2813. Documentation: the list of packages that was present in the
  2814. Buildroot manual has been removed.
  2815. Legal info: the "licenses.txt" file that concatenates all
  2816. license texts is no longer generated - it was not considered
  2817. useful. The manifest.csv contains an empty cell instead of
  2818. "not saved" when no license file is available.
  2819. Other: addition of a DEVELOPERS file listing developers taking
  2820. care of packages or architectures.
  2821. Issues resolved (http://bugs.buildroot.org):
  2822. #7802: host-python build hangs compiling getbuildinfo.o
  2823. #8206: mplayer uses host xorg development files
  2824. #8516: mkcubiecard.sh uses outdated sfdisk switch -D
  2825. #8536: Building sudo with PAM results in unusable sudo
  2826. #8646: check-host-rpath script returns false positives when rpath
  2827. contains symlink
  2828. #8696: xdriver_xf86-input-mouse install header files in target
  2829. directory
  2830. #8811: rp-pppoe - generated scripts commands use HOST pathnames,
  2831. not necessarily TARGET
  2832. #8846: Orphaned/missing toolchain borks eclipse plugin
  2833. #8856: python tornado runtime wasn't met on buildroot 2016.02
  2834. #8901: gcc failes to build if fortran is enabled
  2835. #8916: LDFLAGS pass to openssh
  2836. #8941: "ls" of an NFSv4 share only works when pumped through strace
  2837. #8946: Valgrind fails to build with stack protection turned on
  2838. #9021: Kodi - Broken: Illegal instruction (core dumped)
  2839. #9096: rootfs.ubi not created
  2840. #9111: glibc 2.23: libmvec.so not copied
  2841. #9176: minnowboard : USB not mounted
  2842. #9196: raspberry pi 3 default build seem broken
  2843. #9201: Permission denied make: *** [core-dependencies] Error 126 in
  2844. Buildroot-2015.08.1
  2845. #9216: log4cpp package build fails to build within install
  2846. #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
  2847. pressing buttons.
  2848. #9229: Firefly boot fails with: "failed to find part:boot"
  2849. #9256: [Config file] New device: Odroid-U2/U3
  2850. #9296: Buildroot Fails on applying patches
  2851. #9301: U-boot fails to build with default zynq_zed_defconfig configuration
  2852. #9316: U-boot fails to build if libssl-dev is not installed
  2853. #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
  2854. flash utility (tegrarcm)
  2855. #9326: Odroid-C2 build results in non-bootable image
  2856. #9336: Improve iconv support for external toolchain based builds
  2857. #9356: gdb package
  2858. #9366: no link rootfs.ext4 -> rootfs.ext2
  2859. #9371: openssl: download failes with "Only allow downloads from primary
  2860. download site" + local server
  2861. #9381: check-host-rpath issues
  2862. #9386: ubinize fails with or without custom config
  2863. 2016.08, Released September 1st, 2016
  2864. Minor fixes.
  2865. Toolchain: ARC tools updated to arc-2016.09-eng010.
  2866. Updated/fixed packages: libshout, luajit, mpd, mplayer
  2867. Issues resolved (http://bugs.buildroot.org):
  2868. #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
  2869. #8341: Getting EGL Error: Could not create the egl surface:..
  2870. #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
  2871. 2016.08-rc3, Released August 29th, 2016
  2872. Fixes all over the tree.
  2873. Toolchain: C++ support for the internal blackfin toolchain
  2874. re-enabled.
  2875. Architecture: Default to bf532 CPU variant for blackfin,
  2876. Fix flat one memory region support for m68k and disable flat
  2877. seperate data support because of compatibility issues.
  2878. Defconfigs: Minnowboard and Raspberrypi: Fix errors with
  2879. post-build scripts when systemd is used.
  2880. Zynq microzed/zc706/zed: Fix u-booot configuration.
  2881. netbsd-queue package extended and renamed to
  2882. musl-compat-headers. With this, a number of musl compatibility
  2883. patches are no longer needed.
  2884. Updated/fixed packages: aircrack-ng, android-tools, babeld,
  2885. bcusdk, binutils, boa, busybox, connman, cpupower,
  2886. docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
  2887. glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
  2888. imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
  2889. libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
  2890. libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
  2891. linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
  2892. neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
  2893. pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
  2894. quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
  2895. squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
  2896. trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
  2897. webkitgtk, wireshark, xdriver_xf86-video-intel
  2898. Issues resolved (http://bugs.buildroot.org):
  2899. #9101: Error on support/download/git with system git older than 1.8.4
  2900. #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
  2901. 2016.08-rc2, Released August 17th, 2016
  2902. Fixes all over the tree.
  2903. Toolchain: disable broken C++ support for internal blackfin
  2904. toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
  2905. to fix various issues.
  2906. System: Zoneinfo is available for the musl C library as well.
  2907. Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
  2908. blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
  2909. fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
  2910. inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
  2911. libical, libpjsip, libsidplay2, libunwindow, libxml2,
  2912. linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
  2913. openblas, openipmi, owfs, php, poco, procps, qt, quota,
  2914. sg3_utils, spidev_test, systemd-bootchart, thrift,
  2915. uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
  2916. xdriver_xf86-video-savage, xserver_xorg-server, xen
  2917. Issues resolved (http://bugs.buildroot.org):
  2918. #9136: make graph-size fails with "ValueError: too many values to..
  2919. #9151: qt: fix build with ALSA >= 1.1.x
  2920. #9156: qt: Fix missing runtime Qt3Support dependency
  2921. #9161: modsetting patch not applied to xserver 1.18.4
  2922. #9166: Missing overlays directory in VFAT image for raspberry pi 3
  2923. 2016.08-rc1, Released August 6th, 2016
  2924. Fixes all over the tree and new features.
  2925. Toolchain: Fortran support added. eglibc support removed, musl
  2926. support no longer experimental. Blackfin and Microblaze
  2927. support for internal uClibc-ng toolchain, m68k/coldfire
  2928. improvements. The check for unsafe (build host) directories
  2929. access (/usr/include and /usr/lib) is now enabled by default.
  2930. Unused locales are now purged by default to save space (and
  2931. the default list of locales shrunk). The option to control
  2932. this has now moved from the toolchain menu to system
  2933. configuration.
  2934. Legal info improvements: sources are now hardlinked instead of
  2935. copied if possible to save space. Patches and extra downloads
  2936. are also saved.
  2937. An experimental configuration knob (BR2_REPRODUCIBLE) has been
  2938. added to make the builds more reproducible (E.G. less
  2939. differences in the binary output between builds of the same
  2940. configuration). This is still work in progress.
  2941. An option to execute a custom script inside the fakeroot
  2942. environment used to the generate the filesystem (E.G. to tweak
  2943. permissions or similar) has been added.
  2944. Git support now supports git submodules if
  2945. <pkg>_GIT_SUBMODULES is enabled.
  2946. Hash files for integritry validation have been added for all
  2947. packages.
  2948. Scanpypi utility to help creating packages from the Python
  2949. package index (pypi) has been added.
  2950. The makedevs utility now has support for adding file
  2951. capabilities using extended attributes.
  2952. New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
  2953. development configs, Blackfin GDB simulator, Linksprite
  2954. pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
  2955. i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
  2956. MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
  2957. Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
  2958. demos. A number of defconfigs have been updated and extended
  2959. to generate SD card images. Synopsys HS38 VDK defconfig removed.
  2960. New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
  2961. alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
  2962. circus, dante, docker-containerd, docker-engine, domoticz,
  2963. efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
  2964. gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
  2965. jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
  2966. libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
  2967. libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
  2968. mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
  2969. odroid-scripts, omxplayer, openblas, openmpi, openzwave,
  2970. p7zip, pdbg, python-argh, python-dataproperty,
  2971. python-dateutil, python-dialog3, python-dicttoxml,
  2972. python-dominate, python-engineio, python-flask-jsonrpc,
  2973. python-flask-login, python-humanize, python-pathtools,
  2974. python-pathvalidate, python-pillow, python-prompt-toolkit,
  2975. python-pytablewriter, python-pytz, python-scapy3k,
  2976. python-sdnotify, python-socketio, python-tomako,
  2977. python-ubjson, python-u-msgpack, python-watchdog,
  2978. python-wcwidth, python-xlrd, python-xlsxwriter,
  2979. python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
  2980. sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
  2981. supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
  2982. tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
  2983. wiringpi, xen
  2984. Deprecated packages: ipkg, sstrip
  2985. Removed packages: sunxi-mali-prop
  2986. Issues resolved (http://bugs.buildroot.org):
  2987. #8931: segment fault when compile argp-help.c using aarch64-bu...
  2988. #8966: eglfs error. buildroot don't compile the library libeglfs.so
  2989. #8971: build for beaglebone fails
  2990. #8986: qt5imageformats fails to build on AArch64
  2991. #8991: grub2 fails to compile
  2992. #9001: Nodejs option not available
  2993. #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
  2994. #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
  2995. #9066: 8139TOO - faulty behaviour
  2996. #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
  2997. #9091: U-Boot fails to boot with large ramdisk
  2998. 2016.05, Released May 31st, 2016
  2999. Minor fixes.
  3000. External toolchain: Fix for symlink handling when copying
  3001. links to target.
  3002. Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
  3003. ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
  3004. lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
  3005. net-tools, openpowerlink, pulseview, rpm, tinyalsa,
  3006. xdriver_xf86-video-fbturbo, xserver_xorg-server
  3007. 2016.05-rc3, Released May 26th, 2016
  3008. Fixes all over the tree.
  3009. Tweaks for SSP handling for external toolchains.
  3010. Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
  3011. cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
  3012. gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
  3013. kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
  3014. libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
  3015. mpg123, mtr, openpgm, openpowerlink, oprofile, php,
  3016. postgresql, putty, python-service-identity, python-treq,
  3017. qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
  3018. ustr, valgrind, webkitgtk, libxml2, xorriso,
  3019. xserver_xorg-server
  3020. Issues resolved (http://bugs.uclibc.org):
  3021. #8936: Aircrack-ng - Alot of missing dependencies
  3022. 2016.05-rc2, Released May 17th, 2016
  3023. Fixes all over the tree.
  3024. Rootfs overlay handling now refuses to overwrite
  3025. /{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
  3026. even if these directories are present in the overlay.
  3027. External toolchain: Unbreak user provided libraries deployment
  3028. (BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
  3029. QEMU coldfire: Fix for signal handling kernel issue, enable
  3030. networking support.
  3031. Updated/fixed packages: android-tools, assimp, boost, gcc,
  3032. glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
  3033. jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
  3034. kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
  3035. mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
  3036. qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
  3037. 2016.05-rc1, Released May 10th, 2016
  3038. Fixes all over the tree and new features.
  3039. Architectures: new ARM variants: Cortex A17 and M4, improved
  3040. nonmmu (cortex-M) support, m68k has been re-enabled with
  3041. support for ColdFire. For x86, support for the i386 variant
  3042. has been dropped.
  3043. Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
  3044. deprecated. Go programming language support, Add Binutils 2.26
  3045. support. Old Sourcery PowerPC external toolchains removed,
  3046. Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
  3047. added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
  3048. New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
  3049. STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
  3050. Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
  3051. added for m68k, eXtensa-nommu and ColdFire.
  3052. Linux: use zImage by default on ARM, subversion repository
  3053. support (for u-boot as well).
  3054. New packages: aer-inject, android-tools, cannelloni,
  3055. cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
  3056. gmrender-resurrect, flannel, font-awesome, freeswitch, go,
  3057. go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
  3058. kodi-adsp-basic, kodi-adsp-freesurround,
  3059. kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
  3060. kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
  3061. kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
  3062. kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
  3063. kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
  3064. libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
  3065. lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
  3066. norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
  3067. python-autobahn, python-characteristic, python-crossbar,
  3068. python-cryptography, python-iniparse, python-iowait,
  3069. python-lmdb, python-pexpect, python-ptyprocess,
  3070. python-pyasn-modules, python-pygments, python-pymysql,
  3071. python-pynacl, python-pyopenssl, python-pysocks,
  3072. python-pytrie, python-rpi-gpio, python-service-identity,
  3073. python-setproctitle, python-shutilwhich, python-treq,
  3074. python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
  3075. qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
  3076. raptor, scrub, taskd, tegrarcm, turbolua, valijson,
  3077. wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
  3078. xdriver_xf86-video-amdgpu
  3079. Removed packages: foomatic-filters, python-m2crypto,
  3080. qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
  3081. Issues resolved (http://bugs.buildroot.org):
  3082. #6830: Qt5: no fonts are installed
  3083. #7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
  3084. #7580: Invalid filesystem in Pandaboard defconfig
  3085. #8346: wf111 package removes all kernel module dependencies
  3086. #8436: xserver_xorg-server Segmentation fault
  3087. #8736: IPV6 forced on in busybox
  3088. #8746: At startup system stops with 'cannot set terminal proces..
  3089. #8751: make fail [fio does not build on sh]
  3090. #8766: Compiling host-gcc-final-4.9.3 broken on i386
  3091. #8771: make savedefconfig modifies sources
  3092. #8781: Unable to build uboot for imx28evk
  3093. #8786: gdb fails to build with xz and expat support at the same
  3094. #8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
  3095. #8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
  3096. #8836: Can't select Vim in menuconfig
  3097. #8851: Make sure fio can compile with libaio support if it...
  3098. #8861: With buildroot 2016.02 trying to build for corei7-avx
  3099. fails while trying to build host-binutils
  3100. #8866: Making an USB flash bootable with extlinux build with
  3101. buildroot does not work
  3102. 2016.02, Released March 1st, 2016
  3103. Minor fixes, mostly security related.
  3104. Circular dependency issue with same-as-kernel linux-headers
  3105. option fixed.
  3106. Updated/fixed packages: bluez5_utils, heirloom-mailx,
  3107. imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
  3108. kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
  3109. python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
  3110. 2016.02-rc3, Released February 27th, 2016
  3111. Fixes all over the tree.
  3112. Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
  3113. where VFP is optional (but present on the specific hw). Fix
  3114. ARM variant selection for freescale_imx31_3stack_defconfig.
  3115. Ensure tarballs of downloaded git trees do not contain a
  3116. timestamp.
  3117. Clarify license of patches in COPYING.
  3118. Updated/fixed package: avahi, binutils, cairo, can-festival,
  3119. chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
  3120. erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
  3121. gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
  3122. jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
  3123. libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
  3124. mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
  3125. omniorb, openipmi, openobex, patch, pax-utils, perf,
  3126. pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
  3127. shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
  3128. trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
  3129. wpa_supplicant, xerces, zsh
  3130. Issues resolved (http://bugs.uclibc.org):
  3131. #8651: libMonoPosixHelper.so wrong link reference in buildroot..
  3132. 2016.02-rc2, Released February 18th, 2016
  3133. Fixes all over the tree.
  3134. Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
  3135. crash, backport of Xtensa .init/.fini literals handling.
  3136. glibc security patches for CVE-2014-8121, CVE-2015-1781
  3137. and CVE-2015-7547.
  3138. Defconfigs for Acmesystems Arietta g25 added.
  3139. Updated/fixed packages: binutils, boost, chrony, dovecot,
  3140. e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
  3141. libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
  3142. postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
  3143. sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
  3144. Issues resolved (http://bugs.uclibc.org):
  3145. #8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
  3146. #8606: Problem compiling on Arch Linux
  3147. #8681: kbd 2.0.3 does not build on rpi
  3148. 2016.02-rc1, Released February 10th, 2016
  3149. Fixes all over the tree and new features.
  3150. Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
  3151. arc-2015.12. Support for legacy uClibc dropped, default to
  3152. uClibc-ng instead. Added sys/queue.h implementation for MUSL
  3153. for compatibility. Updated versions of Code sourcery and
  3154. Linaro toolchains. MIPS Codescape toolchains added. Version
  3155. selection for preconfigured external toolchains removed.
  3156. New Defconfigs: ARM Juno r0/r1 development boards, Freescale
  3157. i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
  3158. A number of defconfigs have been extended to generate complete
  3159. system images using genimage.
  3160. Linux: Automatically patch timeconst.pl for <3.9 kernels,
  3161. which isn't compatible with modern perl versions, breaking the
  3162. build when building on recent (Fedora 23, Debian
  3163. Testing/Unstable, ..) distributions.
  3164. Makedevs utility now accepts textual (non-numerical) user and
  3165. group names.
  3166. Vagrant file to easily setup a working development environment
  3167. in a VM has been added.
  3168. Size-stats-compare script to compare rootfs sizes between
  3169. builds has been added.
  3170. Infozip package renamed to zip. EFL packages restructured.
  3171. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  3172. angularjs, apache, apr, argp-standalone, armadillo, arptables,
  3173. at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
  3174. bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
  3175. bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
  3176. clamav, cmake, collectd, connman, coreutils, cppcms, crda,
  3177. cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
  3178. dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
  3179. dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
  3180. dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
  3181. dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
  3182. elementary, elfutils, enlightenment, erlang, espeak, eudev,
  3183. eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
  3184. fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
  3185. firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
  3186. freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
  3187. gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
  3188. glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
  3189. gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
  3190. gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
  3191. gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
  3192. hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
  3193. imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
  3194. ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
  3195. iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
  3196. jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
  3197. jquery-sparkline, jquery-ui, jquery-ui-themes,
  3198. jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
  3199. keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
  3200. leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
  3201. libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
  3202. libedbus, libedit, libedje, libeet, libefreet, libeina,
  3203. libeio, libelementary, libembryo, libepoxy, libethumb, libev,
  3204. libevas, libevas-generic-loaders, libevdev, libevent, libffi,
  3205. libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  3206. libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
  3207. libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
  3208. libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
  3209. libnss, liboauth, liboping, libpciaccess, libplist, libpng,
  3210. libraw, libraw1394, librsvg, libseccomp, libsecret,
  3211. libserialport, libsigc, libsigrok, libsigrokdecode,
  3212. libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
  3213. libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
  3214. libunwind, libupnpp, liburcu, libuv, libv4l, libva,
  3215. libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
  3216. lightning, lighttpd, linknx, linux-firmware, linux-fusion,
  3217. linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
  3218. lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
  3219. lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
  3220. luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
  3221. mesa3d, mesa3d-demos, mesa3d-headers, micropython,
  3222. micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
  3223. moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
  3224. monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
  3225. musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
  3226. netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
  3227. nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
  3228. odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
  3229. openldap, openntpd, openobex, openocd, openpgm,
  3230. open-plc-utils, openpowerlink, openssh, openssl, openswan,
  3231. openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
  3232. pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
  3233. perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
  3234. perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
  3235. polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
  3236. psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
  3237. python-alsaaudio, python-can, python-cffi, python-cherrypy,
  3238. python-httplib2, python-jinja2, python-lxml, python-m2crypto,
  3239. python-mako, python-msgpack, python-psutil, python-pyasn,
  3240. python-pycparser, python-pydal, python-pyftpdlib,
  3241. python-pyroute2, python-pyxml, python-pyzmq, python-requests,
  3242. python-serial, python-setuptools, python-six, python-spidev,
  3243. python-tornado, python-twisted, python-web2py, python-webpy,
  3244. python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
  3245. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  3246. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  3247. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  3248. qt5serialport, qt5svg, qt5webchannel, qt5webkit,
  3249. qt5webkit-examples, qt5websockets, qt5x11extras,
  3250. qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
  3251. readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
  3252. rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
  3253. sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
  3254. smack, snowball-init, socat, sp-oops-extract, sqlite,
  3255. squashfs, squeezelite, squid, sredird, sshfs,
  3256. start-stop-daemon, strace, strongswan, stunnel, subversion,
  3257. sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
  3258. sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
  3259. tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
  3260. trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
  3261. udpcast, unionfs, upmpdcli, usb_modeswitch,
  3262. usb_modeswitch_data, ustr, util-linux, vala, valgrind,
  3263. vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
  3264. wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
  3265. wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
  3266. xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
  3267. xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
  3268. xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
  3269. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  3270. xfont_encodings, xfont_font-adobe-100dpi,
  3271. xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
  3272. xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
  3273. xfont_font-alias, xfont_font-arabic-misc,
  3274. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  3275. xfont_font-bh-lucidatypewriter-100dpi,
  3276. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  3277. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  3278. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  3279. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  3280. xfont_font-daewoo-misc, xfont_font-dec-misc,
  3281. xfont_font-ibm-type1, xfont_font-isas-misc,
  3282. xfont_font-jis-misc, xfont_font-micro-misc,
  3283. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  3284. xfont_font-misc-meltho, xfont_font-misc-misc,
  3285. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  3286. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  3287. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  3288. xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
  3289. xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
  3290. xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
  3291. ympd, zeromq, zic, znc, zsh,
  3292. New packages: acsccid, assimp, atkmm, autofs, bcm2835,
  3293. cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
  3294. edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
  3295. kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
  3296. libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
  3297. libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
  3298. mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
  3299. obsidian-cursors, openal, openbox, pangomm,
  3300. python-backports-abc, python-beautifulsoup4, python-cbor,
  3301. python-click, python-cssselect, python-ecdsa, python-html5lib,
  3302. python-idna, python-ipaddress, python-mistune, python-netaddr,
  3303. python-paho-mqtt, python-paramiko, python-pyparted,
  3304. python-pysmb, python-pyudev, python-singledispatch,
  3305. python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
  3306. sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
  3307. unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
  3308. Removed packages: libungif, python-pyxml,
  3309. Issues resolved (http://bugs.uclibc.org):
  3310. #7886: gettext: link failure with locally-installed libxml2
  3311. #7892: systemd-journald is broken
  3312. #8066: nodejs crashes when built with gcc 4.9
  3313. #8296: nodejs 0.12.7 - npm crashes (seg core dump)
  3314. #8501: gunzip fails to uncompress files
  3315. #8541: fail to build host-fakeroot-1.20.2
  3316. #8546: build instructions for raspberry pi don't work
  3317. #8571: strace for ARC compile error
  3318. #8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
  3319. #8616: Fail to build for raspberrypi_defconfig with big endian
  3320. #8621: sqlite package, properly enable readline
  3321. 2015.11, Released November 30th, 2015
  3322. Minor fixes.
  3323. Merged/seperate /usr handling is now also performed for
  3324. staging so cross-gdb / gdbserver can find the libraries.
  3325. Updated/fixed packages: autossh, conntrack-tools, dcron,
  3326. espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
  3327. libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
  3328. rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
  3329. zmqpp
  3330. Issues resolved (http://bugs.uclibc.org):
  3331. #8441: Invalid directory for X11 fonts in target (RPi2)
  3332. #8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
  3333. 2015.11-rc3, Released November 26th, 2015
  3334. Fixes all over the tree.
  3335. We have a new modern website!
  3336. Updated/fixed packages: apitrace, audiofile, autossh, bullet,
  3337. c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
  3338. fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
  3339. gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
  3340. guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
  3341. libfreeimage, libgsasl, libgtk3, libxml2, localedef,
  3342. lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
  3343. oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
  3344. sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
  3345. yajl, zmqpp
  3346. Issues resolved (http://bugs.uclibc.org):
  3347. #6872: gpsd: disabled on microblaze
  3348. #8321: invalid opcode error with minidlna and ffmpeg
  3349. #8336: Default systemd configuration fails to boot correctly in 2015-08
  3350. #8446: rpi-userland failed to build with glibc 2.22
  3351. 2015.11-rc2, Released November 19th, 2015
  3352. Fixes all over the tree.
  3353. LD_LIBRARY_PATH is no longer used to ensure host binaries find
  3354. their libraries, fixing issues on recent Fedora.
  3355. Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
  3356. with ${TARGET}-cc after the move to use a toolchain wrapper
  3357. for the internal toolchain.
  3358. Appy-patches.sh now correctly applies all files listed in
  3359. series files.
  3360. Fixes for merged /usr handling when a custom skeleton is used.
  3361. Updated/fixed packages: axfsutils, boost, busybox, dhcp,
  3362. directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
  3363. gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
  3364. libecore, libgudev, libnss, libpng, libserial, libssh2,
  3365. libuecc, libxml2, linux-headers, liquid-dsp, ltris,
  3366. lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
  3367. mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
  3368. polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
  3369. ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
  3370. ushare, wine, wpa_supplicant, x265,
  3371. xdriver_xf86-video-siliconmotion, zxing-cpp
  3372. Issues resolved (http://bugs.uclibc.org):
  3373. #4790: Running udhcpc on a system with NFS root kills NFS
  3374. #8456: Building host-pkgconf on Fedora 23 fails due to..
  3375. 2015.11-rc1, Released November, 7th 2015
  3376. Fixes all over the tree and new features.
  3377. Architectures:
  3378. - Support for sparc64 added (internal toolchain with glibc
  3379. only).
  3380. - Support for mips32r6 and mips64r6 added.
  3381. - Support for Intel Quark X1000 CPU.
  3382. - Switch to EABIhf by default on ARM when a VFP is available.
  3383. Toolchains:
  3384. - glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
  3385. uclibc-ng 1.0.8, host-gdb enabled on AArch64.
  3386. - The toolchain wrapper which was used only for external
  3387. toolchains is now also used for Buildroot internal
  3388. toolchains. This allowed to fix the ccache support, prepare
  3389. the way for top-level parallel build support and remove gcc
  3390. patches used to detect header/library path poisoning.
  3391. - Remove Analog Devices Blackfin toolchain 2012R2.
  3392. - Fix several Xtensa build failures by switching from
  3393. text-section-literals to auto-litpools.
  3394. - Enable MIPS64 support in uClibc-ng, use uClibc on ARC
  3395. rather than a specific fork.
  3396. - Linaro toolchains for ARM, ARMeb and AArch64 updated to
  3397. 2015.08. 2014.09 version is kept since 2015.08 only runs on
  3398. x86_64 hosts.
  3399. Bootloaders:
  3400. - Fix ARM64 support in U-Boot.
  3401. Defconfigs:
  3402. - Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
  3403. Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
  3404. OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
  3405. Synopsys AArch64 VDK virtual platform.
  3406. - Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
  3407. cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
  3408. mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
  3409. raspberrypi2, riotboard, snps_axs10*, wandboard.
  3410. - Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
  3411. calao_snowball_defconfig, gnublin, integrator926_defconfig.
  3412. Infrastructure:
  3413. - Support for fetching from Mercurial tags fixed.
  3414. - Introduce LINUX_NEEDS_MODULES, which allows to enforce
  3415. module support to be enabled in the kernel when a package
  3416. builds out-of-tree kernel modules (through the
  3417. pkg-kernel-module infrastructure or on its own).
  3418. - Improve the perl package infrastructure to automatically add
  3419. the dependency to the perl interpreter to target perl module
  3420. packages.
  3421. - Remove trailing slashes in <pkg>_SITE and addition of a
  3422. check to ensure such trailing slashes are no longer added.
  3423. - Extend the legal infrastructure to allow packages to declare
  3424. their actual source code. This is useful for packages for
  3425. which <pkg>_SOURCE points to pre-built binaries (as is the
  3426. case for external toolchains). The new <pkg>_ACTUAL_SOURCE
  3427. variable allows to point to the source code in such cases.
  3428. - Improved ccache support, thanks to the usage of a toolchain
  3429. wrapper for internal toolchain. Now a single cache directory
  3430. can be shared between different Buildroot builds.
  3431. - Addition of a 'graph-size' make targets, which generates a
  3432. PDF graph of per-package size of the root filesystem.
  3433. - Addition of <pkg>_EXCLUDES so that packages can request
  3434. certain parts of the source code tarball to not be
  3435. extracted. This feature is currently used by gcc and
  3436. toolchain-external.
  3437. - Packages can now use the <pkg>_PKGDIR variable, provided by
  3438. the package infrastructure, to reference their package
  3439. directory, instead of explicitly using package/<pkg>/.
  3440. Filesystems:
  3441. - Add high lz4 compression to squashfs.
  3442. - Simplification of shell profile files in the default
  3443. skeleton.
  3444. - Remove ftp user and /home/ftp from the skeleton, and let ftp
  3445. server packages create these when needed.
  3446. - Add support for /bin, /sbin and /lib to be symlinks to their
  3447. corresponding directories in /usr. This is enforced for
  3448. systemd configurations, and optional for other
  3449. configurations.
  3450. - Support for AXFS filesystem image generation added.
  3451. - New options to add extra space/inodes to ext2/3/4 images.
  3452. Updated/fixed packages:
  3453. adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
  3454. barebox, bash, batctl, bind, binutils, bluez_utils, boost,
  3455. bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
  3456. collectd, connman, conntrack-tools, coreutils, cpio,
  3457. cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
  3458. dhrystone, dillo, directfb, directfb-examples, dmraid,
  3459. dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
  3460. dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
  3461. elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
  3462. exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
  3463. flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
  3464. genimage, gettext, git, glib-networking, glmark2, gnupg2,
  3465. gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
  3466. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  3467. gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
  3468. gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
  3469. hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
  3470. inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
  3471. iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
  3472. kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
  3473. kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
  3474. kodi-pvr-stalker, kodi-pvr-vbox,
  3475. kodi-visualisation-waveforhue, less, lftp, libbluray,
  3476. libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
  3477. libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  3478. libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
  3479. liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
  3480. libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
  3481. libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
  3482. libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
  3483. libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
  3484. linux, linux-firmware, linux-fusion, linux-headers,
  3485. lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
  3486. lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
  3487. lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
  3488. modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
  3489. mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
  3490. nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
  3491. openssl, openswan, openvpn, pango, parted, perl, perl-cross,
  3492. perl-crypt-openssl-random, perl-http-message,
  3493. perl-io-socket-ssl, perl-module-build, perl-mojolicious,
  3494. perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
  3495. perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
  3496. poco, polarssl, portaudio, portmap, postgresql, proftpd,
  3497. protobuf, protobuf-c, pulseaudio, python-configshell-fb,
  3498. python-networkmanager, python-numpy, python-pyparsing,
  3499. python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
  3500. python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
  3501. rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
  3502. samba4, sane-backends, sconeserver, sdl, sed, setools,
  3503. shairport-sync, shared-mime-info, sland, smartmontools,
  3504. softether, spice-protocol, sqlcipher, sqlite, squid,
  3505. strongswan, stunnel, subversion, sudo, sunxi-tools,
  3506. supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
  3507. tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
  3508. util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
  3509. vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
  3510. wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
  3511. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  3512. xdriver_xf86-video-sis, xlib_libXi, xorg-server,
  3513. xtables-addons, xterm, xz, zic, znc, zsh
  3514. New packages:
  3515. axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
  3516. gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
  3517. ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
  3518. kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
  3519. libg7221, libhttpparser, libilbc, libldns, libmng,
  3520. libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
  3521. libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
  3522. micropython, micropython-libs, python-pyratemp,
  3523. python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
  3524. sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
  3525. x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
  3526. Removed packages:
  3527. blackbox (was deprecated), divine (merged in directfb),
  3528. kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
  3529. sawman (merged in directfb), schifra (marked broken since a
  3530. long time), texinfo (host variant only, no longer used), zxing
  3531. (replaced by zxing-cpp),
  3532. Issues resolved (http://bugs.uclibc.org):
  3533. #4099: cut utility from GNU coreutils works incorrect
  3534. #7772: libxml-parser-perl build failure: missing dependency
  3535. ExtUtils/MakeMaker
  3536. #7931: Default configuration for Cubieboard v1 is outdated
  3537. #8116: 2015.05-rc2 raspberrypi2_defconfig network interface
  3538. not coming up
  3539. #8246: X.org DRI2 build issue
  3540. #8256: pointing to /usr/bin/objcopy old version (x86) instead
  3541. of the generated one
  3542. #8266: mplayer build issue
  3543. #8281: pyrexc fails to run when path is too long
  3544. #8316: lttng-tools and lttng-babeltrace executables contain
  3545. bad RPATH pointing to host machine
  3546. #8331: kexec wants shutdown in /sbin, but systemd installs it
  3547. in /usr/sbin
  3548. #8361: Buildroot 2015.08.1 skeleton inittab overwritten by
  3549. busybox's version
  3550. #8366: libevent does not build
  3551. #8386: build failed with external toolchain
  3552. #8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
  3553. #8396: CCACHE initialization
  3554. #8401: gpsd 3.15 NMEA support
  3555. #8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
  3556. #8421: util-linux installs systemd files in output/target/home/
  3557. 2015.08, Released August 31st, 2015
  3558. Minor fixes.
  3559. OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
  3560. reintroduced as opencv.
  3561. Updated/fixed packages: bootutils, canfestival, cppcms,
  3562. curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
  3563. ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
  3564. ltrace, midori, network-manager, openssh, perl-file-listing,
  3565. perl-http-cookies, perl-http-daemon, perl-http-negotiate,
  3566. perl-www-robotrules, python-can, qt5base, qt5multimedia,
  3567. setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
  3568. x264, xserver_xorg-server, zyre
  3569. 2015.08-rc2, Released August, 24th 2015
  3570. Fixes all over the tree.
  3571. Toolchain: fix gcc build on NIOS-II.
  3572. Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
  3573. hybrid ISO image generation.
  3574. Architectures: add arm1136j-s variant.
  3575. Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
  3576. beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
  3577. c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
  3578. dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
  3579. guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
  3580. libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
  3581. librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
  3582. linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
  3583. netatalk, nodejs, ola, opencv, oprofile, php, poco,
  3584. postgresql, powertop, protobuf, protobuf-c, qt5base,
  3585. qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
  3586. sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
  3587. wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
  3588. Issues resolved (http://bugs.uclibc.org):
  3589. #8276: package/dropbear: symlink resolution incorrect
  3590. #8286: Error with buildroot
  3591. #8301: ldconfig parameter in Makefile
  3592. 2015.08-rc1, Released August, 5th 2015
  3593. Fixes all over the tree and new features.
  3594. Architectures:
  3595. - Refactor how the availability of an MMU is described.
  3596. - Minimal support for Cortex-M3
  3597. - Minimal support for AArch64 big-endian
  3598. Toolchains:
  3599. - Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
  3600. - Use uClibc-ng as the default uClibc version, instead of the
  3601. official uClibc, which hasn't done any release since 3+
  3602. years
  3603. - eglibc is now marked as deprecated
  3604. - GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
  3605. support for gcc 5.x added.
  3606. - Binutils: use Binutils 2.24 as the default, 2.25.x series
  3607. bumped to 2.25.1, remove old Binutils 2.22.
  3608. - Update ARC toolchain components to 2015.06
  3609. - Add support for Fortran when building gcc
  3610. Bootloaders:
  3611. - Support for using the kconfig configuration system in
  3612. U-Boot
  3613. New Defconfigs:
  3614. - VIA VAB-820/AMOS-820
  3615. - OLimex OLinuxino A20 Lime
  3616. - Many new defconfigs for Atmel evaluation boards:
  3617. at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
  3618. Xplained Ultra, sama5d3 Xplained.
  3619. - ACME Systems Aria G25
  3620. - WarPboard
  3621. - Altera Cyclone 5 Development Board
  3622. - Xilinx zc706
  3623. - ARC AXS101 and AXS103 Software Development Platforms
  3624. - Significant updates to Raspberry Pi / Raspberry Pi 2
  3625. Infrastructure:
  3626. - Buildroot takes better care now of generating predictable
  3627. permissions in the target filesystem. However, existing
  3628. permissions on a custom skeleton or rootfs overlay will no
  3629. longer be preserved. Therefore, it is necessary to add a
  3630. permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
  3631. required permissions.
  3632. - Add support for kconfig fragments.
  3633. - No longer pass --{enable,disable}-debug to autotools
  3634. packages depending on the value of
  3635. BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
  3636. whether we build with -g or not.
  3637. - Support for extracting archives in .lzma in the generic
  3638. package infrastructure.
  3639. - Remove random-seed file from the default skeleton, since
  3640. seeding the entropy pool with a known seed makes more harm
  3641. than good.
  3642. - In the CVS download helper, add support to use a date as
  3643. the version.
  3644. - Add support for a per-package <pkg>_STRIP_COMPONENTS
  3645. variable, which packages can use to specify how many path
  3646. components should be stripped when extracting the tarball.
  3647. - Addition of a 'kernel-module' package infrastructure, which
  3648. simplifies the packaging of external kernel modules. Many
  3649. existing packages are converted to use it.
  3650. - Allow bootloaders to be implemented in $(BR2_EXTERNAL)
  3651. - Remove /etc/securetty from the default skeleton.
  3652. - Migration of sysV initscripts from the default skeleton to
  3653. a package called 'initscripts', installed only when Busbox
  3654. init or sysvinit are used.
  3655. - Migration of the skeleton logic to a proper 'skeleton'
  3656. package.
  3657. - Addition of a 'linux-tools' infrastructure in the 'linux'
  3658. package, to support building user-space tools bundled
  3659. within the Linux kernel sources, such as perf and cpupower.
  3660. - Usage of backticks instead of make $(shell ...) to execute
  3661. shell commands. This allows to delay the evaluation of such
  3662. commands when actually needed, and not when expanding the
  3663. variables. It is useful to make 'make printvars' less
  3664. noisy, and as a preparation to support top-level parallel
  3665. build.
  3666. - Libtool .la files are not mungled for all package types,
  3667. instead of being handled only for packages using the
  3668. autotools-package infrastructure.
  3669. - Add mechanism to allow packages to express a dependency on
  3670. gcc versions. This is needed for packages that use C++11 or
  3671. C11 support for example.
  3672. Important package updates:
  3673. - Complete rework of the matchbox packaging
  3674. - Lots of fixes in packages for compatibility with musl and
  3675. gcc 5.
  3676. - Hash files added to a large number of packages.
  3677. - Update a significant number of packages to use a new
  3678. hosting, after the announcement of Google Code and
  3679. Gitorious closing.
  3680. - Major packages needed for SELinux support have been merged,
  3681. but the support is not complete yet.
  3682. - Significant update of OpenCV to version 3.0, and addition
  3683. of lots of eatures.
  3684. - Significant update of all packages supporting the GPU and
  3685. VPU of i.MX ARM processors.
  3686. - Addition of systemd support in a significant number of
  3687. packages.
  3688. - Qt5 updated to 5.5.0
  3689. - Use modular X.org server by default instead of KDrive
  3690. Filesystems:
  3691. - Complete overhaul of the iso9660 support. Now allows to use
  3692. directly IS9660 as the root filesystem format and not only
  3693. an initrd, and supports Grub 2 and isolinux in addition to
  3694. Grub.
  3695. Updated packages: a10disp, agentpp, apache, at91bootstrap3,
  3696. audit, barebox, bc, bind, bmon, boost, btrfs-progs,
  3697. ca-certificates, can-utils, ccache, cloog, collectd, connman,
  3698. coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
  3699. dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
  3700. e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
  3701. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  3702. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
  3703. eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
  3704. file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
  3705. gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
  3706. gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
  3707. i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
  3708. kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
  3709. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  3710. kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
  3711. libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
  3712. libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
  3713. libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
  3714. libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
  3715. libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
  3716. libunistring, libupnp, libuv, libv4l, libva,
  3717. libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
  3718. linux-firmware, linux-headers, live555, ltrace, lua,
  3719. lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
  3720. lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
  3721. modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
  3722. mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
  3723. nodejs, ntp, ola, opencv, openldap, openssh, openssl,
  3724. openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
  3725. perl-cross, perl-encode-locale, perl-io-socket-ssl,
  3726. perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
  3727. perl-xml-libxml, php, pinentry, polarssl, postgresql,
  3728. pulseview, pure-ftpd, python, python-dpkt, python-lxml,
  3729. python-networkmanager, python-pyinotify, python-pypcap,
  3730. python-tornado, qextserialport, qt, qt5, rapidjson, redis,
  3731. rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
  3732. snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
  3733. sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
  3734. tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
  3735. usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
  3736. weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
  3737. xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
  3738. xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
  3739. xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
  3740. xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
  3741. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  3742. xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
  3743. xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
  3744. xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
  3745. xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
  3746. zic.
  3747. New packages: angularjs, atf, audit, c-icap, c-icap-modules,
  3748. cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
  3749. jquery-datetimepicker, kodi-audioencoder-modplug,
  3750. kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
  3751. kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
  3752. kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
  3753. kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
  3754. kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
  3755. kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
  3756. kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
  3757. kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
  3758. kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
  3759. kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
  3760. kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
  3761. kodi-screensaver-pingpong, kodi-screensaver-pyro,
  3762. kodi-screensaver-stars, kodi-visualisation-shadertoy,
  3763. kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
  3764. kodi-visualisation-waveform, kvmtool, kyua, libfm,
  3765. libfm-extra, libplatform, librtas, libsodium, libsquish,
  3766. libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
  3767. moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
  3768. python-pycli, python-pydal, python-pyyaml, python-web2py,
  3769. qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
  3770. rtl8821au, sepolgen, setools, skeleton, stm32flash,
  3771. webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
  3772. Deprecated packages: webkitgtk, libgail, eglibc support in
  3773. glibc package.
  3774. Issues resolved (http://bugs.uclibc.org):
  3775. #4291: Segmentation fault with all binaries that use threads
  3776. when compiled with gcc 4.6
  3777. #6944: building toolchain for sh4 fails
  3778. #7592: Buildroot GCC: -lto requires plugin support in ranlib
  3779. #7628: Python SSL does not get built for Raspberry Pi
  3780. #7682: Missing dependencies for NFS
  3781. #7742: dhcp lacks important features when BR2_ENABLE_DEBUG
  3782. #7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
  3783. #7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
  3784. #7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
  3785. #7971: python-flask, python-werkzeug. No module named zlib
  3786. #7981: Target file system skeleton permissions hazard
  3787. #8006: rpcdebug in nfs-utils built for the host
  3788. #8036: alsa-lib headers problem that prevents to compile alsa
  3789. dependent projects
  3790. #8081: systemd init system: /tmp is not mode 1777
  3791. #8121: php opcache extension doesn't get installed
  3792. #8151: x86-64 make fails with ncurses 5.9
  3793. #8156: pkg-kconfig infra broken for *-update-{config, defconfig}
  3794. #8161: default /bin/sh symlink to busybox is full path and not relative
  3795. #8171: glamor missing
  3796. #8191: Request update support for the cubieboard series
  3797. #8201: Important security upgrades for node.js
  3798. 2015.05, Released May 31st, 2015
  3799. Minor fixes.
  3800. Updated/fixed packages: conntrack-tools, directfb, fio, flite,
  3801. gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
  3802. libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
  3803. lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
  3804. python3, sconeserver, udpcast, upmpdcli
  3805. 2015.05-rc3, Released May 22nd, 2015
  3806. Several fixes, mainly related to static linking.
  3807. Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
  3808. autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
  3809. enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
  3810. google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
  3811. iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
  3812. libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
  3813. libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
  3814. linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
  3815. mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
  3816. php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
  3817. qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
  3818. tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
  3819. ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
  3820. wvstreams, xmlstarlet, zeromq, zmqpp
  3821. New packages: c-periphery
  3822. Issues resolved (http://bugs.uclibc.org):
  3823. #8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
  3824. #8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
  3825. #8126: exim lacks plaintext and cram-md5 auth
  3826. 2015.05-rc2, Released May 11th, 2015
  3827. Minor fixes.
  3828. Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
  3829. issues. Context functions enabled for uClibc snapshot /
  3830. uClibc-NG.
  3831. Architectures: Endian handling symbol for Xtensa, binutils
  3832. fixes.
  3833. Infrastructure: Fix for kernel module stripping when
  3834. localversion contains spaces.
  3835. Updated/fixed packages: at, autoconf-archive, binutils,
  3836. cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
  3837. gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
  3838. ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
  3839. xlib_libXfont
  3840. Issues resolved (http://bugs.uclibc.org):
  3841. #8086: Cannot select systemd as init with Linaro 2014.09...
  3842. 2015.05-rc1, Released May 4th, 2015
  3843. Fixes all over the tree and new features.
  3844. Architectures: Removed AVR32 support, deprecate SH64, added
  3845. support for steamroller, corei7-avx and core-avx2 x86
  3846. variants.
  3847. Toolchains: IPv6 and Largefile support now enforced for
  3848. uClibc. Corresponding Kconfig symbols removed.
  3849. External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
  3850. CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
  3851. external toolchains are now detected and blacklisted.
  3852. Internal toolchain support for Nios2 added, Blackfin
  3853. removed. Aarch64 and sh musl support. uClibc-ng support added.
  3854. Libatomic is now handled for internal and external
  3855. toolchains. Link time optimization (LTO) support.
  3856. New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
  3857. Auto, Raspberry Pi 2, RIoTboard,
  3858. Infrastructure: Hashes for a large number of packages have
  3859. been added. Missing hashes now stop the build unless
  3860. explicitly disabled.
  3861. Spaces and colons (:) are now supported in package
  3862. versions. Dependencies can now be listed for the patch step
  3863. (<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
  3864. extensions infrastructure has been added.
  3865. Makedevs now has a recursive (r) option.
  3866. The variable containing the list of packages to build has been
  3867. renamed from TARGETS to PACKAGES.
  3868. Make external-deps / legal-info / source / source-check have
  3869. been reimplemented using the package infrastructure, so their
  3870. output/behaviour may differ from earlier (some packages were
  3871. not included in the past).
  3872. The old insecure DES password encoding is no longer supported.
  3873. U-Boot patch option now support direct references to patch
  3874. files and URLs in addition to directories of patches. The
  3875. i.MX28 SD format (u-boot.sd) is now supported.
  3876. Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
  3877. alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
  3878. bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
  3879. btrfs-progs, busybox, ca-certificates, cairo, can-utils,
  3880. canfestival, ccache, chrony, civetweb, clamav, cmake,
  3881. collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
  3882. cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
  3883. dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
  3884. dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
  3885. dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
  3886. libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
  3887. exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
  3888. fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
  3889. gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
  3890. glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
  3891. gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
  3892. gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
  3893. hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
  3894. ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
  3895. iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
  3896. kismet, kmod, kodi-audioencoder-flac,
  3897. kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
  3898. libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
  3899. libdrm, libdvbsi, libebml, libecore, libedit, liberation,
  3900. libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
  3901. libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
  3902. libinput, libiscsi, libksba, liblinear, libmatroska,
  3903. libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
  3904. libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
  3905. libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
  3906. libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
  3907. libusb, libuv, libva-intel-driver, libva, libvncserver,
  3908. libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
  3909. lighttpd, linknx, linphone, linux-firmware, linux-headers,
  3910. linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
  3911. lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
  3912. lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
  3913. luarocks, lvm2, lxc, make,
  3914. matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
  3915. matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
  3916. minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
  3917. monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
  3918. mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
  3919. neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
  3920. nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
  3921. opencv, openldap, openntpd, openocd, openssh, openssl,
  3922. openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
  3923. pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
  3924. perl-io-socket-ssl, perl-json-tiny, perl-module-build,
  3925. perl-mojolicious, perl-net-ssleay, perl-path-tiny,
  3926. perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
  3927. pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
  3928. pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
  3929. python-{cheetah,coherence,django,markdown,netifaces,pam,six},
  3930. python-tornado, python-twisted, python-zope-interface, python,
  3931. python3, qemu, qt, qt5, qt5base, qt5multimedia,
  3932. qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
  3933. rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
  3934. rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
  3935. sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
  3936. smcroute, snmppp, socat, socketcand, sofia-sip, sox,
  3937. spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
  3938. strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
  3939. systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
  3940. tiff, tinyalsa, tn5250, transmission, trinity, tslib,
  3941. tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
  3942. usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
  3943. webp, weston, wget, which, whois, wireless-regdb,
  3944. wireless_tools, wireshark, wpa_supplicant, wvstreams,
  3945. xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
  3946. xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
  3947. xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
  3948. xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
  3949. xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
  3950. xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
  3951. xapp_xmore, xcb-util-image, xcb-util-keysyms,
  3952. xdata_xcursor-themes,
  3953. xdriver_xf86-input-{evdev,keyboard,synaptics,void},
  3954. xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
  3955. xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
  3956. xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
  3957. xfont_font-util, xkeyboard-config,
  3958. xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
  3959. xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
  3960. xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
  3961. xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
  3962. New packages: apache, autoconf-archive, batctl,
  3963. bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
  3964. dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
  3965. imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
  3966. leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
  3967. libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
  3968. mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
  3969. openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
  3970. perl-db-file, perl-digest-{hmac,sha1},
  3971. perl-encode-{detect,locale}, perl-file-{listing,util},
  3972. perl-html-{parser,tagset}, perl-http-cookies,
  3973. perl-http-{daemon,date,message,negotiate}, perl-io-html,
  3974. perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
  3975. perl-mailtools, perl-mime-base64, perl-net-{dns,http},
  3976. perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
  3977. perl-www-robotrules, powertop, pulseview,
  3978. python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
  3979. qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
  3980. unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
  3981. xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
  3982. xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
  3983. xproto_xproxymanagementprotocol
  3984. Removed packages: gtk2-theme-hicolor
  3985. Deprecated packages: samba
  3986. Issues resolved (http://bugs.uclibc.org):
  3987. #7478: Multiple chosen python modules are not built due to...
  3988. #7508: Use of BR2_EXTERNAL and dependencies to existing packages
  3989. #7676: Package procps-ng installs binaries to nonsensical folder
  3990. #7724: Startx is not installed in the target
  3991. #7760: botan: wrong prefix in botan-1.10.pc
  3992. #7826: Building of cdparanoia
  3993. #7844: Lua with hard-float on MIPS by buildroot doesn't work
  3994. #7874: X.org configure error
  3995. #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
  3996. #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
  3997. #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
  3998. #7976: mkuser script fails with: user already exists with...
  3999. #8011: When building only busybox and strace, strace fails...
  4000. #8016: collectd fails to build, network.c:171:19: error:...
  4001. #8041: error on building libcurl7.42.0
  4002. 2015.02, Released March 1st, 2015
  4003. Minor fixes.
  4004. Updated/fixed packages: civetweb, ding-libs,
  4005. directfb-examples, glibc, gnupg, gnupg2, gpm,
  4006. gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
  4007. libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
  4008. libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
  4009. rpi-firmware, shared-mime-info, vlc, vorbis-tools,
  4010. xcb-util-keysyms
  4011. Removed packages: libgc
  4012. 2015.02-rc3, Released February 24th, 2015
  4013. Minor fixes.
  4014. Cmake and rebar (erlang) infrastructure fixes.
  4015. Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
  4016. evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
  4017. make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
  4018. qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
  4019. 2015.02-rc2, Released February 15th, 2015
  4020. Minor fixes.
  4021. raspberrypi: fix kernel sha1 for DT variant.
  4022. Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
  4023. libsepol, libssh2, mplayer, ntp, openvmtools, python3,
  4024. qt5base, qt5connectivity, xserver_xorg-server
  4025. 2015.02-rc1, Released February 8th, 2015
  4026. Fixes all over the tree and new features.
  4027. Static/shared library handling reworked. This is now a
  4028. tristate (shared only / shared and static / static
  4029. only). Default is now shared only to speed up the
  4030. build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
  4031. The toolchain (internal and external) will now warn when an
  4032. unsafe library or header path is used (such as /usr/include or
  4033. /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
  4034. under build options this instead becomes an error.
  4035. A installation path issue with the internal musl toolchain
  4036. support has been fixed so it is now possible to reuse it as an
  4037. external toolchain.
  4038. Architectures: Freescale E5500 and E6500 PowerPC support
  4039. added, deprecated MIPS 1/2/3/4 support removed.
  4040. New defconfigs: Freescale p2020ds, MIPS creator CI20,
  4041. Raspberrypi with DT, UDOO Quad.
  4042. 'make <foo>_defconfig' now saves the path to the defconfig in
  4043. the .config, so a 'make savedefconfig' automatically updates
  4044. it.
  4045. Infrastructure for packages using the Erland rebar tool has
  4046. been added.
  4047. Hashes for a large number of packages have been added. Hashes
  4048. are now checked for both target and host packages.
  4049. The system menu now has an option to automatically configure a
  4050. network interface through DHCP at bootup.
  4051. The default filesystem skeleton now uses a separate tmpfs for
  4052. /run instead of a symlink to /tmp/ for security reasons / to
  4053. protect against conflicts with user generated temporary files.
  4054. BR2_EXTERNAL is now exported to post-build and post-image
  4055. scripts.
  4056. New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
  4057. ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
  4058. erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
  4059. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4060. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
  4061. erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
  4062. gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
  4063. janus-gateway, kodi, kodi-audioencoder-flac,
  4064. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4065. kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
  4066. libselinux, libsemanage, libserialport, libsigro,
  4067. libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
  4068. libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
  4069. mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
  4070. openldap, python-alsaaudio, python-certifi, python-cheetah,
  4071. python-coherence, python-django, python-docopt, python-enum,
  4072. python-enum34, python-flask, python-gobject, python-httplib2,
  4073. python-ipaddr, python-itsdangerous, python-jinja,
  4074. python-markdown, python-markupsafe, python-networkmanager,
  4075. python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
  4076. python-pysendfile, python-pyxb, python-requests, python-six,
  4077. python-twisted, python-webpy, python-werkzeug,
  4078. python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
  4079. start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
  4080. xtables-addons
  4081. Removed packages (target): bison, distcc, gob2, m4
  4082. Issues resolved (http://bugs.uclibc.org):
  4083. #7556: make interactive CLI optional for nftables
  4084. #7730: Error while connecting Qt Cretaor to device
  4085. #7766: logrotate default gzip path is usually wrong
  4086. #7790: Invalid ext4 image generated by Buildroot
  4087. 2014.11, Released December 1st, 2014
  4088. Minor fixes.
  4089. Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
  4090. current working directory isn't searched.
  4091. Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
  4092. parted, shairport-sync, util-linux, xapp_bdftopcf,
  4093. xserver_xorg-server
  4094. 2014.11-rc3, Released November 28th, 2014
  4095. Fixes all over the tree.
  4096. System: File permissions of /etc/random-seed made more
  4097. restrictive.
  4098. Toolchain: Various fixes related to locale handling, a fix for
  4099. building the toolchain wrapper on MIPS.
  4100. Updated/fixed packages: bind, binutils. botan, btrfsprogs,
  4101. clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
  4102. gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
  4103. libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
  4104. linux-headers, mpdecimal, mpg123, network-manager, nfstables,
  4105. nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
  4106. sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
  4107. xl2tp, xserver_xorg-server
  4108. Issues resolved (http://bugs.uclibc.org):
  4109. #7670: Fails to build mpc-1.0.2 on latest Cygwin
  4110. 2014.11-rc2, Released November 21st, 2014
  4111. Fixes all over the tree.
  4112. Inittab tweaks for shutdown handling (busybox and sysvinit).
  4113. Updated/fixed packages: aircrack-ng, botan, canfestival,
  4114. clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
  4115. erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
  4116. libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
  4117. mysql, ndisc6, nodejs, omniorb, perl-cross, php,
  4118. python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
  4119. rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
  4120. tstools, tzdata, wireshark, x264
  4121. Issues resolved (http://bugs.uclibc.org):
  4122. #7646: strftime on datetime not works on python3
  4123. 2014.11-rc1, Released November 12th, 2014
  4124. Fixes all over the tree and new features.
  4125. Toolchains: Use -mcpu / -march instead of -mtune. Support
  4126. additional ARC and sparc variants. Updated Code sourcery
  4127. and Linaro external toolchains.
  4128. Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
  4129. powerpc64 pseries added and a number of updates to the
  4130. existing configurations.
  4131. Infrastructure: Buildroot is now less noisy when built with
  4132. the silent option (make -s).
  4133. A number of package infrastructure variables have been renamed
  4134. from *_OPT to *_OPTS for constency. Buildroot will complain if
  4135. the old names are used to assist in updating out of tree
  4136. packages.
  4137. Fixes for host systems where bash isn't located in /bin, and
  4138. older systems not supporting mktemp --tmpdir.
  4139. Various cleanups of users/groups in the default skeleton.
  4140. There is now an option to choose what shell /bin/sh points to.
  4141. Documentation: Various updates to the user manual. The
  4142. asciidoc documentation handling has now been extended so it
  4143. can be used by (BR2_EXTERNAL) packages.
  4144. Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
  4145. alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
  4146. argus, arptables, at, atftp, atk, attr, audiofile, aumix,
  4147. automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
  4148. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  4149. bluez_utils, bmon, boost, bootutils, bridge-utils,
  4150. btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
  4151. ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
  4152. cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
  4153. collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
  4154. cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
  4155. czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
  4156. dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
  4157. dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
  4158. dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
  4159. e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
  4160. enlightenment, enscript, erlang, espeak, ethtool, eudev,
  4161. evemu, evtest, exfat, exfat-utils, exim, expat, expect,
  4162. explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
  4163. fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
  4164. flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
  4165. fontconfig, foomatic-filters, freerdp, freescale-imx,
  4166. freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
  4167. genimage, genpart, genromfs, geoip, gettext, giblib, git,
  4168. glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
  4169. gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
  4170. gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
  4171. gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
  4172. gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
  4173. gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
  4174. gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
  4175. heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
  4176. hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
  4177. imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
  4178. intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
  4179. iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
  4180. jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
  4181. jquery-ui-themes, jquery-validation, jsmin, json-c,
  4182. json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
  4183. kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
  4184. lesstif, lftp, libaio, libao, libarchive, libargtable2,
  4185. libass, libassuan, libatasmart, libbluray, libbsd, libcap,
  4186. libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
  4187. libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
  4188. libdvdnav, libecore, libedbus, libedit, libedje, libeet,
  4189. libelementary, libelf, libenca, libethumb, libevas,
  4190. libevas-generic-loaders, libevent, libexif, libeXosip2,
  4191. libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
  4192. libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
  4193. libinput, libiscsi, libjson, libksba, liblockfile,
  4194. liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
  4195. libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
  4196. libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
  4197. libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
  4198. libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
  4199. libraw, libreplaygain, libroxml, librsvg, librtlsdr,
  4200. libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
  4201. libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
  4202. libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
  4203. libungif, liburcu, libusb, libuv, libv4l, libva,
  4204. libva-intel-driver, libvncserver, libvorbis, libvpx,
  4205. libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
  4206. libxslt, lighttpd, linenoise, linknx, links, linphone,
  4207. linux-firmware, linux-fusion, linux-headers, linux-pam,
  4208. linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
  4209. localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
  4210. lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
  4211. lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
  4212. lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
  4213. lua-ev, luajit, luajson, lualogging, lua-messagepack,
  4214. lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
  4215. luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
  4216. lzma, m4, madplay, make, makedevs, Makefile.in,
  4217. matchbox-common, matchbox-desktop, matchbox-fakekey,
  4218. matchbox-keyboard, matchbox-lib, matchbox-panel,
  4219. matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
  4220. media-ctl, mediastreamer, memcached, memstat, memtester,
  4221. mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
  4222. modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
  4223. mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
  4224. musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
  4225. ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
  4226. netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
  4227. ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
  4228. nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
  4229. on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
  4230. openocd, openpowerlink, openssh, openssl, openswan,
  4231. opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
  4232. opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
  4233. pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
  4234. perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
  4235. perl-module-build, perl-mojolicious, perl-net-ssleay,
  4236. perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
  4237. php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
  4238. php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
  4239. pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
  4240. pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
  4241. pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
  4242. popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
  4243. pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
  4244. psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
  4245. python-dialog, python-ipy, python-keyring, python-mad,
  4246. python-netifaces, python-numpy, python-protobuf, python-pyasn,
  4247. python-pyparsing, python-pyro, python-pyusb, python-serial,
  4248. python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
  4249. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  4250. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  4251. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  4252. qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
  4253. qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
  4254. quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
  4255. rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
  4256. rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
  4257. ruby, samba, sam-ba, samba4, sane-backends, schifra,
  4258. sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
  4259. sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
  4260. setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
  4261. slang, slirp, smcroute, smstools3, snmppp,
  4262. snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
  4263. speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
  4264. squid, sredird, startup-notification, strace, stress,
  4265. strongswan, stunnel, subversion, sudo, sunxi-boards,
  4266. sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
  4267. systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
  4268. tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
  4269. tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
  4270. tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
  4271. upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
  4272. usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
  4273. vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
  4274. webrtc-audio-processing, weston, wget, whois, wireless-regdb,
  4275. wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
  4276. xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
  4277. xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
  4278. xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
  4279. xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
  4280. xdriver_xf86-video-vmware, xenomai, xerces,
  4281. xfont_font-adobe-{100,75}dpi,
  4282. xfont_font-adobe-utopia-{100dpi,75dpi,type1},
  4283. xfont_font-alias, xfont_font-arabic-misc,
  4284. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  4285. xfont_font-bh-lucidatypewriter-100dpi,
  4286. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  4287. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  4288. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  4289. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  4290. xfont_font-daewoo-misc, xfont_font-dec-misc,
  4291. xfont_font-ibm-type1, xfont_font-isas-misc,
  4292. xfont_font-jis-misc, xfont_font-micro-misc,
  4293. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  4294. xfont_font-misc-meltho, xfont_font-misc-misc,
  4295. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  4296. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  4297. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  4298. xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
  4299. xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
  4300. xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
  4301. xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
  4302. xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
  4303. xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
  4304. xproto_xcmiscproto, xproto_xextproto, xscreensaver,
  4305. xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
  4306. znc, zsh, zxing
  4307. New packages: adwaita-icon-theme, am335x-pru-package,
  4308. bcache-tools, biosdevname, botan, canfestival, clamav,
  4309. cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
  4310. gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
  4311. libdvbcsa, libgtk3, libphidget, libshout, libunistring,
  4312. libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
  4313. netcat-openbsd, nginx, odhcploc, openvmtools,
  4314. phidgetwebservice, pps-tools, pure-ftpd,
  4315. python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
  4316. qt5location, shairport-sync, spidev_test, targetcli-fb,
  4317. tinyalsa, trinity, x264, yaml-cpp, ympd
  4318. Removed packages: libelf
  4319. Issues resolved (http://bugs.uclibc.org):
  4320. #261: New package: wxWidgets
  4321. #325: New package: ratpoison
  4322. #405: New package: OpenVZ tools
  4323. #1309: New package: rdiff-backup
  4324. #3427: New package: nginx
  4325. #3655: New package: libav
  4326. #3991: New Package: open-vm-tools (Vmware Tools)
  4327. #6878: dmraid: disabled on ARC
  4328. #6950: Full unicode support in ncurses
  4329. #7010: jamvm builds and runs fine under mips (be)
  4330. #7088: elfutils on Blackfin doesn't build
  4331. #7142: ecryptfs needs getent to run
  4332. #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
  4333. #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
  4334. #7352: [2014.08-rc3] diffutils-3.3 failed on building
  4335. #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
  4336. #7364: monit builds a static application, even though BR2_PREFER_...
  4337. #7370: ngrep - requires --with-pcap-includes fully defined to find...
  4338. #7442: rootfs remount does not work as expected with sysvinit
  4339. #7448: Having export MACHINE="something" breaks glibc build on IMX6...
  4340. #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
  4341. #7574: quota-4.01 fails to build statically
  4342. 2014.08, Released September 1st, 2014
  4343. Minor manual fixes/additions.
  4344. Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
  4345. lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
  4346. libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
  4347. perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
  4348. php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
  4349. uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
  4350. xscreensaver, yajl
  4351. Issues resolved (http://bugs.uclibc.org):
  4352. #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
  4353. 2014.08-rc3, Released August 26th, 2014
  4354. Minor fixes.
  4355. User manual update / restructuring.
  4356. Updated/fixed packages: cairo, ecryptfs-utils, gettext,
  4357. gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
  4358. lbreakout2, libevas-generic-loaders, libftdi, libinput,
  4359. libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
  4360. thrift, tvheadend, usb_modeswitch, xmlstarlet,
  4361. Issues resolved (http://bugs.uclibc.org):
  4362. #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
  4363. #7322: libgomp dependency issue with imagemagick
  4364. #7328: Git dl of versions in x/y broken
  4365. 2014.08-rc2, Released August 18th, 2014
  4366. Fixes all over the tree.
  4367. User manual restructured / reworked.
  4368. Toolchain: Fix for C++ exceptions / pthread_exit() on
  4369. uClibc/glibc, C++-11 features with uClibc.
  4370. Updated/fixed packages: bandwidthd, bluez5_utils, empty,
  4371. espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
  4372. infozip, libcuefile, libeml, libnftl, localedef, ltrace,
  4373. matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
  4374. oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
  4375. qt, subversion, synergy, systemd, tar, tftpd, webkit,
  4376. xapp_rstart, xbmc, xbmc-pvr-addons
  4377. Issues resolved (http://bugs.uclibc.org):
  4378. #7124: Use BR toolchain externally results a non-bootable...
  4379. #7208: Glibc C++ aplications crash if they use exceptions
  4380. #7250: Cannot build with -std=c++11
  4381. #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
  4382. #7286: systemd 215 doesn't build
  4383. 2014.08-rc1, Released August 8th, 2014
  4384. Fixes all over the tree and new features.
  4385. Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
  4386. Improved altivec / SPE /atomic instructions
  4387. handling. Additional PowerPC CPU variants added.
  4388. Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
  4389. qemu-system-xtensa, qemu-aarch64-virt added. A number of
  4390. tweaks to existing ones. lpc32xx defconfigs removed.
  4391. Toolchain: Microblaze support for internal musl toolchain.
  4392. Default to GCC 4.8 for internal toolchain, remove deprecated
  4393. 4.3 and 4.6 versions.
  4394. External CodeSourcery / Linaro toolchain updates, option to
  4395. copy gconv libraries for external toolchains.
  4396. Infrastructure: graph-depends: misc fixes, transitive
  4397. dependencies are not drawn by default. Download handling is
  4398. now done using helper scripts. Integrity of downloads can now
  4399. be verified using sha* hashes. Subversion download now uses
  4400. peg revisions for robustness.
  4401. Legal-info: License info of local or overridden packages are
  4402. saved as well. Toolchain packages are also taken into account.
  4403. autotools: Static linking with libtool / v1.5 improvements.
  4404. Gettextize support, similar to autoreconf.
  4405. kconfig package infrastructure added.
  4406. Misc: Version selection for busybox dropped.
  4407. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  4408. alsamixergui, argus, armadillo, at, atftp, atk, avahi,
  4409. avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
  4410. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  4411. bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
  4412. busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
  4413. ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
  4414. collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
  4415. cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
  4416. dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
  4417. dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
  4418. distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
  4419. dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
  4420. e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
  4421. enscript, espeak, ethtool, eudev, evemu, exim, expedite,
  4422. explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
  4423. fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
  4424. flex, flot, fltk, fontconfig, freerdp, freescale-imx,
  4425. freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
  4426. giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
  4427. gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
  4428. gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
  4429. gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
  4430. gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
  4431. imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
  4432. ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
  4433. jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
  4434. kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
  4435. lftp, libaio, libarchive, libargtable2, libart, libatasmart,
  4436. libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
  4437. libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
  4438. libeXosip2, libedit, liberation, libesmtp, libev, libevas,
  4439. libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
  4440. libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
  4441. libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
  4442. libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
  4443. libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
  4444. libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
  4445. librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
  4446. libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
  4447. libxml2, libyaml, links, linux-firmware, linux-fusion,
  4448. linux-headers, linux-pam, lite, live555, lm-sensors,
  4449. lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
  4450. ltris, lua-messagepack, luainterpreter, luajit, luaposix,
  4451. luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
  4452. mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
  4453. modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
  4454. mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
  4455. netatalk, netplug, network-manager, nftables, ngircd, nodejs,
  4456. nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
  4457. openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
  4458. opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
  4459. pax-utils, pcmanfm, perf, perl, perl-module-build, php,
  4460. pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
  4461. prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
  4462. python,
  4463. python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
  4464. python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
  4465. qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
  4466. qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
  4467. read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
  4468. rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
  4469. samba, samba4, sane-backends, sawman, sconeserver, setserial,
  4470. sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
  4471. socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
  4472. startup-notification, statserial, strongswan, stunnel,
  4473. sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
  4474. systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
  4475. ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
  4476. tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
  4477. udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
  4478. vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
  4479. wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
  4480. xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
  4481. xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
  4482. xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
  4483. x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
  4484. xz
  4485. New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
  4486. google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
  4487. libinput, libksba, libmemcached, libmpdclient, librtlsdr,
  4488. libuv, libva, libva-intel-driver, linux-zigbee, memcached,
  4489. mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
  4490. perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
  4491. perl-json-tiny, perl-mojolicious, perl-net-ssleay,
  4492. perl-path-tiny, perl-try-tiny, perl-xml-libxml,
  4493. perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
  4494. php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
  4495. procps-ng, pwgen, python-cffi, python-daemon, python-flup,
  4496. python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
  4497. qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
  4498. twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
  4499. Removed packages: procps
  4500. Issues resolved (http://bugs.uclibc.org):
  4501. #5750: Doing a Buildroot build from /usr doesn't work
  4502. #5900: config flags to the Xenomai build system
  4503. #6230: Cannot compile gcc without threads (uClibc-based)
  4504. #6626: procps Unknown HZ value! (XX) Assume 100
  4505. #7118: Package "thrift" requires atomic operations
  4506. #7154: Local uClibc config file gets overwritten using ...
  4507. #7160: host-xz not built
  4508. #7166: hostapd: segfault when using RT5370
  4509. #7172: Name collision of rpath token expansion and internal..
  4510. #7178: NTPd package cannot sync time without a proper ntp.conf
  4511. #7184: supervisord depends on libxml2 implicitly
  4512. #7196: Unable to build on UBUNTU13.10
  4513. #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
  4514. 2014.05, Released May 31st, 2014
  4515. Minor fixes.
  4516. Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
  4517. for the spl file.
  4518. Updated/fixed packages: exim, glibc, gnutls, libfribidi,
  4519. qt5base, qt5webkit, sysklogd, thrift, u-boot
  4520. 2014.05-rc3, Released May 28th, 2014
  4521. Minor fixes.
  4522. Updated/fixed packages: acl, attr, connman, dosfstools,
  4523. dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
  4524. lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
  4525. mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
  4526. samba4, slang, xbmc
  4527. Issues resolved (http://bugs.uclibc.org):
  4528. #7100: license info for package 'acl' missing
  4529. #7106: license info for package 'attr' missing
  4530. #7112: license info for package 'hwdata'
  4531. 2014.05-rc2, Released May 21st, 2014
  4532. Fixes all over the tree.
  4533. Stripping using sstrip has been deprecated.
  4534. BR2_EXTERNAL can now also be used to implement custom
  4535. filesystem types.
  4536. The newly added BR2_GRAPH_DEPTH variable to limit the depth of
  4537. the generated dependency graph has been renamed to
  4538. BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
  4539. the future.
  4540. The virtual package infrastructure will now error out early
  4541. if multiple packages providing the same virtual package has
  4542. been enabled (E.G. opengl). This change requires that the
  4543. packages explicitly declare what virtual package(s) they
  4544. provide.
  4545. Updated/fixed packages: acpid, armadillo, avahi, bellagio,
  4546. btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
  4547. elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
  4548. gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
  4549. imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
  4550. libdvdread, libnss, libunwind, linux-headers, lsof, lua,
  4551. luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
  4552. netsnmp, nodejs, openpowerlink, openvpn, pciutils,
  4553. php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
  4554. rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
  4555. ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
  4556. xlib_libXpm, xserver_xorg-server, zyre
  4557. Issues resolved (http://bugs.uclibc.org):
  4558. #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
  4559. #7016: Git issues in resulting buildroot tar
  4560. #7094: pciutils doesn't build on Blackfin
  4561. 2014.05-rc1, Released May 13th, 2014
  4562. Fixes all over the tree and new features.
  4563. Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
  4564. been removed. Building o32 ELF files for MIPS64 is an exotic
  4565. configuration that nobody should be using. If o32 is required,
  4566. then is better if it's built for MIPS 32-bit cores so only
  4567. 32-bit instructions will be used leading to a more efficient
  4568. o32 usage.
  4569. Support for the ARM A12 variant and Intel corei7.
  4570. Configs: Minnowboard and Altera SoCkit added, QEMU updates.
  4571. Bootloaders: Grub2 and gummiboot support, syslinux support
  4572. extended.
  4573. Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
  4574. library for internal and external toolchains. 4.8-R3 support
  4575. for ARC, Internal toolchain support for Aarch64 and
  4576. Microblaze. Environment variable to control debug output of
  4577. toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
  4578. other variables. Toolchain tuple vendor name can now be
  4579. customized. Updated external Linaro ARM/Aarch64
  4580. toolchains. Added external Linaro ARMEB toolchain.
  4581. A GDB gdbinit file is now generated for external toolchains to
  4582. automatically set the correct sysroot.
  4583. Kconfig handling for minimum kernel headers version required
  4584. for packages. Now packages needing specific kernel header
  4585. features can specify these requirements in Kconfig.
  4586. Infrastructure: Support for (but disabled as it leads to
  4587. unreproducible builds) toplevel parallel builds. See the
  4588. comment at the top of Makefile for details about how to enable
  4589. it and what the problems are if you want to test it.
  4590. Python package infrastructure extended to support Python 3.x
  4591. Perl and virtual package infrastructure support added.
  4592. PRE_*_HOOKS support for all build steps.
  4593. Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
  4594. barebox, bash, beecrypt, bellagio, binutils, boost,
  4595. boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
  4596. ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
  4597. collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
  4598. cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
  4599. dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
  4600. dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
  4601. evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
  4602. flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
  4603. gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
  4604. gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
  4605. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  4606. gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
  4607. gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
  4608. hostapd, htop, httping, ifplugd, iftop, igmpproxy,
  4609. imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
  4610. ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
  4611. jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
  4612. json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
  4613. lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
  4614. libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
  4615. libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
  4616. libevas, libevdev, libfribidi, libfslcodec, libfslparser,
  4617. libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
  4618. libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
  4619. libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
  4620. libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
  4621. libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
  4622. libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
  4623. lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
  4624. lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
  4625. lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
  4626. luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
  4627. luainterpreter, luajit, lua-msgpack-native, luaposix,
  4628. luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
  4629. memstat, mesa3d, metacity, minidlna, mmc-utils,
  4630. mobile-broadband-provider-info, modem-manager, mongrel2,
  4631. monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
  4632. ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
  4633. newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
  4634. olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
  4635. openswan, openvpn, orbit, orc, p11-kit, pango, parted,
  4636. pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
  4637. picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
  4638. pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
  4639. pulseaudio, python, python3, python-bottle, python-m2crypto,
  4640. python-netifaces, python-pyasn, python-pycrypto,
  4641. python-pygame, python-pysnmp, python-pysnmp-apps,
  4642. python-pysnmp-mibs, python-serial, python-setuptools,
  4643. qextserialport, qt, qt5, qt5base, qt5connectivity,
  4644. qt5declarative, qt5graphicaleffects, qt5imageformats,
  4645. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  4646. qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
  4647. qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
  4648. rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
  4649. rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
  4650. sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
  4651. socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
  4652. stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
  4653. syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
  4654. tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
  4655. uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
  4656. usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
  4657. webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
  4658. w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
  4659. xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
  4660. xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
  4661. xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
  4662. xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
  4663. xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
  4664. xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
  4665. xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
  4666. xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
  4667. xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
  4668. xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
  4669. xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
  4670. xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
  4671. xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
  4672. xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
  4673. xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
  4674. xdriver_xf86-video-ark, xdriver_xf86-video-ast,
  4675. xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
  4676. xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
  4677. xdriver_xf86-video-geode, xdriver_xf86-video-glide,
  4678. xdriver_xf86-video-glint, xdriver_xf86-video-i128,
  4679. xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
  4680. xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
  4681. xdriver_xf86-video-newport, xdriver_xf86-video-nv,
  4682. xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
  4683. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  4684. xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
  4685. xdriver_xf86-video-tga, xdriver_xf86-video-trident,
  4686. xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
  4687. xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
  4688. xlib_xtrans, xproto_xproto, xserver_xorg-server,
  4689. xutil_util-macros, zeromq, zic, zmqpp, zyre
  4690. New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
  4691. dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
  4692. fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
  4693. iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
  4694. libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
  4695. libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
  4696. lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
  4697. lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
  4698. musl, nftables, opentyrian, opentyrian-data,
  4699. perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
  4700. php-zmq, postgresql, python-libconfig, python-pypcap,
  4701. python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
  4702. upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
  4703. yaffs2utils, zlog, znc
  4704. Removed packages: crosstool-ng, python-distutilscross, vala
  4705. Issues resolved (http://bugs.uclibc.org):
  4706. #6842: Checking external toolchain for eabihf
  4707. #6956: Packaging libsoxr
  4708. #6986: Make legal-info fails on uboot versions before 2014.01
  4709. #6992: Incorrect installation rights on external kernel module..
  4710. 2014.02, Released February 27th, 2014
  4711. Minor fixes.
  4712. Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
  4713. gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
  4714. libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
  4715. pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
  4716. Issues resolved (http://bugs.uclibc.org):
  4717. #6938: mkuser script generates wrong password for new user in..
  4718. 2014.02-rc3, Released February 25th, 2014
  4719. Minor fixes.
  4720. Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
  4721. cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
  4722. gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
  4723. libsecret, libsepol, libsigsegv, libtool, libv4l,
  4724. linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
  4725. pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
  4726. tvheadend, util-linux, webkit, xscreensaver
  4727. Issues resolved (http://bugs.uclibc.org):
  4728. #4706: Removing .stamp_target_installed does not trigger...
  4729. #5030: busybox built fails if we use an override src dir...
  4730. #5420: Dbus and /var/run management
  4731. #5768: Not able to build ALSA-Lib for static build
  4732. #5774: Not able to build ALSA-Utils for static build
  4733. #6542: external python modules fail to compile to pyc if...
  4734. #6764: Support for kernel signed modules
  4735. #6794: Busybox compiled from buildroot hangs on pass from...
  4736. 2014.02-rc2, Released February 20th, 2014
  4737. Fixes all over the tree. Static linking / nommu fixes and
  4738. annotations for several packages.
  4739. Updated/fixed packages: boost, busybox, collectd, coreutils,
  4740. dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
  4741. jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
  4742. opencv, python, python3, qtuio, systemd, thrift, transmission,
  4743. uclibc, vlc, webkit
  4744. Issues resolved (http://bugs.uclibc.org):
  4745. #5450: AT91SAM9260 Bootstrap compilation problem
  4746. #5582: libiconv 1.14 failed to build
  4747. #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
  4748. #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
  4749. #6218: binutils-2.23.2/gas fails with undefined reference to..
  4750. #6236: binutils-2.23.2/bfd fails with undefined reference to..
  4751. #6470: If the build directory is a child of /usr, the build..
  4752. #6776: systemd error: static declaration of 'execvpe' follows..
  4753. #6818: toolchainfile.cmake has absolut path references
  4754. 2014.02-rc1, Released February 11th, 2014
  4755. Fixes all over the tree and new features.
  4756. Support for external packages/defconfigs (BR2_EXTERNAL). See
  4757. user manual for details.
  4758. Cleanup of environment variable names for consistency. The
  4759. download directory location override (BUILDROOT_DL_DIR) is now
  4760. called BR2_DL_DIR. Likewise the name of the current .config is
  4761. renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
  4762. your post build scripts if you use this! BUILD_DIR is now also
  4763. exported to the post build/image scripts.
  4764. Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
  4765. uClibc pread/pwrite backport as they cause issues on certain
  4766. architectures, new Linaro and Sourcery Codebench toolchains.
  4767. x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
  4768. variants removed, Microblaze: Internal toolchain support
  4769. Legal infrastructure: Info is now split between host and
  4770. target packages, large number of license annotations.
  4771. Lua: selection between lua 5.1 / 5.2, luarocks support
  4772. Python: package infrastructure, many new packages.
  4773. Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
  4774. beaglebone, microblaze, pandaboard, qemu, raspberry pi
  4775. updated.
  4776. Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
  4777. am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
  4778. berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
  4779. bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
  4780. cifs-utils, civetweb, cmake, collectd, connman, copas,
  4781. coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
  4782. cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
  4783. dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
  4784. dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
  4785. f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
  4786. fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
  4787. gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
  4788. gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
  4789. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  4790. gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
  4791. imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
  4792. jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
  4793. lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
  4794. libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
  4795. libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
  4796. libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
  4797. libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
  4798. libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
  4799. libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
  4800. libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
  4801. libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
  4802. lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
  4803. lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
  4804. luafilesystem, luajit, luaposix, luasec, luasocket,
  4805. luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
  4806. mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
  4807. neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
  4808. numactl, ofone, ola, olsr, omniorb, open2300, opencv,
  4809. openpowerlink, openssh, openssl, openvpn, oprofile, opus,
  4810. opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
  4811. php, poco, poppler, powervr, protobuf-c, psplash, python,
  4812. python-bottle,
  4813. python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
  4814. python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
  4815. python-{serial,setuptools}, qt, qt5base, qt5connectivity,
  4816. qt5declarative, qt5graphicaleffects, qt5jsbackend,
  4817. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  4818. qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
  4819. rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
  4820. sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
  4821. socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
  4822. sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
  4823. sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
  4824. ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
  4825. transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
  4826. uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
  4827. util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
  4828. weston, wget, wireless-regdb, wireshark, wpa_supplicant,
  4829. wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
  4830. xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
  4831. xlib_lib{FS,SM,X11},
  4832. xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
  4833. xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
  4834. xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
  4835. xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
  4836. xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
  4837. xproto_xextproto, xproto_xproto, xutil_util-macros,
  4838. xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
  4839. New packages: apitrace, avrdude, c-ares, ca-certificates,
  4840. cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
  4841. haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
  4842. lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
  4843. libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
  4844. libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
  4845. luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
  4846. python-configobj, python-dialog, python-json-schema-validator,
  4847. python-keyring, python-msgpack, python-posix-ipc,
  4848. python-pyasn, python-pycrypto, python-pysnmp,
  4849. python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
  4850. python-simplejson, python-tornado, python-versiontools,
  4851. rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
  4852. ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
  4853. Removed packages: autoconf, automake, ccache, cpanminus, lzma,
  4854. netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
  4855. Issues resolved (http://bugs.uclibc.org):
  4856. #65: new package: dbus c++ language bindings
  4857. #769: Update configuration menu for MIPS target
  4858. #2419: Add a bundle of Lua modules
  4859. #2629: Segmentation faults and division by zero in Grub on ext2
  4860. #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
  4861. #4339: Allow override of DL_DIR in extract step
  4862. #4363: Make sure that copied linux and busybox defconfig are...
  4863. #4454: There should be simple way to update image, when chang...
  4864. #5024: grub fails to build for x86_64 target architecture
  4865. #5066: New-Package: net-tools
  4866. #5072: ncurses: add ncurses-progs to target
  4867. #5294: uclibc build ignores target CFLAGS and LDFLAGS
  4868. #5366: Login doesn't work with util-linux versions of login/agetty
  4869. #5378: dropbear Makefile broken
  4870. #5390: System banner - change to empty doesn't remove /etc/issue
  4871. #5780: spurious build failure because it cannot remove ubinize.cfg
  4872. #5798: ncurses-5.9 fails to compile statically
  4873. #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
  4874. #6080: Git fetch caching
  4875. #6092: Bootable ISO image creation seems to have stopped working..
  4876. #6272: coreutils build fails
  4877. #6434: apply-patches.sh does not work recursively
  4878. #6446: eglibc doesn't install ldconfig to target
  4879. #6484: Add c-ares
  4880. #6596: Slow bootup if mdev is chosen
  4881. #6656: Build Qt5 with ccache
  4882. #6662: internal compiler error: Segmentation fault during making..
  4883. #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
  4884. #6752: genext2fs: e2fsck must run before tunefs -U random
  4885. #6770: openssl 1.0.1f fails with ccache
  4886. #6830: Qt5: no fonts are installed
  4887. #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
  4888. #6854: Update to Qt 5.2.1
  4889. 2013.11, Released November 30th, 2013:
  4890. Minor fixes.
  4891. Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
  4892. ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
  4893. iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
  4894. lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
  4895. tvheadend, util-linux, wpa_supplicant
  4896. Issues resolved (http://bugs.uclibc.org):
  4897. #1279: Buildroot compiled Busybox and Coreutils LFS issues
  4898. #2995: -fstack-protector-all causes ssh to SIGSEGV
  4899. #5570: Cannot compile software on the target machine
  4900. #6428: util-linux libmount segfaults with patch from buildroot
  4901. #6500: php fails to build for armel
  4902. #6554: gdb needs to dependents on host texinfo
  4903. #6692: GNU nano fails to compile for x86_64
  4904. #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
  4905. 2013.11-rc3, Released November 26th, 2013
  4906. Fixes all over the tree.
  4907. Architecture: Mark MIPS I, II, III and IV as deprecated.
  4908. Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
  4909. libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
  4910. mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
  4911. protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
  4912. swig, ti-gfx, tinymembench, uclibc, udisks, vim
  4913. 2013.11-rc2, Released November 18th, 2013
  4914. Fixes all over the tree.
  4915. Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
  4916. Adjust kernel versions.
  4917. Toolchain: avr32: fix for modern kernel headers
  4918. Bootloader: Barebox updated to 2013.10.1
  4919. Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
  4920. libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
  4921. wayland, wvstreams
  4922. Issues resolved (http://bugs.uclibc.org):
  4923. #3601: DHCPD S80dhcp-server startup script issues
  4924. #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
  4925. #6416: Xenomai package, patch alternative
  4926. #6590: directfb-examples build failed whit linaro toolchain
  4927. 2013.11-rc1, Released November 12th, 2013
  4928. Architectures: Nios-II support, MIPS arch handling fixes
  4929. Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
  4930. sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
  4931. Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
  4932. for avr32, crosstool-ng backend removed, external musl
  4933. toolchain support, gcc 4.8.2, updated Linaro external
  4934. toolchains. Fortran and objective-C support deprecated,
  4935. mudflap support
  4936. Bootloaders: U-Boot: u-boot.imx support, version bumps
  4937. Linux: use kmod instead of module-init-tools
  4938. System: default to devtmpfs for /dev
  4939. Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
  4940. download support, post-rsync hooks
  4941. Fs: u-boot image support for cpio
  4942. Updated/fixed packages: aircrack-ng, alsamixergui, apr,
  4943. apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
  4944. bison, boost, busybox, can-utils, ccache, ccid, cgilua,
  4945. chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
  4946. copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
  4947. directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
  4948. dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
  4949. ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
  4950. fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
  4951. glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
  4952. gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
  4953. gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
  4954. imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
  4955. jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
  4956. libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
  4957. libedit, libevas, libevent, libfreefare, libfuse,
  4958. libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
  4959. libmnl, libmodbus,
  4960. libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
  4961. libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
  4962. libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
  4963. libvpx, lighttpd, linphone, linux-pam, lmbench,
  4964. lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
  4965. ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
  4966. media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
  4967. mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
  4968. nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
  4969. netcat, netkitbase, netperf, netplug, nettle, nfacct,
  4970. nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
  4971. oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
  4972. perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
  4973. poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
  4974. pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
  4975. rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
  4976. samba, scons, screen, sdl_sound, ser2net, setserial,
  4977. smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
  4978. stress, strongswan, stunnel, sudo, syslinux, systemd,
  4979. sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
  4980. tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
  4981. uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
  4982. valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
  4983. webkit, webp, webrtc-audio-processing, weston, wget,
  4984. wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
  4985. xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
  4986. xserver_xorg-server, xz, zeromq, zic, zmqpp
  4987. New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
  4988. duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
  4989. lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
  4990. lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
  4991. python-crc16, python-ipy, python-pyzmq, qt5sensors,
  4992. qt5serialport, qt5x11extras, snmppp, subversion, tcping,
  4993. trace-cmd, xscreensaver, zsh
  4994. Removed packages: module-init-tools
  4995. Issues resolved (http://bugs.uclibc.org):
  4996. #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
  4997. #5408: qt build failure with Sourcery CodeBench ARM 2010.09
  4998. #5630: makefile error with toolchain helpers.mk
  4999. #5672: htop: remove X11 stuff
  5000. #5678: linux.mk: linux-menuconfig fails
  5001. #5696: python3 installation is too large, patches from python2 needed
  5002. #5978: Erlang does not build for arm in 2013.02-rc3
  5003. #6392: Extended ARM uImage kernel options
  5004. #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
  5005. #6428: util-linux libmount segfaults with patch from buildroot
  5006. #6452: eglibc from Linaro 2013.07 not copied to target correctly
  5007. #6566: PHP segfault when crosscompiled to mips64 - patch included
  5008. #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
  5009. #6578: udisks package broken
  5010. #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
  5011. #6608: ebtables missing ethertypes - fix included
  5012. #6620: Sysvinit package missing killall5 and symlinks - patch included
  5013. #6632: CMake use host pkg-config
  5014. #6638: pkgconf doesn't download
  5015. #6644: "all" target doesn't work in out-of-tree builds
  5016. #6650: Segmentation fault when trying to build latest buildroot
  5017. #6668: iptables limit module alignment problem on mips64
  5018. 2013.08, Released August 31th, 2013:
  5019. Minor fixes.
  5020. Documentation build fixed.
  5021. Updated/fixed packages: ltrace, strongswan
  5022. 2013.08-rc3, Released August 29th, 2013:
  5023. Fixes all over the tree.
  5024. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  5025. misc fixes for generatelocales, apply-patches and module
  5026. stripping.
  5027. Top level menu names reordered and renamed for clarity.
  5028. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  5029. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  5030. openssh, openssl, pulseaudio, python-setuptools, qt5,
  5031. qt5webkit, redis, strongswan, sunxi-mali
  5032. Issues resolved (http://bugs.uclibc.org):
  5033. #6464: dbus-daemon-launch-helper needs setuid
  5034. 2013.08-rc2, Released August 16th 2013:
  5035. Documentation improvements.
  5036. External toolchains fixes.
  5037. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  5038. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  5039. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  5040. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  5041. uclibc, udev, wayland, webkit, zeromq.
  5042. Issues resolved (http://bugs.uclibc.org):
  5043. #6440: typo in ffmpeg makefile
  5044. 2013.08-rc1, Released August 5th, 2013:
  5045. Architectures:
  5046. - improved support for floating point on ARM and Thumb/Thumb2
  5047. - support for ARM OABI removed
  5048. Toolchains:
  5049. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  5050. - Linaro ARM and Aarch64 toolchains updated
  5051. - support added for the Arago ARMv5 and ARMv7 toolchains
  5052. - gcc 4.8.x version bumped
  5053. - support for installing both FDPIC and FLAT libraries on
  5054. Blackfin
  5055. - support for uClibc 0.9.31 removed,
  5056. - convert the internal toolchain backend to use the package
  5057. infrastructure
  5058. - support added for eglibc in the internal toolchain backend
  5059. - toolchain components for the ARC architecture updated and
  5060. gdb for ARC added.
  5061. - support for Blackfin in the internal toolchain fixed
  5062. Defconfigs: beaglebone_defconfig updated, new defconfig for
  5063. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  5064. TNY-A9G20-LPW.
  5065. A number of packages have been fixed to use the
  5066. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  5067. script installed and modified properly. Licensing informations
  5068. has been added to a number of packages.
  5069. Use XZ tarballs for a number of packages.
  5070. Noticeable package changes/additions:
  5071. - The glib2/libgtk2/webkit stack has been updated to recent
  5072. versions.
  5073. - Support for Gstreamer 1.x has been added.
  5074. - OpenGL support for TI OMAP platforms has been added.
  5075. - OpenGL support for Allwinner platforms has been added.
  5076. - OpenMAX support for RasberryPi has been added.
  5077. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  5078. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  5079. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  5080. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  5081. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  5082. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  5083. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  5084. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  5085. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  5086. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  5087. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  5088. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  5089. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  5090. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  5091. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  5092. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  5093. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  5094. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  5095. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  5096. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  5097. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  5098. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  5099. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  5100. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  5101. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  5102. zlib.
  5103. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  5104. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  5105. gcc-final, gcc-initial, gcc-intermediate, git,
  5106. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  5107. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  5108. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  5109. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  5110. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  5111. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  5112. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  5113. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  5114. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  5115. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  5116. tree, tstools, uclibc, w_scan.
  5117. Issues resolved (http://bugs.uclibc.org):
  5118. #4718: python (built for powerpc) distutils has paths to host
  5119. compiler toolchain
  5120. #5516: appended device tree blobs on uImage fails
  5121. #6302: Versions of packages retrieved from github.com are wrong
  5122. #6308: dosfstools download link is wrong
  5123. #6326: Dropbear: Add options to allow better config for
  5124. different target devices (e.g. routers)
  5125. #6338: Wrong download link for minicom package
  5126. #6344: Wrong handling of license text files with same name and
  5127. different directory
  5128. #6374: gnutls package broken if linux cryptodev module
  5129. selected
  5130. #6410: omap3_beagle has uimage error load address error
  5131. 2013.05, Released May 31th, 2013:
  5132. Minor fixes.
  5133. External toolchain wrapper fix for if host/usr/bin is placed
  5134. in the patch.
  5135. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  5136. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  5137. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  5138. Issues resolved (http://bugs.uclibc.org):
  5139. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  5140. #4988: flex and m4 problems
  5141. #5912: obsolete CVS files
  5142. 2013.05-rc3, Released May 25th, 2013:
  5143. Minor fixes.
  5144. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  5145. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  5146. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  5147. wireshark
  5148. 2013.05-rc2, Released May 15th, 2013:
  5149. Fixes all over the tree.
  5150. Default number of parallel jobs is now number of CPUs + 1.
  5151. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  5152. Updated/fixed packages: aircrack-ng, busybox, cairo,
  5153. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  5154. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  5155. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  5156. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  5157. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  5158. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  5159. sconeserver, strace, sylpheed, wvstreams,
  5160. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  5161. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  5162. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  5163. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  5164. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  5165. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  5166. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  5167. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  5168. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  5169. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  5170. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  5171. xdata_xcursor-themes,
  5172. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  5173. xdriver_xf86-input-{tslib,vmmouse,void},
  5174. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  5175. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  5176. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  5177. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  5178. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  5179. xfont_font-utopia-{100dpi,75dpi,type1},
  5180. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  5181. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  5182. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  5183. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  5184. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  5185. xfont_font-{mutt,schumacher}-misc,
  5186. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  5187. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  5188. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  5189. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  5190. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  5191. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  5192. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  5193. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  5194. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  5195. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  5196. xserver_xorg-server, xutil_{makedepend,util-macros}
  5197. Readded Packages: xapp_xinit
  5198. Issues resolved (http://bugs.uclibc.org):
  5199. #5054: amd64: cannot find init - due to missing /lib64 folder
  5200. 2013.05-rc1, Released May 8th, 2013:
  5201. Architectures: ARC support, Blackfin support, FLAT binary
  5202. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  5203. Toolchains: Add new Microblaze external toolchains, Linaro
  5204. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  5205. internal toolchain, default to GCC 4.7.x. Internal
  5206. Crosstool-ng backend deprecated.
  5207. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  5208. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  5209. pi, gnublin board.
  5210. FS: LZO and XZ compression methods, extra ubifs options,
  5211. ext2 rev 0/1 and ext3/4 support.
  5212. Patch handling: apply-patches now has .patch.xz support,
  5213. Patch logic reworked as discussed during Febrary dev days:
  5214. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  5215. <pkg>-rsync now excludes version control files.
  5216. linux: uImage load address for ARM multiplatform kernels
  5217. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  5218. providers, similar to how libjpeg / libjpeg-turbo is handled.
  5219. Infrastructure for packages to add system users.
  5220. kconfig: updated to 3.9-rc2, support make olddefconfig
  5221. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  5222. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  5223. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  5224. busybox, ccache, cifs-utils, cmake, collectd, connman,
  5225. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  5226. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  5227. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  5228. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  5229. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  5230. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  5231. httping, icu, inotify-tools, intltool, iproute2, ipset,
  5232. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  5233. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  5234. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  5235. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  5236. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  5237. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  5238. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  5239. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  5240. mediastreamer, memtester, mesa3d,
  5241. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  5242. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  5243. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  5244. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  5245. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  5246. polarssl, proftpd, psmisc, pulseaudio, python,
  5247. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  5248. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  5249. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  5250. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  5251. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  5252. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  5253. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  5254. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  5255. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  5256. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  5257. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  5258. xdriver_xf86-input-{tslib,vmmouse,void},
  5259. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  5260. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  5261. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  5262. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  5263. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  5264. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  5265. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  5266. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  5267. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  5268. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  5269. xserver_xorg-server, xutil_makedepend, xz, zeromq
  5270. New packages: aircrack-ng, bcusdk, chrony, crda,
  5271. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  5272. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  5273. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  5274. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  5275. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  5276. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  5277. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  5278. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  5279. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  5280. qt5declarative, qt5graphicaleffects, qt5imageformats,
  5281. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  5282. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  5283. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  5284. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  5285. xcursor-transparent-theme, zic, zmqpp, zyre
  5286. Removed packages: microperl, ocf-linux, xapp_xinit,
  5287. xapp_xplsprinters, xapp_xprehashprinterlist,
  5288. xfont_font-bitstream-speedo,
  5289. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  5290. xproto_{print,xf86rush}proto
  5291. Deprecated packages: vala
  5292. Issues resolved (http://bugs.uclibc.org):
  5293. #1291: Add support for Faraday 526 arm processor (fa526)
  5294. #2683: cups does not install correctly to target
  5295. #3313: mesa3d fails to build
  5296. #5186: initramfs/cpio should support lzo compression
  5297. #5636: agetty - cannot get controlling tty error - need updated...
  5298. #5906: collectd client headers not exported
  5299. #5966: bison unnecessarily required as build dependency
  5300. #6140: --enable-fileinfo not applied for php package
  5301. #6164: openvpn usage of ip tool from Busybox
  5302. 2013.02, Released February 28th, 2013:
  5303. Misc manual updates.
  5304. Updated/fixed packages: busybox, collectd, flashbench,
  5305. libgtk2, libupnp, mii-diag, quota
  5306. 2013.02-rc3, Released February 26th, 2013
  5307. Minor fixes.
  5308. Updated/fixed packages: conntrack-tools, dialog,
  5309. enlightenment, haserl, keyutils, libfif, libmad,
  5310. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  5311. ruby, spawn-fcgi, vtun
  5312. Issues resolved (http://bugs.uclibc.org):
  5313. #5960: fusion.ko driver does not install to target rootfs
  5314. 2013.02-rc2, Released February 19th, 2013
  5315. Fixes all over the tree.
  5316. Various manual updates and fixes.
  5317. Updated/fixed packages: busybox, collectd, gesftpserver,
  5318. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  5319. libglib2, libtorrent, libvorbis, neard, network-manager,
  5320. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  5321. Issues resolved (http://bugs.uclibc.org):
  5322. #5906: collectd client headers not exported
  5323. 2013.02-rc1, Released February 10th, 2013
  5324. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  5325. libraries install fixed. Add Linaro ARM
  5326. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  5327. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  5328. missing 32bit support for binary toolchains. Toolchain wrapper
  5329. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  5330. 7.1. Deprecate uClibc 0.9.31.
  5331. Architecture: Xtensa fixes, add missing powerpc variants, arm
  5332. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  5333. deprecated. Sparc: drop old unused variants
  5334. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  5335. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  5336. environment image support, U-Boot: add 2013.01.01
  5337. Linux: fix appended dtb handling for v3.8+ kernels, support
  5338. multiple device trees
  5339. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  5340. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  5341. updated, at91rm9200df: misc fixes. Lock kernel headers to
  5342. match kernel.
  5343. Infrastructure: Git download fixes. Toolchain make target
  5344. renamed from 'cross' to 'toolchain'. Eclipse integration
  5345. support. Option to set root password, post image scripts,
  5346. config scripts handling.
  5347. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  5348. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  5349. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  5350. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  5351. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  5352. diffutils, directfb, distcc, divine, dnsmasq, docker,
  5353. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  5354. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  5355. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  5356. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  5357. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  5358. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  5359. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  5360. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  5361. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  5362. libedbus, libedje, libeet, libefreet, libeina, libeio,
  5363. liberation, libelementary, libembryo, libethumb, libev,
  5364. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  5365. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  5366. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  5367. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  5368. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  5369. libxml2, libxslt, lighttpd, links, linux-firmware,
  5370. linux-fusion, ltp-testsuite, ltrace,
  5371. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  5372. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  5373. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  5374. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  5375. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  5376. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  5377. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  5378. python, python3, qemu, qextserialport, qt, quagga, radvd,
  5379. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  5380. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  5381. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  5382. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  5383. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  5384. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  5385. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  5386. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  5387. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  5388. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  5389. xserver_xorg-server, xstroke, xvkbd, xz
  5390. New packages: b43-firmware, b43-fwcutter, bustle,
  5391. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  5392. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  5393. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  5394. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  5395. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  5396. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  5397. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  5398. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  5399. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  5400. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  5401. spice-protocol, tcllib, tvheadend, udisks, usbredir
  5402. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  5403. zd1211-firmware
  5404. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  5405. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  5406. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  5407. xdriver_xf86-video-{tsend,xgi,xgixp}
  5408. Deprecated packages: xstroke
  5409. Issues resolved (http://bugs.uclibc.org):
  5410. #4237: building shared openssl w/-Os fails due to gcc bug
  5411. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  5412. #5602: python3 should install a "python" symbolic link
  5413. #5846: Extra slash added to last slash in URL
  5414. 2012.11.1, Released January 3rd, 2013:
  5415. Toolchain: Fixed non-largefile builds on recent Ubuntu
  5416. versions.
  5417. Arch: fix missing x86/generic handling, Build for Xtensa with
  5418. longcalls option.
  5419. Updated/fixed packages: dosfstools, qt
  5420. 2012.11, Released December 2nd, 2012:
  5421. Git shallow clone fix for older git version.
  5422. Updated/fixed packages: ctuio, libtool
  5423. Issues resolved (http://bugs.uclibc.org):
  5424. #5726: List all the available hook points
  5425. 2012.11-rc2, Released November 30th, 2012:
  5426. Minor fixes around the tree.
  5427. Various manual updates and fixes.
  5428. Add checks for legacy features.
  5429. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  5430. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  5431. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  5432. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  5433. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  5434. scons, strace, sylpheed
  5435. Issues resolved (http://bugs.uclibc.org):
  5436. #5732: Error : package/alsa-lib/alsa-lib.mk
  5437. 2012.11-rc1, Released November 17th, 2012
  5438. Fixes all over the tree and new features.
  5439. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  5440. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  5441. + nitrogen6x defconfigs.
  5442. Bootloaders: add u-boot 2012.07/10, ais target format, add
  5443. barebox 2012.08/09/10/11, linker overlap issue fix for
  5444. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  5445. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  5446. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  5447. Libtirpc support for modern glibc variants. Toolchain on
  5448. target has been deprecated.
  5449. Initial Aarch64 support, Xtensa support re-added.
  5450. Infrastructure: Use shallow git clone when possible, use
  5451. tarballs rather than git URLs for github. Moved to pkgconf
  5452. rather than pkg-config. System directory added, default
  5453. skeleton/device tables moved. More than 1 post-build script
  5454. can now be used. output/target now contains a
  5455. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  5456. understand how to (not) use it.
  5457. Manual has been reworked and extended.
  5458. Legal-info: Lots of package annotations, CSV file fixes,
  5459. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  5460. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  5461. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  5462. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  5463. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  5464. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  5465. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  5466. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  5467. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  5468. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  5469. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  5470. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  5471. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  5472. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  5473. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  5474. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  5475. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  5476. lmbench, lockfile-progs, logrotate, lshw, lsof,
  5477. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  5478. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  5479. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  5480. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  5481. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  5482. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  5483. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  5484. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  5485. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  5486. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  5487. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  5488. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  5489. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  5490. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  5491. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  5492. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  5493. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  5494. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  5495. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  5496. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  5497. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  5498. yasm
  5499. Deprecated packages: netkitbase, netkittelnet
  5500. Issues resolved (http://bugs.uclibc.org):
  5501. #807: [PATCH] samba - make iconv and smbd optional
  5502. #3049: binutils have a sysroot bug in ld
  5503. #5330: update vsftpd to 3.0.0
  5504. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  5505. #5666: Fails to build python 2.7.2 for 2440 arm
  5506. 2012.08, Release August 31th, 2012
  5507. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  5508. prboom, oprofile.
  5509. Added license information for: sqlite.
  5510. Changed the source URLs of all packages located on Sourceforge
  5511. in order to use the automatic mirror selection URL
  5512. downloads.sourceforge.net, and get rid of the
  5513. BR2_SOURCEFORGE_MIRROR option.
  5514. 2012.08-rc3, Released August 25th, 2012
  5515. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  5516. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  5517. Added license informations for: barebox, grub, syslinux,
  5518. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  5519. faad2, nano, fbdump, rsync, librsync, fontconfig,
  5520. inotify-tools,
  5521. 2012.08-rc2, Released August 15th, 2012
  5522. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  5523. Added license informations for: mxml, nanocom, empty, expat,
  5524. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  5525. input-event-daemon, luajit, cgilua, copas, coxpcall,
  5526. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  5527. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  5528. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  5529. mtd, openssl, psmisc, socat, spawn-fcgi.
  5530. Fixes to Microblaze external toolchains
  5531. configuration. Improvements of the pkg-stats
  5532. script. Out-of-tree fix for the graph-depends script.
  5533. Kernel headers version bump.
  5534. 2012.08-rc1, Released August 1st, 2012
  5535. Fixes all over the tree and new features.
  5536. Integration of a legal information reporting infrastructure,
  5537. which allows to generate detailed informations about the
  5538. licenses and source code of all components of a system
  5539. generated by Buildroot. License information will progressively
  5540. be added on packages.
  5541. Default configuration files added for Calao-systems USB-A9263
  5542. and Calao-systems USB-A9G20-LPW.
  5543. External toolchains update: allow download of a custom
  5544. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  5545. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  5546. 2011.09.
  5547. Allow the restriction of downloads to the primary site only.
  5548. This is useful for project developers who want to ensure that
  5549. the project can be built even if the upstream tarball
  5550. locations disappear.
  5551. Add a 'System configuration' choice to select between 3
  5552. different init systems: Busybox init, SysV init and Systemd
  5553. init.
  5554. Cleanups to the package infrastructure. The visible change to
  5555. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  5556. $(autotools-package)), and similarly for other package
  5557. infrastructures and host packages. Refer to the documentation
  5558. for details.
  5559. By default, automatic detection of the number of compilation
  5560. jobs to use, depending on the number of CPUs available.
  5561. Improvements to generate systems with static libraries only
  5562. (infrastructure and package fixes).
  5563. Add proper support in the Linux kernel package to generate
  5564. Device Tree Blobs or combined Device Tree / Kernel
  5565. images. This will be useful on Microblaze, PowerPC and ARM,
  5566. which are architectures making extensive use of the Device
  5567. Tree.
  5568. Updated/fixed packages: audiofile, autoconf, automake, axel,
  5569. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  5570. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  5571. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  5572. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  5573. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  5574. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  5575. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  5576. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  5577. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  5578. libfuse, libidn, libmad, libmbus, libmnl,
  5579. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  5580. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  5581. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  5582. lttng-tools, lua, m4, memtester, midori, mii-diag,
  5583. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  5584. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  5585. openssl, pciutils, php, polarssl, portaudio, pppd,
  5586. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  5587. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  5588. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  5589. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  5590. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  5591. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  5592. fbterm, flashrom, freerdp, inadyn, libfreefare,
  5593. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  5594. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  5595. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  5596. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  5597. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  5598. ramspeed, rtorrent, sound-theme-borealis,
  5599. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  5600. xinetd, zxing
  5601. Issues resolved (http://bugs.uclibc.org):
  5602. #1315: Allow use of older external toolchains without sysroot
  5603. support [won't fix]
  5604. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  5605. #5360: buildroot fails when building "host-libglib2 2.30.2
  5606. Building" [won't fix, upstream problem]
  5607. #5384: Can't build packages relying on gets on newer glibc
  5608. [fixed]
  5609. 2012.05, Released May 30th, 2012:
  5610. Updated/fixed packages: busybox, netsnmp, pptp-linux
  5611. 2012.05-rc3, Released May 25th, 2012:
  5612. Minor fixes around the tree.
  5613. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  5614. scp targets.
  5615. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  5616. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  5617. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  5618. xserver-xorg
  5619. 2012.05-rc2, Released May 18th, 2012:
  5620. Fixes all over the tree.
  5621. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  5622. dependency, disable decimal floats support, Linux 3.2.17 /
  5623. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  5624. without C++ support.
  5625. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  5626. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  5627. 2012.05-rc1, Released May 10th, 2012:
  5628. Fixes all over the tree and new features.
  5629. Use /etc/os-release for version info rather than
  5630. /etc/br-version.
  5631. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  5632. Apply-patches.sh: cleanups, archived patches handling fixes,
  5633. support series files.
  5634. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  5635. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  5636. atngw100, use 3.3.x for qemu configs.
  5637. Menu structure: Libraries moved out of multimedia section
  5638. Atom processor support. Prescott fix, blackfin ABI fix,
  5639. Microblaze architecture support (using ext toolchain). Cleanup
  5640. architecture names, deprecate Xtensa support.
  5641. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  5642. default to uClibc 0.9.33.x, enable
  5643. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  5644. fixes for external toolchains, linaro ext toolchains, new
  5645. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  5646. 1.15.2.
  5647. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  5648. support. Barebox: add 2012.04, remove 2011.12.
  5649. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  5650. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  5651. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  5652. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  5653. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  5654. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  5655. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  5656. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  5657. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  5658. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  5659. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  5660. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  5661. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  5662. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  5663. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  5664. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  5665. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  5666. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  5667. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  5668. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  5669. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  5670. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  5671. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  5672. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  5673. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  5674. xfsprogs, zlib
  5675. New packages: apr, apr-util, audiofile, bellagio,
  5676. conntrack-tools, empty, fmtools, glib-networking,
  5677. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  5678. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  5679. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  5680. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  5681. socketcand, stress, systemd, ushare, zeromq
  5682. Deprecated packages: ttcp
  5683. Removed packages: ntfsprogs
  5684. Issues resolved (http://bugs.uclibc.org):
  5685. #2353: [lua] fix build with 2010.08-rc1
  5686. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  5687. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  5688. #2881: Can't build project statically with external toolchain
  5689. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  5690. #4808: ccache may build against wrong zlib
  5691. #4880: New package lcdproc
  5692. #4886: New package protobuf
  5693. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  5694. #4898: * make: [target-finalize] Error 1 (ignored)*
  5695. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  5696. #4970: udev 181 fails to build if kernel version 3.3 is selected
  5697. #5018: dialog broken: exits with assert in uClibc
  5698. #5102: qt package moc, uic, rcc read from wrong place
  5699. #5144: Patch to fix ixon bug in uemacs
  5700. #5198: Line graphics output is broken in GNU Screen
  5701. #5204: Missing terminfo file(s) for GNU screen terminal type
  5702. 2012.02, Released February 29th, 2012:
  5703. Updated/fixed packages: libecore
  5704. 2012.02-rc3, Released February 27th, 2012:
  5705. Fixes all over the tree.
  5706. Automatic host dependencies handling for cmake packages
  5707. fixed. Customize package deprecated as using a post-build
  5708. script is nowadays the preferred way of adding extra stuff to
  5709. the rootfs.
  5710. Linux-headers 3.0.x / 3.2.x stable version bumped.
  5711. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  5712. Updated/fixed packages: dropbear, ffmpeg, libpng
  5713. 2012.02-rc2, Released February 19th, 2012:
  5714. Fixes all over the tree.
  5715. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  5716. linux-headers 3.0.x / 3.2.x stable versions.
  5717. Documentation: Added makedev / <pkg>_DEVICES /
  5718. <pkg>_PERMISSIONS documentation.
  5719. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  5720. libvncserver, mxml, python.
  5721. 2012.02-rc1, Released February 12th, 2012:
  5722. Fixes all over the tree and new features.
  5723. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  5724. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  5725. GDB 7.4, crosstool-NG 1.13.4.
  5726. Gentargets: scp and mercurial support.
  5727. Autotools: derive host dependencies from target by default.
  5728. Packages can now declare device table snippets.
  5729. Host utilities menu with commonly used host tools.
  5730. defconfigs: qemu configs for x86-64, mips and sparc, at91
  5731. defconfigs now use modern U-Boot / mainline Linux, added
  5732. lpc3250 defconfigs.
  5733. uClibc: remove 0.9.30, backport unshare() support, add
  5734. 0.9.32.1 / 0.9.33, use same config for ctng.
  5735. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  5736. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  5737. bootloaders added.
  5738. Various manual updates. Release tarballs now contain generated
  5739. manual in text/html/pdf formats.
  5740. Buildroot now calls the stop function of scripts in
  5741. /etc/init.d at shutdown.
  5742. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  5743. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  5744. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  5745. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  5746. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  5747. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  5748. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  5749. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  5750. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  5751. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  5752. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  5753. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  5754. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  5755. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  5756. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  5757. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  5758. python, python-serial, qt, ruby, samba, sdl, sdparm,
  5759. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  5760. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  5761. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  5762. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  5763. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  5764. xf86-video-sis, xfont_{encodings,font-util},
  5765. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  5766. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  5767. New packages: boost, connman, dstat, expedite, explorercanvas,
  5768. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  5769. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  5770. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  5771. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  5772. libvncserver, linux-firmware,
  5773. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  5774. open2300, python-distutilscross, python-dpkt,
  5775. python-netifaces, python-pygame, python-setuptools, rt-tests,
  5776. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  5777. xf86-input-tslib, xinput-calibrator
  5778. Issues resolved (http://bugs.uclibc.org):
  5779. #743: Add Transmission bit torrent option to buildroot
  5780. #755: Add Boost libraries as a package
  5781. #2299: Add crypto support to libsoup
  5782. #2617: Pixman 0.19.2 & Cairo 1.10.0
  5783. #3403: libgpg-error: bump to version 1.10
  5784. #3409: libgpg-error: download from gnupg.org
  5785. #3421: nano: make tiny flag optional
  5786. #3691: New EFL packages
  5787. #4664: Cannot patch AT91Bootstrap
  5788. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  5789. #4760: Qt: add host-pkg-config to dependency-list
  5790. 2011.11, Released November 30th, 2011:
  5791. Fixes all over the tree.
  5792. Bump kernel headers / default Linux version to 3.1.4.
  5793. Updated/fixed packages: ruby
  5794. 2011.11-rc3, Released November 26th, 2011:
  5795. Fixes all over the tree.
  5796. Toolchain: Fix gdb dependencies for external toolchains,
  5797. adjust uClibc patches so they don't confuse modern versions of
  5798. patch, bump crosstool-ng, kernel headers and linux versions.
  5799. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  5800. php, rsyslog, ruby, thttpd, xapp_xf86dga
  5801. Issues resolved (http://bugs.uclibc.org):
  5802. #4357: Prevent patch commands from accessing source control
  5803. #4369: Fix permissions on untared lsof archive
  5804. 2011.11-rc2, Released November 18th, 2011:
  5805. Fixes all over the tree and new features.
  5806. Updated asciidoc documentation
  5807. Toolchain: Bumped 3.x stable kernel headers, use wget in
  5808. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  5809. uClibc sparc fix.
  5810. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  5811. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  5812. Issues resolved (http://bugs.uclibc.org):
  5813. #3355: mplayer fails to build
  5814. #4021: uClibc: undefined reference to `__GI___errno_location'
  5815. #4297: Qt's qmake uses wrong pkg-config
  5816. 2011.11-rc1, Released November 11th, 2011:
  5817. Fixes all over the tree and new features.
  5818. Moved misc scripts and support stuff to support/. Renamed
  5819. patch-kernel.sh to support/scripts/apply-patches.sh.
  5820. Documentation: Moved to asciidoc format, make targets to
  5821. generate text/html/pdf/epub output added.
  5822. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  5823. added.
  5824. Bootloaders: Add support for custom git tree / tarballs for
  5825. barebox, similar to how it's handled for u-boot. Clean up
  5826. menuconfig options.
  5827. Toolchain: Update external codesourcery toolchain download
  5828. URLs after Codesourcery got bought by Mentor, add x86
  5829. toolchain, update toolchain versions and optimize toolchain
  5830. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  5831. updated GDB versions / download URLs. Binutils
  5832. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  5833. use ctng-1.13.0.
  5834. Package infrastructure: Support for local packages /
  5835. overrides, package dir / name arguments dropped from
  5836. {GEN,AUTO,CMAKE}TARGETS.
  5837. Linux: Kernel extensions infrastructure support, Xenomai +
  5838. RTAI support.
  5839. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  5840. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  5841. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  5842. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  5843. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  5844. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  5845. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  5846. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  5847. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  5848. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  5849. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  5850. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  5851. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  5852. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  5853. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  5854. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  5855. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  5856. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  5857. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  5858. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  5859. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  5860. pulseaudio, pv, rtai, vala, xenomai.
  5861. Removed packages: liboil, sfdisk, swfdec, webif
  5862. Issues resolved (http://bugs.uclibc.org):
  5863. #505: live555: new package
  5864. #507: Enable live and tv options in MPlayer-1.0rc2
  5865. #531: let e2fsprogs package to export headers to staging dir if needed
  5866. #1171: Linuxthreads new cannot find sysdep.h
  5867. #1357: Add bluez to buildroot system
  5868. #2107: New package: input-event-daemon
  5869. #2599: New package: orc (Oil Runtime Compiler)
  5870. #2605: gstreamer: Update to 0.10.30
  5871. #2677: introducing util-linux-ng as replacement for util-linux
  5872. #2917: Qt: Add declarative module
  5873. #3145: jffs2 image generation fails
  5874. #3271: netperf-2.4.5 fails to compile
  5875. #3331: xdata_xcursor-themes depends on xcursorgen
  5876. #3343: Add file:// download SITE_METHOD
  5877. #3391: Add support for specifying an external kernel tree
  5878. #3631: Error while compiling with Xorg
  5879. #3709: oprofile doesn't build for mipsel
  5880. #3925: midori not getting compile
  5881. #4045: Add support for downloading i386 toolchains from codesourcery
  5882. #4165: lrzsz-fix-symlink-at-rebuild.patch
  5883. #4171: makedevs-unused-but-set-variable.patch
  5884. #4183: Codesourcery toolchain download site has changed
  5885. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  5886. #4381: Add option to lighttpd to enable Lua support
  5887. #4387: Make sure that dest dir exists before installing mtd files
  5888. 2011.08, Released August 31th, 2011:
  5889. Fixes all over the tree.
  5890. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  5891. kernel headers.
  5892. Updated/fixed packages: ipset, python
  5893. 2011.08-rc2, Released August 29th, 2011:
  5894. Fixes all over the tree.
  5895. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  5896. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  5897. (broken).
  5898. Defconfigs: kernel updates, fix mini2440 serial port config,
  5899. remove old arm toolchain configs.
  5900. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  5901. targets similar to linux/busybox.
  5902. Updated/fixed packages: barebox, directfb, libsoup,
  5903. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  5904. usbmount, util-linux, xfont_font-misc-misc
  5905. Issues resolved (http://bugs.uclibc.org):
  5906. #3685: ncurses installation hangs due to old version of tic
  5907. #4093: Grub fails to install bz2 patch after conversion to...
  5908. 2011.08-rc1, Released August 4th, 2011:
  5909. Fixes all over the tree and new features.
  5910. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  5911. ext-toolchain-wrapper improvements, improved non-MMU
  5912. support. GCC 4.3.6 / 4.6.1.
  5913. GENTARGETS infrastructure extended to cover bootloaders and
  5914. Linux kernel as well. Options to retrive Linux/U-Boot from a
  5915. custom git repo instead of upstream tarballs.
  5916. Support for Linux 3.x and release candidate tarballs.
  5917. X-Loader bootloader for omap added.
  5918. Make source/external-deps now also works for external
  5919. toolchains / crosstool-ng backend.
  5920. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  5921. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  5922. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  5923. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  5924. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  5925. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  5926. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  5927. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  5928. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  5929. webkit, xorg-xserver, xz, zlib
  5930. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  5931. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  5932. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  5933. statserial, stunnel, ti-utils, uboot-tools, yajl
  5934. Deprecated packages: liboil, swfdec
  5935. Removed packages: hal
  5936. Issues resolved (http://bugs.uclibc.org):
  5937. #3559: libnspr: Add new package
  5938. #3595: patch to add libroxml
  5939. #3565: libnss: Add new package
  5940. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  5941. #3649: [PATCH] Add mapdir to existing pkg-config patch
  5942. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  5943. #3961: Nfs-utils: Remove SUSv3-function index
  5944. #3985: "help" target's defconfig list needs sort
  5945. #3997: bump libroxml to v2.1.0
  5946. 2011.05, Released May 27th, 2011:
  5947. Updated/fixed packages: makedevs
  5948. 2011.05-rc2, Released May 24th, 2011:
  5949. Fixes all over the tree.
  5950. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  5951. 2009q3 external toolchains added. Crosstool-NG bumped to
  5952. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  5953. bumped to 2.6.38.7.
  5954. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  5955. 2011.05-rc1, Released May 18th, 2011:
  5956. Fixes all over the tree and new features.
  5957. External toolchain improvements: We now build a binary
  5958. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  5959. enforces the correct compiler arguments, making an external
  5960. toolchain as easy to use outside of Buildroot as the internal
  5961. ones are. This also brought a cleanup of CFLAGS, making the
  5962. Buildroot build output easier to read.
  5963. Rootfs device handling improvements: Choice between static
  5964. /dev, devtmpfs and devtmpfs with either mdev or udev.
  5965. Toolchain: More preconfigured codesourcery external
  5966. toolchains, improved Crosstool-NG support, fix for GCC
  5967. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  5968. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  5969. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  5970. Linux: support for custom kernel image targets, E.G. for
  5971. powerpc builds with embedded device trees.
  5972. Misc fixes for qemu defconfigs, ensuring correct serial
  5973. terminal setup out of the box.
  5974. Misc gentarget / autotools handling fixes.
  5975. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  5976. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  5977. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  5978. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  5979. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  5980. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  5981. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  5982. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  5983. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  5984. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  5985. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  5986. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  5987. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  5988. New packages: bonnie++, can-utils, gdisk, htop,
  5989. input-event-daemon, libexif, libraw, libv4l, ngircd
  5990. Removed packages: festival
  5991. Issues resolved (http://bugs.uclibc.org):
  5992. #2131: Add OpenMP support to the toolchain
  5993. #3379: New Package: bonnie++
  5994. #3445: Not working openssl-10.0.0d on 386sx
  5995. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  5996. #3457: alsamixergui: broken URL
  5997. #3475: Calling sync on large filesystems when not always necessary
  5998. #3511: make busybox-menuconfig does not download busybox package
  5999. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  6000. #3571: u-boot: fw_printenv does not build
  6001. #3643: popt source url is not responding
  6002. #3733: dropbear: make zlib optional
  6003. #3757: Buildroot can't build mplayer with libmad
  6004. 2011.02, Released February 28th, 2011:
  6005. Fixes all over the tree.
  6006. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  6007. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  6008. Deprecated packages: devmem2, webif
  6009. Issues resolved (http://bugs.uclibc.org):
  6010. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  6011. #3259: Unable to build webkit (on arm)
  6012. #3295: slang fails to build on mipsel
  6013. #3325: ffmpeg fails to build
  6014. 2011.02-rc2, Released February 24th, 2011:
  6015. Fixes all over the tree.
  6016. Festival packages marked as broken. Unless someone steps up
  6017. to support them, they will be removed during the 2011.05
  6018. development cycle.
  6019. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  6020. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  6021. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  6022. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  6023. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  6024. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  6025. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  6026. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  6027. tcpreplay, tiff, wpa_supplicant, xcb-util,
  6028. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  6029. xdriver_xf86-input-{mouse,synaptics,void},
  6030. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  6031. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  6032. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  6033. xserver_xorg-server, xz
  6034. Removed packages: ace_of_penguins, vlc
  6035. Issues resolved (http://bugs.uclibc.org):
  6036. #3205: Failing chmod when running "make" in buildroot (openssl)...
  6037. #3277: quagga fails to build with SNMP support
  6038. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  6039. #3307: synergy fails to build due to missing XTest library
  6040. 2011.02-rc1, Released February 14th, 2011:
  6041. Fixes all over the tree and new features.
  6042. External toolchain improvements: clarification of the options,
  6043. and introduction of the toolchain profile concept, for
  6044. well-known toolchains. Buildroot is now capable of
  6045. automatically downloading and extracting well-known toolchains
  6046. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  6047. toolchains are supported). Crosstool-NG backend updated and
  6048. improved.
  6049. Complete rework of how hardware boards are supported.
  6050. Each board now only has a single defconfig file, and all
  6051. board-specific options have been removed. See
  6052. docs/buildroot.html#board_support for details.
  6053. Added support for the following boards: Mini2440, Qemu ARM
  6054. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  6055. r2d and Qemu x86. The Qemu boards support allows to easily
  6056. build systems that are known to work under Qemu.
  6057. Initial support for Blackfin processors.
  6058. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  6059. preparation for support of SDK. For the same reason, the
  6060. toolchain binaries (cross-compiler and other related tools)
  6061. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  6062. now also automatically returns correct values for cross
  6063. compilation, without needing any environment variables to be
  6064. set.
  6065. Ccache support reworked. Now used for both host and target
  6066. compilation, and cache is stored in ~/.buildroot-ccache.
  6067. Toolchain: uClibc 0.9.32-rc2, several components moved to
  6068. normal AUTOTARGET packages.
  6069. Generic cmake infrastructure, similar to the existing
  6070. GENTARGETS/AUTOTARGETS.
  6071. Support for bzr downloads, next to the existing git/svn support.
  6072. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  6073. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  6074. EXT2 file system size handling improved, UBI image support, fs
  6075. configuration options cleanup, U-Boot/Barebox version bumps.
  6076. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  6077. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  6078. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  6079. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  6080. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  6081. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  6082. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  6083. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  6084. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  6085. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  6086. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  6087. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  6088. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  6089. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  6090. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  6091. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  6092. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  6093. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  6094. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  6095. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  6096. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  6097. xkeyboard-config, xlib_libX11, xz, zlib
  6098. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  6099. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  6100. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  6101. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  6102. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  6103. xl2tp, xmlstarlet
  6104. Removed packages: hotplug, l2tp, libfloat, microcom,
  6105. ng-spice-rework
  6106. Issues resolved (http://bugs.uclibc.org):
  6107. #267: The make target: cross fails because toolchain_build_...
  6108. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  6109. #561: ltp-testsuite failed to install
  6110. #1447: Installing gfortran on PowerPC
  6111. #1651: Build fail caused by ccache in module-init-tools
  6112. #1681: Cross-compiled binaries shouldn't be installed into staging
  6113. #1723: [PATCH] axel: convert to generic package infrastructure and...
  6114. #1735: [PATCH] mplayer: convert to autotools infrastructure
  6115. #2551: [PATCH] native toolchain in the target filesystem fails
  6116. #2623: buildroot-snapshot-20100922 fails when compiling development...
  6117. #2647: makedevs package lacks support for 16-bit major/minor numbers
  6118. #2371: QT MYSQL Module does not build when MySQL installed on the host
  6119. #2839: compile fails in various packages with a odd message "error:...
  6120. #2887: tar "buffer overflow detected" error
  6121. #2893: Broken "make source" with external toolchain
  6122. #2905: Qt: Speed up compilation, if gui-module isn't selected
  6123. #2929: genext2fs: couldn't allocate a block (no free space)
  6124. #2935: Ntpdate isn't installed
  6125. #2965: Broken linkage to xkbcomp (blocking X server startup)
  6126. #2983: xlib_libX11 build failed
  6127. #3007: kexec doesn't build: Missing regdef.h file
  6128. #3085: Init scripts are not compatible with sysVinit (when busybox...
  6129. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  6130. #3109: abnormal `make busybox-menuconfig`
  6131. #3115: How about board specific makefiles?
  6132. #3169: python patch has typo, aborts build in scenario
  6133. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  6134. 2010.11, Released November 30th, 2010:
  6135. Fixes all over the tree.
  6136. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  6137. xserver-xorg
  6138. Issues resolved (http://bugs.uclibc.org):
  6139. #2773: squid with openssl support needs openssl on the host
  6140. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  6141. 2010.11-rc2, Released November 25th, 2010:
  6142. Fixes all over the tree.
  6143. Add support for LEON Sparc architecture variants. Fix make
  6144. source/external-deps for host packages.
  6145. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  6146. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  6147. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  6148. sysstat, webkit, zlib
  6149. Issues resolved (http://bugs.uclibc.org):
  6150. #759: Sysstat build broken without libintl
  6151. #2479: host-module-init-tools 3.11 fails to build
  6152. #2725: Buildroot overrides kernel config
  6153. #2785: mtd-utils build fails due to missing libmtd
  6154. #2791: Added PHP-Process Control to the PHP-Package
  6155. #2797: pciutils dependencies on zlib not taken into account
  6156. #2809: failed to compile libglib2
  6157. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  6158. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  6159. #2833: Failed to compile webkit without X11
  6160. 2010.11-rc1, Released November 8th, 2010:
  6161. Fixes all over the tree and new features.
  6162. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  6163. misc fixes + nconfig and savedefconfig targets.
  6164. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  6165. backend, GCC 4.5.x.
  6166. Fs: Squashfs 4.1 with lzo support
  6167. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  6168. generic new-style ones instead.
  6169. Download handling reworked and support for git/svn downloads
  6170. added.
  6171. Removed experimental shared config.cache support, as it is
  6172. too unreliable.
  6173. A convenience Makefile wrapper is created when using
  6174. out-of-tree building, similar to how it is done for the kernel.
  6175. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  6176. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  6177. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  6178. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  6179. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  6180. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  6181. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  6182. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  6183. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  6184. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  6185. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  6186. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  6187. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  6188. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  6189. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  6190. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  6191. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  6192. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  6193. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  6194. openssl, openvpn, oprofile, pango, patch, pcre, php,
  6195. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  6196. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  6197. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  6198. speex, sqlite, squashfs, startup-notification, strace,
  6199. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  6200. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  6201. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  6202. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  6203. xapp_xmore,
  6204. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  6205. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  6206. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  6207. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  6208. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  6209. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  6210. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  6211. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  6212. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  6213. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  6214. xterm, xvkbd, zlib
  6215. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  6216. Removed packages: dillo, libglib12, libgtk12, microwin,
  6217. pcmcia
  6218. Issues resolved (http://bugs.uclibc.org):
  6219. #901: new package: gpsd
  6220. #2389: Generate a Makefile wrapper in $(O)
  6221. #2461: wireless_tools: install shared library if needed
  6222. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  6223. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  6224. #2563: [PATCH] cairo: Expose the configure option to disable some...
  6225. #2581: libmms: Update to 0.6, and patch to work on architectures...
  6226. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  6227. #2731: Build order
  6228. #2737: buildroot configuration tool crashing when the path exceeds...
  6229. #2767: Build for lsof broken in buildroot-2010.08
  6230. 2010.08: Released August 31th, 2010:
  6231. Fixes all over the tree.
  6232. Updated/fixed packages: atk, xstroke
  6233. Removed packages: lxdoom
  6234. 2010.08-rc2, Released August 30th, 2010:
  6235. Fixes all over the tree.
  6236. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  6237. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  6238. versions.
  6239. Mark CRIS architecture as deprecated, as it is discontinued
  6240. upstream.
  6241. Marked shared config.cache as experimental and disabled by
  6242. default as it is known to break with certain package
  6243. combinations.
  6244. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  6245. added.
  6246. fs: old-style squashfs for big endian archs fixed.
  6247. Updated/fixed packages: busybox, gst-plugins-base,
  6248. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  6249. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  6250. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  6251. util-linux
  6252. Removed packages: stunnel
  6253. Issues resolved (http://bugs.uclibc.org):
  6254. #635: util-linux fails to build in 2009.08
  6255. #2239: netcat package installs its binary to target as avr32-linux...
  6256. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  6257. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  6258. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  6259. 2010.08-rc1, Released July 30th, 2010:
  6260. Fixes all over the tree and new features.
  6261. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  6262. and non-sysroot support removed. Added support for (snapshot)
  6263. NPTL in uClibc, 0.9.28.3 removed,
  6264. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  6265. removed yaboot. Support building u-boot from custom tarball,
  6266. u-boot 2010.06.
  6267. New GTK-based configurator, usable using 'make gconfig'.
  6268. Java packages marked as broken. Unless someone steps up to
  6269. support this, they will be removed during the 2010.11
  6270. development cycle.
  6271. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  6272. GTK+ on DirectFB has also been marked as deprecated, as it is
  6273. not supported in recent GTK+ versions, and more and more
  6274. packages depends on the new versions.
  6275. Unless someone steps up to support them, they will be removed
  6276. during the 2010.11 development cycle.
  6277. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  6278. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  6279. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  6280. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  6281. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  6282. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  6283. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  6284. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  6285. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  6286. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  6287. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  6288. ltrace, make, midori, module-init-tools, mplayer,
  6289. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  6290. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  6291. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  6292. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  6293. usbutils, webif, webkit, wireless_tools, xerces,
  6294. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  6295. Removed packages: modutils, portage, rxvt
  6296. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  6297. Issues resolved (http://bugs.uclibc.org):
  6298. #321: alsa-lib uses host include files for python which breaks ...
  6299. #361: linux kernel configuration choice works incorrectly
  6300. #387: Tremor not installed to toolchain
  6301. #401: new package: ffmpeg
  6302. #475: uImage target for U-boot failed generating
  6303. #543: ATK requires X11 on DirectFB target
  6304. #575: webkit: Buildroot Libtool Patch Fails
  6305. #583: build fails with external x86_64 toolchain
  6306. #729: sstrip creates corrupted headers
  6307. #829: Webkit r44552 needs libXt
  6308. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  6309. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  6310. #859: Add (head of) nptl branch to list of uClibc versions
  6311. #949: compile with debug info
  6312. #955: Grub fails to build with External Toolchain
  6313. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  6314. #1213: Move .config into output directory
  6315. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  6316. #1231: (sparc) Linux kernel fails to build
  6317. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  6318. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  6319. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  6320. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  6321. #1675: GMP Error during buildroot make process
  6322. #1741: external toolchain linking error
  6323. #1753: lmbench: convert to generic package infrastructure
  6324. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  6325. #1807: LZMA 4.32.7, Required header file(s) are missing
  6326. #1813: xkeyboard-config fails to build because of intltool problem
  6327. #1879: Bump iptables to 1.4.8
  6328. #1885: Add a bunch of lua modules
  6329. #1897: Bump libusb to 1.0.7
  6330. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  6331. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  6332. #1927: Bump file to 5.03 and migrate to autotargets
  6333. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  6334. #1945: PHP: add sqlite3 dependency when using external lib
  6335. #1951: Bump openssl to 0.9.8o
  6336. #1957: Bump sqlite to 3.6.23.1
  6337. #1975: Package removal/deprecation
  6338. #1981: zlib: bump to 1.2.5
  6339. #1987: intltool: Fix spelling mistake
  6340. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  6341. #1999: Typo in path checking
  6342. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  6343. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  6344. #2038: Bump ncurses to 5.7
  6345. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  6346. #2101: blackbox depends on locale support
  6347. #2119: Tries to build kernel, although disabled in config
  6348. #2125: libXfont build fail
  6349. #2143: buildroot compiler generates segfaulting statically linked exe..
  6350. #2149: xterm build failure
  6351. #2155: Compression lzo don't set for ubifs
  6352. #2161: [SECURITY] Update libpng to 1.2.44
  6353. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  6354. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  6355. #2191: linux-fusion build fail
  6356. #2221: Qt does not compile (dependencies not taken into account?)
  6357. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  6358. #2245: Netcat does not work due to incorrect assumptions about signed..
  6359. #2251: directory output/build after make *_defconfig not found
  6360. #2257: Convert netsnmp package to autotargets
  6361. #2263: Bump samba to 3.3.13
  6362. #2269: setserial causes make error
  6363. 2010.05, Released May 30th, 2010:
  6364. Fixes all over the tree.
  6365. Updated/fixed packages: coreutils, hal, libcap,
  6366. lockfile-progs, ncftp, xserver_xorg-server
  6367. Issues resolved (http://bugs.uclibc.org):
  6368. #1789: binutils fails to build for i386
  6369. #1843: Fix libcap build failure
  6370. #1855: XORG Keyboard driver fails to compile
  6371. 2010.05-rc3, Released May 27th, 2010:
  6372. Fixes all over the tree.
  6373. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  6374. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  6375. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  6376. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  6377. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  6378. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  6379. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  6380. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  6381. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  6382. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  6383. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  6384. Issues resolved (http://bugs.uclibc.org):
  6385. #75: arm buildroot "unrecognized option" error
  6386. #699: Buildroot fails to copy libstdc++ to target when using external...
  6387. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  6388. #1729: alsamixergui fails to build
  6389. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  6390. #1819: pciutils small bugs
  6391. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  6392. 2010.05-rc2, Released May 11th, 2010:
  6393. Fixes all over the tree.
  6394. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  6395. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  6396. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  6397. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  6398. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  6399. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  6400. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  6401. Removed packages: vice
  6402. Issues resolved (http://bugs.uclibc.org):
  6403. #849: "customize" package copies files to wrong place in target tree
  6404. #985: Bump usb_modeswitch package to 1.1.0
  6405. #1135: Package customize. Wrong copying
  6406. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  6407. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  6408. #1669: Busybox failed to compile when using an external toolchain
  6409. #1699: Fix usbutils dependencies and bump
  6410. #1705: Fix pciutils broken cross compiling
  6411. #1717: External toolchain fixes for hostapd & wpa_supplicant
  6412. 2010.05-rc1, Released May 3rd, 2010:
  6413. Cleaned up / restructured package menu.
  6414. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  6415. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  6416. removed broken nios2 support, ppc e300cX/e500mc support,
  6417. improved external toolchain support, GDB 7.x support.
  6418. X.org updated to 7.5.
  6419. New packages: cdrkit, cramfs, genext2fs, genromfs,
  6420. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  6421. squashfs, squashfs3, squid
  6422. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  6423. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  6424. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  6425. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  6426. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  6427. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  6428. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  6429. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  6430. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  6431. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  6432. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  6433. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  6434. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  6435. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  6436. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  6437. xproto_xf86miscproto, xserver_xorg-server
  6438. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  6439. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  6440. xproto_xf86miscproto
  6441. Issues resolved (http://bugs.uclibc.org):
  6442. #513: Add new squid package
  6443. #661: lmbench: new package
  6444. #719: Add lua option to haserl
  6445. #800: [PATCH] iperf update to 2.0.4
  6446. #803: [PATCH] lua - add shared library patch and config option for...
  6447. #805: [PATCH] mdadm - version update
  6448. #817: integrator926_defconfig uses unsupported uboot board name
  6449. #851: Add option to specify --sysroot value for external toolchain
  6450. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  6451. package for compatibility with old packages that expect
  6452. the pre-1.0 API.
  6453. #1105: Add new netperf package
  6454. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  6455. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  6456. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  6457. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  6458. #1189: Wrong u-boot configuration name for integrator926 target
  6459. #1219: kernel headers not correctly installed into toolchain/staging
  6460. #1267: Wrong BR2_EXTRA_VERSION
  6461. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  6462. #1303: Add librsync package
  6463. #1321: Busybox link fails due to lack of --sysroot option
  6464. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  6465. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  6466. #1369: cannot build radvd (flex problem)
  6467. #1387: xlib_libX11-1.3.2 can't find libjpeg
  6468. #1411: [SECURITY] Update openssl package to 0.9.8n
  6469. #1417: Bump iptables to 1.4.7
  6470. #1423: Bump e2fsprogs to 1.41.11
  6471. #1429: [SECURITY] Update php to 5.2.13
  6472. #1441: Add binutils 2.20.1
  6473. #1447: Package installation on target with debug symbols is broken
  6474. #1459: Misc QA fixes
  6475. #1489: radvd update to 1.6
  6476. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  6477. #1537: dev entries not created anymore
  6478. #1555: Fix default uclibc-0.9.31 configuration
  6479. #1561: [SECURITY] Update samba to 3.3.12
  6480. #1567: openssl0.9.8n fails to compile
  6481. #1573: Alsa-utils alsactl/init/* not installed to target
  6482. #1591: portmap fails to compile
  6483. #1615: Convert eeprog package to gentargets
  6484. #1645: Bump hostapd package to 0.7.2
  6485. 2010.02, Release February 26th, 2010:
  6486. Fixes all over the tree.
  6487. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  6488. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  6489. xfont_font-util
  6490. Removed packages: hostap, openmotif, xpdf
  6491. Issues resolved (http://bugs.uclibc.org):
  6492. #165: openmotif does not build
  6493. #1147: Remove obsolete hostap package
  6494. #1183: make source fails to download gmp, mpfr and patches
  6495. 2010.02-rc2, Released February 23th, 2010:
  6496. Fixes all over the tree and new features.
  6497. New packages: intltool
  6498. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  6499. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  6500. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  6501. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  6502. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  6503. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  6504. xlib_libfontenc, xproto_trapproto, zlib
  6505. Removed package: xboard
  6506. Issues resolved (http://bugs.uclibc.org):
  6507. #335: atk looks for the path to the gnome library on the host
  6508. #355: Please update WebKit - it doesn't compile!
  6509. #453: libglib2 autoreconf
  6510. #457: e2fsprogs link problem
  6511. #459: libgtk2 autoreconf
  6512. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  6513. #671: Bash fails to build when building buildront on Ubuntu 9.04
  6514. #711: WebKit host dependencies problems
  6515. #821: cp: illegal operation
  6516. #1039: Not compiled on ubuntu karmic
  6517. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  6518. 2010.02-rc1, Released February 9th, 2010:
  6519. Fixes all over the tree and new features.
  6520. Generalized autotools infrastructure to be usable for
  6521. non-autotools packages, see package/Makefile.package.in for
  6522. details.
  6523. Cleaned up avr32 toolchain config, external source-based
  6524. toolchain support is gone.
  6525. Dependency checks: Also check for makeinfo, only print output
  6526. on errors.
  6527. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  6528. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  6529. tcpreplay
  6530. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  6531. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  6532. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  6533. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  6534. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  6535. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  6536. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  6537. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  6538. Removed package: asterisk, openswan
  6539. Issues resolved (http://bugs.uclibc.org):
  6540. #515: tcpreplay: new package
  6541. #553: Wrong DirectFB ps2mouse limitation
  6542. #559: mesa3d build fails
  6543. #679: Autoconf cannot find M4
  6544. #739: New/updated hostapd package
  6545. #749: Bump usbutils package to version 0.86
  6546. #751: Kernel 2.6 snapshot fetch fail
  6547. #753: Bump lighttpd package to 1.4.25
  6548. #757: U-Boot: mkimage cannot be installed using external toolchain
  6549. #761: Add binutils 2.20 to toolchain options
  6550. #763: [SECURITY] Update pcre to 7.9
  6551. #765: Add buildroot branding to gcc
  6552. #767: Bump iw package to 0.9.18
  6553. #773: [SECURITY] Update bind to 9.5.2-P1
  6554. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  6555. #813: Drop not very useful generic package selection options ...
  6556. #823: Editor backup files (~) is copied from the target_skeleton
  6557. #827: Bump mtd-utils package to version 1.2.0
  6558. #841: Build error
  6559. #913: Bump iptables to 1.4.6
  6560. #919: Bump usb_modeswitch package to 1.0.7
  6561. #925: Bump wpa_supplicant package to 0.6.10
  6562. #931: Bump kismet package to 2010-01-R1
  6563. #937: Bump openvpn package to 2.1.1
  6564. #943: Bump sqlite package to 3.6.22
  6565. #961: Bump dnsmasq to 2.52
  6566. #967: Bump netstat-nat to 1.4.10
  6567. #973: Bump iw to 0.9.19
  6568. #1003: DHCP options disabled with busybox-1.16.0
  6569. #1009: [SECURITY] Bump php to 5.2.12
  6570. #1015: [SECURITY] Bump bind to 9.5.1-P2
  6571. #1027: Busybox flash commands conflict with those from mtd-utils
  6572. #1063: [SECURITY] Update lighttpd to 1.4.26
  6573. 2009.11, Released December 1st, 2009:
  6574. Additional fixes and cleanups.
  6575. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  6576. microperl, ncurses, vim
  6577. Issues resolved (http://bugs.uclibc.org):
  6578. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  6579. 2009.11-rc2, Released November 29th, 2009:
  6580. Additional fixes and cleanups.
  6581. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  6582. 2009.11-rc1, Released November 23rd, 2009:
  6583. Fixes all over the tree and new features.
  6584. Cleaned up / Simplified build directory layout. Refer to
  6585. docs/buildroot.html#using for details.
  6586. Target defconfig files moved to configs/ and listed in 'make help'
  6587. output.
  6588. Fixed *clean targets. Now clean removes everything generated,
  6589. so you can do a fresh rebuild. Distclean furthermore removes
  6590. kbuild tools and .config, bringing the source tree back in a
  6591. pristine state.
  6592. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  6593. soft / hardfloat setting for architecture, ensure target-ldd
  6594. gets installed.
  6595. New packages: divine, gvfs, libarchive, libmicrohttpd,
  6596. sdl_sound, swfdec, sysstat
  6597. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  6598. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  6599. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  6600. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  6601. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  6602. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  6603. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  6604. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  6605. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  6606. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  6607. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  6608. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  6609. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  6610. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  6611. Issues resolved (http://bugs.uclibc.org):
  6612. #301: allow to install libsmbclient
  6613. #303: add gvfs package
  6614. #477: Add sdl_sound package
  6615. #487: Make kismet package sexier
  6616. #511: New package usb_modeswitch
  6617. #527: misc fixes for dnsmasq package
  6618. #565: libevent: Bump version and clean up makefile
  6619. #587: Use iptables multipurpose binaries and bump to 1.4.4
  6620. #593: Missing early check for patch(1)
  6621. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  6622. #609: libmicrohttpd: New package
  6623. #615: python: Don't delete .py files unless asked
  6624. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  6625. #619: netkittelnet requires netkitbase to install, but there's no ...
  6626. #645: allow to build nbd-server with NBD package
  6627. #653: [SECURITY] Update php package to version 5.2.11
  6628. #655: Update sqlite package to version 3.6.18
  6629. #657: Bug in imagemagick-clean target
  6630. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  6631. #665: [PATCH] Samba package
  6632. #667: [PATCH] e2fsprogs
  6633. #683: SDL-dfb does not select directfb
  6634. #701: make install problem with unstripped binaries
  6635. #703: [SECURITY] Update openssl package to 0.9.8l
  6636. #705: Bump spawn-fcgi package to 1.6.3
  6637. #709: Bump lighttpd package to 1.4.24
  6638. #713: Migrate openntpd package to Makefile.autotools.in
  6639. #715: Bump libidn package to 1.15 and other fixes
  6640. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  6641. #731: Bump iw package to 0.9.17
  6642. 2009.08, Released August 31th, 2009:
  6643. Additional fixes and cleanups.
  6644. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  6645. sdl_net, util-linux.
  6646. Issues resolved (http://bugs.uclibc.org):
  6647. #529: util-linux doesn't find headers and include libs correctly
  6648. #557: Build ctorrent with SSL support if available
  6649. 2009.08-rc3, Released August 26th, 2009:
  6650. Additional fixes and cleanups.
  6651. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  6652. directfb, enchant, kernel headers.
  6653. Issues resolved (http://bugs.uclibc.org):
  6654. #471: Allow directfb compilation with debug
  6655. #541: Removal of CVS directories in target filesystem broken
  6656. #547: berkeleydb: Update config.{sub, guess}
  6657. #549: enchant: Fix dependencies.
  6658. #569: Fix alsa-utils build for x86 on x86-64
  6659. 2009.08-rc2, Released August 6th, 2009:
  6660. Additional fixes and new features.
  6661. New packages: libuuid, gcc 4.3.4.
  6662. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  6663. jamvm, libusb, microperl, neon, popt, sed, webkit.
  6664. Fixed issue with 'make oldconfig'
  6665. Issues resolved (http://bugs.uclibc.org):
  6666. #525: sed broken with external toolchain
  6667. #537: Fix gzip build with recent glibc
  6668. 2009.08-rc1, Released August 2nd, 2009:
  6669. Fixes all over the tree and new features.
  6670. Improvement of external toolchain support:
  6671. - Support for glibc toolchains.
  6672. - The toolchain configuration announced to Buildroot is
  6673. verified against the real toolchain configuration.
  6674. - Fixes, documentation.
  6675. Cleanup X.org support: clarified configuration options, and
  6676. removed mandatory dependency on useless libraries such as
  6677. libXt or libXaw.
  6678. New QT-based configurator, usable using 'make xconfig'.
  6679. Support for the Xtensa architecture.
  6680. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  6681. headers.
  6682. New packages: bmon, ctorrent, dosfstools, enchant,
  6683. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  6684. sdl_gfx, spawn-fcgi.
  6685. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  6686. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  6687. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  6688. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  6689. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  6690. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  6691. wpa-supplicant, xdriver_xf86-input-synaptics,
  6692. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  6693. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  6694. xutil_util-macros.
  6695. Issues resolved (http://bugs.uclibc.org):
  6696. #83: liblockfile fails to compile due to eaccess redefinition
  6697. #163: Xtensa architecture port
  6698. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  6699. #241: device mapper + lvm2: build together
  6700. #243: ctorrent: new package
  6701. #247: ntfsprogs: new package
  6702. #271: Library 'libgcc_s.so.1' not installed in search path
  6703. #287: New package libnl
  6704. #289: New package iw
  6705. #331: Update MPlayer to version 1.0rc2
  6706. #333: Bump sqlite package to 3.6.15
  6707. #349: update libsoup to version 2.26.2
  6708. #357: New package netstat-nat
  6709. #359,#413: Upgrade openvpn to Makefile.autotools.in
  6710. #367: linux kernel compile error for arm926t
  6711. #369: Add SDL_gfx package
  6712. #373: Support for building gstreamer without libxml
  6713. #379: update DirectFB to version 1.4.0
  6714. #383: gst-plugins-good: Allow soup plugin to be configured
  6715. #385: neon: Fix pkgconfig dependency
  6716. #387: Tremor not installed to toolchain
  6717. #389: New package bmon
  6718. #391: gstreamer: Bump version to 0.10.23
  6719. #393: gst-plugins-base: Bump version to 0.10.23
  6720. #395: gst-plugins-bad: New package
  6721. #403: Error while building iso9660 image
  6722. #409: Bump php package to 5.2.10
  6723. #411: ipsec-tools: Bump version to 0.7.2
  6724. #417: New package spawn-fcgi
  6725. #419: Bump lighttpd package to 1.4.23
  6726. #421: toolchain: Clean up toolchain locale support menu
  6727. #427: webkit: Update to WebKit svn r44552
  6728. #437: ltp-testsuite: Bump version to 20090630
  6729. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  6730. #467: DirectFB 1.4.1
  6731. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  6732. #491: libxml2: Bump version to 0.7.3
  6733. #495: Bump bind package to 9.5.1-P3 (security)
  6734. #497: OpenSSL RSA key generation hangs on x86_64
  6735. #509: Bump sqlite package to 3.6.16
  6736. #523: pciutils broken with external toolchain
  6737. #533: Update gamin to 0.1.10 to fix compilation
  6738. 2009.05, Released June 1st, 2009:
  6739. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  6740. version and marked ubifsroot as broken.
  6741. 2009.05-rc3, Released May 27th, 2009:
  6742. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  6743. busybox, curl, libusb, readline, python and strace.
  6744. Issues resolved (http://bugs.uclibc.org):
  6745. #345: libcurl package needs a urandom fix
  6746. 2009.05-rc2, Released May 19th, 2009:
  6747. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  6748. for newer hosts), stable kernel versions, busybox, cups,
  6749. dmraid, docker, mesa3d, rsync and updated defconfigs.
  6750. xserver marked as broken on AVR32 and atngw100-expanded
  6751. config removed.
  6752. Issues resolved (http://bugs.uclibc.org):
  6753. #167: metacity does not build
  6754. #295: gamin installs python support even if python is disabled
  6755. #323: gen_matypes fails to execute during build of Mesa when us...
  6756. 2009.05-rc1, Released May 5th, 2009:
  6757. Fixes all over the tree, further conversion of packages to
  6758. Makefile.autotools.in and we now build host versions of
  6759. packages where needed for build time dependencies instead of
  6760. relying on the correct versions being available on the build
  6761. host. Ancient toolchain / busybox versions have furthermore
  6762. been removed as announced in the 2009.02 release notes.
  6763. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  6764. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  6765. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  6766. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  6767. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  6768. util-linux, xorg7, xerces
  6769. Issues resolved (http://bugs.uclibc.org):
  6770. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  6771. and a ton of other improvements
  6772. #19: page.h missing by util-linux
  6773. #37: update libglib2 to version 2.18.4
  6774. #61: tslib puts staging_dir into pkgconfig file
  6775. #69: tar refuses to build
  6776. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  6777. #73: Bump openssl package to the latest version
  6778. #81: New package wpa_supplicant
  6779. #99: new package: flac
  6780. #101: update gstreamer packages
  6781. #105,#313: menuconfig segfaults on tinyx if wchar is not
  6782. selected
  6783. #107: convert libvorbis to Makefile.autotools.in
  6784. #109: Make pppd package avoid bsd err
  6785. #111: binutils 2.17 fails to build when texinfo >= 4.10
  6786. #133: Modify ncurses5-config to get correct include path
  6787. #137: Bump php to version 5.2.9
  6788. #139: Bump sqlite to 3.6.11 and convert to
  6789. Makefile.autotools.in
  6790. #145: Bump bind package to 9.5.1-P1 (security)
  6791. #147: buildroot toolchain fails to build w/binutils-2.19.1
  6792. #151: openssl package trivial fixes
  6793. #161: vim fails on patching with errors in configure.patch
  6794. #169: blackbox-0.70.1 does not build
  6795. #177: xdriver_xf86-input-keyboard does not build
  6796. #179: Upgrade dropbear to Makefile.autotools.in
  6797. #181: Update to Xorg 7.4
  6798. #187: ntfs-3g: could not build cross
  6799. #191: alsa-lib ARM binaries always built with EABI
  6800. #213: Bump wpa_supplicant package to version 0.6.9
  6801. #217: Bump openssl package to 0.9.8k (security)
  6802. #219: Toolchain build fails on m4
  6803. #225: m4 macros are out of place
  6804. #233: make ipv6 optional in iptables
  6805. #237: ncftp: convert to Makefile.autotools.in
  6806. #239: ntfs-3g: convert to Makefile.autotools.in
  6807. #245: lzop: new package
  6808. #271: Bump bind package to 9.5.1-P2 (security)
  6809. #277: Bump sqlite package to 3.6.16
  6810. #279: update libglib2 to version 2.20.1
  6811. #281: update DirectFB to version 1.2.8
  6812. #283: add taglib
  6813. #285: compilation of samba fails if IPV6 support is missing
  6814. #293: update samba to version 3.3.3
  6815. #299: add shared-mime-info package
  6816. #307: make openssl package respect build flags