CHANGES 228 KB

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