CHANGES 321 KB

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