CHANGES 248 KB

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