CHANGES 249 KB

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