CHANGES 284 KB

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