CHANGES 390 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907
  1. 2020.11-rc1, released November 4th, 2020
  2. Fixes all over the tree and new features.
  3. Architectures: Support for IBM s390x
  4. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC
  5. 32. Binutils 2.35.1 added, now defaulting to 2.34. ARC
  6. 2020.09-release toolchain. GCC 7.x dropped. RISC-V support for
  7. uclibc-ng. Support for Bootlin external toolchains.
  8. SELinux support improvements: File security contexts are now
  9. set when the file systems are created, so there is no need to
  10. run restorecon on first boot / read only rootfs is supported.
  11. An optimized / stripped refpolicy SELinux policy is now
  12. used. Packages can enable additional refpolicy modules using
  13. <pkg>_SELINUX_MODULES.
  14. support/scripts/cve-checker: Utility script to check for known
  15. CVEs in just the packages enabled in a Buildroot configuration
  16. rather than all packages, by passing the output of 'make
  17. show-info' to it.
  18. Go: Modules handling. The module name must be specified using
  19. <pkg>_GOMOD.
  20. BR2_EXTERNAL: Support for defining skeleton and init system
  21. packages in external trees.
  22. meson: Correct SDK cross-compilation.conf file when
  23. per-package builds were used to build SDK.
  24. systemd: Use /run rather than /var/run for PID files in units.
  25. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  26. after all finalization hooks (including pre-rootfs) to ensure
  27. they can override any late configuration done by packages.
  28. support/script/pycompile: Rework logic to ensure .pyc files
  29. contain absolute target paths, fixing code inspection at
  30. runtime when executed with cwd != '/'.
  31. support/scripts/setlocalversion: Correct Mercurial output to
  32. match behaviour with Git.
  33. support/scripts/apply-patches.sh: Use patch
  34. --no-backup-if-mismatch, so we no longer blindly have to
  35. remove *.orig files after patching, fixing issues with
  36. packages containing such files.
  37. New defconfigs: Acer chromebook elm, Friendlyarm nanopc-t4 and
  38. nanopi-m4, Hardkernel odroid-c2, Kontron SMARC-sAL28, NXP
  39. imx8mqevk, Orangepi RK3399 and zero+, PCengines APU2, Pine64
  40. rockpro64, QEMU s390x, Raxda rockpi-n8,
  41. New packages: altera-stapl, asn1c, babeltrace2, cukinia,
  42. easyframes, environment-setup, frr, graphicsmagick, htpdate,
  43. ipcalc, libbacktrace, libblockdev, libbytesize, librelp,
  44. libuev, makedumpfile, meson-tools, mg, mrp, multipath-tools,
  45. netcalc, odroidc2-firmware, php-xdebug, python-aiofiles,
  46. python-ansicolors, python-boto3, python-botocore,
  47. python-bsdiff4, python-crayons, python-iniconfig,
  48. python-intelhex, python-ipdb, python-jmespath,
  49. python-m2crypto, python-opcua-asyncio, python-packaging,
  50. python-piexif, python-pluggy, python-pytest,
  51. python-s3transfer, python-xmodem, qprint, qt5lottie,
  52. qt5remoteobjects, re2, redir, s390-tools, sentry-cli,
  53. sentry-native, timescaledb, tinyhttpd, uhd, uredir, watchdog,
  54. wayland-utils, weston-imx
  55. Removed packages: amd-catalyst, bellagio, gqview, libcroco,
  56. nvidia-tegra23, opencv
  57. Issues resolved (http://bugs.uclibc.org):
  58. #11811: lsblk (util-linux) should depend on libudev if available
  59. #11931: Bugs in support/scripts/apply-patches.sh
  60. #12301: systemd-journal-gatewayd: config options broken
  61. #12911: usb_modeswitch installation race condition
  62. #13236: Can't compile linux 5.4.8 (with gcc 10 on host)
  63. #13286: The system hangs in vmware workstation on the line..
  64. 2020.08.1, released October 12th, 2020
  65. Important / security related fixes.
  66. Fixes for various compilation issues with GCC 10.x.
  67. meson: Correct SDK cross-compilation.conf file when
  68. per-package builds were used to build SDK.
  69. systemd: Use /run rather than /var/run for PID files in units.
  70. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  71. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  72. after all finalization hooks (including pre-rootfs) to ensure
  73. they can override any late configuration done by packages.
  74. support/script/pycompile: Rework logic to ensure .pyc files
  75. contain absolute target paths, fixing code inspection at
  76. runtime when executed with cwd != '/'.
  77. support/scripts/setlocalversion: Correct Mercurial output to
  78. match behaviour with Git.
  79. support/scripts/apply-patches.sh: Use patch
  80. --no-backup-if-mismatch, so we no longer blindly have to
  81. remove *.orig files after patching, fixing issues with
  82. packages containing such files.
  83. fs/jffs2: Now correctly handles xattrs
  84. Updated/fixed packages: acpica, afboot-stm32, alsa-utils,
  85. apparmor, bandwidthd, barebox, bash, bison, brotli,
  86. cifs-utils, cups, dhcpcd, dhcpdump, docker-cli, docker-engine,
  87. ecryptfs-utils, efl, fail2ban, fbterm, ffmpeg, fontconfig,
  88. freetype, gcc, gdb, ghostscript, gnupg2, gnutls, go, gqview,
  89. gst1-plugins-base, gst1-plugins-ugly, ipmitool, jbig2dec,
  90. kexec, lcdproc, libcamera, libhtp, libnetconf2, libraw,
  91. libssh, libxml2, libxml-parser-perl, libzip, linux-headers,
  92. live555, localedef, ltp-testsuite, lua, matchbox, memcached,
  93. memtester, mesa3d, meson, minidlna, mongodb, mongrel2, motion,
  94. mraa, mtd, musepack, neardal, netatalk, netperf, netsniff-ng,
  95. nginx, nodejs, nss-pam-ldapd, open-plc-utils, openswan,
  96. opentyrian, openvmtools, php, postgresql, python,
  97. python-aenum, python-cycler, python-engineio, python-fire,
  98. python-pymodbus, python-scapy, python-semver,
  99. python-sentry-sdk, python-socketio, python-texttable,
  100. python-tinyrpc, python-txtorcon, python3, qt5base, quagga,
  101. read-edid, redis, rsh-redone, runc, samba4, socketcand,
  102. strace, supertux, suricata, systemd, ti-utils, trinity,
  103. uclibc, usb_modeswitch, vlc, vsftpd, wampcc,
  104. wayland-protocols, wireguard-linux-compat, wireshark, wlroots,
  105. wolfssl, w_scan, xerces, xfsprogs, xdriver-xf86-video-ati,
  106. xserver_xorg-server, ympd, zeromq, zlib-ng, zstd
  107. Issues resolved (http://bugs.uclibc.org):
  108. #12911: usb_modeswitch installation race condition
  109. #13236: Can't compile linux 5.4.8 (with gcc 10 on host)
  110. 2020.08, released September 1st, 2020
  111. Various fixes.
  112. Updated/fixed packages: am33x-cm3, avahi, bluez-tools,
  113. busybox, chocolate-doom, collectd, dhcp, docker-cli, domoticz,
  114. gobject-introspection, graphite2, haproxy, ibm-sw-tpm2,
  115. imagemagick, libeXosip2, libressl, lxc, mbedtls, menu-cache,
  116. mongodb, mosquitto, nvidia-driver, paho-mqtt-c, pixz,
  117. postgresql, python-django, rtty, squid, stress-ng, systemd,
  118. trousers, uclibc, wireshark, wolfssl, zbar
  119. 2020.08-rc3, released August 28th, 2020
  120. Fixes all over the tree.
  121. Infrastructure: Ensure RPATH entries that may be needed for
  122. dlopen() are not dropped by patchelf.
  123. Toolchain: Drop old GCC 6 based external Sourcery AMD64
  124. toolchain.
  125. Updated/fixed packages: assimp, davfs2, dillo, glibc,
  126. gnuradio, hostapd, ibm-sw-tpm2, ipmitool, json-c, libroxml,
  127. linux, mender, netopeer2, openal, openjpeg, python-matplotlib,
  128. ripgrep, shadowsocks-libev, trousers, xlib_libX11,
  129. xserver_xorg-server
  130. Issues resolved (http://bugs.uclibc.org):
  131. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  132. 2020.08-rc2, released August 24th, 2020
  133. Fixes all over the tree, including a number of fixes for
  134. compilation with GCC-10.
  135. Toolchain: Disallow building uClibc-ng for RISC-V 64-bit,
  136. because of issues with a missing __riscv_flush_icache()
  137. implementation.
  138. Defconfigs: CI20: Use mainline Linux and U-boot. Update
  139. Microchip sama5d27_wlsom1_ek_mmc_dev to use bluez5-utils
  140. instead of (the removed) legacy bluez-utils
  141. Updated/fixed packages: 18xx-ti-utils, aircrack-ng, apache,
  142. atest, bandwidthd, bellagio, bind, bird, bluez-alsa, boost,
  143. c-periphery, capnproto, chrony, collectd, cpio, cvs,
  144. dieharder, domoticz, dovecot, dovecot-pigeonhole, drbd-utils,
  145. dump1090, efl, elixir, f2fs-tools, feh, fluidsynth, fping,
  146. gdbm, gdk-pixbuf, ghostscript, gst1-plugins-bad,
  147. gstreamer1-editing-services, htop, ibm-sw-tpm2, ifplugd,
  148. iftop, igd2-for-linux, ima-evm-utils, iprutils, iputils,
  149. keepalived, kmsxx, libabseil-cpp, libcamera, libcurl,
  150. libfuse3, libnss, librtlsdr, libubox, libunwind, live555,
  151. lttng-tools, luabitop, mender-artifact, minizip,
  152. mjpg-streamer, mpd, mpv, mtd, ncftp, open-lldp, openal,
  153. opencv, opencv3, openfpgaloader, optee-os, owfs, php,
  154. pistache, prosody, pulseview, python-decorator,
  155. python-gunicorn, python-rpi-gpio, python-spidev,
  156. python3-decorator, python3-mako, python3-pyselftools, qt5,
  157. qt5webengine, rauc, redis, ripgrep, rtl8188eu, rtl8821au,
  158. setools, smstools3, supertux, tftpd, tpm2-abrmd,
  159. wpa_supplicant, xen, xlib_libX11, xserver_xorg-server
  160. New packages: python3-cython, python3-pycryptodomex
  161. Issues resolved (http://bugs.uclibc.org):
  162. #12876: nodejs fails to build when host-icu has been built before
  163. #13111: python-gunicorn: missing dependency on python-setuptools
  164. #13121: wpa_supplicant fails to build without libopenssl enabled
  165. #13146: raspberrypi3_defconfig: "Inappropriate ioctl for device"..
  166. #13156: package live555 new license
  167. #13166: python-rpi-gpio: does not work against aarch64, unint..
  168. 2020.08-rc1, released August 6th, 2020
  169. Toolchain:
  170. - GCC 10.x added, GCC 9.x is the default
  171. - binutils 2.34 added, binutils 2.33 is the default, binutils
  172. 2.31 removed
  173. - glibc updated to 2.31
  174. - ARC toolchain components updated to 2020.03-release.
  175. - Enable uClibc-ng usage for RISC-V 64-bit
  176. Infrastructure:
  177. - qmake-package was fixed to be compatible with
  178. BR2_PER_PACKAGE_DIRECTORIES
  179. - complete rewrite of the Gitlab CI Yaml configuration file,
  180. now generated directly by the Gitlab CI pipeline itselfs
  181. Misc:
  182. - cargo and cargo-bin packages removed, as cargo is now part
  183. of Rust itself
  184. Filesystem: ubinize configuration files can now use
  185. BINARIES_DIR to refer to the $(O)/images directory.
  186. New packages: bitwise, earlyoom, fuse-overlayfs, gloox,
  187. kodi-pvr-octonet, kodi-pvr-zattoo, libabseil-cpp, libcutl,
  188. libnids, libnpupnp, libodb, libodb-boost, libodb-mysql,
  189. libodb-pgsql, mbpfan, netopeer2, odb, parprouted,
  190. python-colorzero, python-gpiozero, python-pybind, python-yatl,
  191. python3-decorator, qt5quicktimeline, resiprocate, ttyd,
  192. unclutter-xfixes, urandom-scripts,
  193. New defconfigs: bananapi_m2_zero, freescale_imx8mnevk,
  194. globalscale_espressobin, imx6ullevk,
  195. microchip_sama5d27_wlsom1_ek, rock_pi_4, rock_pi_n10
  196. Removed packages: cargo, cargo-bin,
  197. kodi-peripheral-steamcontroller
  198. Issues resolved (http://bugs.uclibc.org):
  199. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_DIRECTORIES
  200. #12946: Grub: Decompressor is too big.
  201. #12986: Mtools: Error converting to codepage 850
  202. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  203. #13011: Incorrect selection of gcc version
  204. #13021: Minor code error when building granite-0.4.1
  205. #13026: rpi-firmware: must not rename start files
  206. #13046: Optimize for fast -Ofast is not compliant
  207. #13081: host-e2fsprogs attempts to create udev rules.d on build host if not exists
  208. #13101: BR audit2allow support
  209. 2020.05.3, released October 12th, 2020
  210. Important / security related fixes.
  211. meson: Correct SDK cross-compilation.conf file when
  212. per-package builds were used to build SDK.
  213. systemd: Use /run rather than /var/run for PID files in units.
  214. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  215. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  216. after all finalization hooks (including pre-rootfs) to ensure
  217. they can override any late configuration done by packages.
  218. support/script/pycompile: Rework logic to ensure .pyc files
  219. contain absolute target paths, fixing code inspection at
  220. runtime when executed with cwd != '/'.
  221. support/scripts/setlocalversion: Correct Mercurial output to
  222. match behaviour with Git.
  223. support/scripts/apply-patches.sh: Use patch
  224. --no-backup-if-mismatch, so we no longer blindly have to
  225. remove *.orig files after patching, fixing issues with
  226. packages containing such files.
  227. Updated/fixed packages: alsa-utils, apparmor, avahi,
  228. bandwidthd, barebox, bash, bison, brotli, busybox, cifs-utils,
  229. cryptsetup, cups, dhcpcd, dhcpdump, docker-cli, docker-engine,
  230. ecryptfs-utils, efl, fail2ban, freetype, gcc, gdb,
  231. ghostscript, gnutls, go, graphite2, gst1-plugins-base,
  232. gst1-plugins-ugly, imagemagick, ipmitool, jbig2dec, libhtp,
  233. libraw, libssh, libxml2, libxml-parser-perl, linux-headers,
  234. localedef, lua, mbedtls, memcached, mesa3d, meson, minidlna,
  235. mongodb, nginx, nodejs, nss-pam-ldapd, openvmtools,
  236. paho-mqtt-c, php, postgresql, python, python-aenum,
  237. python-django, python-engineio, python-fire, python-pymodbus,
  238. python-scapy, python-semver, python-sentry-sdk,
  239. python-socketio, python-texttable, python-tinyrpc,
  240. python-txtorcon, python3, qt5base, rsh-redone, runc, samba4,
  241. strace, supertux, suricata, systemd, uclibc, usb_modeswitch,
  242. vlc, vsftpd, wayland-protocols, wireguard-linux-compat,
  243. wireshark, wlroots, wolfssl, xserver_xorg-server, ympd,
  244. zeromq, zstd
  245. Issues resolved (http://bugs.uclibc.org):
  246. #12911: usb_modeswitch installation race condition
  247. #13251: cryptsetup does not work on branch 2020.02 following..
  248. 2020.05.2, released August 29th, 2020
  249. Important / security related fixes.
  250. Infrastructure: Ensure RPATH entries that may be needed for
  251. dlopen() are not dropped by patchelf.
  252. BR_VERSION_FULL/setlocalversion (used by make print-version
  253. and /etc/os-release): Properly handle local git tags
  254. Updated/fixed packages: apache, assimp, at91bootstrap3, bind,
  255. boost, busybox, capnproto, cegui, chrony, collectd, cpio,
  256. cryptsetup, cups, cvs, dbus, docker-engine, domoticz, dovecot,
  257. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  258. gd, gdk-pixbuf, ghostscript, glibc, gnuradio, grub2,
  259. gst1-plugins-bad, gstreamer1-editing-services, hostapd,
  260. ibm-sw-tpm2, iputils, jasper, json-c, libcurl, libressl,
  261. libwebsockets, linux, live555, mesa3d, mongodb, mosquitto,
  262. mpv, nodejs, opencv, opencv3, openfpgaloader, openjpeg,
  263. patchelf, perl, php, postgresql, prosody, python-django,
  264. python-gunicorn, python-matplotlib, ripgrep, rtl8188eu,
  265. rtl8821au, ruby, shadowsocks-libev, squid, systemd,
  266. tpm2-abrmd, tpm2-tools, trousers, uboot, webkitgtk, wireshark,
  267. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  268. xserver_xorg-server
  269. Issues resolved (http://bugs.uclibc.org):
  270. #12876: nodejs fails to build when host-icu has been built before
  271. #13111: python-gunicorn: missing dependency on python-setuptools
  272. #13121: wpa_supplicant fails to build without libopenssl enabled
  273. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  274. #13156: package live555 new license
  275. 2020.05.1, released July 25th, 2020
  276. Important / security related fixes.
  277. Toolchain:
  278. - Make external toolchain version check also work for
  279. toolchains configured with --with-gcc-major-version-only
  280. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  281. compiler supports it, fixing an issue with precompiled
  282. headers
  283. - Ensure debug libs from external toolchains are not installed
  284. into target if debugging is disabled
  285. Download:
  286. - Correct reproducibility issue in handling of git submodules
  287. for older git versions.
  288. - Fix file locking over NFS
  289. fs: Ensure cpio archive element order is reproducible
  290. Br2-external: Fix error reporting for invalid br2-external trees
  291. Per-package:
  292. - Fix an issue with python3 sysconfig data not getting
  293. correctly expanded
  294. - Fix per-package building for packages using the qmake
  295. infrastructure
  296. Updated/fixed packages: a10disp, asterisk, bind, brltty,
  297. cdrkit, clamav, cryptodev-linux, dbus, docker-cli,
  298. docker-engine, dvb-apps, e2fsprogs, exim, exiv2, freerdp, gdb,
  299. gdk-pixbuf, gerbera, gnutls, go, granite, grub2, gssdp,
  300. gst1-plugins-good, gst1-plugins-ugly, gupnp, intel-microcode,
  301. iproute2, irrlicht, iwd, jq, kodi, libcamera, libcec,
  302. libconfuse, libcurl, libevdev, libhttpserver, libmicrohttpd,
  303. libnss, libressl, libvncserver, libxml2, libxmlrpc, lxc,
  304. mbedtls, mediastreamer, mesa3d, meson, minizip, mongodb,
  305. mtools, mutt, nano, network-manager, nghttp2, ngircd, nodejs,
  306. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  307. oracle-mysql, paho-mqtt-c, pango, php, poco, prosody, putty,
  308. python-greenlet, python-urllib3, python-validators, python3,
  309. readline, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  310. sqlite, squid, strace, sunxi-mali-mainline-driver, syslog-ng,
  311. systemd, tcpreplay, tinydtls, upmpdcli, upx, vlc, webkitgtk,
  312. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  313. x11vnc, znc, zstd
  314. Issues resolved (http://bugs.uclibc.org):
  315. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  316. #12946: Grub: Decompressor is too big.
  317. #12986: Mtools: Error converting to codepage 850
  318. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  319. #13011: Incorrect selection of gcc version
  320. #13021: Minor code error when building granite-0.4.1
  321. #13026: rpi-firmware: must not rename start files
  322. #13031: nodejs: RangeError at new ArrayBuffer()
  323. #13046: Optimize for fast -Ofast is not compliant
  324. 2020.05, released June 1st, 2020
  325. Various fixes.
  326. Updated/fixed packages: arm-trusted-firmware, gcc, mp4v2, fmc,
  327. fmlib, glib-networking, libusb-compat, linux, qt5webengine,
  328. sysrepo, wampcc, xen
  329. 2020.05-rc3, released May 29th, 2020
  330. Fixes all over the tree.
  331. Infrastructure: Support checking download hashes for packages
  332. coming from Subversion.
  333. Defconfigs: Increase boot partition size to 64MB for Freescale
  334. boards to allow space for bigger kernels.
  335. Updated/fixed packages: audit, bind, dovecot, efl, erlang,
  336. ffmpeg, fio, gerbera, gnupg, leveldb, lrzip, ltrace, matio,
  337. mesa3d, mp4v2, prosody, qemu, qt5declarative, speexdsp,
  338. systemd, tremor, uboot-tools, unbound, wireshark
  339. Removed packages: wiringpi
  340. Issues resolved (http://bugs.uclibc.org):
  341. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  342. #12686: recipe for target 'install_dev' failed (libcrypto.so..)
  343. 2020.05-rc2, released May 22nd 2020
  344. Fixes all over the tree.
  345. U-Boot: Support building with Python 3.x instead of Python
  346. 2.x. Since U-Boot 2020.01, various U-Boot build scripts use
  347. Python 3.x instead of Python 2.x, so add an option to pull in
  348. host-python3 rather than host-python. Also fix a number of
  349. defconfigs to use this new option.
  350. Updated/fixed packages: apparmor, binutils, bison, brltty,
  351. c-icap, cegui, checkpolicy, clamav, crda, cvs, docker-cli,
  352. docker-engine, domoticz, elf2flt, exfatprogs, fakeroot,
  353. ffmpeg, freerdp, gcc, glibc, gnuconfig, irrlicht, kmod,
  354. libexif, libpam-tacplus, libssh2, libv4l, libvncserver,
  355. localedef, lrzip, mariadb, matchbox, mbuffer, mesa3d,
  356. mesa3d-headers, meson, netsniff-ng, openldap, openocd,
  357. optee-os, p7zip, paho-mqtt-c, php, piglit, pigz,
  358. python-argon2-cffi, python-attrs, python-future,
  359. python-markdown, python-pycryptodomex, python-pyqt5, qt5base,
  360. rpi-firmware, rustc, squashfs, squid, stella, suricata,
  361. systemd, uacme, uclibc, util-linux, vboot-utils
  362. New packages: python3-pyelftools
  363. Removed packages: ezxml, mtdev2tuio, python-pycrypto
  364. Issues resolved (http://bugs.uclibc.org):
  365. #10551: PowerPC SPE and Musl
  366. #12256: package tar is outdated (1.29 is 3 years old)
  367. #12271: python-iptables runtime dependencies
  368. #12321: host-generic-package: PKG_DL_OPTS not used for host package
  369. #12391: CMake-based host package fails to include output/host/include
  370. #12431: ethernet no detected on nanopi neo 2
  371. #12521: RISCV RV32IA selected, RV64GC output
  372. #12586: avahi failure
  373. #12596: host-e2fsprogs: tune2fs incompatibility on older glibc..
  374. #12611: ntp hash is not matching with upstream 4.2.8p13
  375. #12626: PHP missing header files within 2020.02
  376. #12631: glibc support Power-PC SPE
  377. #12656: bison fails to relocate with relocate-sdk.sh
  378. #12661: cups problems in buildroot
  379. #12686: recipe for target 'install_dev' failed (libcrypto.so:..
  380. #12691: host-rust build fails
  381. #12761: Buildroot fails when building GCNano binaries for the STM..
  382. #12786: Systemd spawns two getty processes when the getty port..
  383. #12806: There are multiple issues in buildroot that faults cups..
  384. #12826: nodejs-12.16.1: error: 'uv_sleep' was not declared in..
  385. #12831: RPI-firmware package: DTB-overlay dependency
  386. #12836: libunwind: package does not show up in menuconfig for..
  387. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  388. #12866: should we be disabling bash executable path caching?
  389. #12886: GMP built in wrong order (?)
  390. #12891: QEMU, libvirt-bin, qemu-kvm Package Support required
  391. #12901: GStreamer doesn't build on 2020-05 rc1 with GObject..
  392. #12906: qt PrefixPath is wrong on 2020.05-rc1
  393. #12921: nodejs-12.16.1: error: overriding 'virtual icu_65::..
  394. 2020.05-rc1, released May 7th 2020
  395. Addition of support for gobject-introspection: both the
  396. gobject-introspection package itself, but also introspection
  397. support was enabled in a number of other packages.
  398. Support for Qt 5.6 was dropped as its support was dropped
  399. upstream, only one version of Qt is supported at the moment:
  400. Qt 5.14.2.
  401. Addition of support for the apparmor Linux security module, by
  402. adding the necessary user-space packages.
  403. Addition of a qmake package infrastructure, now used by most
  404. Qt-related packages.
  405. The Luarocks package infrastructure has been extended to
  406. support build host packages.
  407. The package infrastructure was improved to allow each package
  408. to indicate the Linux kernel configuration options it needs.
  409. Addition of support for generating filesystem images using the
  410. EROFS filesystem.
  411. The logic that calculates the list of files installed by each
  412. package was reworked to be compatible with the top-level
  413. parallel build functionality.
  414. Addition of a package for a pre-compiled ARM32 bare-metal
  415. toolchain, which can be used to build ARM32 code in ARM64
  416. configurations, such as firmware/bootloader code.
  417. The Qemu defconfigs are now boot-tested in Qemu as part of the
  418. Gitlab continuous integration.
  419. Toolchain: gcc 9.x bumped to 9.3.0, gcc 8.x bumped to 8.4.0,
  420. gdb bumped to 8.3.1.
  421. New packages: apcupsd, apparmor, arm-gnu-a-toolchain, bearssl,
  422. belle-sip, belr, cage, chartjs, erofs-utils, exfatprogs,
  423. gobject-introspection, ibm-sw-tpm2, imx-seco, jbig2dec,
  424. libapparmor, libiberty, libfuse3, libtextstyle, libudfread,
  425. libuhttpd, libuwsc, lua-lyaml, matio, mbuffer, netdata,
  426. openfpgaloader, perl-i18n, perl-locale-maketext-lexicon,
  427. perl-lwp-protocol-https,
  428. perl-mojolicious-plugin-authorization,
  429. perl-mojolicious-plugin-cspheader,
  430. perl-mojolicious-plugin-i18n,
  431. perl-mojolicious-plugin-securityheader, perl-mozilla-ca,
  432. perl-path-class, pistache, pkcs11-helper, prelink-cross,
  433. python-argon2-cffi, python-canopen, python-cbor2,
  434. python-filelock, python-flatbuffers, python-greenlet,
  435. python-modbus-tk, python-pyalsa, python-pysftp, python-regex,
  436. python-snappy, rtty, tinyproxy, udev-gentoo-scripts, unbound,
  437. vuejs, wlroots.
  438. New defconfigs: freescale_imx6ullevk, freescale_imx8qmmek,
  439. nanopi_neo4, nanopi_r1, nitrogen8mm, nitrogen8mn, olpc_xo1,
  440. olpc_xo175, roc_rk3399_pc, stm32mp157a_dk1, zynq_qmtech
  441. Issues resolved (http://bugs.uclibc.org):
  442. #10386: Add an option to put all compiled executables that
  443. show up on target/ in staging/ as well
  444. #11866: iniramfs file system fails to boot using Grub on EFI x86_64
  445. #12666: Doesn't pick up a custom bash profile
  446. #12696: Uboot 2020.01 Problem loading Linux kernel on Nano PI NEO
  447. #12701: [patch] wpa_supplicant must depend on openssl
  448. #12711: host-localedef 2.30-20 fails to compile on fedora 32 (gcc 10.0.1)
  449. #12716: bio.h not found
  450. #12726: systemctl preset-all failed for ctrl-alt-del.target
  451. #12731: rtl8188eu not buildung for banana pi M1 (glib, systemd, 4.18.12)
  452. #12746: "sysdig" package description points to
  453. http://sysdig.org, which bounces to malware site
  454. #12751: OpenJdk package installation issues on target
  455. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  456. #12811: bootstrap stuck and no login prompt
  457. 2020.02.7, released October 12th, 2020
  458. Important / security related fixes.
  459. meson: Correct SDK cross-compilation.conf file when
  460. per-package builds were used to build SDK.
  461. systemd: Use /run rather than /var/run for PID files in units.
  462. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  463. support/script/pycompile: Rework logic to ensure .pyc files
  464. contain absolute target paths, fixing code inspection at
  465. runtime when executed with cwd != '/'.
  466. support/scripts/setlocalversion: Correct Mercurial output to
  467. match behaviour with Git.
  468. support/scripts/apply-patches.sh: Use patch
  469. --no-backup-if-mismatch, so we no longer blindly have to
  470. remove *.orig files after patching, fixing issues with
  471. packages containing such files.
  472. Updated/fixed packages: bandwidthd, barebox, bash, bison,
  473. brotli, cifs-utils, cryptsetup, dhcpcd, dhcpdump, docker-cli,
  474. docker-engine, ecryptfs-utils, efl, fail2ban, freetype, gcc,
  475. gdb, ghostscript, gnutls, go, gst1-plugins-base,
  476. gst1-plugins-ugly, ipmitool, libhtp, libraw, libssh, libxml2,
  477. libxml-parser-perl, localedef, lua, memcached, mesa3d, meson,
  478. minidlna, nginx, nodejs, nss-pam-ldapd, openvmtools, php,
  479. postgresql, python, python-aenum, python-autobahn,
  480. python-engineio, python-fire, python-pymodbus, python-scapy,
  481. python-semver, python-sentry-sdk, python-socketio,
  482. python-texttable, python-tinyrpc, python-txtorcon, python3,
  483. qt5base, runc, samba4, strace, supertux, suricata, systemd,
  484. vlc, wayland-protocols, wireguard-linux-compat, wireshark,
  485. xserver_xorg-server, zeromq, zstd
  486. Issues resolved (http://bugs.uclibc.org):
  487. #12911: usb_modeswitch installation race condition
  488. #13251: cryptsetup does not work on branch 2020.02 following..
  489. 2020.02.6, released September 5th, 2020
  490. Important / security related fixes.
  491. Fix a 2020.02.5 build regression in busybox when systemd (and
  492. not less) are enabled because of missing infrastructure.
  493. Updated/fixed packages: alsa-utils, avahi, busybox, cups,
  494. docker-cli, graphite2, imagemagick, libeXosip2, mbedtls,
  495. nvidia-driver, paho-mqtt-c, python-django, systemd, uclibc,
  496. usb_modeswitch, wolfssl
  497. Issues resolved (http://bugs.uclibc.org):
  498. #12911: usb_modeswitch installation race condition
  499. 2020.02.5, released August 29th, 2020
  500. Important / security related fixes.
  501. Infrastructure: Ensure RPATH entries that may be needed for
  502. dlopen() are not dropped by patchelf.
  503. BR_VERSION_FULL/setlocalversion (used by make print-version
  504. and /etc/os-release): Properly handle local git tags
  505. Updated/fixed packages: apache, at91bootstrap3, bind, boost,
  506. busybox, capnproto, chrony, collectd, cpio, cryptsetup, cups,
  507. cvs, dbus, docker-engine, domoticz, dovecot,
  508. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  509. gd, gdk-pixbuf, ghostscript, glibc, grub2, gst1-plugins-bad,
  510. hostapd, iputils, jasper, json-c, libcurl, libwebsockets,
  511. linux, live555, mesa3d, mosquitto, mpv, nodejs, opencv,
  512. opencv3, openjpeg, patchelf, perl, php, postgresql,
  513. python-django, python-gunicorn, python-matplotlib, ripgrep,
  514. rtl8188eu, rtl8821au, ruby, shadowsocks-libev, squid,
  515. tpm2-abrmd, tpm2-tools, trousers, uacme, webkitgtk, wireshark,
  516. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  517. xserver_xorg-server
  518. Issues resolved (http://bugs.uclibc.org):
  519. #12876: nodejs fails to build when host-icu has been built before
  520. #13111: python-gunicorn: missing dependency on python-setuptools
  521. #13121: wpa_supplicant fails to build without libopenssl enabled
  522. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  523. #13156: package live555 new license
  524. 2020.02.4, released July 26th, 2020
  525. Important / security related fixes.
  526. Toolchain:
  527. - Make external toolchain version check also work for
  528. toolchains configured with --with-gcc-major-version-only
  529. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  530. compiler supports it, fixing an issue with precompiled
  531. headers
  532. - Ensure debug libs from external toolchains are not installed
  533. into target if debugging is disabled
  534. Download:
  535. - Correct reproducibility issue in handling of git submodules
  536. for older git versions.
  537. - Fix file locking over NFS
  538. fs: Ensure cpio archive element order is reproducible
  539. Br2-external: Fix error reporting for invalid br2-external trees
  540. Per-package:
  541. - Fix an issue with python3 sysconfig data not getting
  542. correctly expanded
  543. - Fix per-package building for packages using the qmake
  544. infrastructure
  545. Updated/fixed packages: a10disp, asterisk, bind, cdrkit,
  546. checkpolicy, clamav, dbus, docker-cli, docker-engine,
  547. dvb-apps, e2fsprogs, exim, exiv2, freerdp, gnutls, go, grub2,
  548. gssdp, gst1-plugins-good, gst1-plugins-ugly, gupnp,
  549. intel-microcode, iproute2, irrlicht, iwd, jq, kodi, libcamera,
  550. libconfuse, libcurl, libglib2, libhttpserver, libmicrohttpd,
  551. libopenssl, libvncserver, libxml2, libxmlrpc, lxc, mbedtls,
  552. mesa3d, meson, mongodb, mtools, mutt, nghttp2, ngircd, nodejs,
  553. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  554. oracle-mysql, paho-mqtt-c, pcre, php, poco, prosody, putty,
  555. python-twisted, python-urllib3, python-validators, python3,
  556. qt5xmlpatterns, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  557. sqlite, squid, syslog-ng, systemd, tcpreplay, tinydtls,
  558. upmpdcli, upx, vlc, webkitgtk, wireguard-linux-compat,
  559. wireshark, wpebackend-fdo, wpewebkit, zstd
  560. Issues resolved (http://bugs.uclibc.org):
  561. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  562. #12946: Grub: Decompressor is too big.
  563. #12986: Mtools: Error converting to codepage 850
  564. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  565. #13011: Incorrect selection of gcc version
  566. #13026: rpi-firmware: must not rename start files
  567. #13031: nodejs: RangeError at new ArrayBuffer()
  568. #13046: Optimize for fast -Ofast is not compliant
  569. 2020.02.3, released June 3rd, 2020
  570. Important / security related fixes.
  571. Fix various build issues of host packages on hosts using GCC
  572. 10.
  573. Updated/fixed packages: arm-trusted-firmware, audit, bind,
  574. binutils, bison, clamav, crda, dovecot, dtc, efl, elf2flt,
  575. erlang, fakeroot, ffmpeg, fmc, fmlib, freerdp, gcc, git,
  576. glib-networking, gnupg, leveldb, libexif, libssh2,
  577. libusb-compat, linux-headers, lrzip, ltrace, mariadb, mesa3d,
  578. mp4v2, openldap, openocd, perl, php, prosody,
  579. python-pycryptodomex, python-pyqt5, qemu, rpi-firmware, rustc,
  580. speexdsp, sysrepo, systemd, tremor, vboot-utils, wireshark,
  581. xen
  582. Removed packages: python-pycrypto
  583. Issues resolved (http://bugs.uclibc.org):
  584. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  585. #12656: bison fails to relocate with relocate-sdk.sh
  586. #12671: leveldb won't detect that snappy is present (static..
  587. #12691: host-rust build fails
  588. #12831: RPI-firmware package: DTB-overlay dependency
  589. 2020.02.2, released May 12th, 2020
  590. Important / security related fixes.
  591. Musl: Disallow on PPC64 cores without AltiVec support
  592. (E.G. e5500).
  593. fs/cpio: Correctly handle booting with 'console='
  594. release: Ensure temporary .br2-external.* files are not
  595. included in the release tarball
  596. Defconfigs: Fix various mistyped config options, or config
  597. options where the dependencies were no longer met.
  598. Updated/fixed packages: apache, azure-iot-sdk-c, binutils,
  599. boinc, c-ares, cvs, docker-cli, docker-containerd,
  600. docker-engine, domoticz, e2fsprogs, efl, evtest, exim, ffmpeg,
  601. freerdp, gcc, gflags, glibc, gnuconfig, haproxy, imx-gpu-2d,
  602. irrlicht, jpeg kodi-pvr-vuplus, libarchive, libcoap,
  603. libfpm-extra, libglib2, libhtp, libid3tag, libinput, libmad,
  604. libopenssl, libsepol, libssh, libv4l, libvncserver, libwpe,
  605. localedef, mariadb, matchbox, mbedtls, mc, mesa3d-headers,
  606. meson, midori, msgpack, netsnmp, nginx, ogre, openjdk,
  607. openldap, openvpn, p7zip, paho-mqtt-c, php, polkit, python,
  608. python-attrs, python-crossbar, python-dpkt, python-flask,
  609. python-future, python-iptables, python-jedi, python-markdown2,
  610. python3, qemu, qpdf, qt5, samba4, squashfs, squid, strongswan,
  611. suricata, tzdata, util-linux, vlc, wget, webkitgtk,
  612. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  613. zic
  614. Issues resolved (http://bugs.uclibc.org):
  615. #11866: initramfs file system fails to boot using Grub on EFI x86_64
  616. #12271: python-iptables runtime dependencies
  617. #12726: systemctl preset-all failed for ctrl-alt-del.target
  618. #12751: OpenJdk package installation issues on target
  619. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  620. #12811: bootstrap stuck and no login prompt
  621. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  622. 2020.02.1, released April 10th, 2020
  623. Important / security related fixes.
  624. core: Also fixup /lib references in libtool .la files, similar
  625. to how it is done for /usr/*.
  626. Various fixes for builds with per-package target/host
  627. directories.
  628. toolchain: Fix kernel headers validation check for external
  629. toolchains. Fix make 4.3+ compatibility in external toolchain
  630. logic.
  631. fs/initramfs: fix show-info so it also shows the usual
  632. rootfs-related variables.
  633. Updated/fixed packages: arm-trusted-firmware, barebox-aux,
  634. bluez5_utils, bubblewrap, busybox, civetweb, cog, collectd,
  635. ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy, hiredis, hostapd,
  636. kmscube, kodi-screensaver-rsxs, libical, libinput, libexif,
  637. libopenssl, libsndfile, linux, linux-tools, llvm, localedef,
  638. mcrypt, mesa3d, meson, monit, nftables, ntp, opencv3,
  639. oprofile, php, pinentry, polkit, pure-ftpd, python-pyyaml,
  640. qt5, quagga, radvd, rcw, redis, rocksdb, samba4, screen,
  641. sdbusplus, swupdate, sysdig, sysklogd, syslinux, syslog-ng,
  642. tor, tslib, uacme, util-linux, vala, vlc,
  643. wireguard-linux-compat, wireguard-tools, wireshark,
  644. wpa_supplicant, xserver_xorg-server
  645. Issues resolved (http://bugs.uclibc.org):
  646. #12711: host-localedef 2.30-20 fails to compile on fedora 32
  647. #12746: "sysdig" package description points to http://sysdig.org, ..
  648. 2020.02, released March 8th, 2020
  649. Various fixes.
  650. br2-external: Fix compatibility with make 4.3+
  651. Updated/fixed packages: bash, bcm2835, binutils, cups,
  652. erlang-p1-acme, fbgrab, gr-osmosdr, gst1-plugins-base,
  653. gst1-validate, gstreamer1, guile, jhead, libdrm, libevdev,
  654. libinput, libnss, libsndfile, libvncserver, linux-firmware,
  655. mesa3d, nodejs, openjdk-bin, openvmtools, optee-test, patch,
  656. php, piglit, pppd, python-django, qemu, qt5base, ruby,
  657. ser2net, swupdate, thrift, zziplib
  658. Removed packages: classpath, jamvm
  659. Issues resolved (http://bugs.uclibc.org):
  660. #12606: fbgrab location has changed
  661. 2020.02-rc3, released March 2nd, 2020
  662. Fixes all over the tree.
  663. Infrastructure: Rework file list handling to fix race
  664. conditions when building with per-package target and host
  665. directories and top-level parallel builds.
  666. Updated/fixed packages: aufs, binutils, blktrace, brltty,
  667. cairo, dnsmasq, docker-compose, elf2flt, exim, exiv2, git,
  668. kodi-inputstream-adaptive, libarchive, libcgroup, libgdiplus,
  669. libssh2, libvncserver, libvorbis, linknx, linux-firmware, lxc,
  670. lz4, mosquitto, openjpeg, openrc, poco, proftpd, pure-ftpd,
  671. python3, python-multidict, python-setuptools-scm-git-archive,
  672. qpdf, qt5tools, rdesktop, rocksdb, shellinabox, squid,
  673. suricata, swig, systemd, taglib, util-linux, wireshark, zsh
  674. Issues resolved (http://bugs.uclibc.org):
  675. #12571: ltp-testsuite : Build failure
  676. #12576: 2020.02-RC1: error while loading shared libraries: ...
  677. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  678. 2020.02-rc2, released February 26th, 2020
  679. Fixes all over the tree.
  680. Toolchain: Ensure strong SSP can only be enabled if the
  681. (external) toolchain supports it.
  682. Fix a race condition related to creating the output/staging
  683. symlink on systems with coreutils < 8.27.
  684. Drop support for the (end of life) Qt 5.6 variant.
  685. Updated/fixed packages: at, armadillo, audiofile, bash,
  686. busybox, erlang, fail2ban, fluidsynth, ipsec-tools, jpeg-turbo,
  687. kvm-unit-tests, libftdi1, libinput, libsvgtiny, libtomcrypt,
  688. libupnpp, libxml2, linux-tools, luv, mbedtls, mesa3d, minicom,
  689. openvmtools, php, qt5, qt5webengine, qwt, radvd, rcw,
  690. sdbusplus, systemd, tpm2-tss, vorbis-tools
  691. Issues resolved (http://bugs.uclibc.org):
  692. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  693. 2020.02-rc1, released February 18th, 2020
  694. Fixes all over the tree and new features.
  695. Add experimental support for building with a per-package
  696. target and host directory. This still has some rough edges,
  697. but brings a number of advantages:
  698. - Packages will only be able to access the explicitly listed
  699. dependencies and not any other packages that happen to be
  700. built before, ensuring correct dependency information in
  701. Buildroot.
  702. - Possibility for top-level parallel builds, speeding up
  703. builds on multicore machines.
  704. Core: Ensure package-file-lists data is correct after
  705. incremental builds as well.
  706. Architecture: Add support for ARC-HS38 with 64bit multiplier
  707. variant, allow building glibc for big endian ARC, handle 16KB
  708. MMU page size for ARC in toolchain wrapper.
  709. Toolchain: Add binutils 2.33.1, GCC 7.5.0, Arm 9.2-2019.12
  710. toolchains, ARC 2019.09 toolchain. Allow using custom kernel
  711. headers newer than what is known by Buildroot.
  712. pkg-stats: Support for CVE vulnerability reporting by
  713. comparing to NVD database.
  714. Reproducible builds: The go -trimpath option is now used to
  715. get rid of absolute build paths, __FILE__ and __BASE_FILE__
  716. defines are now handled in the toolchain wrapper.
  717. Systemd: Build host variant and use systemctl to automatically
  718. enable unit files rather than manually managing symlinks.
  719. Util-linux: Ensure that hwclock is built without GPLv3
  720. code. Notice that builds with hwclock has contained
  721. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  722. New defconfigs: Beelink GS1, Raspberrypi4 64bit
  723. New packages: alura, avro-c, bubblewrap, cctz, cereal,
  724. cpuburn-arm, elixir, erlang-base64url, erlang-idna,
  725. erlang-jose, erlang-p1-acme, erlang-p1-mqtree,
  726. erlang-p1-yconf, fluid-soundfont, fluidsynth, gcnano-binaries,
  727. gensio, glslsandbox-player, libargon2, libmodsecurity,
  728. libpam-nfc, libtelnet, lua-codegen, lua-livr, lua-livr-extra,
  729. lua-rotas, lua-silva, mfoc, network-manager-openvpn,
  730. nginx-modsecurity, perl-crypt-openssl-aes,
  731. perl-math-prime-util, pipewire, ptm2human, python-aenum,
  732. python-aiohttp-debugtoolbar, python-aiohttp-mako,
  733. python-aiologstash, python-aiosignal, python-aiozipkin,
  734. python-async-lru, python-avro, python-bunch, python-crontab,
  735. python-dnspython, python-entrypoints, python-esptool,
  736. python-frozenlist, python-future, python-gitdb, python-janus,
  737. python-lockfile, python-logstash, python-nested-dict,
  738. python-pbr, python-pyaes, python-pydantic, python-smmap2,
  739. python-sockjs, python-zc-lockfile, raspi-gpio, rocksdb,
  740. sdbusplus, spidermonkey, thermald, ti-sgx-libgbm, tinyssh,
  741. tio, umtprd, weston-imx, wireguard-linux-compat,
  742. wireguard-tools, xdg-dbus-proxy
  743. Removed packages: bluez_utils, celt051, erlang-p1-iconv, fis,
  744. gadgetfs-test, libplayer, gstreamer, gst-ffmpeg,
  745. gst-fsl-plugins, gst-omapfb, gst-plugins-bad,
  746. gst-plugins-base, gst-plugins-good, gst-plugins-ugly,
  747. perl-digest-md5, perl-mime-base64, perl-net-ping,
  748. python-scapy3k, wireguard
  749. Issues resolved (http://bugs.uclibc.org):
  750. #11906: the new version of mesa3d cannot support etnaviv when..
  751. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  752. #12121: PyQt5.QtSerialPort and other modules not being built
  753. #12256: package tar is outdated (1.29 is 3 years old
  754. #12286: Can't import gobject in python 3.8
  755. #12376: python-scapy3k is deprecated
  756. #12386: carriage return issue when "make menuconfig"
  757. #12441: qt5webengine build error: asm/errno.h: No such file or..
  758. #12446: Buildroot fails to finish installing packages
  759. #12456: qtvirtualkeyboard: No such file or directory
  760. #12461: libglib2 build files with deep directory structure
  761. #12481: minicom fails when output directory path contains "m4"
  762. #12501: libnss-3.49.1: ld error: multiple definition of `gcm_..
  763. #12526: host-nodejs 12.14.1: configure fail: AttributeError: ..
  764. #12536: Linux-Headers extracting failure
  765. #12546: Ninja 1.10 build Error
  766. 2019.11.3, released April 10th, 2020
  767. Important / security related fixes.
  768. core: Fix compatibility with make 4.3+. Also fixup /lib
  769. references in libtool .la files, similar to how it is done for
  770. /usr/*.
  771. toolchain: Fix kernel headers validation check for external
  772. toolchains.
  773. fs/initramfs: fix show-info so it also shows the usual
  774. rootfs-related variables.
  775. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  776. civetweb, cog, collectd, ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy,
  777. hiredis, hostapd, kmscube, libical, libopenssl, libsndfile,
  778. linux-tools, llvm, monit, ntp, php, pure-ftpd, radvd, redis,
  779. samba4, screen, sysdig, syslinux, syslog-ng, tor, uacme,
  780. util-linux, vala, vlc, wpa_supplicant, xserver_xorg-server
  781. Issues resolved (http://bugs.uclibc.org):
  782. #12746: "sysdig" package description points to http://sysdig.org, ..
  783. 2019.11.2, released March 16th, 2020
  784. Important / security related fixes.
  785. Core: Ensure package-file-lists data is correct after
  786. incremental builds as well.
  787. Fix a race condition related to creating the output/staging
  788. symlink on systems with coreutils < 8.27.
  789. Toolchain: ARC tools bumped to arc-2019.09.
  790. Br2-external: Fix patch handling when external linux-extension
  791. packages are used. Fix compatibility with make 4.3+
  792. Util-linux: Ensure that hwclock is built without GPLv3
  793. code. Notice that builds with hwclock has contained
  794. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  795. Updated/fixed packages: armadillo, at, bcm2835, binutils,
  796. blktrace, bluez-alsa, bootstrap, brltty, busybox, cairo,
  797. clamav, cog, cups, czmq, dnsmasq, docker-containerd, dovecot,
  798. dovecot-pigeonhole, e2fsprogs, elf2flt, eudev, exim, exiv2,
  799. fbgrab, gettext-tiny, glibc, go, grep, gst1-validate, guile,
  800. imagemagick, jhead, jpeg-turbo, kvm-unit-tests, lapack,
  801. libarchive, libcgroup, libdrm, libevent, libexif, libftdi1,
  802. libgdiplus, libjpeg, libsigrok, libsndfile, libssh2,
  803. libsvgtiny, libvncserver, libvorbis, libxml2, libxslt, linknx,
  804. lxc, lz4, mariadb, mbedtls, meson, mongoose, mosquitto, musl,
  805. ncurses, nodejs, ntfs-3g, ogre, opencv3, openjdk, openjpeg,
  806. openrc, openswan, openvmtools, optee-test, patch, php, piglet,
  807. postgresql, pppd, proftpd, pure-ftpd, python-django,
  808. python-pyqt5, python-setuptools-scm-git-archive, python3,
  809. qemu, qt5base, qt5tools, qt5virtualkeyboard, qt5webengine,
  810. qwt, rdesktop, ruby, runc, samba4, shellinabox,
  811. skeleton-init-openrc, smartmontools, spdlog, sqlcipher, squid,
  812. suricata, swig, swupdate, sysklogd, taglib, thrift,
  813. ti-cgt-pru, uclibc, util-linux, vorbis-tools, webkitgtk,
  814. wireshark, wpebackend-fdo, wpewebkit, xen,
  815. xserver_xorg-server, zeromq, zsh, zziplib
  816. Issues resolved (http://bugs.uclibc.org):
  817. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  818. #12331: meson issue
  819. #12456: qtvirtualkeyboard: No such file or directory
  820. #12461: libglib2 build files with deep directory structure
  821. #12481: minicom fails when output directory path contains "m4"
  822. #12606: fbgrab location has changed
  823. 2019.11.1, released January 12th, 2020
  824. Important / security related fixes.
  825. Infrastructure: kconfig: Fix reconfigure logic, python: Ensure
  826. correct compiler and linker flags are used for compiled code
  827. utils/scanpypi: Remind users to update DEVELOPERS
  828. Defconfigs: imx6-sabresd: Fix the Qt5 display names,
  829. imx8: Drop extra copy of U-Boot DTB
  830. Updated/fixed packages: acsccid, bitcoin, boost, busybox,
  831. cc-tool, cmocka, cpio, cups, dante, dialog, dillo, docker-cli,
  832. docker-containerd, docker-engine, easy-rsa, ebtables,
  833. ecryptfs-utils, efl, ffmpeg, gdb, git, glibc, gnupg2, go,
  834. gpsd, grpc, gst1-plugins-bad, iputils, jasper,
  835. kf5-kcoreaddons, leveldb, libarchive, libfribi, libgit2,
  836. libkrb5, libp11, librsvg, libssh, libtomcrypt, libuio, libv4l,
  837. lirc-tools, log4cplus, lrzip, lvm2, mali-t76x,
  838. matchbox-desktop, mender-grubenv, mmc-utils, mosquitto,
  839. nodejs, ntp, openipmi, opencv3, openpowerlink, openrc, pango,
  840. perl-sys-cpu, pimd, postgresql, pulseaudio, python-brotli,
  841. python-coherence, python-crc16, python-django, python-dpkt,
  842. python-gobject, python-pyasn-modules, python-pypcap,
  843. python-pyqt5, python-subprocess32, python3, qpdf,
  844. qt-webkit-kiosk, qt5virtualkeyboard, qt5webengine, quota,
  845. rabbitmq-c, rauc, rpcbind, rtl8821au, runc, rygel, samba4,
  846. sdl2, setserial, snort, spidev_test,
  847. sunxi-mali-mainline-driver, syslog-ng, sysrepo, tcllib, tftpd,
  848. usbmount, w_scan, wavpack, wsapi, wsapi-fcgi, wsapi-xavante,
  849. x265, xserver_xorg-server, ytree, zip
  850. Issues resolved (http://bugs.uclibc.org):
  851. #12121: PyQt5.QtSerialPort and other modules not being built
  852. #12286: Can't import gobject in python 3.8
  853. 2019.11, released December 1st, 2019
  854. Various fixes.
  855. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  856. <pkg>_DL_OPTS by default, just like it is done for a number of
  857. other package variables.
  858. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  859. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  860. the (rare) case where the .py files are needed at runtime
  861. rather than .pyc.
  862. Updated/fixed packages: am33x-cm3, bind, collectd, go, gob2,
  863. gst1-plugins-bad, haproxy, jasper, jpeg-turbo, libdrm,
  864. libftdi, libftdi1, libnss, libselinux, libstrophe, lzma,
  865. minicom, network-manager, nodejs, oniguruma, opencv3,
  866. openvmtools, perl-gdgraph, perl-gdtextutil, prosody,
  867. python-cchardet, systemd, tiff, wolfssl,
  868. Issues resolved (http://bugs.uclibc.org):
  869. #11416: check-uniq-files staging issue
  870. #12146: Oprofile runtime issue
  871. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  872. #12171: Python-opencv needs config.py and config-3.7.py to run..
  873. #12196: duma package
  874. #12211: host-nodejs 10.15.3 package fail to build
  875. #12316: tzdata fails to install with empty "default local time"
  876. #12326: network-manager build fails with missing glib error
  877. #12366: Gstreamer1 gst1-plugins-bad do not compile with RPI-Userland
  878. 2019.11-rc3, released November 24th, 2019
  879. Fixes all over the tree.
  880. Updated/fixed packages: asterisk, clamav, domoticz, faifa,
  881. gerbera, kmod, kvm-unit-tests, libupnp18, linux-serial-test,
  882. lsof, ltp-testsuite, lxc, mesa3d, mesa3d-headers, perl, php,
  883. postgresql, qemu, rauc, redis, rpcbind, spice, spice-protocol,
  884. systemd, tftpd, waylandpp, webkitgtk, zip
  885. 2019.11-rc2, released November 16th, 2019
  886. Fixes all over the tree.
  887. Toolchain: ARC tools bumped to arc-2019.09-rc1, ensure
  888. external toolchain kernel headers version check correctly stop
  889. the build on mismatch
  890. Meson: Fix generation of global cross-compilation.conf
  891. Download: Also use the package download method for extra
  892. downloads from the same site, so it does not get confused by
  893. URLs containing '+'
  894. Defconfigs: Fix boot issue for beaglebone
  895. Updated/fixed packages: bird, chrony, connman, dhcp, domoticz,
  896. dropwatch, dtc, elf2flt, gettext-tiny, glog, intel-microcode,
  897. ipsec-tools, jailhouse, kodi, libfribi, libmbim, libressl,
  898. libsigrokdecode, libsvgtiny, linux-serial-test, ltp-testsuite,
  899. lvm2, lxc, mariadb, mesa3d, minizip, ndisc6, neardal, ninja,
  900. ofono, openvmtools, oracle-mysql, qt5wayland, safeclib, socat,
  901. sudo, systemd, wpewebkit, xserver_xorg-server
  902. 2019.11-rc1, released November 5th, 2019
  903. Fixes all over the tree and new features.
  904. Dependencies: Gcc/g++ 4.8 or newer is now required on the
  905. build host.
  906. Ensure host has JSON::PP perl module installed if
  907. webkitgtk/wpewebkit packages are enabled as it is needed
  908. during their build process.
  909. Toolchain: Add support for the D programming language (GCC
  910. 9.x, Glibc).
  911. GCC 9.x updated to 9.2.0, Glibc updated to 2.30, Musl updated
  912. to 1.1.24, uClibc-ng updated to 1.0.32, ARC toolchain updated
  913. to arc-2019.09-eng002.
  914. Musl: Add a patch to add support for
  915. sched_{get,set}scheduler() and sched_{get,set}param() for
  916. compatibility.
  917. Generate check-headers program under BUILD_DIR rather than
  918. /tmp to fix issues with distributions mounting /tmp noexec.
  919. Also copy libssp.so for external toolchains if SSP
  920. to handle toolchains providing SSP support in libssp rather
  921. than in the C library
  922. New defconfigs: Beaglebone AI, FriendlyARM Nanopi NEO Plus2,
  923. Libre Computer "La Frite", QEMU Armv7-A with trustzone/OP-TEE,
  924. STM32MP157 Discovery Kit
  925. Arch: RISC-V: Default to a sensible floating point ABI based
  926. on the selected ISA extensions rather than always defaulting
  927. to ILP32/64
  928. Graph-size: Package sizes are now shown in human readable form
  929. (Kib/Mib/Gib) rather than always in Kib. Binary (KB/MB/GB)
  930. format can be selected using the --binary option. The cut-off
  931. limit for classifying packages as "other" is now configurable
  932. using the --size-limit option.
  933. Br2-external: Linux kernel extensions can now also be provided
  934. in an external tree by adding packages under
  935. linux/linux-ext-*.mk. See the manual for details.
  936. Fakeroot now works correctly under Microsoft Windows 10
  937. Services for Linux, which does not provide SYSV IPC support
  938. The check-uniq-files logic which would complain if multiple
  939. packages would touch the same files has been removed as it
  940. causes issues in certain situations (when packages are
  941. rebuilt) and the issue is no longer considered a problem for
  942. toplevel parallel builds as those will use a per-package
  943. staging/target directory.
  944. With this removed, Python is no longer required for a basic
  945. build (only for optional scripts).
  946. support/scripts/genimage.sh will no longer make a copy of
  947. TARGET_DIR, speeding up post-build/image scripts.
  948. The runtime test logic now uses Python 3.x.
  949. A 'v' prefix has been dropped from the <pkg>_SOURCE variable
  950. for a number of packages to match the version numbers used by
  951. https://release-monitoring.org
  952. New packages: caps, collectl, dav1d, fstrcmp, ima-evm-utils,
  953. jitterentropy-library, kodi-vfs-rar, kodi-vfs-sftp, libavl,
  954. libhttpserver, libmspack, libnetconf2, libolm, libyang,
  955. linux-serial-test, lrzip, mdevd, minimodem, musl-fts, netifrc,
  956. ogre, openlayers, python-aioredis, python-asgiref,
  957. python-backports-functools-lru-cache, python-bluezero,
  958. python-brotli, python-channels, python-channels-redis,
  959. python-colorlog, python-daphne, python-django-enumfields,
  960. python-jaraco-functools, python-kiwisolver, python-msgfy,
  961. python-rpi-ws281x, python-setuptools-scm-git-archive,
  962. python-simplelogging, python-soupsieve, python-sqliteschema,
  963. python-sqlparse, python-tqdm, python-webencodings, qt5webview,
  964. restclient-cpp, ripgrep, snmpclitools, sunwait, sysrepo,
  965. uacme, utf8proc, uvw, ytree
  966. Removed packages: alljoyn, alljoyn-base, alljoyn-tcl-base,
  967. devmem2, eventlog, kodi-audiodecoder-opus,
  968. kodi-screensaver-planestate, kodi-visualisation-waveforhue,
  969. python-pysnmp-apps, riscv-pk, ustr
  970. Issues resolved (http://bugs.uclibc.org):
  971. #9881: systemd-resolved not setting resolv.conf link
  972. #10171: devmem2 w (word) is 8 bytes in x86 64 systems
  973. #10586: musl gcc has ifunc enabled when musl doesn't support it
  974. #10806: Allow nfs-utils to use ipv6
  975. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  976. #11411: check-uniq-files target issue
  977. #11766: Console (getty) issues with systemd
  978. #11781: mariadb build error
  979. #12031: Build of cups-filters fails while linking, apparently due..
  980. #12116: console prompt does not appear after login
  981. #12141: eudev package is missing "render" and "kvm" groups
  982. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  983. #12186: Raspberry Pi Zero-W build fails on newer kernel versions
  984. #12191: cmake BUILDDIR
  985. #12241: Permission denied while running "make"
  986. #12261: sudo versions prior to 1.8.28 are affected.
  987. #12276: make clean/distclean does not remove BR2_DL_DIR and BR2_HOST_DIR
  988. #12281: Custom configuration fails to build (based on raspberrypi3_..
  989. 2019.08.3, released December 7th, 2019
  990. Important / security related fixes.
  991. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  992. <pkg>_DL_OPTS by default, just like it is done for a number of
  993. other package variables
  994. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  995. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  996. the (rare) case where the .py files are needed at runtime
  997. rather than .pyc.
  998. Fix <pkg>-reconfigure handling for packages using the kconfig
  999. infrastructure.
  1000. Toolchain: ensure external toolchain kernel headers version
  1001. check correctly stop the build on mismatch
  1002. Deconfigs: beaglebone: fix boot issue
  1003. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1004. clamav, cmocka, collectd, connman, dhcp, dropwatch, faifa,
  1005. gettext-tiny, gob2, haproxy, intel-microcode, ipsec-tools,
  1006. jailhouse, jasper, jpeg-turbo, kodi, kvm-unit-tests, libftdi,
  1007. libftdi1, libnss, libressl, libstrophe, libsvgtiny, lvm2,
  1008. lzma, mariadb, minicom, mosquitto, neardal, ninja, nodejs,
  1009. oniguruma, openvmtools, oracle-mysql, perl-gdgraph,
  1010. perl-gdtextutil, php, postgresql, prosody, python-cchardet,
  1011. python-django, qt5wayland, rabbitmq, rauc, redis, rpcbind,
  1012. socat, spice, spice-protocol, tftpd, tiff, webkitgtk
  1013. New packages: libmspack
  1014. Issues resolved (http://bugs.uclibc.org):
  1015. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1016. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1017. #12211: host-nodejs 10.15.3 package fail to build
  1018. #12316: tzdata fails to install with empty "default local time"
  1019. 2019.08.2, released November 9th, 2019
  1020. Important / security related fixes.
  1021. Toolchain: Also copy libssp.so for external toolchains if SSP
  1022. to handle toolchains providing SSP support in libssp rather
  1023. than in the C library
  1024. Download: Also use the package download method for extra
  1025. downloads from the same site, so it does not get confused by
  1026. URLs containing '+'
  1027. Fakeroot now works correctly under Microsoft Windows 10
  1028. Services for Linux, which does not provide SYSV IPC support
  1029. utils/test-pkg: ensure to exit with an error upon failure
  1030. Updated/fixed packages: asterisk, azmq, binutils,
  1031. cups-filters, domoticz, dtc, duma, elf2flt, eudev, exfat,
  1032. exfat-utils, fakeroot, fdk-aac, file, freerdp, gcc, gd,
  1033. ghostscript, go, gpsd, grpc, gst1-plugins-base, gvfs, icu,
  1034. intel-microcode, kvm-unit-tests, libfribidi, libnspr, libnss,
  1035. libopenssl, libpcap, libpciaccess, librsvg, libseccomp,
  1036. libsigrok, libtorrent, libunwind, libva, linux-tools,
  1037. lua-sdl2, lxc, minizip, mjpegtools, mongoose, mono, nbd,
  1038. nfs-utils, php, piglit, python, python-autobahn,
  1039. python-pysnmp-apps, python-tornado, python3, qemu, qt5base,
  1040. ruby, safeclib, samba4, sdl_mixer, sox, sudo, suricata,
  1041. systemd, tcpdump, unscd, util-linux, vdr-plugin-vnsiserver,
  1042. vtun, wireshark, xvisor, yaffs2utils
  1043. Issues resolved (http://bugs.uclibc.org):
  1044. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1045. #12261: sudo versions prior to 1.8.28 are affected
  1046. 2019.08.1, released October 3rd, 2019
  1047. Important / security related fixes.
  1048. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1049. Use default console settings
  1050. Dependencies: Ensure host has JSON::PP perl module installed
  1051. if webkitgtk/wpewebkit packages are enabled as it is needed
  1052. during their build process.
  1053. Toolchain: Generate check-headers program under BUILD_DIR
  1054. rather than /tmp to fix issues with distributions mounting
  1055. /tmp noexec.
  1056. Updated/fixed packages: asterisk, augeas, axel, bind, bwm-ng,
  1057. cups, cups-filters, docker-cli, docker-engine, docker-proxy,
  1058. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd, joe,
  1059. kf5-extra-cmake-modules, kf5-modemmanager-qt,
  1060. kf5-networkmanager-qt, libcamera, libcurl, libgcrypt,
  1061. libglib2, libgpg-error, libnspr, libnss, libopenssl,
  1062. logrotate, luksmeta, mariadb, mbedtls, mongodb, mosquitto,
  1063. ncurses, nfs-utils, nghttp2, nodejs, openvmtools, php,
  1064. protobuf, putty, qemu, samba4, snort, swupdate,
  1065. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1066. wireshark
  1067. Issues resolved (http://bugs.uclibc.org):
  1068. #10806: Allow nfs-utils to use ipv6
  1069. #11781: mariadb build error
  1070. #12031: Build of cups-filters fails while linking, apparently due..
  1071. #12141: eudev package is missing "render" and "kvm" groups
  1072. #12241: Permission denied while running "make"
  1073. 2019.08, released September 1st, 2019
  1074. Various fixes.
  1075. Defconfigs: Removed nanopc t4, nanopi m4 and neo4, pine64
  1076. rockpro64 and raxda rock pi4 as they rely on a ARM32 toolchain
  1077. on the build host to build ATF. These defconfigs will be added
  1078. back once a package providing such toolchain is
  1079. available. Also dropped ts4800 defconfig as it does not build
  1080. with GCC >= 8.x.
  1081. Updated/fixed packages: libxcb, php, python-numpy, webkitgtk,
  1082. wpewebkit, xfont_font-util
  1083. Issues resolved (http://bugs.uclibc.org):
  1084. #12156: buildroot-2019.08-rc3 does not build for Pi Zero W
  1085. 2019.08-rc3, released August 28th, 2019
  1086. Fixes all over the tree.
  1087. Updated/fixed packages: clamav, dovecot, dovecot-pigeonhole,
  1088. gcc, intel-microcode, libmicrohttpd, libmodplug, mpg123,
  1089. nginx, openldap, python, qemu, samba4, squid, strace, vlc
  1090. Issues resolved (http://bugs.uclibc.org):
  1091. #11686: fbdev_drv.so: undefined symbol: shadowUpdatePackedWeak,..
  1092. 2019.08-rc2, released August 20th, 2019
  1093. Fixes all over the tree.
  1094. Compile fixes for a number of defconfigs.
  1095. Updated/fixed packages: apache, autofs, batctl, batman-adv,
  1096. bind, collectd, cwiid, dahdi-linux, dahdi-tools, daq,
  1097. dehydrated, dhcp, dtc, efl, enlightenment, evtest, giflib,
  1098. gnutls, go, gst-plugins-bad, gst-plugins-base,
  1099. gst1-plugins-bad, gst1-plugins-base, gst1-rtsp-server, gtkmm3,
  1100. gupnp, harfbuzz, imagemagick, lftp, libbsd, libcpprestsdk,
  1101. libdnet, libfm, libgit2, libgtk2, libgtk3, libpri, librsvg,
  1102. libss7, libssh2, libwpe, lua-cqueues, metacity, micropython,
  1103. mpd, mpg123, musl, mpv, openblas, openbox, opencv, pango,
  1104. pcmanfm, piglit, pigpio, pinentry, postgresql, qemu, qt5base,
  1105. qt5enginio, qt5multimedia, qt5serialbus, quagga, quazip,
  1106. rrdtool, rygel, samba4, stellarium, tcpreplay, ti-gfx, vte,
  1107. wampcc, wilink-bt-firmware, wireless-regdb, wpebackend-fdo,
  1108. xscreensaver
  1109. Removed packages: libamcodec, odroid-mali, odroid-scripts
  1110. Issues resolved (http://bugs.uclibc.org):
  1111. #9481: NetworkManager/Ping unable to resolve domains
  1112. #10566: php.mk is missing option --with-pgsql
  1113. #10861: Package batman_adv Makefile is missing include header direct..
  1114. #11641: linux kernel .config timestamp always out of date fixed with..
  1115. #11671: russian locale ru_RU:145: LC_TIME: syntax error
  1116. #11701: recuuring of usr and in bin shortcuts are created
  1117. #11741: pigpio does not build host-pigpio
  1118. #11876: automount using host mount/umount
  1119. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1120. #11921: dahdi fails to build
  1121. #11936: libcpprestsdk should install to staging
  1122. #11946: wilink-bt-firmware: moved from github to http://git.ti.com/ti-bt
  1123. #11961: libpri build failure
  1124. #12086: dhcp shared libraries not installed to target
  1125. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1126. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1127. #12126: vc4 has neon as hard dependency
  1128. 2019.08-rc1, released August 9th, 2019
  1129. Fixes all over the tree and new features.
  1130. toolchain: ARC toolchain updated to 2019.03 (binutils 2.32.51
  1131. / GCC 8.3.1 / glibc 2.29), ARM AAarch64/ARM toolchains updated
  1132. to 2019.03. Add GCC 9.1.0, remove GCC 4.9 and 6.5, add GDB
  1133. 8.3, remove GDB 7.12 and 8.0.1, default to GDB 8.2, GCC
  1134. 8.3.0. Musl updated to 1.1.23, bringing support for RISC-V 64.
  1135. Architectures: Internal toolchain support for C-SKY, support
  1136. for ARC HS48 v3.1 and HS38 with Quad MAC & FPU, support for
  1137. ARM A76, A76/A55 big.LITTLE, emag, neoverse-N1, phecda and
  1138. tsv110.
  1139. Filesystems: Pass extra pax options to tar for binary
  1140. reproducibility. Build host-cpio for the --reproducible option
  1141. support when BR2_REPRODUCIBLE is enabled. Genimage updated to
  1142. version 11, bringing GPT support.
  1143. Br2-external: Add support for injecting additional options to
  1144. the list of preconfigured external toolchains and libjpeg and
  1145. openssl providers using files under provides/. See the manual
  1146. for details.
  1147. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1148. passed before the standard exclusions so they are not ignored
  1149. by rsync when using override-srcdir.
  1150. Gnuconfig updated to 2019-05-28, adding C-SKY support.
  1151. test-pkg: Correct long option handling and clean output dir
  1152. after a successful build to save disk space.
  1153. support/testing: Emulate a machine with 256MB RAM to fix
  1154. issues with certain tests running out of memory, use
  1155. virtio-rng to provide needed entrophy.
  1156. pkg-stats: support outputting in JSON format with --json for
  1157. easier post processing. The classic HTML output is still
  1158. available with --html. Parallelize access to
  1159. release-monitoring.org to speed up runtime.
  1160. Drop non-conventional version prefix/suffix/separators for
  1161. packages for better compatibility with release-monitoring.org
  1162. Packages:
  1163. Init systems: Add basic openrc support and
  1164. <pkg>_INSTALL_INIT_OPENRC variable in the infrastructure to
  1165. install openrc service scripts if enabled.
  1166. busybox: Build each applet as a separate binary when SELinux
  1167. is enabled for more finegrained policy control. Use daemon
  1168. mode for mdev rather than legacy hotplug.
  1169. linux: Workaround -Werror related build failure on powerpc,
  1170. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1171. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1172. partition is available before mounting.
  1173. New defconfigs: HiFive Unleashed, I.MX8MM EVK and Pico, Nanopi
  1174. m4 and neo4, Nanopc t4, Olimex A33 olinuxino, Pine64
  1175. Rockpro64, PowerPC mac99, QEMU C-SKY 610/807/810/860 virt,
  1176. Raspberry Pi 4, Raxda rock pi4, Solidrun Clearfog GT-8K
  1177. Removed defconfigs: Odroid C2
  1178. New packages: bitcoin, c-capnproto, fatcat, ifmetric, jack1,
  1179. jailhouse, libubootenv, luasyslog, mender-grubenv,
  1180. murata-cyw-fw, openrc, piglit, python-colorama, python-cycler,
  1181. python-hiredis, python-ifaddr, python-inflection,
  1182. python-iptables, python-matplotlib, python-periphery,
  1183. python-pycairo, python-redis, python-termcolor,
  1184. python-tinyrpc, python-txdbus, skeleton-init-openrc, spdlog,
  1185. sshguard, stellarium, zziplib
  1186. Removed packages: xapp_mkfontdir
  1187. Issues resolved (http://bugs.uclibc.org):
  1188. #11096: Upgrade from glibc 2.26 to 2.27 broke some locales...
  1189. #11271: utils/check-package fails with exception depending on..
  1190. #11991: [numpy] segfault when compiling for RPi3 64bits
  1191. #12016: Grub fails to boot bzImage after upgrade to 2019.05
  1192. #12046: Can’t login as root user after upgrading to buildroot..
  1193. #12051: package/dhcp installs libtool wrapper scripts on tar...
  1194. #12076: Patchelf can link against an incompatible libc++ ver...
  1195. 2019.05.3, Released October 3rd, 2019
  1196. Important / security related fixes.
  1197. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1198. Use default console settings
  1199. Dependencies: Ensure host has JSON::PP perl module installed
  1200. if webkitgtk/wpewebkit packages are enabled as it is needed
  1201. during their build process.
  1202. Toolchain: Generate check-headers program under BUILD_DIR
  1203. rather than /tmp to fix issues with distributions mounting
  1204. /tmp noexec.
  1205. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1206. cups-filters, docker-cli, docker-engine, docker-proxy,
  1207. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd,
  1208. iptables, joe, kf5-extra-cmake-modules, kf5-modemmanager-qt,
  1209. kf5-networkmanager-qtlibcamera, libcurl, libgcrypt,
  1210. libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1211. libtorrent-rasterbar, luksmeta, mariadb, mbedtls, mongodb,
  1212. mosquitto, ncurses, nfs-utils, nghttp2, nodejs, openvmtools,
  1213. php, protobuf, putty, qemu, samba4, swupdate,
  1214. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1215. wireshark
  1216. Issues resolved (http://bugs.uclibc.org):
  1217. #10806: Allow nfs-utils to use ipv6
  1218. #11781: mariadb build error
  1219. #12031: Build of cups-filters fails while linking, apparently due..
  1220. #12141: eudev package is missing "render" and "kvm" groups
  1221. #12241: Permission denied while running "make"
  1222. 2019.05.2, Released September 3rd, 2019
  1223. Important / security related fixes.
  1224. Filesystems: Pass extra pax options to tar for binary
  1225. reproducibility.
  1226. Updated/fixed packages: apache, arm-trusted-firmware,
  1227. asterisk, atk, autofs, batctl, batman-adv, berkeleydb,
  1228. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1229. dahdi-linux, dahdi-tools, daq, dehydrated, dhcp, dovecot,
  1230. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1231. git, glib-networking, glibc, gnupg2, gnutls, go,
  1232. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1233. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1234. libgit2, libgtk2, libgtk3, libmodplug, libnss, libpri,
  1235. libshout, libss7, libssh2, libvips, libxcb, linux-headers,
  1236. mdadm, mesa3d, metacity, mpg123, mosquitto, musl, nginx,
  1237. oniguruma, openblas, opencv3, openjdk, openjdk-bin, openldap,
  1238. openvmtools, pcmanfm, php, pigpio, postgresql, prboom,
  1239. proftpd, proj, python, python-django, python-idna,
  1240. python-numpy, python-urllib3, python3, qemu, qt5, qt5base,
  1241. qt5enginio, quagga, rygel, squid, subversion, tcpreplay,
  1242. unzip, vlc, vte, webkitgtk, wireless-regdb, xen,
  1243. xfont_font-util, xlib_libICE, xlib_libXfont, xlib_libXfont2,
  1244. yad, zeromq
  1245. Issues resolved (http://bugs.uclibc.org):
  1246. #11741: pigpio does not build host-pigpio
  1247. #11876: automount using host mount/umount
  1248. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1249. #11921: dahdi fails to build
  1250. #11961: libpri build failure
  1251. #12086: (dhcpd-missing-libs) - dhcp shared libraries not installed to..
  1252. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1253. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1254. #12126: vc4 has neon as hard dependency
  1255. 2019.05.1, Released July 7th, 2019
  1256. Important / security related fixes.
  1257. arch: x86: Fix typo breaking 'core-avx2' variant
  1258. linux: Workaround -Werror related build failure on powerpc,
  1259. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1260. support/testing: Emulate a machine with 256MB RAM to fix
  1261. issues with certain tests running out of memory.
  1262. test-pkg: Correct long option handling and clean output dir
  1263. after a successful build to save disk space.
  1264. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1265. partition is available before mounting.
  1266. Updated/fixed packages: barebox, busybox, bzip2, davfs2,
  1267. dialog, docker-cli, docker-engine, exim, expat, faad2,
  1268. haveged, irssi, libcamera, libcdaudio, libcurl, libglib2,
  1269. libressl, libsecret, lmbench, meson, monit, php, postgresql,
  1270. psplash, python-django, qt5base, tvheadend, webkitgtk,
  1271. xserver_xorg-server, znc
  1272. 2019.05, released June 2nd, 2019
  1273. Various fixes.
  1274. Toolchain: Ensure pre-built Andes toolchains can only be
  1275. selected when x86 32bit support is available on the host.
  1276. Disallow PowerPC SPE ABI for GCC >= 8.x, as it is no longer
  1277. supported.
  1278. Infra: pkg-config: Use a dedicated timestamp file rather than
  1279. .config as that gets touched by linux-4.19+, causing repeated
  1280. builds.
  1281. Add C-SKY support to our config.sub (gnuconfig)
  1282. Updated/fixed packages: dosfstools, botan, brotli, dropbear,
  1283. flare-engine, gst1-plugins-bad, libhtp, libnss, libopenssl,
  1284. linuxptp, matchbox-panel, mender, mutt, netsurf,
  1285. network-manager, opencv3, openjdk, openmpi, php,
  1286. python-cython, qt5multimedia, qtwayland, qt5webkit-examples,
  1287. supertux, suricata, tpm2-totp, v4l2loopback, wireshark,
  1288. wpewebkit
  1289. 2019.05-rc3, released May 25th, 2019
  1290. Fixes all over the tree.
  1291. check-bin-arch: Ignore /usr/lib/grub, similar to how /lib/grub
  1292. is ignored.
  1293. check-package: Warn about utf-8 characters in .mk files
  1294. Linux: Default to 5.1.x series
  1295. Updated/fixed packages: assimp, atop, chocolate-doom, cjson,
  1296. ddrescue, dhcp, ffmpeg, gerbera, glibmm, gpsd, gst-ffmpeg,
  1297. intel-microcode, jasper, keepalived, kismet, libcpprestsdk,
  1298. libcurl, libssh2, libupnp18, luarocks, mono-gtksharp3, opus,
  1299. postgresql, pcsc-lite, python, tslib, webkitgtk,
  1300. wpebackend-fdo, wpewebkit
  1301. 2019.05-rc2, released May 15th, 2019
  1302. Fixes all over the tree.
  1303. Updated/fixed packages: bind, bullet, ca-certificates,
  1304. collectd, cracklib, dhcp, gdb, libinput, libtorrent-rasterbar,
  1305. linknx, lynx, mono, netsurf, optee-os, postgresql, qt5enginio,
  1306. qt5multimedia, rpm, samba4, sqlite, strace, uclibc, woff2
  1307. Issues resolved (http://bugs.uclibc.org):
  1308. #11841: grub-efi.cfg not used when building EFI disk image
  1309. 2019.05-rc1, Released May 8th, 2019
  1310. Fixes all over the tree and new features.
  1311. Architecture: Andes 32-bit (nds32) support added.
  1312. Only build host-lzip / host-xz when really needed by packages,
  1313. not just when not available on the build host.
  1314. Toolchain: Glibc bumped to 2.29, musl bumped to 1.1.22,
  1315. binutils 2.32 added, 2.28/2.29 removed, default changed to
  1316. 2.31.1.
  1317. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1318. forward {f,l,}chown calls to libc when running under fakeroot
  1319. to fix issues when building in restricted environments
  1320. (E.G. user namespace with bubblewrap).
  1321. Linux: Also build default make target to ensure extra files
  1322. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1323. built. Notice: This may mean that extra host utilities like
  1324. uboot-mkimage are needed.
  1325. Infrastructure: show-info and <pkg>-show-info make targets
  1326. added to output package metadata in JSON format for external
  1327. use.
  1328. pkg-generic: Only tweak .la files needing it to ensure they
  1329. are not included in subsequent package file lists.
  1330. test-pkg: Generate a basic package config if none is
  1331. specified.
  1332. Gettext-tiny package added as an lightweight replacement for
  1333. GNU gettext for situations where NLS support is not needed.
  1334. New defconfigs: Andes AE3XX, Freescale imx8mpico / imx8qxpmek
  1335. / T2080 QDS RDB, Licheepi zero, Orangepi R1
  1336. Removed defconfigs: Olimx A20 Olinuxino Lime legacy
  1337. New packages: bats-core, bayer2rgb-neon, brickd, cog, dacapo,
  1338. enet, gettext-tiny, gli, gst1-plugins-bayer2rgb-neon,
  1339. imx-sc-firmware, intel-mediadriver, intel-mediasdk, libcamera,
  1340. libhtp, libp11, libwpe, lua-binaryheap, lua-gd, lua-lunitx,
  1341. mender-artifact, most, oniguruma, openjdk, openjdk-bin,
  1342. opensbi, optee-benchmark, optee-client, optee-examples,
  1343. optee-os, optee-test, paho-mqtt-cpp, python-aioblescan,
  1344. python-aioconsole, python-aiohttp-cors, python-aiomonitor,
  1345. python-backcall, python-jedi, python-parso, python-pyjwt,
  1346. python-terminaltables, suricata, tpm2-totp, uftp,
  1347. wpebackend-fdo, wpewebkit
  1348. Removed packages: libump, lunit, sunxi-mali
  1349. Issues resolved (http://bugs.uclibc.org):
  1350. #11716: Typo on website, saying latest release is 2018.2.11
  1351. #11756: package/syslinux: MBR's don't fit because of binutils..
  1352. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1353. #11816: Only selected coreutils binaries are installed
  1354. 2019.02.11, released April 9th, 2020
  1355. Important / security related fixes.
  1356. core: Fix compatibility with make 4.3+. Also fixup /lib
  1357. references in libtool .la files, similar to how it is done for
  1358. /usr/*.
  1359. toolchain: Fix kernel headers validation check for external
  1360. toolchains.
  1361. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  1362. civetweb, collectd, ffmpeg, gcc, gnutls, gvfs, haproxy,
  1363. hiredis, kmscube, libical, libopenssl, libsndfile,
  1364. linux-tools, ntp, php, pure-ftpd, screen, sysdig, tor,
  1365. util-linux, vala, vlc, xserver_xorg-server
  1366. Issues resolved (http://bugs.uclibc.org):
  1367. #12746: "sysdig" package description points to http://sysdig.org, ..
  1368. 2019.02.10, released March 16th, 2020
  1369. Important / security related fixes.
  1370. Core: Ensure package-file-lists data is correct after
  1371. incremental builds as well.
  1372. Fix a race condition related to creating the output/staging
  1373. symlink on systems with coreutils < 8.27.
  1374. Br2-external: Fix compatibility with make 4.3+
  1375. Util-linux: Ensure that hwclock is built without GPLv3
  1376. code. Notice that builds with hwclock has contained
  1377. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  1378. Updated/fixed packages: armadillo, at, binutils, blktrace,
  1379. bootstrap, busybox, cairo, cups, czmq, dnsmasq,
  1380. docker-containerd, dovecot, dovecot-pigeonhole, e2fsprogs,
  1381. eudev, exim, exiv2, fbgrab, grep, gst1-validate, guile,
  1382. imagemagick, jhead, kvm-unit-tests, lapack, libcgroup,
  1383. libftdi1, libjpeg, libsigrok, libsndfile, libssh2, libsvgtiny,
  1384. libvncserver, libvorbis, libxml2, libxslt, linux, lz4,
  1385. mariadb, mbedtls, meson, mfgtools, mongoose, ncurses, ntfs-3g,
  1386. opencv3, openjpeg, openswan, openvmtools, patch, php,
  1387. postgresql, pppd, proftpd, pure-ftpd, python-django,
  1388. python-pyqt5, python3, qemu, qt5base, qt5webengine, qwt,
  1389. rdesktop, ruby, runc, samba4, shellinabox, smartmontools,
  1390. sqlcipher, squid, swupdate, sysklogd, taglib, thrift,
  1391. ti-cgt-pru, uboot, util-linux, vorbis-tools, webkitgtk,
  1392. wireshark, xen, xserver_xorg-server, zeromq, zsh
  1393. Issues resolved (http://bugs.uclibc.org):
  1394. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  1395. #12331: meson issue
  1396. #12461: libglib2 build files with deep directory structure
  1397. #12606: fbgrab location has changed
  1398. 2019.02.9, released January 12th, 2020
  1399. Important / security related fixes.
  1400. pkg-python infrastructure: Ensure correct compiler and linker
  1401. flags are used for compiled code
  1402. utils/scanpypi: Remind users to update DEVELOPERS
  1403. Updated/fixed packages: busybox, cc-tool, cpio, cups, dante,
  1404. dillo, docker-cli, docker-containerd, docker-engine, easy-rsa,
  1405. ecryptfs-utils, efl, git, glibc, gnupg2, gst1-plugins-bad,
  1406. kf5-kcoreaddons, libarchive, libgit2, libkrb5, librsvg,
  1407. libssh, libtomcrypt, libuio, lirc-tools, lvm2,
  1408. matchbox-desktop, nodejs, ntp, opencv3, openpowerlink,
  1409. python-django, python-ecdsa, python-pyasn-modules,
  1410. python-pyqt5, python-subprocess32, python3, qpdf, runc, rygel,
  1411. samba4, sdl2, wavpack, xserver_xorg-server, zip
  1412. Issues resolved (http://bugs.uclibc.org):
  1413. #12121: PyQt5.QtSerialPort and other modules not being built
  1414. 2019.02.8, released December 7th, 2019
  1415. Important / security related fixes.
  1416. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1417. <pkg>_DL_OPTS by default, just like it is done for a number of
  1418. other package variables
  1419. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1420. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1421. the (rare) case where the .py files are needed at runtime
  1422. rather than .pyc.
  1423. Fix <pkg>-reconfigure handling for packages using the kconfig
  1424. infrastructure.
  1425. Toolchain: ensure external toolchain kernel headers version
  1426. check correctly stop the build on mismatch
  1427. Deconfigs: beaglebone: fix boot issue
  1428. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1429. clamav, collectd, connman, faifa, gob2, haproxy,
  1430. intel-microcode, ipsec-tools, jasper, jpeg-turbo, kodi,
  1431. kvm-unit-tests, libftdi, libftdi1, libnss, libstrophe,
  1432. libsvgtiny, lvm2, lzma, mariadb, minicom, neardal, nodejs,
  1433. opencv3, openvmtools, oracle-mysql, perl-gdgraph,
  1434. perl-gdtextutil, php, postgresql, prosody, python-django,
  1435. rabbitmq-c, rauc, redis, rpcbind, socat, spice,
  1436. spice-protocol, tftpd, tiff, webkitgtk
  1437. New packages: libmspack
  1438. Issues resolved (http://bugs.uclibc.org):
  1439. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1440. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1441. #12211: host-nodejs 10.15.3 package fail to build
  1442. #12316: tzdata fails to install with empty "default local time"
  1443. 2019.02.7, Released November 10th, 2019
  1444. Important / security related fixes.
  1445. support/testing: use a kernel with HW_RANDOM_VIRTIO to work
  1446. around issues with lack of entrophy
  1447. Toolchain: Also copy libssp.so for external toolchains if SSP
  1448. is enabled to handle toolchains providing SSP support in
  1449. libssp rather than in the C library
  1450. Download: Also use the package download method for extra
  1451. downloads from the same site, so it does not get confused by
  1452. URLs containing '+'
  1453. Fakeroot now works correctly under Microsoft Windows 10
  1454. Services for Linux, which does not provide SYSV IPC support
  1455. utils/test-pkg: ensure to exit with an error upon failure
  1456. Updated/fixed packages: asterisk, azmq, cups-filters,
  1457. domoticz, duma, elf2flt, eudev, exfat, exfat-utils, fakeroot,
  1458. file, freerdp, gd, ghostscript, go, gvfs, intel-microcode,
  1459. kvm-unit-tests, libarchive, libnspr, libnss, libopenssl,
  1460. libpcap, libpciaccess, librsvg, libseccomp, libsigrok,
  1461. libtorrent, libunwind, linux-tools, lua-sdl2, lxc, minizip,
  1462. mjpegtools, mongoose, php, python, python-pysnmp-apps,
  1463. python3, qemu, qt5base, ruby, safeclib, samba4, sdl_mixer,
  1464. sox, sudo, systemd, tcpdump, unscd, util-lkinux, vtun, xvisor,
  1465. yaffs2utils
  1466. Issues resolved (http://bugs.uclibc.org):
  1467. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1468. #12261: sudo versions prior to 1.8.28 are affected
  1469. 2019.02.6, Released October 3rd, 2019
  1470. Important / security related fixes.
  1471. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1472. Use default console settings
  1473. Dependencies: Ensure host has JSON::PP perl module installed
  1474. if webkitgtk/wpewebkit packages are enabled as it is needed
  1475. during their build process.
  1476. Toolchain: Generate check-headers program under BUILD_DIR
  1477. rather than /tmp to fix issues with distributions mounting
  1478. /tmp noexec.
  1479. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1480. cups-filters, docker-cli, docker-engine, docker-proxy,
  1481. dropbear, e2fsprogs, eudev, exim, expat, gcc, go, ifplugd,
  1482. haveged, iptables, joe, kf5-extra-cmake-modules,
  1483. kf5-modemmanager-qt, kf5-networkmanager-qt, libcurl,
  1484. libgcrypt, libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1485. luksmeta, mariadb, mbedtls, mongodb, mosquitto, ncurses,
  1486. nfs-utils, nghttp2, nodejs, openvmtools, php, protobuf, putty,
  1487. qemu, qt5base, samba4, swupdate, systemd-bootchart, thttpd,
  1488. uclibc, unzip, util-linux, wireshark
  1489. Issues resolved (http://bugs.uclibc.org):
  1490. #10806: Allow nfs-utils to use ipv6
  1491. #11781: mariadb build error
  1492. #12031: Build of cups-filters fails while linking, apparently due..
  1493. #12141: eudev package is missing "render" and "kvm" groups
  1494. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  1495. #12241: Permission denied while running "make"
  1496. 2019.02.5, Released September 2nd, 2019
  1497. Important / security related fixes.
  1498. Filesystems: Pass extra pax options to tar for binary
  1499. reproducibility.
  1500. Updated/fixed packages: apache, arm-trusted-firmware,
  1501. asterisk, atk, autofs, batctl, batman-adv, berkeleydb, brotli,
  1502. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1503. cryptopp, dahdi-linux, dahdi-tools, daq, dehydrated, dovecot,
  1504. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1505. git, glib-networking, glibc, gnupg2, gnutls, go,
  1506. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1507. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1508. libgit2, libgtk3, libmodplug, libnss, libpri, libshout,
  1509. libss7, libssh2, libvips, libxcb, linux-headers, mdadm,
  1510. mesa3d, metacity, mpg123, mosquitto, musl, nginx, openblas,
  1511. opencv3, openldap, openvmtools, pcmanfm, php, pigpio,
  1512. postgresql, prboom, proftpd, proj, python, python-django,
  1513. python-idna, python-numpy, python-urllib3, python3, qemu, qt5,
  1514. qt5base, qt5enginio, quagga, rygel, squid, subversion,
  1515. tcpreplay, unzip, vlc, vte, webkitgtk, weston, wireless-regdb,
  1516. xen, xfont_font-util, xlib_libICE, xlib_libXfont,
  1517. xlib_libXfont2, yad, zeromq
  1518. Issues resolved (http://bugs.uclibc.org):
  1519. #11741: pigpio does not build host-pigpio
  1520. #11876: automount using host mount/umount
  1521. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1522. #11921: dahdi fails to build
  1523. #11961: libpri build failure
  1524. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1525. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1526. #12126: vc4 has neon as hard dependency
  1527. 2019.02.4, Released July 10th, 2019
  1528. Important / security related fixes.
  1529. arch: x86: Fix typo breaking 'core-avx2' variant, add Westmere
  1530. variant.
  1531. linux: Workaround -Werror related build failure on powerpc,
  1532. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1533. support/testing: Emulate a machine with 256MB RAM to fix
  1534. issues with certain tests running out of memory.
  1535. test-pkg: Correct long option handling and clean output dir
  1536. after a successful build to save disk space.
  1537. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1538. passed before the standard exclusions so they are not ignored
  1539. by rsync when using override-srcdir.
  1540. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1541. partition is available before mounting.
  1542. Updated/fixed packages: barebox, bzip2, davfs2, dbus, dialog,
  1543. docker-cli, docker-engine, expat, faad2, ffmpeg, freeswitch,
  1544. gerbera, haveged, irssi, libcdadio, libgit2, libglib2,
  1545. libsecret, libvncserver, lmbench, logrotate, mariadb, meson,
  1546. mongoose, monit, mpd, openblas, php, postgresql, psplash,
  1547. python, python-django, python3, qt5base, samba4, taglib,
  1548. tvheadend, vlc, webkitgtk, xserver_xorg-server, znc
  1549. 2019.02.3, Released June 7th, 2019
  1550. Important / security related fixes.
  1551. Infra: pkg-config: Use a dedicated timestamp file rather than
  1552. .config as that gets touched by linux-4.19+, causing repeated
  1553. builds.
  1554. check-bin-arch: Also ignore /usr/lib/grub to support merged
  1555. /usr setups, similar to how /lib/grub is ignored.
  1556. gnuconfig/config.sub: Add C-SKY architecture support.
  1557. Updated/fixed packages: assimp, atftp, atop, botan, busybox,
  1558. ca-certificates, chocolate-doom, cjson, coreutils, cracklib,
  1559. ddrescue, dhcp, docker-cli, docker-containerd, docker-engine,
  1560. dosfstools, dovecot, dovecot-pigeonhole, dropbear, exim,
  1561. ffmpeg, flare-engine, gcc, gdb, gerbera, glibmm, go, gpsd,
  1562. gst-ffmpeg, gst1-plugins-bad, gst1-plugins-base, imagemagick,
  1563. intel-microcode, jasper, kf5-kcoreaddons, kismet, libcurl,
  1564. libglib2, libnss, libopenssl, libsigrok, libssh2, libupnp18,
  1565. linuxptp, luajit, lynx, matchbox-panel, mender,
  1566. netcat-openbsd, netsurf, nfs-utils, opus, orc, owfs,
  1567. pcsc-lite, php, popt, postgresql, python, python-cython,
  1568. python-django, python-ply, qt5enginio, rpm, runc, samba4,
  1569. sqlite, subversion, supertux, systemd, tslib, uclibc,
  1570. v4l2loopback, webkitgtk, woff2
  1571. Issues resolved (http://bugs.uclibc.org):
  1572. #11816: Only selected coreutils binaries are installed
  1573. #11841: grub-efi.cfg not used when building EFI disk image
  1574. #11911: systemd v240 memory leak in systemd-journald
  1575. 2019.02.2, Released April 29th, 2019
  1576. Important / security related fixes.
  1577. Only build host-lzip / host-xz when really needed by packages,
  1578. not just when not available on the build host.
  1579. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1580. forward {f,l,}chown calls to libc when running under fakeroot
  1581. to fix issues when building in restricted environments
  1582. (E.G. user namespace with bubblewrap).
  1583. Linux: Also build default make target to ensure extra files
  1584. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1585. built. Notice: This may mean that extra host utilities like
  1586. uboot-mkimage are needed.
  1587. Defconfigs: ASUS tinker and Amarula vyasa rk3822: Support
  1588. larger kernel images, Atmel SAM5D27, SAM5D2,3,4 xplained:
  1589. Increase rootfs size to fit utilities, Raspberry Pi 64bit:
  1590. Include overlays in sdcard image
  1591. Updated/fixed packages: android-tools, apache, bind, binutils,
  1592. busybox, civetweb, cjson, copas, davfs2, docker-cli,
  1593. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1594. freerdp, gerbera, ghostscript, git, gnutls, go, gst-omx,
  1595. gst1-plugins-base, gst1-plugins-ugly, haproxy, hostapd,
  1596. ipsec-tools, libfreefare, libfuse, libkrb5, libpng, libxml2,
  1597. libxslt, linknx, linux, linux-firmware, linux-tools, live555,
  1598. lldp, lrzsz, lynx, madplay, make, minicom, mongodb, msmtp,
  1599. musl, mutt, neon, netsnmp, numactl, opus, perl, php,
  1600. postgresql, pure-ftpd, python-urllib3, python3, qt5base,
  1601. rapidxml, rpm, rsyslog, ruby, runc, samba4, sane-backends,
  1602. softether, stunnel, sysklogd, syslinux, syslog-ng,
  1603. systemd-bootchart, thttpd, thrift, tiff, tor, tpm2-tools,
  1604. tpm2-tss, webkitgtk, yaffs2utils, wget, wpa_supplicant, wsapi,
  1605. xapp_xfd, xapp_xload, xlib_libXpm, xserver_xorg-server, xz,
  1606. znc
  1607. Issues resolved (http://bugs.uclibc.org):
  1608. #11756: package/syslinux: MBR's don't fit because of binutils..
  1609. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1610. 2019.02.1, Released March 29th, 2019
  1611. Important / security related fixes.
  1612. pkg-generic: Only tweak .la files needing it to ensure they
  1613. are not included in subsequent package file lists.
  1614. test-pkg: Generate a basic package config if none is
  1615. specified.
  1616. Updated/fixed packages: asterisk, avahi, bash, beecrypt,
  1617. binutils, busybox, clamav, cups, efl, eigen, fetchmail, file,
  1618. flashrom, fltk, gerbera, git, glibc, gnuradio, go,
  1619. gst-plugins-bad, intel-gmmlib, jq, kexec, kf5-modemmanager-qt,
  1620. leveldb, libcurl, libdrm, libftdi1, libglib2, libiio, libpcap,
  1621. libseccomp, libssh2, log4cplus, lvm2, mariadb, mender,
  1622. mongodb, mosquitto, musl, nodejs, ntp, openjpeg, owfs, php,
  1623. pure-ftpd, putty, python-aiojobs, qt5webkit, rdesktop, samba4,
  1624. sunxi-tools, supertux, swupdate, tpm2-abrmd, tpm2-tss,
  1625. wavemon, wireshark, vsftpd, xapp_xdm, xen,
  1626. xdriver_xf86-video-fbdev, xlib_libXdmcp
  1627. Issues resolved (http://bugs.uclibc.org):
  1628. #11716: Typo on website, saying latest release is 2018.2.11
  1629. 2019.02, released March 4th, 2019
  1630. Minor fixes.
  1631. Libressl support added for Qt 5.6 as a replacement for
  1632. openssl, as 5.6 is not compatible with openssl 1.1.x.
  1633. Updated/fixed packages: cutelyst, devmem2, gqrx,
  1634. gst-plugins-bad, libraw, libsoxr, qt5base, runc, systemd, tor
  1635. 2019.02-rc3, released March 1st, 2019
  1636. Fixes all over the tree.
  1637. Openssl support dropped from Qt 5.6, as it isn't compatible
  1638. with openssl 1.1.x.
  1639. Toolchain: GCC 8.x updated to 8.3.0, fixing a number of
  1640. issues.
  1641. Dependencies: Require CMake 3.8 or newer to fix compilation
  1642. issue with certain packages. If not available, host-cmake will
  1643. instead be built.
  1644. Printvars: Fix performance regression since 2018.02
  1645. Scanypi: Correctly handle underscores in python package names.
  1646. Updated/fixed packages: botan, clamav, cryptopp, i2pd,
  1647. ibrcommon, iproute2, libcpprestsdk, libssh, lua-curl,
  1648. luaexpat, qt5base, runc, stress-ng, syslinux, systemd,
  1649. upmpdcli, zbar
  1650. Issues resolved (http://bugs.uclibc.org):
  1651. #9966: util-linux-2.30/.stamp_built' failed
  1652. #11696: possible typo in board/pc/post-build.sh
  1653. 2019.02-rc2, released February 23th, 2019
  1654. Fixes all over the tree.
  1655. Removed zynq_zybo defconfig, as it hasn't seen any update
  1656. since it was added in 2016, and uses a U-Boot version not
  1657. compatible with openssl-1.1.x.
  1658. Linux: Ignore user supplied downloadable hashes, as no hash
  1659. checksums are available for those.
  1660. Updated/fixed packages: bind, cryptopp, docker-containerd,
  1661. dtc, efivar, gdb, imagemagick, ipmiutil, libcpprestsdk,
  1662. libcurl, libgpiod, libid3tag, libv4l, log4cplus, luvi,
  1663. madplay, mender, mosquitto, poco, postgresql, proftpd,
  1664. pulseaudio, python-django, qemu, qt5base, qwt, rabbitmq-c,
  1665. reaver, safeclip, stress-ng, swupdate, syslog-ng, systemd,
  1666. tor, unzip, xenomai
  1667. Issues resolved (http://bugs.uclibc.org):
  1668. #11501: compile sdl2 with enable wayland
  1669. #11681: .. unable to initialize decompress status for section..
  1670. 2019.02-rc1, released February 13th, 2019
  1671. Fixes all over the tree and new features.
  1672. Dependencies:
  1673. Require Python >= 2.7 as it is needed for E.G. building
  1674. libglib2.
  1675. Ensure GNU gzip is used for reproducible tarballs (instead of
  1676. pigz)
  1677. Infrastucture:
  1678. Ensure the PLATFORM and OS environment variables are not set,
  1679. as they cause build issues for some packages.
  1680. The package list infrastructure now correctly handles packages
  1681. installing files with old mtime.
  1682. Add a config option to force all optional host utilities to be
  1683. built, even if suitable versions are available on the build
  1684. machine.
  1685. graph-build-time: Also show time spent downloading
  1686. Download: fixes for SSH/SCP support
  1687. Ensure user provided permissions override permissions from
  1688. packages.
  1689. SDK: Fix handling of relative symlinks (targets starting with
  1690. '.' or '..')
  1691. BR2_SYSTEM_DEFAULT_PATH setting to customize the default path
  1692. for processes.
  1693. The custom skeleton logic will now populate the needed /bin,
  1694. /lib, /sbin directories/symlinks if not present. Merged /usr
  1695. can now be used with a custom skeleton.
  1696. Rootfs overlays can now override symbolic links from
  1697. packages. This was disabled to ensure the correct symbolic
  1698. links are present when merged /usr is used. Instead validate
  1699. that the rootfs overlays do not include invalid /bin, /sbin
  1700. and /lib entries.
  1701. The waf infrastructure now support the <pkg>_SUBDIR variable,
  1702. similar to the other package types.
  1703. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1704. Various improvements to the meson infrastructure.
  1705. Luarocks: A Buildroot addon has been added to automate
  1706. creating a Buildroot package from luarocks, similar to
  1707. scancpan and scanpypi.
  1708. scanpypi: protect against zip-slip vulnerability in zip/tar
  1709. handling
  1710. check-package: fix Python 3 support
  1711. get-developers: Fix behaviour when called from elsewhere than
  1712. the toplevel directory.
  1713. pkg-stats: Show latest upstream version of each package, based
  1714. on data from release-monitoring.org
  1715. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1716. a clean tree when ccache is enabled.
  1717. Default to sha256 password encoding, drop md5 support.
  1718. Architecture:
  1719. Support for RISC-V 32bit architecture, ARM A55, 75 and Saphira
  1720. variants, MIPS support for mips32r3, mips64r3 and Marvell
  1721. Octeon II/III variants.
  1722. Toolchain:
  1723. ARC toolchain 2018.09, ARM 8.2-2018.11, Codescape IMG/MTI MIPS
  1724. 2018.09-02, MUSL 1.1.21, GCC 6.5.0 / 7.4.0, GDB 8.2.1
  1725. Packages:
  1726. openssl: Bump to 1.1.1x series, bringing TLSv1.3 support and
  1727. long term support.
  1728. fftw: Split into fftw-{single,double,long-double,quad}
  1729. packages for the different data precision options.
  1730. libcurl: Now has explicit TLS backend selection options.
  1731. linux: Support building device tree blobs with the -@ option
  1732. for device tree overlays.
  1733. weston: The weston-imx i.MX variant is now used when
  1734. imx-gpu-viv is enabled
  1735. pkgconf: Update to 1.5.3, which brings support for
  1736. --define-prefix (used by GStreamer)
  1737. Add host-python3-setuptools package to handle host python
  1738. packages needing python3 with setuptools support.
  1739. New defconfigs: Aarch64 EFI, Orangepi one plus, Orangepi lite
  1740. 2, QEMU RISC-V 32bit virt, Rock64
  1741. New packages: brcm-patchram-plus, clinfo, cunit, docker-cli,
  1742. erlang-p1-eimp, exempi, fail2ban, fftw-double,
  1743. fftw-double-long, fftw-quad, fftw-single, gerbera, grpc,
  1744. gst1-shark, intel-gmmlib, iwd, kf5-kcoreaddons, libeastl,
  1745. libpackagekite, libtorrent-rasterbar, lua-std-debug,
  1746. lua-std-normalize, mini-snmpd, netsurf, pamtester, pcm-tools,
  1747. python-aiodns, python-aiohttp, python-aiohttp-jinja2,
  1748. python-aiohttp-remotes, python-aiohttp-security,
  1749. python-aiohttp-session, python-aiohttpd-sse, python-aiojobs,
  1750. python-cchardet, python-pycares, python-sentry-sdk,
  1751. python-wtforms, python3-setuptools, rcw, rtc-tools, shim,
  1752. utp_com, vmtouch, websocketpp
  1753. Removed packages: fftw, lua 5.2.x, luacrypto, perl-time-hires,
  1754. python-pyqt, qt, qtuio, tn5250
  1755. Issues resolved (http://bugs.uclibc.org):
  1756. #10851: Patch to handle numpad Enter key properly
  1757. #11066: x11r7 X11 S40xorg leads to a black screen on QEMU x86..
  1758. #11126: Bash Shell Programming using Buildroot
  1759. #11426: pps-tools bash dependency
  1760. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  1761. #11536: dt-utils building fails with glibc 2.28
  1762. #11546: open-vm-tools with glibc 2.28
  1763. #11566: Fix init script
  1764. #11576: Unable to start apache with event MPM on raspberry pi 3
  1765. #11591: [pkgconf 1.5.3] xserver OpenGL support is missing
  1766. #11606: libjpeg has no Config.in
  1767. #11616: 2018.02.09 fails to build libzlib with full RELRO..
  1768. #11656: Custom device tree and u-boot boot.scr not integrated..
  1769. #11666: Touchscreen with (Py)Qt5 should use tslib instead of evdev
  1770. 2018.11.4, Released March 28th, 2019
  1771. Important / security related fixes.
  1772. Updated/fixed packages: avahi, beecrypt, binutils, botan,
  1773. busybox, clamav, cups, devmem2, efl, fetchmail, file, fltk,
  1774. gcc, gdb, git, go, gst-plugins-bad, iproute2, jq,
  1775. kf5-modemmanager-qt, leveldb, libopenssl, libraw, libseccomp,
  1776. libsoxr, libssh2, mariadb, mosquitto, nodejs, ntp, openjpeg,
  1777. perl, php, putty, qt5webkit, rdesktop, runc, samba4, swupdate,
  1778. systemd, tor, vsftpd, wireshark, xapp_xdm, xen, xlib_libXdmcp
  1779. 2018.11.3, Released February 23th, 2019
  1780. Important / security related fixes.
  1781. Ensure the PLATFORM and OS environment variables are not set,
  1782. as they cause build issues for some packages.
  1783. The package list infrastructure now correctly handles packages
  1784. installing files with old mtime.
  1785. Linux: Skip hash checks for user supplied downloadable
  1786. patches, as no hash checksums are available for those.
  1787. scanpypi: protect against zip-slip vulnerability in zip/tar
  1788. handling
  1789. Download: fixes for SSH/SCP support
  1790. SDK: Fix handling of relative symlinks (targets starting with
  1791. '.' or '..')
  1792. Updated/fixed packages: bind, dhcpcd, docker-compose,
  1793. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1794. dtc, efivar, ghostscript, gnuradio, imagemagick, jpeg-turbo,
  1795. libarchive, libb64, libcurl, libgeotiff, libgpiod, libid3tag,
  1796. libupnp18, log4cplus, madplay, meson, mosquitto, openssh, php,
  1797. poco, postgresql, proftpd, pulseaudio, python, python-django,
  1798. python3, qt5base, reaver, runc, sg3_utils, sqlcipher,
  1799. swupdate, systemd, unzip, webkitgtk, xenomai
  1800. 2018.11.2, Released January 30th, 2019
  1801. Important / security related fixes.
  1802. Defconfigs: Fixes for imx6slevk, imx7dsabresd, imx8mqevk, Lego
  1803. EV3, QEMU AArch64-virt
  1804. Download: Fix scp download handling
  1805. check-package: fix Python 3 support
  1806. get-developers: Fix behaviour when called from elsewhere than
  1807. the toplevel directory.
  1808. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1809. a clean tree when ccache is enabled.
  1810. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1811. Updated/fixed packages: acpica, apache, apr, avrdude, cargo,
  1812. cc-tool, dash, dhcpdump, dmalloc, docker-containerd, efivar,
  1813. fwts, glibc, gnuchess, gnupg2, go, leveldb, libarchive,
  1814. libassuan, libftdi1, libgpg-error, libhttpparser, libkcapi,
  1815. libmad, libsndfile, libsquish, liburiparser, libwebsock,
  1816. libxml2, lighttpd, llvm, lm-sensors, lua-msgpack-native, lxc,
  1817. mariadb, mbedtls, meson, mosquitto, netatalk, nodejs, odhcp6c,
  1818. openresolv, openssh, pango, patchelf, php, python-django,
  1819. python-numpy, python-pyyaml, rauc, rp-pppoe, s6-networking,
  1820. samba4, sdl_sound, shairport-sync, sqlite, subversion,
  1821. sunxi-cedarx, swupdate, systemd, tcpreplay, tekui, tmp2-abrmd,
  1822. tpm2-tools, tpm2-tss, udisks, unixodbc, usb_modeswitch,
  1823. webkitgtk, wireshark, wolfssl, xapp_rgb, xenomai, xerces
  1824. Issues resolved (http://bugs.uclibc.org):
  1825. #11576: Unable to start apache with event MPM on raspberry pi 3
  1826. 2018.11.1, Released December 20th, 2018
  1827. Important / security related fixes.
  1828. defconfigs: Fixes for bananapi m2 ultra, ci20
  1829. Download wrapper: Fix for urlencode handling
  1830. Updated/fixed packages: asterisk, docker-compose,
  1831. docker-engine, dt-utils, gnutls, go, grub, libbsd, libcurl,
  1832. libpgpme, libiscsi, liblo, libmpd, libopenssl, liboping,
  1833. libpam-tacplus, libpjsip, linux-firmware, liquid-dsp,
  1834. lua-cqueue, luvi, lxc, lynx, nginx, nodejs, openzwave, php,
  1835. pps-tools, proftpd, prosody, sdl2_net, squashfs, swupdate,
  1836. uclibc, vtu, webkitgtk, wine, xen
  1837. New packages: docker-cli
  1838. Issues resolved (http://bugs.uclibc.org):
  1839. #11426: pps-tools bash dependency
  1840. #11536: dt-utils building fails with glibc 2.28
  1841. 2018.11, Released December 1st, 2018
  1842. Minor fixes.
  1843. Updated/fixed packages: c-ares, quagga, squid
  1844. 2018.11-rc3, released November 30th, 2018
  1845. Fixes all over the tree.
  1846. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1847. olinuxino lime legacy, Orangepi zero plus 2, PC, Riotboard.
  1848. graph-depends: Fix for package names starting with a non-alpha
  1849. character.
  1850. Updated/fixed packages: alsa-utils, botan, dante, domoticz,
  1851. dtc, freetype, gauche, gcc, gdb, ghostscript, glibc,
  1852. imx-usb-loader, libbsd, libid3tag, libkrb5, libmicrohttpd,
  1853. libopenssl, libsoxr, linux, motion, msgpack, mtd,
  1854. perl-net-ssleay, php, popt, python-numpy, qt5declarative,
  1855. samba4, shadowsocks-libev, stress-ng, systemd, usb_modeswitch,
  1856. webkitgtk, valgrind, weston, xfsprogs
  1857. 2018.11-rc2, released November 21th, 2018
  1858. Fixes all over the tree.
  1859. fs: Drop intermediate tarball from the filesystem handling to
  1860. fix an issue with xattrs handling related to fakeroot. Ensure
  1861. tarball target includes xattrs.
  1862. download: Fix confusion in git submodule handling if dl/ is a
  1863. symlink.
  1864. genrandconfig: Fix missing newline in BR2_WGET handling,
  1865. causing the following line to be ignored. This would affect
  1866. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1867. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1868. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1869. show-build-order: Also include the dependencies of
  1870. rootfs-common.
  1871. Fix a number of build issues in packages for the recently
  1872. merged RISC-V architecture support.
  1873. Updated/fixed packages: dt-utils, easydbus, elfutils,
  1874. flare-engine, flatcc, glibc, gstreamer, gstreamer1, imx-uuc,
  1875. libassuan, libcorrect, libiscsi, libkrb5, libmicrohttpd,
  1876. libnftnl, libnspr, libnss, libsemanage, libsigsegv, libv4l,
  1877. ltp-testsuite, luv, luvi, make, ncmpc, netplug, openocd,
  1878. prosody, qemu, rpm, sconeserver, shadowsocks-libev,
  1879. supertuxcart, syslinux, systemd, trace-cmd, uclibc,
  1880. uclibc-ng-test, vtun, webkitgtk, weston, wireshark, xen,
  1881. xlib_libfontenc
  1882. Issues resolved (http://bugs.uclibc.org):
  1883. #11086: download/git submodule breaks on symlinked dl folder
  1884. #11216: Capabilities not applied to filesystem
  1885. 2018.11-rc1, released November 9th, 2018
  1886. Fixes all over the tree and new features.
  1887. Architecture: RISC-V support (64bit) added.
  1888. Toolchain: Glibc bumped to 2.28. Fortran support for external
  1889. toolchains. ARM (Linaro) toolchains updated to 8.2-2018.08.
  1890. Hardening flags (RELRO) are now handled by the toolchain
  1891. wrapper instead of explicitly through CFLAGS/LDFLAGS, fixing a
  1892. number of issues.
  1893. Filesystems: Support for creating btrfs and f2fs filesystems
  1894. added.
  1895. Add a number of patches to fix build errors for host utilities
  1896. on modern distributions using glibc-2.28.
  1897. mkusers: Ensure existing group members are preserved when a
  1898. group is reprocessed.
  1899. printvars: Fix issue with exceeding shell command line length
  1900. limits for certain setups.
  1901. Workaround added for incompatibility issues between host-dtc
  1902. and older U-Boot and Linux kernel versions.
  1903. Detect and reject build paths containing '@', as this confuses
  1904. a number of packages, including GCC.
  1905. utils/diffconfig: Make it work for (non-Buildroot) config
  1906. files not using the BR2_ prefix.
  1907. New defconfigs: Amarula a64-relic, Bananapi m2 ultra, Embest
  1908. riotboard, Hardkernel Odroid XU-4, QEMU riscv64-virt.
  1909. olimex_a20_olinuxion_lime_mali is renamed to _legacy.
  1910. OpenCL infrastructure support added, similar to how OpenGL is
  1911. handled.
  1912. Linux-headers: Support for kernel headers from a custom
  1913. tarball / git repo added.
  1914. New packages: bird, bluez5_utils-headers, btrfs-progs,
  1915. checksec, davici, duktape, ell, haproxy, libclc, libcorrect,
  1916. libopencl, libopenresolv, nss-myhostname,
  1917. perl-apache-logformat-compiler, perl-appconfig,
  1918. perl-astro-suntime, perl-class-inspector, perl-class-load,
  1919. perl-class-method-modifiers, perl-class-std,
  1920. perl-class-std-fast, perl-cookie-baker, perl-data-dump,
  1921. perl-data-optlist, perl-data-uuid, perl-data-manip,
  1922. perl-dbd-mysql, perl-dbi, perl-devel-globaldestruction,
  1923. perl-devel-stacktrace, perl-devel-stacktrace-ashtml,
  1924. perl-device-serialport, perl-dist-checkconflicts,
  1925. perl-exporter-tiny, perl-file-sharedir, perl-file-slurp,
  1926. perl-filesys-notify-simple, perl-hash-multivalue,
  1927. perl-http-entity-parser, perl-http-headers-fast,
  1928. perl-http-multipartparser, perl-io-interface,
  1929. perl-io-socket-multicast, perl-json-maybexs, perl-mime-tools,
  1930. perl-module-implementation, perl-module-runtime, perl-moo,
  1931. perl-number-bytes-human, perl-package-stash, perl-params-util,
  1932. perl-plack, perl-posix-strftime-compiler, perl-role-tiny,
  1933. perl-streams-buffered, perl-sub-exporter-progressive,
  1934. perl-sub-install, perl-sub-quote, perl-sys-cpu,
  1935. perl-sys-meminfo, perl-sys-mmap, perl-time-parsedate,
  1936. perl-type-tiny, perl-www-form-urlencoded, perl-x10, pigpio,
  1937. python-async-timeout, python-falcon, python-fire,
  1938. python-mimeparse, python-multidict, python-passlib,
  1939. python-pigpio, python-pip, python-ply, python-py,
  1940. python-pyasn1, python-pyasn1-modules, python-pycryptodomex,
  1941. python-pyhamcrest, python-pysmi, python-scapy, python-semver,
  1942. python-serial-asyncio, python-typing, python-uvloop,
  1943. pythonwrapt, python-yarl, python-zeroconf, riscv-pk, sedutil,
  1944. spandsp, tini, waffle, xapian
  1945. Removed packages: bootutils, dsp-tools, expedite, gst-dsp,
  1946. xloader
  1947. Issues resolved (http://bugs.uclibc.org):
  1948. #11116: Buildroot should set PYTHON_EGG_CACHE instead of writing ..
  1949. #11156: In python3 module 'socket' has no attribute 'AF_BLUETOOTH'
  1950. #11166: Erlang bad argument on valid uint64 when crosscompiled on..
  1951. #11206: zlib: fails to build with Linaro toolchain, BR2_RELRO_FULL..
  1952. #11241: ACPID shouldn't depend on BR2_x86_64 || BR2_i386
  1953. #11251: Util scanpypi failes when package change - to _ in tar file
  1954. #11266: qt5base-5.11.1 does not compile with musl, complains about..
  1955. #11286: python-rpi-gpio only should depend on BR2_arm || BR2_aarch64
  1956. #11321: Latest master fails to build readline with RELRO FULL
  1957. #11326: sysvinit fails to build in latest GIT master
  1958. #11331: Internal application no longer builds with latest GIT master
  1959. #11336: nfs-utils fails to build in latest GIT master
  1960. #11351: build root-2018-08, linaro aarch64 compile error
  1961. #11376: mdmon binary missing
  1962. #11391: Valgind availability on ARM
  1963. #11396: uboot environment image checksum invalid if target is big endian
  1964. #11421: GCC error message for ARM Cortex-A9/ARM.V7
  1965. #11451: Can't find libmpfr.so.4 when using external toolchain on ubuntu..
  1966. #11481: Docs: Is external.desc required?
  1967. 2018.08.4, Released December 20th, 2018
  1968. Important / security related fixes.
  1969. Defconfigs: Fixes for ci20, orangepi zero plus 2
  1970. Download wrapper: Fix for urlencode handling
  1971. Updated/fixed packages: c-ares, dante, docker-compose,
  1972. domoticz, freetype, ghostscript, gnutls, libcurl, libgpgme,
  1973. libid3tag, libiscsi, libmpd, libopenssl, liboping, libpjsip,
  1974. linux-firmware, liquid-dsp, luvi, lynx, msgpack, nginx,
  1975. nodejs, php, popt, pps-tools, prosody, python-numpy,
  1976. python-requests, samba4, sdl2_net, squashfs, swupdate,
  1977. systemd, uclibc, vte, webkitgtk, wine, xfsprogs
  1978. Issues resolved (http://bugs.uclibc.org):
  1979. #11426: pps-tools bash dependency
  1980. 2018.08.3, Released November 26th, 2018
  1981. Important / security related fixes.
  1982. fs: Drop intermediate tarball from the filesystem handling to
  1983. fix an issue with xattrs handling related to fakeroot. Ensure
  1984. tarball target includes xattrs.
  1985. download: Fix confusion in git submodule handling if dl/ is a
  1986. symlink.
  1987. toolchain: Only allow enabling stack protection on
  1988. architectures with control flow integrity (CFI) support. Only
  1989. allow FORTIFY_SOURCE support on gcc >= 6.
  1990. genrandconfig: Fix missing newline in BR2_WGET handling,
  1991. causing the following line to be ignored. This would affect
  1992. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1993. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1994. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1995. show-build-order: Also include the dependencies of
  1996. rootfs-common.
  1997. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1998. olinuxino lime legacy, Orangepi zero plus 2.
  1999. graph-depends: Fix for package names starting with a non-alpha
  2000. character.
  2001. Updated/fixed packages: attr, audit, bind, brotli, busybox,
  2002. dtc, easydbus, elfutils, flare-engine, flatcc, gauche, gcc,
  2003. giflib, gpsd, lcdproc, libcurl, libiscsi, libkcapi, libnfs,
  2004. libnspr, libnss, libsemanage, liburiparser, lighttpd,
  2005. lua-curl, mariadb, mmc, mosquitto, mysql, ncmpc, neardal,
  2006. netplug, network-manager, nfs-utils, nginx, openocd, openswan,
  2007. p11-kit, postgresql, prosody, qemu, qt, rpm, ruby, samba4,
  2008. squid, supertuxkart, systemd, tar, trace-cmd, traceroute,
  2009. twolame, uclibc, usb_modeswitch, vtun, webkitgtk, weston,
  2010. xdriver_xf86-video-geode, xlib_libfontenc, xserver_xorg-server
  2011. Issues resolved (http://bugs.uclibc.org):
  2012. #11086: download/git submodule breaks on symlinked dl folder
  2013. #11481: Docs: Is external.desc required?
  2014. 2018.08.2, Released October 25th, 2018
  2015. Important / security related fixes.
  2016. Workaround added for incompatibility issues between host-dtc
  2017. and older U-Boot and Linux kernel versions.
  2018. Detect and reject build paths containing '@', as this confuses
  2019. a number of packages, including GCC.
  2020. utils/get-developers: Add -e option for use with git
  2021. send-email.
  2022. utils/diffconfig: Make it work for (non-Buildroot) config
  2023. files not using the BR2_ prefix.
  2024. u-boot: Fix for environment image handling on big endian
  2025. systems.
  2026. Updated/fixed packages: binutils, ca-certificates,
  2027. cups-filters, dtc, erlang, file, freetype, gcc, git, gvfs,
  2028. jasper, leveldb, libarchive, libssh, live555, ljlinenoise,
  2029. mariadb, mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils,
  2030. poco, psmisc, ptpd2, python-enum34, qemu, qt, qt5base,
  2031. setools, spice, spice-protocol, tinc, ustr, wireshark,
  2032. Issues resolved (http://bugs.uclibc.org):
  2033. #11396: uboot environment image checksum invalid if target is big endian
  2034. 2018.08.1, Released October 7th, 2018
  2035. Important / security related fixes.
  2036. Add a number of patches to fix build errors for host utilities
  2037. on modern distributions using glibc-2.28.
  2038. mkusers: Ensure existing group members are preserved when a
  2039. group is reprocessed.
  2040. printvars: Fix issue with exceeding shell command line length
  2041. limits for certain setups.
  2042. Updated/fixed packages: acpid, android-tools, apache,
  2043. arp-scan, bandwidthd, bind, brltty, clamav, connman, cppcms,
  2044. domoticz, dtc, fio, gcc, gdb, ghostscript, gnupg, httpping,
  2045. igmpproxy, imlib2, ipsec-tools, libesmtp, libnfs, libxslt,
  2046. links, lua, mosquitto, nilfs-utils, ocrad, parted, php,
  2047. python-django, screen, shairport-sync, strongswan,
  2048. vboot-utils, webkitgtk, wireguard, x265 xen, xlib_libXdmcp,
  2049. xlib_libXfont, xlib_libXft, xlib_libxshmfence,
  2050. xutil_makedepend, zeromq
  2051. 2018.08, Released September 6th, 2018
  2052. Minor fixes.
  2053. Known issues:
  2054. - Glibc 2.28 on the build host breaks compilation of a number
  2055. of host packages. 2018.08 contains fixes for some of these
  2056. packages, but not all. Consider building on hosts (or in
  2057. containers) using older Glibc versions.
  2058. - host-dtc 1.4.7 breaks compilation of older U-Boot and Linux
  2059. kernel configurations using FDT/DTC. Consider updating the
  2060. Linux kernel to >= 4.17 and U-Boot to >= 2018.07 or
  2061. backporting commit 9130ba8846 (scripts/dtc: Update to
  2062. upstream version v1.4.6-9-gaadd0b65c987) for the Linux
  2063. kernel / commit db405d1980 for U-Boot.
  2064. Alternatively revert commit 7b929ddcf0 (dtc: bump version to
  2065. 1.4.7) and ensure your build host does not have the libfdt
  2066. development headers installed.
  2067. Updated/fixed packages: busybox, chipmunk, cutelyst,
  2068. domoticz, gcc, imagemagick, lcms2, libcurl, mediastreamer,
  2069. moarvm, php, qt, qt5virtualkeyboard, qt5webengine, screen,
  2070. sdl2, squashfs, uboot, xen
  2071. Issues resolved (http://bugs.uclibc.org):
  2072. #11261: ccache using wrong cached objects
  2073. #11276: Understanding the patch for kernel-4.9 and other..
  2074. 2018.08-rc3, Released August 31th, 2018
  2075. Fixes all over the tree.
  2076. linux: additional improvements to the flex / bison dependency
  2077. handling, use system provided variant if available. Ensure
  2078. toolchain is available when configuring for 4.18+ support.
  2079. Download: Fix handling of primary sites using file://
  2080. Toolchain: Correct external toolchain musl detection for
  2081. static toolchains.
  2082. Updated/fixed packages: aircrack-ng, bison, brltty, busybox,
  2083. cutelyst, dropbear, gr-osmosdr, i2c-tools, json-c, libconfuse,
  2084. libkcapi, libsoup, libssh, liburiparser, mbedtls, mender,
  2085. mesa3d, minicom, mjpegtools, mutt, openpowerlink, openssh,
  2086. oracle-mysql, php, postgresql, pv, qt5base, qt5quickcontrols,
  2087. rauc, shairport-sync, systemd, xlib_libX11, zeromq,
  2088. Issues resolved (http://bugs.uclibc.org):
  2089. #11091: BR2_PRIMARY_SITE doesn't work (wget is selected...
  2090. #11141: WF111 package no longer available
  2091. #11211: Internal compiler error: Killed (program cc1plus)..
  2092. #11236: util-linux fails to build on Travis CI when python..
  2093. #11246: Glibc 2.28 - fails to build host-bison and host-m4
  2094. #11256: Add python-falcon and python-mimeparse packages
  2095. 2018.08-rc2, Released August 20th, 2018
  2096. Fixes all over the tree.
  2097. pkg-kconfig: Support dependencies needed to run the
  2098. configurator, E.G. recent Linux kernel versions needing flex
  2099. and bison.
  2100. Defconfigs: ARM Juno: Bump ATF to fix a build
  2101. issue. Raspberrypi2: Bump rootfs size. Snps_archs38_vdk:
  2102. Correct /etc/inittab. Technologic ts7680: Correct genimage
  2103. configuration. Orange PI PC / Zero, Sheevaplug: Bump U-boot to
  2104. 2018.07 to fix build issue. Ensure host-openssl is pulled in
  2105. for kernel builds where needed.
  2106. Updated/fixed packages: aircrack-ng, bind, boost,
  2107. boot-wrapper-aarch64, bzip2, busybox, chrony, cryptsetup,
  2108. dahdi-tools, dbus, domoticz, eigen, ipsec-tools, libarchive,
  2109. libfuse, libgit2, libopenssl, libselinux, lighttpd, lvm2, m4,
  2110. makedevs, mariadb, mesa3d-headers, mono, ncmpc, ncurses,
  2111. nodejs, php, python-django, python-pyqt5, qt5base,
  2112. qt5serialbus, ruby, samba4, uboot-tools, uclibc, vlc,
  2113. waylandpp, wireless_tools, wireshark, wpa_supplicant, mtd,
  2114. xdriver_xf86-video-ati, xserver_xorg-server
  2115. Issues resolved (http://bugs.uclibc.org):
  2116. #10781: cryptsetup luksOpen container_file container causes..
  2117. #10996: bogus musl ARM toolchain
  2118. #11191: xattr and check-package issue
  2119. 2018.08-rc1, Released August 5th, 2018
  2120. Toolchain:
  2121. - add support for gcc 8.x, switch to gcc 7.x as the default
  2122. version
  2123. - add support for gdb 8.1, switch to gdb 8.0 as the default
  2124. and remove gdb 7.10/7.11
  2125. - add support for binutils 2.31
  2126. - NIOSII CodeSourcery toolchain updated
  2127. - Linaro AArch64 BE toolchain added, and other Linaro
  2128. toolchains updated
  2129. - Synopsys ARC pre-built toolchain updated
  2130. Architecture: add support for ARM Cortex-M7
  2131. Major updates:
  2132. - systemd bumped to 239
  2133. - Qt5 bumped to 5.11.1
  2134. - Rust bumped to 1.27
  2135. - GStreamer stack bumped to 1.14.2
  2136. - X.org server bumped to 1.20, and all X.org proto packages
  2137. replaced by the single xorgproto package
  2138. - i.MX6 support packages bumped to 6.2.4
  2139. - i.MX Vivante graphics version bumped to 6.2.4.p1.2,
  2140. adding support for Wayland and i.MX8MQ platforms
  2141. Linux: bumped to 4.17 by default.
  2142. Infrastructure: new package infrastructure added for packages
  2143. using the Meson build system
  2144. New packages: at-spi2-atk, at-spi2-core, capnproto, cmocka,
  2145. corkscrew, cutelyst, davfs2, flatcc, libidn2, libgit2,
  2146. libopusenc, mender, nghttp2, perl-convert-asn1, perl-crypt-blowfish,
  2147. perl-crypt-cbc, perl-digest-md5, perl-mime-base64-urlsafe,
  2148. perl-mojolicious-plugin-authentication, perl-net-ping,
  2149. perl-net-snmp, perl-net-ssh2, perl-net-telnet, pigz,
  2150. python-reentry, python-request-id, python-validators,
  2151. python-webob, shadowsocks-libev, speexdsp, xorgproto, wampcc
  2152. New defconfigs: NXP i.MX7D SDB, Boundary Devices Nitrogen 8M,
  2153. Olimex A10 OLinuxino, ZynqMP ZCU106
  2154. Removed packages: all xproto_* have been removed and replaced
  2155. by xorgproto
  2156. Issues resolved (http://bugs.uclibc.org):
  2157. #9411: MUSL build with RT Error relocating /lib/libgcc_s.so.1:
  2158. __cpu_indicator_init: symbol not found
  2159. #9921: lockfile module within python-daemon not available
  2160. #10341: gdb install of py files when using buildroot toolchain
  2161. includes build path
  2162. #10661: /etc/init.d/S29netplug starts multiple instances of netplugd
  2163. #10751: Missing dependency in pulseaudio package
  2164. #10811: kodi-17.6-Krypton does not compile for freescale_* devices
  2165. #10856: openblas on qemu_x86_64_defconfig fails with
  2166. "sgemm_kernel.o: No such file or directory"
  2167. #11056: Compiling a file that uses libdrm headers fails with:
  2168. fatal error: drm.h: No such file or directory
  2169. #11061: support/download: git version=master broken
  2170. #11071: Building postgresql package on Debian 9.4 x64 for armel target fails
  2171. #11076: Docker containerd installed to incorrect path
  2172. #11101: host-patchelf Endian Issue with relative RPATH
  2173. #11111: raspberry pi 3 b+: missing BSP for 64-bit kernel
  2174. #11121: statfs call corrupts memory struct statfs too small
  2175. #11181: Switching toolchain does not work
  2176. 2018.05.3, Released October 6th, 2018
  2177. Important / security related fixes.
  2178. Add a number of patches to fix build errors for host utilities
  2179. on modern distributions using glibc-2.28.
  2180. mkusers: Ensure existing group members are preserved when a
  2181. group is reprocessed.
  2182. printvars: Fix issue with exceeding shell command line length
  2183. limits for certain setups.
  2184. Updated/fixed packages: acpid, android-tools, apache,
  2185. arp-scan, bandwidthd, bind, bison, brltty, chipmunk, connman,
  2186. cppcms, fio, gcc, ghostscript, gnupg, httping, igmpproxy,
  2187. imagemagick, imlib2, ipsec-tools, lcm2, libcurl, libesmtp,
  2188. libnfs, libssh, libxslt, links, mediastreamer, minicom,
  2189. moarvm, nilfs-utils, ocrad, parted, php, postgresql, pv,
  2190. python-django, qt, qt5quickcontrols, qt5webengine, screen,
  2191. sdl2, shairport-sync, squashfs, strongswan, vboot-utils,
  2192. webkitgtk, wireguard, x265, xen, xlib_libXfont, xlib_libXft,
  2193. xlib_libxshmfence, zeromq
  2194. 2018.05.2, Released August 28th, 2018
  2195. Important / security related fixes.
  2196. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2197. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2198. issue.
  2199. Updated/fixed packages: acl, attr, apache, bind,
  2200. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2201. dahdi-tools, dmidecode, dropbear, eigen, ffmpeg, gawk, gcc,
  2202. ghostscript, gnutls, imx-gpu-viv, ipsec-tools, libarchive,
  2203. libfuse, libglib2, libopenssl, libselinux, libsoup, lighttpd,
  2204. linuxptp, lttng-modules, lttng-tools, lua-flu, lvm2, m4,
  2205. makedevs, mariadb, mbedtls, mesa3d-heders, mtd, ncurses,
  2206. nodejs, openssh, php, python-django, rauc, ruby, samba4,
  2207. stress-ng, ti-utils, uboot-tools, uclibc, vim, waylandpp,
  2208. wireless_tools, wireless-regdb, wireshark, wpa_supplicant,
  2209. xorriso, znc
  2210. Issues resolved (http://bugs.uclibc.org):
  2211. #10781: cryptsetup luksOpen container_file container causes..
  2212. #10986: Installing package attr when already supplied by..
  2213. #11191: xattr and check-package issue
  2214. 2018.05.1, Released July 20th, 2018
  2215. Important / security related fixes.
  2216. U-Boot: Ensure host version of ncurses is picked up and not
  2217. host-ncurses built by buildroot, as that otherwise causes
  2218. widechar/non-widechar conflicts and corrupted menuconfig
  2219. menus.
  2220. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2221. Toolchain: ARC tools updated to arc-2018.03.
  2222. pkg-stats: Fix python 3.x compatibility.
  2223. dl-wrapper: Fix support for URIs containing '+', fix
  2224. no-check-hash for inferred site method.
  2225. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2226. Support ethernet on Turbot variant.
  2227. Updated/fixed packages: audit, bind, btrfs-progs, cifs-utils,
  2228. clamav, collectd, coreutils, docker-containerd, dos2unix,
  2229. edid-decode, file, gcc, gdb, gnupg, gnupg2, heimdal, hidapi,
  2230. imagemagick, libcurl, libgcrypt, libglib2, liblogging,
  2231. libostree, libressl, libsoup, libv4l, libvncserver, libvorbis,
  2232. libwebsockets, libxslt, lm-sensors, mariadb, mpg123, ncurses,
  2233. network-manager, nodejs, patchelf, perl, php-amqp, pinentry,
  2234. pixiewps, qpdf, qt53d, qt5base, qt5charts, qt5script, redis,
  2235. systemd, triggerhappy, uboot, wireguard, wireless-regdb,
  2236. wireshark
  2237. 2018.05, Released June 1st, 2018
  2238. Minor fixes.
  2239. Download: Work around for hanging connections for packages
  2240. from CVS, by adding a 10 minute max timeout.
  2241. Updated/fixed packages: binutils, clang, dash, expect, git,
  2242. glibc, jpeg-turbo, libjpeg, log4cplus, openvmtools, xen,
  2243. Issues resolved (http://bugs.uclibc.org):
  2244. #11051: runtime issue on STM32 with usage of binutils 2.29.x
  2245. 2018.05-rc3, Released May 28th, 2018
  2246. Fixes all over the tree.
  2247. Toolchain: ARC tools updated to arc-2018.03-rc2.
  2248. Fs: Ensure hard links in TARGET_DIR are correctly copied for
  2249. filesystem input. With the recent changes to the file system
  2250. generation logic, hard links were "expanded" in file system
  2251. images leading to bloated rootfs images for setups with hard
  2252. links.
  2253. Infrastructure: Error out for packages using the 'local'
  2254. method but forgetting to specify <pkg>_SITE.
  2255. Build rpcgen for the host when needed to support distributions
  2256. no longer shipping rpcgen with glibc (E.G. recent Fedora).
  2257. Updated/fixed packages: autofs, bash-completion, binutils,
  2258. busybox, cjson, elf2flt, libcoap, libcurl, libtirpc, lrzsz,
  2259. poppler, procps-ng, qt-webkit-kiosk, quota, samba4, xfsprogs
  2260. Issues resolved (http://bugs.uclibc.org):
  2261. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file..
  2262. #11036: C compiler cannot create executables
  2263. #11046: Git package binaries are ~180MB (compared to ~20MB in..
  2264. 2018.05-rc2, Released May 22nd, 2018
  2265. Fixes all over the tree.
  2266. Dependencies: Check that the current working directory (.)
  2267. isn't listed in PATH as that causes various build issues.
  2268. Manual: Clarify that git branch names may not be used as
  2269. version identifiers. This has never been supported, but was
  2270. kind of working (with some limitations) before the git
  2271. download rework - Now it does not work at all.
  2272. Linux: Ensure host version of ncurses is picked up and not
  2273. host-ncurses built by buildroot, as that otherwise causes
  2274. widechar/non-widechar conflicts and corrupted menuconfig
  2275. menus.
  2276. Packages: Renamed a number of package options not prefixed
  2277. with BR2_PACKAGE_<pkg> for consstency.
  2278. Download infrastructure: Fix file:// protocol handling after
  2279. download rework.
  2280. Updated/fixed packages: acl, apr-util, asterisk, attr,
  2281. bluez5_utils, cifs-utils, clamav, clang, cups-filters,
  2282. dahdi-linux, exim, faketime, gdb, go, gst1-plugins-bad,
  2283. imx-mkimage, ipsec-tools, jamvm, janus-gateway,
  2284. jquery-ui-themes, libcap, libcurl, libftdi, libkcapi, libkrb5,
  2285. libmediaart, libmodbus, libmodplug, libmpd,
  2286. libnetfilter_cthelper, libnetfilter_cttimeout, libnfc,
  2287. libnfnetlink, libnss, liboauth, libogg, libosip2,
  2288. libpam-radius-auth, libpcap, libpciaccess, llvm, log4cplus,
  2289. ltrace, lynx, mbedtls, modem-manager, nfs-utils,
  2290. python-cython, python-websockets, qt5cinex, qt5wayland, rauc,
  2291. snort, strace, ti-sgx-km, transmission, wavpack, wget, woff2,
  2292. xen, zmqpp, znc, zstd
  2293. Issues resolved (http://bugs.uclibc.org):
  2294. #10986: Installing package attr when already supplied by...
  2295. #11011: BUildroot for Raspberry Pi 2
  2296. #11016: Wrong compiler used for external user host packages
  2297. 2018.05-rc1, Released May 9th, 2018
  2298. Toolchain: glibc bumped to 2.27, musl bumped to 1.1.19,
  2299. uClibc-ng 1.0.30, Linux kernel headers bumped to 4.16.x.
  2300. Architecture: support for the Blackfin architecture has been
  2301. removed, as it was removed from Linux upstream, poorly
  2302. maintained in binutils/gdb, and abandoned by Analog Devices.
  2303. Numerous packages updated to have hashes for their license
  2304. files.
  2305. Systemd can now be built with uClibc toolchains.
  2306. Linux: addition of BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF and
  2307. BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL to support building Linux
  2308. kernel configurations that need libelf on the host or openssl
  2309. on the host.
  2310. Coding style:
  2311. - all Python scripts are now verified with flake8
  2312. - check-package extended to check all Config.in and .mk files
  2313. in tree, not only the ones in package/
  2314. Infrastructure:
  2315. - The download infrastructure has seen a major overhaul, with
  2316. the main visible new feature being Git caching: a package
  2317. fetched from Git no longer needs to be re-cloned entirely
  2318. everytime its version is changed. Anoter visible change is
  2319. that the download folder now has subfolders per package. See
  2320. http://lists.busybox.net/pipermail/buildroot/2018-April/217923.html
  2321. for more details about those changes.
  2322. - The logic that generates the root filesystem images has been
  2323. reworked, with the main goal of allowing several filesystem
  2324. images to be produced in parallel, also a requirement for
  2325. top-level parallel build. Now, a .tar filesystem image is
  2326. always created, and re-extracted in a private directory to
  2327. create each format-specific filesystem image.
  2328. - A new package infrastructure was introduced for Go-based
  2329. packages: golang-package.
  2330. - Dependencies on extraction tools are now handled as proper
  2331. per-package dependencies, using
  2332. <pkg>_EXTRACT_DEPENDENCIES. Beyond a cleanup, this is also a
  2333. preparation step for top-level parallel build support.
  2334. - When a file being downloaded is part of a package with a
  2335. .hash file, but there is no hash listed for this file, the
  2336. file is now preserved in the download directory rather than
  2337. removed. This helps when updating a package, as it gives the
  2338. ability to easily calculate the hash of the file.
  2339. - Addition of '<pkg>-show-recursive-depends' and
  2340. '<pkg>-show-recursive-rdepends' make targets, to
  2341. respectively display the recursive list of dependencies and
  2342. the recursive list of reverse dependencies of a given
  2343. package.
  2344. - The /etc/shells file is now automatically generated with the
  2345. list of shell programs installed on the system.
  2346. - Addition of -Ofast optimization level as an available
  2347. option.
  2348. Major updates: Go updated to 1.10, Erlang bumped to 20.3, Qt5
  2349. bumped to 5.10.1.
  2350. New packages: 18xx-ti-utils, abootimg, bluez-alsa, brotli,
  2351. chipmunk, clang, docker-compose, docker-proxy, flare-engine,
  2352. flare-game, gst1-interpipe, gstreamer1-editing-services,
  2353. hackrf, i2pd, imx-alsa-plugins, imx-mkimage, libcdio-paranoia,
  2354. libkrb5, llvm, pixiewps, python-backports-ssl-match-hostname,
  2355. python-cached-property, python-cython, python-docker,
  2356. python-dockerpty, python-docker-pycreds,
  2357. python-flask-sqlalchemy, python-functools32, python-influxdb,
  2358. python-json-models, python-libusb1, python-networkx,
  2359. python-psycopg2, python-pymodbus, python-sqlalchemy,
  2360. python-subprocess32, python-texttable,
  2361. python-websocket-client, python-yieldfrom, quotatool, reaver,
  2362. snort, sunxi-mali-mainline, sunxi-mali-mainline-driver, tk,
  2363. tpm2-abrmd, tpm2-tools, tpm2-tss, udftools, vte, woff2.
  2364. New defconfigs: ARC HS Development Kit, Arcturus ucls1012a,
  2365. Freescale i.MX6UL EVK (with vendor kernel), Freescale i.MX6
  2366. SoloLite EVK (with vendor kernel), Freescale i.MX31 3Stack,
  2367. Freescale i.MX8Q EVK Freescale p1025twr, Freescale t1040d4rdb,
  2368. Qemu PPC64 E5500, SolidRun ClearFog Base, Tinker RK3288, Vyasa
  2369. RK3288,
  2370. Removed packages: iqvlinux, kodi-adsp-*, mplayer
  2371. Removed defconfigs: ci40, firefly_rk3288,
  2372. freescale_p1010rdb_pa, freescale_mpc8315erdb, riotboard,
  2373. teliv_evk_pro3
  2374. Issues resolved (http://bugs.uclibc.org):
  2375. #10151: toolchain eclipse register : fails with a custom
  2376. BR2_HOST_DIR
  2377. #10511: Packages get downloaded uncompressed with wget
  2378. #10531: QtWebengine doesn't build if the host hasn't a 32 bits
  2379. C++ compiler working
  2380. #10846: error in compiling gnutls
  2381. #10886: openssl-1.0.2n fails to build
  2382. #10896: /bin/sh not in /etc/shells
  2383. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is
  2384. enabled
  2385. 2018.02.12, Released March 29th, 2019
  2386. Important / security related fixes.
  2387. Updated/fixed packages: avahi, beecrypt, busybox, clamav,
  2388. cups, devmem2, fetchmail, file, fltk, gcc, gdb, git, jq,
  2389. leveldb, libopenssl, libraw, libseccomp, libssh2,
  2390. libunistring, mariadb, mosquitto, nodejs, ntp, openjpeg, perl,
  2391. php, putty, qt5webkit, rdesktop, systemd, wireshark, vsftpd,
  2392. xapp_xdm, xlib_libXdmcp
  2393. 2018.02.11, Released February 23th, 2019
  2394. Important / security related fixes.
  2395. Ensure the PLATFORM and OS environment variables are not set,
  2396. as they cause build issues for some packages.
  2397. The package list infrastructure now correctly handles packages
  2398. installing files with old mtime.
  2399. Linux: Skip hash checks for user supplied downloadable
  2400. patches, as no hash checksums are available for those.
  2401. scanpypi: protect against zip-slip vulnerability in zip/tar
  2402. handling
  2403. Updated/fixed packages: bind, dhcpcd, dovecot, ghostscript,
  2404. gnuradio, imagemagick, jpeg-turbo, libarchive, libb64,
  2405. libcurl, libid3tag, madplay, mosquitto, openssh, php,
  2406. postgresql, proftpd, python, python-django, python3, qt5base,
  2407. sqlcipher, swupdate, systemd, unzip, webkitgtk
  2408. 2018.02.10, Released January 31th, 2019
  2409. Important / security related fixes.
  2410. Defconfigs: Fixes for Lego EV3, QEMU AArch64-virt
  2411. check-package: fix Python 3 support
  2412. get-developers: Fix behaviour when called from elsewhere than
  2413. the toplevel directory.
  2414. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  2415. Updated/fixed packages: acpica, apache, apr, asterisk,
  2416. avrdude, cargo, cc-tool, dash, dhcpdump, dmalloc, gnuchess,
  2417. gnupg2, leveldb, libarchive, libassuan, libftdi1,
  2418. libgpg-error, libhttpparser, libmad, libsndfile, libsquish,
  2419. liburiparser, libwebsock, libxml2, lighttpd, lm-sensors,
  2420. lua-msgpack-native, mbedtls, mosquitto, netatalk, nodejs,
  2421. openssh, pango, patchelf, php, python-django, python-pyyaml,
  2422. rauc, rp-pppoe, s6-networking, samba4, sdl_sound,
  2423. shairport-sync, sqlite, subversion, sunxi-cedarx, tcpreplay,
  2424. tekui, usb_modeswitch, webkitgtk, wireshark, wolfssl,
  2425. xapp_rgb, xenomai, xerces
  2426. Issues resolved (http://bugs.uclibc.org):
  2427. #11576: Unable to start apache with event MPM on raspberry pi 3
  2428. 2018.02.9, Released December 20th, 2018
  2429. Important / security related fixes.
  2430. defconfigs: Fixes for ci20
  2431. Updated/fixed packages: c-ares, dante, freetype, ghostscript,
  2432. glibc, gnutls, go, libcurl, libgpgme, libid3tag, libiscsi,
  2433. libmpd, libopenssl, libpjsip, linux, liquid-dsp, luvi, lynx,
  2434. msgpack, nginx, nodejs, php, popt, pps-tools, python-numpy,
  2435. python-requests, samba4, sdl2_net, squashfs, swupdate, uclibc,
  2436. wine, webkitgtk, xfsprogs
  2437. Issues resolved (http://bugs.uclibc.org):
  2438. #11426: pps-tools bash dependency
  2439. 2018.02.8, Released November 26th, 2018
  2440. Important / security related fixes.
  2441. fs: Drop intermediate tarball from the filesystem handling to
  2442. fix an issue with xattrs handling related to fakeroot. Ensure
  2443. tarball target includes xattrs.
  2444. download: Fix confusion in git submodule handling if dl/ is a
  2445. symlink.
  2446. toolchain: Only allow enabling stack protection on
  2447. architectures with control flow integrity (CFI) support. Only
  2448. allow FORTIFY_SOURCE support on gcc >= 6.
  2449. genrandconfig: Fix missing newline in BR2_WGET handling,
  2450. causing the following line to be ignored. This would affect
  2451. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  2452. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  2453. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  2454. show-build-order: Also include the dependencies of
  2455. rootfs-common.
  2456. Defconfigs: Fixes for Armadeus APF27, imx6sabre.
  2457. graph-depends: Fix for package names starting with a non-alpha
  2458. character.
  2459. Updated/fixed packages: attr, audit, bind, brotli, easydbus,
  2460. elfutils, gauche, gcc, giflib, gpsd, lcdproc, libcurl,
  2461. libiscsi, libnfs, libnspr, libnss, libkcapi, libsemanage,
  2462. liburiparser, lighttpd, linux, lua-curl, mariadb, mmc-utils,
  2463. mosquitto, mysql, neardal, netplug, network-manager,
  2464. nfs-utils, nginx, openocd, openswan, p11-kit, postgresql,
  2465. prosody, qemu, qt, rpm, ruby, samba4, squid, supertuxkart,
  2466. systemd, tar, trace-cmd, traceroute, twolame, uclibc,
  2467. usb_modeswitch, vtun, webkitgtk, xdriver_xf86-video-geode,
  2468. xlib_libfontenc, xproto_inputproto, xserver_xorg-server
  2469. Issues resolved (http://bugs.uclibc.org):
  2470. #11086: download/git submodule breaks on symlinked dl folder
  2471. #11251: Util scanpypi failes when package change - to _ in..
  2472. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  2473. #11481: Docs: Is external.desc required?
  2474. 2018.02.7, Released October 25th, 2018
  2475. Important / security related fixes.
  2476. Detect and reject build paths containing '@', as this confuses
  2477. a number of packages, including GCC.
  2478. utils/get-developers: Add -e option for use with git
  2479. send-email.
  2480. utils/diffconfig: Make it work for (non-Buildroot) config
  2481. files not using the BR2_ prefix.
  2482. u-boot: Fix for environment image handling on big endian
  2483. systems.
  2484. Updated/fixed packages: binutils, ca-certificates,
  2485. cups-filters, erlang, file, freetype, gcc, git, gvfs, leveldb,
  2486. libarchive, libcurl, libssh, live555, ljlinenoise, mariadb,
  2487. mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils, poco,
  2488. psmisc, ptpd2, python-enum34, qemu, qt, qt5base, setools,
  2489. spice, spice-protocol, tinc, ustr, wireshark
  2490. Issues resolved (http://bugs.uclibc.org):
  2491. #11396: uboot environment image checksum invalid if target is big endian
  2492. 2018.02.6, Released October 7th, 2018
  2493. Important / security related fixes.
  2494. Add a number of patches to fix build errors for host utilities
  2495. on modern distributions using glibc-2.28.
  2496. mkusers: Ensure existing group members are preserved when a
  2497. group is reprocessed.
  2498. printvars: Fix issue with exceeding shell command line length
  2499. limits for certain setups.
  2500. Updated/fixes packages: acpid, android-tools, apache,
  2501. arp-scan, bandwidthd, bind, bison, clamav, connman, cppcms,
  2502. cramfs, fio, gcc, ghostscript, glibc, gnupg, httping,
  2503. igmpproxy, imagemagick, imlib2, ipsec-tools, lcms2, libcurl,
  2504. libesmtp, libnfs, libssh, libxslt, links, linuxptp,
  2505. mediastreamer, minicom, moarvm, nilfs-utils, ocrad, parted,
  2506. php, pv, python-django, qt, qt5quickcontrols, qt5webengine,
  2507. screen, sdl2, shairport-sync, squashfs, strongswan,
  2508. vboot-utils, webkitgtk, wireguard, x265, xen, xlib_libXfont,
  2509. xlib_libXft
  2510. New packages: brotli, woff2
  2511. 2018.02.5, Released August 29th, 2018
  2512. Important / security related fixes.
  2513. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2514. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2515. issue.
  2516. Updated/fixed packages: acl, apache, attr, bind,
  2517. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2518. dahdi-tools, dmidecode, dropbear, eigen, erlang, ffmpeg, gawk,
  2519. gcc, ghostscript, gnutls, ipsec-tools, libarchive, libfuse,
  2520. libopenssl, libselinux, libsoup, lighttpd, linuxptp,
  2521. lttng-modules, lttng-tools, lua-flu, lvm2, m4, makedevs,
  2522. mariadb, mbedtls, mesa3d-headers, mtd, ncurses, nodejs,
  2523. openssh, php, postgresql, python-django, qt5xmlpatterns, ruby,
  2524. samba4, shairport-sync, stress-ng, ti-utils, uboot-tools, vim,
  2525. waylandpp, wireless_tools, wireshark, wpa_supplicant, xorriso,
  2526. znc
  2527. Issues resolved (http://bugs.uclibc.org):
  2528. #10781: cryptsetup luksOpen container_file container causes..
  2529. #10986: Installing package attr when already supplied by..
  2530. #11191: xattr and check-package issue
  2531. 2018.02.4, Released July 21th, 2018
  2532. Important / security related fixes.
  2533. U-Boot: Ensure host version of ncurses is picked up and not
  2534. host-ncurses built by buildroot, as that otherwise causes
  2535. widechar/non-widechar conflicts and corrupted menuconfig
  2536. menus.
  2537. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2538. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2539. Support ethernet on Turbot variant.
  2540. Updated/fixed packages: bind, clamav, collectd, dos2unix,
  2541. edid-decode, gcc, gdb, heimdal, hidapi, imx-gpu-viv, libcurl,
  2542. libglib2, liblogging, libostree, libsoup, libv4l, lm-sensors,
  2543. ncurses, network-manager, patchelf, pinentry, procps-ng, qpdf,
  2544. qt5, qt53d, qt5base, qt5charts, qt5script, qt5serialport,
  2545. systemd, wireguard, wireless-regdb
  2546. Issues resolved (http://bugs.uclibc.org):
  2547. #11101: host-patchelf Endian Issue with relative RPATH
  2548. 2018.02.3, Released June 18th, 2018
  2549. Important / security related fixes.
  2550. Various fixes for building on modern distributions (GCC 8.x,
  2551. no rpcgen utility).
  2552. ARM: Default to binutils 2.28 and warn about newer binutils
  2553. versions, which are known to cause boot failures for Linux
  2554. kernels built in thumb mode.
  2555. Busybox/mdev: Fix module autoloading.
  2556. Busybox/sysvinit: inittab: Add /dev/{stdin,stdout,stderr}
  2557. symlinks, call swapon -a to activate any configured swap
  2558. devices.
  2559. Dependencies: Check that PATH does not contain current working
  2560. directory, which triggers a number of build failures.
  2561. Infrastructure: Error out for packages erroneously using the
  2562. 'local' site method but not defining a _SITE.
  2563. Linux: Fix cuImage.<dtb> / simpleImage.<dtb> handling. Ensure
  2564. kconfig uses ncurses from the host to fix a ncurses/ncursesw
  2565. mixup, causing menuconfig display corruption.
  2566. Toolchain: Workarounds for fix-rpath issues with binutils and
  2567. elf2flt.
  2568. Util-linux: Fix blocking on getrandom() issue with recent
  2569. kernels.
  2570. Remove broken freescale_imx31_3stack,
  2571. freescale_imx6sololiteevk and freescale_imx6ulevk defconfigs.
  2572. Updated/fixed packages: apr-util, asterisk, attr, audit,
  2573. autofs, binutils, busybox, cifs-utils, cups-filters, dash,
  2574. ebtables, exim, expect, f2fs-tools, faketime, file, gdb, git,
  2575. glibc, gnupg, gnupg2, gst1-plugins-bad, imagemagick, jamvm,
  2576. jpeg-turbo, libcap, libcoap, libcurl, libgcrypt, libjpeg,
  2577. libnss, libressl, libtirpc, libvncserver, libvorbis, libxslt,
  2578. log4cplus, lrzsz, ltrace, lynx, mariadb, mbedtls, mpg123,
  2579. nasm, netplug, network-manager, nfs-utils, nodejs,
  2580. openvmtools, patch, perl, php-amqp, poppler, procps-ng,
  2581. python, python-websockets, quota, redis, samba4, sysvinit,
  2582. transmission, triggerhappy, util-linux, wavpack, wget,
  2583. wireshark, xen, zmqpp
  2584. Issues resolved (http://bugs.uclibc.org):
  2585. #10986: Installing package attr when already supplied by busybox..
  2586. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file or..
  2587. 2018.02.2, Released May 4th, 2018
  2588. Important / security related fixes.
  2589. Tweak package size/file instrumentation to better handle
  2590. package rebuilds.
  2591. Revert /etc/shells creation when bash is enabled.
  2592. Exclude /lib/firmware from the rpath fixup logic, as it may
  2593. contain non-native ELF files.
  2594. Scanpypi: Support the new PyPi infrastructure.
  2595. Handle GCC 8.x on the host.
  2596. Ensure timestamp of /usr is updated to support the systemd
  2597. ConditionNeedsUpdate option.
  2598. Updated/fixed packages: bluez5_utils, flann, gdb, gnupg2,
  2599. grub2, libcec, libcgi, libglib2, libgpg-error, libgpgme,
  2600. libtomcrypt, mbedtls, mkpasswd, php, python, python-requests,
  2601. python-watchdog, qt53d, qt5websockets, sdl2, sdl2_image,
  2602. syslog-ng, systemd, tcl, tcllib, uclibc, usb_modeswitch,
  2603. wireguard, wmctrl
  2604. Issues resolved (http://bugs.uclibc.org):
  2605. #10896: /bin/sh not in /etc/shells
  2606. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is enabled
  2607. 2018.02.1, Released April 9th, 2018
  2608. Important / security related fixes.
  2609. Removed unmaintained defconfigs: Creator Ci40, Firefly rk3288,
  2610. Freescale mpc8315erdb / p1010rdb_pa, Riotboard, Teliv EVK
  2611. Pro3.
  2612. Infrastructure: Speed up instrumentation for package size by
  2613. comparing timestamps instead of md5 checksums, as doing
  2614. checksums could lead to up to 25% longer build time for big
  2615. configurations.
  2616. Rename the internal <pkg>_BASE_NAME variable to <pkg>_NASENAME
  2617. to avoid name clashes with packages ending on '-base'.
  2618. Add a better fix for build issues for autotools based packages
  2619. checking for C++ support on toolchains without C++ support.
  2620. Build host-tar if tar is older than 1.27 on the build machine
  2621. to work around reproducibility issues with git archives
  2622. containing long paths.
  2623. check-unique-files: Fix for filenames not representable in the
  2624. users' locale.
  2625. Check-bin-arch: Add support for per-package ignore paths
  2626. (<pkg>_BIN_ARCH_EXCLUDE).
  2627. Toolchain: Fix SSP support detection for external toolchains.
  2628. linux: Add _NEEDS_HOST_OPENSSL / LIBELF options to ensure
  2629. these dependencies are available for Linux configurations
  2630. needed these dependencies, similar to how it is done for
  2631. U-Boot.
  2632. Support custom (not in tree) device tree files in addition to
  2633. in-tree ones.
  2634. U-Boot / uboot-tools: Fix header conflict with libfdt-devel
  2635. installed on host.
  2636. Updated/fixed packages: apache, busybox, c-ares, cmake,
  2637. docker-engine, enlightenment, eudev, fbgrab, freescale-imx,
  2638. gtest, imagemagick, intel-microcode, irssi, jimtcl, kmod,
  2639. kodi, ktap, libcoap, libcurl, libfcgi, libhttpparser,
  2640. libminiupnpc, libopenssl, libpjsip, libss7, libssh2, libupnp
  2641. libupnpp, libuv, libvorbis, memcached, motion, musl, nodejs,
  2642. ntp, openblas, opencv3, openocd, opus-tools, patch, php,
  2643. pkgconf, postgresql, powerpc-utils, python-jsonschema,
  2644. python-webpy, qemu, qt5bsae, qt5script, qt5webkit, rapidjson,
  2645. rauc, sam-ba, samba4, sngrep, systemd, tremor, uboot-tools,
  2646. uclibc-ng-test, upmpdcli, wireshark, xerces, xterm, zstd
  2647. New packages: docker-proxy, python-functools32
  2648. Issues resolved (http://bugs.uclibc.org):
  2649. #10766: upmpdcli: Segmentation fault
  2650. #10776: ktap fails to build
  2651. #10846: error in compiling gnutls
  2652. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  2653. 2018.02, Released March 4th, 2018
  2654. Fixes all over the tree.
  2655. Issues with systemd with a readonly rootfs and DBus fixed.
  2656. Instructure:
  2657. - check-uniq-files: fix Python 2.6 compatibility.
  2658. - dependencies.sh: check for external argparse module for
  2659. Python 2.6.
  2660. - Add infrastructure to detect and use a UTF-8 locale on the
  2661. host, needed by systemd.
  2662. Update/fixed packages: clamav, dash, dhcp, dovecot, efl,
  2663. ffmpeg, libv4l, mono, mosquitto, php, postgresql, qt,
  2664. scanpypi, sdl2, systemd, tor, tvheadend, uboot, wavpack
  2665. Issues resolved (http://bugs.uclibc.org):
  2666. #10831: qemu_x86_64_defconfig build fails on linux-headers..
  2667. 2018.02-rc3, Released February 27th, 2018
  2668. Fixes all over the tree.
  2669. check-bin-arch: skip /lib/modules to allow 32-bit userland
  2670. with 64bit kernel.
  2671. dependencies: Blacklist tar 1.30+ and build our own host-tar
  2672. if needed as tar 1.30+ changed the --numeric-owner output for
  2673. long path names. Build host-tar before other host-dependencies
  2674. as they need it to extract their source tarballs.
  2675. Update/fixed packages: asterisk, azmq, bluez5_utils, domoticz,
  2676. e2fsprogs, erlang, exim, glibc, gpsd, jq, libglib2, libvorbis,
  2677. mariadb, mbedtls, mesa3d, mesa3d-headers, mpv, patch, pcre2,
  2678. php, qt5, qt5multimedia, qt5wayland, qt5webengine, qt5webkit,
  2679. systemd, quagga, rustc, uboot, wireguard, zic, zlib-ng
  2680. Issues resolved (http://bugs.uclibc.org):
  2681. #10726: Current libglib2.mk creates broken libglib2 binary...
  2682. #10786: Linux fails to build unless make linux-menuconfig...
  2683. #10796: Cannot generate cpio image without selecting CON...
  2684. 2018.02-rc2, Released February 15th, 2018
  2685. Fixes all over the tree.
  2686. Dependencies: Ensure C++ support is available like for C
  2687. support for packages needing 32bit host support.
  2688. utils/genrandconfig: Check host dependencies for config.
  2689. Updated/fixed packages: busybox, dnsmasq, dropbear, ffmpeg,
  2690. glibc, keepalived, libcpprestsdk, libgpiod, libmaxminddb,
  2691. librsvg, libtasn1, libv4l, libxml2, lightning, ltp-testsuite,
  2692. mesa3d, mesa3d-demos, mesa3d-headers, nftables, open-lldp,
  2693. php, postgresql, python-crossbar, qt5, qt53d, qt5enginio,
  2694. qt5tools, qt5webengine, qt5webkit, rsync, rust-bin, rustc,
  2695. systemd
  2696. Issues resolved (http://bugs.uclibc.org):
  2697. #9781: ti-sgx-km build on kernel >4.1
  2698. #10141: Squashfs extended attribute failures
  2699. 2018.02-rc1, Released February 5th, 2018
  2700. The global source-check and per-package <pkg>-source-check
  2701. targets have been removed.
  2702. Architecture: Add x86 Silvermont variant. Add several new ARM
  2703. variants, rework MIPS NaN logic. Support mainline binutils/gcc
  2704. for ARC.
  2705. Toolchains: Linaro toolchains upgraded to 2017.11 release, ARC
  2706. external toolchains upgraded to arc-2017.09. Libatomic is now
  2707. also copied for external musl based toolchains.
  2708. Add binutils 2.30.x and switch to binutils 2.29.x by default.
  2709. Added hardening options to build with RELRO and FORTITY.
  2710. New defconfigs: Bananapi M64, FriendlyARM Nanopi A64 & NEO2,
  2711. imx6slevk, imx6sx-sdb, imx6ulevk, Olimex A64-OLinuXino,
  2712. Orangepi lite / pc plus / pc / prime / win / win plus / zero
  2713. plus2, Pine64, Solidrun MacchiatoBin. Sopine.
  2714. Add utils/diffconfig, a simple utility for comparing
  2715. configuration files - Adapted from the version in the
  2716. Linux kernel.
  2717. Infrastructure: Check that the same file is not touched by
  2718. multiple packages, as a preparation for toplevel parallel
  2719. builds.
  2720. Hashes for the license files for a large number of packages
  2721. have been added, ensuring that license changes will not be
  2722. missed when packages are bumped.
  2723. Fix build issue for autotools based packages checking for C++
  2724. support on toolchains without C++ support and on a distro
  2725. lacking /lib/cpp (E.G. Arch Linux).
  2726. Support for the meson build system.
  2727. Pie charts generated by 'graph-build' or 'graph-size' are now
  2728. sorted according to the size of each piece.
  2729. System: Only show getty options when busybox init or sysvinit
  2730. are used.
  2731. ARM-trusted-firmware: Support ATF bundled in U-Boot as
  2732. well as U-Boot bundled in ATF.
  2733. Zlib is now a virtual package, provided by either libzlib or
  2734. zlib-ng, similar to openssl.
  2735. Support for the Rust programming language.
  2736. New packages: aoetools, armbian-firmware, binaries-marvell,
  2737. brltty, cargo, cargo-bin, cups-filters, curlpp, daq,
  2738. flatbuffers, gconf, glorytun, gstreamer1-mm, imx-m4fwloader,
  2739. imx-gpu-g2d, json-for-modern-cpp, libcpprestsdk, libgta,
  2740. libostree, libupnp18, luadbi, luadbi-sqlite3, lua-utf8, lynx,
  2741. meson, mv-ddr-marvell, nilfs-utils, opentracing-cpp,
  2742. open-lldp, pimd, proj, python-flask-cors,
  2743. python-jaraco-classes, python-more-itertools, python-oauthlib,
  2744. python-raven, python-remi, python-requests-oauthlib,
  2745. python-schedule, python-secretstorage, python-see,
  2746. python-tabledata, python-txtorcon, python-xlib, qt5charts,
  2747. rtl8189fs, rtl8723bu, rust, rustc, rust-bin, rygel, safeclib,
  2748. solatus, tcf-agent, traceroute, waylandpp, wolfssl,
  2749. zisofs-tools, zlib-ng
  2750. Removed packages: eeprog
  2751. 2017.11.2, Released January 21st, 2018
  2752. Important / security related fixes.
  2753. External toolchain: libatomic is now also copied for musl
  2754. based toolchains.
  2755. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  2756. System: Only show getty options when busybox init or sysvinit
  2757. are used.
  2758. Infrastructure: Fix build issue for autotools based packages
  2759. checking for C++ support on toolchains without C++ support and
  2760. on a distro lacking /lib/cpp (E.G. Arch Linux).
  2761. Pie charts generated by 'graph-build' or 'graph-size' are now
  2762. sorted according to the size of each piece.
  2763. Updated/fixed packages: asterisk, avahi, bind, busybox,
  2764. coreutils, eeprog, intel-microcode, iputils, irssi, kmsxx,
  2765. libiio, linux-firmware, lz4, mariadb, matchbox-lib, mcookie,
  2766. ntp, php, pound, rpcbind, tar, ti-cgt-pru, webkitgtk, xen,
  2767. xlib_libXpm
  2768. Issues resolved (http://bugs.buildroot.org):
  2769. #9996: lz4 package does not install lz4 binaries in target
  2770. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  2771. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  2772. #10301: systemd/getty unused options
  2773. #10331: kmsxx, host installation fails with BR2_SHARED_...
  2774. #10556: Building ntp package with SSL library libressl...
  2775. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  2776. 2017.11.1, Released December 31th, 2017
  2777. Important / security related fixes.
  2778. Updated/fixed packages: asterisk, checkpolicy, dhcp, flann,
  2779. gdb, glibc, heimdal, kodi-pvr-mediaportal-tvserver,
  2780. kodi-pvr-stalker, libcue, libopenssl, libpqxx, libsoxr,
  2781. linknx, linux-tools, lldpd, ltp-testsuite, mariadb, mfgtools,
  2782. nodejs, nut, pulseaudio, python-cffi, qemu, rsync, tor, uboot,
  2783. uboot-tools, vlc, webkitgtk, weston, wireguard, wireshark,
  2784. xenomai, xfsprogs
  2785. 2017.11, Released November 30, 2017
  2786. Fixes all over the tree.
  2787. Toolchain: Use github mirror for Glibc.
  2788. Defconfigs: Correct boot.cmd for bananapi-m1.
  2789. Makefiles: Workaround include order issues for certain make
  2790. versions by explicitly sorting the result of wildcard where it
  2791. matters.
  2792. Download: Ensure subversion runs in non-interactive mode.
  2793. Updated/fixed packages: asterisk, boost, chrony, dovecot,
  2794. dvb-apps, exim, feh, freerdp, fwup, google-breakpad, jose,
  2795. kvm-unit-test, lftp, libcurl, libevent, libfastjson, libpjsip,
  2796. libupnp, linphone, localedef, lttng-tools, mp4v2, mtools,
  2797. ndisc6, oracle-mysql, parted, pdbg, qt, qt5connectivity,
  2798. qt5declarative, qt5webkit, rauc, runc, samba4, shairport-sync,
  2799. systemd-bootchart, webkitgtk, wireguard, xlib_libXcursor,
  2800. xlib_libXfont, xlib_libXfont2,
  2801. Issues resolved (http://bugs.buildroot.org):
  2802. 10501: host-localedef fails to compile on Ubuntu 17.10
  2803. 10506: Changed kernel image type (e.g. zImage to uImage)...
  2804. 2017.11-rc2, Released November 13th, 2017
  2805. Fixes all over the tree.
  2806. Updated/fixed packages: collectd, ffmpeg, freerdp,
  2807. go-bootstrap, imagemagick, jimtcl, libpjsip, libplist, libuv,
  2808. mesa3d, nodejs, ntp, openjpeg, postgresql, python-numpy, ruby,
  2809. snmp++, usb_modeswitch, util-linux, vboot-utils, webkitgtk,
  2810. wireshark, wpa_supplicant, xapp_xdriinfo
  2811. Issues resolved (http://bugs.buildroot.org):
  2812. #10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2813. #10491: Cannot output security warning when compiled with buildroot..
  2814. 2017.11-rc1, Released November 6th, 2017
  2815. Fixes all over the tree and new features.
  2816. Openssl is now a virtual package, which may be provided by
  2817. OpenSSL (now renamed to libopenssl) or LibreSSL.
  2818. libssh2: there is now an explicit choice of the backend to use
  2819. (mbedtls, gnutls or openssl). Previously, the choice was implicit
  2820. based on the TLS library that was selected. Now, it is possible to
  2821. choose the backend, which is important if several TLS libraries are
  2822. selected.
  2823. netsnmp: all MIB files are now installed, making the target filesystem a
  2824. bit bigger than before. To remove unneeded MIBS, you should use a
  2825. post-build script.
  2826. Toolchain: Linaro toolchains updated to 2017.08, ARC toolchain
  2827. updated to 2017.09, Glibc updated to 2.26, Glibc support for
  2828. ARCv2. The toolchain wrapper now handles SOURCE_DATE_EPOCH for
  2829. older (pre-gcc7.x) toolchains for BR2_REPRODUCIBLE.
  2830. New defconfigs: Atmel SAM45D27, Bananapi M1 and M2 Plus,
  2831. Engicam i.CoreM6 Qt5 configuration, i.MX6 sabreauto (mainline
  2832. kernel/u-boot), i.MX6Q sabresd Qt5 configuration, i.MX7d-pico,
  2833. QEMU ppc64le, Raspberry pi3 Qt5 webengine configuration,
  2834. Technologic TS-7680.
  2835. New packages: asterisk, azmq, bcg729, boinc, dahdi-linux,
  2836. dahdi-tools, freeswitch-mod-bcg729, fscryptctl, libb64,
  2837. libpri, libss7, lua-basexx, lua-compat53, lua-cqueues,
  2838. lua-curl, lua-datafile, lua-fifo, lua-httpd,
  2839. lua-lpeg-patterns, lua-markdown, lua-sailor, lua-value,
  2840. luksmeta, minetest, minetest-game, pdmenu, prosody,
  2841. python-aiocoap, python-automat, python-ibmiotf,
  2842. python-iso8601, python-m2r, python-simplesqlite,
  2843. python-websockets, python-xmltodict, qt5wayland, qt5webengine,
  2844. restorecond, selinux-python, semodule-utils, uhubctl,
  2845. wireguard, wsapi-fcgi, wsapi-xavante
  2846. Removed packages: aiccu, rfkill, sepolgen
  2847. Issues resolved (http://bugs.buildroot.org):
  2848. #10281: lsblk does not compile for util-linux
  2849. #10336: lttng compilation fails : linking error
  2850. #10351: glibc missing in rootfs
  2851. #10356: nfs-utils missing header
  2852. #10361: python3 python-config script generates invalid includes
  2853. #10366: dropbear download url has changed
  2854. #10391: WiringPi retrieves wrong (old) version
  2855. #10406: Beaglebone black: Buggy SGX driver version, swapped...
  2856. #10426: uboot-tools' fw_setenv does not update the redundant...
  2857. #10451: libpcap 1.8.x and 1.7x does not compile on PPC
  2858. 2017.08.2, Released November 28th, 2017
  2859. Important / security related fixes.
  2860. Qt: 5.6 version updated to 5.6.3.
  2861. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  2862. in the environment.
  2863. Makefiles: Workaround include order issues for certain make
  2864. versions by explicitly sorting the result of wildcard where it
  2865. matters.
  2866. Updated/fixed packages: apr, apr-util, arqp-standalone,
  2867. azure-iot-sdk-c, collectd, dvb-apps, ffmpeg, go-bootstrap,
  2868. google-breakpad, gstreamer, imagemagick, irssi, jimtcl,
  2869. kvm-unit-test, libcurl, libfastjson, libglib2, libidn,
  2870. libpjsip, libplist, localedef, lttng-tools, luajit, mesa3d,
  2871. moarvm, mp4v2, openssh, openssl, oracle-mysql, postgresql,
  2872. python3, python-pyqt5, qt, qt5base, qt5canvas3d,
  2873. qt5connectivity, qt5declarative, qt5engineio,
  2874. qt5graphicaleffects, qt5imageformats, qt5location,
  2875. qt5multimedia, qt5quickcontrols, qt5quickcontrols2, qt5script,
  2876. qt5sensors, qt5serialbus, qt5serialport, qt5svg, qt5tools,
  2877. qt5webchannel, qt5webkit, qt5websockets, qt5x11extras,
  2878. qt5xmlpatterns, quagga, redis, ruby, samba4, sdl2, snmppp,
  2879. swupdate, ti-gfx, uboot-tools, usb_modeswitch, vboot-utils,
  2880. webkitgtk, wget, wireshark, xapp_xdriinfo.
  2881. Issues resolved (http://bugs.buildroot.org):
  2882. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2883. 10361: python3 python-config script generates invalid includes
  2884. 10501: host-localedef fails to compile on Ubuntu 17.10
  2885. 2017.08.1, Released October 23rd, 2017
  2886. Important / security related fixes.
  2887. Webkitgtk bumped to the 2.18.x series, fixing a large number
  2888. of security issues.
  2889. Defconfigs: galileo: fix ext4 related kernel config, bump
  2890. kernel for gcc 6.x compatibility, enable wchar support for
  2891. grub2. wandboard: correct rootfs offset
  2892. support: Ensure gzip compression level 6 is used for git
  2893. tarballs. check-bin-arch: Correctly handle (ignore) symbolic
  2894. links. check-rpath: Also handle PIE binaries
  2895. External toolchain: Correctly handle glibc Buildroot
  2896. toolchains built with merged /usr
  2897. musl: fix ARMv4 build with binutils 2.27.51+, fix for
  2898. CVE-2017-15650
  2899. Updated/fixed packages: apache, augeas, bind, bluez5_utils,
  2900. busybox, bzip2, cmake, dnsmasq, ejabberd, gcc, git, go, ffmpeg, file,
  2901. flashrom, gd, gdk-pixbug, gnupg2, hostapd, ifupdown-scripts,
  2902. imagemagick, iucode-tool, kernel-module-imx-gpu-viv, lame,
  2903. libarchive, libcurl, libffi, libidn, libmbim, libnspr, libnss,
  2904. libressl, librsync, libsoup, libxml2, libzip, mbedtls, musl,
  2905. netplug, nginx, openvpn, pkgconf, poppler, proxychains-ng,
  2906. qemu, qt, rpi-userland, syslog, ruby, samba4, softether,
  2907. sqlite, strongswan, subversion, supertuxkart, supervisor, tcpdump,
  2908. tor, unrar, urq, vboot-utils, webkitgtk, wpa_supplicant, xen,
  2909. xmlstarlet, xlib_libXfont, xlib_libXfont2,
  2910. xserver_xorg-server, zsh
  2911. 2017.08, Released September 1st, 2017
  2912. Minor fixes.
  2913. Toolchain: Don't allow internal toolchain builds for MIPS
  2914. M6201/P6600, as support for these are not yet in mainline GCC.
  2915. Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
  2916. gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
  2917. libphidget, libv4l, linux-tools, mediastreamer, minidlna,
  2918. nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
  2919. transmission, vde2, vim
  2920. Updated/fixed defconfigs:
  2921. Removed packages: simicfs.
  2922. Issues resolved (http://bugs.buildroot.org):
  2923. #10261: Grub2 fails to build for x86_64
  2924. 2017.08-rc3, Released August 23rd, 2017
  2925. Fixes all over the tree.
  2926. Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
  2927. dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
  2928. gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
  2929. libspatialindex, libunwind, linux, linux-headers, lua,
  2930. mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
  2931. whois, xen, zmqpp.
  2932. Updated/fixed defconfigs: ci20, socrates_cyclone5,
  2933. toradex_apalis_imx6.
  2934. Removed defconfig: Armadeus APF9328.
  2935. skeleton-* packages introduced in -rc1 have been renamed to
  2936. skeleton-init-* instead.
  2937. Issues resolved (http://bugs.buildroot.org):
  2938. #10141: Squashfs extended attribute failures
  2939. 2017.08-rc2, Released August 11th, 2017
  2940. Fixes all over the tree.
  2941. Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
  2942. ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
  2943. lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
  2944. swupdate, uclibc, valgrind, webkitgtk.
  2945. Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
  2946. nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
  2947. qemu_sparc64.
  2948. The cmake-package infrastructure for host packages has been
  2949. fixed to not incorrectly detect target packages through
  2950. pkg-config.
  2951. Issues resolved (http://bugs.buildroot.org):
  2952. #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
  2953. #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
  2954. #10026: lua-5.3.4: fix lua linker error in swupdate
  2955. #10146: package/skeleton-common fix recursive variable
  2956. #10156: glibc compilation fails for X86 32bits (i386)
  2957. #10201: toolchain-wrapper.c:192: (error) Memory leak:
  2958. #10221: Buildroot Support
  2959. 2017.08-rc1, Released August 2nd, 2017
  2960. Infrastructure:
  2961. - The skeleton package has been split into multiple packages:
  2962. skeleton-sysv (when Busybox or SysV init are used),
  2963. skeleton-systemd (when systemd is used), skeleton-none (when
  2964. no init system is used) and skeleton-custom (when a custom
  2965. skeleton is used). Those packages, except skeleton-custom,
  2966. share common logic and data in a new package called
  2967. skeleton-common. The skeleton package becomes a virtual
  2968. package. This change allows to generate a filesystem that is
  2969. compliant with systemd expectations.
  2970. - Support for using a read-only filesystem with systemd has
  2971. been fixed.
  2972. - Major revamp of the gettext handling, with user-visible
  2973. effect:
  2974. - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
  2975. package could decide to enable or not NLS support. When
  2976. BR2_ENABLE_LOCALE was disabled, NLS support was forced off
  2977. by passing --disable-nls to packages.
  2978. - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
  2979. controls whether NLS support should be enabled or not in
  2980. packages. This option defaults to disabled, which means
  2981. that now, NLS support is by default disabled in all
  2982. packages.
  2983. Therefore, if you need NLS support in packages, you must now
  2984. explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
  2985. - The host directory no longer has a usr/ component. This
  2986. makes it much more natural to use that directory as an
  2987. externally used toolchain. For compatibility with existing
  2988. scripts, a usr -> . link is still added.
  2989. - Hashes are now checked on tarballs by Buildroot when a
  2990. package is sourced from a Git repository.
  2991. - Patches are no longer being downloaded from Github, since
  2992. auto-generated patches could change over time, and break
  2993. hashes. All patches that were downloaded from Github are now
  2994. stored in their respective package directories.
  2995. - Hash files in packages can now contain hashes for the
  2996. license files contained in the package source code. This
  2997. allows to detect changes in such license files.
  2998. - Binaries in $(TARGET_DIR) are now cleaned up from invalid
  2999. RPATHs at the end of the build.
  3000. - A new "make sdk" target prepares $(HOST_DIR) to be
  3001. relocatable: turns RPATHs in host binaries into relocatable
  3002. ones, removes bogus RPATHs from staging binaries/libraries,
  3003. and provides a relocate-sdk script that can be executed to
  3004. relocate the SDK after installation.
  3005. - Addition of utils/genrandconfig which generates a random
  3006. configuration based on a set of pre-defined toolchain
  3007. configurations (support/config-fragments/autobuild/) and a
  3008. random selection of packages. It is now used by the
  3009. autobuilders to generate the random configurations.
  3010. Filesystems:
  3011. - ext2/3/4 filesystems are now generated using mkfs.ext from
  3012. e2fsprogs instead of using genext2fs.
  3013. Architecture:
  3014. - Addition of support for ARM big.LITTLE variants
  3015. - Improved MIPS support, with options to select NaN encoding
  3016. and FP32 mode.
  3017. Toolchain:
  3018. - Switch to gcc 6.x as the default gcc version, add support
  3019. for gcc 7.x, remove support for gcc 4.8
  3020. - Switch to binutils 2.28 as the default binutils version, add
  3021. support for binutils 2.29, remove support for binutils 2.26
  3022. - Support added for gdb 8.0
  3023. - uClibc-ng bumped to 1.0.26
  3024. - CodeSourcery toolchains for x86 and SuperH have been
  3025. removed, they were using a too old glibc version
  3026. (2.17). External toolchains with glibc 2.17 or earlier are
  3027. no longer supported.
  3028. - The version selection in the glibc package has been
  3029. removed. Like musl and uClibc-ng, we now use the latest
  3030. glibc version.
  3031. - Improved support for Xtensa toolchain overlays, which can
  3032. now be downloaded.
  3033. Tools:
  3034. - Numerous improvements to the runtime test infrastructure
  3035. - Tests are now executed by Gitlab CI on a regular basis
  3036. - Tools that are directly useful to the user have been moved
  3037. from support/scripts/ to utils/: brmake, check-package,
  3038. get-developers, scancpan, scanpipy, size-stats-compare,
  3039. test-pkg.
  3040. New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
  3041. Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
  3042. SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
  3043. New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
  3044. erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
  3045. ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
  3046. kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
  3047. libpwquality, libressl, libspatialindex, libva-utils,
  3048. linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
  3049. lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
  3050. python-backports-shutil-get-terminal-size, python-bcrypt,
  3051. python-cheroot, python-h2, python-hpack, python-hyperframe,
  3052. python-hyperlink, python-ipython-genutils, python-pathlib2,
  3053. python-pickleshare, python-priority, python-portend,
  3054. python-scandir, python-systemd, python-tempora,
  3055. python-traitlets, python-typepy, qt5virtualkeyboard,
  3056. ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
  3057. xr819-xradio, zstd
  3058. Removed packages: cloog, input-tools, mke2img
  3059. Issues resolved (http://bugs.buildroot.org):
  3060. #7892: systemd-journald is broken
  3061. #9341: avahi-utils does not compile with uClibc + libglib2
  3062. #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
  3063. BR2_ENABLE_DEBUG
  3064. #9746: ext4 image generated by Buildroot is not working
  3065. properly with U-Boot
  3066. #9886: Build fails with "unexpected EOF while looking for
  3067. matching `"'" if PATH contains a newline
  3068. #9891: parted 3.1 => 3.2?
  3069. #9911: qt5 does not build on sparc
  3070. #9916: qt5 does not build on
  3071. arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
  3072. #9936: Host QEMU does not build with SDL support because of
  3073. pkg-config
  3074. #9941: nodejs option disappears for arm
  3075. #9951: SCANCPAN failure
  3076. #9966: util-linux-2.30/.stamp_built' failed
  3077. #9976: License file for package 'rtl8821au' incorrect
  3078. #9991: SGX Error implicit declaration of function
  3079. ‘dmac_map_area’
  3080. #10011: wget does not work from Buildroot
  3081. #10036: Buildroot builds Raspbian Jessie headless image
  3082. presenting incorrect prompt
  3083. #10051: make: *** No rule to make target
  3084. 'raspberrpi3_defconfig'. Stop reported with Buildroot
  3085. v2017.05.1
  3086. #10056: No .config file was produced in /buildroot folder
  3087. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
  3088. failure
  3089. #10071: fakeroot: replace hard-coded paths in post install
  3090. #10076: Makefile:4113: recipe for target 'all-gcc' failed
  3091. #10091: gcc7.1 does not build with graphite support due to old
  3092. isl
  3093. #10121: webkit without the multimedia option causes build
  3094. error
  3095. 2017.05.2, Released July 27th, 2017
  3096. Important / security related fixes.
  3097. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3098. of security issues.
  3099. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3100. which default to PIE mode.
  3101. Updated/fixed packages: aespipe, apache, bind, binutils,
  3102. busybox, ccache, collectd, dieharder, efibootmgr, efivar,
  3103. expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
  3104. libmemcached, libosip2, libtirpc, libxml-parser-perl,
  3105. linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
  3106. pulseaudio, python-setproctitle, qt5base, rpi-firmware,
  3107. samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
  3108. webkitgtk, x265, xserver_xorg-server, xvisor
  3109. Issues resolved (http://bugs.buildroot.org):
  3110. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3111. 2017.05.1, Released July 4th, 2017
  3112. Important / security related fixes.
  3113. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3114. has been shutdown.
  3115. Update support/scripts/mkusers to handle setups where
  3116. /etc/shadow is a symlink.
  3117. External toolchain: Don't create musl dynamic loader symlink
  3118. for static builds.
  3119. Setlocalversion: Correct detection of mercurial revisions for
  3120. non-tagged versions.
  3121. Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
  3122. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3123. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
  3124. gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
  3125. iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
  3126. libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
  3127. openssh, openvpn, pngquant, python-simplegeneric, qt5base,
  3128. qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
  3129. tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
  3130. Issues resolved (http://bugs.buildroot.org):
  3131. #9976: License file for package 'rtl8821au' incorrect
  3132. 2017.05, Released May 31st, 2017
  3133. Minor fixes.
  3134. External toolchain: musl dynamic linker symlink for mips-sf
  3135. corrected.
  3136. Updated/fixed packages: agentpp, bash, exim, hans, madplay,
  3137. qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
  3138. xen
  3139. Issues resolved (http://bugs.buildroot.org):
  3140. #9906: genimage: Disk full
  3141. 2017.05-rc3, Released May 30th, 2017
  3142. Fixes all over the tree.
  3143. ARC toolchain bumped to 2017.03
  3144. Runtime testing improvements and cleanups.
  3145. Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
  3146. cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
  3147. fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
  3148. keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
  3149. libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
  3150. mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
  3151. pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
  3152. xen
  3153. Removed packages: firejail, ola
  3154. Issues resolved (http://bugs.buildroot.org):
  3155. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3156. #9876: aarch64 support with gcc 4.8 toolchain
  3157. #9896: host-gcc-initial error downloading because incorrect URL
  3158. 2017.05-rc2, Released May 17th, 2017
  3159. Fixes all over the tree.
  3160. ARC toolchain bumped to 2017.03-rc2
  3161. Updated/fixed packages: bluez_utils, boost, clamav, daemon,
  3162. efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
  3163. git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
  3164. mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
  3165. postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
  3166. rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
  3167. vlc, x11vnc, xfsprogs
  3168. Issues resolved (http://bugs.buildroot.org):
  3169. #9796: source-check broken for Git downloads
  3170. #9866: BASE_DIR usage
  3171. 2017.05-rc1, Released May 8th, 2017
  3172. Fixes all over the tree and new features.
  3173. Infrastructure:
  3174. - Installed binaries are now checked for correct architecture
  3175. to catch natively built binaries or binaries built for other
  3176. architecture variants.
  3177. - Luarocks infrastructure improvements to extraction handling,
  3178. support for upstream name != Buildroot package name.
  3179. - 'make printvars' output format has changed to make it easier
  3180. to use in scripts. It now has options to quote the variables
  3181. and to show the expanded/unexpanded values.
  3182. - Automatic ext2 rootfs size calculation has been removed. The
  3183. logic was not working working reliable in all setups as it
  3184. depends on the host filesystem behaviour, so instead now the
  3185. size has to be specified explicitly (defaults to 60MB).
  3186. - The git download infrastructure now ensures that GNU format
  3187. tar files are created.
  3188. - Fixed a variable clashing issue in the mkusers script with
  3189. internal bash variables.
  3190. - Fakeroot now links against libacl to fix issues on
  3191. distributions using acls.
  3192. - Correct permissions for /dev/pts/ptmx when systemd is used
  3193. with recent glibc versions.
  3194. - br2-external: Improve error reporting.
  3195. - A wrapper script for genimage has been added in
  3196. support/scripts/genimage.sh for easy use of genimage from
  3197. post-image scripts.
  3198. - A script to check for common style issues in new packages
  3199. before submitting has been added in support/scripts/check-package
  3200. - Defconfigs are now tested by gitlab-CI instead of Travis:
  3201. https://gitlab.com/buildroot.org/buildroot
  3202. - Infrastructure for runtime testing has been added to
  3203. support/testing
  3204. Toolchain:
  3205. - External linaro toolchains updated to 2017.02, ARC toolchain
  3206. updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
  3207. - A number of fixes and improvements to the external toolchain
  3208. handling, including C library detection, multilib and ld.so
  3209. handling
  3210. - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
  3211. for uClibc-ng
  3212. - Binutils 2.28 added and default changed to 2.27
  3213. Architectures:
  3214. - Support for the C-SKY architecture has been added.
  3215. License handling:
  3216. - The package license markings for legal info now uses the
  3217. SPDX short identifiers for the license string where possible.
  3218. - License info has been improved / added for a number of packages.
  3219. Misc:
  3220. - Cmake 3.7.x installed on the host is no longer ignored as a
  3221. workaround for the RPATH issues has been implemented.
  3222. - Docker-engine can now be built statically on an otherwise
  3223. dynamic linked build for docker-in-docker setups.
  3224. - U-Boot now supports out-of-tree device trees, similar to
  3225. Linux
  3226. - Nodejs 0.10.x support (and with it, support for <ARMv6) has
  3227. been removed as this is now EOL upstream.
  3228. New defconfigs: AT91sam9x5ek dev/mmc/mmc-dev, banana pro,
  3229. Nationalchip gx6605s, MIPS creator ci40, nexbox a95x, 64bit
  3230. defconfig for raspberry pi 3, stm32f429-disc1.
  3231. The raspberry pi zero-w and rpi3 compute module are now also
  3232. supported by the rpi0 / rpi3 defconfigs, beaglebone green is
  3233. supported by the beaglebone defconfig.
  3234. Removed defconfig: minnowboard, via imx6 vab820, altera
  3235. socdk/sockit
  3236. New packages: arp-scan, atest, augeas, bluez-tools, daemon,
  3237. dc3dd, dieharder, execline, fmt, ghostscript, gqrx,
  3238. gst1-vaapi, jo, keepalived, kmscube, kodi-jsonschemabuilder,
  3239. kodi-skin-confluence, kodi-texturepacker, lensfun, leptonica,
  3240. libbson, libcsv, libgphoto2, libkcapi, libmaxminddb,
  3241. libmediaart, libnpth, libscrypt, lua-bit32, lua-resty-http,
  3242. lugaru, memtool, mpir, nanomsg, physfs, phytool, pngquant,
  3243. python-decorator, python-simplegeneric,
  3244. python-sortedcontainers, rpi-bt-firmware, rpi-wifi-firmware,
  3245. s6, s6-dns, s6-linux-init, s6-linux-utils, s6-networking,
  3246. s6-portable-utils, s6-rc, supertux, tesseract-ocr,
  3247. uccp420wlan, wilink-bt-firmware
  3248. Broken packages: ola
  3249. Removed packages: cosmo, kodi-visualisation-fountain,
  3250. polarssl, portmap, xdriver_xf86-video-glide,
  3251. xdriver_xf86-video-v4l, xdriver_xf86-video-wsfb
  3252. Issues resolved (http://bugs.buildroot.org):
  3253. #8831: image generation fails on host ZFS due to "no free space"
  3254. #9436: e2fsprogs remove busybox applets even of unselected e2fs..
  3255. #9456: mkusers script bash errors
  3256. #9496: mke2img fails during build on ntfs-3g host partition
  3257. #9531: NPM fails to build embedded modules
  3258. #9596: KODI: --enable-lirc needs "HAVE_LIRC" compiler definition..
  3259. #9691: Wrong cryptsetup package include files location
  3260. #9696: Wrong cryptsetup package include files location
  3261. #9706: Can't download newer revisions of package from PyPI
  3262. #9711: Recent libCEC version bump seems to break kodi package
  3263. #9716: exit, shutdown, reboot from kodi
  3264. #9721: version 2017.02: no acceptable m4 could be found in $PATH
  3265. #9726: Raspberry Pi version B - Problems with UART speed in..
  3266. #9751: expat legal info - manifest.csv: GPLv2 Source site: MIT..
  3267. #9756: glibc fails to build on buildroot-sh4*-buildroot-linux-gnu
  3268. #9766: support/scripts/pkgutil.py conflicts with the pkgutil.py..
  3269. #9776: libubox build failed
  3270. #9791: Python searches for packages in the user site directory
  3271. #9806: libseccomp is not available when BR2_arm=y
  3272. #9826: post-build scritp - symlinks created in post-build script..
  3273. #9836: triggerhappy: systemd unit broken
  3274. #9846: musl libc not installed correctly in target folder
  3275. #9856: build libubox failed on ubuntu 17.04 64bit
  3276. 2017.02.11, Released April 11th, 2018
  3277. Important / security related fixes.
  3278. dependencies: Blacklist tar 1.30+ and build our own host-tar
  3279. if needed as tar 1.30+ changed the --numeric-owner output for
  3280. long path names. Build host-tar before other host-dependencies
  3281. as they need it to extract their source tarballs.
  3282. Updated/fixed packages: apache, busybox, clamav, dhcp,
  3283. dnsmasq, dovecot, exim, imagemagick, irssi, jq, libcurl,
  3284. libpjsip, librsvg, libtasn1, libvorbis, libxml2, lz4, mariadb,
  3285. mbedtls, mosquitto, ntp, openblas, opencv3, openssl, patch,
  3286. postgresql, python-webpy, qt53d, qt5tools, quagga, rsync,
  3287. samba4, sngrep, tremor, wavpack, wireshark, xerces, xterm
  3288. Issues resolved (http://bugs.uclibc.org):
  3289. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  3290. 2017.02.10, Released January 31st, 2018
  3291. Important / security related fixes.
  3292. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  3293. System: Only show getty options when busybox init or sysvinit
  3294. are used.
  3295. Infrastructure: Fix build issue for autotools based packages
  3296. checking for C++ support on toolchains without C++ support and
  3297. on a distro lacking /lib/cpp (E.G. Arch Linux).
  3298. Updated/fixed packages: avahi, berkeleydb, bind, busybox,
  3299. ccache, clamav, coreutils, dovecot, eeprog, eudev, fis,
  3300. intel-microcode, iputils, irssi, kmsxx, libcurl, liberation,
  3301. libiio, lz4, mariadb, matchbox-lib, mcookie, openocd, php,
  3302. pound, rpcbind, squid, tar, ti-cgt-pru, transmission,
  3303. util-linux, webkitgtk, wireshark, xen
  3304. Issues resolved (http://bugs.buildroot.org):
  3305. #9996: lz4 package does not install lz4 binaries in target
  3306. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  3307. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  3308. #10301: systemd/getty unused options
  3309. #10331: kmsxx, host installation fails with BR2_SHARED_...
  3310. #10536: Finding non-relative paths in the ccache
  3311. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  3312. 2017.02.9, Released January 1st, 2018
  3313. Important / security related fixes.
  3314. Fix divide by zero issue in size-stats script.
  3315. Fix makefile include ordering issue with certain make versions
  3316. in the external toolchain handling.
  3317. Updated/fixed packages: dhcp, exim, flann, gdb, heimdal,
  3318. libcue, libcurl, libevent, libpqxx, libsoxr, linphone, lldpd,
  3319. mariadb, mfgtools, mtools, nodejs, nut, openssl, rsync,
  3320. samba4, tor, vlc, webkitgtk, wireshark, xfsprogs,
  3321. xlib_libXcursor, xlib_libXfont, xlib_libXfont2
  3322. 2017.02.8, Released November 27th, 2017
  3323. Important / security related fixes.
  3324. Qt: 5.6 version updated to 5.6.3.
  3325. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  3326. in the environment.
  3327. Updated/fixed packages: apr, apr-util, arqp-standalone,
  3328. collectd, dvb-apps, ffmpeg, google-breakpad, gstreamer,
  3329. imagemagick, libfastjson, libglib2, libpjsip, libplist,
  3330. localedef, luajit, mesa3d, openssh, openssl, postgresql,
  3331. python3, python-pyqt5, qt5base, qt5canvas3d, qt5connectivity,
  3332. qt5declarative, qt5engineio, qt5graphicaleffects,
  3333. qt5imageformats, qt5location, qt5multimedia, qt5quickcontrols,
  3334. qt5quickcontrols2, qt5script, qt5sensors, qt5serialbus,
  3335. qt5serialport, qt5svg, qt5tools, qt5webchannel, qt5webkit,
  3336. qt5websockets, qt5x11extras, qt5xmlpatterns, quagga, ruby,
  3337. samba4, snmppp, ti-gfx, vboot-utils, webkitgtk, wireshark,
  3338. xapp_xdriinfo.
  3339. Issues resolved (http://bugs.buildroot.org):
  3340. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  3341. 10361: python3 python-config script generates invalid includes
  3342. 10501: host-localedef fails to compile on Ubuntu 17.10
  3343. 2017.02.7, Released October 28th, 2017
  3344. Important / security related fixes.
  3345. Webkitgtk bumped to the 2.18.x series, fixing a large number
  3346. of security issues.
  3347. Defconfigs: wandboard: Correct rootfs offset
  3348. Toolchain: Linaro toolchains updated to 2017.08 release,
  3349. fixing a number of issues. Musl: fix for CVE-2017-15650.
  3350. Updated/fixed packages: busybox, bzip2, dnsmasq, git, go,
  3351. hostapd, irssi, iucode-tool, lame, libcurl, libffi, libnspr,
  3352. libnss, nodejs, openssh, openvpn, qemu, qt, redis, sdl2,
  3353. webkitgtk, wget, wpa_supplicant, xen, xlib_libXfont,
  3354. xlib_libXfont2, xserver_xorg-server
  3355. 2017.02.6, Released September 24th, 2017
  3356. Important / security related fixes.
  3357. Cmake: Ensure correct pkg-config is used when building host
  3358. packages
  3359. fs/iso9660: Ensure files from earlier builds are not included.
  3360. Updated/fixed packages: apache, bcusdk, bind, binutils,
  3361. bluez5_utils, botan, cmake, connman, dbus, dialog, e2fsprogs,
  3362. faad2, fakeroot, ffmpeg, file, flashrom, gcc, gd, gdb,
  3363. gdk-pixbuf, git, gnupg, gpsd, grub2, gst1-plugins-bad,
  3364. imagemagick, iostat, iucode-tool, jack2, libarchive, libcurl,
  3365. libgcrypt, libidn, libphidget, librsync, librsvg, libsoup,
  3366. libxml2, linux-tools, lua, mariadb, mbedtls, mediastreamer,
  3367. minidlna, netplug, nss-pam-ldapd, nvidia-driver, openjpeg,
  3368. postgresql, proxychains-ng, python-libconfig,
  3369. python-service-identity, qt, rpcbind, ruby, samba4, squashfs,
  3370. squid, strongswan, subversion, supervisor, sysvinit, tcpdump,
  3371. tor, transmission, unrar, valgrind, vim, webkitgtk, whois,
  3372. xen, zmqpp
  3373. Issues resolved (http://bugs.buildroot.org):
  3374. #10141: Squashfs extended attribute failures
  3375. #10261: Grub2 fails to build for x86_64
  3376. #10276: BR2_PACKAGE_LINUX_TOOLS_GPIO fails for MIPS with...
  3377. 2017.02.5, Released July 27th, 2017
  3378. Important / security related fixes.
  3379. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3380. of security issues.
  3381. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3382. which default to PIE mode.
  3383. Updated/fixed packages: aespipe, apache, bind, binutils,
  3384. busybox, ccache, collectd, efibootmgr, efivar, expat, ffmpeg,
  3385. gcc, heimdal, iproute2, irssi, libglib2, libmemcached,
  3386. libosip2, libtirpc, libxml-parser-perl, linux-fusion,
  3387. linux-zigbee, mpg123, nodejs, orc, pcre, php, pulseaudio,
  3388. python-setproctitle, qt5base, rpi-firmware, samba4, syslinux,
  3389. systemd, spice, tcpdump, tiff, webkitgtk, x265, xen,
  3390. xserver_xorg-server, xvisor
  3391. Issues resolved (http://bugs.buildroot.org):
  3392. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3393. 2017.02.4, Released July 4th, 2017
  3394. Important / security related fixes.
  3395. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3396. has been shutdown.
  3397. Update support/scripts/mkusers to handle setups where
  3398. /etc/shadow is a symlink.
  3399. External toolchain: Don't create musl dynamic loader symlink
  3400. for static builds.
  3401. Setlocalversion: Correct detection of mercurial revisions for
  3402. non-tagged versions.
  3403. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3404. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, gnutls,
  3405. gst1-plugins-bad, imagemagick, imx-uuc, intltool, iperf,
  3406. ipsec-tools, irssi, libgcrypt, libmad, libnl, mosquitto,
  3407. mpg123, ncurses, nodejs, ntp, openssh, openvpn, qt5base,
  3408. qt5multimedia, rtl8821au, socat, spice, systemd, tor, tslib,
  3409. vlc, x264, xserver_xorg-server
  3410. Issues resolved (http://bugs.buildroot.org):
  3411. #9976: License file for package 'rtl8821au' incorrect
  3412. 2017.02.3, Released June 2nd, 2017
  3413. Important / security related fixes.
  3414. Download: <pkg>-source-check fixed for packages from git.
  3415. External toolchain: musl dynamic linker symlink for mips-sf
  3416. corrected.
  3417. Updated/fixed packages: armadillo, audiofile, bash,
  3418. bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
  3419. elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
  3420. google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
  3421. libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
  3422. lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
  3423. nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
  3424. postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
  3425. rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
  3426. Issues resolved (http://bugs.buildroot.org):
  3427. #9796: source-check broken for Git downloads
  3428. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3429. 2017.02.2, Released May 1st, 2017
  3430. Important / security related fixes.
  3431. Use HTTPS for the Codesourcery external toolchains as the HTTP
  3432. URLs no longer work.
  3433. Updated/fixed packages: bind, busybox, dovecot, freetype,
  3434. ghostscript, glibc, granite, hiredis, icu, imagemagick,
  3435. gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
  3436. libnspr, libnss, libsamplerate, libsndfile, libunwind,
  3437. minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
  3438. python-web2py, samba4, syslinux, systemd, tiff, trinity,
  3439. uboot, wireshark, xen
  3440. Issues resolved (http://bugs.buildroot.org):
  3441. #9791: Python searches for packages in the user site directory
  3442. 2017.02.1, Released April 4th, 2017
  3443. Important / security related fixes.
  3444. Fix a variable clashing issue in the mkusers script with
  3445. internal bash variables.
  3446. Improve external toolchain version detection.
  3447. Correct permissions for /dev/pts/ptmx when systemd is used
  3448. with recent glibc versions.
  3449. Fix python module name clash for graph-depends.
  3450. Fakeroot now links against libacl to fix issues on
  3451. distributions using acls.
  3452. Ensure that the git download infrastructure creates GNU format
  3453. tar files.
  3454. br2-external: Improve error reporting.
  3455. Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
  3456. dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
  3457. fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
  3458. gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
  3459. libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
  3460. libwebsockets, libxkbcommon, linux-firmware, logrotate,
  3461. lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
  3462. mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
  3463. pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
  3464. skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
  3465. tcpreplay, tor, upmpdcli, wget, wireshark,
  3466. xdriver_xf86-video-vmware, xlib_libXv, zmqpp
  3467. Issues resolved (http://bugs.buildroot.org):
  3468. #9456: mkusers script bash errors
  3469. 2017.02, Released February 28th, 2017
  3470. Minor fixes, mainly fixing autobuilder issues.
  3471. Don't use cmake 3.7.x from the build host as it is also
  3472. affected by the RPATH handling issues, and instead build our
  3473. own if needed.
  3474. Updated/fixed packages: assimp, classpath, genimage, mplayer,
  3475. mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
  3476. vlc, xterm
  3477. 2017.02-rc3, Released February 26th, 2017
  3478. Fixes all over the tree.
  3479. Cmake reverted to version 3.6.3 to workaround regressions
  3480. related to RPATH handling.
  3481. Updated/fixed packages: bctoolbox, berkeleydb, binutils,
  3482. btrfs-progs, classpath, directfb, glibc, gstreamer1,
  3483. gst1-plugins-{base,good,bad,ugly}, gst1-libav,
  3484. gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
  3485. libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
  3486. oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
  3487. trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
  3488. Issues resolved (http://bugs.buildroot.org):
  3489. #9251: Shared C++ libraries for Microblaze results in Segmentation...
  3490. #9456: mkusers script bash errors
  3491. #9506: Collectd 5.7.0 fails to build with libcrypt
  3492. #9581: VagrantFile provisioning step fails due to issue with grub-pc
  3493. #9586: usbmount: usbmount slows down the system... to a state of...
  3494. #9616: CMake host packages cannot provide CONF_ENV
  3495. #9641: Need raptor package installed in staging
  3496. #9671: stunnel build error
  3497. 2017.02-rc2, Released February 20th, 2017
  3498. Fixes all over the tree.
  3499. Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
  3500. older gcc versions for reproducible builds has been
  3501. (temporarily) reverted because of licensing compatiblity
  3502. concerns.
  3503. Defconfigs: SD card generation fix for the Udoo Neo board
  3504. Infrastructure to handle .lz compressed tarballs added, and
  3505. affected packages updated to use it.
  3506. Updated/fixed packages: bctoolbox, bind, canelloni,
  3507. cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
  3508. ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
  3509. kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
  3510. libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
  3511. ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
  3512. riemann-c-client, samba4, sunxi-mali, tcping, trousers,
  3513. uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
  3514. xserver_xorg-server
  3515. Issues resolved (http://bugs.buildroot.org):
  3516. #8941: Valgrind fails to build with stack protection turned on
  3517. #9291: perl: SysV message queues not configured, even if available
  3518. #9651: libxcb-1.12 built Error
  3519. #9656: util-linux: schedutils doesn't build on target w/o enabl...
  3520. #9666: qt5quickcontrols install fails
  3521. 2017.02-rc1, Released February 11th, 2017
  3522. Fixes all over the tree and new features.
  3523. Infrastructure:
  3524. - numerous improvements to support reproducible builds
  3525. - new waf-package package infrastructure to support packages
  3526. that use the Waf build system. 6 packages converted to
  3527. this infrastructure.
  3528. - add option <pkg>_PREFER_INSTALLER to the perl package
  3529. infrastructure
  3530. Architecture:
  3531. - add support for the OpenRISC CPU architecture
  3532. - merge description of the ARM and ARM64 options, and add
  3533. support for selecting a specific ARM64 core
  3534. Toolchain:
  3535. - major rework of the external toolchain support. It is now
  3536. split into several packages, one per external toolchain,
  3537. and a common infrastructure.
  3538. - important fix for musl to prevent a conflict between musl
  3539. and kernel headers (fixes the build of numerous packages
  3540. with musl)
  3541. - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
  3542. for ARM64, mips32r6 and mips64r6
  3543. - add gdb 7.12.1, and switch to gdb 7.11 as the default
  3544. - Linaro toolchains updated to 2016.11, ARC toolchain
  3545. components updated to arc-2016.09, MIPS Codescape
  3546. toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
  3547. NIOS2 toolchains bumped
  3548. - remove Analog Devices toolchain for the Blackfin
  3549. architecture, remove pre-built musl toolchains from
  3550. musl.codu.org
  3551. New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
  3552. Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
  3553. SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
  3554. New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
  3555. ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
  3556. jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
  3557. nginx-dav-ext, nmon, opkg-utils, policycoreutils,
  3558. pru-software-support, python-arrow, python-attrs,
  3559. python-babel, python-bitstring, python-chardet,
  3560. python-constantly, python-flask-babel, python-gunicorn,
  3561. python-incremental, python-jsonschema, python-logbook,
  3562. python-markdown2, python-mbstrdecoder, python-mutagen,
  3563. python-pathpy, python-pudb, python-pyqrcode,
  3564. python-pytablereader, python-setuptools-scm, python-sh,
  3565. python-toml, python-vcversioner, python-whoosh,
  3566. raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
  3567. sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
  3568. upower, ustream-ssl, waf, xlib_libXfont2
  3569. Removed packages: perl-db-file, snowball-hdmiservice,
  3570. snowball-init
  3571. Tooling: addition of a test-pkg script to help contributors
  3572. build test their package.
  3573. Issues resolved (http://bugs.buildroot.org):
  3574. #8946: Valgrind fails to build with stack protection turned on
  3575. #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
  3576. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3577. #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
  3578. #9501: eudev fails to build with older kernel headers
  3579. #9526: Embedded NPM fails to start with "no such file or directory" error
  3580. #9541: Platform drivers autoloading from info in device tree does not work
  3581. #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
  3582. #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
  3583. #9566: [kmod] Compilation fails with uclibc
  3584. #9571: buildroot fails while building opencv for arm64 platform
  3585. #9576: External tree with BR 2016.11 does not work anymore
  3586. #9606: xorg-server cannot build for ARM target
  3587. 2016.11.3, Released March 9th, 2017
  3588. Important / security related fixes.
  3589. Updated/fixed packages: bind, dbus, gnutls, imagemagick,
  3590. lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
  3591. squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
  3592. 2016.11.2, Released January 25th, 2017
  3593. Important / security related fixes.
  3594. A fix for BR2_EXTERNAL trees referenced using relative paths,
  3595. which broke in 2016.11.
  3596. Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
  3597. imagemagick, irssi, libpng, libvncserver, musl, opus, php,
  3598. php-imagick, rabbitmq-server, runc, wireshark,
  3599. Issues resolved (http://bugs.buildroot.org):
  3600. #9576: External tree with BR 2016.11 does not work anymore
  3601. 2016.11.1, Released December 29th, 2016
  3602. Important / security related fixes.
  3603. Updated/fixed packages: apache, cryptopp, docker-engine,
  3604. dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
  3605. nodejs, openssh, php, python, python-bottle, samba4, squid,
  3606. uboot, vim, wireshark, xorg-server uboot
  3607. Issues resolved (http://bugs.buildroot.org):
  3608. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3609. 2016.11, Released November 30th, 2016
  3610. Minor fixes.
  3611. Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
  3612. uboot, uclibc
  3613. Issues resolved (http://bugs.buildroot.org):
  3614. #9451: packages/postgresql/postgresql.mk contains wrong POST...
  3615. 2016.11-rc3, Released November 28th, 2016
  3616. Fixes all over the tree, including a number of security fixes.
  3617. The move from fakeroot to pseudo unfortunately brought a
  3618. number of issues. The SELinux issue described in #9386 which
  3619. triggered the move to pseudo has been investigated further and
  3620. a workaround implemented and the pseudo changes reverted.
  3621. Linux kernel: update default to 4.8.11.
  3622. Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
  3623. olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
  3624. vdk, axs101, axs103 and hs38 smd vdk.
  3625. Updated/fixed packages: autossh, chrony, dosfstools,
  3626. dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
  3627. gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
  3628. kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
  3629. ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
  3630. ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
  3631. taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
  3632. xapp_xload, xenomai, xmlstarlet
  3633. Issues resolved (http://bugs.buildroot.org):
  3634. #9386: ubinize fails with or without custom config
  3635. #9431: A misspelling
  3636. #9446: make raspberrypi3_defconfig compilation failure
  3637. 2016.11-rc2, Released November 13th, 2016
  3638. Fixes all over the tree.
  3639. Architecture: add support for MIPS XBurst cores; remove MIPS
  3640. support for M5100 cores.
  3641. Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
  3642. czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
  3643. qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
  3644. libxslt, python, python3, php, valgrind, guile, domoticz, efl,
  3645. jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
  3646. strace, openjpeg, lcms2, quota.
  3647. Linux kernel: update default to 4.8.7.
  3648. CMake support: fix cmake wrapper to properly pass NDEBUG flag.
  3649. Filesystems: use a wrapper to pseudo, to better mimick the behaviour
  3650. of fakeroot; makedevs no longer breaks of the destination already
  3651. exists and is of the correct type/major/minor.
  3652. Defconfigs: a few legacy and broken defconfigs have been removed
  3653. because they now fail to build: kb9202_defconfig, mini2440_defconfig,
  3654. freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
  3655. have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
  3656. armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
  3657. olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
  3658. atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
  3659. atmel_sama5d3xek.
  3660. 2016.11-rc1, Released November 3rd, 2016
  3661. Fixes all over the tree and new features.
  3662. It is now possible to specify multiple BR2_EXTERNAL
  3663. directories. The required files in a BR2_EXTERNAL directory
  3664. have changed to accomodate this feature. Refer to the
  3665. documentation for details of how to update them. External
  3666. trees now have a name and a description. Also, it is possible
  3667. to override a defconfig in the external tree.
  3668. The default skeleton now uses UID 65534 for the "nobody"
  3669. user instead of UID 99, like most distros do. See
  3670. https://lwn.net/Articles/695478/ for a complete discussion.
  3671. Programs and configuration files that explicitly refer to UID
  3672. 99 will have to be updated.
  3673. When the build environment already has a suitable cmake version
  3674. (3.1 or later), that one will be used instead of building
  3675. host-cmake. This can speed up the build significantly.
  3676. The ExtUtils::MakeMaker perl module is now required in the
  3677. build environment.
  3678. An additional check is done during the build that files are
  3679. not installed in the output directory within the output
  3680. directory. This happens e.g. when the target directory is
  3681. contained both in --prefix and in DESTDIR. The build will
  3682. terminate with an error message that specifies which package
  3683. and which file caused the failure.
  3684. The concept of "deprecated packages" and the BR2_DEPRECATED
  3685. option have been removed. Instead, packages are removed
  3686. immediately. Packages are only removed when they don't work
  3687. for some reason. If you still need a removed package and
  3688. you have a solution for the problem(s) that caused the
  3689. removal, please contribute it.
  3690. Architecture: support for sh64 removed, improved support for
  3691. MIPS core selection.
  3692. Toolchain: support for musl powerpc64le, mips64 and mipsr6
  3693. toolchains, ARC toolchain components updates, gcc 6.x series
  3694. bumped to 6.2.0, default binutils version switched to 2.26,
  3695. default gcc version switched to gcc 5.x, Linaro toolchains
  3696. updated, uclibc-ng bumped to 1.0.19. GCC is now always built
  3697. with TLS support. Checking of unsafe compiler options (that
  3698. point to host directories) has been extended with -isystem,
  3699. -idirafter and -iquote.
  3700. Package infrastructure: new variable $(PKG)_DL_OPTS, addition
  3701. of <pkg>-show-rdepends to list reverse dependencies, and
  3702. <pkg>-graph-rdepends to graph reverse dependencies. Linux tools
  3703. are now in a separate linux-tools package instead of in the
  3704. kernel build. Fakeroot has been replaced by pseudo.
  3705. CMake support: the toolchainfile.cmake file now provides a
  3706. definition of the CMAKE_BUILD_TYPE variable. The
  3707. toolchainfile.cmake also no longer forces the compiler/linker
  3708. flags defined by Buildroot.
  3709. New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
  3710. TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
  3711. BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
  3712. New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
  3713. aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
  3714. mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
  3715. python-crcmod, python-cssutils, python-docutils,
  3716. python-futures, python-mwclient, python-mwscrape,
  3717. python-mwscrape2slob, python-pyelftools, python-pyicu,
  3718. python-pylru, python-pyqt5, python-requests-toolbelt,
  3719. python-simpleaudio, python-slob, rabbitmq-server, shapelib,
  3720. vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
  3721. gpio linux tools.
  3722. Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
  3723. kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
  3724. wvdial, wvstreams.
  3725. Documentation: the list of packages that was present in the
  3726. Buildroot manual has been removed.
  3727. Legal info: the "licenses.txt" file that concatenates all
  3728. license texts is no longer generated - it was not considered
  3729. useful. The manifest.csv contains an empty cell instead of
  3730. "not saved" when no license file is available.
  3731. Other: addition of a DEVELOPERS file listing developers taking
  3732. care of packages or architectures.
  3733. Issues resolved (http://bugs.buildroot.org):
  3734. #7802: host-python build hangs compiling getbuildinfo.o
  3735. #8206: mplayer uses host xorg development files
  3736. #8516: mkcubiecard.sh uses outdated sfdisk switch -D
  3737. #8536: Building sudo with PAM results in unusable sudo
  3738. #8646: check-host-rpath script returns false positives when rpath
  3739. contains symlink
  3740. #8696: xdriver_xf86-input-mouse install header files in target
  3741. directory
  3742. #8811: rp-pppoe - generated scripts commands use HOST pathnames,
  3743. not necessarily TARGET
  3744. #8846: Orphaned/missing toolchain borks eclipse plugin
  3745. #8856: python tornado runtime wasn't met on buildroot 2016.02
  3746. #8901: gcc failes to build if fortran is enabled
  3747. #8916: LDFLAGS pass to openssh
  3748. #8941: "ls" of an NFSv4 share only works when pumped through strace
  3749. #8946: Valgrind fails to build with stack protection turned on
  3750. #9021: Kodi - Broken: Illegal instruction (core dumped)
  3751. #9096: rootfs.ubi not created
  3752. #9111: glibc 2.23: libmvec.so not copied
  3753. #9176: minnowboard : USB not mounted
  3754. #9196: raspberry pi 3 default build seem broken
  3755. #9201: Permission denied make: *** [core-dependencies] Error 126 in
  3756. Buildroot-2015.08.1
  3757. #9216: log4cpp package build fails to build within install
  3758. #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
  3759. pressing buttons.
  3760. #9229: Firefly boot fails with: "failed to find part:boot"
  3761. #9256: [Config file] New device: Odroid-U2/U3
  3762. #9296: Buildroot Fails on applying patches
  3763. #9301: U-boot fails to build with default zynq_zed_defconfig configuration
  3764. #9316: U-boot fails to build if libssl-dev is not installed
  3765. #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
  3766. flash utility (tegrarcm)
  3767. #9326: Odroid-C2 build results in non-bootable image
  3768. #9336: Improve iconv support for external toolchain based builds
  3769. #9356: gdb package
  3770. #9366: no link rootfs.ext4 -> rootfs.ext2
  3771. #9371: openssl: download failes with "Only allow downloads from primary
  3772. download site" + local server
  3773. #9381: check-host-rpath issues
  3774. #9386: ubinize fails with or without custom config
  3775. 2016.08, Released September 1st, 2016
  3776. Minor fixes.
  3777. Toolchain: ARC tools updated to arc-2016.09-eng010.
  3778. Updated/fixed packages: libshout, luajit, mpd, mplayer
  3779. Issues resolved (http://bugs.buildroot.org):
  3780. #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
  3781. #8341: Getting EGL Error: Could not create the egl surface:..
  3782. #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
  3783. 2016.08-rc3, Released August 29th, 2016
  3784. Fixes all over the tree.
  3785. Toolchain: C++ support for the internal blackfin toolchain
  3786. re-enabled.
  3787. Architecture: Default to bf532 CPU variant for blackfin,
  3788. Fix flat one memory region support for m68k and disable flat
  3789. seperate data support because of compatibility issues.
  3790. Defconfigs: Minnowboard and Raspberrypi: Fix errors with
  3791. post-build scripts when systemd is used.
  3792. Zynq microzed/zc706/zed: Fix u-booot configuration.
  3793. netbsd-queue package extended and renamed to
  3794. musl-compat-headers. With this, a number of musl compatibility
  3795. patches are no longer needed.
  3796. Updated/fixed packages: aircrack-ng, android-tools, babeld,
  3797. bcusdk, binutils, boa, busybox, connman, cpupower,
  3798. docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
  3799. glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
  3800. imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
  3801. libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
  3802. libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
  3803. linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
  3804. neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
  3805. pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
  3806. quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
  3807. squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
  3808. trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
  3809. webkitgtk, wireshark, xdriver_xf86-video-intel
  3810. Issues resolved (http://bugs.buildroot.org):
  3811. #9101: Error on support/download/git with system git older than 1.8.4
  3812. #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
  3813. 2016.08-rc2, Released August 17th, 2016
  3814. Fixes all over the tree.
  3815. Toolchain: disable broken C++ support for internal blackfin
  3816. toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
  3817. to fix various issues.
  3818. System: Zoneinfo is available for the musl C library as well.
  3819. Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
  3820. blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
  3821. fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
  3822. inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
  3823. libical, libpjsip, libsidplay2, libunwindow, libxml2,
  3824. linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
  3825. openblas, openipmi, owfs, php, poco, procps, qt, quota,
  3826. sg3_utils, spidev_test, systemd-bootchart, thrift,
  3827. uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
  3828. xdriver_xf86-video-savage, xserver_xorg-server, xen
  3829. Issues resolved (http://bugs.buildroot.org):
  3830. #9136: make graph-size fails with "ValueError: too many values to..
  3831. #9151: qt: fix build with ALSA >= 1.1.x
  3832. #9156: qt: Fix missing runtime Qt3Support dependency
  3833. #9161: modsetting patch not applied to xserver 1.18.4
  3834. #9166: Missing overlays directory in VFAT image for raspberry pi 3
  3835. 2016.08-rc1, Released August 6th, 2016
  3836. Fixes all over the tree and new features.
  3837. Toolchain: Fortran support added. eglibc support removed, musl
  3838. support no longer experimental. Blackfin and Microblaze
  3839. support for internal uClibc-ng toolchain, m68k/coldfire
  3840. improvements. The check for unsafe (build host) directories
  3841. access (/usr/include and /usr/lib) is now enabled by default.
  3842. Unused locales are now purged by default to save space (and
  3843. the default list of locales shrunk). The option to control
  3844. this has now moved from the toolchain menu to system
  3845. configuration.
  3846. Legal info improvements: sources are now hardlinked instead of
  3847. copied if possible to save space. Patches and extra downloads
  3848. are also saved.
  3849. An experimental configuration knob (BR2_REPRODUCIBLE) has been
  3850. added to make the builds more reproducible (E.G. less
  3851. differences in the binary output between builds of the same
  3852. configuration). This is still work in progress.
  3853. An option to execute a custom script inside the fakeroot
  3854. environment used to the generate the filesystem (E.G. to tweak
  3855. permissions or similar) has been added.
  3856. Git support now supports git submodules if
  3857. <pkg>_GIT_SUBMODULES is enabled.
  3858. Hash files for integritry validation have been added for all
  3859. packages.
  3860. Scanpypi utility to help creating packages from the Python
  3861. package index (pypi) has been added.
  3862. The makedevs utility now has support for adding file
  3863. capabilities using extended attributes.
  3864. New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
  3865. development configs, Blackfin GDB simulator, Linksprite
  3866. pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
  3867. i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
  3868. MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
  3869. Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
  3870. demos. A number of defconfigs have been updated and extended
  3871. to generate SD card images. Synopsys HS38 VDK defconfig removed.
  3872. New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
  3873. alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
  3874. circus, dante, docker-containerd, docker-engine, domoticz,
  3875. efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
  3876. gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
  3877. jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
  3878. libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
  3879. libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
  3880. mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
  3881. odroid-scripts, omxplayer, openblas, openmpi, openzwave,
  3882. p7zip, pdbg, python-argh, python-dataproperty,
  3883. python-dateutil, python-dialog3, python-dicttoxml,
  3884. python-dominate, python-engineio, python-flask-jsonrpc,
  3885. python-flask-login, python-humanize, python-pathtools,
  3886. python-pathvalidate, python-pillow, python-prompt-toolkit,
  3887. python-pytablewriter, python-pytz, python-scapy3k,
  3888. python-sdnotify, python-socketio, python-tomako,
  3889. python-ubjson, python-u-msgpack, python-watchdog,
  3890. python-wcwidth, python-xlrd, python-xlsxwriter,
  3891. python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
  3892. sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
  3893. supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
  3894. tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
  3895. wiringpi, xen
  3896. Deprecated packages: ipkg, sstrip
  3897. Removed packages: sunxi-mali-prop
  3898. Issues resolved (http://bugs.buildroot.org):
  3899. #8931: segment fault when compile argp-help.c using aarch64-bu...
  3900. #8966: eglfs error. buildroot don't compile the library libeglfs.so
  3901. #8971: build for beaglebone fails
  3902. #8986: qt5imageformats fails to build on AArch64
  3903. #8991: grub2 fails to compile
  3904. #9001: Nodejs option not available
  3905. #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
  3906. #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
  3907. #9066: 8139TOO - faulty behaviour
  3908. #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
  3909. #9091: U-Boot fails to boot with large ramdisk
  3910. 2016.05, Released May 31st, 2016
  3911. Minor fixes.
  3912. External toolchain: Fix for symlink handling when copying
  3913. links to target.
  3914. Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
  3915. ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
  3916. lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
  3917. net-tools, openpowerlink, pulseview, rpm, tinyalsa,
  3918. xdriver_xf86-video-fbturbo, xserver_xorg-server
  3919. 2016.05-rc3, Released May 26th, 2016
  3920. Fixes all over the tree.
  3921. Tweaks for SSP handling for external toolchains.
  3922. Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
  3923. cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
  3924. gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
  3925. kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
  3926. libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
  3927. mpg123, mtr, openpgm, openpowerlink, oprofile, php,
  3928. postgresql, putty, python-service-identity, python-treq,
  3929. qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
  3930. ustr, valgrind, webkitgtk, libxml2, xorriso,
  3931. xserver_xorg-server
  3932. Issues resolved (http://bugs.uclibc.org):
  3933. #8936: Aircrack-ng - Alot of missing dependencies
  3934. 2016.05-rc2, Released May 17th, 2016
  3935. Fixes all over the tree.
  3936. Rootfs overlay handling now refuses to overwrite
  3937. /{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
  3938. even if these directories are present in the overlay.
  3939. External toolchain: Unbreak user provided libraries deployment
  3940. (BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
  3941. QEMU coldfire: Fix for signal handling kernel issue, enable
  3942. networking support.
  3943. Updated/fixed packages: android-tools, assimp, boost, gcc,
  3944. glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
  3945. jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
  3946. kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
  3947. mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
  3948. qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
  3949. 2016.05-rc1, Released May 10th, 2016
  3950. Fixes all over the tree and new features.
  3951. Architectures: new ARM variants: Cortex A17 and M4, improved
  3952. nonmmu (cortex-M) support, m68k has been re-enabled with
  3953. support for ColdFire. For x86, support for the i386 variant
  3954. has been dropped.
  3955. Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
  3956. deprecated. Go programming language support, Add Binutils 2.26
  3957. support. Old Sourcery PowerPC external toolchains removed,
  3958. Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
  3959. added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
  3960. New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
  3961. STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
  3962. Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
  3963. added for m68k, eXtensa-nommu and ColdFire.
  3964. Linux: use zImage by default on ARM, subversion repository
  3965. support (for u-boot as well).
  3966. New packages: aer-inject, android-tools, cannelloni,
  3967. cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
  3968. gmrender-resurrect, flannel, font-awesome, freeswitch, go,
  3969. go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
  3970. kodi-adsp-basic, kodi-adsp-freesurround,
  3971. kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
  3972. kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
  3973. kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
  3974. kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
  3975. kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
  3976. libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
  3977. lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
  3978. norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
  3979. python-autobahn, python-characteristic, python-crossbar,
  3980. python-cryptography, python-iniparse, python-iowait,
  3981. python-lmdb, python-pexpect, python-ptyprocess,
  3982. python-pyasn-modules, python-pygments, python-pymysql,
  3983. python-pynacl, python-pyopenssl, python-pysocks,
  3984. python-pytrie, python-rpi-gpio, python-service-identity,
  3985. python-setproctitle, python-shutilwhich, python-treq,
  3986. python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
  3987. qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
  3988. raptor, scrub, taskd, tegrarcm, turbolua, valijson,
  3989. wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
  3990. xdriver_xf86-video-amdgpu
  3991. Removed packages: foomatic-filters, python-m2crypto,
  3992. qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
  3993. Issues resolved (http://bugs.buildroot.org):
  3994. #6830: Qt5: no fonts are installed
  3995. #7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
  3996. #7580: Invalid filesystem in Pandaboard defconfig
  3997. #8346: wf111 package removes all kernel module dependencies
  3998. #8436: xserver_xorg-server Segmentation fault
  3999. #8736: IPV6 forced on in busybox
  4000. #8746: At startup system stops with 'cannot set terminal proces..
  4001. #8751: make fail [fio does not build on sh]
  4002. #8766: Compiling host-gcc-final-4.9.3 broken on i386
  4003. #8771: make savedefconfig modifies sources
  4004. #8781: Unable to build uboot for imx28evk
  4005. #8786: gdb fails to build with xz and expat support at the same
  4006. #8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
  4007. #8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
  4008. #8836: Can't select Vim in menuconfig
  4009. #8851: Make sure fio can compile with libaio support if it...
  4010. #8861: With buildroot 2016.02 trying to build for corei7-avx
  4011. fails while trying to build host-binutils
  4012. #8866: Making an USB flash bootable with extlinux build with
  4013. buildroot does not work
  4014. 2016.02, Released March 1st, 2016
  4015. Minor fixes, mostly security related.
  4016. Circular dependency issue with same-as-kernel linux-headers
  4017. option fixed.
  4018. Updated/fixed packages: bluez5_utils, heirloom-mailx,
  4019. imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
  4020. kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
  4021. python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
  4022. 2016.02-rc3, Released February 27th, 2016
  4023. Fixes all over the tree.
  4024. Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
  4025. where VFP is optional (but present on the specific hw). Fix
  4026. ARM variant selection for freescale_imx31_3stack_defconfig.
  4027. Ensure tarballs of downloaded git trees do not contain a
  4028. timestamp.
  4029. Clarify license of patches in COPYING.
  4030. Updated/fixed package: avahi, binutils, cairo, can-festival,
  4031. chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
  4032. erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
  4033. gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
  4034. jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
  4035. libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
  4036. mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
  4037. omniorb, openipmi, openobex, patch, pax-utils, perf,
  4038. pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
  4039. shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
  4040. trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
  4041. wpa_supplicant, xerces, zsh
  4042. Issues resolved (http://bugs.uclibc.org):
  4043. #8651: libMonoPosixHelper.so wrong link reference in buildroot..
  4044. 2016.02-rc2, Released February 18th, 2016
  4045. Fixes all over the tree.
  4046. Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
  4047. crash, backport of Xtensa .init/.fini literals handling.
  4048. glibc security patches for CVE-2014-8121, CVE-2015-1781
  4049. and CVE-2015-7547.
  4050. Defconfigs for Acmesystems Arietta g25 added.
  4051. Updated/fixed packages: binutils, boost, chrony, dovecot,
  4052. e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
  4053. libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
  4054. postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
  4055. sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
  4056. Issues resolved (http://bugs.uclibc.org):
  4057. #8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
  4058. #8606: Problem compiling on Arch Linux
  4059. #8681: kbd 2.0.3 does not build on rpi
  4060. 2016.02-rc1, Released February 10th, 2016
  4061. Fixes all over the tree and new features.
  4062. Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
  4063. arc-2015.12. Support for legacy uClibc dropped, default to
  4064. uClibc-ng instead. Added sys/queue.h implementation for MUSL
  4065. for compatibility. Updated versions of Code sourcery and
  4066. Linaro toolchains. MIPS Codescape toolchains added. Version
  4067. selection for preconfigured external toolchains removed.
  4068. New Defconfigs: ARM Juno r0/r1 development boards, Freescale
  4069. i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
  4070. A number of defconfigs have been extended to generate complete
  4071. system images using genimage.
  4072. Linux: Automatically patch timeconst.pl for <3.9 kernels,
  4073. which isn't compatible with modern perl versions, breaking the
  4074. build when building on recent (Fedora 23, Debian
  4075. Testing/Unstable, ..) distributions.
  4076. Makedevs utility now accepts textual (non-numerical) user and
  4077. group names.
  4078. Vagrant file to easily setup a working development environment
  4079. in a VM has been added.
  4080. Size-stats-compare script to compare rootfs sizes between
  4081. builds has been added.
  4082. Infozip package renamed to zip. EFL packages restructured.
  4083. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  4084. angularjs, apache, apr, argp-standalone, armadillo, arptables,
  4085. at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
  4086. bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
  4087. bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
  4088. clamav, cmake, collectd, connman, coreutils, cppcms, crda,
  4089. cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
  4090. dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
  4091. dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
  4092. dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
  4093. dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
  4094. elementary, elfutils, enlightenment, erlang, espeak, eudev,
  4095. eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
  4096. fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
  4097. firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
  4098. freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
  4099. gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
  4100. glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
  4101. gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
  4102. gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
  4103. gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
  4104. hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
  4105. imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
  4106. ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
  4107. iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
  4108. jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
  4109. jquery-sparkline, jquery-ui, jquery-ui-themes,
  4110. jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
  4111. keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
  4112. leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
  4113. libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
  4114. libedbus, libedit, libedje, libeet, libefreet, libeina,
  4115. libeio, libelementary, libembryo, libepoxy, libethumb, libev,
  4116. libevas, libevas-generic-loaders, libevdev, libevent, libffi,
  4117. libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4118. libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
  4119. libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
  4120. libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
  4121. libnss, liboauth, liboping, libpciaccess, libplist, libpng,
  4122. libraw, libraw1394, librsvg, libseccomp, libsecret,
  4123. libserialport, libsigc, libsigrok, libsigrokdecode,
  4124. libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
  4125. libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
  4126. libunwind, libupnpp, liburcu, libuv, libv4l, libva,
  4127. libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
  4128. lightning, lighttpd, linknx, linux-firmware, linux-fusion,
  4129. linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
  4130. lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
  4131. lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
  4132. luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
  4133. mesa3d, mesa3d-demos, mesa3d-headers, micropython,
  4134. micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
  4135. moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
  4136. monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
  4137. musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
  4138. netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
  4139. nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
  4140. odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
  4141. openldap, openntpd, openobex, openocd, openpgm,
  4142. open-plc-utils, openpowerlink, openssh, openssl, openswan,
  4143. openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
  4144. pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
  4145. perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
  4146. perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
  4147. polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
  4148. psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
  4149. python-alsaaudio, python-can, python-cffi, python-cherrypy,
  4150. python-httplib2, python-jinja2, python-lxml, python-m2crypto,
  4151. python-mako, python-msgpack, python-psutil, python-pyasn,
  4152. python-pycparser, python-pydal, python-pyftpdlib,
  4153. python-pyroute2, python-pyxml, python-pyzmq, python-requests,
  4154. python-serial, python-setuptools, python-six, python-spidev,
  4155. python-tornado, python-twisted, python-web2py, python-webpy,
  4156. python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
  4157. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  4158. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  4159. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  4160. qt5serialport, qt5svg, qt5webchannel, qt5webkit,
  4161. qt5webkit-examples, qt5websockets, qt5x11extras,
  4162. qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
  4163. readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
  4164. rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
  4165. sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
  4166. smack, snowball-init, socat, sp-oops-extract, sqlite,
  4167. squashfs, squeezelite, squid, sredird, sshfs,
  4168. start-stop-daemon, strace, strongswan, stunnel, subversion,
  4169. sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
  4170. sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
  4171. tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
  4172. trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
  4173. udpcast, unionfs, upmpdcli, usb_modeswitch,
  4174. usb_modeswitch_data, ustr, util-linux, vala, valgrind,
  4175. vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
  4176. wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
  4177. wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
  4178. xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
  4179. xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
  4180. xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
  4181. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4182. xfont_encodings, xfont_font-adobe-100dpi,
  4183. xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
  4184. xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
  4185. xfont_font-alias, xfont_font-arabic-misc,
  4186. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  4187. xfont_font-bh-lucidatypewriter-100dpi,
  4188. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  4189. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  4190. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  4191. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  4192. xfont_font-daewoo-misc, xfont_font-dec-misc,
  4193. xfont_font-ibm-type1, xfont_font-isas-misc,
  4194. xfont_font-jis-misc, xfont_font-micro-misc,
  4195. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  4196. xfont_font-misc-meltho, xfont_font-misc-misc,
  4197. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  4198. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  4199. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  4200. xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
  4201. xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
  4202. xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
  4203. ympd, zeromq, zic, znc, zsh,
  4204. New packages: acsccid, assimp, atkmm, autofs, bcm2835,
  4205. cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
  4206. edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
  4207. kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
  4208. libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
  4209. libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
  4210. mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
  4211. obsidian-cursors, openal, openbox, pangomm,
  4212. python-backports-abc, python-beautifulsoup4, python-cbor,
  4213. python-click, python-cssselect, python-ecdsa, python-html5lib,
  4214. python-idna, python-ipaddress, python-mistune, python-netaddr,
  4215. python-paho-mqtt, python-paramiko, python-pyparted,
  4216. python-pysmb, python-pyudev, python-singledispatch,
  4217. python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
  4218. sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
  4219. unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
  4220. Removed packages: libungif, python-pyxml,
  4221. Issues resolved (http://bugs.uclibc.org):
  4222. #7886: gettext: link failure with locally-installed libxml2
  4223. #7892: systemd-journald is broken
  4224. #8066: nodejs crashes when built with gcc 4.9
  4225. #8296: nodejs 0.12.7 - npm crashes (seg core dump)
  4226. #8501: gunzip fails to uncompress files
  4227. #8541: fail to build host-fakeroot-1.20.2
  4228. #8546: build instructions for raspberry pi don't work
  4229. #8571: strace for ARC compile error
  4230. #8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
  4231. #8616: Fail to build for raspberrypi_defconfig with big endian
  4232. #8621: sqlite package, properly enable readline
  4233. 2015.11, Released November 30th, 2015
  4234. Minor fixes.
  4235. Merged/seperate /usr handling is now also performed for
  4236. staging so cross-gdb / gdbserver can find the libraries.
  4237. Updated/fixed packages: autossh, conntrack-tools, dcron,
  4238. espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
  4239. libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
  4240. rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
  4241. zmqpp
  4242. Issues resolved (http://bugs.uclibc.org):
  4243. #8441: Invalid directory for X11 fonts in target (RPi2)
  4244. #8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
  4245. 2015.11-rc3, Released November 26th, 2015
  4246. Fixes all over the tree.
  4247. We have a new modern website!
  4248. Updated/fixed packages: apitrace, audiofile, autossh, bullet,
  4249. c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
  4250. fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
  4251. gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
  4252. guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
  4253. libfreeimage, libgsasl, libgtk3, libxml2, localedef,
  4254. lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
  4255. oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
  4256. sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
  4257. yajl, zmqpp
  4258. Issues resolved (http://bugs.uclibc.org):
  4259. #6872: gpsd: disabled on microblaze
  4260. #8321: invalid opcode error with minidlna and ffmpeg
  4261. #8336: Default systemd configuration fails to boot correctly in 2015-08
  4262. #8446: rpi-userland failed to build with glibc 2.22
  4263. 2015.11-rc2, Released November 19th, 2015
  4264. Fixes all over the tree.
  4265. LD_LIBRARY_PATH is no longer used to ensure host binaries find
  4266. their libraries, fixing issues on recent Fedora.
  4267. Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
  4268. with ${TARGET}-cc after the move to use a toolchain wrapper
  4269. for the internal toolchain.
  4270. Appy-patches.sh now correctly applies all files listed in
  4271. series files.
  4272. Fixes for merged /usr handling when a custom skeleton is used.
  4273. Updated/fixed packages: axfsutils, boost, busybox, dhcp,
  4274. directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
  4275. gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
  4276. libecore, libgudev, libnss, libpng, libserial, libssh2,
  4277. libuecc, libxml2, linux-headers, liquid-dsp, ltris,
  4278. lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
  4279. mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
  4280. polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
  4281. ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
  4282. ushare, wine, wpa_supplicant, x265,
  4283. xdriver_xf86-video-siliconmotion, zxing-cpp
  4284. Issues resolved (http://bugs.uclibc.org):
  4285. #4790: Running udhcpc on a system with NFS root kills NFS
  4286. #8456: Building host-pkgconf on Fedora 23 fails due to..
  4287. 2015.11-rc1, Released November, 7th 2015
  4288. Fixes all over the tree and new features.
  4289. Architectures:
  4290. - Support for sparc64 added (internal toolchain with glibc
  4291. only).
  4292. - Support for mips32r6 and mips64r6 added.
  4293. - Support for Intel Quark X1000 CPU.
  4294. - Switch to EABIhf by default on ARM when a VFP is available.
  4295. Toolchains:
  4296. - glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
  4297. uclibc-ng 1.0.8, host-gdb enabled on AArch64.
  4298. - The toolchain wrapper which was used only for external
  4299. toolchains is now also used for Buildroot internal
  4300. toolchains. This allowed to fix the ccache support, prepare
  4301. the way for top-level parallel build support and remove gcc
  4302. patches used to detect header/library path poisoning.
  4303. - Remove Analog Devices Blackfin toolchain 2012R2.
  4304. - Fix several Xtensa build failures by switching from
  4305. text-section-literals to auto-litpools.
  4306. - Enable MIPS64 support in uClibc-ng, use uClibc on ARC
  4307. rather than a specific fork.
  4308. - Linaro toolchains for ARM, ARMeb and AArch64 updated to
  4309. 2015.08. 2014.09 version is kept since 2015.08 only runs on
  4310. x86_64 hosts.
  4311. Bootloaders:
  4312. - Fix ARM64 support in U-Boot.
  4313. Defconfigs:
  4314. - Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
  4315. Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
  4316. OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
  4317. Synopsys AArch64 VDK virtual platform.
  4318. - Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
  4319. cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
  4320. mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
  4321. raspberrypi2, riotboard, snps_axs10*, wandboard.
  4322. - Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
  4323. calao_snowball_defconfig, gnublin, integrator926_defconfig.
  4324. Infrastructure:
  4325. - Support for fetching from Mercurial tags fixed.
  4326. - Introduce LINUX_NEEDS_MODULES, which allows to enforce
  4327. module support to be enabled in the kernel when a package
  4328. builds out-of-tree kernel modules (through the
  4329. pkg-kernel-module infrastructure or on its own).
  4330. - Improve the perl package infrastructure to automatically add
  4331. the dependency to the perl interpreter to target perl module
  4332. packages.
  4333. - Remove trailing slashes in <pkg>_SITE and addition of a
  4334. check to ensure such trailing slashes are no longer added.
  4335. - Extend the legal infrastructure to allow packages to declare
  4336. their actual source code. This is useful for packages for
  4337. which <pkg>_SOURCE points to pre-built binaries (as is the
  4338. case for external toolchains). The new <pkg>_ACTUAL_SOURCE
  4339. variable allows to point to the source code in such cases.
  4340. - Improved ccache support, thanks to the usage of a toolchain
  4341. wrapper for internal toolchain. Now a single cache directory
  4342. can be shared between different Buildroot builds.
  4343. - Addition of a 'graph-size' make targets, which generates a
  4344. PDF graph of per-package size of the root filesystem.
  4345. - Addition of <pkg>_EXCLUDES so that packages can request
  4346. certain parts of the source code tarball to not be
  4347. extracted. This feature is currently used by gcc and
  4348. toolchain-external.
  4349. - Packages can now use the <pkg>_PKGDIR variable, provided by
  4350. the package infrastructure, to reference their package
  4351. directory, instead of explicitly using package/<pkg>/.
  4352. Filesystems:
  4353. - Add high lz4 compression to squashfs.
  4354. - Simplification of shell profile files in the default
  4355. skeleton.
  4356. - Remove ftp user and /home/ftp from the skeleton, and let ftp
  4357. server packages create these when needed.
  4358. - Add support for /bin, /sbin and /lib to be symlinks to their
  4359. corresponding directories in /usr. This is enforced for
  4360. systemd configurations, and optional for other
  4361. configurations.
  4362. - Support for AXFS filesystem image generation added.
  4363. - New options to add extra space/inodes to ext2/3/4 images.
  4364. Updated/fixed packages:
  4365. adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
  4366. barebox, bash, batctl, bind, binutils, bluez_utils, boost,
  4367. bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
  4368. collectd, connman, conntrack-tools, coreutils, cpio,
  4369. cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
  4370. dhrystone, dillo, directfb, directfb-examples, dmraid,
  4371. dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
  4372. dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
  4373. elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
  4374. exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
  4375. flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
  4376. genimage, gettext, git, glib-networking, glmark2, gnupg2,
  4377. gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
  4378. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  4379. gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
  4380. gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
  4381. hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
  4382. inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
  4383. iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
  4384. kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
  4385. kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
  4386. kodi-pvr-stalker, kodi-pvr-vbox,
  4387. kodi-visualisation-waveforhue, less, lftp, libbluray,
  4388. libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
  4389. libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4390. libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
  4391. liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
  4392. libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
  4393. libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
  4394. libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
  4395. libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
  4396. linux, linux-firmware, linux-fusion, linux-headers,
  4397. lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
  4398. lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
  4399. lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
  4400. modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
  4401. mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
  4402. nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
  4403. openssl, openswan, openvpn, pango, parted, perl, perl-cross,
  4404. perl-crypt-openssl-random, perl-http-message,
  4405. perl-io-socket-ssl, perl-module-build, perl-mojolicious,
  4406. perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
  4407. perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
  4408. poco, polarssl, portaudio, portmap, postgresql, proftpd,
  4409. protobuf, protobuf-c, pulseaudio, python-configshell-fb,
  4410. python-networkmanager, python-numpy, python-pyparsing,
  4411. python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
  4412. python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
  4413. rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
  4414. samba4, sane-backends, sconeserver, sdl, sed, setools,
  4415. shairport-sync, shared-mime-info, sland, smartmontools,
  4416. softether, spice-protocol, sqlcipher, sqlite, squid,
  4417. strongswan, stunnel, subversion, sudo, sunxi-tools,
  4418. supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
  4419. tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
  4420. util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
  4421. vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
  4422. wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
  4423. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4424. xdriver_xf86-video-sis, xlib_libXi, xorg-server,
  4425. xtables-addons, xterm, xz, zic, znc, zsh
  4426. New packages:
  4427. axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
  4428. gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
  4429. ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
  4430. kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
  4431. libg7221, libhttpparser, libilbc, libldns, libmng,
  4432. libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
  4433. libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
  4434. micropython, micropython-libs, python-pyratemp,
  4435. python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
  4436. sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
  4437. x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
  4438. Removed packages:
  4439. blackbox (was deprecated), divine (merged in directfb),
  4440. kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
  4441. sawman (merged in directfb), schifra (marked broken since a
  4442. long time), texinfo (host variant only, no longer used), zxing
  4443. (replaced by zxing-cpp),
  4444. Issues resolved (http://bugs.uclibc.org):
  4445. #4099: cut utility from GNU coreutils works incorrect
  4446. #7772: libxml-parser-perl build failure: missing dependency
  4447. ExtUtils/MakeMaker
  4448. #7931: Default configuration for Cubieboard v1 is outdated
  4449. #8116: 2015.05-rc2 raspberrypi2_defconfig network interface
  4450. not coming up
  4451. #8246: X.org DRI2 build issue
  4452. #8256: pointing to /usr/bin/objcopy old version (x86) instead
  4453. of the generated one
  4454. #8266: mplayer build issue
  4455. #8281: pyrexc fails to run when path is too long
  4456. #8316: lttng-tools and lttng-babeltrace executables contain
  4457. bad RPATH pointing to host machine
  4458. #8331: kexec wants shutdown in /sbin, but systemd installs it
  4459. in /usr/sbin
  4460. #8361: Buildroot 2015.08.1 skeleton inittab overwritten by
  4461. busybox's version
  4462. #8366: libevent does not build
  4463. #8386: build failed with external toolchain
  4464. #8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
  4465. #8396: CCACHE initialization
  4466. #8401: gpsd 3.15 NMEA support
  4467. #8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
  4468. #8421: util-linux installs systemd files in output/target/home/
  4469. 2015.08, Released August 31st, 2015
  4470. Minor fixes.
  4471. OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
  4472. reintroduced as opencv.
  4473. Updated/fixed packages: bootutils, canfestival, cppcms,
  4474. curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
  4475. ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
  4476. ltrace, midori, network-manager, openssh, perl-file-listing,
  4477. perl-http-cookies, perl-http-daemon, perl-http-negotiate,
  4478. perl-www-robotrules, python-can, qt5base, qt5multimedia,
  4479. setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
  4480. x264, xserver_xorg-server, zyre
  4481. 2015.08-rc2, Released August, 24th 2015
  4482. Fixes all over the tree.
  4483. Toolchain: fix gcc build on NIOS-II.
  4484. Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
  4485. hybrid ISO image generation.
  4486. Architectures: add arm1136j-s variant.
  4487. Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
  4488. beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
  4489. c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
  4490. dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
  4491. guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
  4492. libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
  4493. librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
  4494. linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
  4495. netatalk, nodejs, ola, opencv, oprofile, php, poco,
  4496. postgresql, powertop, protobuf, protobuf-c, qt5base,
  4497. qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
  4498. sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
  4499. wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
  4500. Issues resolved (http://bugs.uclibc.org):
  4501. #8276: package/dropbear: symlink resolution incorrect
  4502. #8286: Error with buildroot
  4503. #8301: ldconfig parameter in Makefile
  4504. 2015.08-rc1, Released August, 5th 2015
  4505. Fixes all over the tree and new features.
  4506. Architectures:
  4507. - Refactor how the availability of an MMU is described.
  4508. - Minimal support for Cortex-M3
  4509. - Minimal support for AArch64 big-endian
  4510. Toolchains:
  4511. - Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
  4512. - Use uClibc-ng as the default uClibc version, instead of the
  4513. official uClibc, which hasn't done any release since 3+
  4514. years
  4515. - eglibc is now marked as deprecated
  4516. - GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
  4517. support for gcc 5.x added.
  4518. - Binutils: use Binutils 2.24 as the default, 2.25.x series
  4519. bumped to 2.25.1, remove old Binutils 2.22.
  4520. - Update ARC toolchain components to 2015.06
  4521. - Add support for Fortran when building gcc
  4522. Bootloaders:
  4523. - Support for using the kconfig configuration system in
  4524. U-Boot
  4525. New Defconfigs:
  4526. - VIA VAB-820/AMOS-820
  4527. - OLimex OLinuxino A20 Lime
  4528. - Many new defconfigs for Atmel evaluation boards:
  4529. at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
  4530. Xplained Ultra, sama5d3 Xplained.
  4531. - ACME Systems Aria G25
  4532. - WarPboard
  4533. - Altera Cyclone 5 Development Board
  4534. - Xilinx zc706
  4535. - ARC AXS101 and AXS103 Software Development Platforms
  4536. - Significant updates to Raspberry Pi / Raspberry Pi 2
  4537. Infrastructure:
  4538. - Buildroot takes better care now of generating predictable
  4539. permissions in the target filesystem. However, existing
  4540. permissions on a custom skeleton or rootfs overlay will no
  4541. longer be preserved. Therefore, it is necessary to add a
  4542. permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
  4543. required permissions.
  4544. - Add support for kconfig fragments.
  4545. - No longer pass --{enable,disable}-debug to autotools
  4546. packages depending on the value of
  4547. BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
  4548. whether we build with -g or not.
  4549. - Support for extracting archives in .lzma in the generic
  4550. package infrastructure.
  4551. - Remove random-seed file from the default skeleton, since
  4552. seeding the entropy pool with a known seed makes more harm
  4553. than good.
  4554. - In the CVS download helper, add support to use a date as
  4555. the version.
  4556. - Add support for a per-package <pkg>_STRIP_COMPONENTS
  4557. variable, which packages can use to specify how many path
  4558. components should be stripped when extracting the tarball.
  4559. - Addition of a 'kernel-module' package infrastructure, which
  4560. simplifies the packaging of external kernel modules. Many
  4561. existing packages are converted to use it.
  4562. - Allow bootloaders to be implemented in $(BR2_EXTERNAL)
  4563. - Remove /etc/securetty from the default skeleton.
  4564. - Migration of sysV initscripts from the default skeleton to
  4565. a package called 'initscripts', installed only when Busbox
  4566. init or sysvinit are used.
  4567. - Migration of the skeleton logic to a proper 'skeleton'
  4568. package.
  4569. - Addition of a 'linux-tools' infrastructure in the 'linux'
  4570. package, to support building user-space tools bundled
  4571. within the Linux kernel sources, such as perf and cpupower.
  4572. - Usage of backticks instead of make $(shell ...) to execute
  4573. shell commands. This allows to delay the evaluation of such
  4574. commands when actually needed, and not when expanding the
  4575. variables. It is useful to make 'make printvars' less
  4576. noisy, and as a preparation to support top-level parallel
  4577. build.
  4578. - Libtool .la files are not mungled for all package types,
  4579. instead of being handled only for packages using the
  4580. autotools-package infrastructure.
  4581. - Add mechanism to allow packages to express a dependency on
  4582. gcc versions. This is needed for packages that use C++11 or
  4583. C11 support for example.
  4584. Important package updates:
  4585. - Complete rework of the matchbox packaging
  4586. - Lots of fixes in packages for compatibility with musl and
  4587. gcc 5.
  4588. - Hash files added to a large number of packages.
  4589. - Update a significant number of packages to use a new
  4590. hosting, after the announcement of Google Code and
  4591. Gitorious closing.
  4592. - Major packages needed for SELinux support have been merged,
  4593. but the support is not complete yet.
  4594. - Significant update of OpenCV to version 3.0, and addition
  4595. of lots of eatures.
  4596. - Significant update of all packages supporting the GPU and
  4597. VPU of i.MX ARM processors.
  4598. - Addition of systemd support in a significant number of
  4599. packages.
  4600. - Qt5 updated to 5.5.0
  4601. - Use modular X.org server by default instead of KDrive
  4602. Filesystems:
  4603. - Complete overhaul of the iso9660 support. Now allows to use
  4604. directly IS9660 as the root filesystem format and not only
  4605. an initrd, and supports Grub 2 and isolinux in addition to
  4606. Grub.
  4607. Updated packages: a10disp, agentpp, apache, at91bootstrap3,
  4608. audit, barebox, bc, bind, bmon, boost, btrfs-progs,
  4609. ca-certificates, can-utils, ccache, cloog, collectd, connman,
  4610. coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
  4611. dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
  4612. e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
  4613. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4614. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
  4615. eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
  4616. file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
  4617. gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
  4618. gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
  4619. i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
  4620. kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
  4621. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4622. kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
  4623. libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
  4624. libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
  4625. libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
  4626. libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
  4627. libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
  4628. libunistring, libupnp, libuv, libv4l, libva,
  4629. libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
  4630. linux-firmware, linux-headers, live555, ltrace, lua,
  4631. lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
  4632. lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
  4633. modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
  4634. mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
  4635. nodejs, ntp, ola, opencv, openldap, openssh, openssl,
  4636. openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
  4637. perl-cross, perl-encode-locale, perl-io-socket-ssl,
  4638. perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
  4639. perl-xml-libxml, php, pinentry, polarssl, postgresql,
  4640. pulseview, pure-ftpd, python, python-dpkt, python-lxml,
  4641. python-networkmanager, python-pyinotify, python-pypcap,
  4642. python-tornado, qextserialport, qt, qt5, rapidjson, redis,
  4643. rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
  4644. snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
  4645. sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
  4646. tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
  4647. usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
  4648. weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
  4649. xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
  4650. xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
  4651. xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
  4652. xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
  4653. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  4654. xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
  4655. xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
  4656. xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
  4657. xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
  4658. zic.
  4659. New packages: angularjs, atf, audit, c-icap, c-icap-modules,
  4660. cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
  4661. jquery-datetimepicker, kodi-audioencoder-modplug,
  4662. kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
  4663. kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
  4664. kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
  4665. kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
  4666. kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
  4667. kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
  4668. kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
  4669. kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
  4670. kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
  4671. kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
  4672. kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
  4673. kodi-screensaver-pingpong, kodi-screensaver-pyro,
  4674. kodi-screensaver-stars, kodi-visualisation-shadertoy,
  4675. kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
  4676. kodi-visualisation-waveform, kvmtool, kyua, libfm,
  4677. libfm-extra, libplatform, librtas, libsodium, libsquish,
  4678. libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
  4679. moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
  4680. python-pycli, python-pydal, python-pyyaml, python-web2py,
  4681. qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
  4682. rtl8821au, sepolgen, setools, skeleton, stm32flash,
  4683. webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
  4684. Deprecated packages: webkitgtk, libgail, eglibc support in
  4685. glibc package.
  4686. Issues resolved (http://bugs.uclibc.org):
  4687. #4291: Segmentation fault with all binaries that use threads
  4688. when compiled with gcc 4.6
  4689. #6944: building toolchain for sh4 fails
  4690. #7592: Buildroot GCC: -lto requires plugin support in ranlib
  4691. #7628: Python SSL does not get built for Raspberry Pi
  4692. #7682: Missing dependencies for NFS
  4693. #7742: dhcp lacks important features when BR2_ENABLE_DEBUG
  4694. #7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
  4695. #7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
  4696. #7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
  4697. #7971: python-flask, python-werkzeug. No module named zlib
  4698. #7981: Target file system skeleton permissions hazard
  4699. #8006: rpcdebug in nfs-utils built for the host
  4700. #8036: alsa-lib headers problem that prevents to compile alsa
  4701. dependent projects
  4702. #8081: systemd init system: /tmp is not mode 1777
  4703. #8121: php opcache extension doesn't get installed
  4704. #8151: x86-64 make fails with ncurses 5.9
  4705. #8156: pkg-kconfig infra broken for *-update-{config, defconfig}
  4706. #8161: default /bin/sh symlink to busybox is full path and not relative
  4707. #8171: glamor missing
  4708. #8191: Request update support for the cubieboard series
  4709. #8201: Important security upgrades for node.js
  4710. 2015.05, Released May 31st, 2015
  4711. Minor fixes.
  4712. Updated/fixed packages: conntrack-tools, directfb, fio, flite,
  4713. gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
  4714. libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
  4715. lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
  4716. python3, sconeserver, udpcast, upmpdcli
  4717. 2015.05-rc3, Released May 22nd, 2015
  4718. Several fixes, mainly related to static linking.
  4719. Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
  4720. autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
  4721. enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
  4722. google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
  4723. iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
  4724. libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
  4725. libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
  4726. linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
  4727. mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
  4728. php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
  4729. qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
  4730. tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
  4731. ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
  4732. wvstreams, xmlstarlet, zeromq, zmqpp
  4733. New packages: c-periphery
  4734. Issues resolved (http://bugs.uclibc.org):
  4735. #8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
  4736. #8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
  4737. #8126: exim lacks plaintext and cram-md5 auth
  4738. 2015.05-rc2, Released May 11th, 2015
  4739. Minor fixes.
  4740. Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
  4741. issues. Context functions enabled for uClibc snapshot /
  4742. uClibc-NG.
  4743. Architectures: Endian handling symbol for Xtensa, binutils
  4744. fixes.
  4745. Infrastructure: Fix for kernel module stripping when
  4746. localversion contains spaces.
  4747. Updated/fixed packages: at, autoconf-archive, binutils,
  4748. cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
  4749. gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
  4750. ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
  4751. xlib_libXfont
  4752. Issues resolved (http://bugs.uclibc.org):
  4753. #8086: Cannot select systemd as init with Linaro 2014.09...
  4754. 2015.05-rc1, Released May 4th, 2015
  4755. Fixes all over the tree and new features.
  4756. Architectures: Removed AVR32 support, deprecate SH64, added
  4757. support for steamroller, corei7-avx and core-avx2 x86
  4758. variants.
  4759. Toolchains: IPv6 and Largefile support now enforced for
  4760. uClibc. Corresponding Kconfig symbols removed.
  4761. External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
  4762. CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
  4763. external toolchains are now detected and blacklisted.
  4764. Internal toolchain support for Nios2 added, Blackfin
  4765. removed. Aarch64 and sh musl support. uClibc-ng support added.
  4766. Libatomic is now handled for internal and external
  4767. toolchains. Link time optimization (LTO) support.
  4768. New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
  4769. Auto, Raspberry Pi 2, RIoTboard,
  4770. Infrastructure: Hashes for a large number of packages have
  4771. been added. Missing hashes now stop the build unless
  4772. explicitly disabled.
  4773. Spaces and colons (:) are now supported in package
  4774. versions. Dependencies can now be listed for the patch step
  4775. (<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
  4776. extensions infrastructure has been added.
  4777. Makedevs now has a recursive (r) option.
  4778. The variable containing the list of packages to build has been
  4779. renamed from TARGETS to PACKAGES.
  4780. Make external-deps / legal-info / source / source-check have
  4781. been reimplemented using the package infrastructure, so their
  4782. output/behaviour may differ from earlier (some packages were
  4783. not included in the past).
  4784. The old insecure DES password encoding is no longer supported.
  4785. U-Boot patch option now support direct references to patch
  4786. files and URLs in addition to directories of patches. The
  4787. i.MX28 SD format (u-boot.sd) is now supported.
  4788. Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
  4789. alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
  4790. bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
  4791. btrfs-progs, busybox, ca-certificates, cairo, can-utils,
  4792. canfestival, ccache, chrony, civetweb, clamav, cmake,
  4793. collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
  4794. cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
  4795. dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
  4796. dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
  4797. dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
  4798. libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
  4799. exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
  4800. fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
  4801. gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
  4802. glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
  4803. gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
  4804. gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
  4805. hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
  4806. ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
  4807. iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
  4808. kismet, kmod, kodi-audioencoder-flac,
  4809. kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
  4810. libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
  4811. libdrm, libdvbsi, libebml, libecore, libedit, liberation,
  4812. libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
  4813. libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
  4814. libinput, libiscsi, libksba, liblinear, libmatroska,
  4815. libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
  4816. libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
  4817. libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
  4818. libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
  4819. libusb, libuv, libva-intel-driver, libva, libvncserver,
  4820. libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
  4821. lighttpd, linknx, linphone, linux-firmware, linux-headers,
  4822. linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
  4823. lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
  4824. lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
  4825. luarocks, lvm2, lxc, make,
  4826. matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
  4827. matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
  4828. minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
  4829. monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
  4830. mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
  4831. neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
  4832. nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
  4833. opencv, openldap, openntpd, openocd, openssh, openssl,
  4834. openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
  4835. pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
  4836. perl-io-socket-ssl, perl-json-tiny, perl-module-build,
  4837. perl-mojolicious, perl-net-ssleay, perl-path-tiny,
  4838. perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
  4839. pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
  4840. pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
  4841. python-{cheetah,coherence,django,markdown,netifaces,pam,six},
  4842. python-tornado, python-twisted, python-zope-interface, python,
  4843. python3, qemu, qt, qt5, qt5base, qt5multimedia,
  4844. qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
  4845. rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
  4846. rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
  4847. sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
  4848. smcroute, snmppp, socat, socketcand, sofia-sip, sox,
  4849. spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
  4850. strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
  4851. systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
  4852. tiff, tinyalsa, tn5250, transmission, trinity, tslib,
  4853. tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
  4854. usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
  4855. webp, weston, wget, which, whois, wireless-regdb,
  4856. wireless_tools, wireshark, wpa_supplicant, wvstreams,
  4857. xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
  4858. xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
  4859. xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
  4860. xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
  4861. xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
  4862. xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
  4863. xapp_xmore, xcb-util-image, xcb-util-keysyms,
  4864. xdata_xcursor-themes,
  4865. xdriver_xf86-input-{evdev,keyboard,synaptics,void},
  4866. xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
  4867. xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
  4868. xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
  4869. xfont_font-util, xkeyboard-config,
  4870. xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
  4871. xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
  4872. xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
  4873. xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
  4874. New packages: apache, autoconf-archive, batctl,
  4875. bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
  4876. dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
  4877. imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
  4878. leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
  4879. libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
  4880. mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
  4881. openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
  4882. perl-db-file, perl-digest-{hmac,sha1},
  4883. perl-encode-{detect,locale}, perl-file-{listing,util},
  4884. perl-html-{parser,tagset}, perl-http-cookies,
  4885. perl-http-{daemon,date,message,negotiate}, perl-io-html,
  4886. perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
  4887. perl-mailtools, perl-mime-base64, perl-net-{dns,http},
  4888. perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
  4889. perl-www-robotrules, powertop, pulseview,
  4890. python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
  4891. qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
  4892. unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
  4893. xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
  4894. xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
  4895. xproto_xproxymanagementprotocol
  4896. Removed packages: gtk2-theme-hicolor
  4897. Deprecated packages: samba
  4898. Issues resolved (http://bugs.uclibc.org):
  4899. #7478: Multiple chosen python modules are not built due to...
  4900. #7508: Use of BR2_EXTERNAL and dependencies to existing packages
  4901. #7676: Package procps-ng installs binaries to nonsensical folder
  4902. #7724: Startx is not installed in the target
  4903. #7760: botan: wrong prefix in botan-1.10.pc
  4904. #7826: Building of cdparanoia
  4905. #7844: Lua with hard-float on MIPS by buildroot doesn't work
  4906. #7874: X.org configure error
  4907. #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
  4908. #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
  4909. #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
  4910. #7976: mkuser script fails with: user already exists with...
  4911. #8011: When building only busybox and strace, strace fails...
  4912. #8016: collectd fails to build, network.c:171:19: error:...
  4913. #8041: error on building libcurl7.42.0
  4914. 2015.02, Released March 1st, 2015
  4915. Minor fixes.
  4916. Updated/fixed packages: civetweb, ding-libs,
  4917. directfb-examples, glibc, gnupg, gnupg2, gpm,
  4918. gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
  4919. libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
  4920. libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
  4921. rpi-firmware, shared-mime-info, vlc, vorbis-tools,
  4922. xcb-util-keysyms
  4923. Removed packages: libgc
  4924. 2015.02-rc3, Released February 24th, 2015
  4925. Minor fixes.
  4926. Cmake and rebar (erlang) infrastructure fixes.
  4927. Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
  4928. evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
  4929. make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
  4930. qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
  4931. 2015.02-rc2, Released February 15th, 2015
  4932. Minor fixes.
  4933. raspberrypi: fix kernel sha1 for DT variant.
  4934. Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
  4935. libsepol, libssh2, mplayer, ntp, openvmtools, python3,
  4936. qt5base, qt5connectivity, xserver_xorg-server
  4937. 2015.02-rc1, Released February 8th, 2015
  4938. Fixes all over the tree and new features.
  4939. Static/shared library handling reworked. This is now a
  4940. tristate (shared only / shared and static / static
  4941. only). Default is now shared only to speed up the
  4942. build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
  4943. The toolchain (internal and external) will now warn when an
  4944. unsafe library or header path is used (such as /usr/include or
  4945. /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
  4946. under build options this instead becomes an error.
  4947. A installation path issue with the internal musl toolchain
  4948. support has been fixed so it is now possible to reuse it as an
  4949. external toolchain.
  4950. Architectures: Freescale E5500 and E6500 PowerPC support
  4951. added, deprecated MIPS 1/2/3/4 support removed.
  4952. New defconfigs: Freescale p2020ds, MIPS creator CI20,
  4953. Raspberrypi with DT, UDOO Quad.
  4954. 'make <foo>_defconfig' now saves the path to the defconfig in
  4955. the .config, so a 'make savedefconfig' automatically updates
  4956. it.
  4957. Infrastructure for packages using the Erland rebar tool has
  4958. been added.
  4959. Hashes for a large number of packages have been added. Hashes
  4960. are now checked for both target and host packages.
  4961. The system menu now has an option to automatically configure a
  4962. network interface through DHCP at bootup.
  4963. The default filesystem skeleton now uses a separate tmpfs for
  4964. /run instead of a symlink to /tmp/ for security reasons / to
  4965. protect against conflicts with user generated temporary files.
  4966. BR2_EXTERNAL is now exported to post-build and post-image
  4967. scripts.
  4968. New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
  4969. ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
  4970. erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
  4971. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4972. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
  4973. erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
  4974. gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
  4975. janus-gateway, kodi, kodi-audioencoder-flac,
  4976. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4977. kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
  4978. libselinux, libsemanage, libserialport, libsigro,
  4979. libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
  4980. libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
  4981. mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
  4982. openldap, python-alsaaudio, python-certifi, python-cheetah,
  4983. python-coherence, python-django, python-docopt, python-enum,
  4984. python-enum34, python-flask, python-gobject, python-httplib2,
  4985. python-ipaddr, python-itsdangerous, python-jinja,
  4986. python-markdown, python-markupsafe, python-networkmanager,
  4987. python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
  4988. python-pysendfile, python-pyxb, python-requests, python-six,
  4989. python-twisted, python-webpy, python-werkzeug,
  4990. python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
  4991. start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
  4992. xtables-addons
  4993. Removed packages (target): bison, distcc, gob2, m4
  4994. Issues resolved (http://bugs.uclibc.org):
  4995. #7556: make interactive CLI optional for nftables
  4996. #7730: Error while connecting Qt Cretaor to device
  4997. #7766: logrotate default gzip path is usually wrong
  4998. #7790: Invalid ext4 image generated by Buildroot
  4999. 2014.11, Released December 1st, 2014
  5000. Minor fixes.
  5001. Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
  5002. current working directory isn't searched.
  5003. Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
  5004. parted, shairport-sync, util-linux, xapp_bdftopcf,
  5005. xserver_xorg-server
  5006. 2014.11-rc3, Released November 28th, 2014
  5007. Fixes all over the tree.
  5008. System: File permissions of /etc/random-seed made more
  5009. restrictive.
  5010. Toolchain: Various fixes related to locale handling, a fix for
  5011. building the toolchain wrapper on MIPS.
  5012. Updated/fixed packages: bind, binutils. botan, btrfsprogs,
  5013. clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
  5014. gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
  5015. libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
  5016. linux-headers, mpdecimal, mpg123, network-manager, nfstables,
  5017. nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
  5018. sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
  5019. xl2tp, xserver_xorg-server
  5020. Issues resolved (http://bugs.uclibc.org):
  5021. #7670: Fails to build mpc-1.0.2 on latest Cygwin
  5022. 2014.11-rc2, Released November 21st, 2014
  5023. Fixes all over the tree.
  5024. Inittab tweaks for shutdown handling (busybox and sysvinit).
  5025. Updated/fixed packages: aircrack-ng, botan, canfestival,
  5026. clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
  5027. erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
  5028. libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
  5029. mysql, ndisc6, nodejs, omniorb, perl-cross, php,
  5030. python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
  5031. rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
  5032. tstools, tzdata, wireshark, x264
  5033. Issues resolved (http://bugs.uclibc.org):
  5034. #7646: strftime on datetime not works on python3
  5035. 2014.11-rc1, Released November 12th, 2014
  5036. Fixes all over the tree and new features.
  5037. Toolchains: Use -mcpu / -march instead of -mtune. Support
  5038. additional ARC and sparc variants. Updated Code sourcery
  5039. and Linaro external toolchains.
  5040. Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
  5041. powerpc64 pseries added and a number of updates to the
  5042. existing configurations.
  5043. Infrastructure: Buildroot is now less noisy when built with
  5044. the silent option (make -s).
  5045. A number of package infrastructure variables have been renamed
  5046. from *_OPT to *_OPTS for constency. Buildroot will complain if
  5047. the old names are used to assist in updating out of tree
  5048. packages.
  5049. Fixes for host systems where bash isn't located in /bin, and
  5050. older systems not supporting mktemp --tmpdir.
  5051. Various cleanups of users/groups in the default skeleton.
  5052. There is now an option to choose what shell /bin/sh points to.
  5053. Documentation: Various updates to the user manual. The
  5054. asciidoc documentation handling has now been extended so it
  5055. can be used by (BR2_EXTERNAL) packages.
  5056. Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
  5057. alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
  5058. argus, arptables, at, atftp, atk, attr, audiofile, aumix,
  5059. automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
  5060. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5061. bluez_utils, bmon, boost, bootutils, bridge-utils,
  5062. btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
  5063. ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
  5064. cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
  5065. collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
  5066. cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
  5067. czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
  5068. dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
  5069. dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
  5070. dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
  5071. e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
  5072. enlightenment, enscript, erlang, espeak, ethtool, eudev,
  5073. evemu, evtest, exfat, exfat-utils, exim, expat, expect,
  5074. explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
  5075. fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
  5076. flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
  5077. fontconfig, foomatic-filters, freerdp, freescale-imx,
  5078. freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
  5079. genimage, genpart, genromfs, geoip, gettext, giblib, git,
  5080. glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
  5081. gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
  5082. gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
  5083. gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
  5084. gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
  5085. gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
  5086. gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
  5087. heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
  5088. hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
  5089. imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
  5090. intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
  5091. iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
  5092. jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
  5093. jquery-ui-themes, jquery-validation, jsmin, json-c,
  5094. json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
  5095. kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
  5096. lesstif, lftp, libaio, libao, libarchive, libargtable2,
  5097. libass, libassuan, libatasmart, libbluray, libbsd, libcap,
  5098. libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
  5099. libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
  5100. libdvdnav, libecore, libedbus, libedit, libedje, libeet,
  5101. libelementary, libelf, libenca, libethumb, libevas,
  5102. libevas-generic-loaders, libevent, libexif, libeXosip2,
  5103. libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
  5104. libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
  5105. libinput, libiscsi, libjson, libksba, liblockfile,
  5106. liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
  5107. libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
  5108. libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
  5109. libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
  5110. libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
  5111. libraw, libreplaygain, libroxml, librsvg, librtlsdr,
  5112. libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
  5113. libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
  5114. libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
  5115. libungif, liburcu, libusb, libuv, libv4l, libva,
  5116. libva-intel-driver, libvncserver, libvorbis, libvpx,
  5117. libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
  5118. libxslt, lighttpd, linenoise, linknx, links, linphone,
  5119. linux-firmware, linux-fusion, linux-headers, linux-pam,
  5120. linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
  5121. localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
  5122. lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
  5123. lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
  5124. lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
  5125. lua-ev, luajit, luajson, lualogging, lua-messagepack,
  5126. lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
  5127. luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
  5128. lzma, m4, madplay, make, makedevs, Makefile.in,
  5129. matchbox-common, matchbox-desktop, matchbox-fakekey,
  5130. matchbox-keyboard, matchbox-lib, matchbox-panel,
  5131. matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
  5132. media-ctl, mediastreamer, memcached, memstat, memtester,
  5133. mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
  5134. modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
  5135. mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
  5136. musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
  5137. ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
  5138. netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
  5139. ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
  5140. nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
  5141. on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
  5142. openocd, openpowerlink, openssh, openssl, openswan,
  5143. opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
  5144. opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
  5145. pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
  5146. perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
  5147. perl-module-build, perl-mojolicious, perl-net-ssleay,
  5148. perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
  5149. php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
  5150. php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
  5151. pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
  5152. pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
  5153. pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
  5154. popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
  5155. pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
  5156. psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
  5157. python-dialog, python-ipy, python-keyring, python-mad,
  5158. python-netifaces, python-numpy, python-protobuf, python-pyasn,
  5159. python-pyparsing, python-pyro, python-pyusb, python-serial,
  5160. python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
  5161. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  5162. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  5163. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  5164. qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
  5165. qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
  5166. quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
  5167. rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
  5168. rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
  5169. ruby, samba, sam-ba, samba4, sane-backends, schifra,
  5170. sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
  5171. sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
  5172. setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
  5173. slang, slirp, smcroute, smstools3, snmppp,
  5174. snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
  5175. speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
  5176. squid, sredird, startup-notification, strace, stress,
  5177. strongswan, stunnel, subversion, sudo, sunxi-boards,
  5178. sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
  5179. systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
  5180. tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
  5181. tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
  5182. tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
  5183. upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
  5184. usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
  5185. vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
  5186. webrtc-audio-processing, weston, wget, whois, wireless-regdb,
  5187. wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
  5188. xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
  5189. xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
  5190. xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
  5191. xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
  5192. xdriver_xf86-video-vmware, xenomai, xerces,
  5193. xfont_font-adobe-{100,75}dpi,
  5194. xfont_font-adobe-utopia-{100dpi,75dpi,type1},
  5195. xfont_font-alias, xfont_font-arabic-misc,
  5196. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  5197. xfont_font-bh-lucidatypewriter-100dpi,
  5198. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  5199. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  5200. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  5201. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  5202. xfont_font-daewoo-misc, xfont_font-dec-misc,
  5203. xfont_font-ibm-type1, xfont_font-isas-misc,
  5204. xfont_font-jis-misc, xfont_font-micro-misc,
  5205. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  5206. xfont_font-misc-meltho, xfont_font-misc-misc,
  5207. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  5208. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  5209. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  5210. xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
  5211. xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
  5212. xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
  5213. xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
  5214. xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
  5215. xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
  5216. xproto_xcmiscproto, xproto_xextproto, xscreensaver,
  5217. xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
  5218. znc, zsh, zxing
  5219. New packages: adwaita-icon-theme, am335x-pru-package,
  5220. bcache-tools, biosdevname, botan, canfestival, clamav,
  5221. cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
  5222. gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
  5223. libdvbcsa, libgtk3, libphidget, libshout, libunistring,
  5224. libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
  5225. netcat-openbsd, nginx, odhcploc, openvmtools,
  5226. phidgetwebservice, pps-tools, pure-ftpd,
  5227. python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
  5228. qt5location, shairport-sync, spidev_test, targetcli-fb,
  5229. tinyalsa, trinity, x264, yaml-cpp, ympd
  5230. Removed packages: libelf
  5231. Issues resolved (http://bugs.uclibc.org):
  5232. #261: New package: wxWidgets
  5233. #325: New package: ratpoison
  5234. #405: New package: OpenVZ tools
  5235. #1309: New package: rdiff-backup
  5236. #3427: New package: nginx
  5237. #3655: New package: libav
  5238. #3991: New Package: open-vm-tools (Vmware Tools)
  5239. #6878: dmraid: disabled on ARC
  5240. #6950: Full unicode support in ncurses
  5241. #7010: jamvm builds and runs fine under mips (be)
  5242. #7088: elfutils on Blackfin doesn't build
  5243. #7142: ecryptfs needs getent to run
  5244. #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
  5245. #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
  5246. #7352: [2014.08-rc3] diffutils-3.3 failed on building
  5247. #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
  5248. #7364: monit builds a static application, even though BR2_PREFER_...
  5249. #7370: ngrep - requires --with-pcap-includes fully defined to find...
  5250. #7442: rootfs remount does not work as expected with sysvinit
  5251. #7448: Having export MACHINE="something" breaks glibc build on IMX6...
  5252. #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
  5253. #7574: quota-4.01 fails to build statically
  5254. 2014.08, Released September 1st, 2014
  5255. Minor manual fixes/additions.
  5256. Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
  5257. lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
  5258. libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
  5259. perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
  5260. php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
  5261. uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
  5262. xscreensaver, yajl
  5263. Issues resolved (http://bugs.uclibc.org):
  5264. #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
  5265. 2014.08-rc3, Released August 26th, 2014
  5266. Minor fixes.
  5267. User manual update / restructuring.
  5268. Updated/fixed packages: cairo, ecryptfs-utils, gettext,
  5269. gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
  5270. lbreakout2, libevas-generic-loaders, libftdi, libinput,
  5271. libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
  5272. thrift, tvheadend, usb_modeswitch, xmlstarlet,
  5273. Issues resolved (http://bugs.uclibc.org):
  5274. #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
  5275. #7322: libgomp dependency issue with imagemagick
  5276. #7328: Git dl of versions in x/y broken
  5277. 2014.08-rc2, Released August 18th, 2014
  5278. Fixes all over the tree.
  5279. User manual restructured / reworked.
  5280. Toolchain: Fix for C++ exceptions / pthread_exit() on
  5281. uClibc/glibc, C++-11 features with uClibc.
  5282. Updated/fixed packages: bandwidthd, bluez5_utils, empty,
  5283. espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
  5284. infozip, libcuefile, libeml, libnftl, localedef, ltrace,
  5285. matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
  5286. oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
  5287. qt, subversion, synergy, systemd, tar, tftpd, webkit,
  5288. xapp_rstart, xbmc, xbmc-pvr-addons
  5289. Issues resolved (http://bugs.uclibc.org):
  5290. #7124: Use BR toolchain externally results a non-bootable...
  5291. #7208: Glibc C++ aplications crash if they use exceptions
  5292. #7250: Cannot build with -std=c++11
  5293. #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
  5294. #7286: systemd 215 doesn't build
  5295. 2014.08-rc1, Released August 8th, 2014
  5296. Fixes all over the tree and new features.
  5297. Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
  5298. Improved altivec / SPE /atomic instructions
  5299. handling. Additional PowerPC CPU variants added.
  5300. Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
  5301. qemu-system-xtensa, qemu-aarch64-virt added. A number of
  5302. tweaks to existing ones. lpc32xx defconfigs removed.
  5303. Toolchain: Microblaze support for internal musl toolchain.
  5304. Default to GCC 4.8 for internal toolchain, remove deprecated
  5305. 4.3 and 4.6 versions.
  5306. External CodeSourcery / Linaro toolchain updates, option to
  5307. copy gconv libraries for external toolchains.
  5308. Infrastructure: graph-depends: misc fixes, transitive
  5309. dependencies are not drawn by default. Download handling is
  5310. now done using helper scripts. Integrity of downloads can now
  5311. be verified using sha* hashes. Subversion download now uses
  5312. peg revisions for robustness.
  5313. Legal-info: License info of local or overridden packages are
  5314. saved as well. Toolchain packages are also taken into account.
  5315. autotools: Static linking with libtool / v1.5 improvements.
  5316. Gettextize support, similar to autoreconf.
  5317. kconfig package infrastructure added.
  5318. Misc: Version selection for busybox dropped.
  5319. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  5320. alsamixergui, argus, armadillo, at, atftp, atk, avahi,
  5321. avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
  5322. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5323. bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
  5324. busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
  5325. ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
  5326. collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
  5327. cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
  5328. dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
  5329. dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
  5330. distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
  5331. dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
  5332. e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
  5333. enscript, espeak, ethtool, eudev, evemu, exim, expedite,
  5334. explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
  5335. fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
  5336. flex, flot, fltk, fontconfig, freerdp, freescale-imx,
  5337. freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
  5338. giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
  5339. gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
  5340. gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
  5341. gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
  5342. gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
  5343. imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
  5344. ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
  5345. jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
  5346. kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
  5347. lftp, libaio, libarchive, libargtable2, libart, libatasmart,
  5348. libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
  5349. libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
  5350. libeXosip2, libedit, liberation, libesmtp, libev, libevas,
  5351. libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
  5352. libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
  5353. libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
  5354. libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
  5355. libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
  5356. libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
  5357. librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
  5358. libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
  5359. libxml2, libyaml, links, linux-firmware, linux-fusion,
  5360. linux-headers, linux-pam, lite, live555, lm-sensors,
  5361. lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
  5362. ltris, lua-messagepack, luainterpreter, luajit, luaposix,
  5363. luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
  5364. mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
  5365. modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
  5366. mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
  5367. netatalk, netplug, network-manager, nftables, ngircd, nodejs,
  5368. nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
  5369. openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
  5370. opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
  5371. pax-utils, pcmanfm, perf, perl, perl-module-build, php,
  5372. pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
  5373. prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
  5374. python,
  5375. python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
  5376. python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
  5377. qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
  5378. qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
  5379. read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
  5380. rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
  5381. samba, samba4, sane-backends, sawman, sconeserver, setserial,
  5382. sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
  5383. socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
  5384. startup-notification, statserial, strongswan, stunnel,
  5385. sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
  5386. systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
  5387. ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
  5388. tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
  5389. udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
  5390. vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
  5391. wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
  5392. xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
  5393. xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
  5394. xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
  5395. x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
  5396. xz
  5397. New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
  5398. google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
  5399. libinput, libksba, libmemcached, libmpdclient, librtlsdr,
  5400. libuv, libva, libva-intel-driver, linux-zigbee, memcached,
  5401. mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
  5402. perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
  5403. perl-json-tiny, perl-mojolicious, perl-net-ssleay,
  5404. perl-path-tiny, perl-try-tiny, perl-xml-libxml,
  5405. perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
  5406. php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
  5407. procps-ng, pwgen, python-cffi, python-daemon, python-flup,
  5408. python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
  5409. qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
  5410. twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
  5411. Removed packages: procps
  5412. Issues resolved (http://bugs.uclibc.org):
  5413. #5750: Doing a Buildroot build from /usr doesn't work
  5414. #5900: config flags to the Xenomai build system
  5415. #6230: Cannot compile gcc without threads (uClibc-based)
  5416. #6626: procps Unknown HZ value! (XX) Assume 100
  5417. #7118: Package "thrift" requires atomic operations
  5418. #7154: Local uClibc config file gets overwritten using ...
  5419. #7160: host-xz not built
  5420. #7166: hostapd: segfault when using RT5370
  5421. #7172: Name collision of rpath token expansion and internal..
  5422. #7178: NTPd package cannot sync time without a proper ntp.conf
  5423. #7184: supervisord depends on libxml2 implicitly
  5424. #7196: Unable to build on UBUNTU13.10
  5425. #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
  5426. 2014.05, Released May 31st, 2014
  5427. Minor fixes.
  5428. Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
  5429. for the spl file.
  5430. Updated/fixed packages: exim, glibc, gnutls, libfribidi,
  5431. qt5base, qt5webkit, sysklogd, thrift, u-boot
  5432. 2014.05-rc3, Released May 28th, 2014
  5433. Minor fixes.
  5434. Updated/fixed packages: acl, attr, connman, dosfstools,
  5435. dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
  5436. lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
  5437. mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
  5438. samba4, slang, xbmc
  5439. Issues resolved (http://bugs.uclibc.org):
  5440. #7100: license info for package 'acl' missing
  5441. #7106: license info for package 'attr' missing
  5442. #7112: license info for package 'hwdata'
  5443. 2014.05-rc2, Released May 21st, 2014
  5444. Fixes all over the tree.
  5445. Stripping using sstrip has been deprecated.
  5446. BR2_EXTERNAL can now also be used to implement custom
  5447. filesystem types.
  5448. The newly added BR2_GRAPH_DEPTH variable to limit the depth of
  5449. the generated dependency graph has been renamed to
  5450. BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
  5451. the future.
  5452. The virtual package infrastructure will now error out early
  5453. if multiple packages providing the same virtual package has
  5454. been enabled (E.G. opengl). This change requires that the
  5455. packages explicitly declare what virtual package(s) they
  5456. provide.
  5457. Updated/fixed packages: acpid, armadillo, avahi, bellagio,
  5458. btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
  5459. elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
  5460. gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
  5461. imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
  5462. libdvdread, libnss, libunwind, linux-headers, lsof, lua,
  5463. luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
  5464. netsnmp, nodejs, openpowerlink, openvpn, pciutils,
  5465. php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
  5466. rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
  5467. ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
  5468. xlib_libXpm, xserver_xorg-server, zyre
  5469. Issues resolved (http://bugs.uclibc.org):
  5470. #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
  5471. #7016: Git issues in resulting buildroot tar
  5472. #7094: pciutils doesn't build on Blackfin
  5473. 2014.05-rc1, Released May 13th, 2014
  5474. Fixes all over the tree and new features.
  5475. Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
  5476. been removed. Building o32 ELF files for MIPS64 is an exotic
  5477. configuration that nobody should be using. If o32 is required,
  5478. then is better if it's built for MIPS 32-bit cores so only
  5479. 32-bit instructions will be used leading to a more efficient
  5480. o32 usage.
  5481. Support for the ARM A12 variant and Intel corei7.
  5482. Configs: Minnowboard and Altera SoCkit added, QEMU updates.
  5483. Bootloaders: Grub2 and gummiboot support, syslinux support
  5484. extended.
  5485. Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
  5486. library for internal and external toolchains. 4.8-R3 support
  5487. for ARC, Internal toolchain support for Aarch64 and
  5488. Microblaze. Environment variable to control debug output of
  5489. toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
  5490. other variables. Toolchain tuple vendor name can now be
  5491. customized. Updated external Linaro ARM/Aarch64
  5492. toolchains. Added external Linaro ARMEB toolchain.
  5493. A GDB gdbinit file is now generated for external toolchains to
  5494. automatically set the correct sysroot.
  5495. Kconfig handling for minimum kernel headers version required
  5496. for packages. Now packages needing specific kernel header
  5497. features can specify these requirements in Kconfig.
  5498. Infrastructure: Support for (but disabled as it leads to
  5499. unreproducible builds) toplevel parallel builds. See the
  5500. comment at the top of Makefile for details about how to enable
  5501. it and what the problems are if you want to test it.
  5502. Python package infrastructure extended to support Python 3.x
  5503. Perl and virtual package infrastructure support added.
  5504. PRE_*_HOOKS support for all build steps.
  5505. Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
  5506. barebox, bash, beecrypt, bellagio, binutils, boost,
  5507. boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
  5508. ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
  5509. collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
  5510. cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
  5511. dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
  5512. dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
  5513. evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
  5514. flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
  5515. gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
  5516. gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
  5517. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5518. gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
  5519. gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
  5520. hostapd, htop, httping, ifplugd, iftop, igmpproxy,
  5521. imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
  5522. ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
  5523. jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
  5524. json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
  5525. lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
  5526. libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
  5527. libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
  5528. libevas, libevdev, libfribidi, libfslcodec, libfslparser,
  5529. libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
  5530. libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
  5531. libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
  5532. libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
  5533. libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
  5534. libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
  5535. lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
  5536. lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
  5537. lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
  5538. luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
  5539. luainterpreter, luajit, lua-msgpack-native, luaposix,
  5540. luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
  5541. memstat, mesa3d, metacity, minidlna, mmc-utils,
  5542. mobile-broadband-provider-info, modem-manager, mongrel2,
  5543. monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
  5544. ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
  5545. newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
  5546. olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
  5547. openswan, openvpn, orbit, orc, p11-kit, pango, parted,
  5548. pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
  5549. picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
  5550. pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
  5551. pulseaudio, python, python3, python-bottle, python-m2crypto,
  5552. python-netifaces, python-pyasn, python-pycrypto,
  5553. python-pygame, python-pysnmp, python-pysnmp-apps,
  5554. python-pysnmp-mibs, python-serial, python-setuptools,
  5555. qextserialport, qt, qt5, qt5base, qt5connectivity,
  5556. qt5declarative, qt5graphicaleffects, qt5imageformats,
  5557. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5558. qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
  5559. qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
  5560. rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
  5561. rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
  5562. sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
  5563. socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
  5564. stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
  5565. syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
  5566. tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
  5567. uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
  5568. usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
  5569. webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
  5570. w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
  5571. xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
  5572. xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
  5573. xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
  5574. xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
  5575. xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
  5576. xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
  5577. xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
  5578. xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
  5579. xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
  5580. xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
  5581. xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
  5582. xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
  5583. xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
  5584. xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
  5585. xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
  5586. xdriver_xf86-video-ark, xdriver_xf86-video-ast,
  5587. xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
  5588. xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
  5589. xdriver_xf86-video-geode, xdriver_xf86-video-glide,
  5590. xdriver_xf86-video-glint, xdriver_xf86-video-i128,
  5591. xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
  5592. xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
  5593. xdriver_xf86-video-newport, xdriver_xf86-video-nv,
  5594. xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
  5595. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  5596. xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
  5597. xdriver_xf86-video-tga, xdriver_xf86-video-trident,
  5598. xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
  5599. xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
  5600. xlib_xtrans, xproto_xproto, xserver_xorg-server,
  5601. xutil_util-macros, zeromq, zic, zmqpp, zyre
  5602. New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
  5603. dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
  5604. fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
  5605. iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
  5606. libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
  5607. libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
  5608. lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
  5609. lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
  5610. musl, nftables, opentyrian, opentyrian-data,
  5611. perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
  5612. php-zmq, postgresql, python-libconfig, python-pypcap,
  5613. python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
  5614. upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
  5615. yaffs2utils, zlog, znc
  5616. Removed packages: crosstool-ng, python-distutilscross, vala
  5617. Issues resolved (http://bugs.uclibc.org):
  5618. #6842: Checking external toolchain for eabihf
  5619. #6956: Packaging libsoxr
  5620. #6986: Make legal-info fails on uboot versions before 2014.01
  5621. #6992: Incorrect installation rights on external kernel module..
  5622. 2014.02, Released February 27th, 2014
  5623. Minor fixes.
  5624. Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
  5625. gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
  5626. libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
  5627. pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
  5628. Issues resolved (http://bugs.uclibc.org):
  5629. #6938: mkuser script generates wrong password for new user in..
  5630. 2014.02-rc3, Released February 25th, 2014
  5631. Minor fixes.
  5632. Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
  5633. cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
  5634. gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
  5635. libsecret, libsepol, libsigsegv, libtool, libv4l,
  5636. linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
  5637. pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
  5638. tvheadend, util-linux, webkit, xscreensaver
  5639. Issues resolved (http://bugs.uclibc.org):
  5640. #4706: Removing .stamp_target_installed does not trigger...
  5641. #5030: busybox built fails if we use an override src dir...
  5642. #5420: Dbus and /var/run management
  5643. #5768: Not able to build ALSA-Lib for static build
  5644. #5774: Not able to build ALSA-Utils for static build
  5645. #6542: external python modules fail to compile to pyc if...
  5646. #6764: Support for kernel signed modules
  5647. #6794: Busybox compiled from buildroot hangs on pass from...
  5648. 2014.02-rc2, Released February 20th, 2014
  5649. Fixes all over the tree. Static linking / nommu fixes and
  5650. annotations for several packages.
  5651. Updated/fixed packages: boost, busybox, collectd, coreutils,
  5652. dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
  5653. jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
  5654. opencv, python, python3, qtuio, systemd, thrift, transmission,
  5655. uclibc, vlc, webkit
  5656. Issues resolved (http://bugs.uclibc.org):
  5657. #5450: AT91SAM9260 Bootstrap compilation problem
  5658. #5582: libiconv 1.14 failed to build
  5659. #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
  5660. #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
  5661. #6218: binutils-2.23.2/gas fails with undefined reference to..
  5662. #6236: binutils-2.23.2/bfd fails with undefined reference to..
  5663. #6470: If the build directory is a child of /usr, the build..
  5664. #6776: systemd error: static declaration of 'execvpe' follows..
  5665. #6818: toolchainfile.cmake has absolut path references
  5666. 2014.02-rc1, Released February 11th, 2014
  5667. Fixes all over the tree and new features.
  5668. Support for external packages/defconfigs (BR2_EXTERNAL). See
  5669. user manual for details.
  5670. Cleanup of environment variable names for consistency. The
  5671. download directory location override (BUILDROOT_DL_DIR) is now
  5672. called BR2_DL_DIR. Likewise the name of the current .config is
  5673. renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
  5674. your post build scripts if you use this! BUILD_DIR is now also
  5675. exported to the post build/image scripts.
  5676. Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
  5677. uClibc pread/pwrite backport as they cause issues on certain
  5678. architectures, new Linaro and Sourcery Codebench toolchains.
  5679. x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
  5680. variants removed, Microblaze: Internal toolchain support
  5681. Legal infrastructure: Info is now split between host and
  5682. target packages, large number of license annotations.
  5683. Lua: selection between lua 5.1 / 5.2, luarocks support
  5684. Python: package infrastructure, many new packages.
  5685. Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
  5686. beaglebone, microblaze, pandaboard, qemu, raspberry pi
  5687. updated.
  5688. Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
  5689. am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
  5690. berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
  5691. bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
  5692. cifs-utils, civetweb, cmake, collectd, connman, copas,
  5693. coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
  5694. cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
  5695. dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
  5696. dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
  5697. f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
  5698. fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
  5699. gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
  5700. gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
  5701. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5702. gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
  5703. imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
  5704. jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
  5705. lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
  5706. libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
  5707. libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
  5708. libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
  5709. libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
  5710. libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
  5711. libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
  5712. libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
  5713. libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
  5714. lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
  5715. lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
  5716. luafilesystem, luajit, luaposix, luasec, luasocket,
  5717. luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
  5718. mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
  5719. neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
  5720. numactl, ofone, ola, olsr, omniorb, open2300, opencv,
  5721. openpowerlink, openssh, openssl, openvpn, oprofile, opus,
  5722. opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
  5723. php, poco, poppler, powervr, protobuf-c, psplash, python,
  5724. python-bottle,
  5725. python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
  5726. python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
  5727. python-{serial,setuptools}, qt, qt5base, qt5connectivity,
  5728. qt5declarative, qt5graphicaleffects, qt5jsbackend,
  5729. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5730. qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
  5731. rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
  5732. sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
  5733. socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
  5734. sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
  5735. sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
  5736. ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
  5737. transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
  5738. uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
  5739. util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
  5740. weston, wget, wireless-regdb, wireshark, wpa_supplicant,
  5741. wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
  5742. xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
  5743. xlib_lib{FS,SM,X11},
  5744. xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
  5745. xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
  5746. xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
  5747. xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
  5748. xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
  5749. xproto_xextproto, xproto_xproto, xutil_util-macros,
  5750. xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
  5751. New packages: apitrace, avrdude, c-ares, ca-certificates,
  5752. cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
  5753. haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
  5754. lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
  5755. libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
  5756. libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
  5757. luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
  5758. python-configobj, python-dialog, python-json-schema-validator,
  5759. python-keyring, python-msgpack, python-posix-ipc,
  5760. python-pyasn, python-pycrypto, python-pysnmp,
  5761. python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
  5762. python-simplejson, python-tornado, python-versiontools,
  5763. rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
  5764. ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
  5765. Removed packages: autoconf, automake, ccache, cpanminus, lzma,
  5766. netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
  5767. Issues resolved (http://bugs.uclibc.org):
  5768. #65: new package: dbus c++ language bindings
  5769. #769: Update configuration menu for MIPS target
  5770. #2419: Add a bundle of Lua modules
  5771. #2629: Segmentation faults and division by zero in Grub on ext2
  5772. #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
  5773. #4339: Allow override of DL_DIR in extract step
  5774. #4363: Make sure that copied linux and busybox defconfig are...
  5775. #4454: There should be simple way to update image, when chang...
  5776. #5024: grub fails to build for x86_64 target architecture
  5777. #5066: New-Package: net-tools
  5778. #5072: ncurses: add ncurses-progs to target
  5779. #5294: uclibc build ignores target CFLAGS and LDFLAGS
  5780. #5366: Login doesn't work with util-linux versions of login/agetty
  5781. #5378: dropbear Makefile broken
  5782. #5390: System banner - change to empty doesn't remove /etc/issue
  5783. #5780: spurious build failure because it cannot remove ubinize.cfg
  5784. #5798: ncurses-5.9 fails to compile statically
  5785. #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
  5786. #6080: Git fetch caching
  5787. #6092: Bootable ISO image creation seems to have stopped working..
  5788. #6272: coreutils build fails
  5789. #6434: apply-patches.sh does not work recursively
  5790. #6446: eglibc doesn't install ldconfig to target
  5791. #6484: Add c-ares
  5792. #6596: Slow bootup if mdev is chosen
  5793. #6656: Build Qt5 with ccache
  5794. #6662: internal compiler error: Segmentation fault during making..
  5795. #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
  5796. #6752: genext2fs: e2fsck must run before tunefs -U random
  5797. #6770: openssl 1.0.1f fails with ccache
  5798. #6830: Qt5: no fonts are installed
  5799. #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
  5800. #6854: Update to Qt 5.2.1
  5801. 2013.11, Released November 30th, 2013:
  5802. Minor fixes.
  5803. Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
  5804. ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
  5805. iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
  5806. lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
  5807. tvheadend, util-linux, wpa_supplicant
  5808. Issues resolved (http://bugs.uclibc.org):
  5809. #1279: Buildroot compiled Busybox and Coreutils LFS issues
  5810. #2995: -fstack-protector-all causes ssh to SIGSEGV
  5811. #5570: Cannot compile software on the target machine
  5812. #6428: util-linux libmount segfaults with patch from buildroot
  5813. #6500: php fails to build for armel
  5814. #6554: gdb needs to dependents on host texinfo
  5815. #6692: GNU nano fails to compile for x86_64
  5816. #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
  5817. 2013.11-rc3, Released November 26th, 2013
  5818. Fixes all over the tree.
  5819. Architecture: Mark MIPS I, II, III and IV as deprecated.
  5820. Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
  5821. libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
  5822. mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
  5823. protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
  5824. swig, ti-gfx, tinymembench, uclibc, udisks, vim
  5825. 2013.11-rc2, Released November 18th, 2013
  5826. Fixes all over the tree.
  5827. Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
  5828. Adjust kernel versions.
  5829. Toolchain: avr32: fix for modern kernel headers
  5830. Bootloader: Barebox updated to 2013.10.1
  5831. Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
  5832. libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
  5833. wayland, wvstreams
  5834. Issues resolved (http://bugs.uclibc.org):
  5835. #3601: DHCPD S80dhcp-server startup script issues
  5836. #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
  5837. #6416: Xenomai package, patch alternative
  5838. #6590: directfb-examples build failed whit linaro toolchain
  5839. 2013.11-rc1, Released November 12th, 2013
  5840. Architectures: Nios-II support, MIPS arch handling fixes
  5841. Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
  5842. sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
  5843. Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
  5844. for avr32, crosstool-ng backend removed, external musl
  5845. toolchain support, gcc 4.8.2, updated Linaro external
  5846. toolchains. Fortran and objective-C support deprecated,
  5847. mudflap support
  5848. Bootloaders: U-Boot: u-boot.imx support, version bumps
  5849. Linux: use kmod instead of module-init-tools
  5850. System: default to devtmpfs for /dev
  5851. Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
  5852. download support, post-rsync hooks
  5853. Fs: u-boot image support for cpio
  5854. Updated/fixed packages: aircrack-ng, alsamixergui, apr,
  5855. apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
  5856. bison, boost, busybox, can-utils, ccache, ccid, cgilua,
  5857. chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
  5858. copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
  5859. directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
  5860. dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
  5861. ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
  5862. fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
  5863. glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
  5864. gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
  5865. gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
  5866. imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
  5867. jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
  5868. libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
  5869. libedit, libevas, libevent, libfreefare, libfuse,
  5870. libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
  5871. libmnl, libmodbus,
  5872. libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
  5873. libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
  5874. libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
  5875. libvpx, lighttpd, linphone, linux-pam, lmbench,
  5876. lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
  5877. ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
  5878. media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
  5879. mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
  5880. nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
  5881. netcat, netkitbase, netperf, netplug, nettle, nfacct,
  5882. nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
  5883. oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
  5884. perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
  5885. poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
  5886. pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
  5887. rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
  5888. samba, scons, screen, sdl_sound, ser2net, setserial,
  5889. smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
  5890. stress, strongswan, stunnel, sudo, syslinux, systemd,
  5891. sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
  5892. tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
  5893. uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
  5894. valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
  5895. webkit, webp, webrtc-audio-processing, weston, wget,
  5896. wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
  5897. xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
  5898. xserver_xorg-server, xz, zeromq, zic, zmqpp
  5899. New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
  5900. duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
  5901. lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
  5902. lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
  5903. python-crc16, python-ipy, python-pyzmq, qt5sensors,
  5904. qt5serialport, qt5x11extras, snmppp, subversion, tcping,
  5905. trace-cmd, xscreensaver, zsh
  5906. Removed packages: module-init-tools
  5907. Issues resolved (http://bugs.uclibc.org):
  5908. #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
  5909. #5408: qt build failure with Sourcery CodeBench ARM 2010.09
  5910. #5630: makefile error with toolchain helpers.mk
  5911. #5672: htop: remove X11 stuff
  5912. #5678: linux.mk: linux-menuconfig fails
  5913. #5696: python3 installation is too large, patches from python2 needed
  5914. #5978: Erlang does not build for arm in 2013.02-rc3
  5915. #6392: Extended ARM uImage kernel options
  5916. #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
  5917. #6428: util-linux libmount segfaults with patch from buildroot
  5918. #6452: eglibc from Linaro 2013.07 not copied to target correctly
  5919. #6566: PHP segfault when crosscompiled to mips64 - patch included
  5920. #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
  5921. #6578: udisks package broken
  5922. #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
  5923. #6608: ebtables missing ethertypes - fix included
  5924. #6620: Sysvinit package missing killall5 and symlinks - patch included
  5925. #6632: CMake use host pkg-config
  5926. #6638: pkgconf doesn't download
  5927. #6644: "all" target doesn't work in out-of-tree builds
  5928. #6650: Segmentation fault when trying to build latest buildroot
  5929. #6668: iptables limit module alignment problem on mips64
  5930. 2013.08, Released August 31th, 2013:
  5931. Minor fixes.
  5932. Documentation build fixed.
  5933. Updated/fixed packages: ltrace, strongswan
  5934. 2013.08-rc3, Released August 29th, 2013:
  5935. Fixes all over the tree.
  5936. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  5937. misc fixes for generatelocales, apply-patches and module
  5938. stripping.
  5939. Top level menu names reordered and renamed for clarity.
  5940. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  5941. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  5942. openssh, openssl, pulseaudio, python-setuptools, qt5,
  5943. qt5webkit, redis, strongswan, sunxi-mali
  5944. Issues resolved (http://bugs.uclibc.org):
  5945. #6464: dbus-daemon-launch-helper needs setuid
  5946. 2013.08-rc2, Released August 16th 2013:
  5947. Documentation improvements.
  5948. External toolchains fixes.
  5949. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  5950. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  5951. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  5952. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  5953. uclibc, udev, wayland, webkit, zeromq.
  5954. Issues resolved (http://bugs.uclibc.org):
  5955. #6440: typo in ffmpeg makefile
  5956. 2013.08-rc1, Released August 5th, 2013:
  5957. Architectures:
  5958. - improved support for floating point on ARM and Thumb/Thumb2
  5959. - support for ARM OABI removed
  5960. Toolchains:
  5961. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  5962. - Linaro ARM and Aarch64 toolchains updated
  5963. - support added for the Arago ARMv5 and ARMv7 toolchains
  5964. - gcc 4.8.x version bumped
  5965. - support for installing both FDPIC and FLAT libraries on
  5966. Blackfin
  5967. - support for uClibc 0.9.31 removed,
  5968. - convert the internal toolchain backend to use the package
  5969. infrastructure
  5970. - support added for eglibc in the internal toolchain backend
  5971. - toolchain components for the ARC architecture updated and
  5972. gdb for ARC added.
  5973. - support for Blackfin in the internal toolchain fixed
  5974. Defconfigs: beaglebone_defconfig updated, new defconfig for
  5975. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  5976. TNY-A9G20-LPW.
  5977. A number of packages have been fixed to use the
  5978. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  5979. script installed and modified properly. Licensing informations
  5980. has been added to a number of packages.
  5981. Use XZ tarballs for a number of packages.
  5982. Noticeable package changes/additions:
  5983. - The glib2/libgtk2/webkit stack has been updated to recent
  5984. versions.
  5985. - Support for Gstreamer 1.x has been added.
  5986. - OpenGL support for TI OMAP platforms has been added.
  5987. - OpenGL support for Allwinner platforms has been added.
  5988. - OpenMAX support for RasberryPi has been added.
  5989. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  5990. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  5991. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  5992. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  5993. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  5994. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  5995. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  5996. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  5997. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  5998. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  5999. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  6000. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  6001. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  6002. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  6003. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  6004. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  6005. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  6006. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  6007. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  6008. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  6009. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  6010. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  6011. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  6012. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  6013. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  6014. zlib.
  6015. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  6016. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  6017. gcc-final, gcc-initial, gcc-intermediate, git,
  6018. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  6019. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  6020. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  6021. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  6022. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  6023. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  6024. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  6025. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  6026. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  6027. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  6028. tree, tstools, uclibc, w_scan.
  6029. Issues resolved (http://bugs.uclibc.org):
  6030. #4718: python (built for powerpc) distutils has paths to host
  6031. compiler toolchain
  6032. #5516: appended device tree blobs on uImage fails
  6033. #6302: Versions of packages retrieved from github.com are wrong
  6034. #6308: dosfstools download link is wrong
  6035. #6326: Dropbear: Add options to allow better config for
  6036. different target devices (e.g. routers)
  6037. #6338: Wrong download link for minicom package
  6038. #6344: Wrong handling of license text files with same name and
  6039. different directory
  6040. #6374: gnutls package broken if linux cryptodev module
  6041. selected
  6042. #6410: omap3_beagle has uimage error load address error
  6043. 2013.05, Released May 31th, 2013:
  6044. Minor fixes.
  6045. External toolchain wrapper fix for if host/usr/bin is placed
  6046. in the patch.
  6047. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  6048. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  6049. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  6050. Issues resolved (http://bugs.uclibc.org):
  6051. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  6052. #4988: flex and m4 problems
  6053. #5912: obsolete CVS files
  6054. 2013.05-rc3, Released May 25th, 2013:
  6055. Minor fixes.
  6056. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  6057. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  6058. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  6059. wireshark
  6060. 2013.05-rc2, Released May 15th, 2013:
  6061. Fixes all over the tree.
  6062. Default number of parallel jobs is now number of CPUs + 1.
  6063. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  6064. Updated/fixed packages: aircrack-ng, busybox, cairo,
  6065. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  6066. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  6067. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  6068. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  6069. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  6070. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  6071. sconeserver, strace, sylpheed, wvstreams,
  6072. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  6073. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  6074. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  6075. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  6076. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  6077. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  6078. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  6079. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  6080. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  6081. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  6082. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  6083. xdata_xcursor-themes,
  6084. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  6085. xdriver_xf86-input-{tslib,vmmouse,void},
  6086. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  6087. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  6088. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  6089. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  6090. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  6091. xfont_font-utopia-{100dpi,75dpi,type1},
  6092. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  6093. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  6094. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  6095. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  6096. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  6097. xfont_font-{mutt,schumacher}-misc,
  6098. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  6099. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  6100. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  6101. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  6102. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  6103. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  6104. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  6105. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  6106. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  6107. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  6108. xserver_xorg-server, xutil_{makedepend,util-macros}
  6109. Readded Packages: xapp_xinit
  6110. Issues resolved (http://bugs.uclibc.org):
  6111. #5054: amd64: cannot find init - due to missing /lib64 folder
  6112. 2013.05-rc1, Released May 8th, 2013:
  6113. Architectures: ARC support, Blackfin support, FLAT binary
  6114. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  6115. Toolchains: Add new Microblaze external toolchains, Linaro
  6116. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  6117. internal toolchain, default to GCC 4.7.x. Internal
  6118. Crosstool-ng backend deprecated.
  6119. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  6120. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  6121. pi, gnublin board.
  6122. FS: LZO and XZ compression methods, extra ubifs options,
  6123. ext2 rev 0/1 and ext3/4 support.
  6124. Patch handling: apply-patches now has .patch.xz support,
  6125. Patch logic reworked as discussed during Febrary dev days:
  6126. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  6127. <pkg>-rsync now excludes version control files.
  6128. linux: uImage load address for ARM multiplatform kernels
  6129. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  6130. providers, similar to how libjpeg / libjpeg-turbo is handled.
  6131. Infrastructure for packages to add system users.
  6132. kconfig: updated to 3.9-rc2, support make olddefconfig
  6133. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  6134. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  6135. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  6136. busybox, ccache, cifs-utils, cmake, collectd, connman,
  6137. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  6138. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  6139. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  6140. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  6141. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  6142. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  6143. httping, icu, inotify-tools, intltool, iproute2, ipset,
  6144. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  6145. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  6146. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  6147. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  6148. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  6149. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  6150. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  6151. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  6152. mediastreamer, memtester, mesa3d,
  6153. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  6154. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  6155. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  6156. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  6157. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  6158. polarssl, proftpd, psmisc, pulseaudio, python,
  6159. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  6160. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  6161. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  6162. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  6163. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  6164. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  6165. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  6166. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  6167. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  6168. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  6169. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  6170. xdriver_xf86-input-{tslib,vmmouse,void},
  6171. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  6172. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  6173. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  6174. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  6175. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  6176. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  6177. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  6178. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  6179. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  6180. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  6181. xserver_xorg-server, xutil_makedepend, xz, zeromq
  6182. New packages: aircrack-ng, bcusdk, chrony, crda,
  6183. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  6184. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  6185. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  6186. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  6187. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  6188. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  6189. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  6190. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  6191. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  6192. qt5declarative, qt5graphicaleffects, qt5imageformats,
  6193. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  6194. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  6195. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  6196. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  6197. xcursor-transparent-theme, zic, zmqpp, zyre
  6198. Removed packages: microperl, ocf-linux, xapp_xinit,
  6199. xapp_xplsprinters, xapp_xprehashprinterlist,
  6200. xfont_font-bitstream-speedo,
  6201. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  6202. xproto_{print,xf86rush}proto
  6203. Deprecated packages: vala
  6204. Issues resolved (http://bugs.uclibc.org):
  6205. #1291: Add support for Faraday 526 arm processor (fa526)
  6206. #2683: cups does not install correctly to target
  6207. #3313: mesa3d fails to build
  6208. #5186: initramfs/cpio should support lzo compression
  6209. #5636: agetty - cannot get controlling tty error - need updated...
  6210. #5906: collectd client headers not exported
  6211. #5966: bison unnecessarily required as build dependency
  6212. #6140: --enable-fileinfo not applied for php package
  6213. #6164: openvpn usage of ip tool from Busybox
  6214. 2013.02, Released February 28th, 2013:
  6215. Misc manual updates.
  6216. Updated/fixed packages: busybox, collectd, flashbench,
  6217. libgtk2, libupnp, mii-diag, quota
  6218. 2013.02-rc3, Released February 26th, 2013
  6219. Minor fixes.
  6220. Updated/fixed packages: conntrack-tools, dialog,
  6221. enlightenment, haserl, keyutils, libfif, libmad,
  6222. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  6223. ruby, spawn-fcgi, vtun
  6224. Issues resolved (http://bugs.uclibc.org):
  6225. #5960: fusion.ko driver does not install to target rootfs
  6226. 2013.02-rc2, Released February 19th, 2013
  6227. Fixes all over the tree.
  6228. Various manual updates and fixes.
  6229. Updated/fixed packages: busybox, collectd, gesftpserver,
  6230. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  6231. libglib2, libtorrent, libvorbis, neard, network-manager,
  6232. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  6233. Issues resolved (http://bugs.uclibc.org):
  6234. #5906: collectd client headers not exported
  6235. 2013.02-rc1, Released February 10th, 2013
  6236. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  6237. libraries install fixed. Add Linaro ARM
  6238. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  6239. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  6240. missing 32bit support for binary toolchains. Toolchain wrapper
  6241. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  6242. 7.1. Deprecate uClibc 0.9.31.
  6243. Architecture: Xtensa fixes, add missing powerpc variants, arm
  6244. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  6245. deprecated. Sparc: drop old unused variants
  6246. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  6247. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  6248. environment image support, U-Boot: add 2013.01.01
  6249. Linux: fix appended dtb handling for v3.8+ kernels, support
  6250. multiple device trees
  6251. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  6252. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  6253. updated, at91rm9200df: misc fixes. Lock kernel headers to
  6254. match kernel.
  6255. Infrastructure: Git download fixes. Toolchain make target
  6256. renamed from 'cross' to 'toolchain'. Eclipse integration
  6257. support. Option to set root password, post image scripts,
  6258. config scripts handling.
  6259. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  6260. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  6261. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  6262. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  6263. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  6264. diffutils, directfb, distcc, divine, dnsmasq, docker,
  6265. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  6266. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  6267. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  6268. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  6269. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  6270. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  6271. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  6272. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  6273. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  6274. libedbus, libedje, libeet, libefreet, libeina, libeio,
  6275. liberation, libelementary, libembryo, libethumb, libev,
  6276. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  6277. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  6278. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  6279. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  6280. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  6281. libxml2, libxslt, lighttpd, links, linux-firmware,
  6282. linux-fusion, ltp-testsuite, ltrace,
  6283. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  6284. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  6285. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  6286. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  6287. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  6288. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  6289. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  6290. python, python3, qemu, qextserialport, qt, quagga, radvd,
  6291. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  6292. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  6293. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  6294. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  6295. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  6296. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  6297. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  6298. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  6299. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  6300. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  6301. xserver_xorg-server, xstroke, xvkbd, xz
  6302. New packages: b43-firmware, b43-fwcutter, bustle,
  6303. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  6304. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  6305. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  6306. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  6307. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  6308. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  6309. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  6310. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  6311. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  6312. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  6313. spice-protocol, tcllib, tvheadend, udisks, usbredir
  6314. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  6315. zd1211-firmware
  6316. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  6317. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  6318. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  6319. xdriver_xf86-video-{tsend,xgi,xgixp}
  6320. Deprecated packages: xstroke
  6321. Issues resolved (http://bugs.uclibc.org):
  6322. #4237: building shared openssl w/-Os fails due to gcc bug
  6323. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  6324. #5602: python3 should install a "python" symbolic link
  6325. #5846: Extra slash added to last slash in URL
  6326. 2012.11.1, Released January 3rd, 2013:
  6327. Toolchain: Fixed non-largefile builds on recent Ubuntu
  6328. versions.
  6329. Arch: fix missing x86/generic handling, Build for Xtensa with
  6330. longcalls option.
  6331. Updated/fixed packages: dosfstools, qt
  6332. 2012.11, Released December 2nd, 2012:
  6333. Git shallow clone fix for older git version.
  6334. Updated/fixed packages: ctuio, libtool
  6335. Issues resolved (http://bugs.uclibc.org):
  6336. #5726: List all the available hook points
  6337. 2012.11-rc2, Released November 30th, 2012:
  6338. Minor fixes around the tree.
  6339. Various manual updates and fixes.
  6340. Add checks for legacy features.
  6341. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  6342. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  6343. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  6344. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  6345. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  6346. scons, strace, sylpheed
  6347. Issues resolved (http://bugs.uclibc.org):
  6348. #5732: Error : package/alsa-lib/alsa-lib.mk
  6349. 2012.11-rc1, Released November 17th, 2012
  6350. Fixes all over the tree and new features.
  6351. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  6352. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  6353. + nitrogen6x defconfigs.
  6354. Bootloaders: add u-boot 2012.07/10, ais target format, add
  6355. barebox 2012.08/09/10/11, linker overlap issue fix for
  6356. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  6357. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  6358. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  6359. Libtirpc support for modern glibc variants. Toolchain on
  6360. target has been deprecated.
  6361. Initial Aarch64 support, Xtensa support re-added.
  6362. Infrastructure: Use shallow git clone when possible, use
  6363. tarballs rather than git URLs for github. Moved to pkgconf
  6364. rather than pkg-config. System directory added, default
  6365. skeleton/device tables moved. More than 1 post-build script
  6366. can now be used. output/target now contains a
  6367. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  6368. understand how to (not) use it.
  6369. Manual has been reworked and extended.
  6370. Legal-info: Lots of package annotations, CSV file fixes,
  6371. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  6372. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  6373. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  6374. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  6375. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  6376. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  6377. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  6378. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  6379. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  6380. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  6381. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  6382. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  6383. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  6384. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  6385. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  6386. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  6387. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  6388. lmbench, lockfile-progs, logrotate, lshw, lsof,
  6389. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  6390. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  6391. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  6392. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  6393. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  6394. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  6395. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  6396. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  6397. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  6398. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  6399. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  6400. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  6401. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  6402. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  6403. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  6404. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  6405. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  6406. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  6407. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  6408. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  6409. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  6410. yasm
  6411. Deprecated packages: netkitbase, netkittelnet
  6412. Issues resolved (http://bugs.uclibc.org):
  6413. #807: [PATCH] samba - make iconv and smbd optional
  6414. #3049: binutils have a sysroot bug in ld
  6415. #5330: update vsftpd to 3.0.0
  6416. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  6417. #5666: Fails to build python 2.7.2 for 2440 arm
  6418. 2012.08, Release August 31th, 2012
  6419. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  6420. prboom, oprofile.
  6421. Added license information for: sqlite.
  6422. Changed the source URLs of all packages located on Sourceforge
  6423. in order to use the automatic mirror selection URL
  6424. downloads.sourceforge.net, and get rid of the
  6425. BR2_SOURCEFORGE_MIRROR option.
  6426. 2012.08-rc3, Released August 25th, 2012
  6427. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  6428. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  6429. Added license informations for: barebox, grub, syslinux,
  6430. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  6431. faad2, nano, fbdump, rsync, librsync, fontconfig,
  6432. inotify-tools,
  6433. 2012.08-rc2, Released August 15th, 2012
  6434. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  6435. Added license informations for: mxml, nanocom, empty, expat,
  6436. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  6437. input-event-daemon, luajit, cgilua, copas, coxpcall,
  6438. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  6439. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  6440. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  6441. mtd, openssl, psmisc, socat, spawn-fcgi.
  6442. Fixes to Microblaze external toolchains
  6443. configuration. Improvements of the pkg-stats
  6444. script. Out-of-tree fix for the graph-depends script.
  6445. Kernel headers version bump.
  6446. 2012.08-rc1, Released August 1st, 2012
  6447. Fixes all over the tree and new features.
  6448. Integration of a legal information reporting infrastructure,
  6449. which allows to generate detailed informations about the
  6450. licenses and source code of all components of a system
  6451. generated by Buildroot. License information will progressively
  6452. be added on packages.
  6453. Default configuration files added for Calao-systems USB-A9263
  6454. and Calao-systems USB-A9G20-LPW.
  6455. External toolchains update: allow download of a custom
  6456. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  6457. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  6458. 2011.09.
  6459. Allow the restriction of downloads to the primary site only.
  6460. This is useful for project developers who want to ensure that
  6461. the project can be built even if the upstream tarball
  6462. locations disappear.
  6463. Add a 'System configuration' choice to select between 3
  6464. different init systems: Busybox init, SysV init and Systemd
  6465. init.
  6466. Cleanups to the package infrastructure. The visible change to
  6467. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  6468. $(autotools-package)), and similarly for other package
  6469. infrastructures and host packages. Refer to the documentation
  6470. for details.
  6471. By default, automatic detection of the number of compilation
  6472. jobs to use, depending on the number of CPUs available.
  6473. Improvements to generate systems with static libraries only
  6474. (infrastructure and package fixes).
  6475. Add proper support in the Linux kernel package to generate
  6476. Device Tree Blobs or combined Device Tree / Kernel
  6477. images. This will be useful on Microblaze, PowerPC and ARM,
  6478. which are architectures making extensive use of the Device
  6479. Tree.
  6480. Updated/fixed packages: audiofile, autoconf, automake, axel,
  6481. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  6482. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  6483. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  6484. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  6485. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  6486. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  6487. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  6488. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  6489. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  6490. libfuse, libidn, libmad, libmbus, libmnl,
  6491. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  6492. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  6493. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  6494. lttng-tools, lua, m4, memtester, midori, mii-diag,
  6495. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  6496. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  6497. openssl, pciutils, php, polarssl, portaudio, pppd,
  6498. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  6499. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  6500. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  6501. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  6502. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  6503. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  6504. fbterm, flashrom, freerdp, inadyn, libfreefare,
  6505. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  6506. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  6507. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  6508. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  6509. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  6510. ramspeed, rtorrent, sound-theme-borealis,
  6511. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  6512. xinetd, zxing
  6513. Issues resolved (http://bugs.uclibc.org):
  6514. #1315: Allow use of older external toolchains without sysroot
  6515. support [won't fix]
  6516. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  6517. #5360: buildroot fails when building "host-libglib2 2.30.2
  6518. Building" [won't fix, upstream problem]
  6519. #5384: Can't build packages relying on gets on newer glibc
  6520. [fixed]
  6521. 2012.05, Released May 30th, 2012:
  6522. Updated/fixed packages: busybox, netsnmp, pptp-linux
  6523. 2012.05-rc3, Released May 25th, 2012:
  6524. Minor fixes around the tree.
  6525. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  6526. scp targets.
  6527. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  6528. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  6529. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  6530. xserver-xorg
  6531. 2012.05-rc2, Released May 18th, 2012:
  6532. Fixes all over the tree.
  6533. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  6534. dependency, disable decimal floats support, Linux 3.2.17 /
  6535. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  6536. without C++ support.
  6537. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  6538. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  6539. 2012.05-rc1, Released May 10th, 2012:
  6540. Fixes all over the tree and new features.
  6541. Use /etc/os-release for version info rather than
  6542. /etc/br-version.
  6543. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  6544. Apply-patches.sh: cleanups, archived patches handling fixes,
  6545. support series files.
  6546. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  6547. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  6548. atngw100, use 3.3.x for qemu configs.
  6549. Menu structure: Libraries moved out of multimedia section
  6550. Atom processor support. Prescott fix, blackfin ABI fix,
  6551. Microblaze architecture support (using ext toolchain). Cleanup
  6552. architecture names, deprecate Xtensa support.
  6553. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  6554. default to uClibc 0.9.33.x, enable
  6555. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  6556. fixes for external toolchains, linaro ext toolchains, new
  6557. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  6558. 1.15.2.
  6559. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  6560. support. Barebox: add 2012.04, remove 2011.12.
  6561. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  6562. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  6563. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  6564. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  6565. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  6566. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  6567. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  6568. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  6569. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  6570. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  6571. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  6572. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  6573. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  6574. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  6575. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  6576. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  6577. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  6578. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  6579. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  6580. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  6581. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  6582. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  6583. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  6584. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  6585. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  6586. xfsprogs, zlib
  6587. New packages: apr, apr-util, audiofile, bellagio,
  6588. conntrack-tools, empty, fmtools, glib-networking,
  6589. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  6590. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  6591. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  6592. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  6593. socketcand, stress, systemd, ushare, zeromq
  6594. Deprecated packages: ttcp
  6595. Removed packages: ntfsprogs
  6596. Issues resolved (http://bugs.uclibc.org):
  6597. #2353: [lua] fix build with 2010.08-rc1
  6598. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  6599. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  6600. #2881: Can't build project statically with external toolchain
  6601. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  6602. #4808: ccache may build against wrong zlib
  6603. #4880: New package lcdproc
  6604. #4886: New package protobuf
  6605. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  6606. #4898: * make: [target-finalize] Error 1 (ignored)*
  6607. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  6608. #4970: udev 181 fails to build if kernel version 3.3 is selected
  6609. #5018: dialog broken: exits with assert in uClibc
  6610. #5102: qt package moc, uic, rcc read from wrong place
  6611. #5144: Patch to fix ixon bug in uemacs
  6612. #5198: Line graphics output is broken in GNU Screen
  6613. #5204: Missing terminfo file(s) for GNU screen terminal type
  6614. 2012.02, Released February 29th, 2012:
  6615. Updated/fixed packages: libecore
  6616. 2012.02-rc3, Released February 27th, 2012:
  6617. Fixes all over the tree.
  6618. Automatic host dependencies handling for cmake packages
  6619. fixed. Customize package deprecated as using a post-build
  6620. script is nowadays the preferred way of adding extra stuff to
  6621. the rootfs.
  6622. Linux-headers 3.0.x / 3.2.x stable version bumped.
  6623. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  6624. Updated/fixed packages: dropbear, ffmpeg, libpng
  6625. 2012.02-rc2, Released February 19th, 2012:
  6626. Fixes all over the tree.
  6627. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  6628. linux-headers 3.0.x / 3.2.x stable versions.
  6629. Documentation: Added makedev / <pkg>_DEVICES /
  6630. <pkg>_PERMISSIONS documentation.
  6631. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  6632. libvncserver, mxml, python.
  6633. 2012.02-rc1, Released February 12th, 2012:
  6634. Fixes all over the tree and new features.
  6635. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  6636. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  6637. GDB 7.4, crosstool-NG 1.13.4.
  6638. Gentargets: scp and mercurial support.
  6639. Autotools: derive host dependencies from target by default.
  6640. Packages can now declare device table snippets.
  6641. Host utilities menu with commonly used host tools.
  6642. defconfigs: qemu configs for x86-64, mips and sparc, at91
  6643. defconfigs now use modern U-Boot / mainline Linux, added
  6644. lpc3250 defconfigs.
  6645. uClibc: remove 0.9.30, backport unshare() support, add
  6646. 0.9.32.1 / 0.9.33, use same config for ctng.
  6647. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  6648. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  6649. bootloaders added.
  6650. Various manual updates. Release tarballs now contain generated
  6651. manual in text/html/pdf formats.
  6652. Buildroot now calls the stop function of scripts in
  6653. /etc/init.d at shutdown.
  6654. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  6655. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  6656. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  6657. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  6658. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  6659. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  6660. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  6661. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  6662. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  6663. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  6664. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  6665. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  6666. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  6667. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  6668. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  6669. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  6670. python, python-serial, qt, ruby, samba, sdl, sdparm,
  6671. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  6672. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  6673. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  6674. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  6675. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  6676. xf86-video-sis, xfont_{encodings,font-util},
  6677. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  6678. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  6679. New packages: boost, connman, dstat, expedite, explorercanvas,
  6680. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  6681. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  6682. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  6683. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  6684. libvncserver, linux-firmware,
  6685. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  6686. open2300, python-distutilscross, python-dpkt,
  6687. python-netifaces, python-pygame, python-setuptools, rt-tests,
  6688. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  6689. xf86-input-tslib, xinput-calibrator
  6690. Issues resolved (http://bugs.uclibc.org):
  6691. #743: Add Transmission bit torrent option to buildroot
  6692. #755: Add Boost libraries as a package
  6693. #2299: Add crypto support to libsoup
  6694. #2617: Pixman 0.19.2 & Cairo 1.10.0
  6695. #3403: libgpg-error: bump to version 1.10
  6696. #3409: libgpg-error: download from gnupg.org
  6697. #3421: nano: make tiny flag optional
  6698. #3691: New EFL packages
  6699. #4664: Cannot patch AT91Bootstrap
  6700. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  6701. #4760: Qt: add host-pkg-config to dependency-list
  6702. 2011.11, Released November 30th, 2011:
  6703. Fixes all over the tree.
  6704. Bump kernel headers / default Linux version to 3.1.4.
  6705. Updated/fixed packages: ruby
  6706. 2011.11-rc3, Released November 26th, 2011:
  6707. Fixes all over the tree.
  6708. Toolchain: Fix gdb dependencies for external toolchains,
  6709. adjust uClibc patches so they don't confuse modern versions of
  6710. patch, bump crosstool-ng, kernel headers and linux versions.
  6711. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  6712. php, rsyslog, ruby, thttpd, xapp_xf86dga
  6713. Issues resolved (http://bugs.uclibc.org):
  6714. #4357: Prevent patch commands from accessing source control
  6715. #4369: Fix permissions on untared lsof archive
  6716. 2011.11-rc2, Released November 18th, 2011:
  6717. Fixes all over the tree and new features.
  6718. Updated asciidoc documentation
  6719. Toolchain: Bumped 3.x stable kernel headers, use wget in
  6720. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  6721. uClibc sparc fix.
  6722. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  6723. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  6724. Issues resolved (http://bugs.uclibc.org):
  6725. #3355: mplayer fails to build
  6726. #4021: uClibc: undefined reference to `__GI___errno_location'
  6727. #4297: Qt's qmake uses wrong pkg-config
  6728. 2011.11-rc1, Released November 11th, 2011:
  6729. Fixes all over the tree and new features.
  6730. Moved misc scripts and support stuff to support/. Renamed
  6731. patch-kernel.sh to support/scripts/apply-patches.sh.
  6732. Documentation: Moved to asciidoc format, make targets to
  6733. generate text/html/pdf/epub output added.
  6734. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  6735. added.
  6736. Bootloaders: Add support for custom git tree / tarballs for
  6737. barebox, similar to how it's handled for u-boot. Clean up
  6738. menuconfig options.
  6739. Toolchain: Update external codesourcery toolchain download
  6740. URLs after Codesourcery got bought by Mentor, add x86
  6741. toolchain, update toolchain versions and optimize toolchain
  6742. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  6743. updated GDB versions / download URLs. Binutils
  6744. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  6745. use ctng-1.13.0.
  6746. Package infrastructure: Support for local packages /
  6747. overrides, package dir / name arguments dropped from
  6748. {GEN,AUTO,CMAKE}TARGETS.
  6749. Linux: Kernel extensions infrastructure support, Xenomai +
  6750. RTAI support.
  6751. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  6752. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  6753. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  6754. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  6755. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  6756. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  6757. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  6758. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  6759. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  6760. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  6761. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  6762. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  6763. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  6764. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  6765. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  6766. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  6767. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  6768. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  6769. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  6770. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  6771. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  6772. pulseaudio, pv, rtai, vala, xenomai.
  6773. Removed packages: liboil, sfdisk, swfdec, webif
  6774. Issues resolved (http://bugs.uclibc.org):
  6775. #505: live555: new package
  6776. #507: Enable live and tv options in MPlayer-1.0rc2
  6777. #531: let e2fsprogs package to export headers to staging dir if needed
  6778. #1171: Linuxthreads new cannot find sysdep.h
  6779. #1357: Add bluez to buildroot system
  6780. #2107: New package: input-event-daemon
  6781. #2599: New package: orc (Oil Runtime Compiler)
  6782. #2605: gstreamer: Update to 0.10.30
  6783. #2677: introducing util-linux-ng as replacement for util-linux
  6784. #2917: Qt: Add declarative module
  6785. #3145: jffs2 image generation fails
  6786. #3271: netperf-2.4.5 fails to compile
  6787. #3331: xdata_xcursor-themes depends on xcursorgen
  6788. #3343: Add file:// download SITE_METHOD
  6789. #3391: Add support for specifying an external kernel tree
  6790. #3631: Error while compiling with Xorg
  6791. #3709: oprofile doesn't build for mipsel
  6792. #3925: midori not getting compile
  6793. #4045: Add support for downloading i386 toolchains from codesourcery
  6794. #4165: lrzsz-fix-symlink-at-rebuild.patch
  6795. #4171: makedevs-unused-but-set-variable.patch
  6796. #4183: Codesourcery toolchain download site has changed
  6797. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  6798. #4381: Add option to lighttpd to enable Lua support
  6799. #4387: Make sure that dest dir exists before installing mtd files
  6800. 2011.08, Released August 31th, 2011:
  6801. Fixes all over the tree.
  6802. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  6803. kernel headers.
  6804. Updated/fixed packages: ipset, python
  6805. 2011.08-rc2, Released August 29th, 2011:
  6806. Fixes all over the tree.
  6807. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  6808. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  6809. (broken).
  6810. Defconfigs: kernel updates, fix mini2440 serial port config,
  6811. remove old arm toolchain configs.
  6812. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  6813. targets similar to linux/busybox.
  6814. Updated/fixed packages: barebox, directfb, libsoup,
  6815. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  6816. usbmount, util-linux, xfont_font-misc-misc
  6817. Issues resolved (http://bugs.uclibc.org):
  6818. #3685: ncurses installation hangs due to old version of tic
  6819. #4093: Grub fails to install bz2 patch after conversion to...
  6820. 2011.08-rc1, Released August 4th, 2011:
  6821. Fixes all over the tree and new features.
  6822. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  6823. ext-toolchain-wrapper improvements, improved non-MMU
  6824. support. GCC 4.3.6 / 4.6.1.
  6825. GENTARGETS infrastructure extended to cover bootloaders and
  6826. Linux kernel as well. Options to retrive Linux/U-Boot from a
  6827. custom git repo instead of upstream tarballs.
  6828. Support for Linux 3.x and release candidate tarballs.
  6829. X-Loader bootloader for omap added.
  6830. Make source/external-deps now also works for external
  6831. toolchains / crosstool-ng backend.
  6832. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  6833. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  6834. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  6835. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  6836. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  6837. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  6838. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  6839. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  6840. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  6841. webkit, xorg-xserver, xz, zlib
  6842. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  6843. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  6844. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  6845. statserial, stunnel, ti-utils, uboot-tools, yajl
  6846. Deprecated packages: liboil, swfdec
  6847. Removed packages: hal
  6848. Issues resolved (http://bugs.uclibc.org):
  6849. #3559: libnspr: Add new package
  6850. #3595: patch to add libroxml
  6851. #3565: libnss: Add new package
  6852. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  6853. #3649: [PATCH] Add mapdir to existing pkg-config patch
  6854. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  6855. #3961: Nfs-utils: Remove SUSv3-function index
  6856. #3985: "help" target's defconfig list needs sort
  6857. #3997: bump libroxml to v2.1.0
  6858. 2011.05, Released May 27th, 2011:
  6859. Updated/fixed packages: makedevs
  6860. 2011.05-rc2, Released May 24th, 2011:
  6861. Fixes all over the tree.
  6862. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  6863. 2009q3 external toolchains added. Crosstool-NG bumped to
  6864. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  6865. bumped to 2.6.38.7.
  6866. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  6867. 2011.05-rc1, Released May 18th, 2011:
  6868. Fixes all over the tree and new features.
  6869. External toolchain improvements: We now build a binary
  6870. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  6871. enforces the correct compiler arguments, making an external
  6872. toolchain as easy to use outside of Buildroot as the internal
  6873. ones are. This also brought a cleanup of CFLAGS, making the
  6874. Buildroot build output easier to read.
  6875. Rootfs device handling improvements: Choice between static
  6876. /dev, devtmpfs and devtmpfs with either mdev or udev.
  6877. Toolchain: More preconfigured codesourcery external
  6878. toolchains, improved Crosstool-NG support, fix for GCC
  6879. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  6880. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  6881. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  6882. Linux: support for custom kernel image targets, E.G. for
  6883. powerpc builds with embedded device trees.
  6884. Misc fixes for qemu defconfigs, ensuring correct serial
  6885. terminal setup out of the box.
  6886. Misc gentarget / autotools handling fixes.
  6887. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  6888. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  6889. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  6890. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  6891. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  6892. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  6893. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  6894. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  6895. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  6896. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  6897. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  6898. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  6899. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  6900. New packages: bonnie++, can-utils, gdisk, htop,
  6901. input-event-daemon, libexif, libraw, libv4l, ngircd
  6902. Removed packages: festival
  6903. Issues resolved (http://bugs.uclibc.org):
  6904. #2131: Add OpenMP support to the toolchain
  6905. #3379: New Package: bonnie++
  6906. #3445: Not working openssl-10.0.0d on 386sx
  6907. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  6908. #3457: alsamixergui: broken URL
  6909. #3475: Calling sync on large filesystems when not always necessary
  6910. #3511: make busybox-menuconfig does not download busybox package
  6911. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  6912. #3571: u-boot: fw_printenv does not build
  6913. #3643: popt source url is not responding
  6914. #3733: dropbear: make zlib optional
  6915. #3757: Buildroot can't build mplayer with libmad
  6916. 2011.02, Released February 28th, 2011:
  6917. Fixes all over the tree.
  6918. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  6919. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  6920. Deprecated packages: devmem2, webif
  6921. Issues resolved (http://bugs.uclibc.org):
  6922. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  6923. #3259: Unable to build webkit (on arm)
  6924. #3295: slang fails to build on mipsel
  6925. #3325: ffmpeg fails to build
  6926. 2011.02-rc2, Released February 24th, 2011:
  6927. Fixes all over the tree.
  6928. Festival packages marked as broken. Unless someone steps up
  6929. to support them, they will be removed during the 2011.05
  6930. development cycle.
  6931. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  6932. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  6933. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  6934. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  6935. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  6936. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  6937. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  6938. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  6939. tcpreplay, tiff, wpa_supplicant, xcb-util,
  6940. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  6941. xdriver_xf86-input-{mouse,synaptics,void},
  6942. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  6943. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  6944. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  6945. xserver_xorg-server, xz
  6946. Removed packages: ace_of_penguins, vlc
  6947. Issues resolved (http://bugs.uclibc.org):
  6948. #3205: Failing chmod when running "make" in buildroot (openssl)...
  6949. #3277: quagga fails to build with SNMP support
  6950. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  6951. #3307: synergy fails to build due to missing XTest library
  6952. 2011.02-rc1, Released February 14th, 2011:
  6953. Fixes all over the tree and new features.
  6954. External toolchain improvements: clarification of the options,
  6955. and introduction of the toolchain profile concept, for
  6956. well-known toolchains. Buildroot is now capable of
  6957. automatically downloading and extracting well-known toolchains
  6958. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  6959. toolchains are supported). Crosstool-NG backend updated and
  6960. improved.
  6961. Complete rework of how hardware boards are supported.
  6962. Each board now only has a single defconfig file, and all
  6963. board-specific options have been removed. See
  6964. docs/buildroot.html#board_support for details.
  6965. Added support for the following boards: Mini2440, Qemu ARM
  6966. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  6967. r2d and Qemu x86. The Qemu boards support allows to easily
  6968. build systems that are known to work under Qemu.
  6969. Initial support for Blackfin processors.
  6970. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  6971. preparation for support of SDK. For the same reason, the
  6972. toolchain binaries (cross-compiler and other related tools)
  6973. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  6974. now also automatically returns correct values for cross
  6975. compilation, without needing any environment variables to be
  6976. set.
  6977. Ccache support reworked. Now used for both host and target
  6978. compilation, and cache is stored in ~/.buildroot-ccache.
  6979. Toolchain: uClibc 0.9.32-rc2, several components moved to
  6980. normal AUTOTARGET packages.
  6981. Generic cmake infrastructure, similar to the existing
  6982. GENTARGETS/AUTOTARGETS.
  6983. Support for bzr downloads, next to the existing git/svn support.
  6984. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  6985. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  6986. EXT2 file system size handling improved, UBI image support, fs
  6987. configuration options cleanup, U-Boot/Barebox version bumps.
  6988. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  6989. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  6990. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  6991. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  6992. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  6993. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  6994. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  6995. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  6996. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  6997. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  6998. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  6999. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  7000. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  7001. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  7002. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  7003. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  7004. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  7005. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  7006. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  7007. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  7008. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  7009. xkeyboard-config, xlib_libX11, xz, zlib
  7010. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  7011. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  7012. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  7013. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  7014. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  7015. xl2tp, xmlstarlet
  7016. Removed packages: hotplug, l2tp, libfloat, microcom,
  7017. ng-spice-rework
  7018. Issues resolved (http://bugs.uclibc.org):
  7019. #267: The make target: cross fails because toolchain_build_...
  7020. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  7021. #561: ltp-testsuite failed to install
  7022. #1447: Installing gfortran on PowerPC
  7023. #1651: Build fail caused by ccache in module-init-tools
  7024. #1681: Cross-compiled binaries shouldn't be installed into staging
  7025. #1723: [PATCH] axel: convert to generic package infrastructure and...
  7026. #1735: [PATCH] mplayer: convert to autotools infrastructure
  7027. #2551: [PATCH] native toolchain in the target filesystem fails
  7028. #2623: buildroot-snapshot-20100922 fails when compiling development...
  7029. #2647: makedevs package lacks support for 16-bit major/minor numbers
  7030. #2371: QT MYSQL Module does not build when MySQL installed on the host
  7031. #2839: compile fails in various packages with a odd message "error:...
  7032. #2887: tar "buffer overflow detected" error
  7033. #2893: Broken "make source" with external toolchain
  7034. #2905: Qt: Speed up compilation, if gui-module isn't selected
  7035. #2929: genext2fs: couldn't allocate a block (no free space)
  7036. #2935: Ntpdate isn't installed
  7037. #2965: Broken linkage to xkbcomp (blocking X server startup)
  7038. #2983: xlib_libX11 build failed
  7039. #3007: kexec doesn't build: Missing regdef.h file
  7040. #3085: Init scripts are not compatible with sysVinit (when busybox...
  7041. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  7042. #3109: abnormal `make busybox-menuconfig`
  7043. #3115: How about board specific makefiles?
  7044. #3169: python patch has typo, aborts build in scenario
  7045. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  7046. 2010.11, Released November 30th, 2010:
  7047. Fixes all over the tree.
  7048. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  7049. xserver-xorg
  7050. Issues resolved (http://bugs.uclibc.org):
  7051. #2773: squid with openssl support needs openssl on the host
  7052. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  7053. 2010.11-rc2, Released November 25th, 2010:
  7054. Fixes all over the tree.
  7055. Add support for LEON Sparc architecture variants. Fix make
  7056. source/external-deps for host packages.
  7057. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  7058. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  7059. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  7060. sysstat, webkit, zlib
  7061. Issues resolved (http://bugs.uclibc.org):
  7062. #759: Sysstat build broken without libintl
  7063. #2479: host-module-init-tools 3.11 fails to build
  7064. #2725: Buildroot overrides kernel config
  7065. #2785: mtd-utils build fails due to missing libmtd
  7066. #2791: Added PHP-Process Control to the PHP-Package
  7067. #2797: pciutils dependencies on zlib not taken into account
  7068. #2809: failed to compile libglib2
  7069. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  7070. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  7071. #2833: Failed to compile webkit without X11
  7072. 2010.11-rc1, Released November 8th, 2010:
  7073. Fixes all over the tree and new features.
  7074. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  7075. misc fixes + nconfig and savedefconfig targets.
  7076. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  7077. backend, GCC 4.5.x.
  7078. Fs: Squashfs 4.1 with lzo support
  7079. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  7080. generic new-style ones instead.
  7081. Download handling reworked and support for git/svn downloads
  7082. added.
  7083. Removed experimental shared config.cache support, as it is
  7084. too unreliable.
  7085. A convenience Makefile wrapper is created when using
  7086. out-of-tree building, similar to how it is done for the kernel.
  7087. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  7088. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  7089. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  7090. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  7091. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  7092. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  7093. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  7094. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  7095. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  7096. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  7097. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  7098. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  7099. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  7100. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  7101. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  7102. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  7103. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  7104. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  7105. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  7106. openssl, openvpn, oprofile, pango, patch, pcre, php,
  7107. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  7108. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  7109. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  7110. speex, sqlite, squashfs, startup-notification, strace,
  7111. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  7112. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  7113. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  7114. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  7115. xapp_xmore,
  7116. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  7117. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  7118. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  7119. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  7120. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  7121. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  7122. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  7123. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  7124. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  7125. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  7126. xterm, xvkbd, zlib
  7127. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  7128. Removed packages: dillo, libglib12, libgtk12, microwin,
  7129. pcmcia
  7130. Issues resolved (http://bugs.uclibc.org):
  7131. #901: new package: gpsd
  7132. #2389: Generate a Makefile wrapper in $(O)
  7133. #2461: wireless_tools: install shared library if needed
  7134. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  7135. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  7136. #2563: [PATCH] cairo: Expose the configure option to disable some...
  7137. #2581: libmms: Update to 0.6, and patch to work on architectures...
  7138. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  7139. #2731: Build order
  7140. #2737: buildroot configuration tool crashing when the path exceeds...
  7141. #2767: Build for lsof broken in buildroot-2010.08
  7142. 2010.08: Released August 31th, 2010:
  7143. Fixes all over the tree.
  7144. Updated/fixed packages: atk, xstroke
  7145. Removed packages: lxdoom
  7146. 2010.08-rc2, Released August 30th, 2010:
  7147. Fixes all over the tree.
  7148. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  7149. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  7150. versions.
  7151. Mark CRIS architecture as deprecated, as it is discontinued
  7152. upstream.
  7153. Marked shared config.cache as experimental and disabled by
  7154. default as it is known to break with certain package
  7155. combinations.
  7156. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  7157. added.
  7158. fs: old-style squashfs for big endian archs fixed.
  7159. Updated/fixed packages: busybox, gst-plugins-base,
  7160. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  7161. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  7162. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  7163. util-linux
  7164. Removed packages: stunnel
  7165. Issues resolved (http://bugs.uclibc.org):
  7166. #635: util-linux fails to build in 2009.08
  7167. #2239: netcat package installs its binary to target as avr32-linux...
  7168. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  7169. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  7170. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  7171. 2010.08-rc1, Released July 30th, 2010:
  7172. Fixes all over the tree and new features.
  7173. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  7174. and non-sysroot support removed. Added support for (snapshot)
  7175. NPTL in uClibc, 0.9.28.3 removed,
  7176. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  7177. removed yaboot. Support building u-boot from custom tarball,
  7178. u-boot 2010.06.
  7179. New GTK-based configurator, usable using 'make gconfig'.
  7180. Java packages marked as broken. Unless someone steps up to
  7181. support this, they will be removed during the 2010.11
  7182. development cycle.
  7183. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  7184. GTK+ on DirectFB has also been marked as deprecated, as it is
  7185. not supported in recent GTK+ versions, and more and more
  7186. packages depends on the new versions.
  7187. Unless someone steps up to support them, they will be removed
  7188. during the 2010.11 development cycle.
  7189. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  7190. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  7191. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  7192. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  7193. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  7194. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  7195. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  7196. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  7197. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  7198. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  7199. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  7200. ltrace, make, midori, module-init-tools, mplayer,
  7201. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  7202. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  7203. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  7204. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  7205. usbutils, webif, webkit, wireless_tools, xerces,
  7206. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  7207. Removed packages: modutils, portage, rxvt
  7208. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  7209. Issues resolved (http://bugs.uclibc.org):
  7210. #321: alsa-lib uses host include files for python which breaks ...
  7211. #361: linux kernel configuration choice works incorrectly
  7212. #387: Tremor not installed to toolchain
  7213. #401: new package: ffmpeg
  7214. #475: uImage target for U-boot failed generating
  7215. #543: ATK requires X11 on DirectFB target
  7216. #575: webkit: Buildroot Libtool Patch Fails
  7217. #583: build fails with external x86_64 toolchain
  7218. #729: sstrip creates corrupted headers
  7219. #829: Webkit r44552 needs libXt
  7220. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  7221. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  7222. #859: Add (head of) nptl branch to list of uClibc versions
  7223. #949: compile with debug info
  7224. #955: Grub fails to build with External Toolchain
  7225. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  7226. #1213: Move .config into output directory
  7227. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  7228. #1231: (sparc) Linux kernel fails to build
  7229. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  7230. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  7231. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  7232. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  7233. #1675: GMP Error during buildroot make process
  7234. #1741: external toolchain linking error
  7235. #1753: lmbench: convert to generic package infrastructure
  7236. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  7237. #1807: LZMA 4.32.7, Required header file(s) are missing
  7238. #1813: xkeyboard-config fails to build because of intltool problem
  7239. #1879: Bump iptables to 1.4.8
  7240. #1885: Add a bunch of lua modules
  7241. #1897: Bump libusb to 1.0.7
  7242. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  7243. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  7244. #1927: Bump file to 5.03 and migrate to autotargets
  7245. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  7246. #1945: PHP: add sqlite3 dependency when using external lib
  7247. #1951: Bump openssl to 0.9.8o
  7248. #1957: Bump sqlite to 3.6.23.1
  7249. #1975: Package removal/deprecation
  7250. #1981: zlib: bump to 1.2.5
  7251. #1987: intltool: Fix spelling mistake
  7252. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  7253. #1999: Typo in path checking
  7254. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  7255. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  7256. #2038: Bump ncurses to 5.7
  7257. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  7258. #2101: blackbox depends on locale support
  7259. #2119: Tries to build kernel, although disabled in config
  7260. #2125: libXfont build fail
  7261. #2143: buildroot compiler generates segfaulting statically linked exe..
  7262. #2149: xterm build failure
  7263. #2155: Compression lzo don't set for ubifs
  7264. #2161: [SECURITY] Update libpng to 1.2.44
  7265. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  7266. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  7267. #2191: linux-fusion build fail
  7268. #2221: Qt does not compile (dependencies not taken into account?)
  7269. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  7270. #2245: Netcat does not work due to incorrect assumptions about signed..
  7271. #2251: directory output/build after make *_defconfig not found
  7272. #2257: Convert netsnmp package to autotargets
  7273. #2263: Bump samba to 3.3.13
  7274. #2269: setserial causes make error
  7275. 2010.05, Released May 30th, 2010:
  7276. Fixes all over the tree.
  7277. Updated/fixed packages: coreutils, hal, libcap,
  7278. lockfile-progs, ncftp, xserver_xorg-server
  7279. Issues resolved (http://bugs.uclibc.org):
  7280. #1789: binutils fails to build for i386
  7281. #1843: Fix libcap build failure
  7282. #1855: XORG Keyboard driver fails to compile
  7283. 2010.05-rc3, Released May 27th, 2010:
  7284. Fixes all over the tree.
  7285. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  7286. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  7287. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  7288. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  7289. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  7290. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  7291. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  7292. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  7293. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  7294. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  7295. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  7296. Issues resolved (http://bugs.uclibc.org):
  7297. #75: arm buildroot "unrecognized option" error
  7298. #699: Buildroot fails to copy libstdc++ to target when using external...
  7299. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  7300. #1729: alsamixergui fails to build
  7301. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  7302. #1819: pciutils small bugs
  7303. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  7304. 2010.05-rc2, Released May 11th, 2010:
  7305. Fixes all over the tree.
  7306. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  7307. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  7308. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  7309. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  7310. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  7311. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  7312. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  7313. Removed packages: vice
  7314. Issues resolved (http://bugs.uclibc.org):
  7315. #849: "customize" package copies files to wrong place in target tree
  7316. #985: Bump usb_modeswitch package to 1.1.0
  7317. #1135: Package customize. Wrong copying
  7318. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  7319. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  7320. #1669: Busybox failed to compile when using an external toolchain
  7321. #1699: Fix usbutils dependencies and bump
  7322. #1705: Fix pciutils broken cross compiling
  7323. #1717: External toolchain fixes for hostapd & wpa_supplicant
  7324. 2010.05-rc1, Released May 3rd, 2010:
  7325. Cleaned up / restructured package menu.
  7326. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  7327. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  7328. removed broken nios2 support, ppc e300cX/e500mc support,
  7329. improved external toolchain support, GDB 7.x support.
  7330. X.org updated to 7.5.
  7331. New packages: cdrkit, cramfs, genext2fs, genromfs,
  7332. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  7333. squashfs, squashfs3, squid
  7334. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  7335. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  7336. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  7337. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  7338. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  7339. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  7340. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  7341. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  7342. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  7343. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  7344. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  7345. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  7346. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  7347. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  7348. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  7349. xproto_xf86miscproto, xserver_xorg-server
  7350. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  7351. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  7352. xproto_xf86miscproto
  7353. Issues resolved (http://bugs.uclibc.org):
  7354. #513: Add new squid package
  7355. #661: lmbench: new package
  7356. #719: Add lua option to haserl
  7357. #800: [PATCH] iperf update to 2.0.4
  7358. #803: [PATCH] lua - add shared library patch and config option for...
  7359. #805: [PATCH] mdadm - version update
  7360. #817: integrator926_defconfig uses unsupported uboot board name
  7361. #851: Add option to specify --sysroot value for external toolchain
  7362. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  7363. package for compatibility with old packages that expect
  7364. the pre-1.0 API.
  7365. #1105: Add new netperf package
  7366. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  7367. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  7368. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  7369. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  7370. #1189: Wrong u-boot configuration name for integrator926 target
  7371. #1219: kernel headers not correctly installed into toolchain/staging
  7372. #1267: Wrong BR2_EXTRA_VERSION
  7373. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  7374. #1303: Add librsync package
  7375. #1321: Busybox link fails due to lack of --sysroot option
  7376. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  7377. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  7378. #1369: cannot build radvd (flex problem)
  7379. #1387: xlib_libX11-1.3.2 can't find libjpeg
  7380. #1411: [SECURITY] Update openssl package to 0.9.8n
  7381. #1417: Bump iptables to 1.4.7
  7382. #1423: Bump e2fsprogs to 1.41.11
  7383. #1429: [SECURITY] Update php to 5.2.13
  7384. #1441: Add binutils 2.20.1
  7385. #1447: Package installation on target with debug symbols is broken
  7386. #1459: Misc QA fixes
  7387. #1489: radvd update to 1.6
  7388. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  7389. #1537: dev entries not created anymore
  7390. #1555: Fix default uclibc-0.9.31 configuration
  7391. #1561: [SECURITY] Update samba to 3.3.12
  7392. #1567: openssl0.9.8n fails to compile
  7393. #1573: Alsa-utils alsactl/init/* not installed to target
  7394. #1591: portmap fails to compile
  7395. #1615: Convert eeprog package to gentargets
  7396. #1645: Bump hostapd package to 0.7.2
  7397. 2010.02, Release February 26th, 2010:
  7398. Fixes all over the tree.
  7399. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  7400. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  7401. xfont_font-util
  7402. Removed packages: hostap, openmotif, xpdf
  7403. Issues resolved (http://bugs.uclibc.org):
  7404. #165: openmotif does not build
  7405. #1147: Remove obsolete hostap package
  7406. #1183: make source fails to download gmp, mpfr and patches
  7407. 2010.02-rc2, Released February 23th, 2010:
  7408. Fixes all over the tree and new features.
  7409. New packages: intltool
  7410. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  7411. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  7412. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  7413. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  7414. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  7415. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  7416. xlib_libfontenc, xproto_trapproto, zlib
  7417. Removed package: xboard
  7418. Issues resolved (http://bugs.uclibc.org):
  7419. #335: atk looks for the path to the gnome library on the host
  7420. #355: Please update WebKit - it doesn't compile!
  7421. #453: libglib2 autoreconf
  7422. #457: e2fsprogs link problem
  7423. #459: libgtk2 autoreconf
  7424. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  7425. #671: Bash fails to build when building buildront on Ubuntu 9.04
  7426. #711: WebKit host dependencies problems
  7427. #821: cp: illegal operation
  7428. #1039: Not compiled on ubuntu karmic
  7429. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  7430. 2010.02-rc1, Released February 9th, 2010:
  7431. Fixes all over the tree and new features.
  7432. Generalized autotools infrastructure to be usable for
  7433. non-autotools packages, see package/Makefile.package.in for
  7434. details.
  7435. Cleaned up avr32 toolchain config, external source-based
  7436. toolchain support is gone.
  7437. Dependency checks: Also check for makeinfo, only print output
  7438. on errors.
  7439. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  7440. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  7441. tcpreplay
  7442. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  7443. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  7444. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  7445. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  7446. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  7447. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  7448. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  7449. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  7450. Removed package: asterisk, openswan
  7451. Issues resolved (http://bugs.uclibc.org):
  7452. #515: tcpreplay: new package
  7453. #553: Wrong DirectFB ps2mouse limitation
  7454. #559: mesa3d build fails
  7455. #679: Autoconf cannot find M4
  7456. #739: New/updated hostapd package
  7457. #749: Bump usbutils package to version 0.86
  7458. #751: Kernel 2.6 snapshot fetch fail
  7459. #753: Bump lighttpd package to 1.4.25
  7460. #757: U-Boot: mkimage cannot be installed using external toolchain
  7461. #761: Add binutils 2.20 to toolchain options
  7462. #763: [SECURITY] Update pcre to 7.9
  7463. #765: Add buildroot branding to gcc
  7464. #767: Bump iw package to 0.9.18
  7465. #773: [SECURITY] Update bind to 9.5.2-P1
  7466. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  7467. #813: Drop not very useful generic package selection options ...
  7468. #823: Editor backup files (~) is copied from the target_skeleton
  7469. #827: Bump mtd-utils package to version 1.2.0
  7470. #841: Build error
  7471. #913: Bump iptables to 1.4.6
  7472. #919: Bump usb_modeswitch package to 1.0.7
  7473. #925: Bump wpa_supplicant package to 0.6.10
  7474. #931: Bump kismet package to 2010-01-R1
  7475. #937: Bump openvpn package to 2.1.1
  7476. #943: Bump sqlite package to 3.6.22
  7477. #961: Bump dnsmasq to 2.52
  7478. #967: Bump netstat-nat to 1.4.10
  7479. #973: Bump iw to 0.9.19
  7480. #1003: DHCP options disabled with busybox-1.16.0
  7481. #1009: [SECURITY] Bump php to 5.2.12
  7482. #1015: [SECURITY] Bump bind to 9.5.1-P2
  7483. #1027: Busybox flash commands conflict with those from mtd-utils
  7484. #1063: [SECURITY] Update lighttpd to 1.4.26
  7485. 2009.11, Released December 1st, 2009:
  7486. Additional fixes and cleanups.
  7487. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  7488. microperl, ncurses, vim
  7489. Issues resolved (http://bugs.uclibc.org):
  7490. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  7491. 2009.11-rc2, Released November 29th, 2009:
  7492. Additional fixes and cleanups.
  7493. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  7494. 2009.11-rc1, Released November 23rd, 2009:
  7495. Fixes all over the tree and new features.
  7496. Cleaned up / Simplified build directory layout. Refer to
  7497. docs/buildroot.html#using for details.
  7498. Target defconfig files moved to configs/ and listed in 'make help'
  7499. output.
  7500. Fixed *clean targets. Now clean removes everything generated,
  7501. so you can do a fresh rebuild. Distclean furthermore removes
  7502. kbuild tools and .config, bringing the source tree back in a
  7503. pristine state.
  7504. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  7505. soft / hardfloat setting for architecture, ensure target-ldd
  7506. gets installed.
  7507. New packages: divine, gvfs, libarchive, libmicrohttpd,
  7508. sdl_sound, swfdec, sysstat
  7509. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  7510. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  7511. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  7512. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  7513. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  7514. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  7515. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  7516. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  7517. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  7518. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  7519. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  7520. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  7521. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  7522. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  7523. Issues resolved (http://bugs.uclibc.org):
  7524. #301: allow to install libsmbclient
  7525. #303: add gvfs package
  7526. #477: Add sdl_sound package
  7527. #487: Make kismet package sexier
  7528. #511: New package usb_modeswitch
  7529. #527: misc fixes for dnsmasq package
  7530. #565: libevent: Bump version and clean up makefile
  7531. #587: Use iptables multipurpose binaries and bump to 1.4.4
  7532. #593: Missing early check for patch(1)
  7533. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  7534. #609: libmicrohttpd: New package
  7535. #615: python: Don't delete .py files unless asked
  7536. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  7537. #619: netkittelnet requires netkitbase to install, but there's no ...
  7538. #645: allow to build nbd-server with NBD package
  7539. #653: [SECURITY] Update php package to version 5.2.11
  7540. #655: Update sqlite package to version 3.6.18
  7541. #657: Bug in imagemagick-clean target
  7542. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  7543. #665: [PATCH] Samba package
  7544. #667: [PATCH] e2fsprogs
  7545. #683: SDL-dfb does not select directfb
  7546. #701: make install problem with unstripped binaries
  7547. #703: [SECURITY] Update openssl package to 0.9.8l
  7548. #705: Bump spawn-fcgi package to 1.6.3
  7549. #709: Bump lighttpd package to 1.4.24
  7550. #713: Migrate openntpd package to Makefile.autotools.in
  7551. #715: Bump libidn package to 1.15 and other fixes
  7552. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  7553. #731: Bump iw package to 0.9.17
  7554. 2009.08, Released August 31th, 2009:
  7555. Additional fixes and cleanups.
  7556. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  7557. sdl_net, util-linux.
  7558. Issues resolved (http://bugs.uclibc.org):
  7559. #529: util-linux doesn't find headers and include libs correctly
  7560. #557: Build ctorrent with SSL support if available
  7561. 2009.08-rc3, Released August 26th, 2009:
  7562. Additional fixes and cleanups.
  7563. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  7564. directfb, enchant, kernel headers.
  7565. Issues resolved (http://bugs.uclibc.org):
  7566. #471: Allow directfb compilation with debug
  7567. #541: Removal of CVS directories in target filesystem broken
  7568. #547: berkeleydb: Update config.{sub, guess}
  7569. #549: enchant: Fix dependencies.
  7570. #569: Fix alsa-utils build for x86 on x86-64
  7571. 2009.08-rc2, Released August 6th, 2009:
  7572. Additional fixes and new features.
  7573. New packages: libuuid, gcc 4.3.4.
  7574. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  7575. jamvm, libusb, microperl, neon, popt, sed, webkit.
  7576. Fixed issue with 'make oldconfig'
  7577. Issues resolved (http://bugs.uclibc.org):
  7578. #525: sed broken with external toolchain
  7579. #537: Fix gzip build with recent glibc
  7580. 2009.08-rc1, Released August 2nd, 2009:
  7581. Fixes all over the tree and new features.
  7582. Improvement of external toolchain support:
  7583. - Support for glibc toolchains.
  7584. - The toolchain configuration announced to Buildroot is
  7585. verified against the real toolchain configuration.
  7586. - Fixes, documentation.
  7587. Cleanup X.org support: clarified configuration options, and
  7588. removed mandatory dependency on useless libraries such as
  7589. libXt or libXaw.
  7590. New QT-based configurator, usable using 'make xconfig'.
  7591. Support for the Xtensa architecture.
  7592. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  7593. headers.
  7594. New packages: bmon, ctorrent, dosfstools, enchant,
  7595. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  7596. sdl_gfx, spawn-fcgi.
  7597. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  7598. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  7599. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  7600. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  7601. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  7602. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  7603. wpa-supplicant, xdriver_xf86-input-synaptics,
  7604. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  7605. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  7606. xutil_util-macros.
  7607. Issues resolved (http://bugs.uclibc.org):
  7608. #83: liblockfile fails to compile due to eaccess redefinition
  7609. #163: Xtensa architecture port
  7610. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  7611. #241: device mapper + lvm2: build together
  7612. #243: ctorrent: new package
  7613. #247: ntfsprogs: new package
  7614. #271: Library 'libgcc_s.so.1' not installed in search path
  7615. #287: New package libnl
  7616. #289: New package iw
  7617. #331: Update MPlayer to version 1.0rc2
  7618. #333: Bump sqlite package to 3.6.15
  7619. #349: update libsoup to version 2.26.2
  7620. #357: New package netstat-nat
  7621. #359,#413: Upgrade openvpn to Makefile.autotools.in
  7622. #367: linux kernel compile error for arm926t
  7623. #369: Add SDL_gfx package
  7624. #373: Support for building gstreamer without libxml
  7625. #379: update DirectFB to version 1.4.0
  7626. #383: gst-plugins-good: Allow soup plugin to be configured
  7627. #385: neon: Fix pkgconfig dependency
  7628. #387: Tremor not installed to toolchain
  7629. #389: New package bmon
  7630. #391: gstreamer: Bump version to 0.10.23
  7631. #393: gst-plugins-base: Bump version to 0.10.23
  7632. #395: gst-plugins-bad: New package
  7633. #403: Error while building iso9660 image
  7634. #409: Bump php package to 5.2.10
  7635. #411: ipsec-tools: Bump version to 0.7.2
  7636. #417: New package spawn-fcgi
  7637. #419: Bump lighttpd package to 1.4.23
  7638. #421: toolchain: Clean up toolchain locale support menu
  7639. #427: webkit: Update to WebKit svn r44552
  7640. #437: ltp-testsuite: Bump version to 20090630
  7641. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  7642. #467: DirectFB 1.4.1
  7643. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  7644. #491: libxml2: Bump version to 0.7.3
  7645. #495: Bump bind package to 9.5.1-P3 (security)
  7646. #497: OpenSSL RSA key generation hangs on x86_64
  7647. #509: Bump sqlite package to 3.6.16
  7648. #523: pciutils broken with external toolchain
  7649. #533: Update gamin to 0.1.10 to fix compilation
  7650. 2009.05, Released June 1st, 2009:
  7651. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  7652. version and marked ubifsroot as broken.
  7653. 2009.05-rc3, Released May 27th, 2009:
  7654. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  7655. busybox, curl, libusb, readline, python and strace.
  7656. Issues resolved (http://bugs.uclibc.org):
  7657. #345: libcurl package needs a urandom fix
  7658. 2009.05-rc2, Released May 19th, 2009:
  7659. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  7660. for newer hosts), stable kernel versions, busybox, cups,
  7661. dmraid, docker, mesa3d, rsync and updated defconfigs.
  7662. xserver marked as broken on AVR32 and atngw100-expanded
  7663. config removed.
  7664. Issues resolved (http://bugs.uclibc.org):
  7665. #167: metacity does not build
  7666. #295: gamin installs python support even if python is disabled
  7667. #323: gen_matypes fails to execute during build of Mesa when us...
  7668. 2009.05-rc1, Released May 5th, 2009:
  7669. Fixes all over the tree, further conversion of packages to
  7670. Makefile.autotools.in and we now build host versions of
  7671. packages where needed for build time dependencies instead of
  7672. relying on the correct versions being available on the build
  7673. host. Ancient toolchain / busybox versions have furthermore
  7674. been removed as announced in the 2009.02 release notes.
  7675. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  7676. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  7677. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  7678. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  7679. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  7680. util-linux, xorg7, xerces
  7681. Issues resolved (http://bugs.uclibc.org):
  7682. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  7683. and a ton of other improvements
  7684. #19: page.h missing by util-linux
  7685. #37: update libglib2 to version 2.18.4
  7686. #61: tslib puts staging_dir into pkgconfig file
  7687. #69: tar refuses to build
  7688. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  7689. #73: Bump openssl package to the latest version
  7690. #81: New package wpa_supplicant
  7691. #99: new package: flac
  7692. #101: update gstreamer packages
  7693. #105,#313: menuconfig segfaults on tinyx if wchar is not
  7694. selected
  7695. #107: convert libvorbis to Makefile.autotools.in
  7696. #109: Make pppd package avoid bsd err
  7697. #111: binutils 2.17 fails to build when texinfo >= 4.10
  7698. #133: Modify ncurses5-config to get correct include path
  7699. #137: Bump php to version 5.2.9
  7700. #139: Bump sqlite to 3.6.11 and convert to
  7701. Makefile.autotools.in
  7702. #145: Bump bind package to 9.5.1-P1 (security)
  7703. #147: buildroot toolchain fails to build w/binutils-2.19.1
  7704. #151: openssl package trivial fixes
  7705. #161: vim fails on patching with errors in configure.patch
  7706. #169: blackbox-0.70.1 does not build
  7707. #177: xdriver_xf86-input-keyboard does not build
  7708. #179: Upgrade dropbear to Makefile.autotools.in
  7709. #181: Update to Xorg 7.4
  7710. #187: ntfs-3g: could not build cross
  7711. #191: alsa-lib ARM binaries always built with EABI
  7712. #213: Bump wpa_supplicant package to version 0.6.9
  7713. #217: Bump openssl package to 0.9.8k (security)
  7714. #219: Toolchain build fails on m4
  7715. #225: m4 macros are out of place
  7716. #233: make ipv6 optional in iptables
  7717. #237: ncftp: convert to Makefile.autotools.in
  7718. #239: ntfs-3g: convert to Makefile.autotools.in
  7719. #245: lzop: new package
  7720. #271: Bump bind package to 9.5.1-P2 (security)
  7721. #277: Bump sqlite package to 3.6.16
  7722. #279: update libglib2 to version 2.20.1
  7723. #281: update DirectFB to version 1.2.8
  7724. #283: add taglib
  7725. #285: compilation of samba fails if IPV6 support is missing
  7726. #293: update samba to version 3.3.3
  7727. #299: add shared-mime-info package
  7728. #307: make openssl package respect build flags