CHANGES 366 KB

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