CHANGES 360 KB

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